diff --git a/app/adminapi/controller/CompanyController.php b/app/adminapi/controller/CompanyController.php index 04fdd524c..a55c1c1ac 100644 --- a/app/adminapi/controller/CompanyController.php +++ b/app/adminapi/controller/CompanyController.php @@ -326,6 +326,7 @@ class CompanyController extends BaseAdminController return $this->fail('参数不能为空'); } $where[] = [$parmas['key'], '=', $parmas['value']]; + $where[] = ['company_type', '=', $parmas['company_type']]; switch ($parmas['key']) { case 'city': // $geo_area=Db::name('geo_area')->where('city_code', '=', $parmas['value'])->column('area_code'); diff --git a/app/adminapi/controller/contract/VehicleContractController.php b/app/adminapi/controller/contract/VehicleContractController.php index b356fcb2e..a7441c1a0 100644 --- a/app/adminapi/controller/contract/VehicleContractController.php +++ b/app/adminapi/controller/contract/VehicleContractController.php @@ -35,30 +35,25 @@ class VehicleContractController extends BaseAdminController } //更新本地 try { + $data = [ + 'id' => $vehicle_contract['contract_logistic_id'], + 'file' => $params['file'], + 'status' => 1, + ]; //判断合同类型 + if($vehicle_contract['type'] == 0 && $vehicle_contract['contract_logistic_id'] != 0){ + $data['cars_info'] = $params['cars']; + } if(!empty($vehicle_contract['contract_logistic_id'])){ //更新物流系统 - curl_post(env('project.logistic_domain').'/api/contractUpdate',[],[ - 'id' => $vehicle_contract['contract_logistic_id'], - 'file' => $params['file'], - 'status' => 1, - 'cars_info' => $params['cars'] - ]); - VehicleContract::where('id', $params['id'])->update(['file' => $params['file'],'cars_info' => $params['cars'],'status'=>1]); - }else{ - VehicleContract::where('id', $params['id'])->update(['file' => $params['file'],'status'=>1]); + curl_post(env('project.logistic_domain').'/api/contractUpdate',[],$data); } + unset($data['id']); + VehicleContract::where('id', $params['id'])->update($data); }catch (\Exception $e){ return $this->fail($e->getMessage()); } - //发送短信 - $sms = [ - 'mobile' => $vehicle_contract['company_a_phone'], - 'name' => $vehicle_contract['company_user'], - 'scene' => 'WQTZ' - ]; - $this->rentNoticeSms($sms); return $this->success('上传成功', [], 1, 1); } @@ -159,19 +154,35 @@ class VehicleContractController extends BaseAdminController ], 'url' => $contract['file'] ]; - $signRes = app(JunziqianController::class)->VehicleRentSigning($signData, $params['id'],env('project.website_domain').'/api/index/townCarRent'); + $notify_url = ''; + if($contract['type'] == 0){ + $smsTitle = '《租赁合同》'; + $notify_url = env('project.website_domain').'/api/index/townCarRent'; + }elseif($contract['type'] == 1){ + $smsTitle = '《自有车辆上传合同》'; + $notify_url = env('project.website_domain').'/api/index/selfCarRent'; + }elseif($contract['type'] == 2){ + $smsTitle = '《解约合同》'; + $notify_url = env('project.website_domain').'/api/index/cancelRent'; + }elseif($contract['type'] == 3){ + $smsTitle = '《购买合同》'; + $notify_url = env('project.website_domain').'/api/index/buyCar'; + } + $signRes = app(JunziqianController::class)->VehicleRentSigning($signData, $params['id'],$notify_url); if ($signRes->success) { $contract->save([ 'id' => $contract['id'], 'contract_no' => $signRes->data, 'status' => 2 ]); - curl_post(env('project.logistic_domain').'/api/contractUpdate',[],[ - 'id' => $contract['contract_logistic_id'], - 'contract_no' => $signRes->data, - 'status' => 2, - ]); - $this->sendSms($params['id'],'《租赁合同》'); + if(!empty($contract['contract_logistic_id'])){ + curl_post(env('project.logistic_domain').'/api/contractUpdate',[],[ + 'id' => $contract['contract_logistic_id'], + 'contract_no' => $signRes->data, + 'status' => 2, + ]); + } + $this->sendSms($params['id'],$smsTitle); return $this->success('合同发送成功'); } else { return $this->fail($signRes->msg); diff --git a/app/adminapi/controller/setting/dict/DictDataController.php b/app/adminapi/controller/setting/dict/DictDataController.php index c9d12851f..294dd2fb8 100755 --- a/app/adminapi/controller/setting/dict/DictDataController.php +++ b/app/adminapi/controller/setting/dict/DictDataController.php @@ -95,5 +95,11 @@ class DictDataController extends BaseAdminController return $this->data($result); } + public function getContractPartyACompanyTypeList() + { + $result = DictDataLogic::getContractPartyACompanyTypeList(); + return $this->data($result); + } + } \ No newline at end of file diff --git a/app/adminapi/controller/user/UserController.php b/app/adminapi/controller/user/UserController.php index aa5e04ba6..558928f90 100755 --- a/app/adminapi/controller/user/UserController.php +++ b/app/adminapi/controller/user/UserController.php @@ -18,6 +18,7 @@ use app\adminapi\lists\user\UserLists; use app\adminapi\logic\user\UserLogic; use app\adminapi\validate\user\AdjustUserMoney; use app\adminapi\validate\user\UserValidate; +use app\common\logic\CompanyLogic; use think\facade\Db; use think\facade\Request; use app\common\logic\contract\ContractLogic; @@ -55,6 +56,15 @@ class UserController extends BaseAdminController return $this->success('', $detail); } + public function add() + { + $params = $this->request->param(); + $re = UserLogic::addUser($params); + if ($re) { + return $this->success('添加成功'); + } + return $this->fail(UserLogic::getError()); + } /** * @notes 编辑用户信息 @@ -111,4 +121,9 @@ class UserController extends BaseAdminController return $this->fail(ContractLogic::getError()); } } + + public function getCompanyList() + { + return $this->data(CompanyLogic::getList()); + } } \ No newline at end of file diff --git a/app/adminapi/controller/user/UserRoleController.php b/app/adminapi/controller/user/UserRoleController.php index 26df1e01e..49b00b8a5 100644 --- a/app/adminapi/controller/user/UserRoleController.php +++ b/app/adminapi/controller/user/UserRoleController.php @@ -104,5 +104,10 @@ class UserRoleController extends BaseAdminController return $this->data($result); } + public function getList() + { + $list = UserRoleLogic::getList(); + return $this->data($list); + } } \ No newline at end of file diff --git a/app/adminapi/lists/CompanyLists.php b/app/adminapi/lists/CompanyLists.php index 526e849db..75ce36df8 100644 --- a/app/adminapi/lists/CompanyLists.php +++ b/app/adminapi/lists/CompanyLists.php @@ -127,7 +127,7 @@ class CompanyLists extends BaseAdminDataLists implements ListsSearchInterface }; $count=Company::where($where)->count(); $list= Company::where($where) - ->field(['is_authentication','id', 'company_name', 'organization_code', 'city', 'area','area area_name', 'street','street street_name', 'company_type', 'master_name', 'master_position', 'master_phone', 'master_email', 'other_contacts', 'area_manager', 'is_contract', 'deposit', 'deposit_time', 'qualification', 'status']) + ->field(['is_authentication','id', 'company_name', 'organization_code', 'province', 'province province_name','city', 'city city_name', 'area','area area_name', 'street','street street_name', 'village','village village_name', 'brigade', 'brigade brigade_name', 'company_type', 'master_name', 'master_position', 'master_phone', 'master_email', 'other_contacts', 'area_manager', 'is_contract', 'deposit', 'deposit_time', 'qualification', 'status']) ->limit($this->limitOffset, $this->limitLength) ->order(['id' => 'desc']) ->select() diff --git a/app/adminapi/logic/informationg/UserInformationgLogic.php b/app/adminapi/logic/informationg/UserInformationgLogic.php index 41b86ddaa..90f854c9d 100644 --- a/app/adminapi/logic/informationg/UserInformationgLogic.php +++ b/app/adminapi/logic/informationg/UserInformationgLogic.php @@ -151,7 +151,10 @@ class UserInformationgLogic extends BaseLogic 'category_child' => $v['category_child'], 'create_time' => $v['create_time'], 'update_time' => $v['update_time'], - 'datas' => $a + 'datas' => $a, + 'data_field' => json_decode($v['data_field']), + 'ai_question' => $v['ai_question'], + 'ai_aianalyse' => $v['ai_aianalyse'], ]; if ($a) { array_push($datas, $arr); diff --git a/app/adminapi/logic/setting/dict/DictDataLogic.php b/app/adminapi/logic/setting/dict/DictDataLogic.php index 8ea5d934b..f537493aa 100755 --- a/app/adminapi/logic/setting/dict/DictDataLogic.php +++ b/app/adminapi/logic/setting/dict/DictDataLogic.php @@ -80,5 +80,8 @@ class DictDataLogic extends BaseLogic return DictData::findOrEmpty($params['id'])->toArray(); } - + public static function getContractPartyACompanyTypeList() + { + return DictData::whereIn('id', [30,16,41])->order('sort')->select()->toArray(); + } } \ No newline at end of file diff --git a/app/adminapi/logic/user/UserLogic.php b/app/adminapi/logic/user/UserLogic.php index f04c7686c..d32afb0aa 100755 --- a/app/adminapi/logic/user/UserLogic.php +++ b/app/adminapi/logic/user/UserLogic.php @@ -20,6 +20,8 @@ use app\common\logic\BaseLogic; use app\common\model\contract\Contract; use app\common\model\dict\DictData; use app\common\model\user\User; +use app\common\service\ConfigService; +use think\facade\Config; use think\facade\Db; /** @@ -122,4 +124,70 @@ class UserLogic extends BaseLogic } } + public static function addUser($params) + { + // 手机号已被使用 + $mobileUser = User::where(['account' => $params['account']])->find(); + if (!empty($mobileUser)) { + self::setError('手机号已被注册'); + return false; + } + $count = User::where('company_id', $params['company_id'])->count(); + $value = DictData::where('id', 28)->value('value'); + if ($count >= $value) { + self::setError('你创建的账号已达上限'); + return false; + } + $group_id = $params['group_id']; + // 每个公司市场部长只有1个 + if($group_id == 16) { + $marketManger = User::where(['group_id' =>$group_id,'company_id'=>$params['company_id']])->findOrEmpty(); + if (!$marketManger->isEmpty()) { + self::setError('公司已创建市场部长账号'); + return false; + } + } + // 每个公司服务部长只有1个 + if($group_id == 14) { + $marketManger = User::where(['group_id' =>$group_id,'company_id'=>$params['company_id']])->findOrEmpty(); + if (!$marketManger->isEmpty()) { + self::setError('公司已创建服务部长账号'); + return false; + } + } + $userSn = User::createUserSn(); + $passwordSalt = Config::get('project.unique_identification'); + $password = create_password(123456, $passwordSalt); + if ($params['avatar'] != '') { + $avatar = $params['avatar']; + } else { + $avatar = ConfigService::get('default_image', 'user_avatar'); + } + + + User::create([ + 'sn' => $userSn, + 'avatar' => $avatar, + 'is_captain' => $group_id == 2? 1: 0, + 'nickname' => $params['nickname'], + 'account' => $params['account'], + 'mobile' => $params['account'], + 'id_card' => $params['id_card'], + 'password' => $password, + 'channel' => 0, + 'sex' => $params['sex'], + 'province' => $params['province'], + 'city' => $params['city'], + 'area' => $params['area'], + 'street' => $params['street'], + 'village' => $params['village'], + 'brigade' => $params['brigade'], + 'address' => $params['address'], + 'qualification' => json_encode($params['qualification']), + 'company_id' => $params['company_id'], + 'group_id' => $group_id, + ]); + return true; + } + } \ No newline at end of file diff --git a/app/api/controller/ApproveController.php b/app/api/controller/ApproveController.php index f7216b4be..1ddb26690 100644 --- a/app/api/controller/ApproveController.php +++ b/app/api/controller/ApproveController.php @@ -33,7 +33,7 @@ class ApproveController extends BaseApiController if (!$approve) { throw new Exception('数据不存在'); } - ApproveLogic::audit($approve, $params); + ApproveLogic::audit($approve, $params, $this->userInfo); return $this->success('操作成功'); } catch (Exception $exception) { return $this->fail(ApproveLogic::getError() ?? $exception->getMessage()); diff --git a/app/api/controller/IndexController.php b/app/api/controller/IndexController.php index 270fe3a8e..3d4cc903d 100755 --- a/app/api/controller/IndexController.php +++ b/app/api/controller/IndexController.php @@ -21,6 +21,7 @@ use app\common\model\contract\Contract; use app\common\model\contract\ShopContract; use app\common\model\contract\VehicleContract; use app\common\model\ShopMerchant; +use app\common\model\vehicle\VehicleBuyRecord; use app\common\model\vehicle\VehicleRent; use Symfony\Component\HttpClient\HttpClient; use think\cache\driver\Redis; @@ -37,7 +38,7 @@ use think\response\Json; */ class IndexController extends BaseApiController { - public array $notNeedLogin = ['index', 'config', 'policy', 'decorate', 'notifyUrl', 'notifyProperty', 'notifyAuthentication', 'notifyVehicleContractUpdate','townCarRent','systemCarRent', 'selfCarRent', 'cancelRent']; + public array $notNeedLogin = ['index', 'config', 'policy', 'decorate', 'notifyUrl', 'notifyProperty', 'notifyAuthentication', 'notifyVehicleContractUpdate','townCarRent','systemCarRent', 'selfCarRent', 'cancelRent', 'buyCar']; /** * @notes 首页数据 @@ -203,14 +204,15 @@ class IndexController extends BaseApiController foreach ($cars as $k => $v) { $hasCar = VehicleRent::where('car_id',$v['id'])->findOrEmpty(); if($hasCar->isEmpty()){ + $data[$k]['contract_id'] = $contract['id']; + $data[$k]['company_id'] = $contract['company_b_id']; $data[$k]['car_id'] = $v['id']; $data[$k]['car_license'] = $v['license']; $data[$k]['type'] = 0; $data[$k]['status'] = 0; - $data[$k]['company_id'] = $contract['company_b_id']; - $data[$k]['rent_time'] = 0; + $data[$k]['rent_contract_id'] = 0; $data[$k]['rent_company_id'] = 0; - $data[$k]['contract_id'] = $contract['id']; + $data[$k]['rent_time'] = 0; $data[$k]['create_time'] = strtotime($contract['create_time']); } } @@ -279,8 +281,9 @@ class IndexController extends BaseApiController $vehicle = json_decode($contract['cars_info'], true); VehicleRent::where('car_id', $vehicle['id'])->update([ 'status' => 2, - 'rent_time' => time(), + 'rent_contract_id' => $contract['id'], 'rent_company_id' => $contract['company_b_id'], + 'rent_time' => time(), ]); $party_b = Company::where('id', $contract['company_b_id'])->find(); //通知物流系统跟新 @@ -290,13 +293,6 @@ class IndexController extends BaseApiController 'use_user_name' => $party_b['master_name'], 'use_user_phone' => $party_b['master_phone'] ]); - CompanyProperty::create([ - 'company_id' => $contract['company_b_id'], - 'object_id' => $vehicle['id'], - 'type' => 1, - 'create_time' => time(), - 'update_time' => time(), - ]); return json(['success' => true, 'msg' => '成功']); } else { return json(['success' => true, 'msg' => '成功']); @@ -364,6 +360,7 @@ class IndexController extends BaseApiController 'car_license' => $vehicle['license'], 'status' => 2, 'rent_time' => time(), + 'rent_contract_id' => $contract['id'], 'rent_company_id' => $contract['company_b_id'], 'create_time' => time(), 'type' => 1 @@ -428,28 +425,243 @@ class IndexController extends BaseApiController 'party_a' => $signContractEvidenceToPartyA, 'party_b' => $signContractEvidenceToPartyB ]); + $cars = json_decode($contract['cars_info'],true); + $cars_ids = array_column($cars,'id'); //更改合同状态 VehicleContract::where('id', $id)->update(['signing_timer'=>2,'status'=>3,'contract_url'=>$signContractFile,'contract_evidence'=>$contractEvidence]); - //更改租赁列表车辆状态 - $vehicle = json_decode($contract['cars_info'], true); - //获取租赁车辆信息 - $vehicleRentInfo = VehicleRent::where('car_id', $vehicle['id'])->find(); - //更新原始合同类型 - VehicleContract::where('id', $vehicleRentInfo['contract_id'])->update(['status' => 6]); - VehicleRent::where('car_id', $vehicle['id'])->update([ - 'status' => 3, - ]); - //通知物流系统跟新 - curl_post(env('project.logistic_domain').'/api/cancelRent', [], [ - 'car_id' => $vehicle['id'], - 'status' => 1 - ]); - return json(['success' => true, 'msg' => '成功']); + if(!empty($contract['contract_logistic_id'])){ + curl_post(env('project.logistic_domain').'/api/contractUpdate',[],[ + 'id' => $contract['contract_logistic_id'], + 'signing_timer' => 2, + 'status' => 3, + 'contract_url'=>$signContractFile, + 'contract_evidence'=>$contractEvidence, + ]); + } + //判断合同是否存在购买记录表中 + $vehicleBuyRecord = VehicleBuyRecord::where('contract_id',$contract['id'])->findOrEmpty(); + if(!$vehicleBuyRecord->isEmpty()){ + //小组公司与镇街公司解约 + if($vehicleBuyRecord['status'] == 1){ + //获取租赁车辆信息 + $rentCarsInfo = VehicleRent::where('car_id',$cars_ids[0])->findOrEmpty(); + if($rentCarsInfo['type'] == 0){ + //修改租赁车俩状态 + VehicleRent::where('id',$rentCarsInfo['id'])->update(['status'=>0,'rent_company_id'=>0,'rent_contract_id'=>0,'rent_time'=>0]); + } + if($rentCarsInfo['type'] == 1){ + //修改租赁车俩状态 + VehicleRent::where('id',$rentCarsInfo['id'])->delete(); + } + //删除原合同 + VehicleContract::where('id',$rentCarsInfo['rent_contract_id'])->delete(); + //修改物流系统车辆租赁信息 + curl_post(env('project.logistic_domain').'/api/Vehicle/delRentUseInfo', [], [ + 'car_id' => $cars_ids[0] + ]); + //发送购买合同给物流系统 + $curl_result = curl_post(env('project.logistic_domain').'/api/signContract',[],[ + 'num' => $vehicleBuyRecord['num'], + 'company_id' => $vehicleBuyRecord['company_id'], + 'company_name' => $vehicleBuyRecord['company_name'], + 'company_code' => $vehicleBuyRecord['company_code'], + 'company_user' => $vehicleBuyRecord['company_user'], + 'company_phone' => $vehicleBuyRecord['company_phone'], + 'company_email' => $vehicleBuyRecord['company_email'], + 'cars_info' => $vehicleBuyRecord['cars_info'], + 'type' => 3 + ]); + if(empty($curl_result)){ + return $this->fail('null return from logistic'); + } + if($curl_result['code'] == 0){ + return $this->fail($curl_result['msg'].' from logistic'); + } + //生成本地合同 + VehicleContract::create($curl_result['data']); + VehicleBuyRecord::where('id',$vehicleBuyRecord['id'])->update(['status'=>4]); + return json(['success' => true, 'msg' => '成功']); + } + //小组公司与镇街公司解约,然后镇街公司与平台公司解约 + if($vehicleBuyRecord['status'] == 2){ + //获取租赁车辆信息 + $rentCarsInfo = VehicleRent::where('car_id',$cars_ids[0])->findOrEmpty(); + //获取镇街公司信息 + $zjCompany = Company::where('id',$rentCarsInfo['company_id'])->findOrEmpty(); + //判断购买车辆中是否包含镇街公司租赁的车辆 + $car_ids = array_column(json_decode($vehicleBuyRecord['cars_info'],true),'id'); + $zjRentCars = VehicleRent::field('car_id as id,car_license as license')->where('company_id',$zjCompany['id'])->where('car_id','in',$car_ids)->where('status',0)->where('type',0)->select(); + if($rentCarsInfo['type'] == 0){ + //修改租赁车俩状态 + VehicleRent::where('id',$rentCarsInfo['id'])->update(['status'=>0,'rent_company_id'=>0,'rent_contract_id'=>0,'rent_time'=>0]); + } + if($rentCarsInfo['type'] == 1){ + //修改租赁车俩状态 + VehicleRent::where('id',$rentCarsInfo['id'])->delete(); + } + //删除原合同 + VehicleContract::where('id',$rentCarsInfo['rent_contract_id'])->delete(); + //修改物流系统车辆租赁信息 + curl_post(env('project.logistic_domain').'/api/Vehicle/delRentUseInfo', [], [ + 'car_id' => $cars_ids[0] + ]); + //发送镇公司与平台公司的解约合同 + $curl_result = curl_post(env('project.logistic_domain').'/api/signContract',[],[ + 'num' => count($zjRentCars), + 'company_id' => $zjCompany['id'], + 'company_name' => $zjCompany['company_name'], + 'company_code' => $zjCompany['organization_code'], + 'company_user' => $zjCompany['master_name'], + 'company_phone' => $zjCompany['master_phone'], + 'company_email' => $zjCompany['master_email'], + 'cars_info' => json_encode($zjRentCars), + 'type' => 2 + ]); + if(empty($curl_result)){ + return $this->fail('null return from logistic'); + } + if($curl_result['code'] == 0){ + return $this->fail($curl_result['msg'].' from logistic'); + } + //生成本地合同 + VehicleContract::create($curl_result['data']); + VehicleBuyRecord::where('id',$vehicleBuyRecord['id'])->update(['status'=>3]); + return json(['success' => true, 'msg' => '成功']); + } + //镇街公司与平台公司解约 + if($vehicleBuyRecord['status'] == 3){ + //删除本地租赁信息 + VehicleRent::where('car_id','in',$cars_ids)->delete(); + //删除物流系统租赁信息 + curl_post(env('project.logistic_domain').'/api/cancelRent', [], [ + 'car_ids' => implode(',',$cars_ids) + ]); + //发送购买合同给物流系统 + $curl_result = curl_post(env('project.logistic_domain').'/api/signContract',[],[ + 'num' => $vehicleBuyRecord['num'], + 'company_id' => $vehicleBuyRecord['company_id'], + 'company_name' => $vehicleBuyRecord['company_name'], + 'company_code' => $vehicleBuyRecord['company_code'], + 'company_user' => $vehicleBuyRecord['company_user'], + 'company_phone' => $vehicleBuyRecord['company_phone'], + 'company_email' => $vehicleBuyRecord['company_email'], + 'cars_info' => $vehicleBuyRecord['cars_info'], + 'type' => 3 + ]); + if(empty($curl_result)){ + return $this->fail('null return from logistic'); + } + if($curl_result['code'] == 0){ + return $this->fail($curl_result['msg'].' from logistic'); + } + //生成本地合同 + VehicleContract::create($curl_result['data']); + VehicleBuyRecord::where('id',$vehicleBuyRecord['id'])->update(['status'=>4]); + return json(['success' => true, 'msg' => '成功']); + } + }else{ + //更改租赁列表车辆状态 + $vehicle = json_decode($contract['cars_info'], true); + //获取租赁车辆信息 + $vehicleRentInfo = VehicleRent::where('car_id', $vehicle[0]['id'])->find(); + //更新原始合同类型 + VehicleContract::where('id', $vehicleRentInfo['rent_contract_id'])->delete(); + VehicleRent::where('car_id', $vehicle[0]['id'])->delete(); + //通知物流系统跟新 + curl_post(env('project.logistic_domain').'/api/Vehicle/delRentUseInfo', [], [ + 'car_id' => $vehicle[0]['id'] + ]); + return json(['success' => true, 'msg' => '成功']); + } } else { return json(['success' => true, 'msg' => '成功']); } } + //购买合同回调 + public function buyCar() { + //获取参数 + $id = $this->request->get('id'); + if (empty($id)) { + return json(['success' => false, 'msg' => '失败4.1']); + } + //获取合同数据 + $contract = VehicleContract::where('id', $id)->find(); + if (empty($contract)) { + return json(['success' => false, 'msg' => '失败4.2']); + } + if ($contract['type'] != 3) { + return json(['success' => false, 'msg' => '失败4.3']); + } + if ($contract['status'] != 2) { + return json(['success' => false, 'msg' => '失败4.4']); + } + if ($contract['signing_timer'] == 0) { + $res = VehicleContract::where('id', $id)->update(['signing_timer' => 1]); + if (!$res) { + return json(['success' => false, 'msg' => '失败4.5']); + } + return json(['success' => true, 'msg' => '成功']); + }else if ($contract['signing_timer'] == 1) { + //获取签约后的合同 + $signContractFile = app(JunziqianController::class)->downloadVehicleContractFile($contract['contract_no']); + $signContractFile = $signContractFile ?? ''; + //获取签约后的证据 + $signContractEvidenceToPartyA = app(JunziqianController::class)->downloadVehicleContractEvidence($contract['contract_no'],$contract['company_a_name'],$contract['company_a_code']); + $signContractEvidenceToPartyA = $signContractEvidenceToPartyA ?? ''; + $signContractEvidenceToPartyB = app(JunziqianController::class)->downloadVehicleContractEvidence($contract['contract_no'],$contract['company_b_name'],$contract['company_b_code']); + $signContractEvidenceToPartyB = $signContractEvidenceToPartyB ?? ''; + $contractEvidence = json_encode([ + 'party_a' => $signContractEvidenceToPartyA, + 'party_b' => $signContractEvidenceToPartyB + ]); + //更新本地合同状态 + $updateLocalRes = VehicleContract::where('id',$contract['id'])->update(['signing_timer'=>2,'status' => 3,'contract_url'=>$signContractFile,'contract_evidence'=>$contractEvidence]); + //判断是否有监管车辆 + $jgCars = VehicleRent::where('rent_company_id',$contract['company_b_id'])->where('status',2)->where('type',2)->findOrEmpty(); + if($jgCars->isEmpty()){ + //获取镇街公司信息 + $zjCompany = Contract::field('party_a')->where('party_b',$contract['company_b_id'])->where('signing_timer',2)->findOrEmpty(); + //将车辆加入到本地租赁列表 + $cars = json_decode($contract['cars_info'], true); + //写入数据 + $data = [ + 'car_id' => $cars[0]['id'], + 'car_license' => $cars[0]['license'], + 'type' => 2, + 'status' => 2, + 'company_id' => $zjCompany['party_a'], + 'rent_time' => time(), + 'rent_company_id' => $contract['company_b_id'], + 'contract_id' => $contract['id'], + 'create_time' => time() + ]; + $vehicleRent = new VehicleRent(); + $vehicleRent->save($data); + } + //获取签约公司信息 + $compay = Company::where('id',$contract['company_b_id'])->findOrEmpty(); + //更新远程 + $updateSverRes = curl_post(env('project.logistic_domain').'/api/contractUpdate',[],[ + 'id' => $contract['contract_logistic_id'], + 'signing_timer' => 2, + 'status' => 3, + 'contract_url'=>$signContractFile, + 'contract_evidence'=>$contractEvidence, + 'use_user_id' =>$compay['user_id'], + 'use_user_name' =>$compay['master_name'], + 'use_user_phone' =>$compay['master_phone'], + ]); + if(!$updateLocalRes || $updateSverRes['code']==0){ + return json(['success' => false, 'msg' => '更新失败']); + }else{ + return json(['success' => true, 'msg' => '更新成功']); + } + }else{ + return json(['success' => true, 'msg' => '成功']); + } + } + //车辆租赁签约合同状态更改 public function notifyVehicleContractUpdate() { diff --git a/app/api/controller/InformationController.php b/app/api/controller/InformationController.php index ed6814353..8b8f544d0 100644 --- a/app/api/controller/InformationController.php +++ b/app/api/controller/InformationController.php @@ -113,7 +113,6 @@ class InformationController extends BaseApiController } UserInformationg::where('id', $param['id'])->update(['update_time' => time(), 'is_update' => 1]); - return $this->success('成功'); } diff --git a/app/api/controller/ShopCallController.php b/app/api/controller/ShopCallController.php new file mode 100644 index 000000000..1e0f84c86 --- /dev/null +++ b/app/api/controller/ShopCallController.php @@ -0,0 +1,20 @@ +where('company_id',$this->userInfo['company_id'])->where('status','<>',3)->where('type',1)->count(); //可在租车辆 - $doubleRentCar = $villageCompany - $rentCar - $applyCar - $selfCar; + $doubleRentCar = max($villageCompany - $rentCar - $applyCar - $selfCar,0); if($params['num'] > $doubleRentCar ){ return $this->fail('数量超过可再租车辆数'); } @@ -110,7 +111,7 @@ class VehicleController extends BaseApiController if(empty($car)){ return $this->fail('车辆数据有误'); } - $json = json_encode($car->toArray()); + $json = json_encode([$car->toArray()]); //更改车辆状态 VehicleRent::where('car_id',$params['car_id'])->update(['status'=>1]); //更改状态 @@ -198,7 +199,7 @@ class VehicleController extends BaseApiController } //小组服务公司租赁申请 - public function rentApply() { + public function rentApply() { //验证请求类型 if(!$this->request->isPost()){ return $this->fail('请求类型错误'); @@ -237,12 +238,12 @@ class VehicleController extends BaseApiController return $this->fail('当前镇街公司未签约'); } //判断是否申请过 - $vehicleContract = VehicleContract::where('company_b_id',$this->userInfo['company_id'])->where('type','<>',2)->whereNotIn('status','4,5,6')->find(); + $vehicleContract = VehicleContract::where('company_b_id',$this->userInfo['company_id'])->whereNotIn('type','2,3')->whereNotIn('status','4,5,6')->find(); if(!empty($vehicleContract)){ return $this->fail('请勿重复申请'); } if($params['type'] == 1){ - $cars_info = json_encode(['license'=>$params['license'],'pic'=>$params['pic']]); + $cars_info = json_encode([['license'=>$params['license'],'pic'=>$params['pic']]]); $car_type = 1; }else{ $cars_info = null; @@ -394,7 +395,7 @@ class VehicleController extends BaseApiController //自有车辆数量 $selfCar = VehicleRent::field('id')->where('company_id',$company['id'])->where('status','<>',3)->where('type',1)->count(); //可在租车辆 - $doubleRentCar = $villageCompany - $rentCar - $applyCar - $selfCar; + $doubleRentCar = max($villageCompany - $rentCar - $applyCar - $selfCar,0); //设置数据 $data = [ 'apply' => $vehicleContract, @@ -411,60 +412,44 @@ class VehicleController extends BaseApiController public function villageCompanyIndex() { //获取公司信息 - $company = Company::field('id,company_type,province,city,area,street,village,brigade')->where('id',$this->userInfo['company_id'])->find()->append(['province_name', 'city_name', 'area_name', 'street_name', 'village_name','brigade_name']); + $company = Company::field('id,master_name as user_name,master_phone as user_phone,company_name,company_type,province,city,area,street,village,brigade')->where('id',$this->userInfo['company_id'])->find()->append(['province_name', 'city_name', 'area_name', 'street_name', 'village_name','brigade_name']); if(empty($company)){ return $this->fail('数据错误'); } if($company['company_type'] != 18 ){ return $this->fail('非小组公司不能访问'); } - //获取申请信息 - $vehicleContract = VehicleContract::where('company_b_id',$company['id'])->where('type','<>',2)->order('id desc')->findOrEmpty(); - if($vehicleContract['status'] == 3){ - if(!empty($vehicleContract['cars_info'])){ - $vehicleContract['cars_info'] = json_decode($vehicleContract['cars_info'],true); - if(!empty($vehicleContract['cars_info'])){ - $arr = $vehicleContract['cars_info']; - $arr['mileage'] = 0; - $position = curl_get(env('project.logistic_domain').'/api/getCarLocal?car_id='.$arr['id']); - if($position && $position['code'] == 1){ - $arr['lon'] = $position['data']['lon']; - $arr['lat'] = $position['data']['lat']; - } - $vehicleContract['cars_info'] = $arr; - } - } - $vehicleContract['province'] = $company['province_name']; - $vehicleContract['city'] = $company['city_name']; - $vehicleContract['area'] = $company['area_name']; - $vehicleContract['street'] = $company['street_name']; - $vehicleContract['village'] = $company['village_name']; - $vehicleContract['brigade'] = $company['brigade_name']; + //获取购买车辆记录 + $buyCarRent = VehicleBuyRecord::where('company_id',$company['id'])->where('status','<>',4)->findOrEmpty(); + if($buyCarRent->isEmpty()){ + $data = VehicleContract::where('company_b_id',$company['id'])->where('type','<>',2)->order('id desc')->findOrEmpty(); + }else{ + $data = $buyCarRent; + $data['status'] = 0; + $data['type'] = 0; } - //返回数据 - return $this->success('请求成功',$vehicleContract->toArray()); + //获取签约合同 + return $this->success('请求成功',$data->toArray()); } //车辆详情 public function vehicleInfo() { - //获取参数 - $carId = $this->request->get('car_id'); - if(empty($carId)){ - return $this->fail('缺少必要参数'); - } + $id = $this->request->get('car_id'); //获取数据 - $data = VehicleRent::where('car_id',$carId)->find(); - if(empty($data)){ - return $this->fail('数据错误'); + if(!empty($id) && $id != 'undefined'){ + $data = VehicleRent::where('car_id',$id)->where('status',2)->findOrEmpty(); + }else{ + $data = VehicleRent::where('rent_company_id',$this->userInfo['company_id'])->where('status',2)->findOrEmpty(); + } + if($data->isEmpty()){ + return $this->fail('数据不存在'); } $data['mileage'] = 0; - if($data['status'] == 2){ - $data['company'] = Company::field('company_name,master_name as user_name,master_phone as user_phone,province,city,area,street,village,brigade')->where('id',$data['rent_company_id'])->find()->append(['province_name', 'city_name', 'area_name', 'street_name', 'village_name','brigade_name']); - //获取合同 - $data['contract'] = VehicleContract::field('id,contract_no,contract_url,file,status,create_time,update_time')->where('id',$data['contract_id'])->findOrEmpty(); - } + $data['company'] = Company::field('company_name,master_name as user_name,master_phone as user_phone,province,city,area,street,village,brigade')->where('id',$data['rent_company_id'])->find()->append(['province_name', 'city_name', 'area_name', 'street_name', 'village_name','brigade_name']); + //获取合同 + $data['contract'] = VehicleContract::field('id,contract_no,contract_url,file,status,create_time,update_time')->where('id',$data['contract_id'])->findOrEmpty(); //当前坐标位置 - $position = curl_get(env('project.logistic_domain').'/api/getCarLocal?car_id='.$carId); + $position = curl_get(env('project.logistic_domain').'/api/getCarLocal?car_id='.$data['car_id']); if($position && $position['code'] == 1){ $data['position'] = $position['data']; }else{ @@ -576,7 +561,7 @@ class VehicleController extends BaseApiController if($company['company_type'] != 16){ return $this->fail('非镇街公司不能访问'); } - $data = VehicleContract::field('id,contract_no,contract_url,status,create_time,update_time')->where('contract_logistic_id',0)->where('company_b_id',$company['id'])->select(); + $data = VehicleContract::field('id,contract_no,contract_url,status,create_time,update_time')->where('contract_logistic_id','<>',0)->where('company_b_id',$company['id'])->select(); return $this->success('请求成功',$data->toArray()); } @@ -642,4 +627,207 @@ class VehicleController extends BaseApiController } } + //获取空闲车辆列表 + public function getFreeCars(): \think\response\Json + { + //1、获取当前登录用户信息并判断其公司是否是小组服务公司 + $xzCompany = Company::field('id,company_type')->where('id',$this->userInfo['company_id'])->findOrEmpty(); + if($xzCompany->isEmpty() || $xzCompany['company_type'] != 18){ + return $this->fail('当前用户非小组服务公司'); + } + //2、获取小组服务公司签约的镇街公司 + $zjCompany = Contract::field('party_a')->where('party_b',$this->userInfo['company_id'])->where('signing_timer',2)->findOrEmpty(); + //3、获取镇街公司向平台租赁的且未二次租赁给小组公司的车辆 + $zjRentCars = VehicleRent::field('car_id')->where('company_id',$zjCompany['party_a'])->where('status',0)->select()->toArray(); + $zjRentCars = array_column($zjRentCars,'car_id'); + //4、获取小组公司自己租赁的车辆 + $xzRentCars = VehicleRent::field('car_id')->where('company_id',$zjCompany['party_a'])->where('rent_company_id',$xzCompany['id'])->where('status',2)->where('type','<>',2)->select()->toArray(); + $xzRentCars = array_column($xzRentCars,'car_id'); + //5、获取平台未出租的车辆 + $result = curl_post(env('project.logistic_domain').'/api/Vehicle/getFreeCars',[],['ids'=>implode(',',array_merge($zjRentCars,$xzRentCars))]); + foreach($result['data'] as $k => $v){ + $result['data'][$k]['checked'] = []; + } + //6、返回 + return $this->success('success',$result['data']); + } + + //申请购车 + public function buyCars() { + //验证请求类型 + if(!$this->request->isPost()){ + return $this->fail('请求类型错误'); + } + //1、获取购买车辆的id参数 + $cars = $this->request->post('cars'); + $cars = json_decode($cars,true); + if(empty($cars)){ + return $this->fail('参数错误'); + } + //获取小组服务公司信息 + $xzCompany = Company::field('id,company_name,master_name,master_phone,master_email,organization_code,company_type')->where('id',$this->userInfo['company_id'])->findOrEmpty(); + if($xzCompany->isEmpty() || $xzCompany['company_type'] != 18){ + return $this->fail('当前用户非小组服务公司'); + } + //获取镇街公司信息 + $zjCompany = Contract::field('party_a')->where('party_b',$this->userInfo['company_id'])->where('signing_timer',2)->findOrEmpty(); + if($zjCompany->isEmpty()){ + return $this->fail('签约镇街公司不存在'); + } + //判断购买车辆中是否包含镇街公司租赁的车辆 + $car_ids = array_column($cars,'id'); + $zjRentCars = VehicleRent::field('car_id as id,car_license as license')->where('company_id',$zjCompany['party_a'])->where('car_id','in',$car_ids)->where('status',0)->where('type',0)->select(); + //判断小组服务公司是否租车或者有自有车辆 + $xzRentCars = VehicleRent::where('rent_company_id',$xzCompany['id'])->where('status','in','1,2')->where('type','<>',2)->findOrEmpty(); + //如果没有租赁车俩和上传自有车辆,也没有购买镇街公司租赁的车辆 则直接发起购买合同 + if($xzRentCars->isEmpty() && $zjRentCars->isEmpty()){ + //发送购买合同给物流系统 + $curl_result = curl_post(env('project.logistic_domain').'/api/signContract',[],[ + 'num' => count($cars), + 'company_id' => $xzCompany['id'], + 'company_name' => $xzCompany['company_name'], + 'company_code' => $xzCompany['organization_code'], + 'company_user' => $xzCompany['master_name'], + 'company_phone' => $xzCompany['master_phone'], + 'company_email' => $xzCompany['master_email'], + 'cars_info' => json_encode($cars), + 'type' => 3 + ]); + if(empty($curl_result)){ + return $this->fail('null return from logistic'); + } + if($curl_result['code'] == 0){ + return $this->fail($curl_result['msg'].' from logistic'); + } + //生成本地合同 + VehicleContract::create($curl_result['data']); + } + //如果没有租赁车俩和上传自有车辆,但有购买镇街公司租赁的车辆 则发起镇街公司与平台公司的解约合同 + if($xzRentCars->isEmpty() && !$zjRentCars->isEmpty()){ + $zjCompanyInfo = Company::field('id,company_name,master_name,master_phone,master_email,organization_code')->where('id',$zjCompany['party_a'])->findOrEmpty(); + //发送解约合同给物流系统 + $curl_result = curl_post(env('project.logistic_domain').'/api/signContract',[],[ + 'num' => count($zjRentCars), + 'company_id' => $zjCompanyInfo['id'], + 'company_name' => $zjCompanyInfo['company_name'], + 'company_code' => $zjCompanyInfo['organization_code'], + 'company_user' => $zjCompanyInfo['master_name'], + 'company_phone' => $zjCompanyInfo['master_phone'], + 'company_email' => $zjCompanyInfo['master_email'], + 'cars_info' => json_encode($zjRentCars), + 'type' => 2 + ]); + if(empty($curl_result)){ + return $this->fail('null return from logistic'); + } + if($curl_result['code'] == 0){ + return $this->fail($curl_result['msg'].' from logistic'); + } + //生成本地合同 + $res = VehicleContract::create($curl_result['data']); + //生成关联记录 + VehicleBuyRecord::create([ + 'company_id' => $xzCompany['id'], + 'company_name' => $xzCompany['company_name'], + 'company_code' => $xzCompany['organization_code'], + 'company_user' => $xzCompany['master_name'], + 'company_phone' => $xzCompany['master_phone'], + 'company_email' => $xzCompany['master_email'], + 'cars_info' => json_encode($cars), + 'num' => count($cars), + 'status' => 3, + 'contract_id' => $res->id, + 'create_time' => time() + ]); + //更改本地车辆状态 + VehicleRent::where('car_id','in',$car_ids)->update(['status'=>1]); + } + //如果有租赁车俩和上传自有车辆,但没有购买镇街公司租赁的车辆 则先向镇街公司发起解约合同 + if(!$xzRentCars->isEmpty() && $zjRentCars->isEmpty()){ + //获取镇街公司信息 + $zjCompanyInfo = Company::field('id,company_name,master_name,master_phone,master_email,organization_code')->where('id',$zjCompany['party_a'])->findOrEmpty(); + //生成本地解约合同 + $res = VehicleContract::create([ + 'contract_no' => time(), + 'contract_logistic_id' => 0, + 'company_a_id' => $zjCompanyInfo['id'], + 'company_a_name' => $zjCompanyInfo['company_name'], + 'company_a_code' => $zjCompanyInfo['organization_code'], + 'company_a_user' => $zjCompanyInfo['master_name'], + 'company_a_phone' => $zjCompanyInfo['master_phone'], + 'company_a_email' => $zjCompanyInfo['master_email'], + 'company_b_id' => $xzCompany['id'], + 'company_b_name' => $xzCompany['company_name'], + 'company_b_code' => $xzCompany['organization_code'], + 'company_b_user' => $xzCompany['master_name'], + 'company_b_phone' => $xzCompany['master_phone'], + 'company_b_email' => $xzCompany['master_email'], + 'num' =>1, + 'cars_info' => json_encode([['id'=>$xzRentCars['car_id'],'license'=>$xzRentCars['car_license']]]), + 'type' => 2, + 'status' => 0, + 'create_time' => time(), + 'update_time' => time(), + ]); + //生成关联记录 + VehicleBuyRecord::create([ + 'company_id' => $xzCompany['id'], + 'company_name' => $xzCompany['company_name'], + 'company_code' => $xzCompany['organization_code'], + 'company_user' => $xzCompany['master_name'], + 'company_phone' => $xzCompany['master_phone'], + 'company_email' => $xzCompany['master_email'], + 'cars_info' => json_encode($cars), + 'num' => count($cars), + 'status' => 1, + 'contract_id' => $res->id, + 'create_time' => time() + ]); + } + //如果有租赁车俩和上传自有车辆,也有购买镇街公司租赁的车辆 则先向镇街公司发起解约合同,再由镇街公司向平台公司发起解约合同 + if(!$xzRentCars->isEmpty() && !$zjRentCars->isEmpty()){ + //获取镇街公司信息 + $zjCompanyInfo = Company::field('id,company_name,master_name,master_phone,master_email,organization_code')->where('id',$zjCompany['party_a'])->findOrEmpty(); + //生成本地解约合同 + $res = VehicleContract::create([ + 'contract_no' => time(), + 'contract_logistic_id' => 0, + 'company_a_id' => $zjCompanyInfo['id'], + 'company_a_name' => $zjCompanyInfo['company_name'], + 'company_a_code' => $zjCompanyInfo['organization_code'], + 'company_a_user' => $zjCompanyInfo['master_name'], + 'company_a_phone' => $zjCompanyInfo['master_phone'], + 'company_a_email' => $zjCompanyInfo['master_email'], + 'company_b_id' => $xzCompany['id'], + 'company_b_name' => $xzCompany['company_name'], + 'company_b_code' => $xzCompany['organization_code'], + 'company_b_user' => $xzCompany['master_name'], + 'company_b_phone' => $xzCompany['master_phone'], + 'company_b_email' => $xzCompany['master_email'], + 'num' =>1, + 'cars_info' => json_encode([['id'=>$xzRentCars['car_id'],'license'=>$xzRentCars['car_license']]]), + 'type' => 2, + 'status' => 0, + 'create_time' => time(), + 'update_time' => time(), + ]); + //生成关联记录 + VehicleBuyRecord::create([ + 'company_id' => $xzCompany['id'], + 'company_name' => $xzCompany['company_name'], + 'company_code' => $xzCompany['organization_code'], + 'company_user' => $xzCompany['master_name'], + 'company_phone' => $xzCompany['master_phone'], + 'company_email' => $xzCompany['master_email'], + 'cars_info' => json_encode($cars), + 'num' => count($cars), + 'status' => 2, + 'contract_id' => $res->id, + 'create_time' => time() + ]); + } + //更新物流系统 + curl_post(env('project.logistic_domain').'/api/Vehicle/updateVehicleStatusToBuy',[],['car_ids'=>implode(',',$car_ids)]); + return $this->success('合同发起成功,等待审核 from task'); + } } \ No newline at end of file diff --git a/app/api/controller/XunFeiController.php b/app/api/controller/XunFeiController.php index b3c0fede4..1bbc82654 100644 --- a/app/api/controller/XunFeiController.php +++ b/app/api/controller/XunFeiController.php @@ -15,7 +15,15 @@ namespace app\api\controller; use IFlytek\Xfyun\Speech\ChatClient; +use IFlytek\Xfyun\Speech\IatClient; +use IFlytek\Xfyun\Speech\TtsClient; +use IFlytek\Xfyun\Speech\OcrClient; +use think\facade\Db; use WebSocket\Client; +use GuzzleHttp\Client as GzClient; +use GuzzleHttp\Psr7\Request; +use GuzzleHttp\Exception\GuzzleException; +use Guzzle\Http\Exception\RequestException; /** * 讯飞 @@ -23,99 +31,419 @@ use WebSocket\Client; */ class XunFeiController extends BaseApiController { - public array $notNeedLogin = ['chat']; + public array $notNeedLogin = ['chat', 'iat', 'tts', 'ocr', 'iatWss', 'analyse']; private $app_id='2eda6c2e'; - private $api_key='12ec1f9d113932575fc4b114a2f60ffd'; - private $api_secret='MDEyMzE5YTc5YmQ5NjMwOTU1MWY4N2Y2'; + //星火认知chat public function chat() { header('X-Accel-Buffering: no'); - $parmas=$this->request->param('content'); - if(empty($parmas)){ - return $this->success('success'); + $content = $this->request->param('content'); + if(empty($content)){ + return $this->data(['answer' => '']); } $chat=new ChatClient($this->app_id,$this->api_key,$this->api_secret); $client = new Client($chat->assembleAuthUrl('wss://spark-api.xf-yun.com/v2.1/chat')); // 连接到 WebSocket 服务器 if ($client) { - // 发送数据到 WebSocket 服务器 - $data = $this->getBody($this->app_id,$parmas); + $header = [ + "app_id" => $this->app_id, + "uid" => "1" + ]; + $parameter = [ + "chat" => [ + "domain" => "generalv2", + "temperature" => 0.5, + "max_tokens" => 1024 + ] + ]; + $payload = [ + "message" => [ + "text" => [ + ["role" => "user", "content" => $content] + ] + ] + ]; + $data = json_encode([ + "header" => $header, + "parameter" => $parameter, + "payload" => $payload + ]); $client->send($data); - // 从 WebSocket 服务器接收数据 $answer = ""; while(true){ $response = $client->receive(); - $resp = json_decode($response,true); - $code = $resp["header"]["code"]; - // echo "从服务器接收到的数据: " . $response; + $resp = json_decode($response, true); + $code = $resp["header"]["code"] ?? 0; if(0 == $code){ $status = $resp["header"]["status"]; if($status != 2){ $content = $resp['payload']['choices']['text'][0]['content']; $answer .= $content; - print($answer); - ob_flush(); // 刷新输出缓冲区 - flush(); // 刷新系统输出缓冲区 }else{ $content = $resp['payload']['choices']['text'][0]['content']; $answer .= $content; - $total_tokens = $resp['payload']['usage']['text']['total_tokens']; - print("\n本次消耗token用量:\n"); - print($total_tokens); - ob_flush(); // 刷新输出缓冲区 - flush(); // 刷新系统输出缓冲区 break; } }else{ - return $this->fail( "服务返回报错".$response); + return $this->fail( "服务返回报错 " . $response); break; } } - ob_flush(); // 刷新输出缓冲区 - flush(); // 刷新系统输出缓冲区 - return $this->success('success'); - + return $this->data(['answer' => $answer]); } else { return $this->fail('无法连接到 WebSocket 服务器'); } } - //构造参数体 - function getBody($appid,$question){ - $header = array( - "app_id" => $appid, - "uid" => "1" - ); - - $parameter = array( - "chat" => array( - "domain" => "generalv2", - "temperature" => 0.5, - "max_tokens" => 1024 - ) - ); - - $payload = array( - "message" => array( - "text" => array( - array("role" => "user", "content" => $question) - ) - ) - ); - - $json_string = json_encode(array( - "header" => $header, - "parameter" => $parameter, - "payload" => $payload - )); + //AI分析信息 + public function analyse() + { + $informationg_demand_id = $this->request->param('informationg_demand_id'); + if(empty($informationg_demand_id)){ + return $this->fail('信息参数错误'); + } + $informationg = Db::name('user_informationg_demand')->where('id', $informationg_demand_id)->where('status', 1)->find(); + $type_name = Db::name('category_business')->where('id', $informationg['category_child'])->value('name'); + $data_field = json_decode($informationg['data_field'], true); + $demand = ''; + foreach($data_field as $k=>$v) { + $demand .= $k . ':' . $v . ';'; + } + $question = "分析以下{$type_name}信息【{$demand}】请问有那些商机?"; + $chat=new ChatClient($this->app_id,$this->api_key,$this->api_secret); + $client = new Client($chat->assembleAuthUrl('wss://spark-api.xf-yun.com/v2.1/chat')); + // 连接到 WebSocket 服务器 + if ($client) { + $header = [ + "app_id" => $this->app_id, + "uid" => "1" + ]; + $parameter = [ + "chat" => [ + "domain" => "generalv2", + "temperature" => 0.5, + "max_tokens" => 1024 + ] + ]; + $payload = [ + "message" => [ + "text" => [ + ["role" => "user", "content" => $question] + ] + ] + ]; + $data = json_encode([ + "header" => $header, + "parameter" => $parameter, + "payload" => $payload + ]); - return $json_string; + $client->send($data); + $answer = ''; + while(true){ + $response = $client->receive(); + $resp = json_decode($response, true); + $code = $resp["header"]["code"] ?? 0; + if($code == 0){ + $status = $resp["header"]["status"]; + $content = $resp['payload']['choices']['text'][0]['content'] ?? ''; + $answer .= $content; + if($status == 2){ + break; + } + }else{ + return $this->fail( "服务返回报错 " . $response); + break; + } + } + $data = [ + 'ai_aianalyse' => $answer, + 'update_time' => time(), + ]; + $res = Db::name('user_informationg_demand')->where('id', $informationg_demand_id)->update($data); + if (!$res) { + return $this->fail('AI分析信息失败'); + } + } else { + return $this->fail('无法连接到 WebSocket 服务器'); + } + return $this->data(['question'=>$question, 'answer' => $answer]); + } - } + //语音听写(流式版) + public function iat() + { + header('X-Accel-Buffering: no'); + $file = request()->file('audio'); + if (empty($file)) { + return $this->fail('未上传音频文件'); + } + // 上传音频临时文件 + $savename = \think\facade\Filesystem::putFile('audio', $file); + + $file = app()->getRootPath() . '/runtime/storage/' . $savename; + if (!file_exists($file)) { + return $this->fail('未上传音频文件'); + } + $filesize = filesize($file); + if ($filesize > 1 * 1024 * 1024) { + return $this->fail('录音文件太长'); + } + $last_file = substr($savename, -36); + $copyFile = app()->getRootPath() . '/public/uploads/iat/' . $last_file; + + // ********** 临时方案 ********** // + copy($file, $copyFile); + // $last_file = 'a1fcdd96c7967b48add17b52ab456368.mp3'; + $curl_url = "https://dev.app.tword.cn/ffmpeg.php?file={$last_file}"; + $ch = curl_init(); + curl_setopt($ch, CURLOPT_URL, $curl_url); + curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); + curl_setopt($ch, CURLOPT_HEADER, 0); + curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0); + curl_exec($ch); + curl_close($ch); + + $file = "https://dev.app.tword.cn/iat/" . $last_file . ".pcm"; + // $ext = pathinfo($file, PATHINFO_EXTENSION); + $ext = "pcm"; + $extArray = ['mp3', 'pcm']; + if (!in_array($ext, $extArray)) { + return $this->fail('录音格式错误'); + } + $encoding = 'raw'; + if ($ext == 'mp3') { + $encoding = 'lame'; + } + if ($ext == 'pcm') { + $encoding = 'raw'; + } + $audioFile = fopen($file, 'rb'); + if ($audioFile === false) { + return $this->fail('音频文件异常'); + } + + try { + $words = ''; + $iatHostUrl = "wss://iat-api.xfyun.cn/v2/iat"; + $iat = new IatClient($this->app_id, $this->api_key, $this->api_secret); + $client = new Client($iat->assembleAuthUrl($iatHostUrl)); + $frameSize = 1280; //每一帧的音频大小 + $intervel = 20 * 1000; //发送音频间隔 + $status = 0; + while (true) { + $len = fread($audioFile, $frameSize); + if ($len === false) { + break; + } + if ($len === '') { //文件读取完了 + $status = 2; + } + switch ($status) { + case 0: //发送第一帧音频,带business 参数 + $frameData = array( + 'common' => array( + 'app_id' => $this->app_id //appid 必须带上,只需第一帧发送 + ), + 'business' => array( //business 参数,只需一帧发送 + 'language' => 'zh_cn', + 'domain' => 'iat', + 'accent' => 'mandarin' + ), + 'data' => array( + 'status' => 0, + 'format' => 'audio/L16;rate=16000', + 'audio' => base64_encode($len), + 'encoding' => $encoding + ) + ); + $client->send(json_encode($frameData)); + $status = 1; + break; + case 1: + $frameData = array( + 'data' => array( + 'status' => 1, + 'format' => 'audio/L16;rate=16000', + 'audio' => base64_encode($len), + 'encoding' => $encoding + ) + ); + $client->send(json_encode($frameData)); + break; + case 2: + $frameData = array( + 'data' => array( + 'status' => 2, + 'format' => 'audio/L16;rate=16000', + 'audio' => base64_encode($len), + 'encoding' => $encoding + ) + ); + $client->send(json_encode($frameData)); + break 2; + } + //模拟音频采样间隔 + usleep($intervel); + } + while (true) { + $response = $client->receive(); + if ($response === null) { + break; + } + $resp = json_decode($response, true); + $code = $resp['code']; + if ($code != 0) { + break; + } + $message = $resp['message']; + $data = $resp['data']; + $result = $data['result']; + $status = $data['status']; + foreach($result['ws'] as $v) { + $words .= $v['cw'][0]['w'] ?? ''; + } + if ($status === 2) { + break; + } + } + fclose($audioFile); + // 删除临时音频文件 + if (file_exists($file)) { + unlink($file); + } + } catch (\Exception $e) { + if (file_exists($file)) { + // 删除临时文件 + unlink($file); + } + return $this->fail($e->getMessage()); + } + return $this->data(['words' => $words]); + } + + //获取语音听写(流式版)websocket地址 + public function iatWss() + { + header('X-Accel-Buffering: no'); + $iatHostUrl = "wss://iat-api.xfyun.cn/v2/iat"; + $iat = new IatClient($this->app_id, $this->api_key, $this->api_secret); + $iat_wss = $iat->assembleAuthUrl($iatHostUrl); + //后期添加鉴权 + return $this->data(['iat_wss' => $iat_wss]); + } + + //语音合成(流式版) + public function tts() + { + header('X-Accel-Buffering: no'); + $ttsHostUrl = "wss://tts-api.xfyun.cn/v2/tts"; + $text = request()->param('text'); + if (empty($text)) { + return $this->fail('未上传文本参数'); + } + $file_name = date('YmdHis', time()) . mt_rand(1000, 9999) . '.mp3'; + $date_path = date('Ymd'); + $dir = app()->getRootPath() . '/public/uploads/audio/' . $date_path; + if (!is_dir($dir)) { + mkdir($dir, 0755, true); + } + $audioFile = $dir . '/' . $file_name; + $business = [ + 'aue' => 'lame', //mp3格式 + 'vcn' => 'x4_lingxiaoyao_en', //发音人 + 'auf' => 'audio/L16;rate=16000', //音频采样率 + 'speed' => 50, //语速 + 'volume' => 100, //音量 + 'pitch' => 50, //音高 + 'tte' => 'UTF8' + ]; + try { + $tts = new TtsClient($this->app_id, $this->api_key, $this->api_secret, $business); + file_put_contents($audioFile, $tts->request($text)->getBody()->getContents()); + //生成语音文件需要定时清理 + } catch (\Exception $e) { + return $this->fail($e->getMessage()); + } + return $this->data(['audio_file' => request()->domain() . '/uploads/audio/' . $date_path . '/' . $file_name]); + } + + //通用文字识别 + public function ocr() + { + $ocrHostUrl = "https://api.xf-yun.com/v1/private/sf8e6aca1"; + $file = request()->file('image'); + if (empty($file)) { + return $this->fail('未上传图片文件'); + } + // 上传图片临时文件 + $savename = \think\facade\Filesystem::putFile('ocr', $file); + $file = app()->getRootPath() . '/runtime/storage/' . $savename; + if (!file_exists($file)) { + return $this->fail('未上传图片文件'); + } + $filesize = filesize($file); + if ($filesize > 4 * 1024 * 1024) { + return $this->fail('图片文件不能超过4M'); + } + $ext = pathinfo($file, PATHINFO_EXTENSION); + $base64_image = base64_encode(file_get_contents($file)); + if (file_exists($file)) { + // 删除临时文件 + unlink($file); + } + $ocr = new OcrClient($this->app_id, $this->api_key, $this->api_secret); + $ocrHostUrl = $ocr->assembleAuthUrl($ocrHostUrl); + $requestBody = [ + 'header' => [ + 'app_id' => $this->app_id, + 'status' => 3 + ], + 'parameter' => [ + 'sf8e6aca1' => [ + 'category' => 'ch_en_public_cloud', + 'result' => [ + 'encoding' => 'utf8', + 'compress' => 'raw', + 'format' => 'json' + ] + ] + ], + 'payload' => [ + 'sf8e6aca1_data_1' => [ + 'encoding' => $ext, + 'status' => 3, + 'image' => $base64_image + ] + ] + ]; + $text = []; + try { + $client = new GzClient(['timeout' => 2]); + $response = $client->request('POST', $ocrHostUrl, [ + 'json' => $requestBody, + 'verify' => false + ]); + $responseData = $response->getBody()->getContents(); + $responseArray = json_decode($responseData, true); + if (empty($responseArray['payload']['result']['text'])) { + return $this->fail('json解析错误'); + } + $encodeText = $responseArray['payload']['result']['text']; + $textArray = json_decode(base64_decode($encodeText), true); + $lineArray = $textArray['pages'][0]['lines'] ?? []; + foreach($lineArray as $item) { + $text[] = $item['words'][0]['content'] ?? ''; + } + } catch (GuzzleException $e) { + return $this->fail($e->getMessage()); + } + return $this->data(['words' => $text]); + } } diff --git a/app/api/controller/ZhiboController.php b/app/api/controller/ZhiboController.php new file mode 100644 index 000000000..1c7536935 --- /dev/null +++ b/app/api/controller/ZhiboController.php @@ -0,0 +1,187 @@ +push_host . '/app/ceshi'; + $key = $this->push_auth_key; + $exp = time() + 3600; + $authurl = $this->authKey($uri, $key, $exp); + return $this->data(['push_url'=>$authurl]); + } + + public function getPullUrl() + { + $uri = $this->pull_host . '/app/ceshi'; + $key = $this->pull_auth_key; + $exp = time() + 3600; + $authurl = $this->authKey($uri, $key, $exp); + return $this->data(['push_url'=>$authurl]); + } + + private function authKey($uri, $key, $exp) + { + preg_match("/^(rtmp:\/\/)?([^\/?]+)?(\/[^?]*)?(\\?.*)?$/", $uri, $matches); + $scheme = $matches[1] ?? ''; + $host = $matches[2] ?? ''; + $path = $matches[3] ?? ''; + if (empty($scheme)) { + $scheme ="rtmp://"; + } + if (empty($path)) { + $path ="/"; + } + $uid = $rand = "0"; + $string = sprintf("%s-%u-%s-%s-%s", $path, $exp, $rand, $uid, $key); + $hashvalue = md5($string); + $auth_key = sprintf("%u-%s-%s-%s", $exp, $rand, $uid, $hashvalue); + return sprintf("%s%s%s?auth_key=%s", $scheme, $host, $path, $auth_key); + } + + public function forbidLiveStream() + { + $config = new Config([ + "accessKeyId" => $this->access_key_id, + "accessKeySecret" => $this->access_key_secret + ]); + $config->endpoint = "live.aliyuncs.com"; + $client = new OpenApiClient($config); + $params = new Params([ + "action" => "ForbidLiveStream", + "version" => "2016-11-01", + "protocol" => "HTTP", + "method" => "POST", + "authType" => "AK", + "style" => "RPC", + "pathname" => "/", + "reqBodyType" => "json", + "bodyType" => "json" + ]); + + $queries = []; + $queries["DomainName"] = "push-live.lihaink.cn"; + $queries["AppName"] = "app"; + $queries["StreamName"] = "ceshi"; + $queries["LiveStreamType"] = "publisher"; + + $runtime = new RuntimeOptions([]); + $request = new OpenApiRequest([ + "query" => OpenApiUtilClient::query($queries) + ]); + + $res = $client->callApi($params, $request, $runtime); + halt($res); + } + + public function resumeLiveStream() + { + $config = new Config([ + "accessKeyId" => $this->access_key_id, + "accessKeySecret" => $this->access_key_secret + ]); + $config->endpoint = "live.aliyuncs.com"; + $client = new OpenApiClient($config); + $params = new Params([ + "action" => "ResumeLiveStream", + "version" => "2016-11-01", + "protocol" => "HTTP", + "method" => "POST", + "authType" => "AK", + "style" => "RPC", + "pathname" => "/", + "reqBodyType" => "json", + "bodyType" => "json" + ]); + + $queries = []; + $queries["DomainName"] = "push-live.lihaink.cn"; + $queries["LiveStreamType"] = "publisher"; + $queries["AppName"] = "app"; + $queries["StreamName"] = "ceshi"; + + $runtime = new RuntimeOptions([]); + $request = new OpenApiRequest([ + "query" => OpenApiUtilClient::query($queries) + ]); + + $res = $client->callApi($params, $request, $runtime); + halt($res); + } + + public function test() { + $config = new Config([ + "accessKeyId" => $this->access_key_id, + "accessKeySecret" => $this->access_key_secret + ]); + $config->endpoint = "live.aliyuncs.com"; + $client = new OpenApiClient($config); + $params = new Params([ + "action" => "DescribeLiveStreamsOnlineList", + "version" => "2016-11-01", + "protocol" => "HTTP", + "method" => "POST", + "authType" => "AK", + "style" => "RPC", + "pathname" => "/", + "reqBodyType" => "json", + "bodyType" => "json" + ]); + $queries = []; + $queries["DomainName"] = "live.lihaink.cn"; + + $runtime = new RuntimeOptions([]); + $request = new OpenApiRequest([ + "query" => OpenApiUtilClient::query($queries) + ]); + + $res = $client->callApi($params, $request, $runtime); + halt($res); + } + +} diff --git a/app/common/controller/ImController.php b/app/common/controller/ImController.php index 58151e895..1fd72668d 100644 --- a/app/common/controller/ImController.php +++ b/app/common/controller/ImController.php @@ -322,7 +322,7 @@ class ImController extends BaseLikeAdminController return $this->fail('请求方式错误'); } //获取请求参数 - $params = $this->request->post(['user_id']); + $params = $this->request->post(['user_id','keywords']); if(empty($params['user_id'])){ return $this->fail('参数错误'); } @@ -339,7 +339,8 @@ class ImController extends BaseLikeAdminController //获取片区经理创建的公司 $company = Company::field('id')->where('area_manager',$userInfo['id'])->column('id'); //获取公司的成员 - $users = User::field('id,nickname as name,avatar')->where('company_id','in',$company)->select()->each(function($item) use($params) { + $params['keywords'] = !empty($params['keywords']) ? $params['keywords'] : ''; + $users = User::field('id,nickname as name,avatar')->where('company_id','in',$company)->where('nickname','like','%'.$params['keywords'].'%')->select()->each(function($item) use($params) { //获取消息 $msg_no_read = UserImMessage::field('id')->where('from_user_id',$item['id'])->where('to_user_id',$params['user_id'])->where('is_read',0)->count(); $last_msg = Db::name('user_im_message')->field('id,content,type,create_time') @@ -383,7 +384,13 @@ class ImController extends BaseLikeAdminController } //获取用户信息 $adminInfo = Admin::field('id,name,avatar')->where('id',$companyInfo['area_manager'])->findOrEmpty(); + //获取片区经理给用户发送的未读消息数 + $msg_num = UserImMessage::field('id')->where([ + ['from_user_id','=',$adminInfo['id']], + ['to_user_id','=',$params['user_id']], + ['is_read','=',0] + ])->count(); //返回 - return $this->success('请求成功',['to_user_id'=>$adminInfo['id'],'manager_name'=>$adminInfo['name'],'manager_avatar'=>$adminInfo['avatar']]); + return $this->success('请求成功',['to_user_id'=>$adminInfo['id'],'manager_name'=>$adminInfo['name'],'manager_avatar'=>$adminInfo['avatar'],'msg_num'=>$msg_num]); } } \ No newline at end of file diff --git a/app/common/logic/CompanyLogic.php b/app/common/logic/CompanyLogic.php index efe3bb6ea..557790006 100644 --- a/app/common/logic/CompanyLogic.php +++ b/app/common/logic/CompanyLogic.php @@ -424,18 +424,10 @@ class CompanyLogic extends BaseLogic $model->party_b = $companyId; $model->save(); return $model->id; - } - public static function getPartyA($companyId) - { - $company = Company::where(['id' => $companyId])->find(); - $contract = Contract::where(['party_b'=>$company['id']])->find(); - if ($contract) { - $partyA = Company::where(['id'=>$contract['party_a']])->find()->toArray(); - return $partyA; - } else { - self::setError("该公司未与上级公司签约,无法充值押金"); - return false; - } } + public static function getList() + { + return Company::field(['id', 'company_name', 'province', 'city', 'area', 'street', 'village', 'brigade'])->select()->toArray(); + } } diff --git a/app/common/logic/ShopRequestLogic.php b/app/common/logic/ShopRequestLogic.php new file mode 100644 index 000000000..1fe6cb4d1 --- /dev/null +++ b/app/common/logic/ShopRequestLogic.php @@ -0,0 +1,192 @@ +request('GET', self::$shopUrlPrefix . '', [ + 'query' => $param + ]); + return $requestResponse->getContent(); + } catch (Exception $e) { + self::setError($e->getMessage()); + return false; + } + } + + /** + * 查询供应链商户入驻5天内是否完成商品上架 + */ + public static function getProductListing($param) + { + try { + $requestResponse = HttpClient::create()->request('GET', self::$shopUrlPrefix . '', [ + 'query' => $param + ]); + return $requestResponse->getContent(); + } catch (Exception $e) { + self::setError($e->getMessage()); + return false; + } + } + + /** + * 供应链商户入驻20天后是否完成库存更新 + */ + public static function getStockUpdate($param) + { + try { + $requestResponse = HttpClient::create()->request('GET', self::$shopUrlPrefix . '', [ + 'query' => $param + ]); + return $requestResponse->getContent(); + } catch (Exception $e) { + self::setError($e->getMessage()); + return false; + } + } + + /** + * 查询商城商品列表 供任务,模板中指定商品 + */ + public static function getProductList($param) + { + try { + $requestResponse = HttpClient::create()->request('GET', self::$shopUrlPrefix . '', [ + 'query' => $param + ]); + return $requestResponse->getContent(); + } catch (Exception $e) { + self::setError($e->getMessage()); + return false; + } + } + + /** + * 查询供应链商户指定商品采购金额 + */ + public static function getPurchaseAmount($param) + { + try { + $requestResponse = HttpClient::create()->request('GET', self::$shopUrlPrefix . '', [ + 'query' => $param + ]); + return $requestResponse->getContent(); + } catch (Exception $e) { + self::setError($e->getMessage()); + return false; + } + } + + /** + * 查询供应链商户指定商品销售金额 + */ + public static function getTradeAmount($param) + { + try { + $requestResponse = HttpClient::create()->request('GET', self::$shopUrlPrefix . '', [ + 'query' => $param + ]); + return $requestResponse->getContent(); + } catch (Exception $e) { + self::setError($e->getMessage()); + return false; + } + } + + /** + * 查询镇农科公司区域 指定时间范围内入驻的一般商户数量 + */ + public static function getGeneralMerchantCount($param) + { + try { + $requestResponse = HttpClient::create()->request('GET', self::$shopUrlPrefix . '', [ + 'query' => $param + ]); + return $requestResponse->getContent(); + } catch (Exception $e) { + self::setError($e->getMessage()); + return false; + } + } + + /** + * 查询一般商户入驻5天内是否完成商品上架 + */ + public static function getGeneralMerchantProductListing($param) + { + try { + $requestResponse = HttpClient::create()->request('GET', self::$shopUrlPrefix . '', [ + 'query' => $param + ]); + return $requestResponse->getContent(); + } catch (Exception $e) { + self::setError($e->getMessage()); + return false; + } + } + + /** + * 查询一般商户入驻5天内是否完成库存更新 + */ + public static function getGeneralMerchantStockUpdate($param) + { + try { + $requestResponse = HttpClient::create()->request('GET', self::$shopUrlPrefix . '', [ + 'query' => $param + ]); + return $requestResponse->getContent(); + } catch (Exception $e) { + self::setError($e->getMessage()); + return false; + } + } + + /** + * 查询一般商户指定商品采购金额 + */ + public static function getGeneralMerchantPurchaseAmount($param) + { + try { + $requestResponse = HttpClient::create()->request('GET', self::$shopUrlPrefix . '', [ + 'query' => $param + ]); + return $requestResponse->getContent(); + } catch (Exception $e) { + self::setError($e->getMessage()); + return false; + } + } + + /** + * 查询一般商户指定商品销售金额 + */ + public static function getGeneralMerchantTradeAmount($param) + { + try { + $requestResponse = HttpClient::create()->request('GET', self::$shopUrlPrefix . '', [ + 'query' => $param + ]); + return $requestResponse->getContent(); + } catch (Exception $e) { + self::setError($e->getMessage()); + return false; + } + } +} \ No newline at end of file diff --git a/app/common/logic/approve/ApproveLogic.php b/app/common/logic/approve/ApproveLogic.php index 146d2dce2..986ae9ffd 100644 --- a/app/common/logic/approve/ApproveLogic.php +++ b/app/common/logic/approve/ApproveLogic.php @@ -4,6 +4,7 @@ namespace app\common\logic\approve; use app\common\logic\BaseLogic; use app\common\model\Approve; +use app\common\model\ShopMerchantSettleinLog; use Symfony\Component\HttpClient\HttpClient; use think\facade\Db; use think\facade\Log; @@ -11,7 +12,7 @@ use think\facade\Log; class ApproveLogic extends BaseLogic { - public static function audit($approve, $params) + public static function audit($approve, $params, $userInfo) { // 拒绝通过 if ($params['check_status'] == 3) { @@ -22,7 +23,7 @@ class ApproveLogic extends BaseLogic } // 修改任务完成状态 if ($params['check_status'] == 2) { - self::pass($approve); + self::pass($approve,$userInfo); } // 回调商城,通知审核状态 @@ -32,10 +33,20 @@ class ApproveLogic extends BaseLogic } } - private static function pass(Approve $approve) + private static function pass(Approve $approve, $userInfo) { + Db::startTrans(); $approve->check_status = 2; $approve->save(); + // 记录商户入驻时间,镇农科公司市场部长任务会使用到 + $shopMerchantInfo = json_decode($approve['extend'], true); + $data = [ + 'town_company_id' => $userInfo['company_id'], + 'mer_intention_id' => $shopMerchantInfo['mer_intention_id'], + 'create_time' => time() + ]; + ShopMerchantSettleinLog::create($data); + Db::commit(); } private static function refuse(Approve $approve, $params) diff --git a/app/common/logic/finance/TownShareProfit.php b/app/common/logic/finance/TownShareProfit.php index 0db2967e0..25cd156ff 100644 --- a/app/common/logic/finance/TownShareProfit.php +++ b/app/common/logic/finance/TownShareProfit.php @@ -156,9 +156,23 @@ class TownShareProfit $masterMoney = bcdiv($taskInfo['money'], 2, 2); $remark = '来自任务【' . $taskSchedulePlan['template_info']['title'] . '】,'; + + //负责人收益 todo + if ($taskSchedulePlan['template_info']['extend']['task_role'] == 1) { + + } + //市场部长收益 + if ($taskSchedulePlan['template_info']['extend']['task_role'] == 2) { + $serviceManagerUser = User::where(['company_id' => $company['id'], 'group_id' => 16])->find(); + Log::info([$taskSchedulePlan['template_info']['title'].'结算-市场部长用户信息', $serviceManagerUser]); + } //服务部长收益 任务金额的50%为服务部长的收益 - $serviceManagerUser = User::where(['company_id' => $company['id'], 'group_id' => 14])->find(); - Log::info([$taskSchedulePlan['template_info']['title'].'结算-服务部长用户信息', $serviceManagerUser]); + if ($taskSchedulePlan['template_info']['extend']['task_role'] == 3) { + $serviceManagerUser = User::where(['company_id' => $company['id'], 'group_id' => 14])->find(); + Log::info([$taskSchedulePlan['template_info']['title'].'结算-服务部长用户信息', $serviceManagerUser]); + } + + // 用户收益变动 $arr = [$serviceManagerUser['id'], AccountLogEnum::UM_INC_TASK, AccountLogEnum::INC, $masterMoney, $taskSchedulePlan['sn'], $remark.'任务结算获得收益' . $masterMoney . '元', ['company_id' => $company['id'], 'proportion' => $proportion], 1]; $this->master($arr); @@ -213,4 +227,169 @@ class TownShareProfit { return AccountLogLogic::add($data[0], $data[1], $data[2], $data[3], $data[4], $data[5], $data[6], $data[7]); } + + /** + * + */ + public function dealTaskSettlementMarketingDirector1($taskInfo, $townCompany, $taskSchedulePlan) + { + try { + Db::startTrans(); + $this->shareProfit($taskInfo, $townCompany, $taskSchedulePlan); + // 更改结算状态 + (new TaskSchedulingPlan())->settlement($taskSchedulePlan['id']); + // 更改任务状态 + Task::where(['id' => $taskSchedulePlan['task_id']])->update(['status' => 3]); + Db::commit(); + return true; + } catch (\Exception $e) { + Db::rollback(); + Log::error($taskSchedulePlan['template_info']['title'].'-任务结算失败:' . $e->getMessage()); + return false; + } + } + + public function dealTaskSettlementMarketingDirector2(Task $taskInfo, Company $townCompany, TaskSchedulingPlan $taskSchedulePlan) + { + try { + Db::startTrans(); + $this->shareProfit($taskInfo, $townCompany, $taskSchedulePlan); + // 更改结算状态 + (new TaskSchedulingPlan())->settlement($taskSchedulePlan['id']); + // 更改任务状态 + Task::where(['id' => $taskSchedulePlan['task_id']])->update(['status' => 3]); + Db::commit(); + return true; + } catch (\Exception $e) { + Db::rollback(); + Log::error($taskSchedulePlan['template_info']['title'].'-任务结算失败:' . $e->getMessage()); + return false; + } + } + + public function dealTaskSettlementMarketingDirector3(Task $taskInfo, Company $townCompany, TaskSchedulingPlan $taskSchedulePlan) + { + try { + Db::startTrans(); + $this->shareProfit($taskInfo, $townCompany, $taskSchedulePlan); + // 更改结算状态 + (new TaskSchedulingPlan())->settlement($taskSchedulePlan['id']); + // 更改任务状态 + Task::where(['id' => $taskSchedulePlan['task_id']])->update(['status' => 3]); + Db::commit(); + return true; + } catch (\Exception $e) { + Db::rollback(); + Log::error($taskSchedulePlan['template_info']['title'].'-任务结算失败:' . $e->getMessage()); + return false; + } + } + + public function dealTaskSettlementMarketingDirector4(Task $taskInfo, Company $townCompany, TaskSchedulingPlan $taskSchedulePlan) + { + try { + Db::startTrans(); + $this->shareProfit($taskInfo, $townCompany, $taskSchedulePlan); + // 更改结算状态 + (new TaskSchedulingPlan())->settlement($taskSchedulePlan['id']); + // 更改任务状态 + Task::where(['id' => $taskSchedulePlan['task_id']])->update(['status' => 3]); + Db::commit(); + return true; + } catch (\Exception $e) { + Db::rollback(); + Log::error($taskSchedulePlan['template_info']['title'].'-任务结算失败:' . $e->getMessage()); + return false; + } + } + + public function dealTaskSettlementMarketingDirector5(Task $taskInfo, Company $townCompany, TaskSchedulingPlan $taskSchedulePlan) + { + try { + Db::startTrans(); + $this->shareProfit($taskInfo, $townCompany, $taskSchedulePlan); + // 更改结算状态 + (new TaskSchedulingPlan())->settlement($taskSchedulePlan['id']); + // 更改任务状态 + Task::where(['id' => $taskSchedulePlan['task_id']])->update(['status' => 3]); + Db::commit(); + return true; + } catch (\Exception $e) { + Db::rollback(); + Log::error($taskSchedulePlan['template_info']['title'].'-任务结算失败:' . $e->getMessage()); + return false; + } + } + + public function dealTaskSettlementMarketingDirector6(Task $taskInfo, Company $townCompany, TaskSchedulingPlan $taskSchedulePlan) + { + try { + Db::startTrans(); + $this->shareProfit($taskInfo, $townCompany, $taskSchedulePlan); + // 更改结算状态 + (new TaskSchedulingPlan())->settlement($taskSchedulePlan['id']); + // 更改任务状态 + Task::where(['id' => $taskSchedulePlan['task_id']])->update(['status' => 3]); + Db::commit(); + return true; + } catch (\Exception $e) { + Db::rollback(); + Log::error($taskSchedulePlan['template_info']['title'].'-任务结算失败:' . $e->getMessage()); + return false; + } + } + + public function dealTaskSettlementMarketingDirector7(Task $taskInfo, Company $townCompany, TaskSchedulingPlan $taskSchedulePlan) + { + try { + Db::startTrans(); + $this->shareProfit($taskInfo, $townCompany, $taskSchedulePlan); + // 更改结算状态 + (new TaskSchedulingPlan())->settlement($taskSchedulePlan['id']); + // 更改任务状态 + Task::where(['id' => $taskSchedulePlan['task_id']])->update(['status' => 3]); + Db::commit(); + return true; + } catch (\Exception $e) { + Db::rollback(); + Log::error($taskSchedulePlan['template_info']['title'].'-任务结算失败:' . $e->getFile(). $e->getLine(). $e->getMessage()); + return false; + } + } + + public function dealTaskSettlementMarketingDirector8(Task $taskInfo, Company $townCompany, TaskSchedulingPlan $taskSchedulePlan) + { + try { + Db::startTrans(); + $this->shareProfit($taskInfo, $townCompany, $taskSchedulePlan); + // 更改结算状态 + (new TaskSchedulingPlan())->settlement($taskSchedulePlan['id']); + // 更改任务状态 + Task::where(['id' => $taskSchedulePlan['task_id']])->update(['status' => 3]); + Db::commit(); + return true; + } catch (\Exception $e) { + Db::rollback(); + Log::error($taskSchedulePlan['template_info']['title'].'-任务结算失败:' . $e->getMessage()); + return false; + } + } + + public function dealTaskSettlementMarketingDirector9(Task $taskInfo, Company $townCompany, TaskSchedulingPlan $taskSchedulePlan) + { + try { + Db::startTrans(); + $this->shareProfit($taskInfo, $townCompany, $taskSchedulePlan); + // 更改结算状态 + (new TaskSchedulingPlan())->settlement($taskSchedulePlan['id']); + // 更改任务状态 + Task::where(['id' => $taskSchedulePlan['task_id']])->update(['status' => 3]); + Db::commit(); + return true; + } catch (\Exception $e) { + Db::rollback(); + Log::error($taskSchedulePlan['template_info']['title'].'-任务结算失败:' . $e->getMessage()); + return false; + } + } } diff --git a/app/common/logic/task/TaskLogic.php b/app/common/logic/task/TaskLogic.php index 5d78eefc2..f5fa3e36e 100644 --- a/app/common/logic/task/TaskLogic.php +++ b/app/common/logic/task/TaskLogic.php @@ -16,9 +16,11 @@ namespace app\common\logic\task; use app\common\logic\finance\TownShareProfit; +use app\common\logic\ShopRequestLogic; use app\common\model\CompanyComplaintFeedback; use app\common\model\contract\Contract; use app\common\model\dict\DictData; +use app\common\model\ShopMerchantSettleinLog; use app\common\model\task\Task; use app\common\logic\BaseLogic; use app\common\model\Company; @@ -310,52 +312,36 @@ class TaskLogic extends BaseLogic return true; } } - $time = strtotime(date('Y-m-d')); - // 任务类型code - $taskType = (new DictData())->getTownTaskType($taskTemplate['type']); Db::startTrans(); - $TaskSchedulingPlan_data = [ - 'create_user_id' => 0, - 'company_id' => $taskTemplate['company_id'], - 'template_id' => $taskTemplate['id'], - 'scheduling_id' => $taskTemplate['task_scheduling'], - 'start_time' => $time, - 'end_time' => $time + 86399, - 'sn' => User::createUserSn(), - 'status' => 1 - ]; - $TaskSchedulingPlan = TaskSchedulingPlan::create($TaskSchedulingPlan_data); + + $time = strtotime(date('Y-m-d')); + $directorUid = 0; // 指派给 + if ($taskTemplate['extend']['task_role'] == 2) { + $marketingManagerUser = User::where(['company_id'=>$taskTemplate['company_id'], 'group_id'=> 16])->find(); + Log::info(['镇农科公司定时任务下发-市场部长user信息', $marketingManagerUser]); + $directorUid = $marketingManagerUser['id']; + } + + if ($taskTemplate['extend']['task_role'] == 3) { + $serviceManagerUser = User::where(['company_id'=>$taskTemplate['company_id'], 'group_id'=> 14])->find(); + Log::info(['镇农科公司定时任务下发-服务部长user信息', $serviceManagerUser]); + $directorUid = $serviceManagerUser['id']; + } + + // 添加任务计划 + $TaskSchedulingPlan = self::addTaskSchedulePlan($taskTemplate, $time); Log::info(['镇农科公司定时任务下发-添加plan结果', $TaskSchedulingPlan]); - $serviceManagerUser = User::where(['company_id'=>$taskTemplate['company_id'], 'group_id'=> 14])->find(); - Log::info(['镇农科公司定时任务下发-服务部长user信息', $serviceManagerUser]); - $arr = [ - 'template_id' => $taskTemplate['id'], - 'scheduling_plan_id' => $TaskSchedulingPlan['id'], - 'company_id' => $taskTemplate['company_id'], - 'title' => $taskTemplate['title'], - 'money' => $taskTemplate['money'], - 'type' => $taskTemplate['type'], - 'content' => $taskTemplate['content'], - 'start_time' => $time, - 'end_time' => $time + 86399, - 'director_uid' => $serviceManagerUser['id'], // 默认都指派给服务部长 - 'create_time' => time(), - 'update_time' => time(), - ]; - $data = $arr; - $data['money'] = self::countTownTaskMoney($taskTemplate); - $extend = []; - // 督促小组服务团队学习任务 扩展信息 - if ($taskType == 'town_task_type_4') { - $extend = ['town_task_type_4' => ['study_photo'=>[], 'sign_in_table'=>'', 'study_content'=> '']]; - } - $data['extend'] = json_encode($extend); - $task_id = (new Task())->insertGetId($data); + // 添加任务 + $task_id = self::addTask($taskTemplate, $TaskSchedulingPlan, $time, $directorUid); Log::info(['镇农科公司定时任务下发-添加task结果', $task_id]); + + // 关联任务计划和任务 TaskSchedulingPlan::where('id', $TaskSchedulingPlan['id'])->update(['task_id' => $task_id, 'is_execute' => 1]); + // 任务累计进行天数 +1 TaskTemplate::where('id', $taskTemplate['id'])->inc('day_count')->update(); + Db::commit(); } catch (\Exception $e) { Db::rollback(); @@ -363,53 +349,154 @@ class TaskLogic extends BaseLogic } } - private static function countTownTaskMoney($tempalte) + private static function addTaskSchedulePlan($taskTemplate, $time) { - $v_day_count = $tempalte['day_count']; + $TaskSchedulingPlan_data = [ + 'create_user_id' => 0, + 'company_id' => $taskTemplate['company_id'], + 'template_id' => $taskTemplate['id'], + 'scheduling_id' => $taskTemplate['task_scheduling'], + 'start_time' => $time, + 'end_time' => $time + 86399, + 'sn' => User::createUserSn(), + 'status' => 1 + ]; + $TaskSchedulingPlan = TaskSchedulingPlan::create($TaskSchedulingPlan_data); + + return $TaskSchedulingPlan; + } + + private static function addTask($taskTemplate, $TaskSchedulingPlan, $time, $directorUid) + { + $arr = [ + 'template_id' => $taskTemplate['id'], + 'scheduling_plan_id' => $TaskSchedulingPlan['id'], + 'company_id' => $taskTemplate['company_id'], + 'title' => $taskTemplate['title'], + 'money' => $taskTemplate['money'], + 'type' => $taskTemplate['type'], + 'content' => $taskTemplate['content'], + 'start_time' => $time, + 'end_time' => $time + 86399, + 'director_uid' => $directorUid, // 指派给 + 'create_time' => time(), + 'update_time' => time(), + ]; + $data = $arr; + + // 不同角色,计算任务金额有差异 + if($taskTemplate['extend']['task_role'] == 2) { + $data['money'] = self::countTownTaskMarketingMoney($taskTemplate); + } + if($taskTemplate['extend']['task_role'] == 3) { + $data['money'] = self::countTownTaskMoney($taskTemplate); + } + + + $extend = []; + // 任务类型code + $taskType = (new DictData())->getTownTaskType($taskTemplate['type']); + // 督促小组服务团队学习任务 扩展信息 + if ($taskType == 'town_task_type_4') { + $extend = ['town_task_type_4' => ['study_photo'=>[], 'sign_in_table'=>'', 'study_content'=> '']]; + } + $data['extend'] = json_encode($extend); + $task_id = (new Task())->insertGetId($data); + return $task_id; + } + + private static function countTownTaskMoney($template) + { + $v_day_count = $template['day_count']; $v_day_count = $v_day_count + 1; - $stageDayOneAccumulative = $tempalte['stage_day_one']; // 第一阶段天数 - $stageDayTwoAccumulative = bcadd($tempalte['stage_day_one'], $tempalte['stage_day_two']); // 第二阶段天数 第一+第二 - $stageDayThreeAccumulative = bcadd($stageDayTwoAccumulative, $tempalte['stage_day_three']); // 第二阶段天数 第二阶段累计值+第三 + $stageDayOneAccumulative = $template['stage_day_one']; // 第一阶段天数 + $stageDayTwoAccumulative = bcadd($template['stage_day_one'], $template['stage_day_two']); // 第二阶段天数 第一+第二 + $stageDayThreeAccumulative = bcadd($stageDayTwoAccumulative, $template['stage_day_three']); // 第三阶段天数 第二阶段累计值+第三 // 单次和循环任务 - if ($tempalte['types'] == 1 || $tempalte['types'] == 3) { + if ($template['types'] == 1 || $template['types'] == 3) { if ($v_day_count <= $stageDayOneAccumulative) { // 第一阶段金额 - return $tempalte['money']; + return $template['money']; } else if ($stageDayOneAccumulative < $v_day_count && $v_day_count<= $stageDayTwoAccumulative) { // 第二阶段金额 - return $tempalte['money_two']; + return $template['money_two']; } else if ( $stageDayTwoAccumulative < $v_day_count && $v_day_count <= $stageDayThreeAccumulative) { // 第三阶段金额 - return $tempalte['new_money_three']; + return $template['new_money_three']; } - } elseif ($tempalte['types'] == 2) { + } elseif ($template['types'] == 2) { // 长期任务 // 督促完成需求收集和交易任务 第二个阶段即长期 $townTaskTypeList = DictData::where(['type_value' => 'town_task_type', 'status' => 1])->column('value', 'id'); - if ($townTaskTypeList[$tempalte['type']]=== 'town_task_type_5') { + if (isset($townTaskTypeList[$template['type']]) && $townTaskTypeList[$template['type']]=== 'town_task_type_5') { if ($v_day_count<= $stageDayOneAccumulative) { // 第一阶段金额 - return $tempalte['money']; + return $template['money']; } elseif ( $v_day_count > $stageDayOneAccumulative) { // 长期金额 - return $tempalte['money_three']; + return $template['money_three']; } } if ($v_day_count<= $stageDayOneAccumulative) { // 第一阶段金额 - return $tempalte['money']; + return $template['money']; } elseif ( $stageDayOneAccumulative < $v_day_count && $v_day_count <= $stageDayTwoAccumulative) { // 第二阶段金额 - return $tempalte['money_two']; + return $template['money_two']; } else if ( $stageDayTwoAccumulative < $v_day_count && $v_day_count <=$stageDayThreeAccumulative) { // 第三阶段金额 - return $tempalte['new_money_three']; + return $template['new_money_three']; } else { // 长期金额 - return $tempalte['money_three']; + return $template['money_three']; + } + } + } + + private static function countTownTaskMarketingMoney($template) + { + $v_day_count = $template['day_count']; + $v_day_count = $v_day_count + 1; + $stageDayOneAccumulative = $template['stage_day_one']; // 第一阶段天数 + $stageDayTwoAccumulative = bcadd($template['stage_day_one'], $template['stage_day_two']); // 第二阶段天数 第一+第二 + $stageDayThreeAccumulative = bcadd($stageDayTwoAccumulative, $template['stage_day_three']); // 第三阶段天数 第二阶段累计值+第三 + + // 单次和循环任务 + if ($template['types'] == 1 || $template['types'] == 3) { + if ($v_day_count <= $stageDayOneAccumulative) { + // 第一阶段金额 + return $template['money']; + } else if ($stageDayOneAccumulative < $v_day_count && $v_day_count<= $stageDayTwoAccumulative) { + // 第二阶段金额 + return $template['money_two']; + } else if ( $stageDayTwoAccumulative < $v_day_count && $v_day_count <= $stageDayThreeAccumulative) { + // 第三阶段金额 + return $template['new_money_three']; + } + } elseif ($template['types'] == 2) { + // 长期任务 + + // 市场部长协助总负责人开展日常工作 第一个阶段即长期 + $townTaskTypeList = DictData::where(['type_value' => 'town_task_type_marketing_director', 'status' => 1])->column('value', 'id'); + if (isset($townTaskTypeList[$template['type']]) && $townTaskTypeList[$template['type']]=== 'town_task_type_marketing_director_1') { + return $template['money_three']; + } + + if ($v_day_count<= $stageDayOneAccumulative) { + // 第一阶段金额 + return $template['money']; + } elseif ( $stageDayOneAccumulative < $v_day_count && $v_day_count <= $stageDayTwoAccumulative) { + // 第二阶段金额 + return $template['money_two']; + } else if ( $stageDayTwoAccumulative < $v_day_count && $v_day_count <=$stageDayThreeAccumulative) { + // 第三阶段金额 + return $template['new_money_three']; + } else { + // 长期金额 + return $template['money_three']; } } } @@ -423,47 +510,1018 @@ class TaskLogic extends BaseLogic try { Log::info(['镇农科公司定时任务结算执行-任务计划', $taskSchedulePlan]); $taskTemplateInfo = $taskSchedulePlan['template_info']; - // 任务类型用的数据字典主键id,将id和value作映射,避免测试和正式环境数据字典数据不一致时出问题 - $townTaskTypeList = DictData::where(['type_value' => 'town_task_type', 'status' => 1])->column('value', 'id'); - switch ($townTaskTypeList[$taskTemplateInfo['type']]){ + // 负责人任务结算 todo + if ($taskTemplateInfo['extend']['task_role'] == 1) { - case 'town_task_type_1': - // 协助总负责人开展工作任务 - self::dealTownTask1($taskSchedulePlan); - break; - case 'town_task_type_2': - // 拓展小组服务团队工作任务 - self::dealTownTask2($taskSchedulePlan); - break; - case 'town_task_type_3': - // 督促小组服务团队完成任务,协助开展工作,解决问题任务 - self::dealTownTask3($taskSchedulePlan); - break; - case 'town_task_type_4': - // 督促小组服务团队学习任务 - self::dealTownTask4($taskSchedulePlan); - break; - case 'town_task_type_5': - // 督促小组服务团队完成需求收集和交易任务 - self::dealTownTask5($taskSchedulePlan); - break; - case 'town_task_type_6': - // 督促小组服务团队入股村联络员所成立的公司任务 - self::dealTownTask6($taskSchedulePlan); - break; - case 'town_task_type_7': - // 安全工作任务 - self::dealTownTask7($taskSchedulePlan); - break; - default : - return true; } + // 市场部长任务结算 + if ($taskTemplateInfo['extend']['task_role'] == 2) { + self::marketingManagerTaskSettlement($taskSchedulePlan); + } + // 服务部长任务结算 + if ($taskTemplateInfo['extend']['task_role'] == 3) { + self::serviceManagerTaskSettlement($taskSchedulePlan); + } + } catch (Exception $e) { - Log::error(['镇农科任务结算失败',$e]); + Log::error(['镇农科任务结算失败',$e->getFile(), $e->getLine(), $e->getMessage()]); } } + /** + * @param $taskSchedulePlan + * 市场部长任务结算 + */ + private static function marketingManagerTaskSettlement($taskSchedulePlan) + { + $taskTemplateInfo = $taskSchedulePlan['template_info']; + // 任务类型用的数据字典主键id,将id和value作映射,避免测试和正式环境数据字典数据不一致时出问题 + $townTaskTypeList = DictData::where(['type_value' => 'town_task_type_marketing_director', 'status' => 1])->column('value', 'id'); + switch ($townTaskTypeList[$taskTemplateInfo['type']]){ + // 协助总负责人开展工作 + case 'town_task_type_marketing_director_1': + self::dealTaskMarketingDirector1($taskSchedulePlan); + break; + // 招驻供应链商户 + case 'town_task_type_marketing_director_2': + self::dealTaskMarketingDirector2($taskSchedulePlan); + break; + // 协助供应链商户上架商品和库存更新 + case 'town_task_type_marketing_director_3': + self::dealTaskMarketingDirector3($taskSchedulePlan); + break; + // 督促供应链商户完成采购 + case 'town_task_type_marketing_director_4': + self::dealTaskMarketingDirector4($taskSchedulePlan); + break; + // 督促供应链商户完成销售 + case 'town_task_type_marketing_director_5': + self::dealTaskMarketingDirector5($taskSchedulePlan); + break; + // 招驻一般商户 + case 'town_task_type_marketing_director_6': + self::dealTaskMarketingDirector6($taskSchedulePlan); + break; + // 协助一般商户上架商品和库存更新 + case 'town_task_type_marketing_director_7': + self::dealTaskMarketingDirector7($taskSchedulePlan); + break; + // 督促一般商户完成采购 + case 'town_task_type_marketing_director_8': + self::dealTaskMarketingDirector8($taskSchedulePlan); + break; + // 督促一般商户完成销售 + case 'town_task_type_marketing_director_9': + self::dealTaskMarketingDirector9($taskSchedulePlan); + break; + case 'town_task_type_marketing_director_10': + self::dealTaskMarketingDirector10($taskSchedulePlan); + break; + default: + return true; + } + } + + /** + * @param $taskSchedulePlan + * 市场部长协助总负责人开展工作 任务完成判定和结算 + */ + private static function dealTaskMarketingDirector1($taskSchedulePlan) + { + Log::info(['镇农科公司定时任务结算执行-'.$taskSchedulePlan['template_info']['title']]); + $taskTemplateInfo = $taskSchedulePlan['template_info']; + $taskInfo = Task::where(['id' => $taskSchedulePlan['task_id']])->find(); + $townCompany = Company::where(['id' => $taskTemplateInfo['company_id']])->find(); + $groupServiceCompanyList = Company::where(['street' => $townCompany['street'], 'company_type' => 18])->select()->toArray(); + $isDone = 1; // 任务是否完成标记 + $isTaskSchedule = 0; // 下属小组服务公司是否有每日任务安排标记 + + foreach ($groupServiceCompanyList as $groupServiceCompany) { + // 查询小组服务公司是否有对应的每日任务安排 + $templateList = TaskTemplate::where(['company_id' => $groupServiceCompany['id']])->whereIn('type', [31, 32, 33])->select()->toArray(); + // 未做任务安排的小组服务公司不在判定范围内,跳出本次循环 + if(count($templateList) === 3) { + $isTaskSchedule = 1; + // 查询小组服务公司的循环任务有没有全部做完 任意有一个任务没有做完,则判定为该小组服务公司没有完成每日任务,即协助总负责人开展工作任务也认定失败 + foreach ($templateList as $template) { + $task = Task::where(['template_id' => $template['id'], 'status' => 3])->find(); + if (empty($task)) { + $isDone = 0; + break; + } + } + } + } + + // 下属小组服务公司有任务安排,也完成了任务 + if ($isDone === 1 && $isTaskSchedule === 1) { + // 做任务结算,分润 + (new TownShareProfit())->dealTaskSettlementMarketingDirector1($taskInfo, $townCompany, $taskSchedulePlan); + } else { + // 关闭任务 + (new Task())->closeTask($taskSchedulePlan['task_id']); + Log::info('协助总负责人开展工作任务,结算失败:' . $taskTemplateInfo['title'] . '未完成。任务:' . json_encode($taskInfo)); + } + } + + /** + * 招驻供应链商户 单次任务 任务完成判定和结算 + * 判定条件 : 任务下发60天内,供应链商户在商城开户并缴纳押金不少于5000,>=6家 + * 当前任务进行天数 < 第一阶段天数 只刷新任务时间 + * 当前任务进行天数 = 第一阶段天数 判定任务完成情况,结算 + */ + private static function dealTaskMarketingDirector2($taskSchedulePlan) + { + $templateInfo = $taskSchedulePlan['template_info']; + $dayCount = $templateInfo['day_count']; + $townCompany = Company::where(['id' => $templateInfo['company_id']])->find(); + $taskInfo = Task::where(['id' => $taskSchedulePlan['task_id']])->find(); + // 当前任务进行天数 < 第一阶段天数 只刷新任务时间 + if ($dayCount < $templateInfo['stage_day_one']) { + self::flushTaskTime($taskSchedulePlan); + return true; + } + + // 当前任务进行天数 = 第一阶段天数 判定任务完成情况,结算 + if ($dayCount == $templateInfo['stage_day_one']) { + // 请求商城接口,获取完成几家 todo + $param['start_time'] = strtotime(date('Y-m-d', $templateInfo['cretate_time'])) + 86400; + $param['end_time'] = time(); + $result = ShopRequestLogic::getSupplyChainMerchantCount($param); + if (!$result) { + Log::error('查询供应链商户统计接口失败'.ShopRequestLogic::getError()); + return false; + } + $count = 0; // todo 从$result取值 + + // 完成数小于3,关闭任务,不做结算 + if ($count < 3){ + (new Task())->closeTask($taskSchedulePlan['task_id']); + } + // 完成数大于等于3,结算 + $target = $templateInfo['extend']['target']; + $perMoney = bcdiv(bcmul($templateInfo['stage_day_one'], $templateInfo['money']), $target); // 完成单个金额 + + if ($count >= 6) { + $count = 6; + } + $taskInfo['money'] = bcmul($count, $perMoney); // 任务金额 + // 结算,分润 + (new TownShareProfit())->dealTaskSettlementMarketingDirector2($taskInfo, $townCompany, $taskSchedulePlan); + } + } + + /** + * 协助供应链商户商品上架和库存更新 长期 判定与结算 + * 请求商城接口,查询每个商户入驻5天内是否完成商品上架 + * 请求商城接口,查询每个商户商品上架构后15天内是否完成库存更新 + * + */ + public static function dealTaskMarketingDirector3($taskSchedulePlan) + { + $templateInfo = $taskSchedulePlan['template_info']; + $townCompany = Company::where(['id' => $templateInfo['company_id']])->find(); + $taskInfo = Task::where(['id' => $taskSchedulePlan['task_id']])->find(); + // 商城商户入驻申请id 与商户已关联 + $shopMerchantSettleinLogList= ShopMerchantSettleinLog::where(['town_company_id'=>$townCompany['id']])->select()->toArray(); + // 遍历农科公司区域下的商户,对每个商户进行判定 + foreach ($shopMerchantSettleinLogList as $item) { + + // 入驻5天内是否完成商品上架 + $startTime = $item['create_time']; // 入驻时间 + $endTime = bcadd($startTime, bcmul(86400, $templateInfo['stage_day_one'])); + // 只在入驻5天后的最后一天结算,不然会重复结算 + if (date('Y-m-d', $endTime) == date('Y-m-d', time())) { + $merIntentionId = $item['mer_intention_id']; + $param = [ + 'start_time' => $startTime, + 'end_time' => $endTime, + 'mer_intention_id' => $merIntentionId, + ]; + $result = ShopRequestLogic::getProductListing($param); + Log::info(['4.市场部长-供应链商户完成商品上架和库存更新任务-查询商城接口结果', json_encode($result)]); + // 完成则结算 todo 返回字段要对接 + if ($result['is_done'] == 1){ + // 结算金额 任务金额/目标数 * 天数 + $taskInfo['money'] = bcmul($templateInfo['stage_day_one'], bcdiv($templateInfo['money'], $templateInfo['extend']['target'])); + Log::info(['5.市场部长-供应链商户完成商品上架任务-$taskSchedulePlan', json_encode($taskSchedulePlan)]); + (new TownShareProfit())->dealTaskSettlementMarketingDirector3($taskInfo, $townCompany, $taskSchedulePlan); + } + } + + + // 商品上架构后15天内是否完成库存更新 + $startTime = $item['create_time']; + $endTime = bcadd($startTime, bcmul( 86400, bcadd($templateInfo['stage_day_one'], $templateInfo['stage_day_two']))) ; + // 只在上架完成15天后的最后一天结算 + if (date('Y-m-d', $endTime) == date('Y-m-d', time())) { + $merIntentionId = $item['mer_intention_id']; + $param = [ + 'start_time' => $startTime, + 'end_time' => $endTime, + 'mer_intention_id' => $merIntentionId, + ]; + $result1 = ShopRequestLogic::getStockUpdate($param); // todo 返回字段要对接 + Log::info(['4.市场部长-供应链商户完成库存更新任务-查询商城接口结果', json_encode($result)]); + if ($result1['is_done'] == 1){ + // 结算金额 任务金额/目标数 * 天数 + $taskInfo['money'] = bcmul($templateInfo['stage_day_two'], bcdiv($templateInfo['money_two'], $templateInfo['extend']['target'])); + Log::info(['5.市场部长-供应链商户完成商品上架任务-$taskSchedulePlan', json_encode($taskSchedulePlan)]); + (new TownShareProfit())->dealTaskSettlementMarketingDirector3($taskInfo, $townCompany, $taskSchedulePlan); + } + } + } + + // 未完成的情况下,每天自动关闭任务 + $task = Task::where(['id'=>$taskSchedulePlan['task_id']])->find(); + if ($task['status'] != 3) { + (new Task())->closeTask($task['id']); + } + } + + /** + * 协助供应链商户采购任务 长期 判定与结算 + * 根据每个商户入驻时间,推出各个周期范围的起始时间,商户申请id,指定商品id。请求商城接口 + */ + public static function dealTaskMarketingDirector4($taskSchedulePlan) + { + $templateInfo = $taskSchedulePlan['template_info']; + $townCompany = Company::where(['id' => $templateInfo['company_id']])->find(); + $taskInfo = Task::where(['id' => $taskSchedulePlan['task_id']])->find(); + // 商城商户入驻申请id 与商户已关联 + $shopMerchantSettleinLogList= ShopMerchantSettleinLog::where(['town_company_id'=>$townCompany['id']])->select()->toArray(); + // 遍历农科公司区域下的商户,对每个商户进行判定 + foreach ($shopMerchantSettleinLogList as $item) { + + // 第一阶段 从入驻时间累计到第一阶段周期天数 为结算日期 只在截止日当天才结算 + $startTime = strtotime(date('Y-m-d', $item['create_time'])); // 入驻当日 00:00:00 + $endTime = strtotime("{$templateInfo['stage_day_one']} day", $startTime); // $templateInfo['stage_day_one']天后的 00:00:00 + if (date('Y-m-d', $endTime) == date('Y-m-d', time())){ + // 任务判定 + self::judgeTaskMarketingDirector4($templateInfo, $item, $taskSchedulePlan, $startTime, $endTime, 1, $townCompany, $taskInfo); + } + + // 第二阶段 从入驻时间累计到第二阶段周期天数 为结算日期 只在截止日当天才结算 + $startTime1 = $endTime; // 第一阶段 截止日 00:00:00 + $stageDayTwoCount = bcadd($templateInfo['stage_day_one'], $templateInfo['stage_day_two']); + $endTime1 = strtotime("{$stageDayTwoCount} day", $startTime); + if (date('Y-m-d', $endTime) == date('Y-m-d', time())){ + self::judgeTaskMarketingDirector4($templateInfo, $item, $taskSchedulePlan, $startTime1, $endTime1, 2, $townCompany, $taskInfo); + } + + // 第三阶段 从入驻时间累计到第三阶段周期天数 为结算日期 只在截止日当天才结算 + $startTime2 = $endTime1; // 第二阶段 截止日 00:00:00 + $stageDayThreeCount = bcadd(bcadd($templateInfo['stage_day_one'], $templateInfo['stage_day_two']), $templateInfo['stage_day_three']); + $endTime2 = strtotime("{$stageDayThreeCount} day", $startTime); + if (date('Y-m-d', $endTime) == date('Y-m-d', time())){ + self::judgeTaskMarketingDirector4($templateInfo, $item, $taskSchedulePlan, $startTime2, $endTime2, 3, $townCompany, $taskInfo); + } + + // 长期 间隔天数 = 当前日期的00:00:00时间戳 - 商户入驻时间累计三个阶段天数的日期00:00:00时间戳 + $startTime3 = $endTime2; // 第三阶段 截止日 00:00:00 + $intervalDayCount = intdiv(bcsub( strtotime(date('Y-m-d', time())), $endTime2), 86400); + $endTime3 = strtotime(date('Y-m-d', time())); + // 间隔天数能整除30 表示可以结算 + if ($intervalDayCount % 30 === 0) { + $step = bcadd(3, intdiv($intervalDayCount, 30)); + self::judgeTaskMarketingDirector4($templateInfo, $item, $taskSchedulePlan, $startTime3, $endTime3, $step, $townCompany, $taskInfo); + } + } + // 未完成的情况下,每天自动关闭任务 + $task = Task::where(['id'=>$taskSchedulePlan['task_id']])->find(); + if ($task['status'] != 3) { + (new Task())->closeTask($task['id']); + } + } + + /** + * @param $templateInfo + * @param $item + * @param $taskSchedulePlan + * @param $startTime + * @param $endTime + * 判定任务是否完成 完成则结算分润 + */ + private static function judgeTaskMarketingDirector4($templateInfo, $item, $taskSchedulePlan, $startTime, $endTime, $step, $townCompany, $taskInfo) + { + // 只在截止日当天才结算 + $merIntentionId = $item['mer_intention_id']; + $directorGoodsId = $item['extend']['goods_id']; + $param = [ + 'start_time' => $startTime, + 'end_time' => $endTime, + 'mer_intention_id' => $merIntentionId, + 'goods_id' => $directorGoodsId + ]; + $result1 = ShopRequestLogic::getPurchaseAmount($param); + // todo 返回字段要对接 + if ($result1['procure_amount'] > 0) { + $procureAmount = $result1['procure_amount']; + // 采购金额 实际完成率 + $rate = self::countRate($procureAmount, $step); + + if (bccomp($rate, 0.5, 2) == -1) { + (new Task())->closeTask($taskSchedulePlan['task_id']); + } else { + $taskMoney = 0; + // 全额完成可获得的总金额 + $totalMoney = bcmul(30, bcdiv($templateInfo['money_three'], $templateInfo['extend']['target'], 2), 2); + // 已完成 计算结算金额 + if ($step == 1) { + $totalMoney = bcmul($templateInfo['stage_day_one'], bcdiv($templateInfo['money'], $templateInfo['extend']['target'], 2), 2); + } + if ($step == 2) { + $totalMoney = bcmul($templateInfo['stage_day_two'], bcdiv($templateInfo['money_two'], $templateInfo['extend']['target'], 2), 2); + } + if ($step == 3) { + $totalMoney = bcmul(20, bcdiv($templateInfo['money_two'], $templateInfo['extend']['target'], 2), 2) + bcmul(10, bcdiv($templateInfo['money_three'], $templateInfo['extend']['target'], 2), 2); + } + + if ($procureAmount >= 300000) { + $taskMoney = $totalMoney; + } else { + // 计算结算金额 周期天数*(money/目标数)*实际完成率*对应发放比例 + $taskMoney= self::countTaskMarketingDirector4TaskMoney($totalMoney, $rate); + } + $taskInfo['money'] = $taskMoney; + $taskSchedulePlan = TaskSchedulingPlan::where(['id', $taskInfo['scheduling_plan_id']]) + ->withJoin(['scheduling'], 'left') + ->where('scheduling.company_type', 41) + ->where('is_pay',0) + ->with(['template_info']) + ->find(); + Log::info(['5.市场部长-供应链商户完成采购任务-$taskSchedulePlan', json_encode($taskSchedulePlan)]); + (new TownShareProfit())->dealTaskSettlementMarketingDirector4($taskInfo, $townCompany, $taskSchedulePlan); + } + } + } + + /** + * @param $totalMoney 每完成一次目标金额 + * @param $rate 实际完成率 + * 计算结算金额 全额任务金额*对应发放比例*实际完成率 + */ + private static function countTaskMarketingDirector4TaskMoney($totalMoney, $rate) + { + $taskMoney = 0; + + // =50% - %59 x40% + if (bccomp($rate, 0.5, 2) == 0 || (bccomp($rate, 0.5, 2) == 1 && bccomp($rate, 0.59, 2) == -1) || bccomp($rate, 0.59, 2) == 0) { + $taskMoney = bcmul($rate, bcmul($totalMoney, 0.4, 2), 2); + } + // =60% - %69 x50% + if (bccomp($rate, 0.6, 2) == 0 || (bccomp($rate, 0.6, 2) == 1 && bccomp($rate, 0.69, 2) == -1) || bccomp($rate, 0.69, 2) == 0) { + $taskMoney = bcmul($rate, bcmul($totalMoney, 0.5, 2), 2); + } + + // =70% - %79 x60% + if (bccomp($rate, 0.7, 2) == 0 || (bccomp($rate, 0.7, 2) == 1 && bccomp($rate, 0.79, 2) == -1) || bccomp($rate, 0.79, 2) == 0) { + $taskMoney = bcmul($rate, bcmul($totalMoney, 0.6, 2), 2); + } + + // =80% - %89 x70% + if (bccomp($rate, 0.8, 2) == 0 || (bccomp($rate, 0.8, 2) == 1 && bccomp($rate, 0.89, 2) == -1) || bccomp($rate, 0.89, 2) == 0) { + $taskMoney = bcmul($rate, bcmul($totalMoney, 0.7, 2), 2); + } + // =90%-99% x80% + if (bccomp($rate, 0.9, 2) == 0 || (bccomp($rate, 0.9, 2) == 1 && bccomp($rate, 0.99, 2) == -1) || bccomp($rate, 0.99, 2) == 0) { + $taskMoney = bcmul($rate, bcmul($totalMoney, 0.8, 2), 2); + } + // >=100% x100% + if($rate >= 1) { + $taskMoney = $totalMoney; + } + return $taskMoney; + } + + /** + * 协助供应链商户销售任务 长期 判定与结算 + */ + private static function dealTaskMarketingDirector5($taskSchedulePlan) + { + $templateInfo = $taskSchedulePlan['template_info']; + $townCompany = Company::where(['id' => $templateInfo['company_id']])->find(); + $taskInfo = Task::where(['id' => $taskSchedulePlan['task_id']])->find(); + // 商城商户入驻申请id 与商户已关联 + $shopMerchantSettleinLogList= ShopMerchantSettleinLog::where(['town_company_id'=>$townCompany['id']])->select()->toArray(); + // 遍历农科公司区域下的商户,对每个商户进行判定 + foreach ($shopMerchantSettleinLogList as $item) { + + // 第一阶段 从入驻时间累计到第一阶段周期天数 为结算日期 只在截止日当天才结算 + $startTime = strtotime(date('Y-m-d', $item['create_time'])); // 入驻当日 00:00:00 + $endTime = strtotime("{$templateInfo['stage_day_one']} day", $startTime); // $templateInfo['stage_day_one']天后的 00:00:00 + if (date('Y-m-d', $endTime) == date('Y-m-d', time())){ + // 任务判定 + self::judgeTaskMarketingDirector5($templateInfo, $item, $taskSchedulePlan, $startTime, $endTime, 1, $townCompany, $taskInfo); + } + + // 第二阶段 从入驻时间累计到第二阶段周期天数 为结算日期 只在截止日当天才结算 + $startTime1 = $endTime; // 第一阶段 截止日 00:00:00 + $stageDayTwoCount = bcadd($templateInfo['stage_day_one'], $templateInfo['stage_day_two']); + $endTime1 = strtotime("{$stageDayTwoCount} day", $startTime); + if (date('Y-m-d', $endTime) == date('Y-m-d', time())){ + self::judgeTaskMarketingDirector5($templateInfo, $item, $taskSchedulePlan, $startTime1, $endTime1, 2, $townCompany, $taskInfo); + } + + // 第三阶段 从入驻时间累计到第三阶段周期天数 为结算日期 只在截止日当天才结算 + $startTime2 = $endTime1; // 第二阶段 截止日 00:00:00 + $stageDayThreeCount = bcadd(bcadd($templateInfo['stage_day_one'], $templateInfo['stage_day_two']), $templateInfo['stage_day_three']); + $endTime2 = strtotime("{$stageDayThreeCount} day", $startTime); + if (date('Y-m-d', $endTime) == date('Y-m-d', time())){ + self::judgeTaskMarketingDirector5($templateInfo, $item, $taskSchedulePlan, $startTime2, $endTime2, 3, $townCompany, $taskInfo); + } + + // 长期 间隔天数 = 当前日期的00:00:00时间戳 - 商户入驻时间累计三个阶段天数的日期00:00:00时间戳 + $startTime3 = $endTime2; // 第三阶段 截止日 00:00:00 + $intervalDayCount = intdiv(bcsub( strtotime(date('Y-m-d', time())), $endTime2), 86400); + $endTime3 = strtotime(date('Y-m-d', time())); + // 间隔天数能整除30 表示可以结算 + if ($intervalDayCount % 30 === 0) { + $step = bcadd(3, intdiv($intervalDayCount, 30)); + self::judgeTaskMarketingDirector5($templateInfo, $item, $taskSchedulePlan, $startTime3, $endTime3, $step, $townCompany, $taskInfo); + } + } + // 未完成的情况下,每天自动关闭任务 + $task = Task::where(['id'=>$taskSchedulePlan['task_id']])->find(); + if ($task['status'] != 3) { + (new Task())->closeTask($task['id']); + } + } + + /** + * @param $templateInfo + * @param $item + * @param $taskSchedulePlan + * @param $startTime + * @param $endTime + * 判定任务是否完成 完成则结算分润 + */ + private static function judgeTaskMarketingDirector5($templateInfo, $item, $taskSchedulePlan, $startTime, $endTime, $step, $townCompany, $taskInfo) + { + // 只在截止日当天才结算 + $merIntentionId = $item['mer_intention_id']; + $directorGoodsId = $templateInfo['extend']['goods_id']; + $param = [ + 'start_time' => $startTime, + 'end_time' => $endTime, + 'mer_intention_id' => $merIntentionId, + 'goods_id' => $directorGoodsId + ]; + $result1 = ShopRequestLogic::getTradeAmount($param); + $tradeAmount = $result1['trade_amount']; // todo 返回字段要对接 + + if ($tradeAmount > 0) { + // 采购金额 实际完成率 + $rate = self::countRate($tradeAmount, $step); + + if (bccomp($rate, 0.5, 2) == -1) { + (new Task())->closeTask($taskSchedulePlan['task_id']); + } else { + $taskMoney = 0; + // 全额完成可获得的总金额 + $totalMoney = bcmul(30, bcdiv($templateInfo['money_three'], $templateInfo['extend']['target'], 2), 2); + // 已完成 计算结算金额 + if ($step == 1) { + $totalMoney = bcmul($templateInfo['stage_day_one'], bcdiv($templateInfo['money'], $templateInfo['extend']['target'], 2), 2); + } + if ($step == 2) { + $totalMoney = bcmul($templateInfo['stage_day_two'], bcdiv($templateInfo['money_two'], $templateInfo['extend']['target'], 2), 2); + } + if ($step == 3) { + $totalMoney = bcmul(20, bcdiv($templateInfo['money_two'], $templateInfo['extend']['target'], 2), 2) + bcmul(10, bcdiv($templateInfo['money_three'], $templateInfo['extend']['target'], 2), 2); + } + + if ($tradeAmount >= 300000) { + $taskMoney = $totalMoney; + } else { + // 计算结算金额 周期天数*(money/目标数)*实际完成率*对应发放比例 + $taskMoney= self::countTaskMarketingDirector4TaskMoney($totalMoney, $rate); + } + $taskInfo['money'] = $taskMoney; + Log::info(['5.市场部长-供应链商户完成商品销售任务-$taskSchedulePlan', json_encode($taskSchedulePlan)]); + (new TownShareProfit())->dealTaskSettlementMarketingDirector5($taskInfo, $townCompany, $taskSchedulePlan); + } + } + } + /** + * 计算实际完成率 + */ + public static function countRate($procureAmount,$step) + { + $targetProcureAmount = 10000; + // 目标采购额每阶段增幅30% + for ($i = 1; $i < $step; $i++) { + $targetProcureAmount = self::increase($targetProcureAmount); + } + $rate = bcdiv($procureAmount, $targetProcureAmount, 2); + return $rate; + } + + /** + * 采购目标金额,增幅为30% + */ + private static function increase($value) + { + return bcmul($value, 1.3,2); + } + + /** + * @param $taskSchedulePlan + * 招驻一般商户 + * 自任务下发第60天结算, + * 15天内>=$target(目标数),100%发放 60*20=1200 + * 30天内>=$target(目标数),90%发放 60*20*90%=1080 + * 60天内>=$target(目标数),80%发放 60*20*80%=960 + * 60天内>50%$target(目标数),40%发放 60*20*40%=640 + */ + private static function dealTaskMarketingDirector6($taskSchedulePlan) + { + $templateInfo = $taskSchedulePlan['template_info']; + $townCompany = Company::where(['id' => $templateInfo['company_id']])->find(); + $taskInfo = Task::where(['id' => $taskSchedulePlan['task_id']])->find(); + $taskMoney = self::countTaskMarketingDirector6TaskMoney($templateInfo, $townCompany); + // 0 未到结算日期 刷新任务 -1 未完成任务,关闭任务 + if ($taskMoney == 0) { + self::flushTaskTime($taskSchedulePlan); // 刷新任务 + } else if($taskMoney == -1) { + (new Task())->closeTask($taskSchedulePlan['task_id']); // 关闭任务 + } else { + // 结算分润 + (new TownShareProfit())->dealTaskSettlementMarketingDirector6($taskInfo, $townCompany, $taskSchedulePlan); + } + + } + private static function countTaskMarketingDirector6TaskMoney($templateInfo, $townCompany) + { + $dayCount = $templateInfo['day_count']; + $totalMoney = bcmul($templateInfo['stage_day_one'], $templateInfo['money']); // 任务最多可得金额 + $target = $templateInfo['extend']['target']; + $taskMoney = 0; + if ($dayCount == $templateInfo['stage_day_one']) { + // 15 自任务下发第15天 + $startTime = $templateInfo['create_time']; + $endTime = strtotime("+15 day", $startTime); + $responsibleArea = $townCompany['responsible_area']; + $param = [ + 'start_time' => $startTime, + 'end_time' => $endTime, + 'responsible_area' => $responsibleArea, + ]; + $result = ShopRequestLogic::getGeneralMerchantCount($param); // todo 对接接口字段 + $count = $result['count']; + if ($count >= $target) { + $taskMoney = $totalMoney; + return $taskMoney; + } + // 30 自任务下发第30天 + $startTime = $templateInfo['create_time']; + $endTime = strtotime("+30 day", $startTime); + $responsibleArea = $townCompany['responsible_area']; + $param = [ + 'start_time' => $startTime, + 'end_time' => $endTime, + 'responsible_area' => $responsibleArea, + ]; + $result = ShopRequestLogic::getGeneralMerchantCount($param); // todo 对接接口字段 + $count = $result['count']; + if ($count >= $target) { + $taskMoney = bcmul($totalMoney, 0.9, 2); + return $taskMoney; + } + // 60 自任务下发第60天 + $startTime = $templateInfo['create_time']; + $endTime = strtotime("+60 day", $startTime); + $responsibleArea = $townCompany['responsible_area']; + $param = [ + 'start_time' => $startTime, + 'end_time' => $endTime, + 'responsible_area' => $responsibleArea, + ]; + $result = ShopRequestLogic::getGeneralMerchantCount($param); // todo 对接接口字段 + $count = $result['count']; + if ($count >= $target) { + $taskMoney = bcmul($totalMoney, 0.8, 2); + return $taskMoney; + } else { + $rate = bcdiv($count, $target, 1); + if (bccomp($rate, 0.5, 1) == 0 || bccomp($rate, 0.5, 1) == 1) { + $taskMoney = bcmul($totalMoney, 0.4, 2); + return $taskMoney; + } + } + $taskMoney = -1; + } + return $taskMoney; + } + + /** + * 协助一般商户商品上架和库存更新 + * 任务累计天数小于第一阶段 关闭任务不做其他操作 + * 任务累计天数==第一阶段 查询第一阶段期间入驻的商户是否完成商品上架任务 + * 任务累计天数>第一阶段 小于第一+第二阶段 关闭任务,不做其他操作 + * 任务累计天数 == 第一+第二阶段 查询第一+第二阶段期间入驻的商户是否完成商品上架任务 + * 长期 当日时间戳 - 第一+第二阶段天数 不能整除30 关闭任务,不做其他操作 + * 长期 当日时间戳 - 第一+第二阶段天数 能整除30 则查询这段时间内所有商户是否完成库存更新任务 + */ + private static function dealTaskMarketingDirector7($taskSchedulePlan) + { + $templateInfo = $taskSchedulePlan['template_info']; + $dayCount = $templateInfo['day_count']; + $stageDayOne = $templateInfo['stage_day_one']; + $stageDayTwoCount= bcadd($stageDayOne, $templateInfo['stage_day_two']); + $townCompany = Company::where(['id' => $templateInfo['company_id']])->find(); + $taskInfo = Task::where(['id' => $taskSchedulePlan['task_id']])->find(); + + // 任务累计天数小于第一阶段 关闭任务不做其他操作 + if ($dayCount < $stageDayOne) { + (new Task())->closeTask($taskSchedulePlan['task_id']); + } + + // 任务累计天数==第一阶段 查询第一阶段期间入驻的商户是否完成商品上架任务 + if ($dayCount == $stageDayOne) { + $taskIsDone = self::judgeTaskMarketingDirector7(-$townCompany); + // 结算分润 + if($taskIsDone) { + $taskInfo['money'] = bcmul($taskIsDone, $templateInfo['money'], 2); + (new TownShareProfit())->dealTaskSettlementMarketingDirector7($taskInfo,$townCompany, $taskSchedulePlan); + } else { + (new Task())->closeTask($taskSchedulePlan['task_id']); + } + + } + + // 任务累计天数>第一阶段 小于第一+第二阶段 关闭任务,不做其他操作 + if($dayCount > $stageDayOne && $dayCount < $stageDayTwoCount) { + (new Task())->closeTask($taskSchedulePlan['task_id']); + } + + // 任务累计天数 == 第一+第二阶段 查询第一+第二阶段期间入驻的商户是否完成商品上架任务 + if ($dayCount == $stageDayTwoCount) { + $taskIsDone = self::judgeTaskMarketingDirector7($townCompany); + // 结算分润 + if($taskIsDone) { + $taskInfo['money'] = bcmul($taskIsDone, $templateInfo['money'], 2); + (new TownShareProfit())->dealTaskSettlementMarketingDirector7($taskInfo,$townCompany, $taskSchedulePlan); + } else { + (new Task())->closeTask($taskSchedulePlan['task_id']); + } + } + + // 长期 当日时间戳 - 第一+第二阶段天数 不能整除30 关闭任务,不做其他操作 + if($dayCount > $stageDayTwoCount && $dayCount%30 != 0) { + (new Task())->closeTask($taskInfo['id']); + } + + // 长期 当日时间戳 - 第一+第二阶段天数 能整除30 则查询这段时间内所有商户是否完成库存更新任务 + if($dayCount > $stageDayTwoCount && $dayCount%30 == 0) { + $taskIsDone = true; + $shopMerchantSettleinLogList= ShopMerchantSettleinLog::where(['town_company_id'=>$townCompany['id']])->select()->toArray(); + // 遍历农科公司区域下的商户,对每个商户进行判定 + foreach ($shopMerchantSettleinLogList as $item) { + // 库存更新 当前日期00:00:00 往前推30日 + $startTime = strtotime("-30 day", strtotime(date('Y-m-d', time()))); + $endTime = strtotime(date('Y-m-d', time())); + $merIntentionId = $item['mer_intention_id']; + $param = [ + 'start_time' => $startTime, + 'end_time' => $endTime, + 'mer_intention_id' => $merIntentionId, + ]; + // todo 返回字段要对接 + $result = ShopRequestLogic::getGeneralMerchantStockUpdate($param); + $isDone = $result['is_done']; + Log::info(['4.市场部长-一般商户完成库存更新任务-查询商城接口结果', json_encode($result)]); + // 任一商户未完成,判定为未完成 + if (!$isDone){ + $taskIsDone = false; + } + } + if($taskIsDone) { + $taskInfo['money'] = bcmul(30, $templateInfo['money_three'], 2); + (new TownShareProfit())->dealTaskSettlementMarketingDirector7($taskInfo,$townCompany, $taskSchedulePlan); + } + } + } + + /** + * 判定一般商户是否完成任务 + */ + private static function judgeTaskMarketingDirector7($townCompany) + { + $taskIsDone = true; + // 商城商户入驻申请id 与商户已关联 + $shopMerchantSettleinLogList= ShopMerchantSettleinLog::where(['town_company_id'=>$townCompany['id']])->select()->toArray(); + // 遍历农科公司区域下的商户,对每个商户进行判定 + foreach ($shopMerchantSettleinLogList as $item) { + // 商品上架 + $startTime = $item['create_time']; // 入驻时间 + $endTime = bcadd($startTime, bcmul(86400, 5)); + // 第一阶段 + $merIntentionId = $item['mer_intention_id']; + $param = [ + 'start_time' => $startTime, + 'end_time' => $endTime, + 'mer_intention_id' => $merIntentionId, + ]; + + // todo 返回字段要对接 + $result = ShopRequestLogic::getGeneralMerchantProductListing($param); + $isDone = $result['is_done']; + Log::info(['4.市场部长-一般商户完成商品上架任务-查询商城接口结果', json_encode($result)]); + // 任一商户未完成,判定为未完成 + if (!$isDone) { + $taskIsDone = false; + } + } + return $taskIsDone; + + } + + /** + * @param $taskSchedulePlan + * 督促一般商户完成采购 + * 任务累计天数 < 第一阶段 关闭任务 + * 任务累计天数 = 第一阶段 判定条件完成,结算 + * 长期 任务累计天数 > 第一阶段 且 不整除30 关闭 + * 长期 任务累计天数 > 第一阶段 且 整除30 结算 + */ + private static function dealTaskMarketingDirector8($taskSchedulePlan) + { + $templateInfo = $taskSchedulePlan['template_info']; + $dayCount = $templateInfo['day_count']; + $stageDayOne = $templateInfo['stage_day_one']; + $townCompany = Company::where(['id' => $templateInfo['company_id']])->find(); + $taskInfo = Task::where(['id' => $taskSchedulePlan['task_id']])->find(); + // 任务累计天数 < 第一阶段 关闭任务 + if ($dayCount < $stageDayOne) { + (new Task())->closeTask($taskSchedulePlan['task_id']); + } + + // 任务累计天数 = 第一阶段 判定条件完成,结算 + if ($dayCount == $stageDayOne) { + // 第一个月 + $startTime = strtotime(date('Y-m-d', $taskInfo['create_time'])); // 任务下发当天 00:00:00 + $endTime = strtotime("+30 day", $startTime); // 30天后的00:00:00 + $taskMoney1 = self::countMonthTaskMoney($templateInfo, $townCompany, 10000, $startTime, $endTime); + + // 第二个月 + $startTime = strtotime(date('Y-m-d', $endTime)); // 第一个月截止日 00:00:00 + $endTime = strtotime("+30 day", $startTime); // 30天后的00:00:00 + $taskMoney2 = self::countMonthTaskMoney($templateInfo, $townCompany, 20000, $startTime, $endTime); + + $taskMoney = bcadd($taskMoney1, $taskMoney2, 2); + if ($taskMoney != 0) { + $taskInfo['money'] = $taskMoney; + (new TownShareProfit())->dealTaskSettlementMarketingDirector8($taskInfo, $townCompany, $taskSchedulePlan); + } else { + // 两次都等于0 关闭任务 + (new Task())->closeTask($taskSchedulePlan['task_id']); + } + } + + // 长期 任务累计天数 > 第一阶段 且 不整除30 关闭 + if ($dayCount > $stageDayOne && $dayCount % 30 != 0) { + (new Task())->closeTask($taskSchedulePlan['task_id']); + } + + // 长期 任务累计天数 > 第一阶段 且 整除30 结算 + if ($dayCount > $stageDayOne && $dayCount % 30 == 0) { + $totalMoney = bcmul(30, $templateInfo['money_three']); + $startTime = strtotime('-30 day',strtotime(date('Y-m-d', time()))); // 当前日期00:00:00 倒推30天 + $endTime = strtotime(date('Y-m-d', time())); // 当前日期00:00:00 + $param = [ + 'start_time' => $startTime, + 'end_time' => $endTime, + 'responsible_area' => $townCompany['responsible_area'], // 镇农科管理区域 + 'goods_id' => $templateInfo['extend']['goods_id'] + ]; + // todo 对接接口实际返回参数 + $result = ShopRequestLogic::getGeneralMerchantPurchaseAmount($param); + $procureAmount = $result['procure_amount']; + + $step = bcdiv(bcsub($dayCount, $stageDayOne), 30); + $target = $templateInfo['extend']['target']; + $rate = self::countRate1($procureAmount, $target, $step); // 实际完成率 + if (bccomp($rate, 0.5, 1) == -1) { + // 完成率低于50% 未完成 关闭任务 + (new Task())->closeTask($taskSchedulePlan['task_id']); + } else { + $taskMoney = 0; + if ($procureAmount >= 100000) { + $taskMoney = $totalMoney; + } else { + // 计算结算金额 周期天数*(money/目标数)*实际完成率*对应发放比例 + $taskMoney= self::countTaskMarketingDirector4TaskMoney($totalMoney, $rate); + } + $taskInfo['money'] = $taskMoney; + (new TownShareProfit())->dealTaskSettlementMarketingDirector8($taskInfo, $townCompany, $taskSchedulePlan); + } + } + } + + private static function countMonthTaskMoney($templateInfo, $townCompany, $targetProcureAmount, $startTime, $endTime) + { + $totalMoney = bcmul(30, $templateInfo['money']); + $param = [ + 'start_time' => $startTime, + 'end_time' => $endTime, + 'responsible_area' => $townCompany['responsible_area'], // 镇农科管理区域 + 'goods_id' => $templateInfo['extend']['goods_id'] + ]; + // todo 对接接口实际返回参数 + $result = ShopRequestLogic::getGeneralMerchantPurchaseAmount($param); + $procureAmount = $result['procure_amount']; + $rate = bcdiv($procureAmount, $targetProcureAmount, 1); + if (bccomp($rate, 0.5, 1) == -1) { + return 0; + } + $taskMoney = 0; + if ($procureAmount >= 100000) { + $taskMoney = $totalMoney; + } else { + // 计算结算金额 周期天数*(money/目标数)*实际完成率*对应发放比例 + $taskMoney= self::countTaskMarketingDirector4TaskMoney($totalMoney, $rate); + } + return $taskMoney; + } + /** + * 计算实际完成率 + */ + public static function countRate1($procureAmount, $target, $step) + { + $targetProcureAmount = bcmul($target, 1000, 2); + // 目标采购额每阶段增幅20% + for ($i = 1; $i < $step; $i++) { + $targetProcureAmount = self::increase1($targetProcureAmount); + } + $rate = bcdiv($procureAmount, $targetProcureAmount, 2); + return $rate; + } + + /** + * 采购目标金额,增幅为30% + */ + private static function increase1($value) + { + return bcmul($value, 1.2,2); + } + + /** + * @param $taskSchedulePlan + * 督促一般商户完成销售 + * 任务累计天数 < 第一阶段 关闭任务 + * 任务累计天数 = 第一阶段 判定条件完成,计算任务金额,分润结算 + * 长期 任务累计天数 > 第一阶段 且 不整除30 关闭 + * 长期 任务累计天数 > 第一阶段 且 整除30 计算任务金额,分润结算 + */ + private static function dealTaskMarketingDirector9($taskSchedulePlan) + { + $templateInfo = $taskSchedulePlan['template_info']; + $dayCount = $templateInfo['day_count']; + $stageDayOne = $templateInfo['stage_day_one']; + $townCompany = Company::where(['id' => $templateInfo['company_id']])->find(); + $taskInfo = Task::where(['id' => $taskSchedulePlan['task_id']])->find(); + + // 任务累计天数 < 第一阶段 关闭任务 + if ($dayCount < $stageDayOne) { + (new Task())->closeTask($taskSchedulePlan['task_id']); + } + + // 任务累计天数 = 第一阶段 判定条件完成,计算任务金额,分润结算 + if ($dayCount == $stageDayOne) { + // 第一个月 + $startTime = strtotime(date('Y-m-d', $taskInfo['create_time'])); // 任务下发当天 00:00:00 + $endTime = strtotime("+30 day", $startTime); // 30天后的00:00:00 + $taskMoney1 = self::countTradeAmountMonthTaskMoney($templateInfo, $townCompany, 10000, $startTime, $endTime); + + // 第二个月 + $startTime = strtotime(date('Y-m-d', $endTime)); // 第一个月截止日 00:00:00 + $endTime = strtotime("+30 day", $startTime); // 30天后的00:00:00 + $taskMoney2 = self::countTradeAmountMonthTaskMoney($templateInfo, $townCompany, 20000, $startTime, $endTime); + + $taskMoney = bcadd($taskMoney1, $taskMoney2, 2); + if ($taskMoney != 0) { + $taskInfo['money'] = $taskMoney; + (new TownShareProfit())->dealTaskSettlementMarketingDirector8($taskInfo, $townCompany, $taskSchedulePlan); + } else { + // 两次都等于0 关闭任务 + (new Task())->closeTask($taskSchedulePlan['task_id']); + } + } + + // 长期 任务累计天数 > 第一阶段 且 不整除30 关闭 + if ($dayCount > $stageDayOne && $dayCount % 30 != 0) { + (new Task())->closeTask($taskSchedulePlan['task_id']); + } + // 长期 任务累计天数 > 第一阶段 且 整除30 计算任务金额,分润结算 + if ($dayCount > $stageDayOne && $dayCount % 30 == 0) { + $totalMoney = bcmul(30, $templateInfo['money_three']); + $startTime = strtotime('-30 day',strtotime(date('Y-m-d', time()))); // 当前日期00:00:00 倒推30天 + $endTime = strtotime(date('Y-m-d', time())); // 当前日期00:00:00 + $param = [ + 'start_time' => $startTime, + 'end_time' => $endTime, + 'responsible_area' => $townCompany['responsible_area'], // 镇农科管理区域 + 'goods_id' => $templateInfo['extend']['goods_id'] + ]; + // todo 对接接口实际返回参数 + $result = ShopRequestLogic::getGeneralMerchantPurchaseAmount($param); + $procureAmount = $result['procure_amount']; + + $step = bcdiv(bcsub($dayCount, $stageDayOne), 30); + $target = $templateInfo['extend']['target']; + $rate = self::countRate1($procureAmount, $target, $step); // 实际完成率 + if (bccomp($rate, 0.5, 1) == -1) { + // 完成率低于50% 未完成 关闭任务 + (new Task())->closeTask($taskSchedulePlan['task_id']); + } else { + $taskMoney = 0; + if ($procureAmount >= 100000) { + $taskMoney = $totalMoney; + } else { + // 计算结算金额 周期天数*(money/目标数)*实际完成率*对应发放比例 + $taskMoney= self::countTaskMarketingDirector4TaskMoney($totalMoney, $rate); + } + $taskInfo['money'] = $taskMoney; + (new TownShareProfit())->dealTaskSettlementMarketingDirector8($taskInfo, $townCompany, $taskSchedulePlan); + } + } + } + + private static function countTradeAmountMonthTaskMoney($templateInfo, $townCompany, $targetProcureAmount, $startTime, $endTime) + { + $totalMoney = bcmul(30, $templateInfo['money']); + $param = [ + 'start_time' => $startTime, + 'end_time' => $endTime, + 'responsible_area' => $townCompany['responsible_area'], // 镇农科管理区域 + 'goods_id' => $templateInfo['extend']['goods_id'] + ]; + // todo 对接接口实际返回参数 + $result = ShopRequestLogic::getGeneralMerchantTradeAmount($param); + $procureAmount = $result['procure_amount']; + $rate = bcdiv($procureAmount, $targetProcureAmount, 1); + if (bccomp($rate, 0.5, 1) == -1) { + return 0; + } + $taskMoney = 0; + if ($procureAmount >= 100000) { + $taskMoney = $totalMoney; + } else { + // 计算结算金额 周期天数*(money/目标数)*实际完成率*对应发放比例 + $taskMoney= self::countTaskMarketingDirector4TaskMoney($totalMoney, $rate); + } + return $taskMoney; + } + private static function dealTaskMarketingDirector10($taskSchedulePlan) + { + + } + /** + * @param $taskSchedulePlan + * 服务部长任务结算 + */ + private static function serviceManagerTaskSettlement($taskSchedulePlan) + { + $taskTemplateInfo = $taskSchedulePlan['template_info']; + // 任务类型用的数据字典主键id,将id和value作映射,避免测试和正式环境数据字典数据不一致时出问题 + $townTaskTypeList = DictData::where(['type_value' => 'town_task_type', 'status' => 1])->column('value', 'id'); + switch ($townTaskTypeList[$taskTemplateInfo['type']]){ + + case 'town_task_type_1': + // 协助总负责人开展工作任务 + self::dealTownTask1($taskSchedulePlan); + break; + case 'town_task_type_2': + // 拓展小组服务团队工作任务 + self::dealTownTask2($taskSchedulePlan); + break; + case 'town_task_type_3': + // 督促小组服务团队完成任务,协助开展工作,解决问题任务 + self::dealTownTask3($taskSchedulePlan); + break; + case 'town_task_type_4': + // 督促小组服务团队学习任务 + self::dealTownTask4($taskSchedulePlan); + break; + case 'town_task_type_5': + // 督促小组服务团队完成需求收集和交易任务 + self::dealTownTask5($taskSchedulePlan); + break; + case 'town_task_type_6': + // 督促小组服务团队入股村联络员所成立的公司任务 + self::dealTownTask6($taskSchedulePlan); + break; + case 'town_task_type_7': + // 安全工作任务 + self::dealTownTask7($taskSchedulePlan); + break; + default : + return true; + } + } + /** * 系统自动判定镇农科公司下属小组服务公司 是否100%完成每日任务:三轮车任务,档案更新任务,平台交易任务 */ @@ -491,8 +1549,6 @@ class TaskLogic extends BaseLogic break; } } - } else { - continue; } } // 下属小组服务公司有任务安排,也完成了任务 diff --git a/app/common/logic/task_template/TaskTemplateLogic.php b/app/common/logic/task_template/TaskTemplateLogic.php index dbba253f4..40ea3c028 100644 --- a/app/common/logic/task_template/TaskTemplateLogic.php +++ b/app/common/logic/task_template/TaskTemplateLogic.php @@ -251,11 +251,24 @@ class TaskTemplateLogic extends BaseLogic try { Db::startTrans(); - $serviceManagerUser = (new User())->searchServiceManager($params['company_id']); - if (empty($serviceManagerUser)) { - self::setError('公司还没有服务部长,无法指派任务'); - return false; + // $params['extend']['task_role'] 扩展字段 任务角色 1总负责人 2市场部长 3服务部长 + if ($params['extend']['task_role'] == 2) { + $serviceManagerUser = (new User())->searchMarketingManager($params['company_id']); + if (empty($serviceManagerUser)) { + self::setError('公司还没有市场部长,无法指派任务'); + return false; + } } + + if ($params['extend']['task_role'] == 3) { + $serviceManagerUser = (new User())->searchServiceManager($params['company_id']); + if (empty($serviceManagerUser)) { + self::setError('公司还没有服务部长,无法指派任务'); + return false; + } + } + + $find = TaskTemplate::where('task_scheduling', $params['task_scheduling'])->where('company_id',$params['company_id'])->where('type',$params['type'])->field('id,types,type')->find(); if($find && $params['type'] == $find['type']){ self::setError('已经有同一种任务类型了'); diff --git a/app/common/logic/user/UserRoleLogic.php b/app/common/logic/user/UserRoleLogic.php index ff431f01b..e80070e52 100644 --- a/app/common/logic/user/UserRoleLogic.php +++ b/app/common/logic/user/UserRoleLogic.php @@ -109,4 +109,11 @@ class UserRoleLogic extends BaseLogic { return UserRole::findOrEmpty($params['id'])->toArray(); } + + public static function getList() + { + return UserRole::order(['id' => 'desc'])->field(['id', 'name']) + ->select() + ->toArray(); + } } \ No newline at end of file diff --git a/app/common/model/ShopMerchantSettleinLog.php b/app/common/model/ShopMerchantSettleinLog.php new file mode 100644 index 000000000..e679e2155 --- /dev/null +++ b/app/common/model/ShopMerchantSettleinLog.php @@ -0,0 +1,8 @@ + 0) { - $category_id = Db::name('category_business')->where('id', $param['card_id'])->value('pid'); + $category_info = Db::name('category_business')->where('id', $param['card_id'])->field(['pid', 'data_field'])->find(); $category_child = $param['card_id']; + $field_array = json_decode($category_info['data_field'], true); + if (!empty($field_array) && is_array($field_array)) { + // 拼装词语 + foreach($param['datas'] as $k => $v) { + if (!empty($field_array[$k]['text'])) { + $key = $field_array[$k]['text']; + if (!empty($field_array[$k]['enum'])) { + $data_field[$key] = $field_array[$k]['enum'][$v] ?? ''; + } else { + $data_field[$key] = $v; + } + } + } + } } else { $category_id = 0; $category_child = 0; } $data = [ 'create_user_id' => $admin_id, - 'category_id' => $category_id, + 'category_id' => $category_info['pid'] ?? 0, 'category_child' => $category_child, 'data' => json_encode($param['datas']), + 'data_field' => json_encode($data_field), 'create_time' => time(), 'update_time' => time(), 'status' => 1, 'information_id' => $id, ]; - return UserInformationgDemand::create($data); + $res = UserInformationgDemand::create($data); + if ($res) { + queue(AiAianalyse::class, $data); + } + return $res; } public static function details($id) @@ -120,7 +141,10 @@ class UserInformationg extends BaseModel $arr = [ 'id' => $v['category_child'], 'update_time' => $v['update_time'], - 'datas' => $v['data'] + 'datas' => $v['data'], + 'data_field' => json_decode($v['data_field']), + 'ai_question' => $v['ai_question'], + 'ai_aianalyse' => $v['ai_aianalyse'], ]; if ($v['data']) { array_push($datas, $arr); @@ -131,6 +155,19 @@ class UserInformationg extends BaseModel return $item; } + public static function business_opportunity($informationg_id_array) + { + $demand_id_array = UserInformationgDemand::whereIn('information_id', $informationg_id_array)->where('status', 1)->field(['max(id) as demand_id'])->group('information_id')->select()->column('demand_id'); + $data = UserInformationgDemand::whereIn('id', $demand_id_array)->column('*', 'information_id'); + foreach($data as &$item) { + $item['data'] = json_decode($item['data'], true); + $item['data_field'] = json_decode($item['data_field'], true); + $item['relation_goods'] = []; + } + unset($item); + return $data; + } + public function company() { return $this->hasOne(Company::class, 'id', 'company_id')->field(['id', 'company_name', 'admin_id']); diff --git a/app/common/model/user/User.php b/app/common/model/user/User.php index bfd91e78d..73e28e96b 100755 --- a/app/common/model/user/User.php +++ b/app/common/model/user/User.php @@ -225,4 +225,8 @@ class User extends BaseModel { return User::where(['company_id' => $companyId, 'group_id'=> 14])->find(); } + public function searchMarketingManager($companyId) + { + return User::where(['company_id' => $companyId, 'group_id'=> 16])->find(); + } } \ No newline at end of file diff --git a/app/common/model/vehicle/VehicleBuyRecord.php b/app/common/model/vehicle/VehicleBuyRecord.php new file mode 100644 index 000000000..5ce2c0e1a --- /dev/null +++ b/app/common/model/vehicle/VehicleBuyRecord.php @@ -0,0 +1,10 @@ +attempts() > 3) { + //通过这个方法可以检查这个任务已经重试了几次了 + $job->delete(); + } + $type_name = Db::name('category_business')->where('id', $data['category_child'])->value('name'); + $data_field = json_decode($data['data_field'], true); + $demand = ''; + foreach($data_field as $k=>$v) { + $demand .= $k . ':' . $v . ';'; + } + $question = "分析以下{$type_name}信息【{$demand}】请问有那些商机?需要购买哪些商品?"; + try { + $chat=new ChatClient($this->app_id,$this->api_key,$this->api_secret); + $client = new Client($chat->assembleAuthUrl('wss://spark-api.xf-yun.com/v2.1/chat')); + if ($client) { + $header = [ + "app_id" => $this->app_id, + "uid" => "1" + ]; + $parameter = [ + "chat" => [ + "domain" => "generalv2", + "temperature" => 0.5, + "max_tokens" => 1024 + ] + ]; + $payload = [ + "message" => [ + "text" => [ + ["role" => "user", "content" => $question] + ] + ] + ]; + $chat_data = json_encode([ + "header" => $header, + "parameter" => $parameter, + "payload" => $payload + ]); + + $client->send($chat_data); + $answer = ''; + while(true){ + $response = $client->receive(); + $resp = json_decode($response, true); + $code = $resp["header"]["code"] ?? 0; + if($code > 0){ + break; + } + $status = $resp["header"]["status"]; + $content = $resp['payload']['choices']['text'][0]['content'] ?? ''; + $answer .= $content; + if($status == 2){ + break; + } + } + $update_data = [ + 'ai_question' => $question, + 'ai_aianalyse' => $answer, + 'update_time' => time(), + ]; + unset($data['data'], $data['data_field']); + Db::name('user_informationg_demand')->where($data)->update($update_data); + } + } catch (\Exception $e) {} + $job->delete(); + } +} diff --git a/composer.json b/composer.json index 6a54ed941..9214adbec 100755 --- a/composer.json +++ b/composer.json @@ -41,7 +41,10 @@ "textalk/websocket": "^1.6", "workerman/gateway-worker": "^3.1", "workerman/gatewayclient": "^3.0", - "jpush/jpush": "^3.6" + "jpush/jpush": "^3.6", + "topthink/think-filesystem": "^2.0", + "alibabacloud/live": "^1.8", + "alibabacloud/live-20161101": "1.1.1" }, "require-dev": { "symfony/var-dumper": "^4.2", diff --git a/composer.lock b/composer.lock index a9b49ff39..783e0c020 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "3d92336e839a1dff749e580808bfaa0a", + "content-hash": "df2314f832b2603d5d7eb0b31b84ae66", "packages": [ { "name": "adbario/php-dot-notation", @@ -155,6 +155,563 @@ }, "time": "2022-12-09T04:05:55+00:00" }, + { + "name": "alibabacloud/credentials", + "version": "1.1.5", + "source": { + "type": "git", + "url": "https://github.com/aliyun/credentials-php.git", + "reference": "1d8383ceef695974a88a3859c42e235fd2e3981a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/aliyun/credentials-php/zipball/1d8383ceef695974a88a3859c42e235fd2e3981a", + "reference": "1d8383ceef695974a88a3859c42e235fd2e3981a", + "shasum": "", + "mirrors": [ + { + "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%", + "preferred": true + } + ] + }, + "require": { + "adbario/php-dot-notation": "^2.2", + "alibabacloud/tea": "^3.0", + "ext-curl": "*", + "ext-json": "*", + "ext-libxml": "*", + "ext-mbstring": "*", + "ext-openssl": "*", + "ext-simplexml": "*", + "ext-xmlwriter": "*", + "guzzlehttp/guzzle": "^6.3|^7.0", + "php": ">=5.6" + }, + "require-dev": { + "composer/composer": "^1.8", + "drupal/coder": "^8.3", + "ext-dom": "*", + "ext-pcre": "*", + "ext-sockets": "*", + "ext-spl": "*", + "mikey179/vfsstream": "^1.6", + "monolog/monolog": "^1.24", + "phpunit/phpunit": "^5.7|^6.6|^7.5", + "psr/cache": "^1.0", + "symfony/dotenv": "^3.4", + "symfony/var-dumper": "^3.4" + }, + "suggest": { + "ext-sockets": "To use client-side monitoring" + }, + "type": "library", + "autoload": { + "psr-4": { + "AlibabaCloud\\Credentials\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "Apache-2.0" + ], + "authors": [ + { + "name": "Alibaba Cloud SDK", + "email": "sdk-team@alibabacloud.com", + "homepage": "http://www.alibabacloud.com" + } + ], + "description": "Alibaba Cloud Credentials for PHP", + "homepage": "https://www.alibabacloud.com/", + "keywords": [ + "alibaba", + "alibabacloud", + "aliyun", + "client", + "cloud", + "credentials", + "library", + "sdk", + "tool" + ], + "support": { + "issues": "https://github.com/aliyun/credentials-php/issues", + "source": "https://github.com/aliyun/credentials-php" + }, + "time": "2023-04-11T02:12:12+00:00" + }, + { + "name": "alibabacloud/darabonba-openapi", + "version": "0.2.9", + "source": { + "type": "git", + "url": "https://github.com/alibabacloud-sdk-php/darabonba-openapi.git", + "reference": "4cdfc36615f345786d668dfbaf68d9a301b6dbe2" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/alibabacloud-sdk-php/darabonba-openapi/zipball/4cdfc36615f345786d668dfbaf68d9a301b6dbe2", + "reference": "4cdfc36615f345786d668dfbaf68d9a301b6dbe2", + "shasum": "", + "mirrors": [ + { + "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%", + "preferred": true + } + ] + }, + "require": { + "alibabacloud/credentials": "^1.1", + "alibabacloud/gateway-spi": "^1", + "alibabacloud/openapi-util": "^0.1.10|^0.2.1", + "alibabacloud/tea-utils": "^0.2.17", + "alibabacloud/tea-xml": "^0.2", + "php": ">5.5" + }, + "type": "library", + "autoload": { + "psr-4": { + "Darabonba\\OpenApi\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "Apache-2.0" + ], + "authors": [ + { + "name": "Alibaba Cloud SDK", + "email": "sdk-team@alibabacloud.com" + } + ], + "description": "Alibaba Cloud OpenApi Client", + "support": { + "issues": "https://github.com/alibabacloud-sdk-php/darabonba-openapi/issues", + "source": "https://github.com/alibabacloud-sdk-php/darabonba-openapi/tree/0.2.9" + }, + "time": "2023-02-06T12:02:21+00:00" + }, + { + "name": "alibabacloud/endpoint-util", + "version": "0.1.1", + "source": { + "type": "git", + "url": "https://github.com/alibabacloud-sdk-php/endpoint-util.git", + "reference": "f3fe88a25d8df4faa3b0ae14ff202a9cc094e6c5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/alibabacloud-sdk-php/endpoint-util/zipball/f3fe88a25d8df4faa3b0ae14ff202a9cc094e6c5", + "reference": "f3fe88a25d8df4faa3b0ae14ff202a9cc094e6c5", + "shasum": "", + "mirrors": [ + { + "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%", + "preferred": true + } + ] + }, + "require": { + "php": ">5.5" + }, + "require-dev": { + "phpunit/phpunit": "^4.8.35|^5.4.3" + }, + "type": "library", + "autoload": { + "psr-4": { + "AlibabaCloud\\Endpoint\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "Apache-2.0" + ], + "authors": [ + { + "name": "Alibaba Cloud SDK", + "email": "sdk-team@alibabacloud.com" + } + ], + "description": "Alibaba Cloud Endpoint Library for PHP", + "support": { + "source": "https://github.com/alibabacloud-sdk-php/endpoint-util/tree/0.1.1" + }, + "time": "2020-06-04T10:57:15+00:00" + }, + { + "name": "alibabacloud/gateway-spi", + "version": "1.0.0", + "source": { + "type": "git", + "url": "https://github.com/alibabacloud-sdk-php/alibabacloud-gateway-spi.git", + "reference": "7440f77750c329d8ab252db1d1d967314ccd1fcb" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/alibabacloud-sdk-php/alibabacloud-gateway-spi/zipball/7440f77750c329d8ab252db1d1d967314ccd1fcb", + "reference": "7440f77750c329d8ab252db1d1d967314ccd1fcb", + "shasum": "", + "mirrors": [ + { + "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%", + "preferred": true + } + ] + }, + "require": { + "alibabacloud/credentials": "^1.1", + "php": ">5.5" + }, + "type": "library", + "autoload": { + "psr-4": { + "Darabonba\\GatewaySpi\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "Apache-2.0" + ], + "authors": [ + { + "name": "Alibaba Cloud SDK", + "email": "sdk-team@alibabacloud.com" + } + ], + "description": "Alibaba Cloud Gateway SPI Client", + "support": { + "source": "https://github.com/alibabacloud-sdk-php/alibabacloud-gateway-spi/tree/1.0.0" + }, + "time": "2022-07-14T05:31:35+00:00" + }, + { + "name": "alibabacloud/live", + "version": "1.8.958", + "source": { + "type": "git", + "url": "https://github.com/alibabacloud-sdk-php/live.git", + "reference": "2dc756e9e156cb33bc1287d28fc3fade87e4ae60" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/alibabacloud-sdk-php/live/zipball/2dc756e9e156cb33bc1287d28fc3fade87e4ae60", + "reference": "2dc756e9e156cb33bc1287d28fc3fade87e4ae60", + "shasum": "", + "mirrors": [ + { + "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%", + "preferred": true + } + ] + }, + "require": { + "alibabacloud/client": "^1.5", + "php": ">=5.5" + }, + "type": "library", + "autoload": { + "psr-4": { + "AlibabaCloud\\Live\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "Apache-2.0" + ], + "authors": [ + { + "name": "Alibaba Cloud SDK", + "email": "sdk-team@alibabacloud.com", + "homepage": "http://www.alibabacloud.com" + } + ], + "description": "Alibaba Cloud Live SDK for PHP", + "homepage": "https://www.alibabacloud.com/", + "keywords": [ + "alibaba", + "alibabacloud", + "aliyun", + "cloud", + "library", + "live", + "sdk" + ], + "support": { + "issues": "https://github.com/alibabacloud-sdk-php/live/issues", + "source": "https://github.com/alibabacloud-sdk-php/live" + }, + "time": "2021-04-29T09:14:45+00:00" + }, + { + "name": "alibabacloud/live-20161101", + "version": "1.1.1", + "source": { + "type": "git", + "url": "https://github.com/alibabacloud-sdk-php/live-20161101.git", + "reference": "6aa9436929b8d8d2b5a51daeca7227ebc88e1717" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/alibabacloud-sdk-php/live-20161101/zipball/6aa9436929b8d8d2b5a51daeca7227ebc88e1717", + "reference": "6aa9436929b8d8d2b5a51daeca7227ebc88e1717", + "shasum": "", + "mirrors": [ + { + "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%", + "preferred": true + } + ] + }, + "require": { + "alibabacloud/darabonba-openapi": "^0.2.8", + "alibabacloud/endpoint-util": "^0.1.0", + "alibabacloud/openapi-util": "^0.1.10|^0.2.0", + "alibabacloud/tea-utils": "^0.2.17", + "php": ">5.5" + }, + "type": "library", + "autoload": { + "psr-4": { + "AlibabaCloud\\SDK\\Live\\V20161101\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "Apache-2.0" + ], + "authors": [ + { + "name": "Alibaba Cloud SDK", + "email": "sdk-team@alibabacloud.com" + } + ], + "description": "Alibaba Cloud ApsaraVideo for Live (20161101) SDK Library for PHP", + "support": { + "source": "https://github.com/alibabacloud-sdk-php/live-20161101/tree/1.1.1" + }, + "time": "2022-12-05T03:08:45+00:00" + }, + { + "name": "alibabacloud/openapi-util", + "version": "0.2.1", + "source": { + "type": "git", + "url": "https://github.com/alibabacloud-sdk-php/openapi-util.git", + "reference": "f31f7bcd835e08ca24b6b8ba33637eb4eceb093a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/alibabacloud-sdk-php/openapi-util/zipball/f31f7bcd835e08ca24b6b8ba33637eb4eceb093a", + "reference": "f31f7bcd835e08ca24b6b8ba33637eb4eceb093a", + "shasum": "", + "mirrors": [ + { + "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%", + "preferred": true + } + ] + }, + "require": { + "alibabacloud/tea": "^3.1", + "alibabacloud/tea-utils": "^0.2", + "lizhichao/one-sm": "^1.5", + "php": ">5.5" + }, + "require-dev": { + "phpunit/phpunit": "*" + }, + "type": "library", + "autoload": { + "psr-4": { + "AlibabaCloud\\OpenApiUtil\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "Apache-2.0" + ], + "authors": [ + { + "name": "Alibaba Cloud SDK", + "email": "sdk-team@alibabacloud.com" + } + ], + "description": "Alibaba Cloud OpenApi Util", + "support": { + "issues": "https://github.com/alibabacloud-sdk-php/openapi-util/issues", + "source": "https://github.com/alibabacloud-sdk-php/openapi-util/tree/0.2.1" + }, + "time": "2023-01-10T09:10:10+00:00" + }, + { + "name": "alibabacloud/tea", + "version": "3.2.1", + "source": { + "type": "git", + "url": "https://github.com/aliyun/tea-php.git", + "reference": "1619cb96c158384f72b873e1f85de8b299c9c367" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/aliyun/tea-php/zipball/1619cb96c158384f72b873e1f85de8b299c9c367", + "reference": "1619cb96c158384f72b873e1f85de8b299c9c367", + "shasum": "", + "mirrors": [ + { + "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%", + "preferred": true + } + ] + }, + "require": { + "adbario/php-dot-notation": "^2.4", + "ext-curl": "*", + "ext-json": "*", + "ext-libxml": "*", + "ext-mbstring": "*", + "ext-openssl": "*", + "ext-simplexml": "*", + "ext-xmlwriter": "*", + "guzzlehttp/guzzle": "^6.3|^7.0", + "php": ">=5.5" + }, + "require-dev": { + "phpunit/phpunit": "*", + "symfony/dotenv": "^3.4", + "symfony/var-dumper": "^3.4" + }, + "suggest": { + "ext-sockets": "To use client-side monitoring" + }, + "type": "library", + "autoload": { + "psr-4": { + "AlibabaCloud\\Tea\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "Apache-2.0" + ], + "authors": [ + { + "name": "Alibaba Cloud SDK", + "email": "sdk-team@alibabacloud.com", + "homepage": "http://www.alibabacloud.com" + } + ], + "description": "Client of Tea for PHP", + "homepage": "https://www.alibabacloud.com/", + "keywords": [ + "alibabacloud", + "client", + "cloud", + "tea" + ], + "support": { + "issues": "https://github.com/aliyun/tea-php/issues", + "source": "https://github.com/aliyun/tea-php" + }, + "time": "2023-05-16T06:43:41+00:00" + }, + { + "name": "alibabacloud/tea-utils", + "version": "0.2.19", + "source": { + "type": "git", + "url": "https://github.com/alibabacloud-sdk-php/tea-utils.git", + "reference": "8dfc1a93e9415818e93a621b644abbb84981aea4" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/alibabacloud-sdk-php/tea-utils/zipball/8dfc1a93e9415818e93a621b644abbb84981aea4", + "reference": "8dfc1a93e9415818e93a621b644abbb84981aea4", + "shasum": "", + "mirrors": [ + { + "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%", + "preferred": true + } + ] + }, + "require": { + "alibabacloud/tea": "^3.1", + "php": ">5.5" + }, + "type": "library", + "autoload": { + "psr-4": { + "AlibabaCloud\\Tea\\Utils\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "Apache-2.0" + ], + "authors": [ + { + "name": "Alibaba Cloud SDK", + "email": "sdk-team@alibabacloud.com" + } + ], + "description": "Alibaba Cloud Tea Utils for PHP", + "support": { + "issues": "https://github.com/aliyun/tea-util/issues", + "source": "https://github.com/aliyun/tea-util" + }, + "time": "2023-06-26T09:49:19+00:00" + }, + { + "name": "alibabacloud/tea-xml", + "version": "0.2.4", + "source": { + "type": "git", + "url": "https://github.com/alibabacloud-sdk-php/tea-xml.git", + "reference": "3e0c000bf536224eebbac913c371bef174c0a16a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/alibabacloud-sdk-php/tea-xml/zipball/3e0c000bf536224eebbac913c371bef174c0a16a", + "reference": "3e0c000bf536224eebbac913c371bef174c0a16a", + "shasum": "", + "mirrors": [ + { + "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%", + "preferred": true + } + ] + }, + "require": { + "php": ">5.5" + }, + "require-dev": { + "phpunit/phpunit": "*", + "symfony/var-dumper": "*" + }, + "type": "library", + "autoload": { + "psr-4": { + "AlibabaCloud\\Tea\\XML\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "Apache-2.0" + ], + "authors": [ + { + "name": "Alibaba Cloud SDK", + "email": "sdk-team@alibabacloud.com" + } + ], + "description": "Alibaba Cloud Tea XML Library for PHP", + "support": { + "source": "https://github.com/alibabacloud-sdk-php/tea-xml/tree/0.2.4" + }, + "time": "2022-08-02T04:12:58+00:00" + }, { "name": "aliyuncs/oss-sdk-php", "version": "v2.6.0", @@ -1083,6 +1640,220 @@ }, "time": "2021-08-12T07:43:39+00:00" }, + { + "name": "league/flysystem", + "version": "2.5.0", + "source": { + "type": "git", + "url": "https://github.com/thephpleague/flysystem.git", + "reference": "8aaffb653c5777781b0f7f69a5d937baf7ab6cdb" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/8aaffb653c5777781b0f7f69a5d937baf7ab6cdb", + "reference": "8aaffb653c5777781b0f7f69a5d937baf7ab6cdb", + "shasum": "", + "mirrors": [ + { + "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%", + "preferred": true + } + ] + }, + "require": { + "ext-json": "*", + "league/mime-type-detection": "^1.0.0", + "php": "^7.2 || ^8.0" + }, + "conflict": { + "guzzlehttp/ringphp": "<1.1.1" + }, + "require-dev": { + "async-aws/s3": "^1.5", + "async-aws/simple-s3": "^1.0", + "aws/aws-sdk-php": "^3.132.4", + "composer/semver": "^3.0", + "ext-fileinfo": "*", + "ext-ftp": "*", + "friendsofphp/php-cs-fixer": "^3.2", + "google/cloud-storage": "^1.23", + "phpseclib/phpseclib": "^2.0", + "phpstan/phpstan": "^0.12.26", + "phpunit/phpunit": "^8.5 || ^9.4", + "sabre/dav": "^4.1" + }, + "type": "library", + "autoload": { + "psr-4": { + "League\\Flysystem\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Frank de Jonge", + "email": "info@frankdejonge.nl" + } + ], + "description": "File storage abstraction for PHP", + "keywords": [ + "WebDAV", + "aws", + "cloud", + "file", + "files", + "filesystem", + "filesystems", + "ftp", + "s3", + "sftp", + "storage" + ], + "support": { + "issues": "https://github.com/thephpleague/flysystem/issues", + "source": "https://github.com/thephpleague/flysystem/tree/2.5.0" + }, + "funding": [ + { + "url": "https://ecologi.com/frankdejonge", + "type": "custom" + }, + { + "url": "https://github.com/frankdejonge", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/league/flysystem", + "type": "tidelift" + } + ], + "time": "2022-09-17T21:02:32+00:00" + }, + { + "name": "league/mime-type-detection", + "version": "1.13.0", + "source": { + "type": "git", + "url": "https://github.com/thephpleague/mime-type-detection.git", + "reference": "a6dfb1194a2946fcdc1f38219445234f65b35c96" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/a6dfb1194a2946fcdc1f38219445234f65b35c96", + "reference": "a6dfb1194a2946fcdc1f38219445234f65b35c96", + "shasum": "", + "mirrors": [ + { + "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%", + "preferred": true + } + ] + }, + "require": { + "ext-fileinfo": "*", + "php": "^7.4 || ^8.0" + }, + "require-dev": { + "friendsofphp/php-cs-fixer": "^3.2", + "phpstan/phpstan": "^0.12.68", + "phpunit/phpunit": "^8.5.8 || ^9.3 || ^10.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "League\\MimeTypeDetection\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Frank de Jonge", + "email": "info@frankdejonge.nl" + } + ], + "description": "Mime-type detection for Flysystem", + "support": { + "issues": "https://github.com/thephpleague/mime-type-detection/issues", + "source": "https://github.com/thephpleague/mime-type-detection/tree/1.13.0" + }, + "funding": [ + { + "url": "https://github.com/frankdejonge", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/league/flysystem", + "type": "tidelift" + } + ], + "time": "2023-08-05T12:09:49+00:00" + }, + { + "name": "lizhichao/one-sm", + "version": "1.10", + "source": { + "type": "git", + "url": "https://github.com/lizhichao/sm.git", + "reference": "687a012a44a5bfd4d9143a0234e1060543be455a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/lizhichao/sm/zipball/687a012a44a5bfd4d9143a0234e1060543be455a", + "reference": "687a012a44a5bfd4d9143a0234e1060543be455a", + "shasum": "", + "mirrors": [ + { + "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%", + "preferred": true + } + ] + }, + "require": { + "php": ">=5.6" + }, + "type": "library", + "autoload": { + "psr-4": { + "OneSm\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "Apache-2.0" + ], + "authors": [ + { + "name": "tanszhe", + "email": "1018595261@qq.com" + } + ], + "description": "国密sm3", + "keywords": [ + "php", + "sm3" + ], + "support": { + "issues": "https://github.com/lizhichao/sm/issues", + "source": "https://github.com/lizhichao/sm/tree/1.10" + }, + "funding": [ + { + "url": "https://www.vicsdf.com/img/w.jpg", + "type": "custom" + }, + { + "url": "https://www.vicsdf.com/img/z.jpg", + "type": "custom" + } + ], + "time": "2021-05-26T06:19:22+00:00" + }, { "name": "maennchen/zipstream-php", "version": "2.4.0", @@ -4696,6 +5467,58 @@ }, "time": "2023-07-11T15:16:03+00:00" }, + { + "name": "topthink/think-filesystem", + "version": "v2.0.2", + "source": { + "type": "git", + "url": "https://github.com/top-think/think-filesystem.git", + "reference": "c08503232fcae0c3c7fefae5e6b5c841ffe09f2f" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/top-think/think-filesystem/zipball/c08503232fcae0c3c7fefae5e6b5c841ffe09f2f", + "reference": "c08503232fcae0c3c7fefae5e6b5c841ffe09f2f", + "shasum": "", + "mirrors": [ + { + "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%", + "preferred": true + } + ] + }, + "require": { + "league/flysystem": "^2.0", + "topthink/framework": "^6.1|^8.0" + }, + "require-dev": { + "mikey179/vfsstream": "^1.6", + "mockery/mockery": "^1.2", + "phpunit/phpunit": "^8.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "think\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "Apache-2.0" + ], + "authors": [ + { + "name": "yunwuxin", + "email": "448901948@qq.com" + } + ], + "description": "The ThinkPHP6.1 Filesystem Package", + "support": { + "issues": "https://github.com/top-think/think-filesystem/issues", + "source": "https://github.com/top-think/think-filesystem/tree/v2.0.2" + }, + "time": "2023-02-08T01:23:42+00:00" + }, { "name": "topthink/think-helper", "version": "v3.1.6", diff --git a/extend/IFlytek/Xfyun/Speech/ChatClient.php b/extend/IFlytek/Xfyun/Speech/ChatClient.php index acb1a1a02..0777b247b 100644 --- a/extend/IFlytek/Xfyun/Speech/ChatClient.php +++ b/extend/IFlytek/Xfyun/Speech/ChatClient.php @@ -61,14 +61,12 @@ class ChatClient $timestamp = time(); $rfc1123_format = gmdate("D, d M Y H:i:s \G\M\T", $timestamp); // $rfc1123_format = "Mon, 31 Jul 2023 08:24:03 GMT"; - // 参与签名的字段 host, date, request-line $signString = array("host: " . $ul["host"], "date: " . $rfc1123_format, $method . " " . $ul["path"] . " HTTP/1.1"); // 对签名字符串进行排序,确保顺序一致 // ksort($signString); // 将签名字符串拼接成一个字符串 $sgin = implode("\n", $signString); - // 对签名字符串进行HMAC-SHA256加密,得到签名结果 $sha = hash_hmac('sha256', $sgin, $apiSecret,true); diff --git a/extend/IFlytek/Xfyun/Speech/Config/TtsConfig.php b/extend/IFlytek/Xfyun/Speech/Config/TtsConfig.php index c9f6b3189..b1196e066 100644 --- a/extend/IFlytek/Xfyun/Speech/Config/TtsConfig.php +++ b/extend/IFlytek/Xfyun/Speech/Config/TtsConfig.php @@ -130,7 +130,7 @@ class TtsConfig implements ConfigInterface $config += [ 'aue' => 'lame', 'sfl' => 1, - 'auf' => null, + 'auf' => 'audio/L16;rate=16000', 'vcn' => 'xiaoyan', 'speed' => 50, 'volume' => 50, diff --git a/extend/IFlytek/Xfyun/Speech/IatClient.php b/extend/IFlytek/Xfyun/Speech/IatClient.php new file mode 100644 index 000000000..d4d6a552e --- /dev/null +++ b/extend/IFlytek/Xfyun/Speech/IatClient.php @@ -0,0 +1,86 @@ +appId = $appId; + $this->apiKey = $apiKey; + $this->apiSecret = $apiSecret; + $this->uid = $uid; + $this->resId = $resId; + $this->client = new HttpClient([]); + } + + public function assembleAuthUrl($addr, $method='GET') { + $apiKey=$this->apiKey; + $apiSecret=$this->apiSecret; + if ($apiKey == "" && $apiSecret == "") { // 不鉴权 + return $addr; + } + + $ul = parse_url($addr); // 解析地址 + if ($ul === false) { // 地址不对,也不鉴权 + return $addr; + } + // // $date = date(DATE_RFC1123); // 获取当前时间并格式化为RFC1123格式的字符串 + $timestamp = time(); + $rfc1123_format = gmdate("D, d M Y H:i:s \G\M\T", $timestamp); + // $rfc1123_format = "Mon, 31 Jul 2023 08:24:03 GMT"; + // 参与签名的字段 host, date, request-line + $signString = array("host: " . $ul["host"], "date: " . $rfc1123_format, $method . " " . $ul["path"] . " HTTP/1.1"); + // 对签名字符串进行排序,确保顺序一致 + // ksort($signString); + // 将签名字符串拼接成一个字符串 + $sgin = implode("\n", $signString); + // 对签名字符串进行HMAC-SHA256加密,得到签名结果 + $sha = hash_hmac('sha256', $sgin, $apiSecret, true); + + $signature_sha_base64 = base64_encode($sha); + + // 将API密钥、算法、头部信息和签名结果拼接成一个授权URL + $authUrl = "api_key=\"$apiKey\",algorithm=\"hmac-sha256\",headers=\"host date request-line\",signature=\"$signature_sha_base64\""; + // 对授权URL进行Base64编码,并添加到原始地址后面作为查询参数 + $authAddr = $addr . '?' . http_build_query(array( + 'host' => $ul['host'], + 'date' => $rfc1123_format, + 'authorization' => base64_encode($authUrl), + )); + return $authAddr; + } + +} diff --git a/extend/IFlytek/Xfyun/Speech/OcrClient.php b/extend/IFlytek/Xfyun/Speech/OcrClient.php new file mode 100644 index 000000000..69bbb8d01 --- /dev/null +++ b/extend/IFlytek/Xfyun/Speech/OcrClient.php @@ -0,0 +1,86 @@ +appId = $appId; + $this->apiKey = $apiKey; + $this->apiSecret = $apiSecret; + $this->uid = $uid; + $this->resId = $resId; + $this->client = new HttpClient([]); + } + + public function assembleAuthUrl($addr, $method='POST') { + $apiKey=$this->apiKey; + $apiSecret=$this->apiSecret; + if ($apiKey == "" && $apiSecret == "") { // 不鉴权 + return $addr; + } + + $ul = parse_url($addr); // 解析地址 + if ($ul === false) { // 地址不对,也不鉴权 + return $addr; + } + // // $date = date(DATE_RFC1123); // 获取当前时间并格式化为RFC1123格式的字符串 + $timestamp = time(); + $rfc1123_format = gmdate("D, d M Y H:i:s \G\M\T", $timestamp); + // $rfc1123_format = "Mon, 31 Jul 2023 08:24:03 GMT"; + // 参与签名的字段 host, date, request-line + $signString = array("host: " . $ul["host"], "date: " . $rfc1123_format, $method . " " . $ul["path"] . " HTTP/1.1"); + // 对签名字符串进行排序,确保顺序一致 + // ksort($signString); + // 将签名字符串拼接成一个字符串 + $sgin = implode("\n", $signString); + // 对签名字符串进行HMAC-SHA256加密,得到签名结果 + $sha = hash_hmac('sha256', $sgin, $apiSecret, true); + + $signature_sha_base64 = base64_encode($sha); + + // 将API密钥、算法、头部信息和签名结果拼接成一个授权URL + $authUrl = "api_key=\"$apiKey\",algorithm=\"hmac-sha256\",headers=\"host date request-line\",signature=\"$signature_sha_base64\""; + // 对授权URL进行Base64编码,并添加到原始地址后面作为查询参数 + $authAddr = $addr . '?' . http_build_query(array( + 'host' => $ul['host'], + 'date' => $rfc1123_format, + 'authorization' => base64_encode($authUrl), + )); + return $authAddr; + } + +} diff --git a/extend/IFlytek/Xfyun/Speech/TtsClient.php b/extend/IFlytek/Xfyun/Speech/TtsClient.php index f4978f8b9..45d431958 100644 --- a/extend/IFlytek/Xfyun/Speech/TtsClient.php +++ b/extend/IFlytek/Xfyun/Speech/TtsClient.php @@ -97,4 +97,41 @@ class TtsClient ]); return $client->sendAndReceive(); } + + function assembleAuthUrl($addr,$method='GET') { + $apiKey=$this->apiKey; + $apiSecret=$this->apiSecret; + if ($apiKey == "" && $apiSecret == "") { // 不鉴权 + return $addr; + } + + $ul = parse_url($addr); // 解析地址 + if ($ul === false) { // 地址不对,也不鉴权 + return $addr; + } + // // $date = date(DATE_RFC1123); // 获取当前时间并格式化为RFC1123格式的字符串 + $timestamp = time(); + $rfc1123_format = gmdate("D, d M Y H:i:s \G\M\T", $timestamp); + // $rfc1123_format = "Mon, 31 Jul 2023 08:24:03 GMT"; + // 参与签名的字段 host, date, request-line + $signString = array("host: " . $ul["host"], "date: " . $rfc1123_format, $method . " " . $ul["path"] . " HTTP/1.1"); + // 对签名字符串进行排序,确保顺序一致 + // ksort($signString); + // 将签名字符串拼接成一个字符串 + $sgin = implode("\n", $signString); + // 对签名字符串进行HMAC-SHA256加密,得到签名结果 + $sha = hash_hmac('sha256', $sgin, $apiSecret,true); + + $signature_sha_base64 = base64_encode($sha); + + // 将API密钥、算法、头部信息和签名结果拼接成一个授权URL + $authUrl = "api_key=\"$apiKey\",algorithm=\"hmac-sha256\",headers=\"host date request-line\",signature=\"$signature_sha_base64\""; + // 对授权URL进行Base64编码,并添加到原始地址后面作为查询参数 + $authAddr = $addr . '?' . http_build_query(array( + 'host' => $ul['host'], + 'date' => $rfc1123_format, + 'authorization' => base64_encode($authUrl), + )); + return $authAddr; + } } diff --git a/public/admin/assets/403.0c7dfb1d.js b/public/admin/assets/403.0c7dfb1d.js new file mode 100644 index 000000000..d210d147a --- /dev/null +++ b/public/admin/assets/403.0c7dfb1d.js @@ -0,0 +1 @@ +import o from"./error.ab90784a.js";import{d as r,o as i,c as p,U as m,L as e,a as t}from"./@vue.51d7f2d8.js";import"./element-plus.4328d892.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./vue-router.9f65afb1.js";import"./index.ed71ac09.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const s="/admin/assets/no_perms.a56e95a5.png",a={class:"error404"},u=t("div",{class:"flex justify-center"},[t("img",{class:"w-[150px] h-[150px]",src:s,alt:""})],-1),T=r({__name:"403",setup(c){return(n,_)=>(i(),p("div",a,[m(o,{code:"403",title:"\u60A8\u7684\u8D26\u53F7\u6743\u9650\u4E0D\u8DB3\uFF0C\u8BF7\u8054\u7CFB\u7BA1\u7406\u5458\u6DFB\u52A0\u6743\u9650\uFF01","show-btn":!1},{content:e(()=>[u]),_:1})]))}});export{T as default}; diff --git a/public/admin/assets/403.655bd478.js b/public/admin/assets/403.655bd478.js new file mode 100644 index 000000000..788a2401a --- /dev/null +++ b/public/admin/assets/403.655bd478.js @@ -0,0 +1 @@ +import o from"./error.b20a557d.js";import{d as r,o as i,c as p,U as m,L as e,a as t}from"./@vue.51d7f2d8.js";import"./element-plus.4328d892.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./vue-router.9f65afb1.js";import"./index.aa9bb752.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const s="/admin/assets/no_perms.a56e95a5.png",a={class:"error404"},u=t("div",{class:"flex justify-center"},[t("img",{class:"w-[150px] h-[150px]",src:s,alt:""})],-1),T=r({__name:"403",setup(c){return(n,_)=>(i(),p("div",a,[m(o,{code:"403",title:"\u60A8\u7684\u8D26\u53F7\u6743\u9650\u4E0D\u8DB3\uFF0C\u8BF7\u8054\u7CFB\u7BA1\u7406\u5458\u6DFB\u52A0\u6743\u9650\uFF01","show-btn":!1},{content:e(()=>[u]),_:1})]))}});export{T as default}; diff --git a/public/admin/assets/403.f527df19.js b/public/admin/assets/403.f527df19.js new file mode 100644 index 000000000..fa1410755 --- /dev/null +++ b/public/admin/assets/403.f527df19.js @@ -0,0 +1 @@ +import o from"./error.ce387314.js";import{d as r,o as i,c as p,U as m,L as e,a as t}from"./@vue.51d7f2d8.js";import"./element-plus.4328d892.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./vue-router.9f65afb1.js";import"./index.37f7aea6.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const s="/admin/assets/no_perms.a56e95a5.png",a={class:"error404"},u=t("div",{class:"flex justify-center"},[t("img",{class:"w-[150px] h-[150px]",src:s,alt:""})],-1),T=r({__name:"403",setup(c){return(n,_)=>(i(),p("div",a,[m(o,{code:"403",title:"\u60A8\u7684\u8D26\u53F7\u6743\u9650\u4E0D\u8DB3\uFF0C\u8BF7\u8054\u7CFB\u7BA1\u7406\u5458\u6DFB\u52A0\u6743\u9650\uFF01","show-btn":!1},{content:e(()=>[u]),_:1})]))}});export{T as default}; diff --git a/public/admin/assets/404.950d9176.js b/public/admin/assets/404.950d9176.js new file mode 100644 index 000000000..eaeb443db --- /dev/null +++ b/public/admin/assets/404.950d9176.js @@ -0,0 +1 @@ +import o from"./error.b20a557d.js";import{d as r,o as t,c as m,U as p}from"./@vue.51d7f2d8.js";import"./element-plus.4328d892.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./vue-router.9f65afb1.js";import"./index.aa9bb752.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const i={class:"error404"},P=r({__name:"404",setup(e){return(u,c)=>(t(),m("div",i,[p(o,{code:"404",title:"\u54CE\u5440\uFF0C\u51FA\u9519\u4E86\uFF01\u60A8\u8BBF\u95EE\u7684\u9875\u9762\u4E0D\u5B58\u5728\u2026"})]))}});export{P as default}; diff --git a/public/admin/assets/404.a81ca3a0.js b/public/admin/assets/404.a81ca3a0.js new file mode 100644 index 000000000..738c3c1c1 --- /dev/null +++ b/public/admin/assets/404.a81ca3a0.js @@ -0,0 +1 @@ +import o from"./error.ab90784a.js";import{d as r,o as t,c as m,U as p}from"./@vue.51d7f2d8.js";import"./element-plus.4328d892.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./vue-router.9f65afb1.js";import"./index.ed71ac09.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const i={class:"error404"},P=r({__name:"404",setup(e){return(u,c)=>(t(),m("div",i,[p(o,{code:"404",title:"\u54CE\u5440\uFF0C\u51FA\u9519\u4E86\uFF01\u60A8\u8BBF\u95EE\u7684\u9875\u9762\u4E0D\u5B58\u5728\u2026"})]))}});export{P as default}; diff --git a/public/admin/assets/404.e5d3d45f.js b/public/admin/assets/404.e5d3d45f.js new file mode 100644 index 000000000..5b81f8145 --- /dev/null +++ b/public/admin/assets/404.e5d3d45f.js @@ -0,0 +1 @@ +import o from"./error.ce387314.js";import{d as r,o as t,c as m,U as p}from"./@vue.51d7f2d8.js";import"./element-plus.4328d892.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./vue-router.9f65afb1.js";import"./index.37f7aea6.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const i={class:"error404"},P=r({__name:"404",setup(e){return(u,c)=>(t(),m("div",i,[p(o,{code:"404",title:"\u54CE\u5440\uFF0C\u51FA\u9519\u4E86\uFF01\u60A8\u8BBF\u95EE\u7684\u9875\u9762\u4E0D\u5B58\u5728\u2026"})]))}});export{P as default}; diff --git a/public/admin/assets/Withdrawal.256c2635.js b/public/admin/assets/Withdrawal.256c2635.js new file mode 100644 index 000000000..6ddf66bed --- /dev/null +++ b/public/admin/assets/Withdrawal.256c2635.js @@ -0,0 +1 @@ +import{B as j,C as q,M as K,N as W,w as z,D as G,I as H,O as J,P as X,Q as Y}from"./element-plus.4328d892.js";import{_ as Z}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{u as ee}from"./usePaging.2ad8e1e6.js";import{u as te}from"./useDictOptions.a45fc8ac.js";import{a as oe}from"./withdraw.35c20484.js";import"./lodash.08438971.js";import"./index.37f7aea6.js";import{_ as ae}from"./edit.vue_vue_type_script_setup_true_name_withdrawEdit_lang.ea9e65cf.js";import{_ as le}from"./audit.vue_vue_type_script_setup_true_name_withdrawEdit_lang.0a14e109.js";import{d as x,s as V,r as v,$ as ue,af as se,o as u,c as m,U as t,L as l,u as o,T as ne,a7 as re,K as p,R as k,M as C,a as g,Q as d,k as ie,n as me}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.5759a1a6.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";const pe={class:"mt-4"},de={key:0,style:{color:"#e6a23c"}},ce={key:1,style:{color:"#409eff"}},_e={key:2,style:{color:"#f56c6c"}},fe={key:3,style:{color:"#67c23a"}},Fe={class:"flex mt-4 justify-end"},ve=x({name:"withdrawLists"}),nt=x({...ve,setup(ke){const A=V(),D=V(),b=v(!1),w=v(!1),s=ue({order_sn:"",user_id:"",nickname:"",company_name:"",admin_id:"",amount:"",status:""}),$=v([{id:0,name:"\u5F85\u5BA1\u6838"},{id:1,name:"\u901A\u8FC7"},{id:2,name:"\u62D2\u7EDD"},{id:3,name:"\u5DF2\u8F6C\u8D26"}]),L=v([]),R=f=>{L.value=f.map(({id:a})=>a)},{dictData:y}=te(""),{pager:c,getLists:_,resetParams:S,resetPage:U}=ee({fetchFun:oe,params:s}),h=async(f,a)=>{var i,r;w.value=!0,await me(),(i=D.value)==null||i.open(a?"audit":"detail"),(r=D.value)==null||r.setFormData(f)};return _(),(f,a)=>{const i=j,r=q,N=K,P=W,F=z,T=G,B=H,n=J,I=X,M=Z,E=se("perms"),O=Y;return u(),m("div",null,[t(B,{class:"!border-none mb-4",shadow:"never"},{default:l(()=>[t(T,{class:"mb-[-16px]",model:o(s),inline:""},{default:l(()=>[t(r,{label:"\u8BA2\u5355\u7F16\u53F7",prop:"order_sn"},{default:l(()=>[t(i,{class:"w-[280px]",modelValue:o(s).order_sn,"onUpdate:modelValue":a[0]||(a[0]=e=>o(s).order_sn=e),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u8BA2\u5355\u7F16\u53F7"},null,8,["modelValue"])]),_:1}),t(r,{label:"\u7528\u6237",prop:"nickname"},{default:l(()=>[t(i,{class:"w-[280px]",modelValue:o(s).nickname,"onUpdate:modelValue":a[1]||(a[1]=e=>o(s).nickname=e),clearable:"",placeholder:"\u8BF7\u8F93\u5165"},null,8,["modelValue"])]),_:1}),t(r,{label:"\u63D0\u73B0\u91D1\u989D",prop:"amount"},{default:l(()=>[t(i,{class:"w-[280px]",modelValue:o(s).amount,"onUpdate:modelValue":a[2]||(a[2]=e=>o(s).amount=e),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u63D0\u73B0\u91D1\u989D"},null,8,["modelValue"])]),_:1}),t(r,{label:"\u72B6\u6001\uFF1A",prop:"status"},{default:l(()=>[t(P,{modelValue:o(s).status,"onUpdate:modelValue":a[3]||(a[3]=e=>o(s).status=e),clearable:"",placeholder:"\u8BF7\u9009\u62E9\u72B6\u6001"},{default:l(()=>[(u(!0),m(ne,null,re(o($),e=>(u(),p(N,{key:e.label,value:e.id,label:e.name},null,8,["value","label"]))),128))]),_:1},8,["modelValue"])]),_:1}),t(r,null,{default:l(()=>[t(F,{type:"primary",onClick:o(U)},{default:l(()=>[k("\u67E5\u8BE2")]),_:1},8,["onClick"]),t(F,{onClick:o(S)},{default:l(()=>[k("\u91CD\u7F6E")]),_:1},8,["onClick"])]),_:1})]),_:1},8,["model"])]),_:1}),C((u(),p(B,{class:"!border-none",shadow:"never"},{default:l(()=>[g("div",pe,[t(I,{data:o(c).lists,onSelectionChange:R},{default:l(()=>[t(n,{label:"ID",prop:"id",width:"110"}),t(n,{label:"\u8BA2\u5355\u7F16\u53F7",prop:"order_sn","show-overflow-tooltip":""}),t(n,{label:"\u516C\u53F8",prop:"company_name","show-overflow-tooltip":""}),t(n,{label:"\u7528\u6237",prop:"nickname","show-overflow-tooltip":""}),t(n,{label:"\u63D0\u73B0\u91D1\u989D",prop:"amount","show-overflow-tooltip":""}),t(n,{label:"\u72B6\u6001",prop:"status","show-overflow-tooltip":""},{default:l(({row:e})=>[e.status==0?(u(),m("span",de,"\u5F85\u5BA1\u6838")):d("",!0),e.status==1?(u(),m("span",ce,"\u901A\u8FC7")):d("",!0),e.status==2?(u(),m("span",_e,"\u62D2\u7EDD")):d("",!0),e.status==3?(u(),m("span",fe,"\u5DF2\u8F6C\u8D26")):d("",!0)]),_:1}),t(n,{label:"\u63D0\u73B0\u65F6\u95F4",prop:"create_time","show-overflow-tooltip":""}),t(n,{label:"\u5907\u6CE8",prop:"deny_desc","show-overflow-tooltip":""}),t(n,{label:"\u64CD\u4F5C",width:"120",fixed:"right"},{default:l(({row:e})=>[e.status==0?C((u(),p(F,{key:0,type:"primary",link:"",onClick:Q=>h(e,!0)},{default:l(()=>[k(" \u5BA1\u6838 ")]),_:2},1032,["onClick"])),[[E,["withdraw/audit"]]]):C((u(),p(F,{key:1,type:"primary",link:"",onClick:Q=>h(e,!1)},{default:l(()=>[k(" \u8BE6\u60C5 ")]),_:2},1032,["onClick"])),[[E,["withdraw/audit"]]])]),_:1})]),_:1},8,["data"])]),g("div",Fe,[t(M,{modelValue:o(c),"onUpdate:modelValue":a[4]||(a[4]=e=>ie(c)?c.value=e:null),onChange:o(_)},null,8,["modelValue","onChange"])])]),_:1})),[[O,o(c).loading]]),o(b)?(u(),p(ae,{key:0,ref_key:"editRef",ref:A,"dict-data":o(y),onSuccess:o(_),onClose:a[5]||(a[5]=e=>b.value=!1)},null,8,["dict-data","onSuccess"])):d("",!0),o(w)?(u(),p(le,{key:1,ref_key:"auditRef",ref:D,"dict-data":o(y),onSuccess:o(_),onClose:a[6]||(a[6]=e=>w.value=!1)},null,8,["dict-data","onSuccess"])):d("",!0)])}}});export{nt as default}; diff --git a/public/admin/assets/Withdrawal.872208f6.js b/public/admin/assets/Withdrawal.872208f6.js new file mode 100644 index 000000000..618e6dbcc --- /dev/null +++ b/public/admin/assets/Withdrawal.872208f6.js @@ -0,0 +1 @@ +import{B as j,C as q,M as K,N as W,w as z,D as G,I as H,O as J,P as X,Q as Y}from"./element-plus.4328d892.js";import{_ as Z}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{u as ee}from"./usePaging.2ad8e1e6.js";import{u as te}from"./useDictOptions.8d37e54b.js";import{a as oe}from"./withdraw.046913b9.js";import"./lodash.08438971.js";import"./index.ed71ac09.js";import{_ as ae}from"./edit.vue_vue_type_script_setup_true_name_withdrawEdit_lang.d8e42481.js";import{_ as le}from"./audit.vue_vue_type_script_setup_true_name_withdrawEdit_lang.c495c275.js";import{d as x,s as V,r as v,$ as ue,af as se,o as u,c as m,U as t,L as l,u as o,T as ne,a7 as re,K as p,R as k,M as C,a as g,Q as d,k as ie,n as me}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.b940d6e3.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";const pe={class:"mt-4"},de={key:0,style:{color:"#e6a23c"}},ce={key:1,style:{color:"#409eff"}},_e={key:2,style:{color:"#f56c6c"}},fe={key:3,style:{color:"#67c23a"}},Fe={class:"flex mt-4 justify-end"},ve=x({name:"withdrawLists"}),nt=x({...ve,setup(ke){const A=V(),D=V(),b=v(!1),w=v(!1),s=ue({order_sn:"",user_id:"",nickname:"",company_name:"",admin_id:"",amount:"",status:""}),$=v([{id:0,name:"\u5F85\u5BA1\u6838"},{id:1,name:"\u901A\u8FC7"},{id:2,name:"\u62D2\u7EDD"},{id:3,name:"\u5DF2\u8F6C\u8D26"}]),L=v([]),R=f=>{L.value=f.map(({id:a})=>a)},{dictData:y}=te(""),{pager:c,getLists:_,resetParams:S,resetPage:U}=ee({fetchFun:oe,params:s}),h=async(f,a)=>{var i,r;w.value=!0,await me(),(i=D.value)==null||i.open(a?"audit":"detail"),(r=D.value)==null||r.setFormData(f)};return _(),(f,a)=>{const i=j,r=q,N=K,P=W,F=z,T=G,B=H,n=J,I=X,M=Z,E=se("perms"),O=Y;return u(),m("div",null,[t(B,{class:"!border-none mb-4",shadow:"never"},{default:l(()=>[t(T,{class:"mb-[-16px]",model:o(s),inline:""},{default:l(()=>[t(r,{label:"\u8BA2\u5355\u7F16\u53F7",prop:"order_sn"},{default:l(()=>[t(i,{class:"w-[280px]",modelValue:o(s).order_sn,"onUpdate:modelValue":a[0]||(a[0]=e=>o(s).order_sn=e),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u8BA2\u5355\u7F16\u53F7"},null,8,["modelValue"])]),_:1}),t(r,{label:"\u7528\u6237",prop:"nickname"},{default:l(()=>[t(i,{class:"w-[280px]",modelValue:o(s).nickname,"onUpdate:modelValue":a[1]||(a[1]=e=>o(s).nickname=e),clearable:"",placeholder:"\u8BF7\u8F93\u5165"},null,8,["modelValue"])]),_:1}),t(r,{label:"\u63D0\u73B0\u91D1\u989D",prop:"amount"},{default:l(()=>[t(i,{class:"w-[280px]",modelValue:o(s).amount,"onUpdate:modelValue":a[2]||(a[2]=e=>o(s).amount=e),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u63D0\u73B0\u91D1\u989D"},null,8,["modelValue"])]),_:1}),t(r,{label:"\u72B6\u6001\uFF1A",prop:"status"},{default:l(()=>[t(P,{modelValue:o(s).status,"onUpdate:modelValue":a[3]||(a[3]=e=>o(s).status=e),clearable:"",placeholder:"\u8BF7\u9009\u62E9\u72B6\u6001"},{default:l(()=>[(u(!0),m(ne,null,re(o($),e=>(u(),p(N,{key:e.label,value:e.id,label:e.name},null,8,["value","label"]))),128))]),_:1},8,["modelValue"])]),_:1}),t(r,null,{default:l(()=>[t(F,{type:"primary",onClick:o(U)},{default:l(()=>[k("\u67E5\u8BE2")]),_:1},8,["onClick"]),t(F,{onClick:o(S)},{default:l(()=>[k("\u91CD\u7F6E")]),_:1},8,["onClick"])]),_:1})]),_:1},8,["model"])]),_:1}),C((u(),p(B,{class:"!border-none",shadow:"never"},{default:l(()=>[g("div",pe,[t(I,{data:o(c).lists,onSelectionChange:R},{default:l(()=>[t(n,{label:"ID",prop:"id",width:"110"}),t(n,{label:"\u8BA2\u5355\u7F16\u53F7",prop:"order_sn","show-overflow-tooltip":""}),t(n,{label:"\u516C\u53F8",prop:"company_name","show-overflow-tooltip":""}),t(n,{label:"\u7528\u6237",prop:"nickname","show-overflow-tooltip":""}),t(n,{label:"\u63D0\u73B0\u91D1\u989D",prop:"amount","show-overflow-tooltip":""}),t(n,{label:"\u72B6\u6001",prop:"status","show-overflow-tooltip":""},{default:l(({row:e})=>[e.status==0?(u(),m("span",de,"\u5F85\u5BA1\u6838")):d("",!0),e.status==1?(u(),m("span",ce,"\u901A\u8FC7")):d("",!0),e.status==2?(u(),m("span",_e,"\u62D2\u7EDD")):d("",!0),e.status==3?(u(),m("span",fe,"\u5DF2\u8F6C\u8D26")):d("",!0)]),_:1}),t(n,{label:"\u63D0\u73B0\u65F6\u95F4",prop:"create_time","show-overflow-tooltip":""}),t(n,{label:"\u5907\u6CE8",prop:"deny_desc","show-overflow-tooltip":""}),t(n,{label:"\u64CD\u4F5C",width:"120",fixed:"right"},{default:l(({row:e})=>[e.status==0?C((u(),p(F,{key:0,type:"primary",link:"",onClick:Q=>h(e,!0)},{default:l(()=>[k(" \u5BA1\u6838 ")]),_:2},1032,["onClick"])),[[E,["withdraw/audit"]]]):C((u(),p(F,{key:1,type:"primary",link:"",onClick:Q=>h(e,!1)},{default:l(()=>[k(" \u8BE6\u60C5 ")]),_:2},1032,["onClick"])),[[E,["withdraw/audit"]]])]),_:1})]),_:1},8,["data"])]),g("div",Fe,[t(M,{modelValue:o(c),"onUpdate:modelValue":a[4]||(a[4]=e=>ie(c)?c.value=e:null),onChange:o(_)},null,8,["modelValue","onChange"])])]),_:1})),[[O,o(c).loading]]),o(b)?(u(),p(ae,{key:0,ref_key:"editRef",ref:A,"dict-data":o(y),onSuccess:o(_),onClose:a[5]||(a[5]=e=>b.value=!1)},null,8,["dict-data","onSuccess"])):d("",!0),o(w)?(u(),p(le,{key:1,ref_key:"auditRef",ref:D,"dict-data":o(y),onSuccess:o(_),onClose:a[6]||(a[6]=e=>w.value=!1)},null,8,["dict-data","onSuccess"])):d("",!0)])}}});export{nt as default}; diff --git a/public/admin/assets/Withdrawal.aced93fb.js b/public/admin/assets/Withdrawal.aced93fb.js new file mode 100644 index 000000000..389e2a8f1 --- /dev/null +++ b/public/admin/assets/Withdrawal.aced93fb.js @@ -0,0 +1 @@ +import{B as j,C as q,M as K,N as W,w as z,D as G,I as H,O as J,P as X,Q as Y}from"./element-plus.4328d892.js";import{_ as Z}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{u as ee}from"./usePaging.2ad8e1e6.js";import{u as te}from"./useDictOptions.a61fcf9f.js";import{a as oe}from"./withdraw.32706b7e.js";import"./lodash.08438971.js";import"./index.aa9bb752.js";import{_ as ae}from"./edit.vue_vue_type_script_setup_true_name_withdrawEdit_lang.724a3d0c.js";import{_ as le}from"./audit.vue_vue_type_script_setup_true_name_withdrawEdit_lang.b26f5dcc.js";import{d as x,s as V,r as v,$ as ue,af as se,o as u,c as m,U as t,L as l,u as o,T as ne,a7 as re,K as p,R as k,M as C,a as g,Q as d,k as ie,n as me}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.fa872673.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";const pe={class:"mt-4"},de={key:0,style:{color:"#e6a23c"}},ce={key:1,style:{color:"#409eff"}},_e={key:2,style:{color:"#f56c6c"}},fe={key:3,style:{color:"#67c23a"}},Fe={class:"flex mt-4 justify-end"},ve=x({name:"withdrawLists"}),nt=x({...ve,setup(ke){const A=V(),D=V(),b=v(!1),w=v(!1),s=ue({order_sn:"",user_id:"",nickname:"",company_name:"",admin_id:"",amount:"",status:""}),$=v([{id:0,name:"\u5F85\u5BA1\u6838"},{id:1,name:"\u901A\u8FC7"},{id:2,name:"\u62D2\u7EDD"},{id:3,name:"\u5DF2\u8F6C\u8D26"}]),L=v([]),R=f=>{L.value=f.map(({id:a})=>a)},{dictData:y}=te(""),{pager:c,getLists:_,resetParams:S,resetPage:U}=ee({fetchFun:oe,params:s}),h=async(f,a)=>{var i,r;w.value=!0,await me(),(i=D.value)==null||i.open(a?"audit":"detail"),(r=D.value)==null||r.setFormData(f)};return _(),(f,a)=>{const i=j,r=q,N=K,P=W,F=z,T=G,B=H,n=J,I=X,M=Z,E=se("perms"),O=Y;return u(),m("div",null,[t(B,{class:"!border-none mb-4",shadow:"never"},{default:l(()=>[t(T,{class:"mb-[-16px]",model:o(s),inline:""},{default:l(()=>[t(r,{label:"\u8BA2\u5355\u7F16\u53F7",prop:"order_sn"},{default:l(()=>[t(i,{class:"w-[280px]",modelValue:o(s).order_sn,"onUpdate:modelValue":a[0]||(a[0]=e=>o(s).order_sn=e),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u8BA2\u5355\u7F16\u53F7"},null,8,["modelValue"])]),_:1}),t(r,{label:"\u7528\u6237",prop:"nickname"},{default:l(()=>[t(i,{class:"w-[280px]",modelValue:o(s).nickname,"onUpdate:modelValue":a[1]||(a[1]=e=>o(s).nickname=e),clearable:"",placeholder:"\u8BF7\u8F93\u5165"},null,8,["modelValue"])]),_:1}),t(r,{label:"\u63D0\u73B0\u91D1\u989D",prop:"amount"},{default:l(()=>[t(i,{class:"w-[280px]",modelValue:o(s).amount,"onUpdate:modelValue":a[2]||(a[2]=e=>o(s).amount=e),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u63D0\u73B0\u91D1\u989D"},null,8,["modelValue"])]),_:1}),t(r,{label:"\u72B6\u6001\uFF1A",prop:"status"},{default:l(()=>[t(P,{modelValue:o(s).status,"onUpdate:modelValue":a[3]||(a[3]=e=>o(s).status=e),clearable:"",placeholder:"\u8BF7\u9009\u62E9\u72B6\u6001"},{default:l(()=>[(u(!0),m(ne,null,re(o($),e=>(u(),p(N,{key:e.label,value:e.id,label:e.name},null,8,["value","label"]))),128))]),_:1},8,["modelValue"])]),_:1}),t(r,null,{default:l(()=>[t(F,{type:"primary",onClick:o(U)},{default:l(()=>[k("\u67E5\u8BE2")]),_:1},8,["onClick"]),t(F,{onClick:o(S)},{default:l(()=>[k("\u91CD\u7F6E")]),_:1},8,["onClick"])]),_:1})]),_:1},8,["model"])]),_:1}),C((u(),p(B,{class:"!border-none",shadow:"never"},{default:l(()=>[g("div",pe,[t(I,{data:o(c).lists,onSelectionChange:R},{default:l(()=>[t(n,{label:"ID",prop:"id",width:"110"}),t(n,{label:"\u8BA2\u5355\u7F16\u53F7",prop:"order_sn","show-overflow-tooltip":""}),t(n,{label:"\u516C\u53F8",prop:"company_name","show-overflow-tooltip":""}),t(n,{label:"\u7528\u6237",prop:"nickname","show-overflow-tooltip":""}),t(n,{label:"\u63D0\u73B0\u91D1\u989D",prop:"amount","show-overflow-tooltip":""}),t(n,{label:"\u72B6\u6001",prop:"status","show-overflow-tooltip":""},{default:l(({row:e})=>[e.status==0?(u(),m("span",de,"\u5F85\u5BA1\u6838")):d("",!0),e.status==1?(u(),m("span",ce,"\u901A\u8FC7")):d("",!0),e.status==2?(u(),m("span",_e,"\u62D2\u7EDD")):d("",!0),e.status==3?(u(),m("span",fe,"\u5DF2\u8F6C\u8D26")):d("",!0)]),_:1}),t(n,{label:"\u63D0\u73B0\u65F6\u95F4",prop:"create_time","show-overflow-tooltip":""}),t(n,{label:"\u5907\u6CE8",prop:"deny_desc","show-overflow-tooltip":""}),t(n,{label:"\u64CD\u4F5C",width:"120",fixed:"right"},{default:l(({row:e})=>[e.status==0?C((u(),p(F,{key:0,type:"primary",link:"",onClick:Q=>h(e,!0)},{default:l(()=>[k(" \u5BA1\u6838 ")]),_:2},1032,["onClick"])),[[E,["withdraw/audit"]]]):C((u(),p(F,{key:1,type:"primary",link:"",onClick:Q=>h(e,!1)},{default:l(()=>[k(" \u8BE6\u60C5 ")]),_:2},1032,["onClick"])),[[E,["withdraw/audit"]]])]),_:1})]),_:1},8,["data"])]),g("div",Fe,[t(M,{modelValue:o(c),"onUpdate:modelValue":a[4]||(a[4]=e=>ie(c)?c.value=e:null),onChange:o(_)},null,8,["modelValue","onChange"])])]),_:1})),[[O,o(c).loading]]),o(b)?(u(),p(ae,{key:0,ref_key:"editRef",ref:A,"dict-data":o(y),onSuccess:o(_),onClose:a[5]||(a[5]=e=>b.value=!1)},null,8,["dict-data","onSuccess"])):d("",!0),o(w)?(u(),p(le,{key:1,ref_key:"auditRef",ref:D,"dict-data":o(y),onSuccess:o(_),onClose:a[6]||(a[6]=e=>w.value=!1)},null,8,["dict-data","onSuccess"])):d("",!0)])}}});export{nt as default}; diff --git a/public/admin/assets/account-adjust.065dcf6f.js b/public/admin/assets/account-adjust.065dcf6f.js new file mode 100644 index 000000000..4593c5f18 --- /dev/null +++ b/public/admin/assets/account-adjust.065dcf6f.js @@ -0,0 +1 @@ +import"./account-adjust.vue_vue_type_script_setup_true_lang.99dff1dd.js";import{_ as N}from"./account-adjust.vue_vue_type_script_setup_true_lang.99dff1dd.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.fa872673.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.aa9bb752.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";export{N as default}; diff --git a/public/admin/assets/account-adjust.7c04e4c5.js b/public/admin/assets/account-adjust.7c04e4c5.js new file mode 100644 index 000000000..c1948b643 --- /dev/null +++ b/public/admin/assets/account-adjust.7c04e4c5.js @@ -0,0 +1 @@ +import"./account-adjust.vue_vue_type_script_setup_true_lang.2709fbc4.js";import{_ as N}from"./account-adjust.vue_vue_type_script_setup_true_lang.2709fbc4.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.b940d6e3.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.ed71ac09.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";export{N as default}; diff --git a/public/admin/assets/account-adjust.9224f847.js b/public/admin/assets/account-adjust.9224f847.js new file mode 100644 index 000000000..55f4c1f12 --- /dev/null +++ b/public/admin/assets/account-adjust.9224f847.js @@ -0,0 +1 @@ +import"./account-adjust.vue_vue_type_script_setup_true_lang.b96ecb1d.js";import{_ as N}from"./account-adjust.vue_vue_type_script_setup_true_lang.b96ecb1d.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.5759a1a6.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.37f7aea6.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";export{N as default}; diff --git a/public/admin/assets/account-adjust.vue_vue_type_script_setup_true_lang.2709fbc4.js b/public/admin/assets/account-adjust.vue_vue_type_script_setup_true_lang.2709fbc4.js new file mode 100644 index 000000000..e7758a1d8 --- /dev/null +++ b/public/admin/assets/account-adjust.vue_vue_type_script_setup_true_lang.2709fbc4.js @@ -0,0 +1 @@ +import{C as x,G as B,H as R,B as g,D as N}from"./element-plus.4328d892.js";import{P as q}from"./index.b940d6e3.js";import{f as C}from"./index.ed71ac09.js";import{d as A,s as D,$ as I,e as S,w as b,o as U,K as j,L as a,a as G,U as o,u as r,R as n,S as E}from"./@vue.51d7f2d8.js";const P={class:"pr-8"},T=A({__name:"account-adjust",props:{show:{type:Boolean,required:!0},value:{type:[Number,String],required:!0}},emits:["update:show","confirm"],setup(d,{emit:i}){const c=d,s=D(),u=I({action:1,num:"",remark:""}),m=D(),f=S(()=>Number(c.value)+Number(u.num)*(u.action==1?1:-1)),w={num:[{required:!0,message:"\u8BF7\u8F93\u5165\u8C03\u6574\u7684\u91D1\u989D"}]},v=e=>{if(e.includes("-"))return C.msgError("\u8BF7\u8F93\u5165\u6B63\u6574\u6570");u.num=e},y=async()=>{var e;await((e=s.value)==null?void 0:e.validate()),i("confirm",u)},V=()=>{var e;i("update:show",!1),(e=s.value)==null||e.resetFields()};return b(()=>c.show,e=>{var l,t;e?(l=m.value)==null||l.open():(t=m.value)==null||t.close()}),b(f,e=>{e<0&&(C.msgError("\u8C03\u6574\u540E\u4F59\u989D\u9700\u5927\u4E8E0"),u.num="")}),(e,l)=>{const t=x,_=B,h=R,F=g,k=N;return U(),j(q,{ref_key:"popupRef",ref:m,title:"\u4F59\u989D\u8C03\u6574",width:"500px",onConfirm:y,async:!0,onClose:V},{default:a(()=>[G("div",P,[o(k,{ref_key:"formRef",ref:s,model:r(u),"label-width":"120px",rules:w},{default:a(()=>[o(t,{label:"\u5F53\u524D\u4F59\u989D"},{default:a(()=>[n("\xA5 "+E(d.value),1)]),_:1}),o(t,{label:"\u4F59\u989D\u589E\u51CF",required:"",prop:"action"},{default:a(()=>[o(h,{modelValue:r(u).action,"onUpdate:modelValue":l[0]||(l[0]=p=>r(u).action=p)},{default:a(()=>[o(_,{label:1},{default:a(()=>[n("\u589E\u52A0\u4F59\u989D")]),_:1}),o(_,{label:2},{default:a(()=>[n("\u6263\u51CF\u4F59\u989D")]),_:1})]),_:1},8,["modelValue"])]),_:1}),o(t,{label:"\u8C03\u6574\u4F59\u989D",prop:"num"},{default:a(()=>[o(F,{"model-value":r(u).num,placeholder:"\u8BF7\u8F93\u5165\u8C03\u6574\u7684\u91D1\u989D",type:"number",onInput:v},null,8,["model-value"])]),_:1}),o(t,{label:"\u8C03\u6574\u540E\u4F59\u989D"},{default:a(()=>[n(" \xA5 "+E(r(f)),1)]),_:1}),o(t,{label:"\u5907\u6CE8",prop:"remark"},{default:a(()=>[o(F,{modelValue:r(u).remark,"onUpdate:modelValue":l[1]||(l[1]=p=>r(u).remark=p),type:"textarea",rows:4},null,8,["modelValue"])]),_:1})]),_:1},8,["model"])])]),_:1},512)}}});export{T as _}; diff --git a/public/admin/assets/account-adjust.vue_vue_type_script_setup_true_lang.99dff1dd.js b/public/admin/assets/account-adjust.vue_vue_type_script_setup_true_lang.99dff1dd.js new file mode 100644 index 000000000..fec76df51 --- /dev/null +++ b/public/admin/assets/account-adjust.vue_vue_type_script_setup_true_lang.99dff1dd.js @@ -0,0 +1 @@ +import{C as x,G as B,H as R,B as g,D as N}from"./element-plus.4328d892.js";import{P as q}from"./index.fa872673.js";import{f as C}from"./index.aa9bb752.js";import{d as A,s as D,$ as I,e as S,w as b,o as U,K as j,L as a,a as G,U as o,u as r,R as n,S as E}from"./@vue.51d7f2d8.js";const P={class:"pr-8"},T=A({__name:"account-adjust",props:{show:{type:Boolean,required:!0},value:{type:[Number,String],required:!0}},emits:["update:show","confirm"],setup(d,{emit:i}){const c=d,s=D(),u=I({action:1,num:"",remark:""}),m=D(),f=S(()=>Number(c.value)+Number(u.num)*(u.action==1?1:-1)),w={num:[{required:!0,message:"\u8BF7\u8F93\u5165\u8C03\u6574\u7684\u91D1\u989D"}]},v=e=>{if(e.includes("-"))return C.msgError("\u8BF7\u8F93\u5165\u6B63\u6574\u6570");u.num=e},y=async()=>{var e;await((e=s.value)==null?void 0:e.validate()),i("confirm",u)},V=()=>{var e;i("update:show",!1),(e=s.value)==null||e.resetFields()};return b(()=>c.show,e=>{var l,t;e?(l=m.value)==null||l.open():(t=m.value)==null||t.close()}),b(f,e=>{e<0&&(C.msgError("\u8C03\u6574\u540E\u4F59\u989D\u9700\u5927\u4E8E0"),u.num="")}),(e,l)=>{const t=x,_=B,h=R,F=g,k=N;return U(),j(q,{ref_key:"popupRef",ref:m,title:"\u4F59\u989D\u8C03\u6574",width:"500px",onConfirm:y,async:!0,onClose:V},{default:a(()=>[G("div",P,[o(k,{ref_key:"formRef",ref:s,model:r(u),"label-width":"120px",rules:w},{default:a(()=>[o(t,{label:"\u5F53\u524D\u4F59\u989D"},{default:a(()=>[n("\xA5 "+E(d.value),1)]),_:1}),o(t,{label:"\u4F59\u989D\u589E\u51CF",required:"",prop:"action"},{default:a(()=>[o(h,{modelValue:r(u).action,"onUpdate:modelValue":l[0]||(l[0]=p=>r(u).action=p)},{default:a(()=>[o(_,{label:1},{default:a(()=>[n("\u589E\u52A0\u4F59\u989D")]),_:1}),o(_,{label:2},{default:a(()=>[n("\u6263\u51CF\u4F59\u989D")]),_:1})]),_:1},8,["modelValue"])]),_:1}),o(t,{label:"\u8C03\u6574\u4F59\u989D",prop:"num"},{default:a(()=>[o(F,{"model-value":r(u).num,placeholder:"\u8BF7\u8F93\u5165\u8C03\u6574\u7684\u91D1\u989D",type:"number",onInput:v},null,8,["model-value"])]),_:1}),o(t,{label:"\u8C03\u6574\u540E\u4F59\u989D"},{default:a(()=>[n(" \xA5 "+E(r(f)),1)]),_:1}),o(t,{label:"\u5907\u6CE8",prop:"remark"},{default:a(()=>[o(F,{modelValue:r(u).remark,"onUpdate:modelValue":l[1]||(l[1]=p=>r(u).remark=p),type:"textarea",rows:4},null,8,["modelValue"])]),_:1})]),_:1},8,["model"])])]),_:1},512)}}});export{T as _}; diff --git a/public/admin/assets/account-adjust.vue_vue_type_script_setup_true_lang.b96ecb1d.js b/public/admin/assets/account-adjust.vue_vue_type_script_setup_true_lang.b96ecb1d.js new file mode 100644 index 000000000..01d7f409d --- /dev/null +++ b/public/admin/assets/account-adjust.vue_vue_type_script_setup_true_lang.b96ecb1d.js @@ -0,0 +1 @@ +import{C as x,G as B,H as R,B as g,D as N}from"./element-plus.4328d892.js";import{P as q}from"./index.5759a1a6.js";import{f as C}from"./index.37f7aea6.js";import{d as A,s as D,$ as I,e as S,w as b,o as U,K as j,L as a,a as G,U as o,u as r,R as n,S as E}from"./@vue.51d7f2d8.js";const P={class:"pr-8"},T=A({__name:"account-adjust",props:{show:{type:Boolean,required:!0},value:{type:[Number,String],required:!0}},emits:["update:show","confirm"],setup(d,{emit:i}){const c=d,s=D(),u=I({action:1,num:"",remark:""}),m=D(),f=S(()=>Number(c.value)+Number(u.num)*(u.action==1?1:-1)),w={num:[{required:!0,message:"\u8BF7\u8F93\u5165\u8C03\u6574\u7684\u91D1\u989D"}]},v=e=>{if(e.includes("-"))return C.msgError("\u8BF7\u8F93\u5165\u6B63\u6574\u6570");u.num=e},y=async()=>{var e;await((e=s.value)==null?void 0:e.validate()),i("confirm",u)},V=()=>{var e;i("update:show",!1),(e=s.value)==null||e.resetFields()};return b(()=>c.show,e=>{var l,t;e?(l=m.value)==null||l.open():(t=m.value)==null||t.close()}),b(f,e=>{e<0&&(C.msgError("\u8C03\u6574\u540E\u4F59\u989D\u9700\u5927\u4E8E0"),u.num="")}),(e,l)=>{const t=x,_=B,h=R,F=g,k=N;return U(),j(q,{ref_key:"popupRef",ref:m,title:"\u4F59\u989D\u8C03\u6574",width:"500px",onConfirm:y,async:!0,onClose:V},{default:a(()=>[G("div",P,[o(k,{ref_key:"formRef",ref:s,model:r(u),"label-width":"120px",rules:w},{default:a(()=>[o(t,{label:"\u5F53\u524D\u4F59\u989D"},{default:a(()=>[n("\xA5 "+E(d.value),1)]),_:1}),o(t,{label:"\u4F59\u989D\u589E\u51CF",required:"",prop:"action"},{default:a(()=>[o(h,{modelValue:r(u).action,"onUpdate:modelValue":l[0]||(l[0]=p=>r(u).action=p)},{default:a(()=>[o(_,{label:1},{default:a(()=>[n("\u589E\u52A0\u4F59\u989D")]),_:1}),o(_,{label:2},{default:a(()=>[n("\u6263\u51CF\u4F59\u989D")]),_:1})]),_:1},8,["modelValue"])]),_:1}),o(t,{label:"\u8C03\u6574\u4F59\u989D",prop:"num"},{default:a(()=>[o(F,{"model-value":r(u).num,placeholder:"\u8BF7\u8F93\u5165\u8C03\u6574\u7684\u91D1\u989D",type:"number",onInput:v},null,8,["model-value"])]),_:1}),o(t,{label:"\u8C03\u6574\u540E\u4F59\u989D"},{default:a(()=>[n(" \xA5 "+E(r(f)),1)]),_:1}),o(t,{label:"\u5907\u6CE8",prop:"remark"},{default:a(()=>[o(F,{modelValue:r(u).remark,"onUpdate:modelValue":l[1]||(l[1]=p=>r(u).remark=p),type:"textarea",rows:4},null,8,["modelValue"])]),_:1})]),_:1},8,["model"])])]),_:1},512)}}});export{T as _}; diff --git a/public/admin/assets/add-nav.5fcd6517.js b/public/admin/assets/add-nav.5fcd6517.js new file mode 100644 index 000000000..c440cac70 --- /dev/null +++ b/public/admin/assets/add-nav.5fcd6517.js @@ -0,0 +1 @@ +import"./add-nav.vue_vue_type_script_setup_true_lang.3317a1cd.js";import{_ as Z}from"./add-nav.vue_vue_type_script_setup_true_lang.3317a1cd.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.a9a11abe.js";import"./index.aa9bb752.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./picker.c7d50072.js";import"./index.fa872673.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./picker.45aea54f.js";import"./index.c47e74f8.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./index.a450f1bb.js";import"./index.vue_vue_type_script_setup_true_lang.dc835bba.js";import"./usePaging.2ad8e1e6.js";import"./vue3-video-play.b911321b.js";import"./vuedraggable.0cb40d3a.js";import"./vue.5de34049.js";import"./sortablejs.ef73fc5c.js";export{Z as default}; diff --git a/public/admin/assets/add-nav.debd1e13.js b/public/admin/assets/add-nav.debd1e13.js new file mode 100644 index 000000000..542994193 --- /dev/null +++ b/public/admin/assets/add-nav.debd1e13.js @@ -0,0 +1 @@ +import"./add-nav.vue_vue_type_script_setup_true_lang.35798c7b.js";import{_ as Z}from"./add-nav.vue_vue_type_script_setup_true_lang.35798c7b.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.fe1d30dd.js";import"./index.37f7aea6.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./picker.d415e27a.js";import"./index.5759a1a6.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./picker.3821e495.js";import"./index.af446662.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./index.5f944d34.js";import"./index.vue_vue_type_script_setup_true_lang.dc835bba.js";import"./usePaging.2ad8e1e6.js";import"./vue3-video-play.b911321b.js";import"./vuedraggable.0cb40d3a.js";import"./vue.5de34049.js";import"./sortablejs.ef73fc5c.js";export{Z as default}; diff --git a/public/admin/assets/add-nav.e7dd3477.js b/public/admin/assets/add-nav.e7dd3477.js new file mode 100644 index 000000000..061c5a6c8 --- /dev/null +++ b/public/admin/assets/add-nav.e7dd3477.js @@ -0,0 +1 @@ +import"./add-nav.vue_vue_type_script_setup_true_lang.a0ca03a3.js";import{_ as Z}from"./add-nav.vue_vue_type_script_setup_true_lang.a0ca03a3.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.f2c7f81b.js";import"./index.ed71ac09.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./picker.47d21da2.js";import"./index.b940d6e3.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./picker.597494a6.js";import"./index.c38e1dd6.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./index.9c616a0c.js";import"./index.vue_vue_type_script_setup_true_lang.dc835bba.js";import"./usePaging.2ad8e1e6.js";import"./vue3-video-play.b911321b.js";import"./vuedraggable.0cb40d3a.js";import"./vue.5de34049.js";import"./sortablejs.ef73fc5c.js";export{Z as default}; diff --git a/public/admin/assets/add-nav.vue_vue_type_script_setup_true_lang.3317a1cd.js b/public/admin/assets/add-nav.vue_vue_type_script_setup_true_lang.3317a1cd.js new file mode 100644 index 000000000..6e06d6106 --- /dev/null +++ b/public/admin/assets/add-nav.vue_vue_type_script_setup_true_lang.3317a1cd.js @@ -0,0 +1 @@ +import{B,w as D}from"./element-plus.4328d892.js";import{_ as F}from"./index.a9a11abe.js";import{_ as A}from"./picker.c7d50072.js";import{_ as y}from"./picker.45aea54f.js";import{f as p,b as E}from"./index.aa9bb752.js";import{D as U}from"./vuedraggable.0cb40d3a.js";import{d as C,e as w,o as c,c as N,a as e,U as t,L as m,K as $,u as r,k as z,R as L}from"./@vue.51d7f2d8.js";const R={class:"bg-fill-light flex items-center w-full p-4 mb-4 cursor-move"},I={class:"upload-btn w-[60px] h-[60px]"},K={class:"ml-3 flex-1"},P={class:"flex"},T=e("span",{class:"text-tx-regular flex-none mr-3"},"\u540D\u79F0",-1),j={class:"flex mt-[18px]"},q=e("span",{class:"text-tx-regular flex-none mr-3"},"\u94FE\u63A5",-1),W=C({__name:"add-nav",props:{modelValue:{type:Array,default:()=>[]},max:{type:Number,default:10},min:{type:Number,default:1}},emits:["update:modelValue"],setup(_,{emit:i}){const o=_,s=w({get(){return o.modelValue},set(a){i("update:modelValue",a)}}),f=()=>{var a;((a=o.modelValue)==null?void 0:a.length){var u;if(((u=o.modelValue)==null?void 0:u.length)<=o.min)return p.msgError(`\u6700\u5C11\u4FDD\u7559${o.min}\u4E2A`);s.value.splice(a,1)};return(a,u)=>{const x=E,g=y,h=B,v=A,k=F,b=D;return c(),N("div",null,[e("div",null,[t(r(U),{class:"draggable",modelValue:r(s),"onUpdate:modelValue":u[0]||(u[0]=l=>z(s)?s.value=l:null),animation:"300"},{item:m(({element:l,index:d})=>[(c(),$(k,{class:"max-w-[400px]",key:d,onClose:n=>V(d)},{default:m(()=>[e("div",R,[t(g,{modelValue:l.image,"onUpdate:modelValue":n=>l.image=n,"upload-class":"bg-body",size:"60px","exclude-domain":""},{upload:m(()=>[e("div",I,[t(x,{name:"el-icon-Plus",size:20})])]),_:2},1032,["modelValue","onUpdate:modelValue"]),e("div",K,[e("div",P,[T,t(h,{modelValue:l.name,"onUpdate:modelValue":n=>l.name=n,placeholder:"\u8BF7\u8F93\u5165\u540D\u79F0"},null,8,["modelValue","onUpdate:modelValue"])]),e("div",j,[q,t(v,{modelValue:l.link,"onUpdate:modelValue":n=>l.link=n},null,8,["modelValue","onUpdate:modelValue"])])])])]),_:2},1032,["onClose"]))]),_:1},8,["modelValue"])]),e("div",null,[t(b,{type:"primary",onClick:f},{default:m(()=>[L("\u6DFB\u52A0")]),_:1})])])}}});export{W as _}; diff --git a/public/admin/assets/add-nav.vue_vue_type_script_setup_true_lang.35798c7b.js b/public/admin/assets/add-nav.vue_vue_type_script_setup_true_lang.35798c7b.js new file mode 100644 index 000000000..a835a6b30 --- /dev/null +++ b/public/admin/assets/add-nav.vue_vue_type_script_setup_true_lang.35798c7b.js @@ -0,0 +1 @@ +import{B,w as D}from"./element-plus.4328d892.js";import{_ as F}from"./index.fe1d30dd.js";import{_ as A}from"./picker.d415e27a.js";import{_ as y}from"./picker.3821e495.js";import{f as p,b as E}from"./index.37f7aea6.js";import{D as U}from"./vuedraggable.0cb40d3a.js";import{d as C,e as w,o as c,c as N,a as e,U as t,L as m,K as $,u as r,k as z,R as L}from"./@vue.51d7f2d8.js";const R={class:"bg-fill-light flex items-center w-full p-4 mb-4 cursor-move"},I={class:"upload-btn w-[60px] h-[60px]"},K={class:"ml-3 flex-1"},P={class:"flex"},T=e("span",{class:"text-tx-regular flex-none mr-3"},"\u540D\u79F0",-1),j={class:"flex mt-[18px]"},q=e("span",{class:"text-tx-regular flex-none mr-3"},"\u94FE\u63A5",-1),W=C({__name:"add-nav",props:{modelValue:{type:Array,default:()=>[]},max:{type:Number,default:10},min:{type:Number,default:1}},emits:["update:modelValue"],setup(_,{emit:i}){const o=_,s=w({get(){return o.modelValue},set(a){i("update:modelValue",a)}}),f=()=>{var a;((a=o.modelValue)==null?void 0:a.length){var u;if(((u=o.modelValue)==null?void 0:u.length)<=o.min)return p.msgError(`\u6700\u5C11\u4FDD\u7559${o.min}\u4E2A`);s.value.splice(a,1)};return(a,u)=>{const x=E,g=y,h=B,v=A,k=F,b=D;return c(),N("div",null,[e("div",null,[t(r(U),{class:"draggable",modelValue:r(s),"onUpdate:modelValue":u[0]||(u[0]=l=>z(s)?s.value=l:null),animation:"300"},{item:m(({element:l,index:d})=>[(c(),$(k,{class:"max-w-[400px]",key:d,onClose:n=>V(d)},{default:m(()=>[e("div",R,[t(g,{modelValue:l.image,"onUpdate:modelValue":n=>l.image=n,"upload-class":"bg-body",size:"60px","exclude-domain":""},{upload:m(()=>[e("div",I,[t(x,{name:"el-icon-Plus",size:20})])]),_:2},1032,["modelValue","onUpdate:modelValue"]),e("div",K,[e("div",P,[T,t(h,{modelValue:l.name,"onUpdate:modelValue":n=>l.name=n,placeholder:"\u8BF7\u8F93\u5165\u540D\u79F0"},null,8,["modelValue","onUpdate:modelValue"])]),e("div",j,[q,t(v,{modelValue:l.link,"onUpdate:modelValue":n=>l.link=n},null,8,["modelValue","onUpdate:modelValue"])])])])]),_:2},1032,["onClose"]))]),_:1},8,["modelValue"])]),e("div",null,[t(b,{type:"primary",onClick:f},{default:m(()=>[L("\u6DFB\u52A0")]),_:1})])])}}});export{W as _}; diff --git a/public/admin/assets/add-nav.vue_vue_type_script_setup_true_lang.a0ca03a3.js b/public/admin/assets/add-nav.vue_vue_type_script_setup_true_lang.a0ca03a3.js new file mode 100644 index 000000000..aeb714b8a --- /dev/null +++ b/public/admin/assets/add-nav.vue_vue_type_script_setup_true_lang.a0ca03a3.js @@ -0,0 +1 @@ +import{B,w as D}from"./element-plus.4328d892.js";import{_ as F}from"./index.f2c7f81b.js";import{_ as A}from"./picker.47d21da2.js";import{_ as y}from"./picker.597494a6.js";import{f as p,b as E}from"./index.ed71ac09.js";import{D as U}from"./vuedraggable.0cb40d3a.js";import{d as C,e as w,o as c,c as N,a as e,U as t,L as m,K as $,u as r,k as z,R as L}from"./@vue.51d7f2d8.js";const R={class:"bg-fill-light flex items-center w-full p-4 mb-4 cursor-move"},I={class:"upload-btn w-[60px] h-[60px]"},K={class:"ml-3 flex-1"},P={class:"flex"},T=e("span",{class:"text-tx-regular flex-none mr-3"},"\u540D\u79F0",-1),j={class:"flex mt-[18px]"},q=e("span",{class:"text-tx-regular flex-none mr-3"},"\u94FE\u63A5",-1),W=C({__name:"add-nav",props:{modelValue:{type:Array,default:()=>[]},max:{type:Number,default:10},min:{type:Number,default:1}},emits:["update:modelValue"],setup(_,{emit:i}){const o=_,s=w({get(){return o.modelValue},set(a){i("update:modelValue",a)}}),f=()=>{var a;((a=o.modelValue)==null?void 0:a.length){var u;if(((u=o.modelValue)==null?void 0:u.length)<=o.min)return p.msgError(`\u6700\u5C11\u4FDD\u7559${o.min}\u4E2A`);s.value.splice(a,1)};return(a,u)=>{const x=E,g=y,h=B,v=A,k=F,b=D;return c(),N("div",null,[e("div",null,[t(r(U),{class:"draggable",modelValue:r(s),"onUpdate:modelValue":u[0]||(u[0]=l=>z(s)?s.value=l:null),animation:"300"},{item:m(({element:l,index:d})=>[(c(),$(k,{class:"max-w-[400px]",key:d,onClose:n=>V(d)},{default:m(()=>[e("div",R,[t(g,{modelValue:l.image,"onUpdate:modelValue":n=>l.image=n,"upload-class":"bg-body",size:"60px","exclude-domain":""},{upload:m(()=>[e("div",I,[t(x,{name:"el-icon-Plus",size:20})])]),_:2},1032,["modelValue","onUpdate:modelValue"]),e("div",K,[e("div",P,[T,t(h,{modelValue:l.name,"onUpdate:modelValue":n=>l.name=n,placeholder:"\u8BF7\u8F93\u5165\u540D\u79F0"},null,8,["modelValue","onUpdate:modelValue"])]),e("div",j,[q,t(v,{modelValue:l.link,"onUpdate:modelValue":n=>l.link=n},null,8,["modelValue","onUpdate:modelValue"])])])])]),_:2},1032,["onClose"]))]),_:1},8,["modelValue"])]),e("div",null,[t(b,{type:"primary",onClick:f},{default:m(()=>[L("\u6DFB\u52A0")]),_:1})])])}}});export{W as _}; diff --git a/public/admin/assets/admin.1cd61358.js b/public/admin/assets/admin.1cd61358.js new file mode 100644 index 000000000..1218086a3 --- /dev/null +++ b/public/admin/assets/admin.1cd61358.js @@ -0,0 +1 @@ +import{r as n}from"./index.aa9bb752.js";function e(t){return n.get({url:"/auth.admin/lists",params:t},{ignoreCancelToken:!0})}function r(t){return n.post({url:"/auth.admin/add",params:t})}function u(t){return n.post({url:"/auth.admin/edit",params:t})}function i(t){return n.post({url:"/auth.admin/delete",params:t})}function s(t){return n.get({url:"/auth.admin/detail",params:t})}function d(t){return n.get({url:"/auth.admin/Draftingcontracts",params:t})}function o(t){return n.get({url:"/auth.admin/postsms",params:t})}export{e as a,u as b,r as c,s as d,i as e,d as g,o as s}; diff --git a/public/admin/assets/admin.f0e2c7b9.js b/public/admin/assets/admin.f0e2c7b9.js new file mode 100644 index 000000000..4826007f5 --- /dev/null +++ b/public/admin/assets/admin.f0e2c7b9.js @@ -0,0 +1 @@ +import{r as n}from"./index.37f7aea6.js";function e(t){return n.get({url:"/auth.admin/lists",params:t},{ignoreCancelToken:!0})}function r(t){return n.post({url:"/auth.admin/add",params:t})}function u(t){return n.post({url:"/auth.admin/edit",params:t})}function i(t){return n.post({url:"/auth.admin/delete",params:t})}function s(t){return n.get({url:"/auth.admin/detail",params:t})}function d(t){return n.get({url:"/auth.admin/Draftingcontracts",params:t})}function o(t){return n.get({url:"/auth.admin/postsms",params:t})}export{e as a,u as b,r as c,s as d,i as e,d as g,o as s}; diff --git a/public/admin/assets/admin.f28da7a1.js b/public/admin/assets/admin.f28da7a1.js new file mode 100644 index 000000000..83da716f3 --- /dev/null +++ b/public/admin/assets/admin.f28da7a1.js @@ -0,0 +1 @@ +import{r as n}from"./index.ed71ac09.js";function e(t){return n.get({url:"/auth.admin/lists",params:t},{ignoreCancelToken:!0})}function r(t){return n.post({url:"/auth.admin/add",params:t})}function u(t){return n.post({url:"/auth.admin/edit",params:t})}function i(t){return n.post({url:"/auth.admin/delete",params:t})}function s(t){return n.get({url:"/auth.admin/detail",params:t})}function d(t){return n.get({url:"/auth.admin/Draftingcontracts",params:t})}function o(t){return n.get({url:"/auth.admin/postsms",params:t})}export{e as a,u as b,r as c,s as d,i as e,d as g,o as s}; diff --git a/public/admin/assets/article.188d8b86.js b/public/admin/assets/article.188d8b86.js new file mode 100644 index 000000000..6202740d4 --- /dev/null +++ b/public/admin/assets/article.188d8b86.js @@ -0,0 +1 @@ +import{r as e}from"./index.aa9bb752.js";function a(t){return e.get({url:"/article.articleCate/lists",params:t})}function l(t){return e.get({url:"/article.articleCate/all",params:t})}function i(t){return e.post({url:"/article.articleCate/add",params:t})}function c(t){return e.post({url:"/article.articleCate/edit",params:t})}function u(t){return e.post({url:"/article.articleCate/delete",params:t})}function n(t){return e.get({url:"/article.articleCate/detail",params:t})}function s(t){return e.post({url:"/article.articleCate/updateStatus",params:t})}function o(t){return e.get({url:"/article.article/lists",params:t})}function d(t){return e.post({url:"/article.article/add",params:t})}function f(t){return e.post({url:"/article.article/edit",params:t})}function C(t){return e.post({url:"/article.article/delete",params:t})}function p(t){return e.get({url:"/article.article/detail",params:t})}function g(t){return e.post({url:"/article.article/updateStatus",params:t})}export{c as a,i as b,n as c,u as d,s as e,a as f,p as g,l as h,f as i,d as j,g as k,C as l,o as m}; diff --git a/public/admin/assets/article.a2ac2e4b.js b/public/admin/assets/article.a2ac2e4b.js new file mode 100644 index 000000000..cfa8a5e4c --- /dev/null +++ b/public/admin/assets/article.a2ac2e4b.js @@ -0,0 +1 @@ +import{r as e}from"./index.ed71ac09.js";function a(t){return e.get({url:"/article.articleCate/lists",params:t})}function l(t){return e.get({url:"/article.articleCate/all",params:t})}function i(t){return e.post({url:"/article.articleCate/add",params:t})}function c(t){return e.post({url:"/article.articleCate/edit",params:t})}function u(t){return e.post({url:"/article.articleCate/delete",params:t})}function n(t){return e.get({url:"/article.articleCate/detail",params:t})}function s(t){return e.post({url:"/article.articleCate/updateStatus",params:t})}function o(t){return e.get({url:"/article.article/lists",params:t})}function d(t){return e.post({url:"/article.article/add",params:t})}function f(t){return e.post({url:"/article.article/edit",params:t})}function C(t){return e.post({url:"/article.article/delete",params:t})}function p(t){return e.get({url:"/article.article/detail",params:t})}function g(t){return e.post({url:"/article.article/updateStatus",params:t})}export{c as a,i as b,n as c,u as d,s as e,a as f,p as g,l as h,f as i,d as j,g as k,C as l,o as m}; diff --git a/public/admin/assets/article.cb24b6c9.js b/public/admin/assets/article.cb24b6c9.js new file mode 100644 index 000000000..e2457b562 --- /dev/null +++ b/public/admin/assets/article.cb24b6c9.js @@ -0,0 +1 @@ +import{r as e}from"./index.37f7aea6.js";function a(t){return e.get({url:"/article.articleCate/lists",params:t})}function l(t){return e.get({url:"/article.articleCate/all",params:t})}function i(t){return e.post({url:"/article.articleCate/add",params:t})}function c(t){return e.post({url:"/article.articleCate/edit",params:t})}function u(t){return e.post({url:"/article.articleCate/delete",params:t})}function n(t){return e.get({url:"/article.articleCate/detail",params:t})}function s(t){return e.post({url:"/article.articleCate/updateStatus",params:t})}function o(t){return e.get({url:"/article.article/lists",params:t})}function d(t){return e.post({url:"/article.article/add",params:t})}function f(t){return e.post({url:"/article.article/edit",params:t})}function C(t){return e.post({url:"/article.article/delete",params:t})}function p(t){return e.get({url:"/article.article/detail",params:t})}function g(t){return e.post({url:"/article.article/updateStatus",params:t})}export{c as a,i as b,n as c,u as d,s as e,a as f,p as g,l as h,f as i,d as j,g as k,C as l,o as m}; diff --git a/public/admin/assets/attr-setting.3494a104.js b/public/admin/assets/attr-setting.3494a104.js new file mode 100644 index 000000000..4ed10532f --- /dev/null +++ b/public/admin/assets/attr-setting.3494a104.js @@ -0,0 +1 @@ +import"./attr-setting.vue_vue_type_script_setup_true_lang.da407ae8.js";import{_ as gm}from"./attr-setting.vue_vue_type_script_setup_true_lang.da407ae8.js";import"./index.85a36c0c.js";import"./attr.vue_vue_type_script_setup_true_lang.5697c78f.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.a9a11abe.js";import"./index.aa9bb752.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./picker.c7d50072.js";import"./index.fa872673.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./picker.45aea54f.js";import"./index.c47e74f8.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./index.a450f1bb.js";import"./index.vue_vue_type_script_setup_true_lang.dc835bba.js";import"./usePaging.2ad8e1e6.js";import"./vue3-video-play.b911321b.js";import"./vuedraggable.0cb40d3a.js";import"./vue.5de34049.js";import"./sortablejs.ef73fc5c.js";import"./content.vue_vue_type_script_setup_true_lang.d21cb19e.js";import"./decoration-img.3e95b47f.js";import"./attr.vue_vue_type_script_setup_true_lang.fdded599.js";import"./content.206aab68.js";import"./attr.vue_vue_type_script_setup_true_lang.f3b5265b.js";import"./add-nav.vue_vue_type_script_setup_true_lang.3317a1cd.js";import"./content.b2cebb4d.js";import"./attr.vue_vue_type_script_setup_true_lang.aeb5c0d0.js";import"./content.vue_vue_type_script_setup_true_lang.08763d7f.js";import"./attr.vue_vue_type_script_setup_true_lang.d01577b5.js";import"./content.95faa73b.js";import"./decoration.4be01ffa.js";import"./attr.vue_vue_type_script_setup_true_lang.0fc534ba.js";import"./content.84ae04ad.js";import"./attr.vue_vue_type_script_setup_true_lang.3d3efd85.js";import"./content.vue_vue_type_script_setup_true_lang.28911d3e.js";import"./attr.vue_vue_type_script_setup_true_lang.00e826d0.js";import"./content.92456155.js";export{gm as default}; diff --git a/public/admin/assets/attr-setting.d7888079.js b/public/admin/assets/attr-setting.d7888079.js new file mode 100644 index 000000000..e761d320f --- /dev/null +++ b/public/admin/assets/attr-setting.d7888079.js @@ -0,0 +1 @@ +import"./attr-setting.vue_vue_type_script_setup_true_lang.165968f9.js";import{_ as gm}from"./attr-setting.vue_vue_type_script_setup_true_lang.165968f9.js";import"./index.017d9ee1.js";import"./attr.vue_vue_type_script_setup_true_lang.8394104e.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.f2c7f81b.js";import"./index.ed71ac09.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./picker.47d21da2.js";import"./index.b940d6e3.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./picker.597494a6.js";import"./index.c38e1dd6.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./index.9c616a0c.js";import"./index.vue_vue_type_script_setup_true_lang.dc835bba.js";import"./usePaging.2ad8e1e6.js";import"./vue3-video-play.b911321b.js";import"./vuedraggable.0cb40d3a.js";import"./vue.5de34049.js";import"./sortablejs.ef73fc5c.js";import"./content.vue_vue_type_script_setup_true_lang.84d28a88.js";import"./decoration-img.82b482b3.js";import"./attr.vue_vue_type_script_setup_true_lang.be7eaab3.js";import"./content.b8657a15.js";import"./attr.vue_vue_type_script_setup_true_lang.5e1d2ee6.js";import"./add-nav.vue_vue_type_script_setup_true_lang.a0ca03a3.js";import"./content.de68a2a6.js";import"./attr.vue_vue_type_script_setup_true_lang.19311265.js";import"./content.vue_vue_type_script_setup_true_lang.c8560c8f.js";import"./attr.vue_vue_type_script_setup_true_lang.d01577b5.js";import"./content.54b16038.js";import"./decoration.6a408574.js";import"./attr.vue_vue_type_script_setup_true_lang.0fc534ba.js";import"./content.fb432a0e.js";import"./attr.vue_vue_type_script_setup_true_lang.103310f1.js";import"./content.vue_vue_type_script_setup_true_lang.e9fe6f66.js";import"./attr.vue_vue_type_script_setup_true_lang.00e826d0.js";import"./content.0dcb8921.js";export{gm as default}; diff --git a/public/admin/assets/attr-setting.ff5f4f7b.js b/public/admin/assets/attr-setting.ff5f4f7b.js new file mode 100644 index 000000000..9a2db8c91 --- /dev/null +++ b/public/admin/assets/attr-setting.ff5f4f7b.js @@ -0,0 +1 @@ +import"./attr-setting.vue_vue_type_script_setup_true_lang.4680a37f.js";import{_ as gm}from"./attr-setting.vue_vue_type_script_setup_true_lang.4680a37f.js";import"./index.500fd836.js";import"./attr.vue_vue_type_script_setup_true_lang.f9c983cd.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.fe1d30dd.js";import"./index.37f7aea6.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./picker.d415e27a.js";import"./index.5759a1a6.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./picker.3821e495.js";import"./index.af446662.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./index.5f944d34.js";import"./index.vue_vue_type_script_setup_true_lang.dc835bba.js";import"./usePaging.2ad8e1e6.js";import"./vue3-video-play.b911321b.js";import"./vuedraggable.0cb40d3a.js";import"./vue.5de34049.js";import"./sortablejs.ef73fc5c.js";import"./content.vue_vue_type_script_setup_true_lang.b3e4f379.js";import"./decoration-img.d7e5dbec.js";import"./attr.vue_vue_type_script_setup_true_lang.a5f46be8.js";import"./content.416ba4d2.js";import"./attr.vue_vue_type_script_setup_true_lang.4cdc919e.js";import"./add-nav.vue_vue_type_script_setup_true_lang.35798c7b.js";import"./content.b3fbaeeb.js";import"./attr.vue_vue_type_script_setup_true_lang.d9838080.js";import"./content.vue_vue_type_script_setup_true_lang.888a9caf.js";import"./attr.vue_vue_type_script_setup_true_lang.d01577b5.js";import"./content.87312235.js";import"./decoration.6f039a71.js";import"./attr.vue_vue_type_script_setup_true_lang.0fc534ba.js";import"./content.39f10dd3.js";import"./attr.vue_vue_type_script_setup_true_lang.871cb086.js";import"./content.vue_vue_type_script_setup_true_lang.e6931808.js";import"./attr.vue_vue_type_script_setup_true_lang.00e826d0.js";import"./content.d63a41a9.js";export{gm as default}; diff --git a/public/admin/assets/attr-setting.vue_vue_type_script_setup_true_lang.165968f9.js b/public/admin/assets/attr-setting.vue_vue_type_script_setup_true_lang.165968f9.js new file mode 100644 index 000000000..6dbed5ab6 --- /dev/null +++ b/public/admin/assets/attr-setting.vue_vue_type_script_setup_true_lang.165968f9.js @@ -0,0 +1 @@ +import{w as c}from"./index.017d9ee1.js";import{d as l,o as t,c as d,a as m,S as p,K as r,P as f,u as g,aK as y}from"./@vue.51d7f2d8.js";const b={class:"pages-setting"},u={class:"title flex items-center before:w-[3px] before:h-[14px] before:block before:bg-primary before:mr-2"},v=l({__name:"attr-setting",props:{widget:{type:Object,default:()=>({})},type:{type:String,default:"mobile"}},setup(e){return(w,x)=>{var s,a,n,o,i;return t(),d("div",b,[m("div",u,p((s=e.widget)==null?void 0:s.title),1),(t(),r(y,null,[(t(),r(f((n=g(c)[(a=e.widget)==null?void 0:a.name])==null?void 0:n.attr),{class:"pt-5 pr-4",content:(o=e.widget)==null?void 0:o.content,styles:(i=e.widget)==null?void 0:i.styles,type:e.type},null,8,["content","styles","type"]))],1024))])}}});export{v as _}; diff --git a/public/admin/assets/attr-setting.vue_vue_type_script_setup_true_lang.4680a37f.js b/public/admin/assets/attr-setting.vue_vue_type_script_setup_true_lang.4680a37f.js new file mode 100644 index 000000000..3176cee90 --- /dev/null +++ b/public/admin/assets/attr-setting.vue_vue_type_script_setup_true_lang.4680a37f.js @@ -0,0 +1 @@ +import{w as c}from"./index.500fd836.js";import{d as l,o as t,c as d,a as m,S as p,K as r,P as f,u as g,aK as y}from"./@vue.51d7f2d8.js";const b={class:"pages-setting"},u={class:"title flex items-center before:w-[3px] before:h-[14px] before:block before:bg-primary before:mr-2"},v=l({__name:"attr-setting",props:{widget:{type:Object,default:()=>({})},type:{type:String,default:"mobile"}},setup(e){return(w,x)=>{var s,a,n,o,i;return t(),d("div",b,[m("div",u,p((s=e.widget)==null?void 0:s.title),1),(t(),r(y,null,[(t(),r(f((n=g(c)[(a=e.widget)==null?void 0:a.name])==null?void 0:n.attr),{class:"pt-5 pr-4",content:(o=e.widget)==null?void 0:o.content,styles:(i=e.widget)==null?void 0:i.styles,type:e.type},null,8,["content","styles","type"]))],1024))])}}});export{v as _}; diff --git a/public/admin/assets/attr-setting.vue_vue_type_script_setup_true_lang.da407ae8.js b/public/admin/assets/attr-setting.vue_vue_type_script_setup_true_lang.da407ae8.js new file mode 100644 index 000000000..ffa4a50cc --- /dev/null +++ b/public/admin/assets/attr-setting.vue_vue_type_script_setup_true_lang.da407ae8.js @@ -0,0 +1 @@ +import{w as c}from"./index.85a36c0c.js";import{d as l,o as t,c as d,a as m,S as p,K as r,P as f,u as g,aK as y}from"./@vue.51d7f2d8.js";const b={class:"pages-setting"},u={class:"title flex items-center before:w-[3px] before:h-[14px] before:block before:bg-primary before:mr-2"},v=l({__name:"attr-setting",props:{widget:{type:Object,default:()=>({})},type:{type:String,default:"mobile"}},setup(e){return(w,x)=>{var s,a,n,o,i;return t(),d("div",b,[m("div",u,p((s=e.widget)==null?void 0:s.title),1),(t(),r(y,null,[(t(),r(f((n=g(c)[(a=e.widget)==null?void 0:a.name])==null?void 0:n.attr),{class:"pt-5 pr-4",content:(o=e.widget)==null?void 0:o.content,styles:(i=e.widget)==null?void 0:i.styles,type:e.type},null,8,["content","styles","type"]))],1024))])}}});export{v as _}; diff --git a/public/admin/assets/attr.1736f127.js b/public/admin/assets/attr.1736f127.js new file mode 100644 index 000000000..204f65942 --- /dev/null +++ b/public/admin/assets/attr.1736f127.js @@ -0,0 +1 @@ +import"./attr.vue_vue_type_script_setup_true_lang.871cb086.js";import{_ as Z}from"./attr.vue_vue_type_script_setup_true_lang.871cb086.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.fe1d30dd.js";import"./index.37f7aea6.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./picker.d415e27a.js";import"./index.5759a1a6.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./picker.3821e495.js";import"./index.af446662.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./index.5f944d34.js";import"./index.vue_vue_type_script_setup_true_lang.dc835bba.js";import"./usePaging.2ad8e1e6.js";import"./vue3-video-play.b911321b.js";import"./vuedraggable.0cb40d3a.js";import"./vue.5de34049.js";import"./sortablejs.ef73fc5c.js";export{Z as default}; diff --git a/public/admin/assets/attr.327a5530.js b/public/admin/assets/attr.327a5530.js new file mode 100644 index 000000000..02c400cae --- /dev/null +++ b/public/admin/assets/attr.327a5530.js @@ -0,0 +1 @@ +import"./attr.vue_vue_type_script_setup_true_lang.a5f46be8.js";import{_ as Y}from"./attr.vue_vue_type_script_setup_true_lang.a5f46be8.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./picker.3821e495.js";import"./index.5759a1a6.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.37f7aea6.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.af446662.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./index.fe1d30dd.js";import"./index.5f944d34.js";import"./index.vue_vue_type_script_setup_true_lang.dc835bba.js";import"./usePaging.2ad8e1e6.js";import"./vue3-video-play.b911321b.js";import"./vuedraggable.0cb40d3a.js";import"./vue.5de34049.js";import"./sortablejs.ef73fc5c.js";export{Y as default}; diff --git a/public/admin/assets/attr.765bdfe4.js b/public/admin/assets/attr.765bdfe4.js new file mode 100644 index 000000000..25e4706b7 --- /dev/null +++ b/public/admin/assets/attr.765bdfe4.js @@ -0,0 +1 @@ +import"./attr.vue_vue_type_script_setup_true_lang.8394104e.js";import{_ as Z}from"./attr.vue_vue_type_script_setup_true_lang.8394104e.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.f2c7f81b.js";import"./index.ed71ac09.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./picker.47d21da2.js";import"./index.b940d6e3.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./picker.597494a6.js";import"./index.c38e1dd6.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./index.9c616a0c.js";import"./index.vue_vue_type_script_setup_true_lang.dc835bba.js";import"./usePaging.2ad8e1e6.js";import"./vue3-video-play.b911321b.js";import"./vuedraggable.0cb40d3a.js";import"./vue.5de34049.js";import"./sortablejs.ef73fc5c.js";export{Z as default}; diff --git a/public/admin/assets/attr.7ce81e4d.js b/public/admin/assets/attr.7ce81e4d.js new file mode 100644 index 000000000..318d93ab9 --- /dev/null +++ b/public/admin/assets/attr.7ce81e4d.js @@ -0,0 +1 @@ +import"./attr.vue_vue_type_script_setup_true_lang.103310f1.js";import{_ as Z}from"./attr.vue_vue_type_script_setup_true_lang.103310f1.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.f2c7f81b.js";import"./index.ed71ac09.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./picker.47d21da2.js";import"./index.b940d6e3.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./picker.597494a6.js";import"./index.c38e1dd6.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./index.9c616a0c.js";import"./index.vue_vue_type_script_setup_true_lang.dc835bba.js";import"./usePaging.2ad8e1e6.js";import"./vue3-video-play.b911321b.js";import"./vuedraggable.0cb40d3a.js";import"./vue.5de34049.js";import"./sortablejs.ef73fc5c.js";export{Z as default}; diff --git a/public/admin/assets/attr.839bcc4e.js b/public/admin/assets/attr.839bcc4e.js new file mode 100644 index 000000000..71ca025a2 --- /dev/null +++ b/public/admin/assets/attr.839bcc4e.js @@ -0,0 +1 @@ +import"./attr.vue_vue_type_script_setup_true_lang.be7eaab3.js";import{_ as Y}from"./attr.vue_vue_type_script_setup_true_lang.be7eaab3.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./picker.597494a6.js";import"./index.b940d6e3.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.ed71ac09.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.c38e1dd6.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./index.f2c7f81b.js";import"./index.9c616a0c.js";import"./index.vue_vue_type_script_setup_true_lang.dc835bba.js";import"./usePaging.2ad8e1e6.js";import"./vue3-video-play.b911321b.js";import"./vuedraggable.0cb40d3a.js";import"./vue.5de34049.js";import"./sortablejs.ef73fc5c.js";export{Y as default}; diff --git a/public/admin/assets/attr.8755c3be.js b/public/admin/assets/attr.8755c3be.js new file mode 100644 index 000000000..ffa674114 --- /dev/null +++ b/public/admin/assets/attr.8755c3be.js @@ -0,0 +1 @@ +import"./attr.vue_vue_type_script_setup_true_lang.fdded599.js";import{_ as Y}from"./attr.vue_vue_type_script_setup_true_lang.fdded599.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./picker.45aea54f.js";import"./index.fa872673.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.aa9bb752.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.c47e74f8.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./index.a9a11abe.js";import"./index.a450f1bb.js";import"./index.vue_vue_type_script_setup_true_lang.dc835bba.js";import"./usePaging.2ad8e1e6.js";import"./vue3-video-play.b911321b.js";import"./vuedraggable.0cb40d3a.js";import"./vue.5de34049.js";import"./sortablejs.ef73fc5c.js";export{Y as default}; diff --git a/public/admin/assets/attr.91562f5c.js b/public/admin/assets/attr.91562f5c.js new file mode 100644 index 000000000..853316cfc --- /dev/null +++ b/public/admin/assets/attr.91562f5c.js @@ -0,0 +1 @@ +import"./attr.vue_vue_type_script_setup_true_lang.5697c78f.js";import{_ as Z}from"./attr.vue_vue_type_script_setup_true_lang.5697c78f.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.a9a11abe.js";import"./index.aa9bb752.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./picker.c7d50072.js";import"./index.fa872673.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./picker.45aea54f.js";import"./index.c47e74f8.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./index.a450f1bb.js";import"./index.vue_vue_type_script_setup_true_lang.dc835bba.js";import"./usePaging.2ad8e1e6.js";import"./vue3-video-play.b911321b.js";import"./vuedraggable.0cb40d3a.js";import"./vue.5de34049.js";import"./sortablejs.ef73fc5c.js";export{Z as default}; diff --git a/public/admin/assets/attr.9c64ddbd.js b/public/admin/assets/attr.9c64ddbd.js new file mode 100644 index 000000000..a543b0258 --- /dev/null +++ b/public/admin/assets/attr.9c64ddbd.js @@ -0,0 +1 @@ +import"./attr.vue_vue_type_script_setup_true_lang.f9c983cd.js";import{_ as Z}from"./attr.vue_vue_type_script_setup_true_lang.f9c983cd.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.fe1d30dd.js";import"./index.37f7aea6.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./picker.d415e27a.js";import"./index.5759a1a6.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./picker.3821e495.js";import"./index.af446662.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./index.5f944d34.js";import"./index.vue_vue_type_script_setup_true_lang.dc835bba.js";import"./usePaging.2ad8e1e6.js";import"./vue3-video-play.b911321b.js";import"./vuedraggable.0cb40d3a.js";import"./vue.5de34049.js";import"./sortablejs.ef73fc5c.js";export{Z as default}; diff --git a/public/admin/assets/attr.a711bfd6.js b/public/admin/assets/attr.a711bfd6.js new file mode 100644 index 000000000..527b0f3ec --- /dev/null +++ b/public/admin/assets/attr.a711bfd6.js @@ -0,0 +1 @@ +import"./attr.vue_vue_type_script_setup_true_lang.5e1d2ee6.js";import{_ as $}from"./attr.vue_vue_type_script_setup_true_lang.5e1d2ee6.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./add-nav.vue_vue_type_script_setup_true_lang.a0ca03a3.js";import"./index.f2c7f81b.js";import"./index.ed71ac09.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./picker.47d21da2.js";import"./index.b940d6e3.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./picker.597494a6.js";import"./index.c38e1dd6.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./index.9c616a0c.js";import"./index.vue_vue_type_script_setup_true_lang.dc835bba.js";import"./usePaging.2ad8e1e6.js";import"./vue3-video-play.b911321b.js";import"./vuedraggable.0cb40d3a.js";import"./vue.5de34049.js";import"./sortablejs.ef73fc5c.js";export{$ as default}; diff --git a/public/admin/assets/attr.aed95221.js b/public/admin/assets/attr.aed95221.js new file mode 100644 index 000000000..b9cea0d68 --- /dev/null +++ b/public/admin/assets/attr.aed95221.js @@ -0,0 +1 @@ +import"./attr.vue_vue_type_script_setup_true_lang.f3b5265b.js";import{_ as $}from"./attr.vue_vue_type_script_setup_true_lang.f3b5265b.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./add-nav.vue_vue_type_script_setup_true_lang.3317a1cd.js";import"./index.a9a11abe.js";import"./index.aa9bb752.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./picker.c7d50072.js";import"./index.fa872673.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./picker.45aea54f.js";import"./index.c47e74f8.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./index.a450f1bb.js";import"./index.vue_vue_type_script_setup_true_lang.dc835bba.js";import"./usePaging.2ad8e1e6.js";import"./vue3-video-play.b911321b.js";import"./vuedraggable.0cb40d3a.js";import"./vue.5de34049.js";import"./sortablejs.ef73fc5c.js";export{$ as default}; diff --git a/public/admin/assets/attr.b46231e3.js b/public/admin/assets/attr.b46231e3.js new file mode 100644 index 000000000..49662450e --- /dev/null +++ b/public/admin/assets/attr.b46231e3.js @@ -0,0 +1 @@ +import"./attr.vue_vue_type_script_setup_true_lang.19311265.js";import{_ as $}from"./attr.vue_vue_type_script_setup_true_lang.19311265.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./add-nav.vue_vue_type_script_setup_true_lang.a0ca03a3.js";import"./index.f2c7f81b.js";import"./index.ed71ac09.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./picker.47d21da2.js";import"./index.b940d6e3.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./picker.597494a6.js";import"./index.c38e1dd6.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./index.9c616a0c.js";import"./index.vue_vue_type_script_setup_true_lang.dc835bba.js";import"./usePaging.2ad8e1e6.js";import"./vue3-video-play.b911321b.js";import"./vuedraggable.0cb40d3a.js";import"./vue.5de34049.js";import"./sortablejs.ef73fc5c.js";export{$ as default}; diff --git a/public/admin/assets/attr.c4156ab8.js b/public/admin/assets/attr.c4156ab8.js new file mode 100644 index 000000000..3a938c902 --- /dev/null +++ b/public/admin/assets/attr.c4156ab8.js @@ -0,0 +1 @@ +import"./attr.vue_vue_type_script_setup_true_lang.4cdc919e.js";import{_ as $}from"./attr.vue_vue_type_script_setup_true_lang.4cdc919e.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./add-nav.vue_vue_type_script_setup_true_lang.35798c7b.js";import"./index.fe1d30dd.js";import"./index.37f7aea6.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./picker.d415e27a.js";import"./index.5759a1a6.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./picker.3821e495.js";import"./index.af446662.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./index.5f944d34.js";import"./index.vue_vue_type_script_setup_true_lang.dc835bba.js";import"./usePaging.2ad8e1e6.js";import"./vue3-video-play.b911321b.js";import"./vuedraggable.0cb40d3a.js";import"./vue.5de34049.js";import"./sortablejs.ef73fc5c.js";export{$ as default}; diff --git a/public/admin/assets/attr.de63a0c2.js b/public/admin/assets/attr.de63a0c2.js new file mode 100644 index 000000000..6cc898d38 --- /dev/null +++ b/public/admin/assets/attr.de63a0c2.js @@ -0,0 +1 @@ +import"./attr.vue_vue_type_script_setup_true_lang.aeb5c0d0.js";import{_ as $}from"./attr.vue_vue_type_script_setup_true_lang.aeb5c0d0.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./add-nav.vue_vue_type_script_setup_true_lang.3317a1cd.js";import"./index.a9a11abe.js";import"./index.aa9bb752.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./picker.c7d50072.js";import"./index.fa872673.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./picker.45aea54f.js";import"./index.c47e74f8.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./index.a450f1bb.js";import"./index.vue_vue_type_script_setup_true_lang.dc835bba.js";import"./usePaging.2ad8e1e6.js";import"./vue3-video-play.b911321b.js";import"./vuedraggable.0cb40d3a.js";import"./vue.5de34049.js";import"./sortablejs.ef73fc5c.js";export{$ as default}; diff --git a/public/admin/assets/attr.eee95e30.js b/public/admin/assets/attr.eee95e30.js new file mode 100644 index 000000000..44469bfff --- /dev/null +++ b/public/admin/assets/attr.eee95e30.js @@ -0,0 +1 @@ +import"./attr.vue_vue_type_script_setup_true_lang.3d3efd85.js";import{_ as Z}from"./attr.vue_vue_type_script_setup_true_lang.3d3efd85.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.a9a11abe.js";import"./index.aa9bb752.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./picker.c7d50072.js";import"./index.fa872673.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./picker.45aea54f.js";import"./index.c47e74f8.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./index.a450f1bb.js";import"./index.vue_vue_type_script_setup_true_lang.dc835bba.js";import"./usePaging.2ad8e1e6.js";import"./vue3-video-play.b911321b.js";import"./vuedraggable.0cb40d3a.js";import"./vue.5de34049.js";import"./sortablejs.ef73fc5c.js";export{Z as default}; diff --git a/public/admin/assets/attr.f7c491ed.js b/public/admin/assets/attr.f7c491ed.js new file mode 100644 index 000000000..f9cce341b --- /dev/null +++ b/public/admin/assets/attr.f7c491ed.js @@ -0,0 +1 @@ +import"./attr.vue_vue_type_script_setup_true_lang.d9838080.js";import{_ as $}from"./attr.vue_vue_type_script_setup_true_lang.d9838080.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./add-nav.vue_vue_type_script_setup_true_lang.35798c7b.js";import"./index.fe1d30dd.js";import"./index.37f7aea6.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./picker.d415e27a.js";import"./index.5759a1a6.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./picker.3821e495.js";import"./index.af446662.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./index.5f944d34.js";import"./index.vue_vue_type_script_setup_true_lang.dc835bba.js";import"./usePaging.2ad8e1e6.js";import"./vue3-video-play.b911321b.js";import"./vuedraggable.0cb40d3a.js";import"./vue.5de34049.js";import"./sortablejs.ef73fc5c.js";export{$ as default}; diff --git a/public/admin/assets/attr.vue_vue_type_script_setup_true_lang.103310f1.js b/public/admin/assets/attr.vue_vue_type_script_setup_true_lang.103310f1.js new file mode 100644 index 000000000..9177a2f7b --- /dev/null +++ b/public/admin/assets/attr.vue_vue_type_script_setup_true_lang.103310f1.js @@ -0,0 +1 @@ +import{G as D,H as U,C as y,B as v,w,D as N}from"./element-plus.4328d892.js";import{_ as R}from"./index.f2c7f81b.js";import{_ as $}from"./picker.47d21da2.js";import{_ as j}from"./picker.597494a6.js";import{f as F}from"./index.ed71ac09.js";import{D as G}from"./vuedraggable.0cb40d3a.js";import{d as I,o as c,c as O,U as e,L as t,R as _,a as m,u as H,K as E,Q as K}from"./@vue.51d7f2d8.js";const L={class:"flex-1"},Q=m("div",{class:"form-tips"},"\u6700\u591A\u6DFB\u52A05\u5F20\uFF0C\u5EFA\u8BAE\u56FE\u7247\u5C3A\u5BF8\uFF1A750px*200px",-1),T={class:"bg-fill-light flex items-center w-full p-4 mt-4 cursor-move"},q={class:"ml-3 flex-1"},r=5,Y=I({__name:"attr",props:{content:{type:Object,default:()=>({})},styles:{type:Object,default:()=>({})}},setup(a){const s=a,V=()=>{var u;((u=s.content.data)==null?void 0:u.length){var o;if(((o=s.content.data)==null?void 0:o.length)<=1)return F.msgError("\u6700\u5C11\u4FDD\u7559\u4E00\u5F20\u56FE\u7247");s.content.data.splice(u,1)};return(u,o)=>{const p=D,b=U,d=y,B=j,k=v,x=$,h=R,A=w,C=N;return c(),O("div",null,[e(C,{"label-width":"70px"},{default:t(()=>{var i;return[e(d,{label:"\u662F\u5426\u542F\u7528"},{default:t(()=>[e(b,{modelValue:a.content.enabled,"onUpdate:modelValue":o[0]||(o[0]=l=>a.content.enabled=l)},{default:t(()=>[e(p,{label:1},{default:t(()=>[_("\u5F00\u542F")]),_:1}),e(p,{label:0},{default:t(()=>[_("\u505C\u7528")]),_:1})]),_:1},8,["modelValue"])]),_:1}),e(d,{label:"\u56FE\u7247\u8BBE\u7F6E"},{default:t(()=>[m("div",L,[Q,e(H(G),{class:"draggable",modelValue:a.content.data,"onUpdate:modelValue":o[1]||(o[1]=l=>a.content.data=l),animation:"300"},{item:t(({element:l,index:f})=>[(c(),E(h,{key:f,onClose:n=>g(f),class:"max-w-[400px]"},{default:t(()=>[m("div",T,[e(B,{modelValue:l.image,"onUpdate:modelValue":n=>l.image=n,"upload-class":"bg-body","exclude-domain":""},null,8,["modelValue","onUpdate:modelValue"]),m("div",q,[e(d,{label:"\u56FE\u7247\u540D\u79F0"},{default:t(()=>[e(k,{modelValue:l.name,"onUpdate:modelValue":n=>l.name=n,placeholder:"\u8BF7\u8F93\u5165\u540D\u79F0"},null,8,["modelValue","onUpdate:modelValue"])]),_:2},1024),e(d,{class:"mt-[18px]",label:"\u56FE\u7247\u94FE\u63A5"},{default:t(()=>[e(x,{modelValue:l.link,"onUpdate:modelValue":n=>l.link=n},null,8,["modelValue","onUpdate:modelValue"])]),_:2},1024)])])]),_:2},1032,["onClose"]))]),_:1},8,["modelValue"])])]),_:1}),((i=a.content.data)==null?void 0:i.length)[e(A,{type:"primary",onClick:V},{default:t(()=>[_("\u6DFB\u52A0\u56FE\u7247")]),_:1})]),_:1})):K("",!0)]}),_:1})])}}});export{Y as _}; diff --git a/public/admin/assets/attr.vue_vue_type_script_setup_true_lang.19311265.js b/public/admin/assets/attr.vue_vue_type_script_setup_true_lang.19311265.js new file mode 100644 index 000000000..56518535d --- /dev/null +++ b/public/admin/assets/attr.vue_vue_type_script_setup_true_lang.19311265.js @@ -0,0 +1 @@ +import{G as _,H as r,C as i,D as f}from"./element-plus.4328d892.js";import{_ as p}from"./add-nav.vue_vue_type_script_setup_true_lang.a0ca03a3.js";import{d as F,o as E,c as b,U as e,L as t,R as d,a as s}from"./@vue.51d7f2d8.js";const V={class:"flex-1"},x=s("div",{class:"form-tips mb-4"},"\u6700\u591A\u53EF\u6DFB\u52A010\u4E2A\uFF0C\u5EFA\u8BAE\u56FE\u7247\u5C3A\u5BF8\uFF1A100px*100px",-1),y=F({__name:"attr",props:{content:{type:Object,default:()=>({})},styles:{type:Object,default:()=>({})}},setup(o){return(B,a)=>{const u=_,m=r,n=i,c=f;return E(),b("div",null,[e(c,{"label-width":"70px"},{default:t(()=>[e(n,{label:"\u662F\u5426\u542F\u7528"},{default:t(()=>[e(m,{modelValue:o.content.enabled,"onUpdate:modelValue":a[0]||(a[0]=l=>o.content.enabled=l)},{default:t(()=>[e(u,{label:1},{default:t(()=>[d("\u5F00\u542F")]),_:1}),e(u,{label:0},{default:t(()=>[d("\u505C\u7528")]),_:1})]),_:1},8,["modelValue"])]),_:1}),e(n,{label:"\u83DC\u5355\u8BBE\u7F6E"},{default:t(()=>[s("div",V,[x,e(p,{modelValue:o.content.data,"onUpdate:modelValue":a[1]||(a[1]=l=>o.content.data=l)},null,8,["modelValue"])])]),_:1})]),_:1})])}}});export{y as _}; diff --git a/public/admin/assets/attr.vue_vue_type_script_setup_true_lang.3d3efd85.js b/public/admin/assets/attr.vue_vue_type_script_setup_true_lang.3d3efd85.js new file mode 100644 index 000000000..0b1fb298b --- /dev/null +++ b/public/admin/assets/attr.vue_vue_type_script_setup_true_lang.3d3efd85.js @@ -0,0 +1 @@ +import{G as D,H as U,C as y,B as v,w,D as N}from"./element-plus.4328d892.js";import{_ as R}from"./index.a9a11abe.js";import{_ as $}from"./picker.c7d50072.js";import{_ as j}from"./picker.45aea54f.js";import{f as F}from"./index.aa9bb752.js";import{D as G}from"./vuedraggable.0cb40d3a.js";import{d as I,o as c,c as O,U as e,L as t,R as _,a as m,u as H,K as E,Q as K}from"./@vue.51d7f2d8.js";const L={class:"flex-1"},Q=m("div",{class:"form-tips"},"\u6700\u591A\u6DFB\u52A05\u5F20\uFF0C\u5EFA\u8BAE\u56FE\u7247\u5C3A\u5BF8\uFF1A750px*200px",-1),T={class:"bg-fill-light flex items-center w-full p-4 mt-4 cursor-move"},q={class:"ml-3 flex-1"},r=5,Y=I({__name:"attr",props:{content:{type:Object,default:()=>({})},styles:{type:Object,default:()=>({})}},setup(a){const s=a,V=()=>{var u;((u=s.content.data)==null?void 0:u.length){var o;if(((o=s.content.data)==null?void 0:o.length)<=1)return F.msgError("\u6700\u5C11\u4FDD\u7559\u4E00\u5F20\u56FE\u7247");s.content.data.splice(u,1)};return(u,o)=>{const p=D,b=U,d=y,B=j,k=v,x=$,h=R,A=w,C=N;return c(),O("div",null,[e(C,{"label-width":"70px"},{default:t(()=>{var i;return[e(d,{label:"\u662F\u5426\u542F\u7528"},{default:t(()=>[e(b,{modelValue:a.content.enabled,"onUpdate:modelValue":o[0]||(o[0]=l=>a.content.enabled=l)},{default:t(()=>[e(p,{label:1},{default:t(()=>[_("\u5F00\u542F")]),_:1}),e(p,{label:0},{default:t(()=>[_("\u505C\u7528")]),_:1})]),_:1},8,["modelValue"])]),_:1}),e(d,{label:"\u56FE\u7247\u8BBE\u7F6E"},{default:t(()=>[m("div",L,[Q,e(H(G),{class:"draggable",modelValue:a.content.data,"onUpdate:modelValue":o[1]||(o[1]=l=>a.content.data=l),animation:"300"},{item:t(({element:l,index:f})=>[(c(),E(h,{key:f,onClose:n=>g(f),class:"max-w-[400px]"},{default:t(()=>[m("div",T,[e(B,{modelValue:l.image,"onUpdate:modelValue":n=>l.image=n,"upload-class":"bg-body","exclude-domain":""},null,8,["modelValue","onUpdate:modelValue"]),m("div",q,[e(d,{label:"\u56FE\u7247\u540D\u79F0"},{default:t(()=>[e(k,{modelValue:l.name,"onUpdate:modelValue":n=>l.name=n,placeholder:"\u8BF7\u8F93\u5165\u540D\u79F0"},null,8,["modelValue","onUpdate:modelValue"])]),_:2},1024),e(d,{class:"mt-[18px]",label:"\u56FE\u7247\u94FE\u63A5"},{default:t(()=>[e(x,{modelValue:l.link,"onUpdate:modelValue":n=>l.link=n},null,8,["modelValue","onUpdate:modelValue"])]),_:2},1024)])])]),_:2},1032,["onClose"]))]),_:1},8,["modelValue"])])]),_:1}),((i=a.content.data)==null?void 0:i.length)[e(A,{type:"primary",onClick:V},{default:t(()=>[_("\u6DFB\u52A0\u56FE\u7247")]),_:1})]),_:1})):K("",!0)]}),_:1})])}}});export{Y as _}; diff --git a/public/admin/assets/attr.vue_vue_type_script_setup_true_lang.4cdc919e.js b/public/admin/assets/attr.vue_vue_type_script_setup_true_lang.4cdc919e.js new file mode 100644 index 000000000..8c91ed85f --- /dev/null +++ b/public/admin/assets/attr.vue_vue_type_script_setup_true_lang.4cdc919e.js @@ -0,0 +1 @@ +import{G as r,H as _,C as i,B as f,D as p}from"./element-plus.4328d892.js";import{_ as V}from"./add-nav.vue_vue_type_script_setup_true_lang.35798c7b.js";import{d as b,o as E,c as x,U as e,L as t,R as d,a as B}from"./@vue.51d7f2d8.js";const F={class:"flex-1"},w=b({__name:"attr",props:{content:{type:Object,default:()=>({})},styles:{type:Object,default:()=>({})}},setup(l){return(y,o)=>{const u=r,m=_,n=i,s=f,c=p;return E(),x("div",null,[e(c,{"label-width":"70px"},{default:t(()=>[e(n,{label:"\u6392\u7248\u6837\u5F0F"},{default:t(()=>[e(m,{modelValue:l.content.style,"onUpdate:modelValue":o[0]||(o[0]=a=>l.content.style=a)},{default:t(()=>[e(u,{label:1},{default:t(()=>[d("\u6A2A\u6392")]),_:1}),e(u,{label:2},{default:t(()=>[d("\u7AD6\u6392")]),_:1})]),_:1},8,["modelValue"])]),_:1}),e(n,{label:"\u6807\u9898\u540D\u79F0"},{default:t(()=>[e(s,{class:"w-[400px]",modelValue:l.content.title,"onUpdate:modelValue":o[1]||(o[1]=a=>l.content.title=a)},null,8,["modelValue"])]),_:1}),e(n,{label:"\u83DC\u5355\u8BBE\u7F6E"},{default:t(()=>[B("div",F,[e(V,{modelValue:l.content.data,"onUpdate:modelValue":o[2]||(o[2]=a=>l.content.data=a)},null,8,["modelValue"])])]),_:1})]),_:1})])}}});export{w as _}; diff --git a/public/admin/assets/attr.vue_vue_type_script_setup_true_lang.5697c78f.js b/public/admin/assets/attr.vue_vue_type_script_setup_true_lang.5697c78f.js new file mode 100644 index 000000000..d8d94c4ed --- /dev/null +++ b/public/admin/assets/attr.vue_vue_type_script_setup_true_lang.5697c78f.js @@ -0,0 +1 @@ +import{G as D,H as U,C as v,B as w,w as N,D as R}from"./element-plus.4328d892.js";import{_ as $}from"./index.a9a11abe.js";import{_ as j}from"./picker.c7d50072.js";import{_ as G}from"./picker.45aea54f.js";import{f as b}from"./index.aa9bb752.js";import{D as I}from"./vuedraggable.0cb40d3a.js";import{d as O,o as n,c as H,U as t,L as l,K as s,R as i,Q as r,a as p,u as K}from"./@vue.51d7f2d8.js";const L={class:"flex-1"},Q=p("div",{class:"form-tips"},"\u6700\u591A\u6DFB\u52A05\u5F20\uFF0C\u5EFA\u8BAE\u56FE\u7247\u5C3A\u5BF8\uFF1A750px*340px",-1),S={class:"bg-fill-light flex items-center w-full p-4 mt-4 cursor-move"},T={class:"ml-3 flex-1"},_=5,Y=O({__name:"attr",props:{content:{type:Object,default:()=>({})},styles:{type:Object,default:()=>({})},type:{type:String,default:"mobile"}},setup(o){const c=o,g=()=>{var d;((d=c.content.data)==null?void 0:d.length)<_?c.content.data.push({image:"",name:"",link:{}}):b.msgError(`\u6700\u591A\u6DFB\u52A0${_}\u5F20\u56FE\u7247`)},k=d=>{var u;if(((u=c.content.data)==null?void 0:u.length)<=1)return b.msgError("\u6700\u5C11\u4FDD\u7559\u4E00\u5F20\u56FE\u7247");c.content.data.splice(d,1)};return(d,u)=>{const f=D,y=U,m=v,B=G,F=w,h=j,x=$,A=N,C=R;return n(),H("div",null,[t(C,{"label-width":"70px"},{default:l(()=>{var V;return[o.type=="mobile"?(n(),s(m,{key:0,label:"\u662F\u5426\u542F\u7528"},{default:l(()=>[t(y,{modelValue:o.content.enabled,"onUpdate:modelValue":u[0]||(u[0]=e=>o.content.enabled=e)},{default:l(()=>[t(f,{label:1},{default:l(()=>[i("\u5F00\u542F")]),_:1}),t(f,{label:0},{default:l(()=>[i("\u505C\u7528")]),_:1})]),_:1},8,["modelValue"])]),_:1})):r("",!0),t(m,{label:"\u56FE\u7247\u8BBE\u7F6E"},{default:l(()=>[p("div",L,[Q,t(K(I),{class:"draggable",modelValue:o.content.data,"onUpdate:modelValue":u[1]||(u[1]=e=>o.content.data=e),animation:"300"},{item:l(({element:e,index:E})=>[(n(),s(x,{key:E,onClose:a=>k(E),class:"max-w-[400px]"},{default:l(()=>[p("div",S,[t(B,{modelValue:e.image,"onUpdate:modelValue":a=>e.image=a,"upload-class":"bg-body","exclude-domain":""},null,8,["modelValue","onUpdate:modelValue"]),p("div",T,[t(m,{label:"\u56FE\u7247\u540D\u79F0"},{default:l(()=>[t(F,{modelValue:e.name,"onUpdate:modelValue":a=>e.name=a,placeholder:"\u8BF7\u8F93\u5165\u540D\u79F0"},null,8,["modelValue","onUpdate:modelValue"])]),_:2},1024),t(m,{class:"mt-[18px]",label:"\u56FE\u7247\u94FE\u63A5"},{default:l(()=>[o.type=="mobile"?(n(),s(h,{key:0,modelValue:e.link,"onUpdate:modelValue":a=>e.link=a},null,8,["modelValue","onUpdate:modelValue"])):r("",!0),o.type=="pc"?(n(),s(F,{key:1,placeholder:"\u8BF7\u8F93\u5165\u94FE\u63A5",modelValue:e.link.path,"onUpdate:modelValue":a=>e.link.path=a},null,8,["modelValue","onUpdate:modelValue"])):r("",!0)]),_:2},1024)])])]),_:2},1032,["onClose"]))]),_:1},8,["modelValue"])])]),_:1}),((V=o.content.data)==null?void 0:V.length)<_?(n(),s(m,{key:1},{default:l(()=>[t(A,{type:"primary",onClick:g},{default:l(()=>[i("\u6DFB\u52A0\u56FE\u7247")]),_:1})]),_:1})):r("",!0)]}),_:1})])}}});export{Y as _}; diff --git a/public/admin/assets/attr.vue_vue_type_script_setup_true_lang.5e1d2ee6.js b/public/admin/assets/attr.vue_vue_type_script_setup_true_lang.5e1d2ee6.js new file mode 100644 index 000000000..2ad49d539 --- /dev/null +++ b/public/admin/assets/attr.vue_vue_type_script_setup_true_lang.5e1d2ee6.js @@ -0,0 +1 @@ +import{G as r,H as _,C as i,B as f,D as p}from"./element-plus.4328d892.js";import{_ as V}from"./add-nav.vue_vue_type_script_setup_true_lang.a0ca03a3.js";import{d as b,o as E,c as x,U as e,L as t,R as d,a as B}from"./@vue.51d7f2d8.js";const F={class:"flex-1"},w=b({__name:"attr",props:{content:{type:Object,default:()=>({})},styles:{type:Object,default:()=>({})}},setup(l){return(y,o)=>{const u=r,m=_,n=i,s=f,c=p;return E(),x("div",null,[e(c,{"label-width":"70px"},{default:t(()=>[e(n,{label:"\u6392\u7248\u6837\u5F0F"},{default:t(()=>[e(m,{modelValue:l.content.style,"onUpdate:modelValue":o[0]||(o[0]=a=>l.content.style=a)},{default:t(()=>[e(u,{label:1},{default:t(()=>[d("\u6A2A\u6392")]),_:1}),e(u,{label:2},{default:t(()=>[d("\u7AD6\u6392")]),_:1})]),_:1},8,["modelValue"])]),_:1}),e(n,{label:"\u6807\u9898\u540D\u79F0"},{default:t(()=>[e(s,{class:"w-[400px]",modelValue:l.content.title,"onUpdate:modelValue":o[1]||(o[1]=a=>l.content.title=a)},null,8,["modelValue"])]),_:1}),e(n,{label:"\u83DC\u5355\u8BBE\u7F6E"},{default:t(()=>[B("div",F,[e(V,{modelValue:l.content.data,"onUpdate:modelValue":o[2]||(o[2]=a=>l.content.data=a)},null,8,["modelValue"])])]),_:1})]),_:1})])}}});export{w as _}; diff --git a/public/admin/assets/attr.vue_vue_type_script_setup_true_lang.8394104e.js b/public/admin/assets/attr.vue_vue_type_script_setup_true_lang.8394104e.js new file mode 100644 index 000000000..ed1c20c4d --- /dev/null +++ b/public/admin/assets/attr.vue_vue_type_script_setup_true_lang.8394104e.js @@ -0,0 +1 @@ +import{G as D,H as U,C as v,B as w,w as N,D as R}from"./element-plus.4328d892.js";import{_ as $}from"./index.f2c7f81b.js";import{_ as j}from"./picker.47d21da2.js";import{_ as G}from"./picker.597494a6.js";import{f as b}from"./index.ed71ac09.js";import{D as I}from"./vuedraggable.0cb40d3a.js";import{d as O,o as n,c as H,U as t,L as l,K as s,R as i,Q as r,a as p,u as K}from"./@vue.51d7f2d8.js";const L={class:"flex-1"},Q=p("div",{class:"form-tips"},"\u6700\u591A\u6DFB\u52A05\u5F20\uFF0C\u5EFA\u8BAE\u56FE\u7247\u5C3A\u5BF8\uFF1A750px*340px",-1),S={class:"bg-fill-light flex items-center w-full p-4 mt-4 cursor-move"},T={class:"ml-3 flex-1"},_=5,Y=O({__name:"attr",props:{content:{type:Object,default:()=>({})},styles:{type:Object,default:()=>({})},type:{type:String,default:"mobile"}},setup(o){const c=o,g=()=>{var d;((d=c.content.data)==null?void 0:d.length)<_?c.content.data.push({image:"",name:"",link:{}}):b.msgError(`\u6700\u591A\u6DFB\u52A0${_}\u5F20\u56FE\u7247`)},k=d=>{var u;if(((u=c.content.data)==null?void 0:u.length)<=1)return b.msgError("\u6700\u5C11\u4FDD\u7559\u4E00\u5F20\u56FE\u7247");c.content.data.splice(d,1)};return(d,u)=>{const f=D,y=U,m=v,B=G,F=w,h=j,x=$,A=N,C=R;return n(),H("div",null,[t(C,{"label-width":"70px"},{default:l(()=>{var V;return[o.type=="mobile"?(n(),s(m,{key:0,label:"\u662F\u5426\u542F\u7528"},{default:l(()=>[t(y,{modelValue:o.content.enabled,"onUpdate:modelValue":u[0]||(u[0]=e=>o.content.enabled=e)},{default:l(()=>[t(f,{label:1},{default:l(()=>[i("\u5F00\u542F")]),_:1}),t(f,{label:0},{default:l(()=>[i("\u505C\u7528")]),_:1})]),_:1},8,["modelValue"])]),_:1})):r("",!0),t(m,{label:"\u56FE\u7247\u8BBE\u7F6E"},{default:l(()=>[p("div",L,[Q,t(K(I),{class:"draggable",modelValue:o.content.data,"onUpdate:modelValue":u[1]||(u[1]=e=>o.content.data=e),animation:"300"},{item:l(({element:e,index:E})=>[(n(),s(x,{key:E,onClose:a=>k(E),class:"max-w-[400px]"},{default:l(()=>[p("div",S,[t(B,{modelValue:e.image,"onUpdate:modelValue":a=>e.image=a,"upload-class":"bg-body","exclude-domain":""},null,8,["modelValue","onUpdate:modelValue"]),p("div",T,[t(m,{label:"\u56FE\u7247\u540D\u79F0"},{default:l(()=>[t(F,{modelValue:e.name,"onUpdate:modelValue":a=>e.name=a,placeholder:"\u8BF7\u8F93\u5165\u540D\u79F0"},null,8,["modelValue","onUpdate:modelValue"])]),_:2},1024),t(m,{class:"mt-[18px]",label:"\u56FE\u7247\u94FE\u63A5"},{default:l(()=>[o.type=="mobile"?(n(),s(h,{key:0,modelValue:e.link,"onUpdate:modelValue":a=>e.link=a},null,8,["modelValue","onUpdate:modelValue"])):r("",!0),o.type=="pc"?(n(),s(F,{key:1,placeholder:"\u8BF7\u8F93\u5165\u94FE\u63A5",modelValue:e.link.path,"onUpdate:modelValue":a=>e.link.path=a},null,8,["modelValue","onUpdate:modelValue"])):r("",!0)]),_:2},1024)])])]),_:2},1032,["onClose"]))]),_:1},8,["modelValue"])])]),_:1}),((V=o.content.data)==null?void 0:V.length)<_?(n(),s(m,{key:1},{default:l(()=>[t(A,{type:"primary",onClick:g},{default:l(()=>[i("\u6DFB\u52A0\u56FE\u7247")]),_:1})]),_:1})):r("",!0)]}),_:1})])}}});export{Y as _}; diff --git a/public/admin/assets/attr.vue_vue_type_script_setup_true_lang.871cb086.js b/public/admin/assets/attr.vue_vue_type_script_setup_true_lang.871cb086.js new file mode 100644 index 000000000..3e9df264e --- /dev/null +++ b/public/admin/assets/attr.vue_vue_type_script_setup_true_lang.871cb086.js @@ -0,0 +1 @@ +import{G as D,H as U,C as y,B as v,w,D as N}from"./element-plus.4328d892.js";import{_ as R}from"./index.fe1d30dd.js";import{_ as $}from"./picker.d415e27a.js";import{_ as j}from"./picker.3821e495.js";import{f as F}from"./index.37f7aea6.js";import{D as G}from"./vuedraggable.0cb40d3a.js";import{d as I,o as c,c as O,U as e,L as t,R as _,a as m,u as H,K as E,Q as K}from"./@vue.51d7f2d8.js";const L={class:"flex-1"},Q=m("div",{class:"form-tips"},"\u6700\u591A\u6DFB\u52A05\u5F20\uFF0C\u5EFA\u8BAE\u56FE\u7247\u5C3A\u5BF8\uFF1A750px*200px",-1),T={class:"bg-fill-light flex items-center w-full p-4 mt-4 cursor-move"},q={class:"ml-3 flex-1"},r=5,Y=I({__name:"attr",props:{content:{type:Object,default:()=>({})},styles:{type:Object,default:()=>({})}},setup(a){const s=a,V=()=>{var u;((u=s.content.data)==null?void 0:u.length){var o;if(((o=s.content.data)==null?void 0:o.length)<=1)return F.msgError("\u6700\u5C11\u4FDD\u7559\u4E00\u5F20\u56FE\u7247");s.content.data.splice(u,1)};return(u,o)=>{const p=D,b=U,d=y,B=j,k=v,x=$,h=R,A=w,C=N;return c(),O("div",null,[e(C,{"label-width":"70px"},{default:t(()=>{var i;return[e(d,{label:"\u662F\u5426\u542F\u7528"},{default:t(()=>[e(b,{modelValue:a.content.enabled,"onUpdate:modelValue":o[0]||(o[0]=l=>a.content.enabled=l)},{default:t(()=>[e(p,{label:1},{default:t(()=>[_("\u5F00\u542F")]),_:1}),e(p,{label:0},{default:t(()=>[_("\u505C\u7528")]),_:1})]),_:1},8,["modelValue"])]),_:1}),e(d,{label:"\u56FE\u7247\u8BBE\u7F6E"},{default:t(()=>[m("div",L,[Q,e(H(G),{class:"draggable",modelValue:a.content.data,"onUpdate:modelValue":o[1]||(o[1]=l=>a.content.data=l),animation:"300"},{item:t(({element:l,index:f})=>[(c(),E(h,{key:f,onClose:n=>g(f),class:"max-w-[400px]"},{default:t(()=>[m("div",T,[e(B,{modelValue:l.image,"onUpdate:modelValue":n=>l.image=n,"upload-class":"bg-body","exclude-domain":""},null,8,["modelValue","onUpdate:modelValue"]),m("div",q,[e(d,{label:"\u56FE\u7247\u540D\u79F0"},{default:t(()=>[e(k,{modelValue:l.name,"onUpdate:modelValue":n=>l.name=n,placeholder:"\u8BF7\u8F93\u5165\u540D\u79F0"},null,8,["modelValue","onUpdate:modelValue"])]),_:2},1024),e(d,{class:"mt-[18px]",label:"\u56FE\u7247\u94FE\u63A5"},{default:t(()=>[e(x,{modelValue:l.link,"onUpdate:modelValue":n=>l.link=n},null,8,["modelValue","onUpdate:modelValue"])]),_:2},1024)])])]),_:2},1032,["onClose"]))]),_:1},8,["modelValue"])])]),_:1}),((i=a.content.data)==null?void 0:i.length)[e(A,{type:"primary",onClick:V},{default:t(()=>[_("\u6DFB\u52A0\u56FE\u7247")]),_:1})]),_:1})):K("",!0)]}),_:1})])}}});export{Y as _}; diff --git a/public/admin/assets/attr.vue_vue_type_script_setup_true_lang.a5f46be8.js b/public/admin/assets/attr.vue_vue_type_script_setup_true_lang.a5f46be8.js new file mode 100644 index 000000000..4ce299ab6 --- /dev/null +++ b/public/admin/assets/attr.vue_vue_type_script_setup_true_lang.a5f46be8.js @@ -0,0 +1 @@ +import{B as c,C as i,D as F}from"./element-plus.4328d892.js";import{_ as p}from"./picker.3821e495.js";import{d as r,o as f,c as V,U as e,L as o,a as m}from"./@vue.51d7f2d8.js";const B=m("div",{class:"form-tips"},"\u5EFA\u8BAE\u56FE\u7247\u5C3A\u5BF8\uFF1A200*200\u50CF\u7D20\uFF1B\u56FE\u7247\u683C\u5F0F\uFF1Ajpg\u3001png\u3001jpeg",-1),A=r({__name:"attr",props:{content:{type:Object,default:()=>({})},styles:{type:Object,default:()=>({})}},setup(t){return(E,l)=>{const a=c,n=i,d=p,s=F;return f(),V("div",null,[e(s,{"label-width":"90px"},{default:o(()=>[e(n,{label:"\u5BA2\u670D\u6807\u9898"},{default:o(()=>[e(a,{class:"w-[400px]",modelValue:t.content.title,"onUpdate:modelValue":l[0]||(l[0]=u=>t.content.title=u)},null,8,["modelValue"])]),_:1}),e(n,{label:"\u670D\u52A1\u65F6\u95F4"},{default:o(()=>[e(a,{class:"w-[400px]",modelValue:t.content.time,"onUpdate:modelValue":l[1]||(l[1]=u=>t.content.time=u)},null,8,["modelValue"])]),_:1}),e(n,{label:"\u8054\u7CFB\u7535\u8BDD"},{default:o(()=>[e(a,{class:"w-[400px]",modelValue:t.content.mobile,"onUpdate:modelValue":l[2]||(l[2]=u=>t.content.mobile=u)},null,8,["modelValue"])]),_:1}),e(n,{label:"\u5BA2\u670D\u4E8C\u7EF4\u7801"},{default:o(()=>[m("div",null,[e(d,{modelValue:t.content.qrcode,"onUpdate:modelValue":l[3]||(l[3]=u=>t.content.qrcode=u),"exclude-domain":""},null,8,["modelValue"]),B])]),_:1})]),_:1})])}}});export{A as _}; diff --git a/public/admin/assets/attr.vue_vue_type_script_setup_true_lang.aeb5c0d0.js b/public/admin/assets/attr.vue_vue_type_script_setup_true_lang.aeb5c0d0.js new file mode 100644 index 000000000..71817517f --- /dev/null +++ b/public/admin/assets/attr.vue_vue_type_script_setup_true_lang.aeb5c0d0.js @@ -0,0 +1 @@ +import{G as _,H as r,C as i,D as f}from"./element-plus.4328d892.js";import{_ as p}from"./add-nav.vue_vue_type_script_setup_true_lang.3317a1cd.js";import{d as F,o as E,c as b,U as e,L as t,R as d,a as s}from"./@vue.51d7f2d8.js";const V={class:"flex-1"},x=s("div",{class:"form-tips mb-4"},"\u6700\u591A\u53EF\u6DFB\u52A010\u4E2A\uFF0C\u5EFA\u8BAE\u56FE\u7247\u5C3A\u5BF8\uFF1A100px*100px",-1),y=F({__name:"attr",props:{content:{type:Object,default:()=>({})},styles:{type:Object,default:()=>({})}},setup(o){return(B,a)=>{const u=_,m=r,n=i,c=f;return E(),b("div",null,[e(c,{"label-width":"70px"},{default:t(()=>[e(n,{label:"\u662F\u5426\u542F\u7528"},{default:t(()=>[e(m,{modelValue:o.content.enabled,"onUpdate:modelValue":a[0]||(a[0]=l=>o.content.enabled=l)},{default:t(()=>[e(u,{label:1},{default:t(()=>[d("\u5F00\u542F")]),_:1}),e(u,{label:0},{default:t(()=>[d("\u505C\u7528")]),_:1})]),_:1},8,["modelValue"])]),_:1}),e(n,{label:"\u83DC\u5355\u8BBE\u7F6E"},{default:t(()=>[s("div",V,[x,e(p,{modelValue:o.content.data,"onUpdate:modelValue":a[1]||(a[1]=l=>o.content.data=l)},null,8,["modelValue"])])]),_:1})]),_:1})])}}});export{y as _}; diff --git a/public/admin/assets/attr.vue_vue_type_script_setup_true_lang.be7eaab3.js b/public/admin/assets/attr.vue_vue_type_script_setup_true_lang.be7eaab3.js new file mode 100644 index 000000000..5302d666a --- /dev/null +++ b/public/admin/assets/attr.vue_vue_type_script_setup_true_lang.be7eaab3.js @@ -0,0 +1 @@ +import{B as c,C as i,D as F}from"./element-plus.4328d892.js";import{_ as p}from"./picker.597494a6.js";import{d as r,o as f,c as V,U as e,L as o,a as m}from"./@vue.51d7f2d8.js";const B=m("div",{class:"form-tips"},"\u5EFA\u8BAE\u56FE\u7247\u5C3A\u5BF8\uFF1A200*200\u50CF\u7D20\uFF1B\u56FE\u7247\u683C\u5F0F\uFF1Ajpg\u3001png\u3001jpeg",-1),A=r({__name:"attr",props:{content:{type:Object,default:()=>({})},styles:{type:Object,default:()=>({})}},setup(t){return(E,l)=>{const a=c,n=i,d=p,s=F;return f(),V("div",null,[e(s,{"label-width":"90px"},{default:o(()=>[e(n,{label:"\u5BA2\u670D\u6807\u9898"},{default:o(()=>[e(a,{class:"w-[400px]",modelValue:t.content.title,"onUpdate:modelValue":l[0]||(l[0]=u=>t.content.title=u)},null,8,["modelValue"])]),_:1}),e(n,{label:"\u670D\u52A1\u65F6\u95F4"},{default:o(()=>[e(a,{class:"w-[400px]",modelValue:t.content.time,"onUpdate:modelValue":l[1]||(l[1]=u=>t.content.time=u)},null,8,["modelValue"])]),_:1}),e(n,{label:"\u8054\u7CFB\u7535\u8BDD"},{default:o(()=>[e(a,{class:"w-[400px]",modelValue:t.content.mobile,"onUpdate:modelValue":l[2]||(l[2]=u=>t.content.mobile=u)},null,8,["modelValue"])]),_:1}),e(n,{label:"\u5BA2\u670D\u4E8C\u7EF4\u7801"},{default:o(()=>[m("div",null,[e(d,{modelValue:t.content.qrcode,"onUpdate:modelValue":l[3]||(l[3]=u=>t.content.qrcode=u),"exclude-domain":""},null,8,["modelValue"]),B])]),_:1})]),_:1})])}}});export{A as _}; diff --git a/public/admin/assets/attr.vue_vue_type_script_setup_true_lang.d9838080.js b/public/admin/assets/attr.vue_vue_type_script_setup_true_lang.d9838080.js new file mode 100644 index 000000000..5f71a5ab5 --- /dev/null +++ b/public/admin/assets/attr.vue_vue_type_script_setup_true_lang.d9838080.js @@ -0,0 +1 @@ +import{G as _,H as r,C as i,D as f}from"./element-plus.4328d892.js";import{_ as p}from"./add-nav.vue_vue_type_script_setup_true_lang.35798c7b.js";import{d as F,o as E,c as b,U as e,L as t,R as d,a as s}from"./@vue.51d7f2d8.js";const V={class:"flex-1"},x=s("div",{class:"form-tips mb-4"},"\u6700\u591A\u53EF\u6DFB\u52A010\u4E2A\uFF0C\u5EFA\u8BAE\u56FE\u7247\u5C3A\u5BF8\uFF1A100px*100px",-1),y=F({__name:"attr",props:{content:{type:Object,default:()=>({})},styles:{type:Object,default:()=>({})}},setup(o){return(B,a)=>{const u=_,m=r,n=i,c=f;return E(),b("div",null,[e(c,{"label-width":"70px"},{default:t(()=>[e(n,{label:"\u662F\u5426\u542F\u7528"},{default:t(()=>[e(m,{modelValue:o.content.enabled,"onUpdate:modelValue":a[0]||(a[0]=l=>o.content.enabled=l)},{default:t(()=>[e(u,{label:1},{default:t(()=>[d("\u5F00\u542F")]),_:1}),e(u,{label:0},{default:t(()=>[d("\u505C\u7528")]),_:1})]),_:1},8,["modelValue"])]),_:1}),e(n,{label:"\u83DC\u5355\u8BBE\u7F6E"},{default:t(()=>[s("div",V,[x,e(p,{modelValue:o.content.data,"onUpdate:modelValue":a[1]||(a[1]=l=>o.content.data=l)},null,8,["modelValue"])])]),_:1})]),_:1})])}}});export{y as _}; diff --git a/public/admin/assets/attr.vue_vue_type_script_setup_true_lang.f3b5265b.js b/public/admin/assets/attr.vue_vue_type_script_setup_true_lang.f3b5265b.js new file mode 100644 index 000000000..c58a5fb2b --- /dev/null +++ b/public/admin/assets/attr.vue_vue_type_script_setup_true_lang.f3b5265b.js @@ -0,0 +1 @@ +import{G as r,H as _,C as i,B as f,D as p}from"./element-plus.4328d892.js";import{_ as V}from"./add-nav.vue_vue_type_script_setup_true_lang.3317a1cd.js";import{d as b,o as E,c as x,U as e,L as t,R as d,a as B}from"./@vue.51d7f2d8.js";const F={class:"flex-1"},w=b({__name:"attr",props:{content:{type:Object,default:()=>({})},styles:{type:Object,default:()=>({})}},setup(l){return(y,o)=>{const u=r,m=_,n=i,s=f,c=p;return E(),x("div",null,[e(c,{"label-width":"70px"},{default:t(()=>[e(n,{label:"\u6392\u7248\u6837\u5F0F"},{default:t(()=>[e(m,{modelValue:l.content.style,"onUpdate:modelValue":o[0]||(o[0]=a=>l.content.style=a)},{default:t(()=>[e(u,{label:1},{default:t(()=>[d("\u6A2A\u6392")]),_:1}),e(u,{label:2},{default:t(()=>[d("\u7AD6\u6392")]),_:1})]),_:1},8,["modelValue"])]),_:1}),e(n,{label:"\u6807\u9898\u540D\u79F0"},{default:t(()=>[e(s,{class:"w-[400px]",modelValue:l.content.title,"onUpdate:modelValue":o[1]||(o[1]=a=>l.content.title=a)},null,8,["modelValue"])]),_:1}),e(n,{label:"\u83DC\u5355\u8BBE\u7F6E"},{default:t(()=>[B("div",F,[e(V,{modelValue:l.content.data,"onUpdate:modelValue":o[2]||(o[2]=a=>l.content.data=a)},null,8,["modelValue"])])]),_:1})]),_:1})])}}});export{w as _}; diff --git a/public/admin/assets/attr.vue_vue_type_script_setup_true_lang.f9c983cd.js b/public/admin/assets/attr.vue_vue_type_script_setup_true_lang.f9c983cd.js new file mode 100644 index 000000000..8c8f4c3a7 --- /dev/null +++ b/public/admin/assets/attr.vue_vue_type_script_setup_true_lang.f9c983cd.js @@ -0,0 +1 @@ +import{G as D,H as U,C as v,B as w,w as N,D as R}from"./element-plus.4328d892.js";import{_ as $}from"./index.fe1d30dd.js";import{_ as j}from"./picker.d415e27a.js";import{_ as G}from"./picker.3821e495.js";import{f as b}from"./index.37f7aea6.js";import{D as I}from"./vuedraggable.0cb40d3a.js";import{d as O,o as n,c as H,U as t,L as l,K as s,R as i,Q as r,a as p,u as K}from"./@vue.51d7f2d8.js";const L={class:"flex-1"},Q=p("div",{class:"form-tips"},"\u6700\u591A\u6DFB\u52A05\u5F20\uFF0C\u5EFA\u8BAE\u56FE\u7247\u5C3A\u5BF8\uFF1A750px*340px",-1),S={class:"bg-fill-light flex items-center w-full p-4 mt-4 cursor-move"},T={class:"ml-3 flex-1"},_=5,Y=O({__name:"attr",props:{content:{type:Object,default:()=>({})},styles:{type:Object,default:()=>({})},type:{type:String,default:"mobile"}},setup(o){const c=o,g=()=>{var d;((d=c.content.data)==null?void 0:d.length)<_?c.content.data.push({image:"",name:"",link:{}}):b.msgError(`\u6700\u591A\u6DFB\u52A0${_}\u5F20\u56FE\u7247`)},k=d=>{var u;if(((u=c.content.data)==null?void 0:u.length)<=1)return b.msgError("\u6700\u5C11\u4FDD\u7559\u4E00\u5F20\u56FE\u7247");c.content.data.splice(d,1)};return(d,u)=>{const f=D,y=U,m=v,B=G,F=w,h=j,x=$,A=N,C=R;return n(),H("div",null,[t(C,{"label-width":"70px"},{default:l(()=>{var V;return[o.type=="mobile"?(n(),s(m,{key:0,label:"\u662F\u5426\u542F\u7528"},{default:l(()=>[t(y,{modelValue:o.content.enabled,"onUpdate:modelValue":u[0]||(u[0]=e=>o.content.enabled=e)},{default:l(()=>[t(f,{label:1},{default:l(()=>[i("\u5F00\u542F")]),_:1}),t(f,{label:0},{default:l(()=>[i("\u505C\u7528")]),_:1})]),_:1},8,["modelValue"])]),_:1})):r("",!0),t(m,{label:"\u56FE\u7247\u8BBE\u7F6E"},{default:l(()=>[p("div",L,[Q,t(K(I),{class:"draggable",modelValue:o.content.data,"onUpdate:modelValue":u[1]||(u[1]=e=>o.content.data=e),animation:"300"},{item:l(({element:e,index:E})=>[(n(),s(x,{key:E,onClose:a=>k(E),class:"max-w-[400px]"},{default:l(()=>[p("div",S,[t(B,{modelValue:e.image,"onUpdate:modelValue":a=>e.image=a,"upload-class":"bg-body","exclude-domain":""},null,8,["modelValue","onUpdate:modelValue"]),p("div",T,[t(m,{label:"\u56FE\u7247\u540D\u79F0"},{default:l(()=>[t(F,{modelValue:e.name,"onUpdate:modelValue":a=>e.name=a,placeholder:"\u8BF7\u8F93\u5165\u540D\u79F0"},null,8,["modelValue","onUpdate:modelValue"])]),_:2},1024),t(m,{class:"mt-[18px]",label:"\u56FE\u7247\u94FE\u63A5"},{default:l(()=>[o.type=="mobile"?(n(),s(h,{key:0,modelValue:e.link,"onUpdate:modelValue":a=>e.link=a},null,8,["modelValue","onUpdate:modelValue"])):r("",!0),o.type=="pc"?(n(),s(F,{key:1,placeholder:"\u8BF7\u8F93\u5165\u94FE\u63A5",modelValue:e.link.path,"onUpdate:modelValue":a=>e.link.path=a},null,8,["modelValue","onUpdate:modelValue"])):r("",!0)]),_:2},1024)])])]),_:2},1032,["onClose"]))]),_:1},8,["modelValue"])])]),_:1}),((V=o.content.data)==null?void 0:V.length)<_?(n(),s(m,{key:1},{default:l(()=>[t(A,{type:"primary",onClick:g},{default:l(()=>[i("\u6DFB\u52A0\u56FE\u7247")]),_:1})]),_:1})):r("",!0)]}),_:1})])}}});export{Y as _}; diff --git a/public/admin/assets/attr.vue_vue_type_script_setup_true_lang.fdded599.js b/public/admin/assets/attr.vue_vue_type_script_setup_true_lang.fdded599.js new file mode 100644 index 000000000..12aff4fbe --- /dev/null +++ b/public/admin/assets/attr.vue_vue_type_script_setup_true_lang.fdded599.js @@ -0,0 +1 @@ +import{B as c,C as i,D as F}from"./element-plus.4328d892.js";import{_ as p}from"./picker.45aea54f.js";import{d as r,o as f,c as V,U as e,L as o,a as m}from"./@vue.51d7f2d8.js";const B=m("div",{class:"form-tips"},"\u5EFA\u8BAE\u56FE\u7247\u5C3A\u5BF8\uFF1A200*200\u50CF\u7D20\uFF1B\u56FE\u7247\u683C\u5F0F\uFF1Ajpg\u3001png\u3001jpeg",-1),A=r({__name:"attr",props:{content:{type:Object,default:()=>({})},styles:{type:Object,default:()=>({})}},setup(t){return(E,l)=>{const a=c,n=i,d=p,s=F;return f(),V("div",null,[e(s,{"label-width":"90px"},{default:o(()=>[e(n,{label:"\u5BA2\u670D\u6807\u9898"},{default:o(()=>[e(a,{class:"w-[400px]",modelValue:t.content.title,"onUpdate:modelValue":l[0]||(l[0]=u=>t.content.title=u)},null,8,["modelValue"])]),_:1}),e(n,{label:"\u670D\u52A1\u65F6\u95F4"},{default:o(()=>[e(a,{class:"w-[400px]",modelValue:t.content.time,"onUpdate:modelValue":l[1]||(l[1]=u=>t.content.time=u)},null,8,["modelValue"])]),_:1}),e(n,{label:"\u8054\u7CFB\u7535\u8BDD"},{default:o(()=>[e(a,{class:"w-[400px]",modelValue:t.content.mobile,"onUpdate:modelValue":l[2]||(l[2]=u=>t.content.mobile=u)},null,8,["modelValue"])]),_:1}),e(n,{label:"\u5BA2\u670D\u4E8C\u7EF4\u7801"},{default:o(()=>[m("div",null,[e(d,{modelValue:t.content.qrcode,"onUpdate:modelValue":l[3]||(l[3]=u=>t.content.qrcode=u),"exclude-domain":""},null,8,["modelValue"]),B])]),_:1})]),_:1})])}}});export{A as _}; diff --git a/public/admin/assets/audit.06df50a0.js b/public/admin/assets/audit.06df50a0.js new file mode 100644 index 000000000..4bf11fe20 --- /dev/null +++ b/public/admin/assets/audit.06df50a0.js @@ -0,0 +1 @@ +import"./audit.vue_vue_type_script_setup_true_name_withdrawEdit_lang.0a14e109.js";import{_ as O}from"./audit.vue_vue_type_script_setup_true_name_withdrawEdit_lang.0a14e109.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.5759a1a6.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.37f7aea6.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./withdraw.35c20484.js";export{O as default}; diff --git a/public/admin/assets/audit.4ba06f9c.js b/public/admin/assets/audit.4ba06f9c.js new file mode 100644 index 000000000..6e0aefb95 --- /dev/null +++ b/public/admin/assets/audit.4ba06f9c.js @@ -0,0 +1 @@ +import"./audit.vue_vue_type_script_setup_true_name_withdrawEdit_lang.c495c275.js";import{_ as O}from"./audit.vue_vue_type_script_setup_true_name_withdrawEdit_lang.c495c275.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.b940d6e3.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.ed71ac09.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./withdraw.046913b9.js";export{O as default}; diff --git a/public/admin/assets/audit.cdb91c96.js b/public/admin/assets/audit.cdb91c96.js new file mode 100644 index 000000000..baa92d9e1 --- /dev/null +++ b/public/admin/assets/audit.cdb91c96.js @@ -0,0 +1 @@ +import"./audit.vue_vue_type_script_setup_true_name_withdrawEdit_lang.b26f5dcc.js";import{_ as O}from"./audit.vue_vue_type_script_setup_true_name_withdrawEdit_lang.b26f5dcc.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.fa872673.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.aa9bb752.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./withdraw.32706b7e.js";export{O as default}; diff --git a/public/admin/assets/audit.vue_vue_type_script_setup_true_name_withdrawEdit_lang.0a14e109.js b/public/admin/assets/audit.vue_vue_type_script_setup_true_name_withdrawEdit_lang.0a14e109.js new file mode 100644 index 000000000..a8ca17ed1 --- /dev/null +++ b/public/admin/assets/audit.vue_vue_type_script_setup_true_name_withdrawEdit_lang.0a14e109.js @@ -0,0 +1 @@ +import{J as W,k as h,K as z,B as Q,C as X,w as Y,G as Z,H as ee,c as ue,D as oe}from"./element-plus.4328d892.js";import{P as te}from"./index.5759a1a6.js";import{b as ae,w as le}from"./withdraw.35c20484.js";import"./lodash.08438971.js";import{a as se,k as ne}from"./index.37f7aea6.js";import{d as A,C as re,s as C,r as y,e as de,$ as w,a4 as V,o as i,c as ie,U as l,L as a,u,K as p,R as c,a as x}from"./@vue.51d7f2d8.js";const pe={class:"edit-popup"},ce=x("div",{class:"el-upload__text"},"\u6587\u4EF6\u62D6\u5165\u6216\u70B9\u51FB\u4E0A\u4F20",-1),_e=x("div",{class:"el-upload__tip"},"\u8BF7\u4E0A\u4F20JPG/JPEG/PNG/GIF/PDF\u6587\u4EF6",-1),me=A({name:"withdrawEdit"}),be=A({...me,props:{dictData:{type:Object,default:()=>({})}},emits:["success","close"],setup(fe,{expose:P,emit:E}){const G=se(),B=re("base_url"),v=C(),f=C(),r=y("audit"),R=de(()=>r.value=="audit"?"\u5BA1\u6838\u63D0\u73B0\u7533\u8BF7":"\u63D0\u73B0\u7533\u8BF7\u8BE6\u60C5"),t=w({id:"",order_sn:"",user_id:"",admin_id:"",amount:"",status:"",transfer_voucher:"",deny_desc:"",company_id:"",company_name:"",s_date:"",e_date:"",invoice:""}),U=w({status:[{required:!0,validator:(o,e,s)=>{e==1||e==2?s():s(new Error("\u8BF7\u9009\u62E9\u5BA1\u6838\u662F\u5426\u901A\u8FC7!"))},trigger:["blur"]}],transfer_voucher:[{required:!0,message:"\u8BF7\u5148\u4E0A\u4F20\u51ED\u8BC1",trigger:["blur"]}],deny_desc:[{required:!0,message:"\u8BF7\u586B\u5199\u62D2\u7EDD\u539F\u56E0",trigger:["blur"]}]}),D=async o=>{for(const e in t)o[e]!=null&&o[e]!=null&&(t[e]=o[e]);t.invoice="https://ceshi-worker-task.lihaink.cn/uploads/files/20230918/20230918093829d92260738.pdf"},I=async o=>{const e=await ae({id:o.id});D(e)},_=y(null),F=y(""),b=["application/pdf","image/jpeg","image/gif","image/png"],J=o=>b.includes(o.type)?(o.type!="application/pdf"?F.value=B+"/upload/image":F.value=B+"/upload/file",!0):(h.error("\u8BF7\u4E0A\u4F20JPG/JPEG/PNG/GIF/PDF\u6587\u4EF6"),!1),N=o=>{_.value.clearFiles();const e=o[0];e.uid=z(),_.value.handleStart(e),_.value.submit()},T=o=>{if(o.code==0&&o.show==1)return t.transfer_voucher="",_.value.clearFiles(),h.error(o.msg||"\u4E0A\u4F20\u5931\u8D25");t.transfer_voucher=o.data.uri},k=o=>{window.open(o)},j=async()=>{var e,s;await((e=v.value)==null?void 0:e.validate());const o={...t};r.value==await le(o),(s=f.value)==null||s.close(),E("success")},q=(o="add")=>{var e;r.value=o,(e=f.value)==null||e.open()},S=()=>{E("close")};return P({open:q,setFormData:D,getDetail:I}),(o,e)=>{const s=Q,d=X,m=Y,$=V("router-link"),g=Z,K=ee,L=V("upload-filled"),H=ue,M=W,O=oe;return i(),ie("div",pe,[l(te,{ref_key:"popupRef",ref:f,title:u(R),async:!0,width:"550px",onConfirm:j,onClose:S,button:u(r)=="audit"},{default:a(()=>[l(O,{ref_key:"formRef",ref:v,model:u(t),"label-width":"90px",rules:u(U)},{default:a(()=>[l(d,{label:"\u8BA2\u5355\u7F16\u53F7",prop:"order_sn"},{default:a(()=>[l(s,{readonly:"",modelValue:u(t).order_sn,"onUpdate:modelValue":e[0]||(e[0]=n=>u(t).order_sn=n),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u8BA2\u5355\u7F16\u53F7"},null,8,["modelValue"])]),_:1}),l(d,{label:"\u63D0\u73B0\u91D1\u989D",prop:"amount"},{default:a(()=>[l(s,{readonly:"",modelValue:u(t).amount,"onUpdate:modelValue":e[1]||(e[1]=n=>u(t).amount=n),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u63D0\u73B0\u91D1\u989D"},null,8,["modelValue"])]),_:1}),l(d,{label:"\u7535\u5B50\u53D1\u7968",prop:"invoice"},{default:a(()=>[u(t).invoice?(i(),p(m,{key:0,type:"primary",link:"",onClick:e[2]||(e[2]=n=>k(u(t).invoice))},{default:a(()=>[c("\u67E5\u770B\u53D1\u7968")]),_:1})):(i(),p(m,{key:1,link:""},{default:a(()=>[c("\u6682\u65E0\u53D1\u7968")]),_:1}))]),_:1}),l(d,{label:"\u4F59\u989D\u8BE6\u60C5",prop:"amount"},{default:a(()=>[l(m,{type:"primary",link:""},{default:a(()=>[l($,{to:{path:u(ne)("finance.account_log/lists"),query:{company_id:u(t).company_id,s_date:u(t).s_date,e_date:u(t).e_date}}},{default:a(()=>[c("\u67E5\u770B\u660E\u7EC6")]),_:1},8,["to"])]),_:1})]),_:1}),l(d,{label:"\u5BA1\u6838",prop:"status"},{default:a(()=>[l(K,{modelValue:u(t).status,"onUpdate:modelValue":e[3]||(e[3]=n=>u(t).status=n),disabled:u(r)!="audit"},{default:a(()=>[l(g,{label:1},{default:a(()=>[c("\u901A\u8FC7")]),_:1}),l(g,{label:2},{default:a(()=>[c("\u62D2\u7EDD")]),_:1})]),_:1},8,["modelValue","disabled"])]),_:1}),u(t).status==2?(i(),p(d,{key:0,label:"\u5907\u6CE8",prop:"deny_desc",readonly:u(r)!="audit"},{default:a(()=>[l(s,{modelValue:u(t).deny_desc,"onUpdate:modelValue":e[4]||(e[4]=n=>u(t).deny_desc=n),clearable:"",type:"textarea",placeholder:"\u8BF7\u8F93\u5165\u5907\u6CE8"},null,8,["modelValue"])]),_:1},8,["readonly"])):(i(),p(d,{key:1,label:"\u8F6C\u8D26\u51ED\u8BC1",prop:"transfer_voucher"},{default:a(()=>[u(r)=="audit"?(i(),p(M,{key:0,class:"upload-demo",style:{width:"100%"},drag:"",accept:b.join(", "),headers:{Token:u(G).token},action:u(F),limit:1,"on-success":T,"on-exceed":N,"before-upload":J,ref_key:"upload",ref:_},{tip:a(()=>[_e]),default:a(()=>[l(H,{class:"el-icon--upload"},{default:a(()=>[l(L)]),_:1}),ce]),_:1},8,["accept","headers","action"])):(i(),p(m,{key:1,type:"primary",link:"",onClick:e[5]||(e[5]=n=>k(u(t).transfer_voucher))},{default:a(()=>[c(" \u67E5\u770B\u51ED\u8BC1 ")]),_:1}))]),_:1}))]),_:1},8,["model","rules"])]),_:1},8,["title","button"])])}}});export{be as _}; diff --git a/public/admin/assets/audit.vue_vue_type_script_setup_true_name_withdrawEdit_lang.b26f5dcc.js b/public/admin/assets/audit.vue_vue_type_script_setup_true_name_withdrawEdit_lang.b26f5dcc.js new file mode 100644 index 000000000..c21b0a70e --- /dev/null +++ b/public/admin/assets/audit.vue_vue_type_script_setup_true_name_withdrawEdit_lang.b26f5dcc.js @@ -0,0 +1 @@ +import{J as W,k as h,K as z,B as Q,C as X,w as Y,G as Z,H as ee,c as ue,D as oe}from"./element-plus.4328d892.js";import{P as te}from"./index.fa872673.js";import{b as ae,w as le}from"./withdraw.32706b7e.js";import"./lodash.08438971.js";import{a as se,k as ne}from"./index.aa9bb752.js";import{d as A,C as re,s as C,r as y,e as de,$ as w,a4 as V,o as i,c as ie,U as l,L as a,u,K as p,R as c,a as x}from"./@vue.51d7f2d8.js";const pe={class:"edit-popup"},ce=x("div",{class:"el-upload__text"},"\u6587\u4EF6\u62D6\u5165\u6216\u70B9\u51FB\u4E0A\u4F20",-1),_e=x("div",{class:"el-upload__tip"},"\u8BF7\u4E0A\u4F20JPG/JPEG/PNG/GIF/PDF\u6587\u4EF6",-1),me=A({name:"withdrawEdit"}),be=A({...me,props:{dictData:{type:Object,default:()=>({})}},emits:["success","close"],setup(fe,{expose:P,emit:E}){const G=se(),B=re("base_url"),v=C(),f=C(),r=y("audit"),R=de(()=>r.value=="audit"?"\u5BA1\u6838\u63D0\u73B0\u7533\u8BF7":"\u63D0\u73B0\u7533\u8BF7\u8BE6\u60C5"),t=w({id:"",order_sn:"",user_id:"",admin_id:"",amount:"",status:"",transfer_voucher:"",deny_desc:"",company_id:"",company_name:"",s_date:"",e_date:"",invoice:""}),U=w({status:[{required:!0,validator:(o,e,s)=>{e==1||e==2?s():s(new Error("\u8BF7\u9009\u62E9\u5BA1\u6838\u662F\u5426\u901A\u8FC7!"))},trigger:["blur"]}],transfer_voucher:[{required:!0,message:"\u8BF7\u5148\u4E0A\u4F20\u51ED\u8BC1",trigger:["blur"]}],deny_desc:[{required:!0,message:"\u8BF7\u586B\u5199\u62D2\u7EDD\u539F\u56E0",trigger:["blur"]}]}),D=async o=>{for(const e in t)o[e]!=null&&o[e]!=null&&(t[e]=o[e]);t.invoice="https://ceshi-worker-task.lihaink.cn/uploads/files/20230918/20230918093829d92260738.pdf"},I=async o=>{const e=await ae({id:o.id});D(e)},_=y(null),F=y(""),b=["application/pdf","image/jpeg","image/gif","image/png"],J=o=>b.includes(o.type)?(o.type!="application/pdf"?F.value=B+"/upload/image":F.value=B+"/upload/file",!0):(h.error("\u8BF7\u4E0A\u4F20JPG/JPEG/PNG/GIF/PDF\u6587\u4EF6"),!1),N=o=>{_.value.clearFiles();const e=o[0];e.uid=z(),_.value.handleStart(e),_.value.submit()},T=o=>{if(o.code==0&&o.show==1)return t.transfer_voucher="",_.value.clearFiles(),h.error(o.msg||"\u4E0A\u4F20\u5931\u8D25");t.transfer_voucher=o.data.uri},k=o=>{window.open(o)},j=async()=>{var e,s;await((e=v.value)==null?void 0:e.validate());const o={...t};r.value==await le(o),(s=f.value)==null||s.close(),E("success")},q=(o="add")=>{var e;r.value=o,(e=f.value)==null||e.open()},S=()=>{E("close")};return P({open:q,setFormData:D,getDetail:I}),(o,e)=>{const s=Q,d=X,m=Y,$=V("router-link"),g=Z,K=ee,L=V("upload-filled"),H=ue,M=W,O=oe;return i(),ie("div",pe,[l(te,{ref_key:"popupRef",ref:f,title:u(R),async:!0,width:"550px",onConfirm:j,onClose:S,button:u(r)=="audit"},{default:a(()=>[l(O,{ref_key:"formRef",ref:v,model:u(t),"label-width":"90px",rules:u(U)},{default:a(()=>[l(d,{label:"\u8BA2\u5355\u7F16\u53F7",prop:"order_sn"},{default:a(()=>[l(s,{readonly:"",modelValue:u(t).order_sn,"onUpdate:modelValue":e[0]||(e[0]=n=>u(t).order_sn=n),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u8BA2\u5355\u7F16\u53F7"},null,8,["modelValue"])]),_:1}),l(d,{label:"\u63D0\u73B0\u91D1\u989D",prop:"amount"},{default:a(()=>[l(s,{readonly:"",modelValue:u(t).amount,"onUpdate:modelValue":e[1]||(e[1]=n=>u(t).amount=n),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u63D0\u73B0\u91D1\u989D"},null,8,["modelValue"])]),_:1}),l(d,{label:"\u7535\u5B50\u53D1\u7968",prop:"invoice"},{default:a(()=>[u(t).invoice?(i(),p(m,{key:0,type:"primary",link:"",onClick:e[2]||(e[2]=n=>k(u(t).invoice))},{default:a(()=>[c("\u67E5\u770B\u53D1\u7968")]),_:1})):(i(),p(m,{key:1,link:""},{default:a(()=>[c("\u6682\u65E0\u53D1\u7968")]),_:1}))]),_:1}),l(d,{label:"\u4F59\u989D\u8BE6\u60C5",prop:"amount"},{default:a(()=>[l(m,{type:"primary",link:""},{default:a(()=>[l($,{to:{path:u(ne)("finance.account_log/lists"),query:{company_id:u(t).company_id,s_date:u(t).s_date,e_date:u(t).e_date}}},{default:a(()=>[c("\u67E5\u770B\u660E\u7EC6")]),_:1},8,["to"])]),_:1})]),_:1}),l(d,{label:"\u5BA1\u6838",prop:"status"},{default:a(()=>[l(K,{modelValue:u(t).status,"onUpdate:modelValue":e[3]||(e[3]=n=>u(t).status=n),disabled:u(r)!="audit"},{default:a(()=>[l(g,{label:1},{default:a(()=>[c("\u901A\u8FC7")]),_:1}),l(g,{label:2},{default:a(()=>[c("\u62D2\u7EDD")]),_:1})]),_:1},8,["modelValue","disabled"])]),_:1}),u(t).status==2?(i(),p(d,{key:0,label:"\u5907\u6CE8",prop:"deny_desc",readonly:u(r)!="audit"},{default:a(()=>[l(s,{modelValue:u(t).deny_desc,"onUpdate:modelValue":e[4]||(e[4]=n=>u(t).deny_desc=n),clearable:"",type:"textarea",placeholder:"\u8BF7\u8F93\u5165\u5907\u6CE8"},null,8,["modelValue"])]),_:1},8,["readonly"])):(i(),p(d,{key:1,label:"\u8F6C\u8D26\u51ED\u8BC1",prop:"transfer_voucher"},{default:a(()=>[u(r)=="audit"?(i(),p(M,{key:0,class:"upload-demo",style:{width:"100%"},drag:"",accept:b.join(", "),headers:{Token:u(G).token},action:u(F),limit:1,"on-success":T,"on-exceed":N,"before-upload":J,ref_key:"upload",ref:_},{tip:a(()=>[_e]),default:a(()=>[l(H,{class:"el-icon--upload"},{default:a(()=>[l(L)]),_:1}),ce]),_:1},8,["accept","headers","action"])):(i(),p(m,{key:1,type:"primary",link:"",onClick:e[5]||(e[5]=n=>k(u(t).transfer_voucher))},{default:a(()=>[c(" \u67E5\u770B\u51ED\u8BC1 ")]),_:1}))]),_:1}))]),_:1},8,["model","rules"])]),_:1},8,["title","button"])])}}});export{be as _}; diff --git a/public/admin/assets/audit.vue_vue_type_script_setup_true_name_withdrawEdit_lang.c495c275.js b/public/admin/assets/audit.vue_vue_type_script_setup_true_name_withdrawEdit_lang.c495c275.js new file mode 100644 index 000000000..3d2c5f0c4 --- /dev/null +++ b/public/admin/assets/audit.vue_vue_type_script_setup_true_name_withdrawEdit_lang.c495c275.js @@ -0,0 +1 @@ +import{J as W,k as h,K as z,B as Q,C as X,w as Y,G as Z,H as ee,c as ue,D as oe}from"./element-plus.4328d892.js";import{P as te}from"./index.b940d6e3.js";import{b as ae,w as le}from"./withdraw.046913b9.js";import"./lodash.08438971.js";import{a as se,k as ne}from"./index.ed71ac09.js";import{d as A,C as re,s as C,r as y,e as de,$ as w,a4 as V,o as i,c as ie,U as l,L as a,u,K as p,R as c,a as x}from"./@vue.51d7f2d8.js";const pe={class:"edit-popup"},ce=x("div",{class:"el-upload__text"},"\u6587\u4EF6\u62D6\u5165\u6216\u70B9\u51FB\u4E0A\u4F20",-1),_e=x("div",{class:"el-upload__tip"},"\u8BF7\u4E0A\u4F20JPG/JPEG/PNG/GIF/PDF\u6587\u4EF6",-1),me=A({name:"withdrawEdit"}),be=A({...me,props:{dictData:{type:Object,default:()=>({})}},emits:["success","close"],setup(fe,{expose:P,emit:E}){const G=se(),B=re("base_url"),v=C(),f=C(),r=y("audit"),R=de(()=>r.value=="audit"?"\u5BA1\u6838\u63D0\u73B0\u7533\u8BF7":"\u63D0\u73B0\u7533\u8BF7\u8BE6\u60C5"),t=w({id:"",order_sn:"",user_id:"",admin_id:"",amount:"",status:"",transfer_voucher:"",deny_desc:"",company_id:"",company_name:"",s_date:"",e_date:"",invoice:""}),U=w({status:[{required:!0,validator:(o,e,s)=>{e==1||e==2?s():s(new Error("\u8BF7\u9009\u62E9\u5BA1\u6838\u662F\u5426\u901A\u8FC7!"))},trigger:["blur"]}],transfer_voucher:[{required:!0,message:"\u8BF7\u5148\u4E0A\u4F20\u51ED\u8BC1",trigger:["blur"]}],deny_desc:[{required:!0,message:"\u8BF7\u586B\u5199\u62D2\u7EDD\u539F\u56E0",trigger:["blur"]}]}),D=async o=>{for(const e in t)o[e]!=null&&o[e]!=null&&(t[e]=o[e]);t.invoice="https://ceshi-worker-task.lihaink.cn/uploads/files/20230918/20230918093829d92260738.pdf"},I=async o=>{const e=await ae({id:o.id});D(e)},_=y(null),F=y(""),b=["application/pdf","image/jpeg","image/gif","image/png"],J=o=>b.includes(o.type)?(o.type!="application/pdf"?F.value=B+"/upload/image":F.value=B+"/upload/file",!0):(h.error("\u8BF7\u4E0A\u4F20JPG/JPEG/PNG/GIF/PDF\u6587\u4EF6"),!1),N=o=>{_.value.clearFiles();const e=o[0];e.uid=z(),_.value.handleStart(e),_.value.submit()},T=o=>{if(o.code==0&&o.show==1)return t.transfer_voucher="",_.value.clearFiles(),h.error(o.msg||"\u4E0A\u4F20\u5931\u8D25");t.transfer_voucher=o.data.uri},k=o=>{window.open(o)},j=async()=>{var e,s;await((e=v.value)==null?void 0:e.validate());const o={...t};r.value==await le(o),(s=f.value)==null||s.close(),E("success")},q=(o="add")=>{var e;r.value=o,(e=f.value)==null||e.open()},S=()=>{E("close")};return P({open:q,setFormData:D,getDetail:I}),(o,e)=>{const s=Q,d=X,m=Y,$=V("router-link"),g=Z,K=ee,L=V("upload-filled"),H=ue,M=W,O=oe;return i(),ie("div",pe,[l(te,{ref_key:"popupRef",ref:f,title:u(R),async:!0,width:"550px",onConfirm:j,onClose:S,button:u(r)=="audit"},{default:a(()=>[l(O,{ref_key:"formRef",ref:v,model:u(t),"label-width":"90px",rules:u(U)},{default:a(()=>[l(d,{label:"\u8BA2\u5355\u7F16\u53F7",prop:"order_sn"},{default:a(()=>[l(s,{readonly:"",modelValue:u(t).order_sn,"onUpdate:modelValue":e[0]||(e[0]=n=>u(t).order_sn=n),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u8BA2\u5355\u7F16\u53F7"},null,8,["modelValue"])]),_:1}),l(d,{label:"\u63D0\u73B0\u91D1\u989D",prop:"amount"},{default:a(()=>[l(s,{readonly:"",modelValue:u(t).amount,"onUpdate:modelValue":e[1]||(e[1]=n=>u(t).amount=n),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u63D0\u73B0\u91D1\u989D"},null,8,["modelValue"])]),_:1}),l(d,{label:"\u7535\u5B50\u53D1\u7968",prop:"invoice"},{default:a(()=>[u(t).invoice?(i(),p(m,{key:0,type:"primary",link:"",onClick:e[2]||(e[2]=n=>k(u(t).invoice))},{default:a(()=>[c("\u67E5\u770B\u53D1\u7968")]),_:1})):(i(),p(m,{key:1,link:""},{default:a(()=>[c("\u6682\u65E0\u53D1\u7968")]),_:1}))]),_:1}),l(d,{label:"\u4F59\u989D\u8BE6\u60C5",prop:"amount"},{default:a(()=>[l(m,{type:"primary",link:""},{default:a(()=>[l($,{to:{path:u(ne)("finance.account_log/lists"),query:{company_id:u(t).company_id,s_date:u(t).s_date,e_date:u(t).e_date}}},{default:a(()=>[c("\u67E5\u770B\u660E\u7EC6")]),_:1},8,["to"])]),_:1})]),_:1}),l(d,{label:"\u5BA1\u6838",prop:"status"},{default:a(()=>[l(K,{modelValue:u(t).status,"onUpdate:modelValue":e[3]||(e[3]=n=>u(t).status=n),disabled:u(r)!="audit"},{default:a(()=>[l(g,{label:1},{default:a(()=>[c("\u901A\u8FC7")]),_:1}),l(g,{label:2},{default:a(()=>[c("\u62D2\u7EDD")]),_:1})]),_:1},8,["modelValue","disabled"])]),_:1}),u(t).status==2?(i(),p(d,{key:0,label:"\u5907\u6CE8",prop:"deny_desc",readonly:u(r)!="audit"},{default:a(()=>[l(s,{modelValue:u(t).deny_desc,"onUpdate:modelValue":e[4]||(e[4]=n=>u(t).deny_desc=n),clearable:"",type:"textarea",placeholder:"\u8BF7\u8F93\u5165\u5907\u6CE8"},null,8,["modelValue"])]),_:1},8,["readonly"])):(i(),p(d,{key:1,label:"\u8F6C\u8D26\u51ED\u8BC1",prop:"transfer_voucher"},{default:a(()=>[u(r)=="audit"?(i(),p(M,{key:0,class:"upload-demo",style:{width:"100%"},drag:"",accept:b.join(", "),headers:{Token:u(G).token},action:u(F),limit:1,"on-success":T,"on-exceed":N,"before-upload":J,ref_key:"upload",ref:_},{tip:a(()=>[_e]),default:a(()=>[l(H,{class:"el-icon--upload"},{default:a(()=>[l(L)]),_:1}),ce]),_:1},8,["accept","headers","action"])):(i(),p(m,{key:1,type:"primary",link:"",onClick:e[5]||(e[5]=n=>k(u(t).transfer_voucher))},{default:a(()=>[c(" \u67E5\u770B\u51ED\u8BC1 ")]),_:1}))]),_:1}))]),_:1},8,["model","rules"])]),_:1},8,["title","button"])])}}});export{be as _}; diff --git a/public/admin/assets/auth.1814f82d.js b/public/admin/assets/auth.1814f82d.js new file mode 100644 index 000000000..78bbd96f5 --- /dev/null +++ b/public/admin/assets/auth.1814f82d.js @@ -0,0 +1 @@ +import"./auth.vue_vue_type_script_setup_true_lang.439c758a.js";import{_ as P}from"./auth.vue_vue_type_script_setup_true_lang.439c758a.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.aa9bb752.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.fa872673.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./user_menu.121458b5.js";import"./user_role.cb302517.js";export{P as default}; diff --git a/public/admin/assets/auth.50325803.js b/public/admin/assets/auth.50325803.js new file mode 100644 index 000000000..6d821649f --- /dev/null +++ b/public/admin/assets/auth.50325803.js @@ -0,0 +1 @@ +import"./auth.vue_vue_type_script_setup_true_lang.4521aeca.js";import{_ as P}from"./auth.vue_vue_type_script_setup_true_lang.4521aeca.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.ed71ac09.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.b940d6e3.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./user_menu.aabbc7a8.js";import"./user_role.813f0de8.js";export{P as default}; diff --git a/public/admin/assets/auth.7fe30803.js b/public/admin/assets/auth.7fe30803.js new file mode 100644 index 000000000..7749337ed --- /dev/null +++ b/public/admin/assets/auth.7fe30803.js @@ -0,0 +1 @@ +import"./auth.vue_vue_type_script_setup_true_lang.5b6b2619.js";import{_ as P}from"./auth.vue_vue_type_script_setup_true_lang.5b6b2619.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./role.8d2a6d5e.js";import"./index.37f7aea6.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.5759a1a6.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./menu.90f89e87.js";export{P as default}; diff --git a/public/admin/assets/auth.cbb77985.js b/public/admin/assets/auth.cbb77985.js new file mode 100644 index 000000000..cd4452d2b --- /dev/null +++ b/public/admin/assets/auth.cbb77985.js @@ -0,0 +1 @@ +import"./auth.vue_vue_type_script_setup_true_lang.67e5f714.js";import{_ as P}from"./auth.vue_vue_type_script_setup_true_lang.67e5f714.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./role.41d5883e.js";import"./index.aa9bb752.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.fa872673.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./menu.072eb1d3.js";export{P as default}; diff --git a/public/admin/assets/auth.e3e85e12.js b/public/admin/assets/auth.e3e85e12.js new file mode 100644 index 000000000..a20c082f0 --- /dev/null +++ b/public/admin/assets/auth.e3e85e12.js @@ -0,0 +1 @@ +import"./auth.vue_vue_type_script_setup_true_lang.61ccbfa5.js";import{_ as P}from"./auth.vue_vue_type_script_setup_true_lang.61ccbfa5.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./role.1c72c4c7.js";import"./index.ed71ac09.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.b940d6e3.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./menu.a3f35001.js";export{P as default}; diff --git a/public/admin/assets/auth.fbae141a.js b/public/admin/assets/auth.fbae141a.js new file mode 100644 index 000000000..0d714a828 --- /dev/null +++ b/public/admin/assets/auth.fbae141a.js @@ -0,0 +1 @@ +import"./auth.vue_vue_type_script_setup_true_lang.5dbd5500.js";import{_ as P}from"./auth.vue_vue_type_script_setup_true_lang.5dbd5500.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.37f7aea6.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.5759a1a6.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./user_menu.a3635908.js";import"./user_role.942482ea.js";export{P as default}; diff --git a/public/admin/assets/auth.vue_vue_type_script_setup_true_lang.439c758a.js b/public/admin/assets/auth.vue_vue_type_script_setup_true_lang.439c758a.js new file mode 100644 index 000000000..95efc29f8 --- /dev/null +++ b/public/admin/assets/auth.vue_vue_type_script_setup_true_lang.439c758a.js @@ -0,0 +1 @@ +import{F as T,V as P,C as q,E as H,D as I,Q as O}from"./element-plus.4328d892.js";import"./index.aa9bb752.js";import{P as Q}from"./index.fa872673.js";import"./lodash.08438971.js";import{e as $}from"./user_menu.121458b5.js";import{b as j}from"./user_role.cb302517.js";import{d as z,s as f,r as c,$ as G,o as v,c as J,U as a,L as i,M as W,K as X,u as r,a as k,k as Y,n as y}from"./@vue.51d7f2d8.js";const Z={class:"edit-popup"},ce=z({__name:"auth",emits:["success","close"],setup(ee,{expose:C,emit:_}){const o=f(),h=f(),d=f(),x=c(!1),u=c(!0),m=c(!1),b=c([]),p=c([]),l=G({id:"",name:"",desc:"",sort:0,menu_arr:[]}),g={name:[{required:!0,message:"\u8BF7\u8F93\u5165\u540D\u79F0",trigger:["blur"]}]},E=()=>{m.value=!0,$().then(s=>{for(let e of s.lists)if(e.notes?e.nameAndNotes=e.name+" ("+e.notes+")":e.nameAndNotes=e.name,e.children)for(let t of e.children)t.notes?t.nameAndNotes=t.name+" ("+t.notes+")":t.nameAndNotes=t.name;p.value=s.lists,y(()=>{D()}),m.value=!1})},A=()=>{var t,n;const s=(t=o.value)==null?void 0:t.getCheckedKeys(),e=(n=o.value)==null?void 0:n.getHalfCheckedKeys();return s==null||s.unshift.apply(s,e),s},D=()=>{l.menu_arr.forEach(s=>{y(()=>{var e;(e=o.value)==null||e.setChecked(s,!0,!1)})})},R=s=>{const e=p.value;for(let t=0;t{var e,t;s?(e=o.value)==null||e.setCheckedKeys(b.value.map(n=>n.id)):(t=o.value)==null||t.setCheckedKeys([])},F=async()=>{var s,e;await((s=h.value)==null?void 0:s.validate()),l.menu_arr=A(),await j(l),(e=d.value)==null||e.close(),_("success")},K=()=>{_("close")},N=()=>{var s;(s=d.value)==null||s.open()},B=async s=>{for(const e in l)s[e]!=null&&s[e]!=null&&(l[e]=s[e])};return E(),C({open:N,setFormData:B}),(s,e)=>{const t=T,n=P,V=q,L=H,S=I,U=O;return v(),J("div",Z,[a(Q,{ref_key:"popupRef",ref:d,title:"\u5206\u914D\u6743\u9650",async:!0,width:"550px",onConfirm:F,onClose:K},{default:i(()=>[W((v(),X(S,{class:"ls-form",ref_key:"formRef",ref:h,rules:g,model:r(l),"label-width":"60px"},{default:i(()=>[a(L,{class:"h-[400px] sm:h-[600px]"},{default:i(()=>[a(V,{label:"\u6743\u9650",prop:"menu_arr"},{default:i(()=>[k("div",null,[a(t,{label:"\u5C55\u5F00/\u6298\u53E0",onChange:R}),a(t,{label:"\u5168\u9009/\u4E0D\u5168\u9009",onChange:w}),a(t,{modelValue:r(u),"onUpdate:modelValue":e[0]||(e[0]=M=>Y(u)?u.value=M:null),label:"\u7236\u5B50\u8054\u52A8"},null,8,["modelValue"]),k("div",null,[a(n,{ref_key:"treeRef",ref:o,data:r(p),props:{label:"nameAndNotes",children:"children"},"check-strictly":!r(u),"node-key":"id","default-expand-all":r(x),"show-checkbox":""},null,8,["data","check-strictly","default-expand-all"])])])]),_:1})]),_:1})]),_:1},8,["model"])),[[U,r(m)]])]),_:1},512)])}}});export{ce as _}; diff --git a/public/admin/assets/auth.vue_vue_type_script_setup_true_lang.4521aeca.js b/public/admin/assets/auth.vue_vue_type_script_setup_true_lang.4521aeca.js new file mode 100644 index 000000000..de8cfec42 --- /dev/null +++ b/public/admin/assets/auth.vue_vue_type_script_setup_true_lang.4521aeca.js @@ -0,0 +1 @@ +import{F as T,V as P,C as q,E as H,D as I,Q as O}from"./element-plus.4328d892.js";import"./index.ed71ac09.js";import{P as Q}from"./index.b940d6e3.js";import"./lodash.08438971.js";import{e as $}from"./user_menu.aabbc7a8.js";import{b as j}from"./user_role.813f0de8.js";import{d as z,s as f,r as c,$ as G,o as v,c as J,U as a,L as i,M as W,K as X,u as r,a as k,k as Y,n as y}from"./@vue.51d7f2d8.js";const Z={class:"edit-popup"},ce=z({__name:"auth",emits:["success","close"],setup(ee,{expose:C,emit:_}){const o=f(),h=f(),d=f(),x=c(!1),u=c(!0),m=c(!1),b=c([]),p=c([]),l=G({id:"",name:"",desc:"",sort:0,menu_arr:[]}),g={name:[{required:!0,message:"\u8BF7\u8F93\u5165\u540D\u79F0",trigger:["blur"]}]},E=()=>{m.value=!0,$().then(s=>{for(let e of s.lists)if(e.notes?e.nameAndNotes=e.name+" ("+e.notes+")":e.nameAndNotes=e.name,e.children)for(let t of e.children)t.notes?t.nameAndNotes=t.name+" ("+t.notes+")":t.nameAndNotes=t.name;p.value=s.lists,y(()=>{D()}),m.value=!1})},A=()=>{var t,n;const s=(t=o.value)==null?void 0:t.getCheckedKeys(),e=(n=o.value)==null?void 0:n.getHalfCheckedKeys();return s==null||s.unshift.apply(s,e),s},D=()=>{l.menu_arr.forEach(s=>{y(()=>{var e;(e=o.value)==null||e.setChecked(s,!0,!1)})})},R=s=>{const e=p.value;for(let t=0;t{var e,t;s?(e=o.value)==null||e.setCheckedKeys(b.value.map(n=>n.id)):(t=o.value)==null||t.setCheckedKeys([])},F=async()=>{var s,e;await((s=h.value)==null?void 0:s.validate()),l.menu_arr=A(),await j(l),(e=d.value)==null||e.close(),_("success")},K=()=>{_("close")},N=()=>{var s;(s=d.value)==null||s.open()},B=async s=>{for(const e in l)s[e]!=null&&s[e]!=null&&(l[e]=s[e])};return E(),C({open:N,setFormData:B}),(s,e)=>{const t=T,n=P,V=q,L=H,S=I,U=O;return v(),J("div",Z,[a(Q,{ref_key:"popupRef",ref:d,title:"\u5206\u914D\u6743\u9650",async:!0,width:"550px",onConfirm:F,onClose:K},{default:i(()=>[W((v(),X(S,{class:"ls-form",ref_key:"formRef",ref:h,rules:g,model:r(l),"label-width":"60px"},{default:i(()=>[a(L,{class:"h-[400px] sm:h-[600px]"},{default:i(()=>[a(V,{label:"\u6743\u9650",prop:"menu_arr"},{default:i(()=>[k("div",null,[a(t,{label:"\u5C55\u5F00/\u6298\u53E0",onChange:R}),a(t,{label:"\u5168\u9009/\u4E0D\u5168\u9009",onChange:w}),a(t,{modelValue:r(u),"onUpdate:modelValue":e[0]||(e[0]=M=>Y(u)?u.value=M:null),label:"\u7236\u5B50\u8054\u52A8"},null,8,["modelValue"]),k("div",null,[a(n,{ref_key:"treeRef",ref:o,data:r(p),props:{label:"nameAndNotes",children:"children"},"check-strictly":!r(u),"node-key":"id","default-expand-all":r(x),"show-checkbox":""},null,8,["data","check-strictly","default-expand-all"])])])]),_:1})]),_:1})]),_:1},8,["model"])),[[U,r(m)]])]),_:1},512)])}}});export{ce as _}; diff --git a/public/admin/assets/auth.vue_vue_type_script_setup_true_lang.5b6b2619.js b/public/admin/assets/auth.vue_vue_type_script_setup_true_lang.5b6b2619.js new file mode 100644 index 000000000..24be1d3d3 --- /dev/null +++ b/public/admin/assets/auth.vue_vue_type_script_setup_true_lang.5b6b2619.js @@ -0,0 +1 @@ +import{F as P,V as U,C as q,E as H,D as I,Q as O}from"./element-plus.4328d892.js";import{a as Q}from"./role.8d2a6d5e.js";import{P as $}from"./index.5759a1a6.js";import{t as j}from"./index.37f7aea6.js";import{m as z}from"./menu.90f89e87.js";import{d as G,s as f,r as u,$ as J,o as k,c as W,U as s,L as d,M as X,K as Y,u as c,a as y,k as Z,n as C}from"./@vue.51d7f2d8.js";const ee={class:"edit-popup"},ue=G({__name:"auth",emits:["success","close"],setup(le,{expose:x,emit:_}){const o=f(),h=f(),i=f(),b=u(!1),r=u(!0),m=u(!1),v=u([]),p=u([]),a=J({id:"",name:"",desc:"",sort:0,menu_id:[]}),g={name:[{required:!0,message:"\u8BF7\u8F93\u5165\u540D\u79F0",trigger:["blur"]}]},E=()=>{m.value=!0,z().then(e=>{p.value=e,v.value=j(e),C(()=>{w()}),m.value=!1})},D=()=>{var t,n;const e=(t=o.value)==null?void 0:t.getCheckedKeys(),l=(n=o.value)==null?void 0:n.getHalfCheckedKeys();return e==null||e.unshift.apply(e,l),e},w=()=>{a.menu_id.forEach(e=>{C(()=>{var l;(l=o.value)==null||l.setChecked(e,!0,!1)})})},F=e=>{const l=p.value;for(let t=0;t{var l,t;e?(l=o.value)==null||l.setCheckedKeys(v.value.map(n=>n.id)):(t=o.value)==null||t.setCheckedKeys([])},A=async()=>{var e,l;await((e=h.value)==null?void 0:e.validate()),a.menu_id=D(),await Q(a),(l=i.value)==null||l.close(),_("success")},K=()=>{_("close")},B=()=>{var e;(e=i.value)==null||e.open()},V=async e=>{for(const l in a)e[l]!=null&&e[l]!=null&&(a[l]=e[l])};return E(),x({open:B,setFormData:V}),(e,l)=>{const t=P,n=U,S=q,T=H,L=I,M=O;return k(),W("div",ee,[s($,{ref_key:"popupRef",ref:i,title:"\u5206\u914D\u6743\u9650",async:!0,width:"550px",onConfirm:A,onClose:K},{default:d(()=>[X((k(),Y(L,{class:"ls-form",ref_key:"formRef",ref:h,rules:g,model:c(a),"label-width":"60px"},{default:d(()=>[s(T,{class:"h-[400px] sm:h-[600px]"},{default:d(()=>[s(S,{label:"\u6743\u9650",prop:"menu_id"},{default:d(()=>[y("div",null,[s(t,{label:"\u5C55\u5F00/\u6298\u53E0",onChange:F}),s(t,{label:"\u5168\u9009/\u4E0D\u5168\u9009",onChange:R}),s(t,{modelValue:c(r),"onUpdate:modelValue":l[0]||(l[0]=N=>Z(r)?r.value=N:null),label:"\u7236\u5B50\u8054\u52A8"},null,8,["modelValue"]),y("div",null,[s(n,{ref_key:"treeRef",ref:o,data:c(p),props:{label:"name",children:"children"},"check-strictly":!c(r),"node-key":"id","default-expand-all":c(b),"show-checkbox":""},null,8,["data","check-strictly","default-expand-all"])])])]),_:1})]),_:1})]),_:1},8,["model"])),[[M,c(m)]])]),_:1},512)])}}});export{ue as _}; diff --git a/public/admin/assets/auth.vue_vue_type_script_setup_true_lang.5dbd5500.js b/public/admin/assets/auth.vue_vue_type_script_setup_true_lang.5dbd5500.js new file mode 100644 index 000000000..d5718b770 --- /dev/null +++ b/public/admin/assets/auth.vue_vue_type_script_setup_true_lang.5dbd5500.js @@ -0,0 +1 @@ +import{F as T,V as P,C as q,E as H,D as I,Q as O}from"./element-plus.4328d892.js";import"./index.37f7aea6.js";import{P as Q}from"./index.5759a1a6.js";import"./lodash.08438971.js";import{e as $}from"./user_menu.a3635908.js";import{b as j}from"./user_role.942482ea.js";import{d as z,s as f,r as c,$ as G,o as v,c as J,U as a,L as i,M as W,K as X,u as r,a as k,k as Y,n as y}from"./@vue.51d7f2d8.js";const Z={class:"edit-popup"},ce=z({__name:"auth",emits:["success","close"],setup(ee,{expose:C,emit:_}){const o=f(),h=f(),d=f(),x=c(!1),u=c(!0),m=c(!1),b=c([]),p=c([]),l=G({id:"",name:"",desc:"",sort:0,menu_arr:[]}),g={name:[{required:!0,message:"\u8BF7\u8F93\u5165\u540D\u79F0",trigger:["blur"]}]},E=()=>{m.value=!0,$().then(s=>{for(let e of s.lists)if(e.notes?e.nameAndNotes=e.name+" ("+e.notes+")":e.nameAndNotes=e.name,e.children)for(let t of e.children)t.notes?t.nameAndNotes=t.name+" ("+t.notes+")":t.nameAndNotes=t.name;p.value=s.lists,y(()=>{D()}),m.value=!1})},A=()=>{var t,n;const s=(t=o.value)==null?void 0:t.getCheckedKeys(),e=(n=o.value)==null?void 0:n.getHalfCheckedKeys();return s==null||s.unshift.apply(s,e),s},D=()=>{l.menu_arr.forEach(s=>{y(()=>{var e;(e=o.value)==null||e.setChecked(s,!0,!1)})})},R=s=>{const e=p.value;for(let t=0;t{var e,t;s?(e=o.value)==null||e.setCheckedKeys(b.value.map(n=>n.id)):(t=o.value)==null||t.setCheckedKeys([])},F=async()=>{var s,e;await((s=h.value)==null?void 0:s.validate()),l.menu_arr=A(),await j(l),(e=d.value)==null||e.close(),_("success")},K=()=>{_("close")},N=()=>{var s;(s=d.value)==null||s.open()},B=async s=>{for(const e in l)s[e]!=null&&s[e]!=null&&(l[e]=s[e])};return E(),C({open:N,setFormData:B}),(s,e)=>{const t=T,n=P,V=q,L=H,S=I,U=O;return v(),J("div",Z,[a(Q,{ref_key:"popupRef",ref:d,title:"\u5206\u914D\u6743\u9650",async:!0,width:"550px",onConfirm:F,onClose:K},{default:i(()=>[W((v(),X(S,{class:"ls-form",ref_key:"formRef",ref:h,rules:g,model:r(l),"label-width":"60px"},{default:i(()=>[a(L,{class:"h-[400px] sm:h-[600px]"},{default:i(()=>[a(V,{label:"\u6743\u9650",prop:"menu_arr"},{default:i(()=>[k("div",null,[a(t,{label:"\u5C55\u5F00/\u6298\u53E0",onChange:R}),a(t,{label:"\u5168\u9009/\u4E0D\u5168\u9009",onChange:w}),a(t,{modelValue:r(u),"onUpdate:modelValue":e[0]||(e[0]=M=>Y(u)?u.value=M:null),label:"\u7236\u5B50\u8054\u52A8"},null,8,["modelValue"]),k("div",null,[a(n,{ref_key:"treeRef",ref:o,data:r(p),props:{label:"nameAndNotes",children:"children"},"check-strictly":!r(u),"node-key":"id","default-expand-all":r(x),"show-checkbox":""},null,8,["data","check-strictly","default-expand-all"])])])]),_:1})]),_:1})]),_:1},8,["model"])),[[U,r(m)]])]),_:1},512)])}}});export{ce as _}; diff --git a/public/admin/assets/auth.vue_vue_type_script_setup_true_lang.61ccbfa5.js b/public/admin/assets/auth.vue_vue_type_script_setup_true_lang.61ccbfa5.js new file mode 100644 index 000000000..4ff0d6d4e --- /dev/null +++ b/public/admin/assets/auth.vue_vue_type_script_setup_true_lang.61ccbfa5.js @@ -0,0 +1 @@ +import{F as P,V as U,C as q,E as H,D as I,Q as O}from"./element-plus.4328d892.js";import{a as Q}from"./role.1c72c4c7.js";import{P as $}from"./index.b940d6e3.js";import{t as j}from"./index.ed71ac09.js";import{m as z}from"./menu.a3f35001.js";import{d as G,s as f,r as u,$ as J,o as k,c as W,U as s,L as d,M as X,K as Y,u as c,a as y,k as Z,n as C}from"./@vue.51d7f2d8.js";const ee={class:"edit-popup"},ue=G({__name:"auth",emits:["success","close"],setup(le,{expose:x,emit:_}){const o=f(),h=f(),i=f(),b=u(!1),r=u(!0),m=u(!1),v=u([]),p=u([]),a=J({id:"",name:"",desc:"",sort:0,menu_id:[]}),g={name:[{required:!0,message:"\u8BF7\u8F93\u5165\u540D\u79F0",trigger:["blur"]}]},E=()=>{m.value=!0,z().then(e=>{p.value=e,v.value=j(e),C(()=>{w()}),m.value=!1})},D=()=>{var t,n;const e=(t=o.value)==null?void 0:t.getCheckedKeys(),l=(n=o.value)==null?void 0:n.getHalfCheckedKeys();return e==null||e.unshift.apply(e,l),e},w=()=>{a.menu_id.forEach(e=>{C(()=>{var l;(l=o.value)==null||l.setChecked(e,!0,!1)})})},F=e=>{const l=p.value;for(let t=0;t{var l,t;e?(l=o.value)==null||l.setCheckedKeys(v.value.map(n=>n.id)):(t=o.value)==null||t.setCheckedKeys([])},A=async()=>{var e,l;await((e=h.value)==null?void 0:e.validate()),a.menu_id=D(),await Q(a),(l=i.value)==null||l.close(),_("success")},K=()=>{_("close")},B=()=>{var e;(e=i.value)==null||e.open()},V=async e=>{for(const l in a)e[l]!=null&&e[l]!=null&&(a[l]=e[l])};return E(),x({open:B,setFormData:V}),(e,l)=>{const t=P,n=U,S=q,T=H,L=I,M=O;return k(),W("div",ee,[s($,{ref_key:"popupRef",ref:i,title:"\u5206\u914D\u6743\u9650",async:!0,width:"550px",onConfirm:A,onClose:K},{default:d(()=>[X((k(),Y(L,{class:"ls-form",ref_key:"formRef",ref:h,rules:g,model:c(a),"label-width":"60px"},{default:d(()=>[s(T,{class:"h-[400px] sm:h-[600px]"},{default:d(()=>[s(S,{label:"\u6743\u9650",prop:"menu_id"},{default:d(()=>[y("div",null,[s(t,{label:"\u5C55\u5F00/\u6298\u53E0",onChange:F}),s(t,{label:"\u5168\u9009/\u4E0D\u5168\u9009",onChange:R}),s(t,{modelValue:c(r),"onUpdate:modelValue":l[0]||(l[0]=N=>Z(r)?r.value=N:null),label:"\u7236\u5B50\u8054\u52A8"},null,8,["modelValue"]),y("div",null,[s(n,{ref_key:"treeRef",ref:o,data:c(p),props:{label:"name",children:"children"},"check-strictly":!c(r),"node-key":"id","default-expand-all":c(b),"show-checkbox":""},null,8,["data","check-strictly","default-expand-all"])])])]),_:1})]),_:1})]),_:1},8,["model"])),[[M,c(m)]])]),_:1},512)])}}});export{ue as _}; diff --git a/public/admin/assets/auth.vue_vue_type_script_setup_true_lang.67e5f714.js b/public/admin/assets/auth.vue_vue_type_script_setup_true_lang.67e5f714.js new file mode 100644 index 000000000..cb5023082 --- /dev/null +++ b/public/admin/assets/auth.vue_vue_type_script_setup_true_lang.67e5f714.js @@ -0,0 +1 @@ +import{F as P,V as U,C as q,E as H,D as I,Q as O}from"./element-plus.4328d892.js";import{a as Q}from"./role.41d5883e.js";import{P as $}from"./index.fa872673.js";import{t as j}from"./index.aa9bb752.js";import{m as z}from"./menu.072eb1d3.js";import{d as G,s as f,r as u,$ as J,o as k,c as W,U as s,L as d,M as X,K as Y,u as c,a as y,k as Z,n as C}from"./@vue.51d7f2d8.js";const ee={class:"edit-popup"},ue=G({__name:"auth",emits:["success","close"],setup(le,{expose:x,emit:_}){const o=f(),h=f(),i=f(),b=u(!1),r=u(!0),m=u(!1),v=u([]),p=u([]),a=J({id:"",name:"",desc:"",sort:0,menu_id:[]}),g={name:[{required:!0,message:"\u8BF7\u8F93\u5165\u540D\u79F0",trigger:["blur"]}]},E=()=>{m.value=!0,z().then(e=>{p.value=e,v.value=j(e),C(()=>{w()}),m.value=!1})},D=()=>{var t,n;const e=(t=o.value)==null?void 0:t.getCheckedKeys(),l=(n=o.value)==null?void 0:n.getHalfCheckedKeys();return e==null||e.unshift.apply(e,l),e},w=()=>{a.menu_id.forEach(e=>{C(()=>{var l;(l=o.value)==null||l.setChecked(e,!0,!1)})})},F=e=>{const l=p.value;for(let t=0;t{var l,t;e?(l=o.value)==null||l.setCheckedKeys(v.value.map(n=>n.id)):(t=o.value)==null||t.setCheckedKeys([])},A=async()=>{var e,l;await((e=h.value)==null?void 0:e.validate()),a.menu_id=D(),await Q(a),(l=i.value)==null||l.close(),_("success")},K=()=>{_("close")},B=()=>{var e;(e=i.value)==null||e.open()},V=async e=>{for(const l in a)e[l]!=null&&e[l]!=null&&(a[l]=e[l])};return E(),x({open:B,setFormData:V}),(e,l)=>{const t=P,n=U,S=q,T=H,L=I,M=O;return k(),W("div",ee,[s($,{ref_key:"popupRef",ref:i,title:"\u5206\u914D\u6743\u9650",async:!0,width:"550px",onConfirm:A,onClose:K},{default:d(()=>[X((k(),Y(L,{class:"ls-form",ref_key:"formRef",ref:h,rules:g,model:c(a),"label-width":"60px"},{default:d(()=>[s(T,{class:"h-[400px] sm:h-[600px]"},{default:d(()=>[s(S,{label:"\u6743\u9650",prop:"menu_id"},{default:d(()=>[y("div",null,[s(t,{label:"\u5C55\u5F00/\u6298\u53E0",onChange:F}),s(t,{label:"\u5168\u9009/\u4E0D\u5168\u9009",onChange:R}),s(t,{modelValue:c(r),"onUpdate:modelValue":l[0]||(l[0]=N=>Z(r)?r.value=N:null),label:"\u7236\u5B50\u8054\u52A8"},null,8,["modelValue"]),y("div",null,[s(n,{ref_key:"treeRef",ref:o,data:c(p),props:{label:"name",children:"children"},"check-strictly":!c(r),"node-key":"id","default-expand-all":c(b),"show-checkbox":""},null,8,["data","check-strictly","default-expand-all"])])])]),_:1})]),_:1})]),_:1},8,["model"])),[[M,c(m)]])]),_:1},512)])}}});export{ue as _}; diff --git a/public/admin/assets/balance_details.13ed1501.js b/public/admin/assets/balance_details.13ed1501.js new file mode 100644 index 000000000..dd6e0adc4 --- /dev/null +++ b/public/admin/assets/balance_details.13ed1501.js @@ -0,0 +1 @@ +import{S as W,a1 as X,a2 as Y,B as Z,C as ee,M as te,N as ae,w as oe,D as ne,I as se,O as le,P as ue,Q as re}from"./element-plus.4328d892.js";import{_ as ie}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{_ as me}from"./index.ed71ac09.js";import{_ as pe}from"./index.vue_vue_type_script_setup_true_lang.5c604000.js";import{_ as _e}from"./index.vue_vue_type_script_setup_true_lang.3ab411d6.js";import{d as P,$ as ce,r as de,j as fe,o as p,c as b,U as e,L as n,T as q,a7 as z,u as a,K as h,a8 as ge,R as F,M as ye,a as c,S as g,O as be,_ as he,k as Fe}from"./@vue.51d7f2d8.js";import{a as R,g as we,b as Ee}from"./finance.5215ca02.js";import{a as Ce}from"./useDictOptions.8d37e54b.js";import{u as Be}from"./usePaging.2ad8e1e6.js";import{u as De}from"./vue-router.9f65afb1.js";import{_ as ke}from"./people.vue_vue_type_script_setup_true_name_peopleMoney_lang.685e727c.js";import{a as ve}from"./user_role.813f0de8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.b940d6e3.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";const xe={class:"flex items-center"},Te={class:"text-success"},Ve={class:"flex justify-end mt-4"},Le=P({name:"articleLists"}),Bt=P({...Le,setup(Ue){var B,D,k,v,x,T;const u=De(),s=ce({user_info:"",change_type:"",start_time:"",end_time:"",company_id:""});(B=u.query)!=null&&B.company_id&&(s.company_id=(D=u.query)==null?void 0:D.company_id),(k=u.query)!=null&&k.s_date&&(s.start_time=(v=u.query)==null?void 0:v.s_date),(x=u.query)!=null&&x.e_date&&(s.end_time=(T=u.query)==null?void 0:T.e_date);const w=de([]);(async()=>{let i=await we({company_id:s.company_id}),o=await ve({});i=i.map(m=>{let d=o.lists.find(y=>y.id==m.group_id);return d.name?m.group_name=d.name:m.group_name="\u6682\u65E0\u89D2\u8272",m}),w.value=i})();const{pager:r,getLists:E,resetPage:C,resetParams:S}=Be({fetchFun:R,params:s}),{optionsData:$}=Ce({change_type:{api:Ee}}),I=i=>{let o="#333";switch(i){case 100:o="#f56c6c";break;case 101:o="#f56c6c";break;case 200:o="#409eff";break;case 201:o="#409eff";break;case 202:o="#67c23a";break;case 203:o="#e6a23c";break}return o};return fe(()=>{E()}),(i,o)=>{const m=X,d=Y,y=W,K=Z,f=ee,V=te,N=ae,O=_e,L=oe,M=pe,j=ne,U=se,l=le,Q=me,G=ue,H=ie,J=re;return p(),b("div",null,[e(d,{gutter:16},{default:n(()=>[(p(!0),b(q,null,z(a(w),t=>(p(),h(m,{span:8,key:t.id},{default:n(()=>[e(ke,{datas:t},null,8,["datas"])]),_:2},1024))),128))]),_:1}),e(U,{class:"!border-none mt-4",shadow:"never"},{default:n(()=>[e(y,{type:"warning",title:"\u6E29\u99A8\u63D0\u793A\uFF1A\u7528\u6237\u8D26\u6237\u53D8\u52A8\u8BB0\u5F55",closable:!1,"show-icon":""}),e(j,{ref:"formRef",class:"mb-[-16px] mt-[16px]",model:a(s),inline:!0},{default:n(()=>[e(f,{label:"\u7528\u6237\u4FE1\u606F"},{default:n(()=>[e(K,{class:"w-[280px]",modelValue:a(s).user_info,"onUpdate:modelValue":o[0]||(o[0]=t=>a(s).user_info=t),placeholder:"\u8BF7\u8F93\u5165\u7528\u6237\u7F16\u53F7/\u6635\u79F0/\u624B\u673A\u53F7",clearable:"",onKeyup:ge(a(C),["enter"])},null,8,["modelValue","onKeyup"])]),_:1}),e(f,{label:"\u53D8\u52A8\u7C7B\u578B"},{default:n(()=>[e(N,{class:"w-[280px]",modelValue:a(s).change_type,"onUpdate:modelValue":o[1]||(o[1]=t=>a(s).change_type=t)},{default:n(()=>[e(V,{label:"\u5168\u90E8",value:""}),(p(!0),b(q,null,z(a($).change_type,(t,_)=>(p(),h(V,{key:_,label:t,value:_},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1}),e(f,{label:"\u8BB0\u5F55\u65F6\u95F4"},{default:n(()=>[e(O,{startTime:a(s).start_time,"onUpdate:startTime":o[2]||(o[2]=t=>a(s).start_time=t),endTime:a(s).end_time,"onUpdate:endTime":o[3]||(o[3]=t=>a(s).end_time=t)},null,8,["startTime","endTime"])]),_:1}),e(f,null,{default:n(()=>[e(L,{type:"primary",onClick:a(C)},{default:n(()=>[F("\u67E5\u8BE2")]),_:1},8,["onClick"]),e(L,{onClick:a(S)},{default:n(()=>[F("\u91CD\u7F6E")]),_:1},8,["onClick"]),e(M,{class:"ml-2.5","fetch-fun":a(R),params:a(s),"page-size":a(r).size},null,8,["fetch-fun","params","page-size"])]),_:1})]),_:1},8,["model"])]),_:1}),e(U,{class:"!border-none mt-4",shadow:"never"},{default:n(()=>[ye((p(),h(G,{size:"large",data:a(r).lists},{default:n(()=>[e(l,{label:"ID",prop:"id","min-width":"80"}),e(l,{label:"\u7528\u6237\u7F16\u53F7",prop:"user_info.sn","min-width":"100"}),e(l,{label:"\u5F52\u5C5E\u516C\u53F8",prop:"company_info.company_name","min-width":"160"}),e(l,{label:"\u7528\u6237\u6635\u79F0","min-width":"100"},{default:n(({row:t})=>{var _,A;return[c("div",xe,[e(Q,{class:"flex-none mr-2",src:(_=t.user_info)==null?void 0:_.avatar,width:40,height:40,"preview-teleported":"",fit:"contain"},null,8,["src"]),F(" "+g((A=t.user_info)==null?void 0:A.nickname),1)])]}),_:1}),e(l,{label:"\u89D2\u8272\u540D\u79F0",prop:"user_info.group_name","min-width":"160"}),e(l,{label:"\u624B\u673A\u53F7\u7801",prop:"user_info.mobile","min-width":"100"}),e(l,{label:"\u53D8\u52A8\u91D1\u989D",prop:"change_amount","min-width":"100"},{default:n(({row:t})=>[c("span",{class:be(["text-warning",{"text-error":t.action==2}])},g(t.change_amount),3)]),_:1}),e(l,{label:"\u5269\u4F59\u91D1\u989D",prop:"left_amount","min-width":"100"},{default:n(({row:t})=>[c("span",Te,g(t.left_amount),1)]),_:1}),e(l,{label:"\u53D8\u52A8\u7C7B\u578B",prop:"change_type_desc","min-width":"120"},{default:n(({row:t})=>[c("span",{style:he({color:I(t.change_type)})},g(t.change_type_desc),5)]),_:1}),e(l,{label:"\u6765\u6E90\u5355\u53F7",prop:"source_sn","min-width":"100"}),e(l,{label:"\u8BB0\u5F55\u65F6\u95F4",prop:"create_time","min-width":"140"})]),_:1},8,["data"])),[[J,a(r).loading]]),c("div",Ve,[e(H,{modelValue:a(r),"onUpdate:modelValue":o[4]||(o[4]=t=>Fe(r)?r.value=t:null),onChange:a(E)},null,8,["modelValue","onChange"])])]),_:1})])}}});export{Bt as default}; diff --git a/public/admin/assets/balance_details.721c8b31.js b/public/admin/assets/balance_details.721c8b31.js new file mode 100644 index 000000000..69d87ced9 --- /dev/null +++ b/public/admin/assets/balance_details.721c8b31.js @@ -0,0 +1 @@ +import{S as W,a1 as X,a2 as Y,B as Z,C as ee,M as te,N as ae,w as oe,D as ne,I as se,O as le,P as ue,Q as re}from"./element-plus.4328d892.js";import{_ as ie}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{_ as me}from"./index.aa9bb752.js";import{_ as pe}from"./index.vue_vue_type_script_setup_true_lang.f3cc5114.js";import{_ as _e}from"./index.vue_vue_type_script_setup_true_lang.3ab411d6.js";import{d as P,$ as ce,r as de,j as fe,o as p,c as b,U as e,L as n,T as q,a7 as z,u as a,K as h,a8 as ge,R as F,M as ye,a as c,S as g,O as be,_ as he,k as Fe}from"./@vue.51d7f2d8.js";import{a as R,g as we,b as Ee}from"./finance.ec5ac162.js";import{a as Ce}from"./useDictOptions.a61fcf9f.js";import{u as Be}from"./usePaging.2ad8e1e6.js";import{u as De}from"./vue-router.9f65afb1.js";import{_ as ke}from"./people.vue_vue_type_script_setup_true_name_peopleMoney_lang.685e727c.js";import{a as ve}from"./user_role.cb302517.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.fa872673.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";const xe={class:"flex items-center"},Te={class:"text-success"},Ve={class:"flex justify-end mt-4"},Le=P({name:"articleLists"}),Bt=P({...Le,setup(Ue){var B,D,k,v,x,T;const u=De(),s=ce({user_info:"",change_type:"",start_time:"",end_time:"",company_id:""});(B=u.query)!=null&&B.company_id&&(s.company_id=(D=u.query)==null?void 0:D.company_id),(k=u.query)!=null&&k.s_date&&(s.start_time=(v=u.query)==null?void 0:v.s_date),(x=u.query)!=null&&x.e_date&&(s.end_time=(T=u.query)==null?void 0:T.e_date);const w=de([]);(async()=>{let i=await we({company_id:s.company_id}),o=await ve({});i=i.map(m=>{let d=o.lists.find(y=>y.id==m.group_id);return d.name?m.group_name=d.name:m.group_name="\u6682\u65E0\u89D2\u8272",m}),w.value=i})();const{pager:r,getLists:E,resetPage:C,resetParams:S}=Be({fetchFun:R,params:s}),{optionsData:$}=Ce({change_type:{api:Ee}}),I=i=>{let o="#333";switch(i){case 100:o="#f56c6c";break;case 101:o="#f56c6c";break;case 200:o="#409eff";break;case 201:o="#409eff";break;case 202:o="#67c23a";break;case 203:o="#e6a23c";break}return o};return fe(()=>{E()}),(i,o)=>{const m=X,d=Y,y=W,K=Z,f=ee,V=te,N=ae,O=_e,L=oe,M=pe,j=ne,U=se,l=le,Q=me,G=ue,H=ie,J=re;return p(),b("div",null,[e(d,{gutter:16},{default:n(()=>[(p(!0),b(q,null,z(a(w),t=>(p(),h(m,{span:8,key:t.id},{default:n(()=>[e(ke,{datas:t},null,8,["datas"])]),_:2},1024))),128))]),_:1}),e(U,{class:"!border-none mt-4",shadow:"never"},{default:n(()=>[e(y,{type:"warning",title:"\u6E29\u99A8\u63D0\u793A\uFF1A\u7528\u6237\u8D26\u6237\u53D8\u52A8\u8BB0\u5F55",closable:!1,"show-icon":""}),e(j,{ref:"formRef",class:"mb-[-16px] mt-[16px]",model:a(s),inline:!0},{default:n(()=>[e(f,{label:"\u7528\u6237\u4FE1\u606F"},{default:n(()=>[e(K,{class:"w-[280px]",modelValue:a(s).user_info,"onUpdate:modelValue":o[0]||(o[0]=t=>a(s).user_info=t),placeholder:"\u8BF7\u8F93\u5165\u7528\u6237\u7F16\u53F7/\u6635\u79F0/\u624B\u673A\u53F7",clearable:"",onKeyup:ge(a(C),["enter"])},null,8,["modelValue","onKeyup"])]),_:1}),e(f,{label:"\u53D8\u52A8\u7C7B\u578B"},{default:n(()=>[e(N,{class:"w-[280px]",modelValue:a(s).change_type,"onUpdate:modelValue":o[1]||(o[1]=t=>a(s).change_type=t)},{default:n(()=>[e(V,{label:"\u5168\u90E8",value:""}),(p(!0),b(q,null,z(a($).change_type,(t,_)=>(p(),h(V,{key:_,label:t,value:_},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1}),e(f,{label:"\u8BB0\u5F55\u65F6\u95F4"},{default:n(()=>[e(O,{startTime:a(s).start_time,"onUpdate:startTime":o[2]||(o[2]=t=>a(s).start_time=t),endTime:a(s).end_time,"onUpdate:endTime":o[3]||(o[3]=t=>a(s).end_time=t)},null,8,["startTime","endTime"])]),_:1}),e(f,null,{default:n(()=>[e(L,{type:"primary",onClick:a(C)},{default:n(()=>[F("\u67E5\u8BE2")]),_:1},8,["onClick"]),e(L,{onClick:a(S)},{default:n(()=>[F("\u91CD\u7F6E")]),_:1},8,["onClick"]),e(M,{class:"ml-2.5","fetch-fun":a(R),params:a(s),"page-size":a(r).size},null,8,["fetch-fun","params","page-size"])]),_:1})]),_:1},8,["model"])]),_:1}),e(U,{class:"!border-none mt-4",shadow:"never"},{default:n(()=>[ye((p(),h(G,{size:"large",data:a(r).lists},{default:n(()=>[e(l,{label:"ID",prop:"id","min-width":"80"}),e(l,{label:"\u7528\u6237\u7F16\u53F7",prop:"user_info.sn","min-width":"100"}),e(l,{label:"\u5F52\u5C5E\u516C\u53F8",prop:"company_info.company_name","min-width":"160"}),e(l,{label:"\u7528\u6237\u6635\u79F0","min-width":"100"},{default:n(({row:t})=>{var _,A;return[c("div",xe,[e(Q,{class:"flex-none mr-2",src:(_=t.user_info)==null?void 0:_.avatar,width:40,height:40,"preview-teleported":"",fit:"contain"},null,8,["src"]),F(" "+g((A=t.user_info)==null?void 0:A.nickname),1)])]}),_:1}),e(l,{label:"\u89D2\u8272\u540D\u79F0",prop:"user_info.group_name","min-width":"160"}),e(l,{label:"\u624B\u673A\u53F7\u7801",prop:"user_info.mobile","min-width":"100"}),e(l,{label:"\u53D8\u52A8\u91D1\u989D",prop:"change_amount","min-width":"100"},{default:n(({row:t})=>[c("span",{class:be(["text-warning",{"text-error":t.action==2}])},g(t.change_amount),3)]),_:1}),e(l,{label:"\u5269\u4F59\u91D1\u989D",prop:"left_amount","min-width":"100"},{default:n(({row:t})=>[c("span",Te,g(t.left_amount),1)]),_:1}),e(l,{label:"\u53D8\u52A8\u7C7B\u578B",prop:"change_type_desc","min-width":"120"},{default:n(({row:t})=>[c("span",{style:he({color:I(t.change_type)})},g(t.change_type_desc),5)]),_:1}),e(l,{label:"\u6765\u6E90\u5355\u53F7",prop:"source_sn","min-width":"100"}),e(l,{label:"\u8BB0\u5F55\u65F6\u95F4",prop:"create_time","min-width":"140"})]),_:1},8,["data"])),[[J,a(r).loading]]),c("div",Ve,[e(H,{modelValue:a(r),"onUpdate:modelValue":o[4]||(o[4]=t=>Fe(r)?r.value=t:null),onChange:a(E)},null,8,["modelValue","onChange"])])]),_:1})])}}});export{Bt as default}; diff --git a/public/admin/assets/balance_details.8ea27267.js b/public/admin/assets/balance_details.8ea27267.js new file mode 100644 index 000000000..6bf3c6d1d --- /dev/null +++ b/public/admin/assets/balance_details.8ea27267.js @@ -0,0 +1 @@ +import{S as W,a1 as X,a2 as Y,B as Z,C as ee,M as te,N as ae,w as oe,D as ne,I as se,O as le,P as ue,Q as re}from"./element-plus.4328d892.js";import{_ as ie}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{_ as me}from"./index.37f7aea6.js";import{_ as pe}from"./index.vue_vue_type_script_setup_true_lang.7ac7ce7d.js";import{_ as _e}from"./index.vue_vue_type_script_setup_true_lang.3ab411d6.js";import{d as P,$ as ce,r as de,j as fe,o as p,c as b,U as e,L as n,T as q,a7 as z,u as a,K as h,a8 as ge,R as F,M as ye,a as c,S as g,O as be,_ as he,k as Fe}from"./@vue.51d7f2d8.js";import{a as R,g as we,b as Ee}from"./finance.259514c6.js";import{a as Ce}from"./useDictOptions.a45fc8ac.js";import{u as Be}from"./usePaging.2ad8e1e6.js";import{u as De}from"./vue-router.9f65afb1.js";import{_ as ke}from"./people.vue_vue_type_script_setup_true_name_peopleMoney_lang.685e727c.js";import{a as ve}from"./user_role.942482ea.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.5759a1a6.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";const xe={class:"flex items-center"},Te={class:"text-success"},Ve={class:"flex justify-end mt-4"},Le=P({name:"articleLists"}),Bt=P({...Le,setup(Ue){var B,D,k,v,x,T;const u=De(),s=ce({user_info:"",change_type:"",start_time:"",end_time:"",company_id:""});(B=u.query)!=null&&B.company_id&&(s.company_id=(D=u.query)==null?void 0:D.company_id),(k=u.query)!=null&&k.s_date&&(s.start_time=(v=u.query)==null?void 0:v.s_date),(x=u.query)!=null&&x.e_date&&(s.end_time=(T=u.query)==null?void 0:T.e_date);const w=de([]);(async()=>{let i=await we({company_id:s.company_id}),o=await ve({});i=i.map(m=>{let d=o.lists.find(y=>y.id==m.group_id);return d.name?m.group_name=d.name:m.group_name="\u6682\u65E0\u89D2\u8272",m}),w.value=i})();const{pager:r,getLists:E,resetPage:C,resetParams:S}=Be({fetchFun:R,params:s}),{optionsData:$}=Ce({change_type:{api:Ee}}),I=i=>{let o="#333";switch(i){case 100:o="#f56c6c";break;case 101:o="#f56c6c";break;case 200:o="#409eff";break;case 201:o="#409eff";break;case 202:o="#67c23a";break;case 203:o="#e6a23c";break}return o};return fe(()=>{E()}),(i,o)=>{const m=X,d=Y,y=W,K=Z,f=ee,V=te,N=ae,O=_e,L=oe,M=pe,j=ne,U=se,l=le,Q=me,G=ue,H=ie,J=re;return p(),b("div",null,[e(d,{gutter:16},{default:n(()=>[(p(!0),b(q,null,z(a(w),t=>(p(),h(m,{span:8,key:t.id},{default:n(()=>[e(ke,{datas:t},null,8,["datas"])]),_:2},1024))),128))]),_:1}),e(U,{class:"!border-none mt-4",shadow:"never"},{default:n(()=>[e(y,{type:"warning",title:"\u6E29\u99A8\u63D0\u793A\uFF1A\u7528\u6237\u8D26\u6237\u53D8\u52A8\u8BB0\u5F55",closable:!1,"show-icon":""}),e(j,{ref:"formRef",class:"mb-[-16px] mt-[16px]",model:a(s),inline:!0},{default:n(()=>[e(f,{label:"\u7528\u6237\u4FE1\u606F"},{default:n(()=>[e(K,{class:"w-[280px]",modelValue:a(s).user_info,"onUpdate:modelValue":o[0]||(o[0]=t=>a(s).user_info=t),placeholder:"\u8BF7\u8F93\u5165\u7528\u6237\u7F16\u53F7/\u6635\u79F0/\u624B\u673A\u53F7",clearable:"",onKeyup:ge(a(C),["enter"])},null,8,["modelValue","onKeyup"])]),_:1}),e(f,{label:"\u53D8\u52A8\u7C7B\u578B"},{default:n(()=>[e(N,{class:"w-[280px]",modelValue:a(s).change_type,"onUpdate:modelValue":o[1]||(o[1]=t=>a(s).change_type=t)},{default:n(()=>[e(V,{label:"\u5168\u90E8",value:""}),(p(!0),b(q,null,z(a($).change_type,(t,_)=>(p(),h(V,{key:_,label:t,value:_},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1}),e(f,{label:"\u8BB0\u5F55\u65F6\u95F4"},{default:n(()=>[e(O,{startTime:a(s).start_time,"onUpdate:startTime":o[2]||(o[2]=t=>a(s).start_time=t),endTime:a(s).end_time,"onUpdate:endTime":o[3]||(o[3]=t=>a(s).end_time=t)},null,8,["startTime","endTime"])]),_:1}),e(f,null,{default:n(()=>[e(L,{type:"primary",onClick:a(C)},{default:n(()=>[F("\u67E5\u8BE2")]),_:1},8,["onClick"]),e(L,{onClick:a(S)},{default:n(()=>[F("\u91CD\u7F6E")]),_:1},8,["onClick"]),e(M,{class:"ml-2.5","fetch-fun":a(R),params:a(s),"page-size":a(r).size},null,8,["fetch-fun","params","page-size"])]),_:1})]),_:1},8,["model"])]),_:1}),e(U,{class:"!border-none mt-4",shadow:"never"},{default:n(()=>[ye((p(),h(G,{size:"large",data:a(r).lists},{default:n(()=>[e(l,{label:"ID",prop:"id","min-width":"80"}),e(l,{label:"\u7528\u6237\u7F16\u53F7",prop:"user_info.sn","min-width":"100"}),e(l,{label:"\u5F52\u5C5E\u516C\u53F8",prop:"company_info.company_name","min-width":"160"}),e(l,{label:"\u7528\u6237\u6635\u79F0","min-width":"100"},{default:n(({row:t})=>{var _,A;return[c("div",xe,[e(Q,{class:"flex-none mr-2",src:(_=t.user_info)==null?void 0:_.avatar,width:40,height:40,"preview-teleported":"",fit:"contain"},null,8,["src"]),F(" "+g((A=t.user_info)==null?void 0:A.nickname),1)])]}),_:1}),e(l,{label:"\u89D2\u8272\u540D\u79F0",prop:"user_info.group_name","min-width":"160"}),e(l,{label:"\u624B\u673A\u53F7\u7801",prop:"user_info.mobile","min-width":"100"}),e(l,{label:"\u53D8\u52A8\u91D1\u989D",prop:"change_amount","min-width":"100"},{default:n(({row:t})=>[c("span",{class:be(["text-warning",{"text-error":t.action==2}])},g(t.change_amount),3)]),_:1}),e(l,{label:"\u5269\u4F59\u91D1\u989D",prop:"left_amount","min-width":"100"},{default:n(({row:t})=>[c("span",Te,g(t.left_amount),1)]),_:1}),e(l,{label:"\u53D8\u52A8\u7C7B\u578B",prop:"change_type_desc","min-width":"120"},{default:n(({row:t})=>[c("span",{style:he({color:I(t.change_type)})},g(t.change_type_desc),5)]),_:1}),e(l,{label:"\u6765\u6E90\u5355\u53F7",prop:"source_sn","min-width":"100"}),e(l,{label:"\u8BB0\u5F55\u65F6\u95F4",prop:"create_time","min-width":"140"})]),_:1},8,["data"])),[[J,a(r).loading]]),c("div",Ve,[e(H,{modelValue:a(r),"onUpdate:modelValue":o[4]||(o[4]=t=>Fe(r)?r.value=t:null),onChange:a(E)},null,8,["modelValue","onChange"])])]),_:1})])}}});export{Bt as default}; diff --git a/public/admin/assets/banquetBirthday.4a89ca8d.js b/public/admin/assets/banquetBirthday.4a89ca8d.js new file mode 100644 index 000000000..d11249bf3 --- /dev/null +++ b/public/admin/assets/banquetBirthday.4a89ca8d.js @@ -0,0 +1 @@ +import{B as c,C as E,a1 as V,G as B,H as y,a2 as F,D as v,I as x}from"./element-plus.4328d892.js";import{d as U,o as w,K as C,L as t,U as e,a as p,R as u,S as g}from"./@vue.51d7f2d8.js";import{d as h}from"./index.ed71ac09.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const z={class:"tit"},A={class:"time"},D=U({__name:"banquetBirthday",props:{datas:{type:Object,defualt:function(){return{start_date:"",address:"",people_count:"",serve:"",perform:"",vehicle:"",in_hotel:""}}},update_time:{type:String,defualt:""}},setup(a){return(n,l)=>{const s=c,m=E,r=V,d=B,i=y,_=F,f=v,b=x;return w(),C(b,{style:{"margin-top":"16px"}},{default:t(()=>[e(f,{ref:"elForm",disabled:!0,model:n.formData,size:"mini","label-width":"180px"},{default:t(()=>[p("div",z,[u(" \u5BFF\u5BB4 "),p("span",A,"\u66F4\u65B0\u4E8E:"+g(a.update_time),1)]),e(_,null,{default:t(()=>[e(r,{span:8},{default:t(()=>[e(m,{label:"\u65F6\u95F4",prop:"start_date"},{default:t(()=>[e(s,{modelValue:a.datas.start_date,"onUpdate:modelValue":l[0]||(l[0]=o=>a.datas.start_date=o),clearable:"",type:"textarea",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(r,{span:8},{default:t(()=>[e(m,{label:"\u5730\u70B9",prop:"address"},{default:t(()=>[e(s,{modelValue:a.datas.address,"onUpdate:modelValue":l[1]||(l[1]=o=>a.datas.address=o),clearable:"",type:"textarea",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(r,{span:8},{default:t(()=>[e(m,{label:"\u4EBA\u6570",prop:"people_count"},{default:t(()=>[e(s,{modelValue:a.datas.people_count,"onUpdate:modelValue":l[2]||(l[2]=o=>a.datas.people_count=o),clearable:"",type:"textarea",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(r,{span:8},{default:t(()=>[e(m,{label:"\u8BF7\u5305\u529E",prop:"serve"},{default:t(()=>[e(i,{modelValue:a.datas.serve,"onUpdate:modelValue":l[3]||(l[3]=o=>a.datas.serve=o),size:"medium"},{default:t(()=>[e(d,{label:"2"},{default:t(()=>[u("\u9152\u5E97")]),_:1}),e(d,{label:"1"},{default:t(()=>[u("\u4E00\u6761\u9F99")]),_:1}),e(d,{label:"0"},{default:t(()=>[u("\u53EA\u8BF7\u53A8\u5E08")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(r,{span:8},{default:t(()=>[e(m,{label:"\u6709\u65E0\u6B4C\u821E\u8868\u6F14",prop:"perform"},{default:t(()=>[e(i,{modelValue:a.datas.perform,"onUpdate:modelValue":l[4]||(l[4]=o=>a.datas.perform=o),size:"medium"},{default:t(()=>[e(d,{label:"1"},{default:t(()=>[u("\u6709")]),_:1}),e(d,{label:"0"},{default:t(()=>[u("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(r,{span:8},{default:t(()=>[e(m,{label:"\u6709\u65E0\u4EA4\u901A\u5DE5\u5177",prop:"vehicle"},{default:t(()=>[e(i,{modelValue:a.datas.vehicle,"onUpdate:modelValue":l[5]||(l[5]=o=>a.datas.vehicle=o),size:"medium"},{default:t(()=>[e(d,{label:"1"},{default:t(()=>[u("\u6709")]),_:1}),e(d,{label:"0"},{default:t(()=>[u("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(r,{span:8},{default:t(()=>[e(m,{label:"\u6709\u65E0\u4F4F\u5BBF",prop:"in_hotel"},{default:t(()=>[e(i,{modelValue:a.datas.in_hotel,"onUpdate:modelValue":l[6]||(l[6]=o=>a.datas.in_hotel=o),size:"medium"},{default:t(()=>[e(d,{label:"1"},{default:t(()=>[u("\u6709")]),_:1}),e(d,{label:"0"},{default:t(()=>[u("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1})]),_:1})]),_:1},8,["model"])]),_:1})}}});const ne=h(D,[["__scopeId","data-v-7e0a3cca"]]);export{ne as default}; diff --git a/public/admin/assets/banquetBirthday.4f9d734c.js b/public/admin/assets/banquetBirthday.4f9d734c.js new file mode 100644 index 000000000..fb5d46640 --- /dev/null +++ b/public/admin/assets/banquetBirthday.4f9d734c.js @@ -0,0 +1 @@ +import{B as c,C as E,a1 as V,G as B,H as y,a2 as F,D as v,I as x}from"./element-plus.4328d892.js";import{d as U,o as w,K as C,L as t,U as e,a as p,R as u,S as g}from"./@vue.51d7f2d8.js";import{d as h}from"./index.aa9bb752.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const z={class:"tit"},A={class:"time"},D=U({__name:"banquetBirthday",props:{datas:{type:Object,defualt:function(){return{start_date:"",address:"",people_count:"",serve:"",perform:"",vehicle:"",in_hotel:""}}},update_time:{type:String,defualt:""}},setup(a){return(n,l)=>{const s=c,m=E,r=V,d=B,i=y,_=F,f=v,b=x;return w(),C(b,{style:{"margin-top":"16px"}},{default:t(()=>[e(f,{ref:"elForm",disabled:!0,model:n.formData,size:"mini","label-width":"180px"},{default:t(()=>[p("div",z,[u(" \u5BFF\u5BB4 "),p("span",A,"\u66F4\u65B0\u4E8E:"+g(a.update_time),1)]),e(_,null,{default:t(()=>[e(r,{span:8},{default:t(()=>[e(m,{label:"\u65F6\u95F4",prop:"start_date"},{default:t(()=>[e(s,{modelValue:a.datas.start_date,"onUpdate:modelValue":l[0]||(l[0]=o=>a.datas.start_date=o),clearable:"",type:"textarea",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(r,{span:8},{default:t(()=>[e(m,{label:"\u5730\u70B9",prop:"address"},{default:t(()=>[e(s,{modelValue:a.datas.address,"onUpdate:modelValue":l[1]||(l[1]=o=>a.datas.address=o),clearable:"",type:"textarea",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(r,{span:8},{default:t(()=>[e(m,{label:"\u4EBA\u6570",prop:"people_count"},{default:t(()=>[e(s,{modelValue:a.datas.people_count,"onUpdate:modelValue":l[2]||(l[2]=o=>a.datas.people_count=o),clearable:"",type:"textarea",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(r,{span:8},{default:t(()=>[e(m,{label:"\u8BF7\u5305\u529E",prop:"serve"},{default:t(()=>[e(i,{modelValue:a.datas.serve,"onUpdate:modelValue":l[3]||(l[3]=o=>a.datas.serve=o),size:"medium"},{default:t(()=>[e(d,{label:"2"},{default:t(()=>[u("\u9152\u5E97")]),_:1}),e(d,{label:"1"},{default:t(()=>[u("\u4E00\u6761\u9F99")]),_:1}),e(d,{label:"0"},{default:t(()=>[u("\u53EA\u8BF7\u53A8\u5E08")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(r,{span:8},{default:t(()=>[e(m,{label:"\u6709\u65E0\u6B4C\u821E\u8868\u6F14",prop:"perform"},{default:t(()=>[e(i,{modelValue:a.datas.perform,"onUpdate:modelValue":l[4]||(l[4]=o=>a.datas.perform=o),size:"medium"},{default:t(()=>[e(d,{label:"1"},{default:t(()=>[u("\u6709")]),_:1}),e(d,{label:"0"},{default:t(()=>[u("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(r,{span:8},{default:t(()=>[e(m,{label:"\u6709\u65E0\u4EA4\u901A\u5DE5\u5177",prop:"vehicle"},{default:t(()=>[e(i,{modelValue:a.datas.vehicle,"onUpdate:modelValue":l[5]||(l[5]=o=>a.datas.vehicle=o),size:"medium"},{default:t(()=>[e(d,{label:"1"},{default:t(()=>[u("\u6709")]),_:1}),e(d,{label:"0"},{default:t(()=>[u("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(r,{span:8},{default:t(()=>[e(m,{label:"\u6709\u65E0\u4F4F\u5BBF",prop:"in_hotel"},{default:t(()=>[e(i,{modelValue:a.datas.in_hotel,"onUpdate:modelValue":l[6]||(l[6]=o=>a.datas.in_hotel=o),size:"medium"},{default:t(()=>[e(d,{label:"1"},{default:t(()=>[u("\u6709")]),_:1}),e(d,{label:"0"},{default:t(()=>[u("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1})]),_:1})]),_:1},8,["model"])]),_:1})}}});const ne=h(D,[["__scopeId","data-v-7e0a3cca"]]);export{ne as default}; diff --git a/public/admin/assets/banquetBirthday.7a102179.js b/public/admin/assets/banquetBirthday.7a102179.js new file mode 100644 index 000000000..c4c3ec9b6 --- /dev/null +++ b/public/admin/assets/banquetBirthday.7a102179.js @@ -0,0 +1 @@ +import{B as c,C as E,a1 as V,G as B,H as y,a2 as F,D as v,I as x}from"./element-plus.4328d892.js";import{d as U,o as w,K as C,L as t,U as e,a as p,R as u,S as g}from"./@vue.51d7f2d8.js";import{d as h}from"./index.37f7aea6.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const z={class:"tit"},A={class:"time"},D=U({__name:"banquetBirthday",props:{datas:{type:Object,defualt:function(){return{start_date:"",address:"",people_count:"",serve:"",perform:"",vehicle:"",in_hotel:""}}},update_time:{type:String,defualt:""}},setup(a){return(n,l)=>{const s=c,m=E,r=V,d=B,i=y,_=F,f=v,b=x;return w(),C(b,{style:{"margin-top":"16px"}},{default:t(()=>[e(f,{ref:"elForm",disabled:!0,model:n.formData,size:"mini","label-width":"180px"},{default:t(()=>[p("div",z,[u(" \u5BFF\u5BB4 "),p("span",A,"\u66F4\u65B0\u4E8E:"+g(a.update_time),1)]),e(_,null,{default:t(()=>[e(r,{span:8},{default:t(()=>[e(m,{label:"\u65F6\u95F4",prop:"start_date"},{default:t(()=>[e(s,{modelValue:a.datas.start_date,"onUpdate:modelValue":l[0]||(l[0]=o=>a.datas.start_date=o),clearable:"",type:"textarea",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(r,{span:8},{default:t(()=>[e(m,{label:"\u5730\u70B9",prop:"address"},{default:t(()=>[e(s,{modelValue:a.datas.address,"onUpdate:modelValue":l[1]||(l[1]=o=>a.datas.address=o),clearable:"",type:"textarea",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(r,{span:8},{default:t(()=>[e(m,{label:"\u4EBA\u6570",prop:"people_count"},{default:t(()=>[e(s,{modelValue:a.datas.people_count,"onUpdate:modelValue":l[2]||(l[2]=o=>a.datas.people_count=o),clearable:"",type:"textarea",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(r,{span:8},{default:t(()=>[e(m,{label:"\u8BF7\u5305\u529E",prop:"serve"},{default:t(()=>[e(i,{modelValue:a.datas.serve,"onUpdate:modelValue":l[3]||(l[3]=o=>a.datas.serve=o),size:"medium"},{default:t(()=>[e(d,{label:"2"},{default:t(()=>[u("\u9152\u5E97")]),_:1}),e(d,{label:"1"},{default:t(()=>[u("\u4E00\u6761\u9F99")]),_:1}),e(d,{label:"0"},{default:t(()=>[u("\u53EA\u8BF7\u53A8\u5E08")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(r,{span:8},{default:t(()=>[e(m,{label:"\u6709\u65E0\u6B4C\u821E\u8868\u6F14",prop:"perform"},{default:t(()=>[e(i,{modelValue:a.datas.perform,"onUpdate:modelValue":l[4]||(l[4]=o=>a.datas.perform=o),size:"medium"},{default:t(()=>[e(d,{label:"1"},{default:t(()=>[u("\u6709")]),_:1}),e(d,{label:"0"},{default:t(()=>[u("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(r,{span:8},{default:t(()=>[e(m,{label:"\u6709\u65E0\u4EA4\u901A\u5DE5\u5177",prop:"vehicle"},{default:t(()=>[e(i,{modelValue:a.datas.vehicle,"onUpdate:modelValue":l[5]||(l[5]=o=>a.datas.vehicle=o),size:"medium"},{default:t(()=>[e(d,{label:"1"},{default:t(()=>[u("\u6709")]),_:1}),e(d,{label:"0"},{default:t(()=>[u("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(r,{span:8},{default:t(()=>[e(m,{label:"\u6709\u65E0\u4F4F\u5BBF",prop:"in_hotel"},{default:t(()=>[e(i,{modelValue:a.datas.in_hotel,"onUpdate:modelValue":l[6]||(l[6]=o=>a.datas.in_hotel=o),size:"medium"},{default:t(()=>[e(d,{label:"1"},{default:t(()=>[u("\u6709")]),_:1}),e(d,{label:"0"},{default:t(()=>[u("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1})]),_:1})]),_:1},8,["model"])]),_:1})}}});const ne=h(D,[["__scopeId","data-v-7e0a3cca"]]);export{ne as default}; diff --git a/public/admin/assets/banquetFullMoon.087a55f4.js b/public/admin/assets/banquetFullMoon.087a55f4.js new file mode 100644 index 000000000..0b4d8fb08 --- /dev/null +++ b/public/admin/assets/banquetFullMoon.087a55f4.js @@ -0,0 +1 @@ +import{B as E,C as c,a1 as V,G as F,H as v,a2 as y,D as B,I as x}from"./element-plus.4328d892.js";import{d as U,o as w,K as C,L as t,U as e,a as n,R as u,S as g}from"./@vue.51d7f2d8.js";import{d as z}from"./index.ed71ac09.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const A={class:"tit"},D={class:"time"},I=U({__name:"banquetFullMoon",props:{datas:{type:Object,defualt:function(){return{start_date:"",address:"",people_count:"",serve:"",perform:"",vehicle:"",in_hotel:""}}},update_time:{type:String,defualt:""}},setup(a){return(p,l)=>{const i=E,m=c,r=V,d=F,s=v,_=y,f=B,b=x;return w(),C(b,{style:{"margin-top":"16px"}},{default:t(()=>[e(f,{ref:"elForm",disabled:!0,model:p.formData,size:"mini","label-width":"180px"},{default:t(()=>[n("div",A,[u(" \u6EE1\u6708\u9152 "),n("span",D,"\u66F4\u65B0\u4E8E:"+g(a.update_time),1)]),e(_,null,{default:t(()=>[e(r,{span:8},{default:t(()=>[e(m,{label:"\u65F6\u95F4",prop:"start_date"},{default:t(()=>[e(i,{modelValue:a.datas.start_date,"onUpdate:modelValue":l[0]||(l[0]=o=>a.datas.start_date=o),clearable:"",type:"textarea",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(r,{span:8},{default:t(()=>[e(m,{label:"\u5730\u70B9",prop:"address"},{default:t(()=>[e(i,{modelValue:a.datas.address,"onUpdate:modelValue":l[1]||(l[1]=o=>a.datas.address=o),clearable:"",type:"textarea",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(r,{span:8},{default:t(()=>[e(m,{label:"\u4EBA\u6570",prop:"people_count"},{default:t(()=>[e(i,{modelValue:a.datas.people_count,"onUpdate:modelValue":l[2]||(l[2]=o=>a.datas.people_count=o),clearable:"",type:"textarea",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(r,{span:8},{default:t(()=>[e(m,{label:"\u8BF7\u5305\u529E",prop:"serve"},{default:t(()=>[e(s,{modelValue:a.datas.serve,"onUpdate:modelValue":l[3]||(l[3]=o=>a.datas.serve=o),size:"medium"},{default:t(()=>[e(d,{label:"2"},{default:t(()=>[u("\u9152\u5E97")]),_:1}),e(d,{label:"1"},{default:t(()=>[u("\u4E00\u6761\u9F99")]),_:1}),e(d,{label:"0"},{default:t(()=>[u("\u53EA\u8BF7\u53A8\u5E08")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(r,{span:8},{default:t(()=>[e(m,{label:"\u6709\u65E0\u6B4C\u821E\u8868\u6F14",prop:"perform"},{default:t(()=>[e(s,{modelValue:a.datas.perform,"onUpdate:modelValue":l[4]||(l[4]=o=>a.datas.perform=o),size:"medium"},{default:t(()=>[e(d,{label:"1"},{default:t(()=>[u("\u6709")]),_:1}),e(d,{label:"0"},{default:t(()=>[u("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(r,{span:8},{default:t(()=>[e(m,{label:"\u6709\u65E0\u4EA4\u901A\u5DE5\u5177",prop:"vehicle"},{default:t(()=>[e(s,{modelValue:a.datas.vehicle,"onUpdate:modelValue":l[5]||(l[5]=o=>a.datas.vehicle=o),size:"medium"},{default:t(()=>[e(d,{label:"1"},{default:t(()=>[u("\u6709")]),_:1}),e(d,{label:"0"},{default:t(()=>[u("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(r,{span:8},{default:t(()=>[e(m,{label:"\u6709\u65E0\u4F4F\u5BBF",prop:"in_hotel"},{default:t(()=>[e(s,{modelValue:a.datas.in_hotel,"onUpdate:modelValue":l[6]||(l[6]=o=>a.datas.in_hotel=o),size:"medium"},{default:t(()=>[e(d,{label:"1"},{default:t(()=>[u("\u6709")]),_:1}),e(d,{label:"0"},{default:t(()=>[u("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1})]),_:1})]),_:1},8,["model"])]),_:1})}}});const pe=z(I,[["__scopeId","data-v-2baac58c"]]);export{pe as default}; diff --git a/public/admin/assets/banquetFullMoon.45e9bc22.js b/public/admin/assets/banquetFullMoon.45e9bc22.js new file mode 100644 index 000000000..9b92fa6f0 --- /dev/null +++ b/public/admin/assets/banquetFullMoon.45e9bc22.js @@ -0,0 +1 @@ +import{B as E,C as c,a1 as V,G as F,H as v,a2 as y,D as B,I as x}from"./element-plus.4328d892.js";import{d as U,o as w,K as C,L as t,U as e,a as n,R as u,S as g}from"./@vue.51d7f2d8.js";import{d as z}from"./index.aa9bb752.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const A={class:"tit"},D={class:"time"},I=U({__name:"banquetFullMoon",props:{datas:{type:Object,defualt:function(){return{start_date:"",address:"",people_count:"",serve:"",perform:"",vehicle:"",in_hotel:""}}},update_time:{type:String,defualt:""}},setup(a){return(p,l)=>{const i=E,m=c,r=V,d=F,s=v,_=y,f=B,b=x;return w(),C(b,{style:{"margin-top":"16px"}},{default:t(()=>[e(f,{ref:"elForm",disabled:!0,model:p.formData,size:"mini","label-width":"180px"},{default:t(()=>[n("div",A,[u(" \u6EE1\u6708\u9152 "),n("span",D,"\u66F4\u65B0\u4E8E:"+g(a.update_time),1)]),e(_,null,{default:t(()=>[e(r,{span:8},{default:t(()=>[e(m,{label:"\u65F6\u95F4",prop:"start_date"},{default:t(()=>[e(i,{modelValue:a.datas.start_date,"onUpdate:modelValue":l[0]||(l[0]=o=>a.datas.start_date=o),clearable:"",type:"textarea",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(r,{span:8},{default:t(()=>[e(m,{label:"\u5730\u70B9",prop:"address"},{default:t(()=>[e(i,{modelValue:a.datas.address,"onUpdate:modelValue":l[1]||(l[1]=o=>a.datas.address=o),clearable:"",type:"textarea",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(r,{span:8},{default:t(()=>[e(m,{label:"\u4EBA\u6570",prop:"people_count"},{default:t(()=>[e(i,{modelValue:a.datas.people_count,"onUpdate:modelValue":l[2]||(l[2]=o=>a.datas.people_count=o),clearable:"",type:"textarea",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(r,{span:8},{default:t(()=>[e(m,{label:"\u8BF7\u5305\u529E",prop:"serve"},{default:t(()=>[e(s,{modelValue:a.datas.serve,"onUpdate:modelValue":l[3]||(l[3]=o=>a.datas.serve=o),size:"medium"},{default:t(()=>[e(d,{label:"2"},{default:t(()=>[u("\u9152\u5E97")]),_:1}),e(d,{label:"1"},{default:t(()=>[u("\u4E00\u6761\u9F99")]),_:1}),e(d,{label:"0"},{default:t(()=>[u("\u53EA\u8BF7\u53A8\u5E08")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(r,{span:8},{default:t(()=>[e(m,{label:"\u6709\u65E0\u6B4C\u821E\u8868\u6F14",prop:"perform"},{default:t(()=>[e(s,{modelValue:a.datas.perform,"onUpdate:modelValue":l[4]||(l[4]=o=>a.datas.perform=o),size:"medium"},{default:t(()=>[e(d,{label:"1"},{default:t(()=>[u("\u6709")]),_:1}),e(d,{label:"0"},{default:t(()=>[u("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(r,{span:8},{default:t(()=>[e(m,{label:"\u6709\u65E0\u4EA4\u901A\u5DE5\u5177",prop:"vehicle"},{default:t(()=>[e(s,{modelValue:a.datas.vehicle,"onUpdate:modelValue":l[5]||(l[5]=o=>a.datas.vehicle=o),size:"medium"},{default:t(()=>[e(d,{label:"1"},{default:t(()=>[u("\u6709")]),_:1}),e(d,{label:"0"},{default:t(()=>[u("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(r,{span:8},{default:t(()=>[e(m,{label:"\u6709\u65E0\u4F4F\u5BBF",prop:"in_hotel"},{default:t(()=>[e(s,{modelValue:a.datas.in_hotel,"onUpdate:modelValue":l[6]||(l[6]=o=>a.datas.in_hotel=o),size:"medium"},{default:t(()=>[e(d,{label:"1"},{default:t(()=>[u("\u6709")]),_:1}),e(d,{label:"0"},{default:t(()=>[u("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1})]),_:1})]),_:1},8,["model"])]),_:1})}}});const pe=z(I,[["__scopeId","data-v-2baac58c"]]);export{pe as default}; diff --git a/public/admin/assets/banquetFullMoon.9b5d9e7c.js b/public/admin/assets/banquetFullMoon.9b5d9e7c.js new file mode 100644 index 000000000..696a9b9d1 --- /dev/null +++ b/public/admin/assets/banquetFullMoon.9b5d9e7c.js @@ -0,0 +1 @@ +import{B as E,C as c,a1 as V,G as F,H as v,a2 as y,D as B,I as x}from"./element-plus.4328d892.js";import{d as U,o as w,K as C,L as t,U as e,a as n,R as u,S as g}from"./@vue.51d7f2d8.js";import{d as z}from"./index.37f7aea6.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const A={class:"tit"},D={class:"time"},I=U({__name:"banquetFullMoon",props:{datas:{type:Object,defualt:function(){return{start_date:"",address:"",people_count:"",serve:"",perform:"",vehicle:"",in_hotel:""}}},update_time:{type:String,defualt:""}},setup(a){return(p,l)=>{const i=E,m=c,r=V,d=F,s=v,_=y,f=B,b=x;return w(),C(b,{style:{"margin-top":"16px"}},{default:t(()=>[e(f,{ref:"elForm",disabled:!0,model:p.formData,size:"mini","label-width":"180px"},{default:t(()=>[n("div",A,[u(" \u6EE1\u6708\u9152 "),n("span",D,"\u66F4\u65B0\u4E8E:"+g(a.update_time),1)]),e(_,null,{default:t(()=>[e(r,{span:8},{default:t(()=>[e(m,{label:"\u65F6\u95F4",prop:"start_date"},{default:t(()=>[e(i,{modelValue:a.datas.start_date,"onUpdate:modelValue":l[0]||(l[0]=o=>a.datas.start_date=o),clearable:"",type:"textarea",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(r,{span:8},{default:t(()=>[e(m,{label:"\u5730\u70B9",prop:"address"},{default:t(()=>[e(i,{modelValue:a.datas.address,"onUpdate:modelValue":l[1]||(l[1]=o=>a.datas.address=o),clearable:"",type:"textarea",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(r,{span:8},{default:t(()=>[e(m,{label:"\u4EBA\u6570",prop:"people_count"},{default:t(()=>[e(i,{modelValue:a.datas.people_count,"onUpdate:modelValue":l[2]||(l[2]=o=>a.datas.people_count=o),clearable:"",type:"textarea",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(r,{span:8},{default:t(()=>[e(m,{label:"\u8BF7\u5305\u529E",prop:"serve"},{default:t(()=>[e(s,{modelValue:a.datas.serve,"onUpdate:modelValue":l[3]||(l[3]=o=>a.datas.serve=o),size:"medium"},{default:t(()=>[e(d,{label:"2"},{default:t(()=>[u("\u9152\u5E97")]),_:1}),e(d,{label:"1"},{default:t(()=>[u("\u4E00\u6761\u9F99")]),_:1}),e(d,{label:"0"},{default:t(()=>[u("\u53EA\u8BF7\u53A8\u5E08")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(r,{span:8},{default:t(()=>[e(m,{label:"\u6709\u65E0\u6B4C\u821E\u8868\u6F14",prop:"perform"},{default:t(()=>[e(s,{modelValue:a.datas.perform,"onUpdate:modelValue":l[4]||(l[4]=o=>a.datas.perform=o),size:"medium"},{default:t(()=>[e(d,{label:"1"},{default:t(()=>[u("\u6709")]),_:1}),e(d,{label:"0"},{default:t(()=>[u("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(r,{span:8},{default:t(()=>[e(m,{label:"\u6709\u65E0\u4EA4\u901A\u5DE5\u5177",prop:"vehicle"},{default:t(()=>[e(s,{modelValue:a.datas.vehicle,"onUpdate:modelValue":l[5]||(l[5]=o=>a.datas.vehicle=o),size:"medium"},{default:t(()=>[e(d,{label:"1"},{default:t(()=>[u("\u6709")]),_:1}),e(d,{label:"0"},{default:t(()=>[u("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(r,{span:8},{default:t(()=>[e(m,{label:"\u6709\u65E0\u4F4F\u5BBF",prop:"in_hotel"},{default:t(()=>[e(s,{modelValue:a.datas.in_hotel,"onUpdate:modelValue":l[6]||(l[6]=o=>a.datas.in_hotel=o),size:"medium"},{default:t(()=>[e(d,{label:"1"},{default:t(()=>[u("\u6709")]),_:1}),e(d,{label:"0"},{default:t(()=>[u("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1})]),_:1})]),_:1},8,["model"])]),_:1})}}});const pe=z(I,[["__scopeId","data-v-2baac58c"]]);export{pe as default}; diff --git a/public/admin/assets/banquetFuneral.149cd1af.js b/public/admin/assets/banquetFuneral.149cd1af.js new file mode 100644 index 000000000..2d950bd18 --- /dev/null +++ b/public/admin/assets/banquetFuneral.149cd1af.js @@ -0,0 +1 @@ +import{B as E,C as V,a1 as c,G as v,H as F,a2 as y,D as B,I as g}from"./element-plus.4328d892.js";import{d as x,o as U,K as z,L as a,U as e,a as n,R as o,S as w}from"./@vue.51d7f2d8.js";import{d as A}from"./index.37f7aea6.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const C={class:"tit"},D={class:"time"},I=x({__name:"banquetFuneral",props:{datas:{type:Object,defualt:function(){return{address:"",people_count:"",serve:"",perform:"",host:"",vehicle:"",in_hotel:"",graveyard:""}}},update_time:{type:String,defualt:""}},setup(l){return(p,t)=>{const s=E,m=V,r=c,d=v,i=F,f=y,_=B,b=g;return U(),z(b,{style:{"margin-top":"16px"}},{default:a(()=>[e(_,{ref:"elForm",disabled:!0,model:p.formData,size:"mini","label-width":"180px"},{default:a(()=>[n("div",C,[o(" \u767D\u4E8B "),n("span",D,"\u66F4\u65B0\u4E8E:"+w(l.update_time),1)]),e(f,null,{default:a(()=>[e(r,{span:8},{default:a(()=>[e(m,{label:"\u5730\u70B9",prop:"address"},{default:a(()=>[e(s,{modelValue:l.datas.address,"onUpdate:modelValue":t[0]||(t[0]=u=>l.datas.address=u),clearable:"",type:"textarea",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(r,{span:8},{default:a(()=>[e(m,{label:"\u4EBA\u6570",prop:"people_count"},{default:a(()=>[e(s,{modelValue:l.datas.people_count,"onUpdate:modelValue":t[1]||(t[1]=u=>l.datas.people_count=u),clearable:"",type:"textarea",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(r,{span:8},{default:a(()=>[e(m,{label:"\u8BF7\u5305\u529E",prop:"serve"},{default:a(()=>[e(i,{modelValue:l.datas.serve,"onUpdate:modelValue":t[2]||(t[2]=u=>l.datas.serve=u),size:"medium"},{default:a(()=>[e(d,{label:"2"},{default:a(()=>[o("\u9152\u5E97")]),_:1}),e(d,{label:"1"},{default:a(()=>[o("\u4E00\u6761\u9F99")]),_:1}),e(d,{label:"0"},{default:a(()=>[o("\u53EA\u8BF7\u53A8\u5E08")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(r,{span:8},{default:a(()=>[e(m,{label:"\u6709\u65E0\u6B4C\u821E\u8868\u6F14",prop:"perform"},{default:a(()=>[e(i,{modelValue:l.datas.perform,"onUpdate:modelValue":t[3]||(t[3]=u=>l.datas.perform=u),size:"medium"},{default:a(()=>[e(d,{label:"1"},{default:a(()=>[o("\u6709")]),_:1}),e(d,{label:"0"},{default:a(()=>[o("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(r,{span:8},{default:a(()=>[e(m,{label:"\u6709\u65E0\u4E3B\u6301\u4EEA\u5F0F",prop:"host"},{default:a(()=>[e(i,{modelValue:l.datas.host,"onUpdate:modelValue":t[4]||(t[4]=u=>l.datas.host=u),size:"medium"},{default:a(()=>[e(d,{label:"1"},{default:a(()=>[o("\u6709")]),_:1}),e(d,{label:"0"},{default:a(()=>[o("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(r,{span:8},{default:a(()=>[e(m,{label:"\u6709\u65E0\u4EA4\u901A\u5DE5\u5177",prop:"vehicle"},{default:a(()=>[e(i,{modelValue:l.datas.vehicle,"onUpdate:modelValue":t[5]||(t[5]=u=>l.datas.vehicle=u),size:"medium"},{default:a(()=>[e(d,{label:"1"},{default:a(()=>[o("\u6709")]),_:1}),e(d,{label:"0"},{default:a(()=>[o("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(r,{span:8},{default:a(()=>[e(m,{label:"\u6709\u65E0\u4F4F\u5BBF",prop:"in_hotel"},{default:a(()=>[e(i,{modelValue:l.datas.in_hotel,"onUpdate:modelValue":t[6]||(t[6]=u=>l.datas.in_hotel=u),size:"medium"},{default:a(()=>[e(d,{label:"1"},{default:a(()=>[o("\u6709")]),_:1}),e(d,{label:"0"},{default:a(()=>[o("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(r,{span:8},{default:a(()=>[e(m,{label:"\u6709\u65E0\u5893\u5730",prop:"graveyard"},{default:a(()=>[e(i,{modelValue:l.datas.graveyard,"onUpdate:modelValue":t[7]||(t[7]=u=>l.datas.graveyard=u),size:"medium"},{default:a(()=>[e(d,{label:"1"},{default:a(()=>[o("\u6709")]),_:1}),e(d,{label:"0"},{default:a(()=>[o("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1})]),_:1})]),_:1},8,["model"])]),_:1})}}});const pe=A(I,[["__scopeId","data-v-baa5de88"]]);export{pe as default}; diff --git a/public/admin/assets/banquetFuneral.7cf4d815.js b/public/admin/assets/banquetFuneral.7cf4d815.js new file mode 100644 index 000000000..481b2fe93 --- /dev/null +++ b/public/admin/assets/banquetFuneral.7cf4d815.js @@ -0,0 +1 @@ +import{B as E,C as V,a1 as c,G as v,H as F,a2 as y,D as B,I as g}from"./element-plus.4328d892.js";import{d as x,o as U,K as z,L as a,U as e,a as n,R as o,S as w}from"./@vue.51d7f2d8.js";import{d as A}from"./index.ed71ac09.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const C={class:"tit"},D={class:"time"},I=x({__name:"banquetFuneral",props:{datas:{type:Object,defualt:function(){return{address:"",people_count:"",serve:"",perform:"",host:"",vehicle:"",in_hotel:"",graveyard:""}}},update_time:{type:String,defualt:""}},setup(l){return(p,t)=>{const s=E,m=V,r=c,d=v,i=F,f=y,_=B,b=g;return U(),z(b,{style:{"margin-top":"16px"}},{default:a(()=>[e(_,{ref:"elForm",disabled:!0,model:p.formData,size:"mini","label-width":"180px"},{default:a(()=>[n("div",C,[o(" \u767D\u4E8B "),n("span",D,"\u66F4\u65B0\u4E8E:"+w(l.update_time),1)]),e(f,null,{default:a(()=>[e(r,{span:8},{default:a(()=>[e(m,{label:"\u5730\u70B9",prop:"address"},{default:a(()=>[e(s,{modelValue:l.datas.address,"onUpdate:modelValue":t[0]||(t[0]=u=>l.datas.address=u),clearable:"",type:"textarea",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(r,{span:8},{default:a(()=>[e(m,{label:"\u4EBA\u6570",prop:"people_count"},{default:a(()=>[e(s,{modelValue:l.datas.people_count,"onUpdate:modelValue":t[1]||(t[1]=u=>l.datas.people_count=u),clearable:"",type:"textarea",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(r,{span:8},{default:a(()=>[e(m,{label:"\u8BF7\u5305\u529E",prop:"serve"},{default:a(()=>[e(i,{modelValue:l.datas.serve,"onUpdate:modelValue":t[2]||(t[2]=u=>l.datas.serve=u),size:"medium"},{default:a(()=>[e(d,{label:"2"},{default:a(()=>[o("\u9152\u5E97")]),_:1}),e(d,{label:"1"},{default:a(()=>[o("\u4E00\u6761\u9F99")]),_:1}),e(d,{label:"0"},{default:a(()=>[o("\u53EA\u8BF7\u53A8\u5E08")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(r,{span:8},{default:a(()=>[e(m,{label:"\u6709\u65E0\u6B4C\u821E\u8868\u6F14",prop:"perform"},{default:a(()=>[e(i,{modelValue:l.datas.perform,"onUpdate:modelValue":t[3]||(t[3]=u=>l.datas.perform=u),size:"medium"},{default:a(()=>[e(d,{label:"1"},{default:a(()=>[o("\u6709")]),_:1}),e(d,{label:"0"},{default:a(()=>[o("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(r,{span:8},{default:a(()=>[e(m,{label:"\u6709\u65E0\u4E3B\u6301\u4EEA\u5F0F",prop:"host"},{default:a(()=>[e(i,{modelValue:l.datas.host,"onUpdate:modelValue":t[4]||(t[4]=u=>l.datas.host=u),size:"medium"},{default:a(()=>[e(d,{label:"1"},{default:a(()=>[o("\u6709")]),_:1}),e(d,{label:"0"},{default:a(()=>[o("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(r,{span:8},{default:a(()=>[e(m,{label:"\u6709\u65E0\u4EA4\u901A\u5DE5\u5177",prop:"vehicle"},{default:a(()=>[e(i,{modelValue:l.datas.vehicle,"onUpdate:modelValue":t[5]||(t[5]=u=>l.datas.vehicle=u),size:"medium"},{default:a(()=>[e(d,{label:"1"},{default:a(()=>[o("\u6709")]),_:1}),e(d,{label:"0"},{default:a(()=>[o("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(r,{span:8},{default:a(()=>[e(m,{label:"\u6709\u65E0\u4F4F\u5BBF",prop:"in_hotel"},{default:a(()=>[e(i,{modelValue:l.datas.in_hotel,"onUpdate:modelValue":t[6]||(t[6]=u=>l.datas.in_hotel=u),size:"medium"},{default:a(()=>[e(d,{label:"1"},{default:a(()=>[o("\u6709")]),_:1}),e(d,{label:"0"},{default:a(()=>[o("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(r,{span:8},{default:a(()=>[e(m,{label:"\u6709\u65E0\u5893\u5730",prop:"graveyard"},{default:a(()=>[e(i,{modelValue:l.datas.graveyard,"onUpdate:modelValue":t[7]||(t[7]=u=>l.datas.graveyard=u),size:"medium"},{default:a(()=>[e(d,{label:"1"},{default:a(()=>[o("\u6709")]),_:1}),e(d,{label:"0"},{default:a(()=>[o("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1})]),_:1})]),_:1},8,["model"])]),_:1})}}});const pe=A(I,[["__scopeId","data-v-baa5de88"]]);export{pe as default}; diff --git a/public/admin/assets/banquetFuneral.a3a46135.js b/public/admin/assets/banquetFuneral.a3a46135.js new file mode 100644 index 000000000..de81d15f1 --- /dev/null +++ b/public/admin/assets/banquetFuneral.a3a46135.js @@ -0,0 +1 @@ +import{B as E,C as V,a1 as c,G as v,H as F,a2 as y,D as B,I as g}from"./element-plus.4328d892.js";import{d as x,o as U,K as z,L as a,U as e,a as n,R as o,S as w}from"./@vue.51d7f2d8.js";import{d as A}from"./index.aa9bb752.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const C={class:"tit"},D={class:"time"},I=x({__name:"banquetFuneral",props:{datas:{type:Object,defualt:function(){return{address:"",people_count:"",serve:"",perform:"",host:"",vehicle:"",in_hotel:"",graveyard:""}}},update_time:{type:String,defualt:""}},setup(l){return(p,t)=>{const s=E,m=V,r=c,d=v,i=F,f=y,_=B,b=g;return U(),z(b,{style:{"margin-top":"16px"}},{default:a(()=>[e(_,{ref:"elForm",disabled:!0,model:p.formData,size:"mini","label-width":"180px"},{default:a(()=>[n("div",C,[o(" \u767D\u4E8B "),n("span",D,"\u66F4\u65B0\u4E8E:"+w(l.update_time),1)]),e(f,null,{default:a(()=>[e(r,{span:8},{default:a(()=>[e(m,{label:"\u5730\u70B9",prop:"address"},{default:a(()=>[e(s,{modelValue:l.datas.address,"onUpdate:modelValue":t[0]||(t[0]=u=>l.datas.address=u),clearable:"",type:"textarea",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(r,{span:8},{default:a(()=>[e(m,{label:"\u4EBA\u6570",prop:"people_count"},{default:a(()=>[e(s,{modelValue:l.datas.people_count,"onUpdate:modelValue":t[1]||(t[1]=u=>l.datas.people_count=u),clearable:"",type:"textarea",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(r,{span:8},{default:a(()=>[e(m,{label:"\u8BF7\u5305\u529E",prop:"serve"},{default:a(()=>[e(i,{modelValue:l.datas.serve,"onUpdate:modelValue":t[2]||(t[2]=u=>l.datas.serve=u),size:"medium"},{default:a(()=>[e(d,{label:"2"},{default:a(()=>[o("\u9152\u5E97")]),_:1}),e(d,{label:"1"},{default:a(()=>[o("\u4E00\u6761\u9F99")]),_:1}),e(d,{label:"0"},{default:a(()=>[o("\u53EA\u8BF7\u53A8\u5E08")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(r,{span:8},{default:a(()=>[e(m,{label:"\u6709\u65E0\u6B4C\u821E\u8868\u6F14",prop:"perform"},{default:a(()=>[e(i,{modelValue:l.datas.perform,"onUpdate:modelValue":t[3]||(t[3]=u=>l.datas.perform=u),size:"medium"},{default:a(()=>[e(d,{label:"1"},{default:a(()=>[o("\u6709")]),_:1}),e(d,{label:"0"},{default:a(()=>[o("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(r,{span:8},{default:a(()=>[e(m,{label:"\u6709\u65E0\u4E3B\u6301\u4EEA\u5F0F",prop:"host"},{default:a(()=>[e(i,{modelValue:l.datas.host,"onUpdate:modelValue":t[4]||(t[4]=u=>l.datas.host=u),size:"medium"},{default:a(()=>[e(d,{label:"1"},{default:a(()=>[o("\u6709")]),_:1}),e(d,{label:"0"},{default:a(()=>[o("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(r,{span:8},{default:a(()=>[e(m,{label:"\u6709\u65E0\u4EA4\u901A\u5DE5\u5177",prop:"vehicle"},{default:a(()=>[e(i,{modelValue:l.datas.vehicle,"onUpdate:modelValue":t[5]||(t[5]=u=>l.datas.vehicle=u),size:"medium"},{default:a(()=>[e(d,{label:"1"},{default:a(()=>[o("\u6709")]),_:1}),e(d,{label:"0"},{default:a(()=>[o("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(r,{span:8},{default:a(()=>[e(m,{label:"\u6709\u65E0\u4F4F\u5BBF",prop:"in_hotel"},{default:a(()=>[e(i,{modelValue:l.datas.in_hotel,"onUpdate:modelValue":t[6]||(t[6]=u=>l.datas.in_hotel=u),size:"medium"},{default:a(()=>[e(d,{label:"1"},{default:a(()=>[o("\u6709")]),_:1}),e(d,{label:"0"},{default:a(()=>[o("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(r,{span:8},{default:a(()=>[e(m,{label:"\u6709\u65E0\u5893\u5730",prop:"graveyard"},{default:a(()=>[e(i,{modelValue:l.datas.graveyard,"onUpdate:modelValue":t[7]||(t[7]=u=>l.datas.graveyard=u),size:"medium"},{default:a(()=>[e(d,{label:"1"},{default:a(()=>[o("\u6709")]),_:1}),e(d,{label:"0"},{default:a(()=>[o("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1})]),_:1})]),_:1},8,["model"])]),_:1})}}});const pe=A(I,[["__scopeId","data-v-baa5de88"]]);export{pe as default}; diff --git a/public/admin/assets/banquetMarry.3faebc7e.js b/public/admin/assets/banquetMarry.3faebc7e.js new file mode 100644 index 000000000..aad02b479 --- /dev/null +++ b/public/admin/assets/banquetMarry.3faebc7e.js @@ -0,0 +1 @@ +import{B as E,C as V,a1 as c,G as y,H as B,a2 as F,D as v,I as x}from"./element-plus.4328d892.js";import{d as U,o as A,K as w,L as t,U as e,a as n,R as o,S as z}from"./@vue.51d7f2d8.js";import{d as C}from"./index.37f7aea6.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const g={class:"tit"},h={class:"time"},D=U({__name:"banquetMarry",props:{datas:{type:Object,defualt:function(){return{start_date:"",address:"",people_count:"",serve:"",perform:"",host:"",vehicle:"",in_hotel:""}}},update_time:{type:String,defualt:""}},setup(a){return(p,l)=>{const i=E,m=V,r=c,d=y,s=B,f=F,_=v,b=x;return A(),w(b,{style:{"margin-top":"16px"}},{default:t(()=>[e(_,{ref:"elForm",disabled:!0,model:p.formData,size:"mini","label-width":"180px"},{default:t(()=>[n("div",g,[o(" \u5A5A\u5BB4 "),n("span",h,"\u66F4\u65B0\u4E8E:"+z(a.update_time),1)]),e(f,null,{default:t(()=>[e(r,{span:8},{default:t(()=>[e(m,{label:"\u65F6\u95F4",prop:"start_date"},{default:t(()=>[e(i,{modelValue:a.datas.start_date,"onUpdate:modelValue":l[0]||(l[0]=u=>a.datas.start_date=u),clearable:"",type:"textarea",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(r,{span:8},{default:t(()=>[e(m,{label:"\u5730\u70B9",prop:"address"},{default:t(()=>[e(i,{modelValue:a.datas.address,"onUpdate:modelValue":l[1]||(l[1]=u=>a.datas.address=u),clearable:"",type:"textarea",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(r,{span:8},{default:t(()=>[e(m,{label:"\u4EBA\u6570",prop:"people_count"},{default:t(()=>[e(i,{modelValue:a.datas.people_count,"onUpdate:modelValue":l[2]||(l[2]=u=>a.datas.people_count=u),clearable:"",type:"textarea",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(r,{span:8},{default:t(()=>[e(m,{label:"\u8BF7\u5305\u529E",prop:"serve"},{default:t(()=>[e(s,{modelValue:a.datas.serve,"onUpdate:modelValue":l[3]||(l[3]=u=>a.datas.serve=u),size:"medium"},{default:t(()=>[e(d,{label:"2"},{default:t(()=>[o("\u9152\u5E97")]),_:1}),e(d,{label:"1"},{default:t(()=>[o("\u4E00\u6761\u9F99")]),_:1}),e(d,{label:"0"},{default:t(()=>[o("\u53EA\u8BF7\u53A8\u5E08")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(r,{span:8},{default:t(()=>[e(m,{label:"\u6709\u65E0\u6B4C\u821E\u8868\u6F14",prop:"perform"},{default:t(()=>[e(s,{modelValue:a.datas.perform,"onUpdate:modelValue":l[4]||(l[4]=u=>a.datas.perform=u),size:"medium"},{default:t(()=>[e(d,{label:"1"},{default:t(()=>[o("\u6709")]),_:1}),e(d,{label:"0"},{default:t(()=>[o("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(r,{span:8},{default:t(()=>[e(m,{label:"\u6709\u65E0\u4E3B\u6301\u4EEA\u5F0F",prop:"host"},{default:t(()=>[e(s,{modelValue:a.datas.host,"onUpdate:modelValue":l[5]||(l[5]=u=>a.datas.host=u),size:"medium"},{default:t(()=>[e(d,{label:"1"},{default:t(()=>[o("\u6709")]),_:1}),e(d,{label:"0"},{default:t(()=>[o("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(r,{span:8},{default:t(()=>[e(m,{label:"\u6709\u65E0\u4EA4\u901A\u5DE5\u5177",prop:"vehicle"},{default:t(()=>[e(s,{modelValue:a.datas.vehicle,"onUpdate:modelValue":l[6]||(l[6]=u=>a.datas.vehicle=u),size:"medium"},{default:t(()=>[e(d,{label:"1"},{default:t(()=>[o("\u6709")]),_:1}),e(d,{label:"0"},{default:t(()=>[o("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(r,{span:8},{default:t(()=>[e(m,{label:"\u6709\u65E0\u4F4F\u5BBF",prop:"in_hotel"},{default:t(()=>[e(s,{modelValue:a.datas.in_hotel,"onUpdate:modelValue":l[7]||(l[7]=u=>a.datas.in_hotel=u),size:"medium"},{default:t(()=>[e(d,{label:"1"},{default:t(()=>[o("\u6709")]),_:1}),e(d,{label:"0"},{default:t(()=>[o("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1})]),_:1})]),_:1},8,["model"])]),_:1})}}});const pe=C(D,[["__scopeId","data-v-bb0a8954"]]);export{pe as default}; diff --git a/public/admin/assets/banquetMarry.6065a41b.js b/public/admin/assets/banquetMarry.6065a41b.js new file mode 100644 index 000000000..c551dbe4e --- /dev/null +++ b/public/admin/assets/banquetMarry.6065a41b.js @@ -0,0 +1 @@ +import{B as E,C as V,a1 as c,G as y,H as B,a2 as F,D as v,I as x}from"./element-plus.4328d892.js";import{d as U,o as A,K as w,L as t,U as e,a as n,R as o,S as z}from"./@vue.51d7f2d8.js";import{d as C}from"./index.aa9bb752.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const g={class:"tit"},h={class:"time"},D=U({__name:"banquetMarry",props:{datas:{type:Object,defualt:function(){return{start_date:"",address:"",people_count:"",serve:"",perform:"",host:"",vehicle:"",in_hotel:""}}},update_time:{type:String,defualt:""}},setup(a){return(p,l)=>{const i=E,m=V,r=c,d=y,s=B,f=F,_=v,b=x;return A(),w(b,{style:{"margin-top":"16px"}},{default:t(()=>[e(_,{ref:"elForm",disabled:!0,model:p.formData,size:"mini","label-width":"180px"},{default:t(()=>[n("div",g,[o(" \u5A5A\u5BB4 "),n("span",h,"\u66F4\u65B0\u4E8E:"+z(a.update_time),1)]),e(f,null,{default:t(()=>[e(r,{span:8},{default:t(()=>[e(m,{label:"\u65F6\u95F4",prop:"start_date"},{default:t(()=>[e(i,{modelValue:a.datas.start_date,"onUpdate:modelValue":l[0]||(l[0]=u=>a.datas.start_date=u),clearable:"",type:"textarea",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(r,{span:8},{default:t(()=>[e(m,{label:"\u5730\u70B9",prop:"address"},{default:t(()=>[e(i,{modelValue:a.datas.address,"onUpdate:modelValue":l[1]||(l[1]=u=>a.datas.address=u),clearable:"",type:"textarea",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(r,{span:8},{default:t(()=>[e(m,{label:"\u4EBA\u6570",prop:"people_count"},{default:t(()=>[e(i,{modelValue:a.datas.people_count,"onUpdate:modelValue":l[2]||(l[2]=u=>a.datas.people_count=u),clearable:"",type:"textarea",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(r,{span:8},{default:t(()=>[e(m,{label:"\u8BF7\u5305\u529E",prop:"serve"},{default:t(()=>[e(s,{modelValue:a.datas.serve,"onUpdate:modelValue":l[3]||(l[3]=u=>a.datas.serve=u),size:"medium"},{default:t(()=>[e(d,{label:"2"},{default:t(()=>[o("\u9152\u5E97")]),_:1}),e(d,{label:"1"},{default:t(()=>[o("\u4E00\u6761\u9F99")]),_:1}),e(d,{label:"0"},{default:t(()=>[o("\u53EA\u8BF7\u53A8\u5E08")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(r,{span:8},{default:t(()=>[e(m,{label:"\u6709\u65E0\u6B4C\u821E\u8868\u6F14",prop:"perform"},{default:t(()=>[e(s,{modelValue:a.datas.perform,"onUpdate:modelValue":l[4]||(l[4]=u=>a.datas.perform=u),size:"medium"},{default:t(()=>[e(d,{label:"1"},{default:t(()=>[o("\u6709")]),_:1}),e(d,{label:"0"},{default:t(()=>[o("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(r,{span:8},{default:t(()=>[e(m,{label:"\u6709\u65E0\u4E3B\u6301\u4EEA\u5F0F",prop:"host"},{default:t(()=>[e(s,{modelValue:a.datas.host,"onUpdate:modelValue":l[5]||(l[5]=u=>a.datas.host=u),size:"medium"},{default:t(()=>[e(d,{label:"1"},{default:t(()=>[o("\u6709")]),_:1}),e(d,{label:"0"},{default:t(()=>[o("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(r,{span:8},{default:t(()=>[e(m,{label:"\u6709\u65E0\u4EA4\u901A\u5DE5\u5177",prop:"vehicle"},{default:t(()=>[e(s,{modelValue:a.datas.vehicle,"onUpdate:modelValue":l[6]||(l[6]=u=>a.datas.vehicle=u),size:"medium"},{default:t(()=>[e(d,{label:"1"},{default:t(()=>[o("\u6709")]),_:1}),e(d,{label:"0"},{default:t(()=>[o("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(r,{span:8},{default:t(()=>[e(m,{label:"\u6709\u65E0\u4F4F\u5BBF",prop:"in_hotel"},{default:t(()=>[e(s,{modelValue:a.datas.in_hotel,"onUpdate:modelValue":l[7]||(l[7]=u=>a.datas.in_hotel=u),size:"medium"},{default:t(()=>[e(d,{label:"1"},{default:t(()=>[o("\u6709")]),_:1}),e(d,{label:"0"},{default:t(()=>[o("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1})]),_:1})]),_:1},8,["model"])]),_:1})}}});const pe=C(D,[["__scopeId","data-v-bb0a8954"]]);export{pe as default}; diff --git a/public/admin/assets/banquetMarry.f6e2a9a1.js b/public/admin/assets/banquetMarry.f6e2a9a1.js new file mode 100644 index 000000000..c1dff5d63 --- /dev/null +++ b/public/admin/assets/banquetMarry.f6e2a9a1.js @@ -0,0 +1 @@ +import{B as E,C as V,a1 as c,G as y,H as B,a2 as F,D as v,I as x}from"./element-plus.4328d892.js";import{d as U,o as A,K as w,L as t,U as e,a as n,R as o,S as z}from"./@vue.51d7f2d8.js";import{d as C}from"./index.ed71ac09.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const g={class:"tit"},h={class:"time"},D=U({__name:"banquetMarry",props:{datas:{type:Object,defualt:function(){return{start_date:"",address:"",people_count:"",serve:"",perform:"",host:"",vehicle:"",in_hotel:""}}},update_time:{type:String,defualt:""}},setup(a){return(p,l)=>{const i=E,m=V,r=c,d=y,s=B,f=F,_=v,b=x;return A(),w(b,{style:{"margin-top":"16px"}},{default:t(()=>[e(_,{ref:"elForm",disabled:!0,model:p.formData,size:"mini","label-width":"180px"},{default:t(()=>[n("div",g,[o(" \u5A5A\u5BB4 "),n("span",h,"\u66F4\u65B0\u4E8E:"+z(a.update_time),1)]),e(f,null,{default:t(()=>[e(r,{span:8},{default:t(()=>[e(m,{label:"\u65F6\u95F4",prop:"start_date"},{default:t(()=>[e(i,{modelValue:a.datas.start_date,"onUpdate:modelValue":l[0]||(l[0]=u=>a.datas.start_date=u),clearable:"",type:"textarea",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(r,{span:8},{default:t(()=>[e(m,{label:"\u5730\u70B9",prop:"address"},{default:t(()=>[e(i,{modelValue:a.datas.address,"onUpdate:modelValue":l[1]||(l[1]=u=>a.datas.address=u),clearable:"",type:"textarea",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(r,{span:8},{default:t(()=>[e(m,{label:"\u4EBA\u6570",prop:"people_count"},{default:t(()=>[e(i,{modelValue:a.datas.people_count,"onUpdate:modelValue":l[2]||(l[2]=u=>a.datas.people_count=u),clearable:"",type:"textarea",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(r,{span:8},{default:t(()=>[e(m,{label:"\u8BF7\u5305\u529E",prop:"serve"},{default:t(()=>[e(s,{modelValue:a.datas.serve,"onUpdate:modelValue":l[3]||(l[3]=u=>a.datas.serve=u),size:"medium"},{default:t(()=>[e(d,{label:"2"},{default:t(()=>[o("\u9152\u5E97")]),_:1}),e(d,{label:"1"},{default:t(()=>[o("\u4E00\u6761\u9F99")]),_:1}),e(d,{label:"0"},{default:t(()=>[o("\u53EA\u8BF7\u53A8\u5E08")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(r,{span:8},{default:t(()=>[e(m,{label:"\u6709\u65E0\u6B4C\u821E\u8868\u6F14",prop:"perform"},{default:t(()=>[e(s,{modelValue:a.datas.perform,"onUpdate:modelValue":l[4]||(l[4]=u=>a.datas.perform=u),size:"medium"},{default:t(()=>[e(d,{label:"1"},{default:t(()=>[o("\u6709")]),_:1}),e(d,{label:"0"},{default:t(()=>[o("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(r,{span:8},{default:t(()=>[e(m,{label:"\u6709\u65E0\u4E3B\u6301\u4EEA\u5F0F",prop:"host"},{default:t(()=>[e(s,{modelValue:a.datas.host,"onUpdate:modelValue":l[5]||(l[5]=u=>a.datas.host=u),size:"medium"},{default:t(()=>[e(d,{label:"1"},{default:t(()=>[o("\u6709")]),_:1}),e(d,{label:"0"},{default:t(()=>[o("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(r,{span:8},{default:t(()=>[e(m,{label:"\u6709\u65E0\u4EA4\u901A\u5DE5\u5177",prop:"vehicle"},{default:t(()=>[e(s,{modelValue:a.datas.vehicle,"onUpdate:modelValue":l[6]||(l[6]=u=>a.datas.vehicle=u),size:"medium"},{default:t(()=>[e(d,{label:"1"},{default:t(()=>[o("\u6709")]),_:1}),e(d,{label:"0"},{default:t(()=>[o("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(r,{span:8},{default:t(()=>[e(m,{label:"\u6709\u65E0\u4F4F\u5BBF",prop:"in_hotel"},{default:t(()=>[e(s,{modelValue:a.datas.in_hotel,"onUpdate:modelValue":l[7]||(l[7]=u=>a.datas.in_hotel=u),size:"medium"},{default:t(()=>[e(d,{label:"1"},{default:t(()=>[o("\u6709")]),_:1}),e(d,{label:"0"},{default:t(()=>[o("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1})]),_:1})]),_:1},8,["model"])]),_:1})}}});const pe=C(D,[["__scopeId","data-v-bb0a8954"]]);export{pe as default}; diff --git a/public/admin/assets/banquetOther.9224a376.js b/public/admin/assets/banquetOther.9224a376.js new file mode 100644 index 000000000..215f95648 --- /dev/null +++ b/public/admin/assets/banquetOther.9224a376.js @@ -0,0 +1 @@ +import{B as E,C as V,a1 as c,G as y,H as B,a2 as F,D as v,I as x}from"./element-plus.4328d892.js";import{d as U,o as w,K as C,L as t,U as e,a as p,R as o,S as D}from"./@vue.51d7f2d8.js";import{d as g}from"./index.ed71ac09.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const z={class:"tit"},A={class:"time"},h=U({__name:"banquetOther",props:{datas:{type:Object,defualt:function(){return{types:"",start_date:"",address:"",people_count:"",serve:"",perform:"",vehicle:"",in_hotel:""}}},update_time:{type:String,defualt:""}},setup(a){return(n,l)=>{const s=E,m=V,r=c,d=y,i=B,f=F,_=v,b=x;return w(),C(b,{style:{"margin-top":"16px"}},{default:t(()=>[e(_,{ref:"elForm",disabled:!0,model:n.formData,size:"mini","label-width":"180px"},{default:t(()=>[p("div",z,[o(" \u5176\u4ED6\u5E86\u795D\u5BB4 "),p("span",A,"\u66F4\u65B0\u4E8E:"+D(a.update_time),1)]),e(f,null,{default:t(()=>[e(r,{span:8},{default:t(()=>[e(m,{label:"\u5BB4\u5E2D\u7C7B\u578B",prop:"types"},{default:t(()=>[e(s,{modelValue:a.datas.types,"onUpdate:modelValue":l[0]||(l[0]=u=>a.datas.types=u),clearable:"",type:"textarea",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(r,{span:8},{default:t(()=>[e(m,{label:"\u65F6\u95F4",prop:"start_date"},{default:t(()=>[e(s,{modelValue:a.datas.start_date,"onUpdate:modelValue":l[1]||(l[1]=u=>a.datas.start_date=u),clearable:"",type:"textarea",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(r,{span:8},{default:t(()=>[e(m,{label:"\u5730\u70B9",prop:"address"},{default:t(()=>[e(s,{modelValue:a.datas.address,"onUpdate:modelValue":l[2]||(l[2]=u=>a.datas.address=u),clearable:"",type:"textarea",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(r,{span:8},{default:t(()=>[e(m,{label:"\u4EBA\u6570",prop:"people_count"},{default:t(()=>[e(s,{modelValue:a.datas.people_count,"onUpdate:modelValue":l[3]||(l[3]=u=>a.datas.people_count=u),clearable:"",type:"textarea",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(r,{span:8},{default:t(()=>[e(m,{label:"\u8BF7\u5305\u529E",prop:"serve"},{default:t(()=>[e(i,{modelValue:a.datas.serve,"onUpdate:modelValue":l[4]||(l[4]=u=>a.datas.serve=u),size:"medium"},{default:t(()=>[e(d,{label:"2"},{default:t(()=>[o("\u9152\u5E97")]),_:1}),e(d,{label:"1"},{default:t(()=>[o("\u4E00\u6761\u9F99")]),_:1}),e(d,{label:"0"},{default:t(()=>[o("\u53EA\u8BF7\u53A8\u5E08")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(r,{span:8},{default:t(()=>[e(m,{label:"\u6709\u65E0\u6B4C\u821E\u8868\u6F14",prop:"perform"},{default:t(()=>[e(i,{modelValue:a.datas.perform,"onUpdate:modelValue":l[5]||(l[5]=u=>a.datas.perform=u),size:"medium"},{default:t(()=>[e(d,{label:"1"},{default:t(()=>[o("\u6709")]),_:1}),e(d,{label:"0"},{default:t(()=>[o("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(r,{span:8},{default:t(()=>[e(m,{label:"\u6709\u65E0\u4EA4\u901A\u5DE5\u5177",prop:"vehicle"},{default:t(()=>[e(i,{modelValue:a.datas.vehicle,"onUpdate:modelValue":l[6]||(l[6]=u=>a.datas.vehicle=u),size:"medium"},{default:t(()=>[e(d,{label:"1"},{default:t(()=>[o("\u6709")]),_:1}),e(d,{label:"0"},{default:t(()=>[o("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(r,{span:8},{default:t(()=>[e(m,{label:"\u6709\u65E0\u4F4F\u5BBF",prop:"in_hotel"},{default:t(()=>[e(i,{modelValue:a.datas.in_hotel,"onUpdate:modelValue":l[7]||(l[7]=u=>a.datas.in_hotel=u),size:"medium"},{default:t(()=>[e(d,{label:"1"},{default:t(()=>[o("\u6709")]),_:1}),e(d,{label:"0"},{default:t(()=>[o("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1})]),_:1})]),_:1},8,["model"])]),_:1})}}});const ne=g(h,[["__scopeId","data-v-068cff19"]]);export{ne as default}; diff --git a/public/admin/assets/banquetOther.ce740995.js b/public/admin/assets/banquetOther.ce740995.js new file mode 100644 index 000000000..ffa0b9d90 --- /dev/null +++ b/public/admin/assets/banquetOther.ce740995.js @@ -0,0 +1 @@ +import{B as E,C as V,a1 as c,G as y,H as B,a2 as F,D as v,I as x}from"./element-plus.4328d892.js";import{d as U,o as w,K as C,L as t,U as e,a as p,R as o,S as D}from"./@vue.51d7f2d8.js";import{d as g}from"./index.37f7aea6.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const z={class:"tit"},A={class:"time"},h=U({__name:"banquetOther",props:{datas:{type:Object,defualt:function(){return{types:"",start_date:"",address:"",people_count:"",serve:"",perform:"",vehicle:"",in_hotel:""}}},update_time:{type:String,defualt:""}},setup(a){return(n,l)=>{const s=E,m=V,r=c,d=y,i=B,f=F,_=v,b=x;return w(),C(b,{style:{"margin-top":"16px"}},{default:t(()=>[e(_,{ref:"elForm",disabled:!0,model:n.formData,size:"mini","label-width":"180px"},{default:t(()=>[p("div",z,[o(" \u5176\u4ED6\u5E86\u795D\u5BB4 "),p("span",A,"\u66F4\u65B0\u4E8E:"+D(a.update_time),1)]),e(f,null,{default:t(()=>[e(r,{span:8},{default:t(()=>[e(m,{label:"\u5BB4\u5E2D\u7C7B\u578B",prop:"types"},{default:t(()=>[e(s,{modelValue:a.datas.types,"onUpdate:modelValue":l[0]||(l[0]=u=>a.datas.types=u),clearable:"",type:"textarea",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(r,{span:8},{default:t(()=>[e(m,{label:"\u65F6\u95F4",prop:"start_date"},{default:t(()=>[e(s,{modelValue:a.datas.start_date,"onUpdate:modelValue":l[1]||(l[1]=u=>a.datas.start_date=u),clearable:"",type:"textarea",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(r,{span:8},{default:t(()=>[e(m,{label:"\u5730\u70B9",prop:"address"},{default:t(()=>[e(s,{modelValue:a.datas.address,"onUpdate:modelValue":l[2]||(l[2]=u=>a.datas.address=u),clearable:"",type:"textarea",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(r,{span:8},{default:t(()=>[e(m,{label:"\u4EBA\u6570",prop:"people_count"},{default:t(()=>[e(s,{modelValue:a.datas.people_count,"onUpdate:modelValue":l[3]||(l[3]=u=>a.datas.people_count=u),clearable:"",type:"textarea",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(r,{span:8},{default:t(()=>[e(m,{label:"\u8BF7\u5305\u529E",prop:"serve"},{default:t(()=>[e(i,{modelValue:a.datas.serve,"onUpdate:modelValue":l[4]||(l[4]=u=>a.datas.serve=u),size:"medium"},{default:t(()=>[e(d,{label:"2"},{default:t(()=>[o("\u9152\u5E97")]),_:1}),e(d,{label:"1"},{default:t(()=>[o("\u4E00\u6761\u9F99")]),_:1}),e(d,{label:"0"},{default:t(()=>[o("\u53EA\u8BF7\u53A8\u5E08")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(r,{span:8},{default:t(()=>[e(m,{label:"\u6709\u65E0\u6B4C\u821E\u8868\u6F14",prop:"perform"},{default:t(()=>[e(i,{modelValue:a.datas.perform,"onUpdate:modelValue":l[5]||(l[5]=u=>a.datas.perform=u),size:"medium"},{default:t(()=>[e(d,{label:"1"},{default:t(()=>[o("\u6709")]),_:1}),e(d,{label:"0"},{default:t(()=>[o("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(r,{span:8},{default:t(()=>[e(m,{label:"\u6709\u65E0\u4EA4\u901A\u5DE5\u5177",prop:"vehicle"},{default:t(()=>[e(i,{modelValue:a.datas.vehicle,"onUpdate:modelValue":l[6]||(l[6]=u=>a.datas.vehicle=u),size:"medium"},{default:t(()=>[e(d,{label:"1"},{default:t(()=>[o("\u6709")]),_:1}),e(d,{label:"0"},{default:t(()=>[o("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(r,{span:8},{default:t(()=>[e(m,{label:"\u6709\u65E0\u4F4F\u5BBF",prop:"in_hotel"},{default:t(()=>[e(i,{modelValue:a.datas.in_hotel,"onUpdate:modelValue":l[7]||(l[7]=u=>a.datas.in_hotel=u),size:"medium"},{default:t(()=>[e(d,{label:"1"},{default:t(()=>[o("\u6709")]),_:1}),e(d,{label:"0"},{default:t(()=>[o("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1})]),_:1})]),_:1},8,["model"])]),_:1})}}});const ne=g(h,[["__scopeId","data-v-068cff19"]]);export{ne as default}; diff --git a/public/admin/assets/banquetOther.f0a94677.js b/public/admin/assets/banquetOther.f0a94677.js new file mode 100644 index 000000000..cbca82c01 --- /dev/null +++ b/public/admin/assets/banquetOther.f0a94677.js @@ -0,0 +1 @@ +import{B as E,C as V,a1 as c,G as y,H as B,a2 as F,D as v,I as x}from"./element-plus.4328d892.js";import{d as U,o as w,K as C,L as t,U as e,a as p,R as o,S as D}from"./@vue.51d7f2d8.js";import{d as g}from"./index.aa9bb752.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const z={class:"tit"},A={class:"time"},h=U({__name:"banquetOther",props:{datas:{type:Object,defualt:function(){return{types:"",start_date:"",address:"",people_count:"",serve:"",perform:"",vehicle:"",in_hotel:""}}},update_time:{type:String,defualt:""}},setup(a){return(n,l)=>{const s=E,m=V,r=c,d=y,i=B,f=F,_=v,b=x;return w(),C(b,{style:{"margin-top":"16px"}},{default:t(()=>[e(_,{ref:"elForm",disabled:!0,model:n.formData,size:"mini","label-width":"180px"},{default:t(()=>[p("div",z,[o(" \u5176\u4ED6\u5E86\u795D\u5BB4 "),p("span",A,"\u66F4\u65B0\u4E8E:"+D(a.update_time),1)]),e(f,null,{default:t(()=>[e(r,{span:8},{default:t(()=>[e(m,{label:"\u5BB4\u5E2D\u7C7B\u578B",prop:"types"},{default:t(()=>[e(s,{modelValue:a.datas.types,"onUpdate:modelValue":l[0]||(l[0]=u=>a.datas.types=u),clearable:"",type:"textarea",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(r,{span:8},{default:t(()=>[e(m,{label:"\u65F6\u95F4",prop:"start_date"},{default:t(()=>[e(s,{modelValue:a.datas.start_date,"onUpdate:modelValue":l[1]||(l[1]=u=>a.datas.start_date=u),clearable:"",type:"textarea",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(r,{span:8},{default:t(()=>[e(m,{label:"\u5730\u70B9",prop:"address"},{default:t(()=>[e(s,{modelValue:a.datas.address,"onUpdate:modelValue":l[2]||(l[2]=u=>a.datas.address=u),clearable:"",type:"textarea",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(r,{span:8},{default:t(()=>[e(m,{label:"\u4EBA\u6570",prop:"people_count"},{default:t(()=>[e(s,{modelValue:a.datas.people_count,"onUpdate:modelValue":l[3]||(l[3]=u=>a.datas.people_count=u),clearable:"",type:"textarea",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(r,{span:8},{default:t(()=>[e(m,{label:"\u8BF7\u5305\u529E",prop:"serve"},{default:t(()=>[e(i,{modelValue:a.datas.serve,"onUpdate:modelValue":l[4]||(l[4]=u=>a.datas.serve=u),size:"medium"},{default:t(()=>[e(d,{label:"2"},{default:t(()=>[o("\u9152\u5E97")]),_:1}),e(d,{label:"1"},{default:t(()=>[o("\u4E00\u6761\u9F99")]),_:1}),e(d,{label:"0"},{default:t(()=>[o("\u53EA\u8BF7\u53A8\u5E08")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(r,{span:8},{default:t(()=>[e(m,{label:"\u6709\u65E0\u6B4C\u821E\u8868\u6F14",prop:"perform"},{default:t(()=>[e(i,{modelValue:a.datas.perform,"onUpdate:modelValue":l[5]||(l[5]=u=>a.datas.perform=u),size:"medium"},{default:t(()=>[e(d,{label:"1"},{default:t(()=>[o("\u6709")]),_:1}),e(d,{label:"0"},{default:t(()=>[o("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(r,{span:8},{default:t(()=>[e(m,{label:"\u6709\u65E0\u4EA4\u901A\u5DE5\u5177",prop:"vehicle"},{default:t(()=>[e(i,{modelValue:a.datas.vehicle,"onUpdate:modelValue":l[6]||(l[6]=u=>a.datas.vehicle=u),size:"medium"},{default:t(()=>[e(d,{label:"1"},{default:t(()=>[o("\u6709")]),_:1}),e(d,{label:"0"},{default:t(()=>[o("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(r,{span:8},{default:t(()=>[e(m,{label:"\u6709\u65E0\u4F4F\u5BBF",prop:"in_hotel"},{default:t(()=>[e(i,{modelValue:a.datas.in_hotel,"onUpdate:modelValue":l[7]||(l[7]=u=>a.datas.in_hotel=u),size:"medium"},{default:t(()=>[e(d,{label:"1"},{default:t(()=>[o("\u6709")]),_:1}),e(d,{label:"0"},{default:t(()=>[o("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1})]),_:1})]),_:1},8,["model"])]),_:1})}}});const ne=g(h,[["__scopeId","data-v-068cff19"]]);export{ne as default}; diff --git a/public/admin/assets/breeding.bad4e59c.js b/public/admin/assets/breeding.bad4e59c.js new file mode 100644 index 000000000..3d0590806 --- /dev/null +++ b/public/admin/assets/breeding.bad4e59c.js @@ -0,0 +1 @@ +import{G as _,H as g,C as E,a1 as y,B as F,a2 as B,D as C,I as U}from"./element-plus.4328d892.js";import{d as z,o as w,K as x,L as a,U as e,a as r,R as i,S as A}from"./@vue.51d7f2d8.js";import{d as D}from"./index.37f7aea6.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const v={class:"tit"},I={class:"time"},R=z({__name:"breeding",props:{datas:{type:Object,defualt:function(){return{breeding_training:"",breeding_company:"",notes:"",breeding_type:"",breeding_time:"",mature_time:"",yield:"",estimated_income:"",farm_tools:"",ecological_farming:"",modernization:"",pre_price:"",method_sales:"",processing_storage:"",promote:"",transportation:"",expand_business_needs:"",demand:"",policy_subsidies:""}}},update_time:{type:String,defualt:""}},setup(l){return(p,t)=>{const m=_,s=g,d=E,o=y,n=F,f=B,b=C,V=U;return w(),x(V,{style:{"margin-top":"16px"}},{default:a(()=>[e(b,{ref:"elForm",disabled:!0,model:p.formData,size:"mini","label-width":"180px"},{default:a(()=>[r("div",v,[i(" \u517B\u6B96\u4FE1\u606F "),r("span",I,"\u66F4\u65B0\u4E8E:"+A(l.update_time),1)]),e(f,null,{default:a(()=>[e(o,{span:8},{default:a(()=>[e(d,{label:"\u6709\u65E0\u517B\u6B96\u57F9\u8BAD",prop:"breeding_training"},{default:a(()=>[e(s,{modelValue:l.datas.breeding_training,"onUpdate:modelValue":t[0]||(t[0]=u=>l.datas.breeding_training=u),size:"medium"},{default:a(()=>[e(m,{label:"1"},{default:a(()=>[i("\u6709")]),_:1}),e(m,{label:"0"},{default:a(()=>[i("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u6709\u65E0\u6CE8\u518C\u6210\u7ACB\u517B\u6B96\u516C\u53F8",prop:"breeding_company"},{default:a(()=>[e(s,{modelValue:l.datas.breeding_company,"onUpdate:modelValue":t[1]||(t[1]=u=>l.datas.breeding_company=u),size:"medium"},{default:a(()=>[e(m,{label:"1"},{default:a(()=>[i("\u6709")]),_:1}),e(m,{label:"0"},{default:a(()=>[i("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u5907\u6CE8",prop:"notes"},{default:a(()=>[e(n,{modelValue:l.datas.notes,"onUpdate:modelValue":t[2]||(t[2]=u=>l.datas.notes=u),clearable:"",autosize:"",type:"textarea",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u517B\u6B96\u7C7B\u578B",prop:"breeding_type"},{default:a(()=>[e(n,{modelValue:l.datas.breeding_type,"onUpdate:modelValue":t[3]||(t[3]=u=>l.datas.breeding_type=u),clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u5F00\u59CB\u65F6\u95F4",prop:"breeding_time"},{default:a(()=>[e(n,{modelValue:l.datas.breeding_time,"onUpdate:modelValue":t[4]||(t[4]=u=>l.datas.breeding_time=u),clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u4E0A\u5E02\u65F6\u95F4",prop:"mature_time"},{default:a(()=>[e(n,{modelValue:l.datas.mature_time,"onUpdate:modelValue":t[5]||(t[5]=u=>l.datas.mature_time=u),clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u4EA7\u91CF(\u65A4)",prop:"yield"},{default:a(()=>[e(n,{modelValue:l.datas.yield,"onUpdate:modelValue":t[6]||(t[6]=u=>l.datas.yield=u),clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u9884\u8BA1\u6536\u76CA(\u5143)",prop:"estimated_income"},{default:a(()=>[e(n,{modelValue:l.datas.estimated_income,"onUpdate:modelValue":t[7]||(t[7]=u=>l.datas.estimated_income=u),clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u519C\u8D44\u519C\u5177\u4F7F\u7528\u60C5\u51B5","label-width":"180px",prop:"farm_tools"},{default:a(()=>[e(n,{modelValue:l.datas.farm_tools,"onUpdate:modelValue":t[8]||(t[8]=u=>l.datas.farm_tools=u),clearable:"",autosize:"",type:"textarea",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u662F\u5426\u751F\u6001\u517B\u6B96",prop:"ecological_farming"},{default:a(()=>[e(s,{modelValue:l.datas.ecological_farming,"onUpdate:modelValue":t[9]||(t[9]=u=>l.datas.ecological_farming=u),size:"medium"},{default:a(()=>[e(m,{label:"1"},{default:a(()=>[i("\u6709")]),_:1}),e(m,{label:"0"},{default:a(()=>[i("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u73B0\u4EE3\u5316\u7A0B\u5EA6(%)",prop:"modernization"},{default:a(()=>[e(n,{modelValue:l.datas.modernization,"onUpdate:modelValue":t[10]||(t[10]=u=>l.datas.modernization=u),clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u9884\u552E\u5356\u4EF7\u683C(\u5143/500g)",prop:"pre_price"},{default:a(()=>[e(n,{modelValue:l.datas.pre_price,"onUpdate:modelValue":t[11]||(t[11]=u=>l.datas.pre_price=u),clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u9500\u552E\u65B9\u5F0F",prop:"method_sales"},{default:a(()=>[e(s,{modelValue:l.datas.method_sales,"onUpdate:modelValue":t[12]||(t[12]=u=>l.datas.method_sales=u),size:"medium"},{default:a(()=>[e(m,{label:"1"},{default:a(()=>[i("\u6709")]),_:1}),e(m,{label:"0"},{default:a(()=>[i("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u6709\u65E0\u52A0\u5DE5\u4ED3\u50A8",prop:"processing_storage"},{default:a(()=>[e(s,{modelValue:l.datas.processing_storage,"onUpdate:modelValue":t[13]||(t[13]=u=>l.datas.processing_storage=u),size:"medium"},{default:a(()=>[e(m,{label:"1"},{default:a(()=>[i("\u6709")]),_:1}),e(m,{label:"0"},{default:a(()=>[i("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u6709\u65E0\u5BA3\u4F20\u63A8\u5E7F",prop:"promote"},{default:a(()=>[e(s,{modelValue:l.datas.promote,"onUpdate:modelValue":t[14]||(t[14]=u=>l.datas.promote=u),size:"medium"},{default:a(()=>[e(m,{label:"1"},{default:a(()=>[i("\u6709")]),_:1}),e(m,{label:"0"},{default:a(()=>[i("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u6709\u65E0\u8FD0\u8F93",prop:"transportation"},{default:a(()=>[e(s,{modelValue:l.datas.transportation,"onUpdate:modelValue":t[15]||(t[15]=u=>l.datas.transportation=u),size:"medium"},{default:a(()=>[e(m,{label:"1"},{default:a(()=>[i("\u6709")]),_:1}),e(m,{label:"0"},{default:a(()=>[i("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u662F\u5426\u6709\u6269\u5927\u7ECF\u8425\u9700\u6C42",prop:"expand_business_needs"},{default:a(()=>[e(s,{modelValue:l.datas.expand_business_needs,"onUpdate:modelValue":t[16]||(t[16]=u=>l.datas.expand_business_needs=u),size:"medium"},{default:a(()=>[e(m,{label:"1"},{default:a(()=>[i("\u6709")]),_:1}),e(m,{label:"0"},{default:a(()=>[i("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u9700\u6C42\u63CF\u8FF0",prop:"demand"},{default:a(()=>[e(n,{modelValue:l.datas.demand,"onUpdate:modelValue":t[17]||(t[17]=u=>l.datas.demand=u),clearable:"",autosize:"",type:"textarea",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u653F\u7B56\u8865\u52A9",prop:"policy_subsidies"},{default:a(()=>[e(n,{modelValue:l.datas.policy_subsidies,"onUpdate:modelValue":t[18]||(t[18]=u=>l.datas.policy_subsidies=u),clearable:"",autosize:"",type:"textarea",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1})]),_:1})]),_:1},8,["model"])]),_:1})}}});const pe=D(R,[["__scopeId","data-v-46f89663"]]);export{pe as default}; diff --git a/public/admin/assets/breeding.df10d103.js b/public/admin/assets/breeding.df10d103.js new file mode 100644 index 000000000..6e9578187 --- /dev/null +++ b/public/admin/assets/breeding.df10d103.js @@ -0,0 +1 @@ +import{G as _,H as g,C as E,a1 as y,B as F,a2 as B,D as C,I as U}from"./element-plus.4328d892.js";import{d as z,o as w,K as x,L as a,U as e,a as r,R as i,S as A}from"./@vue.51d7f2d8.js";import{d as D}from"./index.ed71ac09.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const v={class:"tit"},I={class:"time"},R=z({__name:"breeding",props:{datas:{type:Object,defualt:function(){return{breeding_training:"",breeding_company:"",notes:"",breeding_type:"",breeding_time:"",mature_time:"",yield:"",estimated_income:"",farm_tools:"",ecological_farming:"",modernization:"",pre_price:"",method_sales:"",processing_storage:"",promote:"",transportation:"",expand_business_needs:"",demand:"",policy_subsidies:""}}},update_time:{type:String,defualt:""}},setup(l){return(p,t)=>{const m=_,s=g,d=E,o=y,n=F,f=B,b=C,V=U;return w(),x(V,{style:{"margin-top":"16px"}},{default:a(()=>[e(b,{ref:"elForm",disabled:!0,model:p.formData,size:"mini","label-width":"180px"},{default:a(()=>[r("div",v,[i(" \u517B\u6B96\u4FE1\u606F "),r("span",I,"\u66F4\u65B0\u4E8E:"+A(l.update_time),1)]),e(f,null,{default:a(()=>[e(o,{span:8},{default:a(()=>[e(d,{label:"\u6709\u65E0\u517B\u6B96\u57F9\u8BAD",prop:"breeding_training"},{default:a(()=>[e(s,{modelValue:l.datas.breeding_training,"onUpdate:modelValue":t[0]||(t[0]=u=>l.datas.breeding_training=u),size:"medium"},{default:a(()=>[e(m,{label:"1"},{default:a(()=>[i("\u6709")]),_:1}),e(m,{label:"0"},{default:a(()=>[i("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u6709\u65E0\u6CE8\u518C\u6210\u7ACB\u517B\u6B96\u516C\u53F8",prop:"breeding_company"},{default:a(()=>[e(s,{modelValue:l.datas.breeding_company,"onUpdate:modelValue":t[1]||(t[1]=u=>l.datas.breeding_company=u),size:"medium"},{default:a(()=>[e(m,{label:"1"},{default:a(()=>[i("\u6709")]),_:1}),e(m,{label:"0"},{default:a(()=>[i("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u5907\u6CE8",prop:"notes"},{default:a(()=>[e(n,{modelValue:l.datas.notes,"onUpdate:modelValue":t[2]||(t[2]=u=>l.datas.notes=u),clearable:"",autosize:"",type:"textarea",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u517B\u6B96\u7C7B\u578B",prop:"breeding_type"},{default:a(()=>[e(n,{modelValue:l.datas.breeding_type,"onUpdate:modelValue":t[3]||(t[3]=u=>l.datas.breeding_type=u),clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u5F00\u59CB\u65F6\u95F4",prop:"breeding_time"},{default:a(()=>[e(n,{modelValue:l.datas.breeding_time,"onUpdate:modelValue":t[4]||(t[4]=u=>l.datas.breeding_time=u),clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u4E0A\u5E02\u65F6\u95F4",prop:"mature_time"},{default:a(()=>[e(n,{modelValue:l.datas.mature_time,"onUpdate:modelValue":t[5]||(t[5]=u=>l.datas.mature_time=u),clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u4EA7\u91CF(\u65A4)",prop:"yield"},{default:a(()=>[e(n,{modelValue:l.datas.yield,"onUpdate:modelValue":t[6]||(t[6]=u=>l.datas.yield=u),clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u9884\u8BA1\u6536\u76CA(\u5143)",prop:"estimated_income"},{default:a(()=>[e(n,{modelValue:l.datas.estimated_income,"onUpdate:modelValue":t[7]||(t[7]=u=>l.datas.estimated_income=u),clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u519C\u8D44\u519C\u5177\u4F7F\u7528\u60C5\u51B5","label-width":"180px",prop:"farm_tools"},{default:a(()=>[e(n,{modelValue:l.datas.farm_tools,"onUpdate:modelValue":t[8]||(t[8]=u=>l.datas.farm_tools=u),clearable:"",autosize:"",type:"textarea",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u662F\u5426\u751F\u6001\u517B\u6B96",prop:"ecological_farming"},{default:a(()=>[e(s,{modelValue:l.datas.ecological_farming,"onUpdate:modelValue":t[9]||(t[9]=u=>l.datas.ecological_farming=u),size:"medium"},{default:a(()=>[e(m,{label:"1"},{default:a(()=>[i("\u6709")]),_:1}),e(m,{label:"0"},{default:a(()=>[i("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u73B0\u4EE3\u5316\u7A0B\u5EA6(%)",prop:"modernization"},{default:a(()=>[e(n,{modelValue:l.datas.modernization,"onUpdate:modelValue":t[10]||(t[10]=u=>l.datas.modernization=u),clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u9884\u552E\u5356\u4EF7\u683C(\u5143/500g)",prop:"pre_price"},{default:a(()=>[e(n,{modelValue:l.datas.pre_price,"onUpdate:modelValue":t[11]||(t[11]=u=>l.datas.pre_price=u),clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u9500\u552E\u65B9\u5F0F",prop:"method_sales"},{default:a(()=>[e(s,{modelValue:l.datas.method_sales,"onUpdate:modelValue":t[12]||(t[12]=u=>l.datas.method_sales=u),size:"medium"},{default:a(()=>[e(m,{label:"1"},{default:a(()=>[i("\u6709")]),_:1}),e(m,{label:"0"},{default:a(()=>[i("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u6709\u65E0\u52A0\u5DE5\u4ED3\u50A8",prop:"processing_storage"},{default:a(()=>[e(s,{modelValue:l.datas.processing_storage,"onUpdate:modelValue":t[13]||(t[13]=u=>l.datas.processing_storage=u),size:"medium"},{default:a(()=>[e(m,{label:"1"},{default:a(()=>[i("\u6709")]),_:1}),e(m,{label:"0"},{default:a(()=>[i("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u6709\u65E0\u5BA3\u4F20\u63A8\u5E7F",prop:"promote"},{default:a(()=>[e(s,{modelValue:l.datas.promote,"onUpdate:modelValue":t[14]||(t[14]=u=>l.datas.promote=u),size:"medium"},{default:a(()=>[e(m,{label:"1"},{default:a(()=>[i("\u6709")]),_:1}),e(m,{label:"0"},{default:a(()=>[i("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u6709\u65E0\u8FD0\u8F93",prop:"transportation"},{default:a(()=>[e(s,{modelValue:l.datas.transportation,"onUpdate:modelValue":t[15]||(t[15]=u=>l.datas.transportation=u),size:"medium"},{default:a(()=>[e(m,{label:"1"},{default:a(()=>[i("\u6709")]),_:1}),e(m,{label:"0"},{default:a(()=>[i("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u662F\u5426\u6709\u6269\u5927\u7ECF\u8425\u9700\u6C42",prop:"expand_business_needs"},{default:a(()=>[e(s,{modelValue:l.datas.expand_business_needs,"onUpdate:modelValue":t[16]||(t[16]=u=>l.datas.expand_business_needs=u),size:"medium"},{default:a(()=>[e(m,{label:"1"},{default:a(()=>[i("\u6709")]),_:1}),e(m,{label:"0"},{default:a(()=>[i("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u9700\u6C42\u63CF\u8FF0",prop:"demand"},{default:a(()=>[e(n,{modelValue:l.datas.demand,"onUpdate:modelValue":t[17]||(t[17]=u=>l.datas.demand=u),clearable:"",autosize:"",type:"textarea",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u653F\u7B56\u8865\u52A9",prop:"policy_subsidies"},{default:a(()=>[e(n,{modelValue:l.datas.policy_subsidies,"onUpdate:modelValue":t[18]||(t[18]=u=>l.datas.policy_subsidies=u),clearable:"",autosize:"",type:"textarea",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1})]),_:1})]),_:1},8,["model"])]),_:1})}}});const pe=D(R,[["__scopeId","data-v-46f89663"]]);export{pe as default}; diff --git a/public/admin/assets/breeding.fe4efdf0.js b/public/admin/assets/breeding.fe4efdf0.js new file mode 100644 index 000000000..d9f290253 --- /dev/null +++ b/public/admin/assets/breeding.fe4efdf0.js @@ -0,0 +1 @@ +import{G as _,H as g,C as E,a1 as y,B as F,a2 as B,D as C,I as U}from"./element-plus.4328d892.js";import{d as z,o as w,K as x,L as a,U as e,a as r,R as i,S as A}from"./@vue.51d7f2d8.js";import{d as D}from"./index.aa9bb752.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const v={class:"tit"},I={class:"time"},R=z({__name:"breeding",props:{datas:{type:Object,defualt:function(){return{breeding_training:"",breeding_company:"",notes:"",breeding_type:"",breeding_time:"",mature_time:"",yield:"",estimated_income:"",farm_tools:"",ecological_farming:"",modernization:"",pre_price:"",method_sales:"",processing_storage:"",promote:"",transportation:"",expand_business_needs:"",demand:"",policy_subsidies:""}}},update_time:{type:String,defualt:""}},setup(l){return(p,t)=>{const m=_,s=g,d=E,o=y,n=F,f=B,b=C,V=U;return w(),x(V,{style:{"margin-top":"16px"}},{default:a(()=>[e(b,{ref:"elForm",disabled:!0,model:p.formData,size:"mini","label-width":"180px"},{default:a(()=>[r("div",v,[i(" \u517B\u6B96\u4FE1\u606F "),r("span",I,"\u66F4\u65B0\u4E8E:"+A(l.update_time),1)]),e(f,null,{default:a(()=>[e(o,{span:8},{default:a(()=>[e(d,{label:"\u6709\u65E0\u517B\u6B96\u57F9\u8BAD",prop:"breeding_training"},{default:a(()=>[e(s,{modelValue:l.datas.breeding_training,"onUpdate:modelValue":t[0]||(t[0]=u=>l.datas.breeding_training=u),size:"medium"},{default:a(()=>[e(m,{label:"1"},{default:a(()=>[i("\u6709")]),_:1}),e(m,{label:"0"},{default:a(()=>[i("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u6709\u65E0\u6CE8\u518C\u6210\u7ACB\u517B\u6B96\u516C\u53F8",prop:"breeding_company"},{default:a(()=>[e(s,{modelValue:l.datas.breeding_company,"onUpdate:modelValue":t[1]||(t[1]=u=>l.datas.breeding_company=u),size:"medium"},{default:a(()=>[e(m,{label:"1"},{default:a(()=>[i("\u6709")]),_:1}),e(m,{label:"0"},{default:a(()=>[i("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u5907\u6CE8",prop:"notes"},{default:a(()=>[e(n,{modelValue:l.datas.notes,"onUpdate:modelValue":t[2]||(t[2]=u=>l.datas.notes=u),clearable:"",autosize:"",type:"textarea",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u517B\u6B96\u7C7B\u578B",prop:"breeding_type"},{default:a(()=>[e(n,{modelValue:l.datas.breeding_type,"onUpdate:modelValue":t[3]||(t[3]=u=>l.datas.breeding_type=u),clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u5F00\u59CB\u65F6\u95F4",prop:"breeding_time"},{default:a(()=>[e(n,{modelValue:l.datas.breeding_time,"onUpdate:modelValue":t[4]||(t[4]=u=>l.datas.breeding_time=u),clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u4E0A\u5E02\u65F6\u95F4",prop:"mature_time"},{default:a(()=>[e(n,{modelValue:l.datas.mature_time,"onUpdate:modelValue":t[5]||(t[5]=u=>l.datas.mature_time=u),clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u4EA7\u91CF(\u65A4)",prop:"yield"},{default:a(()=>[e(n,{modelValue:l.datas.yield,"onUpdate:modelValue":t[6]||(t[6]=u=>l.datas.yield=u),clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u9884\u8BA1\u6536\u76CA(\u5143)",prop:"estimated_income"},{default:a(()=>[e(n,{modelValue:l.datas.estimated_income,"onUpdate:modelValue":t[7]||(t[7]=u=>l.datas.estimated_income=u),clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u519C\u8D44\u519C\u5177\u4F7F\u7528\u60C5\u51B5","label-width":"180px",prop:"farm_tools"},{default:a(()=>[e(n,{modelValue:l.datas.farm_tools,"onUpdate:modelValue":t[8]||(t[8]=u=>l.datas.farm_tools=u),clearable:"",autosize:"",type:"textarea",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u662F\u5426\u751F\u6001\u517B\u6B96",prop:"ecological_farming"},{default:a(()=>[e(s,{modelValue:l.datas.ecological_farming,"onUpdate:modelValue":t[9]||(t[9]=u=>l.datas.ecological_farming=u),size:"medium"},{default:a(()=>[e(m,{label:"1"},{default:a(()=>[i("\u6709")]),_:1}),e(m,{label:"0"},{default:a(()=>[i("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u73B0\u4EE3\u5316\u7A0B\u5EA6(%)",prop:"modernization"},{default:a(()=>[e(n,{modelValue:l.datas.modernization,"onUpdate:modelValue":t[10]||(t[10]=u=>l.datas.modernization=u),clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u9884\u552E\u5356\u4EF7\u683C(\u5143/500g)",prop:"pre_price"},{default:a(()=>[e(n,{modelValue:l.datas.pre_price,"onUpdate:modelValue":t[11]||(t[11]=u=>l.datas.pre_price=u),clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u9500\u552E\u65B9\u5F0F",prop:"method_sales"},{default:a(()=>[e(s,{modelValue:l.datas.method_sales,"onUpdate:modelValue":t[12]||(t[12]=u=>l.datas.method_sales=u),size:"medium"},{default:a(()=>[e(m,{label:"1"},{default:a(()=>[i("\u6709")]),_:1}),e(m,{label:"0"},{default:a(()=>[i("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u6709\u65E0\u52A0\u5DE5\u4ED3\u50A8",prop:"processing_storage"},{default:a(()=>[e(s,{modelValue:l.datas.processing_storage,"onUpdate:modelValue":t[13]||(t[13]=u=>l.datas.processing_storage=u),size:"medium"},{default:a(()=>[e(m,{label:"1"},{default:a(()=>[i("\u6709")]),_:1}),e(m,{label:"0"},{default:a(()=>[i("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u6709\u65E0\u5BA3\u4F20\u63A8\u5E7F",prop:"promote"},{default:a(()=>[e(s,{modelValue:l.datas.promote,"onUpdate:modelValue":t[14]||(t[14]=u=>l.datas.promote=u),size:"medium"},{default:a(()=>[e(m,{label:"1"},{default:a(()=>[i("\u6709")]),_:1}),e(m,{label:"0"},{default:a(()=>[i("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u6709\u65E0\u8FD0\u8F93",prop:"transportation"},{default:a(()=>[e(s,{modelValue:l.datas.transportation,"onUpdate:modelValue":t[15]||(t[15]=u=>l.datas.transportation=u),size:"medium"},{default:a(()=>[e(m,{label:"1"},{default:a(()=>[i("\u6709")]),_:1}),e(m,{label:"0"},{default:a(()=>[i("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u662F\u5426\u6709\u6269\u5927\u7ECF\u8425\u9700\u6C42",prop:"expand_business_needs"},{default:a(()=>[e(s,{modelValue:l.datas.expand_business_needs,"onUpdate:modelValue":t[16]||(t[16]=u=>l.datas.expand_business_needs=u),size:"medium"},{default:a(()=>[e(m,{label:"1"},{default:a(()=>[i("\u6709")]),_:1}),e(m,{label:"0"},{default:a(()=>[i("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u9700\u6C42\u63CF\u8FF0",prop:"demand"},{default:a(()=>[e(n,{modelValue:l.datas.demand,"onUpdate:modelValue":t[17]||(t[17]=u=>l.datas.demand=u),clearable:"",autosize:"",type:"textarea",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u653F\u7B56\u8865\u52A9",prop:"policy_subsidies"},{default:a(()=>[e(n,{modelValue:l.datas.policy_subsidies,"onUpdate:modelValue":t[18]||(t[18]=u=>l.datas.policy_subsidies=u),clearable:"",autosize:"",type:"textarea",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1})]),_:1})]),_:1},8,["model"])]),_:1})}}});const pe=D(R,[["__scopeId","data-v-46f89663"]]);export{pe as default}; diff --git a/public/admin/assets/cache.7754317a.js b/public/admin/assets/cache.7754317a.js new file mode 100644 index 000000000..7a6887816 --- /dev/null +++ b/public/admin/assets/cache.7754317a.js @@ -0,0 +1 @@ +import{S as s,I as c,O as l,w as _,P as d}from"./element-plus.4328d892.js";import{s as F}from"./system.1f3b2cc7.js";import{f as B}from"./index.ed71ac09.js";import{d as r,r as E,o as f,c as C,U as t,L as o,u as h,R as b}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const D={class:"cache"},w=r({name:"cache"}),nt=r({...w,setup(A){const a=E([{content:"\u7CFB\u7EDF\u7F13\u5B58",desc:"\u7CFB\u7EDF\u8FD0\u884C\u8FC7\u7A0B\u4E2D\u4EA7\u751F\u7684\u5404\u7C7B\u7F13\u5B58\u6570\u636E"}]),i=async()=>{await B.confirm("\u786E\u8BA4\u6E05\u9664\u7CFB\u7EDF\u7F13\u5B58\uFF1F"),await F()};return(k,x)=>{const m=s,u=c,e=l,n=_,p=d;return f(),C("div",D,[t(u,{class:"!border-none",shadow:"never"},{default:o(()=>[t(m,{type:"warning",title:"\u6E29\u99A8\u63D0\u793A\uFF1A\u7BA1\u7406\u7CFB\u7EDF\u8FD0\u884C\u8FC7\u7A0B\u4E2D\u4EA7\u751F\u7684\u7F13\u5B58",closable:!1,"show-icon":""})]),_:1}),t(u,{class:"!border-none mt-4",shadow:"never"},{default:o(()=>[t(p,{data:h(a),size:"large"},{default:o(()=>[t(e,{label:"\u7BA1\u7406\u5185\u5BB9",prop:"content","min-width":"130"}),t(e,{label:"\u5185\u5BB9\u8BF4\u660E",prop:"desc","min-width":"180"}),t(e,{label:"\u64CD\u4F5C",width:"130",fixed:"right"},{default:o(()=>[t(n,{type:"primary",link:"",onClick:i},{default:o(()=>[b("\u6E05\u9664\u7CFB\u7EDF\u7F13\u5B58")]),_:1})]),_:1})]),_:1},8,["data"])]),_:1})])}}});export{nt as default}; diff --git a/public/admin/assets/cache.81463a94.js b/public/admin/assets/cache.81463a94.js new file mode 100644 index 000000000..ea0832349 --- /dev/null +++ b/public/admin/assets/cache.81463a94.js @@ -0,0 +1 @@ +import{S as s,I as c,O as l,w as _,P as d}from"./element-plus.4328d892.js";import{s as F}from"./system.02fce13c.js";import{f as B}from"./index.aa9bb752.js";import{d as r,r as E,o as f,c as C,U as t,L as o,u as h,R as b}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const D={class:"cache"},w=r({name:"cache"}),nt=r({...w,setup(A){const a=E([{content:"\u7CFB\u7EDF\u7F13\u5B58",desc:"\u7CFB\u7EDF\u8FD0\u884C\u8FC7\u7A0B\u4E2D\u4EA7\u751F\u7684\u5404\u7C7B\u7F13\u5B58\u6570\u636E"}]),i=async()=>{await B.confirm("\u786E\u8BA4\u6E05\u9664\u7CFB\u7EDF\u7F13\u5B58\uFF1F"),await F()};return(k,x)=>{const m=s,u=c,e=l,n=_,p=d;return f(),C("div",D,[t(u,{class:"!border-none",shadow:"never"},{default:o(()=>[t(m,{type:"warning",title:"\u6E29\u99A8\u63D0\u793A\uFF1A\u7BA1\u7406\u7CFB\u7EDF\u8FD0\u884C\u8FC7\u7A0B\u4E2D\u4EA7\u751F\u7684\u7F13\u5B58",closable:!1,"show-icon":""})]),_:1}),t(u,{class:"!border-none mt-4",shadow:"never"},{default:o(()=>[t(p,{data:h(a),size:"large"},{default:o(()=>[t(e,{label:"\u7BA1\u7406\u5185\u5BB9",prop:"content","min-width":"130"}),t(e,{label:"\u5185\u5BB9\u8BF4\u660E",prop:"desc","min-width":"180"}),t(e,{label:"\u64CD\u4F5C",width:"130",fixed:"right"},{default:o(()=>[t(n,{type:"primary",link:"",onClick:i},{default:o(()=>[b("\u6E05\u9664\u7CFB\u7EDF\u7F13\u5B58")]),_:1})]),_:1})]),_:1},8,["data"])]),_:1})])}}});export{nt as default}; diff --git a/public/admin/assets/cache.9e5b176a.js b/public/admin/assets/cache.9e5b176a.js new file mode 100644 index 000000000..239d94b5b --- /dev/null +++ b/public/admin/assets/cache.9e5b176a.js @@ -0,0 +1 @@ +import{S as s,I as c,O as l,w as _,P as d}from"./element-plus.4328d892.js";import{s as F}from"./system.7bc7010f.js";import{f as B}from"./index.37f7aea6.js";import{d as r,r as E,o as f,c as C,U as t,L as o,u as h,R as b}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const D={class:"cache"},w=r({name:"cache"}),nt=r({...w,setup(A){const a=E([{content:"\u7CFB\u7EDF\u7F13\u5B58",desc:"\u7CFB\u7EDF\u8FD0\u884C\u8FC7\u7A0B\u4E2D\u4EA7\u751F\u7684\u5404\u7C7B\u7F13\u5B58\u6570\u636E"}]),i=async()=>{await B.confirm("\u786E\u8BA4\u6E05\u9664\u7CFB\u7EDF\u7F13\u5B58\uFF1F"),await F()};return(k,x)=>{const m=s,u=c,e=l,n=_,p=d;return f(),C("div",D,[t(u,{class:"!border-none",shadow:"never"},{default:o(()=>[t(m,{type:"warning",title:"\u6E29\u99A8\u63D0\u793A\uFF1A\u7BA1\u7406\u7CFB\u7EDF\u8FD0\u884C\u8FC7\u7A0B\u4E2D\u4EA7\u751F\u7684\u7F13\u5B58",closable:!1,"show-icon":""})]),_:1}),t(u,{class:"!border-none mt-4",shadow:"never"},{default:o(()=>[t(p,{data:h(a),size:"large"},{default:o(()=>[t(e,{label:"\u7BA1\u7406\u5185\u5BB9",prop:"content","min-width":"130"}),t(e,{label:"\u5185\u5BB9\u8BF4\u660E",prop:"desc","min-width":"180"}),t(e,{label:"\u64CD\u4F5C",width:"130",fixed:"right"},{default:o(()=>[t(n,{type:"primary",link:"",onClick:i},{default:o(()=>[b("\u6E05\u9664\u7CFB\u7EDF\u7F13\u5B58")]),_:1})]),_:1})]),_:1},8,["data"])]),_:1})])}}});export{nt as default}; diff --git a/public/admin/assets/code-preview.04965c95.js b/public/admin/assets/code-preview.04965c95.js new file mode 100644 index 000000000..b1ba6f09e --- /dev/null +++ b/public/admin/assets/code-preview.04965c95.js @@ -0,0 +1 @@ +import"./code-preview.vue_vue_type_script_setup_true_lang.c16ace2c.js";import{_ as L}from"./code-preview.vue_vue_type_script_setup_true_lang.c16ace2c.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.aa9bb752.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";export{L as default}; diff --git a/public/admin/assets/code-preview.c908c1e0.js b/public/admin/assets/code-preview.c908c1e0.js new file mode 100644 index 000000000..dbeb42750 --- /dev/null +++ b/public/admin/assets/code-preview.c908c1e0.js @@ -0,0 +1 @@ +import"./code-preview.vue_vue_type_script_setup_true_lang.9bab2a34.js";import{_ as L}from"./code-preview.vue_vue_type_script_setup_true_lang.9bab2a34.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.ed71ac09.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";export{L as default}; diff --git a/public/admin/assets/code-preview.f2b0028f.js b/public/admin/assets/code-preview.f2b0028f.js new file mode 100644 index 000000000..0fd739935 --- /dev/null +++ b/public/admin/assets/code-preview.f2b0028f.js @@ -0,0 +1 @@ +import"./code-preview.vue_vue_type_script_setup_true_lang.be9bb714.js";import{_ as L}from"./code-preview.vue_vue_type_script_setup_true_lang.be9bb714.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.37f7aea6.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";export{L as default}; diff --git a/public/admin/assets/code-preview.vue_vue_type_script_setup_true_lang.9bab2a34.js b/public/admin/assets/code-preview.vue_vue_type_script_setup_true_lang.9bab2a34.js new file mode 100644 index 000000000..7bfbc9804 --- /dev/null +++ b/public/admin/assets/code-preview.vue_vue_type_script_setup_true_lang.9bab2a34.js @@ -0,0 +1 @@ +import{x as w,y as B,E as D,w as T,L}from"./element-plus.4328d892.js";import{f as r,b as N}from"./index.ed71ac09.js";import{u as U}from"./vue-clipboard3.dca5bca3.js";import{d as $,r as j,e as F,a4 as R,o as c,c as d,U as o,L as t,u as m,k as i,T as S,a7 as K,K as P,a as p,R as q}from"./@vue.51d7f2d8.js";const z={class:"code-preview"},A={class:"flex",style:{height:"50vh"}},O=$({__name:"code-preview",props:{modelValue:{type:Boolean},code:{}},emits:["update:modelValue"],setup(_,{emit:f}){const b=_,{toClipboard:h}=U(),n=j("index0"),V=async a=>{try{await h(a),r.msgSuccess("\u590D\u5236\u6210\u529F")}catch{r.msgError("\u590D\u5236\u5931\u8D25")}},s=F({get(){return b.modelValue},set(a){f("update:modelValue",a)}});return(a,l)=>{const g=R("highlightjs"),v=D,y=N,C=T,E=w,k=B,x=L;return c(),d("div",z,[o(x,{modelValue:m(s),"onUpdate:modelValue":l[1]||(l[1]=e=>i(s)?s.value=e:null),width:"900px",title:"\u4EE3\u7801\u9884\u89C8"},{default:t(()=>[o(k,{modelValue:m(n),"onUpdate:modelValue":l[0]||(l[0]=e=>i(n)?n.value=e:null)},{default:t(()=>[(c(!0),d(S,null,K(a.code,(e,u)=>(c(),P(E,{label:e.name,name:`index${u}`,key:u},{default:t(()=>[p("div",A,[o(v,{class:"flex-1"},{default:t(()=>[o(g,{autodetect:"",code:e.content},null,8,["code"])]),_:2},1024),p("div",null,[o(C,{onClick:G=>V(e.content),type:"primary",link:""},{icon:t(()=>[o(y,{name:"el-icon-CopyDocument"})]),default:t(()=>[q(" \u590D\u5236 ")]),_:2},1032,["onClick"])])])]),_:2},1032,["label","name"]))),128))]),_:1},8,["modelValue"])]),_:1},8,["modelValue"])])}}});export{O as _}; diff --git a/public/admin/assets/code-preview.vue_vue_type_script_setup_true_lang.be9bb714.js b/public/admin/assets/code-preview.vue_vue_type_script_setup_true_lang.be9bb714.js new file mode 100644 index 000000000..cd9d72b00 --- /dev/null +++ b/public/admin/assets/code-preview.vue_vue_type_script_setup_true_lang.be9bb714.js @@ -0,0 +1 @@ +import{x as w,y as B,E as D,w as T,L}from"./element-plus.4328d892.js";import{f as r,b as N}from"./index.37f7aea6.js";import{u as U}from"./vue-clipboard3.dca5bca3.js";import{d as $,r as j,e as F,a4 as R,o as c,c as d,U as o,L as t,u as m,k as i,T as S,a7 as K,K as P,a as p,R as q}from"./@vue.51d7f2d8.js";const z={class:"code-preview"},A={class:"flex",style:{height:"50vh"}},O=$({__name:"code-preview",props:{modelValue:{type:Boolean},code:{}},emits:["update:modelValue"],setup(_,{emit:f}){const b=_,{toClipboard:h}=U(),n=j("index0"),V=async a=>{try{await h(a),r.msgSuccess("\u590D\u5236\u6210\u529F")}catch{r.msgError("\u590D\u5236\u5931\u8D25")}},s=F({get(){return b.modelValue},set(a){f("update:modelValue",a)}});return(a,l)=>{const g=R("highlightjs"),v=D,y=N,C=T,E=w,k=B,x=L;return c(),d("div",z,[o(x,{modelValue:m(s),"onUpdate:modelValue":l[1]||(l[1]=e=>i(s)?s.value=e:null),width:"900px",title:"\u4EE3\u7801\u9884\u89C8"},{default:t(()=>[o(k,{modelValue:m(n),"onUpdate:modelValue":l[0]||(l[0]=e=>i(n)?n.value=e:null)},{default:t(()=>[(c(!0),d(S,null,K(a.code,(e,u)=>(c(),P(E,{label:e.name,name:`index${u}`,key:u},{default:t(()=>[p("div",A,[o(v,{class:"flex-1"},{default:t(()=>[o(g,{autodetect:"",code:e.content},null,8,["code"])]),_:2},1024),p("div",null,[o(C,{onClick:G=>V(e.content),type:"primary",link:""},{icon:t(()=>[o(y,{name:"el-icon-CopyDocument"})]),default:t(()=>[q(" \u590D\u5236 ")]),_:2},1032,["onClick"])])])]),_:2},1032,["label","name"]))),128))]),_:1},8,["modelValue"])]),_:1},8,["modelValue"])])}}});export{O as _}; diff --git a/public/admin/assets/code-preview.vue_vue_type_script_setup_true_lang.c16ace2c.js b/public/admin/assets/code-preview.vue_vue_type_script_setup_true_lang.c16ace2c.js new file mode 100644 index 000000000..2a518c4b7 --- /dev/null +++ b/public/admin/assets/code-preview.vue_vue_type_script_setup_true_lang.c16ace2c.js @@ -0,0 +1 @@ +import{x as w,y as B,E as D,w as T,L}from"./element-plus.4328d892.js";import{f as r,b as N}from"./index.aa9bb752.js";import{u as U}from"./vue-clipboard3.dca5bca3.js";import{d as $,r as j,e as F,a4 as R,o as c,c as d,U as o,L as t,u as m,k as i,T as S,a7 as K,K as P,a as p,R as q}from"./@vue.51d7f2d8.js";const z={class:"code-preview"},A={class:"flex",style:{height:"50vh"}},O=$({__name:"code-preview",props:{modelValue:{type:Boolean},code:{}},emits:["update:modelValue"],setup(_,{emit:f}){const b=_,{toClipboard:h}=U(),n=j("index0"),V=async a=>{try{await h(a),r.msgSuccess("\u590D\u5236\u6210\u529F")}catch{r.msgError("\u590D\u5236\u5931\u8D25")}},s=F({get(){return b.modelValue},set(a){f("update:modelValue",a)}});return(a,l)=>{const g=R("highlightjs"),v=D,y=N,C=T,E=w,k=B,x=L;return c(),d("div",z,[o(x,{modelValue:m(s),"onUpdate:modelValue":l[1]||(l[1]=e=>i(s)?s.value=e:null),width:"900px",title:"\u4EE3\u7801\u9884\u89C8"},{default:t(()=>[o(k,{modelValue:m(n),"onUpdate:modelValue":l[0]||(l[0]=e=>i(n)?n.value=e:null)},{default:t(()=>[(c(!0),d(S,null,K(a.code,(e,u)=>(c(),P(E,{label:e.name,name:`index${u}`,key:u},{default:t(()=>[p("div",A,[o(v,{class:"flex-1"},{default:t(()=>[o(g,{autodetect:"",code:e.content},null,8,["code"])]),_:2},1024),p("div",null,[o(C,{onClick:G=>V(e.content),type:"primary",link:""},{icon:t(()=>[o(y,{name:"el-icon-CopyDocument"})]),default:t(()=>[q(" \u590D\u5236 ")]),_:2},1032,["onClick"])])])]),_:2},1032,["label","name"]))),128))]),_:1},8,["modelValue"])]),_:1},8,["modelValue"])])}}});export{O as _}; diff --git a/public/admin/assets/code.1f2ae5c5.js b/public/admin/assets/code.1f2ae5c5.js new file mode 100644 index 000000000..7da913bb0 --- /dev/null +++ b/public/admin/assets/code.1f2ae5c5.js @@ -0,0 +1 @@ +import{r as t}from"./index.aa9bb752.js";function o(e){return t.get({url:"/tools.generator/generateTable",params:e})}function n(e){return t.get({url:"/tools.generator/dataTable",params:e})}function a(e){return t.post({url:"/tools.generator/selectTable",params:e})}function l(e){return t.get({url:"/tools.generator/detail",params:e})}function s(e){return t.post({url:"/tools.generator/syncColumn",params:e})}function u(e){return t.post({url:"/tools.generator/delete",params:e})}function g(e){return t.post({url:"/tools.generator/edit",params:e})}function i(e){return t.post({url:"/tools.generator/preview",params:e})}function c(e){return t.post({url:"/tools.generator/generate",params:e})}function f(){return t.get({url:"/tools.generator/getModels"})}export{f as a,u as b,i as c,c as d,o as e,a as f,g,n as h,s,l as t}; diff --git a/public/admin/assets/code.2b4ea8b1.js b/public/admin/assets/code.2b4ea8b1.js new file mode 100644 index 000000000..833100c56 --- /dev/null +++ b/public/admin/assets/code.2b4ea8b1.js @@ -0,0 +1 @@ +import{r as t}from"./index.37f7aea6.js";function o(e){return t.get({url:"/tools.generator/generateTable",params:e})}function n(e){return t.get({url:"/tools.generator/dataTable",params:e})}function a(e){return t.post({url:"/tools.generator/selectTable",params:e})}function l(e){return t.get({url:"/tools.generator/detail",params:e})}function s(e){return t.post({url:"/tools.generator/syncColumn",params:e})}function u(e){return t.post({url:"/tools.generator/delete",params:e})}function g(e){return t.post({url:"/tools.generator/edit",params:e})}function i(e){return t.post({url:"/tools.generator/preview",params:e})}function c(e){return t.post({url:"/tools.generator/generate",params:e})}function f(){return t.get({url:"/tools.generator/getModels"})}export{f as a,u as b,i as c,c as d,o as e,a as f,g,n as h,s,l as t}; diff --git a/public/admin/assets/code.7deeaac3.js b/public/admin/assets/code.7deeaac3.js new file mode 100644 index 000000000..5d4f4a579 --- /dev/null +++ b/public/admin/assets/code.7deeaac3.js @@ -0,0 +1 @@ +import{r as t}from"./index.ed71ac09.js";function o(e){return t.get({url:"/tools.generator/generateTable",params:e})}function n(e){return t.get({url:"/tools.generator/dataTable",params:e})}function a(e){return t.post({url:"/tools.generator/selectTable",params:e})}function l(e){return t.get({url:"/tools.generator/detail",params:e})}function s(e){return t.post({url:"/tools.generator/syncColumn",params:e})}function u(e){return t.post({url:"/tools.generator/delete",params:e})}function g(e){return t.post({url:"/tools.generator/edit",params:e})}function i(e){return t.post({url:"/tools.generator/preview",params:e})}function c(e){return t.post({url:"/tools.generator/generate",params:e})}function f(){return t.get({url:"/tools.generator/getModels"})}export{f as a,u as b,i as c,c as d,o as e,a as f,g,n as h,s,l as t}; diff --git a/public/admin/assets/common.86798ce6.js b/public/admin/assets/common.86798ce6.js new file mode 100644 index 000000000..73542041c --- /dev/null +++ b/public/admin/assets/common.86798ce6.js @@ -0,0 +1 @@ +import{r}from"./index.aa9bb752.js";function i(t){return r.get({url:"/common/province",params:t})}function n(t){return r.get({url:"/common/city",params:t})}function o(t){return r.get({url:"/common/area",params:t})}function a(t){return r.get({url:"/common/street",params:t})}function u(t){return r.get({url:"/common/village",params:t})}function c(){return r.get({url:"/common/brigade"})}export{i as a,n as b,o as c,a as d,u as e,c as f}; diff --git a/public/admin/assets/common.a58b263a.js b/public/admin/assets/common.a58b263a.js new file mode 100644 index 000000000..6d751cb83 --- /dev/null +++ b/public/admin/assets/common.a58b263a.js @@ -0,0 +1 @@ +import{r}from"./index.37f7aea6.js";function i(t){return r.get({url:"/common/province",params:t})}function n(t){return r.get({url:"/common/city",params:t})}function o(t){return r.get({url:"/common/area",params:t})}function a(t){return r.get({url:"/common/street",params:t})}function u(t){return r.get({url:"/common/village",params:t})}function c(){return r.get({url:"/common/brigade"})}export{i as a,n as b,o as c,a as d,u as e,c as f}; diff --git a/public/admin/assets/common.ac78ede6.js b/public/admin/assets/common.ac78ede6.js new file mode 100644 index 000000000..693fd902e --- /dev/null +++ b/public/admin/assets/common.ac78ede6.js @@ -0,0 +1 @@ +import{r}from"./index.ed71ac09.js";function i(t){return r.get({url:"/common/province",params:t})}function n(t){return r.get({url:"/common/city",params:t})}function o(t){return r.get({url:"/common/area",params:t})}function a(t){return r.get({url:"/common/street",params:t})}function u(t){return r.get({url:"/common/village",params:t})}function c(){return r.get({url:"/common/brigade"})}export{i as a,n as b,o as c,a as d,u as e,c as f}; diff --git a/public/admin/assets/company.2a500777.js b/public/admin/assets/company.2a500777.js new file mode 100644 index 000000000..7ef5d3912 --- /dev/null +++ b/public/admin/assets/company.2a500777.js @@ -0,0 +1 @@ +import{B as M,C as O,M as $,N as j,w as K,D as Q,I as z,O as G,P as H,Q as J}from"./element-plus.4328d892.js";import{_ as W}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{u as X}from"./vue-router.9f65afb1.js";import{d as x,r as h,$ as B,a4 as Y,o as d,c as V,U as e,L as a,u as o,M as c,V as y,T as Z,a7 as ee,K as E,R as C,a as _,S as oe,k as te}from"./@vue.51d7f2d8.js";import{u as ae}from"./usePaging.2ad8e1e6.js";import{u as le}from"./useDictOptions.a45fc8ac.js";import{a as se,k as ue}from"./index.37f7aea6.js";import{k as ne}from"./company.d1e8fc82.js";import"./lodash.08438971.js";import{d as re}from"./dict.58face92.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./axios.105476b3.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const pe={class:"mt-4"},me={class:"text-success"},ie={style:{display:"flex"}},de={class:"flex mt-4 justify-end"},ce=x({name:"financeCompanyLists"}),oo=x({...ce,setup(_e){var g;se();const w=X(),p=h(!0),s=B({company_name:"",area:"",street:"",company_type:"",area_manager:"",is_contract:""});w.query.company_type&&(p.value=!1,s.company_type=((g=w.query.company_type)==null?void 0:g.toString())||"");const F=B({dictTypeLists:[]});(async()=>{const m=await re({type_id:6});F.dictTypeLists=m.lists})();const k=h([]),D=m=>{k.value=m.map(({id:l})=>l)};le("");const{pager:r,getLists:b,resetParams:L,resetPage:T}=ae({fetchFun:ne,params:s});return b(),(m,l)=>{const i=M,n=O,A=$,S=j,f=K,U=Q,v=z,u=G,P=Y("router-link"),q=H,I=W,N=J;return d(),V("div",null,[e(v,{class:"!border-none mb-4",shadow:"never"},{default:a(()=>[e(U,{class:"mb-[-16px] formdata",model:o(s),inline:""},{default:a(()=>[e(n,{label:"\u516C\u53F8\u540D\u79F0",prop:"company_name"},{default:a(()=>[e(i,{class:"w-[280px]",modelValue:o(s).company_name,"onUpdate:modelValue":l[0]||(l[0]=t=>o(s).company_name=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u516C\u53F8\u540D\u79F0"},null,8,["modelValue"])]),_:1}),c(e(n,{label:"\u533A",prop:"area"},{default:a(()=>[e(i,{class:"w-[280px]",modelValue:o(s).area,"onUpdate:modelValue":l[1]||(l[1]=t=>o(s).area=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u533A"},null,8,["modelValue"])]),_:1},512),[[y,o(p)]]),c(e(n,{label:"\u9547",prop:"street"},{default:a(()=>[e(i,{class:"w-[280px]",modelValue:o(s).street,"onUpdate:modelValue":l[2]||(l[2]=t=>o(s).street=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u9547"},null,8,["modelValue"])]),_:1},512),[[y,o(p)]]),c(e(n,{label:"\u516C\u53F8\u7C7B\u578B",prop:"company_type"},{default:a(()=>[e(S,{modelValue:o(s).company_type,"onUpdate:modelValue":l[3]||(l[3]=t=>o(s).company_type=t),placeholder:"\u8BF7\u9009\u62E9\u516C\u53F8\u7C7B\u578B",clearable:"",class:"w-[280px]"},{default:a(()=>[(d(!0),V(Z,null,ee(o(F).dictTypeLists,(t,R)=>(d(),E(A,{key:R,label:t.name,value:t.id},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1},512),[[y,o(p)]]),e(n,{label:"\u7247\u533A\u7ECF\u7406",prop:"area_manager"},{default:a(()=>[e(i,{class:"w-[280px]",modelValue:o(s).area_manager,"onUpdate:modelValue":l[4]||(l[4]=t=>o(s).area_manager=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u7247\u533A\u7ECF\u7406"},null,8,["modelValue"])]),_:1}),e(n,null,{default:a(()=>[e(f,{type:"primary",onClick:o(T)},{default:a(()=>[C("\u67E5\u8BE2")]),_:1},8,["onClick"]),e(f,{onClick:o(L)},{default:a(()=>[C("\u91CD\u7F6E")]),_:1},8,["onClick"])]),_:1})]),_:1},8,["model"])]),_:1}),c((d(),E(v,{class:"!border-none",shadow:"never"},{default:a(()=>[_("div",pe,[e(q,{data:o(r).lists,onSelectionChange:D},{default:a(()=>[e(u,{label:"ID",prop:"id","show-overflow-tooltip":"",width:"80"}),e(u,{label:"\u516C\u53F8\u540D\u79F0",prop:"company_name",width:"300","show-overflow-tooltip":""}),e(u,{label:"\u516C\u53F8\u7C7B\u578B",prop:"company_type","show-overflow-tooltip":""}),e(u,{label:"\u516C\u53F8\u6536\u76CA",prop:"deposit","show-overflow-tooltip":""},{default:a(({row:t})=>[_("span",me,oe(t.deposit),1)]),_:1}),e(u,{label:"\u533A\u53BF",prop:"area","show-overflow-tooltip":""}),e(u,{label:"\u4E61\u9547",prop:"street","show-overflow-tooltip":""}),e(u,{label:"\u4E3B\u8054\u7CFB\u4EBA",prop:"master_name","show-overflow-tooltip":""}),e(u,{label:"\u8054\u7CFB\u65B9\u5F0F",prop:"master_phone","show-overflow-tooltip":""}),e(u,{label:"\u7247\u533A\u7ECF\u7406",prop:"area_manager","show-overflow-tooltip":""}),e(u,{label:"\u64CD\u4F5C",align:"center",width:"150",fixed:"right"},{default:a(({row:t})=>[_("div",ie,[e(f,{type:"primary",link:""},{default:a(()=>[e(P,{to:{path:o(ue)("finance.account_log/lists"),query:{company_id:t.id}}},{default:a(()=>[C("\u67E5\u770B\u6210\u5458")]),_:2},1032,["to"])]),_:2},1024)])]),_:1})]),_:1},8,["data"])]),_("div",de,[e(I,{modelValue:o(r),"onUpdate:modelValue":l[5]||(l[5]=t=>te(r)?r.value=t:null),onChange:o(b)},null,8,["modelValue","onChange"])])]),_:1})),[[N,o(r).loading]])])}}});export{oo as default}; diff --git a/public/admin/assets/company.2ba67de6.js b/public/admin/assets/company.2ba67de6.js new file mode 100644 index 000000000..ed72d7631 --- /dev/null +++ b/public/admin/assets/company.2ba67de6.js @@ -0,0 +1 @@ +import{B as M,C as O,M as $,N as j,w as K,D as Q,I as z,O as G,P as H,Q as J}from"./element-plus.4328d892.js";import{_ as W}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{u as X}from"./vue-router.9f65afb1.js";import{d as x,r as h,$ as B,a4 as Y,o as d,c as V,U as e,L as a,u as o,M as c,V as y,T as Z,a7 as ee,K as E,R as C,a as _,S as oe,k as te}from"./@vue.51d7f2d8.js";import{u as ae}from"./usePaging.2ad8e1e6.js";import{u as le}from"./useDictOptions.a61fcf9f.js";import{a as se,k as ue}from"./index.aa9bb752.js";import{k as ne}from"./company.b7ec1bf9.js";import"./lodash.08438971.js";import{d as re}from"./dict.927f1fc7.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./axios.105476b3.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const pe={class:"mt-4"},me={class:"text-success"},ie={style:{display:"flex"}},de={class:"flex mt-4 justify-end"},ce=x({name:"financeCompanyLists"}),oo=x({...ce,setup(_e){var g;se();const w=X(),p=h(!0),s=B({company_name:"",area:"",street:"",company_type:"",area_manager:"",is_contract:""});w.query.company_type&&(p.value=!1,s.company_type=((g=w.query.company_type)==null?void 0:g.toString())||"");const F=B({dictTypeLists:[]});(async()=>{const m=await re({type_id:6});F.dictTypeLists=m.lists})();const k=h([]),D=m=>{k.value=m.map(({id:l})=>l)};le("");const{pager:r,getLists:b,resetParams:L,resetPage:T}=ae({fetchFun:ne,params:s});return b(),(m,l)=>{const i=M,n=O,A=$,S=j,f=K,U=Q,v=z,u=G,P=Y("router-link"),q=H,I=W,N=J;return d(),V("div",null,[e(v,{class:"!border-none mb-4",shadow:"never"},{default:a(()=>[e(U,{class:"mb-[-16px] formdata",model:o(s),inline:""},{default:a(()=>[e(n,{label:"\u516C\u53F8\u540D\u79F0",prop:"company_name"},{default:a(()=>[e(i,{class:"w-[280px]",modelValue:o(s).company_name,"onUpdate:modelValue":l[0]||(l[0]=t=>o(s).company_name=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u516C\u53F8\u540D\u79F0"},null,8,["modelValue"])]),_:1}),c(e(n,{label:"\u533A",prop:"area"},{default:a(()=>[e(i,{class:"w-[280px]",modelValue:o(s).area,"onUpdate:modelValue":l[1]||(l[1]=t=>o(s).area=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u533A"},null,8,["modelValue"])]),_:1},512),[[y,o(p)]]),c(e(n,{label:"\u9547",prop:"street"},{default:a(()=>[e(i,{class:"w-[280px]",modelValue:o(s).street,"onUpdate:modelValue":l[2]||(l[2]=t=>o(s).street=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u9547"},null,8,["modelValue"])]),_:1},512),[[y,o(p)]]),c(e(n,{label:"\u516C\u53F8\u7C7B\u578B",prop:"company_type"},{default:a(()=>[e(S,{modelValue:o(s).company_type,"onUpdate:modelValue":l[3]||(l[3]=t=>o(s).company_type=t),placeholder:"\u8BF7\u9009\u62E9\u516C\u53F8\u7C7B\u578B",clearable:"",class:"w-[280px]"},{default:a(()=>[(d(!0),V(Z,null,ee(o(F).dictTypeLists,(t,R)=>(d(),E(A,{key:R,label:t.name,value:t.id},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1},512),[[y,o(p)]]),e(n,{label:"\u7247\u533A\u7ECF\u7406",prop:"area_manager"},{default:a(()=>[e(i,{class:"w-[280px]",modelValue:o(s).area_manager,"onUpdate:modelValue":l[4]||(l[4]=t=>o(s).area_manager=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u7247\u533A\u7ECF\u7406"},null,8,["modelValue"])]),_:1}),e(n,null,{default:a(()=>[e(f,{type:"primary",onClick:o(T)},{default:a(()=>[C("\u67E5\u8BE2")]),_:1},8,["onClick"]),e(f,{onClick:o(L)},{default:a(()=>[C("\u91CD\u7F6E")]),_:1},8,["onClick"])]),_:1})]),_:1},8,["model"])]),_:1}),c((d(),E(v,{class:"!border-none",shadow:"never"},{default:a(()=>[_("div",pe,[e(q,{data:o(r).lists,onSelectionChange:D},{default:a(()=>[e(u,{label:"ID",prop:"id","show-overflow-tooltip":"",width:"80"}),e(u,{label:"\u516C\u53F8\u540D\u79F0",prop:"company_name",width:"300","show-overflow-tooltip":""}),e(u,{label:"\u516C\u53F8\u7C7B\u578B",prop:"company_type","show-overflow-tooltip":""}),e(u,{label:"\u516C\u53F8\u6536\u76CA",prop:"deposit","show-overflow-tooltip":""},{default:a(({row:t})=>[_("span",me,oe(t.deposit),1)]),_:1}),e(u,{label:"\u533A\u53BF",prop:"area","show-overflow-tooltip":""}),e(u,{label:"\u4E61\u9547",prop:"street","show-overflow-tooltip":""}),e(u,{label:"\u4E3B\u8054\u7CFB\u4EBA",prop:"master_name","show-overflow-tooltip":""}),e(u,{label:"\u8054\u7CFB\u65B9\u5F0F",prop:"master_phone","show-overflow-tooltip":""}),e(u,{label:"\u7247\u533A\u7ECF\u7406",prop:"area_manager","show-overflow-tooltip":""}),e(u,{label:"\u64CD\u4F5C",align:"center",width:"150",fixed:"right"},{default:a(({row:t})=>[_("div",ie,[e(f,{type:"primary",link:""},{default:a(()=>[e(P,{to:{path:o(ue)("finance.account_log/lists"),query:{company_id:t.id}}},{default:a(()=>[C("\u67E5\u770B\u6210\u5458")]),_:2},1032,["to"])]),_:2},1024)])]),_:1})]),_:1},8,["data"])]),_("div",de,[e(I,{modelValue:o(r),"onUpdate:modelValue":l[5]||(l[5]=t=>te(r)?r.value=t:null),onChange:o(b)},null,8,["modelValue","onChange"])])]),_:1})),[[N,o(r).loading]])])}}});export{oo as default}; diff --git a/public/admin/assets/company.4bbcd86c.js b/public/admin/assets/company.4bbcd86c.js new file mode 100644 index 000000000..ba6ec68ac --- /dev/null +++ b/public/admin/assets/company.4bbcd86c.js @@ -0,0 +1 @@ +import{k as Be,B as be,C as he,M as ke,N as we,w as Ve,D as ge,I as De,O as Ae,P as xe,a1 as Le,a2 as Ue,L as Pe,Q as Te}from"./element-plus.4328d892.js";import{_ as Ie}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{d as ee,r as m,$ as X,a4 as Se,af as $e,o as l,c as E,U as e,L as t,u,M as _,V as N,T as R,a7 as Y,K as y,R as p,a as C,Q as j,k as P}from"./@vue.51d7f2d8.js";import{u as qe}from"./vue-router.9f65afb1.js";import{u as ze}from"./usePaging.2ad8e1e6.js";import{u as Me}from"./useDictOptions.a61fcf9f.js";import{a as Ne,k as O,f as Re}from"./index.aa9bb752.js";import{i as je,f as Oe,s as Qe,j as Ge,a as Ke,c as He,k as Je}from"./company.b7ec1bf9.js";import"./lodash.08438971.js";import{d as Z}from"./dict.927f1fc7.js";import{d as We}from"./dict.070e6995.js";import{_ as Xe}from"./dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.8c21acad.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./axios.105476b3.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const Ye={class:"mt-4"},Ze={key:0,style:{color:"#67c23a"}},ea={key:1,style:{color:"#fe0000"}},aa={style:{display:"flex"}},ta={class:"flex mt-4 justify-end"},ua=C("h1",null,"\u91CD\u8981\u63D0\u9192",-1),oa=C("div",{class:"content"},"\u8BF7\u786E\u8BA4\u4FE1\u606F\u662F\u5426\u6709\u8BEF",-1),la={class:"btn_menu"},na=C("h1",null,"\u91CD\u8981\u63D0\u9192",-1),sa={key:0,class:"content"},ra={key:1,class:"content"},ia={class:"btn_menu"},pa=ee({name:"companyLists"}),et=ee({...pa,setup(ca){var H;const w=m(!1),ae=s=>{n.value.party_a=s.id,n.value.party_a_name=s.company_name,w.value=!1},D=Ne();console.log(D.userInfo.company_id);const Q=qe(),A=m(!0),v=m(!1),x=m(!1),L=()=>{v.value=!1,x.value=!1},G=m(!1),V=m(!1),T=()=>{V.value=!1,G.value=!1},B=m(""),n=m({party_a:"",party_a_name:"",party_b:"",party_b_name:"",contract_type:"",contract_no:""}),te=m([]),K=m([]),ue=async s=>{const o=await Ke({id:s});He().then(d=>{te.value=d}),Z({type_id:7}).then(d=>{K.value=d.lists.filter(c=>We.find(h=>h==c.id))}),n.value.party_b=o.id,n.value.party_b_name=o.company_name,D.userInfo.company.id?(n.value.party_a=D.userInfo.company.id,n.value.party_a_name=D.userInfo.company.company_name):(n.value.party_a="",n.value.party_a_name="")},oe=s=>{B.value=s.id,ue(s.id),le()},le=()=>{G.value=!0,V.value=!0},ne=s=>{v.value=!0,x.value=!0,B.value=s.id},se=async()=>{await je({id:B.value,...n.value}),b(),T()},re=async()=>{await Oe({id:B.value}),b(),L()},ie=async()=>{await Qe({id:B.value}),b(),L()},r=X({company_name:"",area:"",street:"",company_type:"",area_manager:"",is_contract:""});Q.query.company_type&&(A.value=!1,r.company_type=((H=Q.query.company_type)==null?void 0:H.toString())||"");const I=X({dictTypeLists:[]});(async()=>{const s=await Z({type_id:6});I.dictTypeLists=s.lists})();const pe=m([]),ce=s=>{pe.value=s.map(({id:o})=>o)};Me("");const{pager:g,getLists:b,resetParams:de,resetPage:me}=ze({fetchFun:Je,params:r}),_e=async s=>{await Re.confirm("\u786E\u5B9A\u8981\u8BA4\u8BC1\uFF1F"),await Ge({id:s}),b()},ye=()=>{Be.warning("\u8BF7\u7B49\u5F85\u5408\u540C\u5BA1\u6838\u5B8C\u6210!")};return b(),(s,o)=>{const d=be,c=he,h=ke,S=we,i=Ve,fe=ge,$=De,q=Se("router-link"),f=Ae,Ce=xe,Ee=Ie,U=Le,Fe=Ue,z=Pe,F=$e("perms"),ve=Te;return l(),E("div",null,[e($,{class:"!border-none mb-4",shadow:"never"},{default:t(()=>[e(fe,{class:"mb-[-16px] formdata",model:u(r),inline:""},{default:t(()=>[e(c,{label:"\u516C\u53F8\u540D\u79F0",prop:"company_name"},{default:t(()=>[e(d,{class:"w-[280px]",modelValue:u(r).company_name,"onUpdate:modelValue":o[0]||(o[0]=a=>u(r).company_name=a),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u516C\u53F8\u540D\u79F0"},null,8,["modelValue"])]),_:1}),_(e(c,{label:"\u533A",prop:"area"},{default:t(()=>[e(d,{class:"w-[280px]",modelValue:u(r).area,"onUpdate:modelValue":o[1]||(o[1]=a=>u(r).area=a),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u533A"},null,8,["modelValue"])]),_:1},512),[[N,u(A)]]),_(e(c,{label:"\u9547",prop:"street"},{default:t(()=>[e(d,{class:"w-[280px]",modelValue:u(r).street,"onUpdate:modelValue":o[2]||(o[2]=a=>u(r).street=a),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u9547"},null,8,["modelValue"])]),_:1},512),[[N,u(A)]]),_(e(c,{label:"\u516C\u53F8\u7C7B\u578B",prop:"company_type"},{default:t(()=>[e(S,{modelValue:u(r).company_type,"onUpdate:modelValue":o[3]||(o[3]=a=>u(r).company_type=a),placeholder:"\u8BF7\u9009\u62E9\u516C\u53F8\u7C7B\u578B",clearable:"",class:"w-[280px]"},{default:t(()=>[(l(!0),E(R,null,Y(u(I).dictTypeLists,(a,k)=>(l(),y(h,{key:k,label:a.name,value:a.id},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1},512),[[N,u(A)]]),e(c,{label:"\u7247\u533A\u7ECF\u7406",prop:"area_manager"},{default:t(()=>[e(d,{class:"w-[280px]",modelValue:u(r).area_manager,"onUpdate:modelValue":o[4]||(o[4]=a=>u(r).area_manager=a),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u7247\u533A\u7ECF\u7406"},null,8,["modelValue"])]),_:1}),e(c,{label:"\u662F\u5426\u7B7E\u7EA6",prop:"is_contract"},{default:t(()=>[e(S,{modelValue:u(r).is_contract,"onUpdate:modelValue":o[5]||(o[5]=a=>u(r).is_contract=a),placeholder:"\u662F\u5426\u7B7E\u7EA6",clearable:"",class:"w-[240px]"},{default:t(()=>[e(h,{label:"\u5DF2\u7B7E\u7EA6",value:"1"}),e(h,{label:"\u672A\u7B7E\u7EA6",value:"0"})]),_:1},8,["modelValue"])]),_:1}),e(c,null,{default:t(()=>[e(i,{type:"primary",onClick:u(me)},{default:t(()=>[p("\u67E5\u8BE2")]),_:1},8,["onClick"]),e(i,{onClick:u(de)},{default:t(()=>[p("\u91CD\u7F6E")]),_:1},8,["onClick"])]),_:1})]),_:1},8,["model"])]),_:1}),_((l(),y($,{class:"!border-none",shadow:"never"},{default:t(()=>[_(e(q,{to:{path:u(O)("company/add:edit"),query:{flag:!0}}},null,8,["to"]),[[F,["company/add:edit"]]]),C("div",Ye,[e(Ce,{data:u(g).lists,onSelectionChange:ce},{default:t(()=>[e(f,{label:"id",prop:"id","show-overflow-tooltip":"",width:"60"}),e(f,{label:"\u516C\u53F8\u540D\u79F0",prop:"company_name",width:"250px","show-overflow-tooltip":""}),e(f,{label:"\u516C\u53F8\u7C7B\u578B",prop:"company_type","show-overflow-tooltip":""}),e(f,{label:"\u533A\u53BF",prop:"area","show-overflow-tooltip":""}),e(f,{label:"\u4E61\u9547",prop:"street","show-overflow-tooltip":""}),e(f,{label:"\u4E3B\u8054\u7CFB\u4EBA",prop:"master_name","show-overflow-tooltip":""}),e(f,{label:"\u8054\u7CFB\u65B9\u5F0F",prop:"master_phone","show-overflow-tooltip":""}),e(f,{label:"\u7247\u533A\u7ECF\u7406",prop:"area_manager","show-overflow-tooltip":""}),e(f,{label:"\u662F\u5426\u7B7E\u7EA6",prop:"is_contract","show-overflow-tooltip":""},{default:t(({row:a})=>[a.is_contract==1?(l(),E("span",Ze,"\u5DF2\u7B7E\u7EA6")):(l(),E("span",ea,"\u672A\u7B7E\u7EA6"))]),_:1}),e(f,{label:"\u64CD\u4F5C",align:"center",width:"510",fixed:"right"},{default:t(({row:a})=>{var k,J,W;return[C("div",aa,[e(i,{type:"primary",link:""},{default:t(()=>[e(q,{to:{path:u(O)("company/subordinate/lists"),query:{company_id:a.id,read:!0}}},{default:t(()=>[p("\u4E0B\u5C5E\u516C\u53F8")]),_:2},1032,["to"])]),_:2},1024),_((l(),y(i,{type:"primary",link:""},{default:t(()=>[e(q,{to:{path:u(O)("company/add:edit"),query:{id:a.id,read:!0,isshow:!0}}},{default:t(()=>[p("\u8BE6\u60C5")]),_:2},1032,["to"])]),_:2},1024)),[[F,["company/add:edit"]]]),a.is_authentication==0?_((l(),y(i,{key:0,type:"primary",link:"",onClick:M=>_e(a.id)},{default:t(()=>[p("\u4F01\u4E1A\u8BA4\u8BC1")]),_:2},1032,["onClick"])),[[F,["company/authentication"]]]):j("",!0),a.is_authentication&&a.is_contract==0?(l(),E(R,{key:1},[Array.isArray(a.contract)&&a.contract.length==0?_((l(),y(i,{key:0,type:"primary",link:"",onClick:M=>oe(a)},{default:t(()=>[p("\u751F\u6210\u5408\u540C")]),_:2},1032,["onClick"])),[[F,["company/initiate_contract"]]]):((k=a.contract)==null?void 0:k.check_status)==1?_((l(),y(i,{key:1,type:"warning",link:"",onClick:ye},{default:t(()=>[p("\u5BA1\u6838\u4E2D")]),_:1})),[[F,["company/initiate_contract"]]]):((J=a.contract)==null?void 0:J.check_status)==2?_((l(),y(i,{key:2,type:"primary",link:"",onClick:M=>ne(a)},{default:t(()=>[p("\u53D1\u9001\u5408\u540C")]),_:2},1032,["onClick"])),[[F,["company/Draftingcontracts"]]]):((W=a.contract)==null?void 0:W.check_status)==3?_((l(),y(i,{key:3,type:"primary",link:"",onClick:M=>(v.value=!0,B.value=a.id)},{default:t(()=>[p("\u53D1\u9001\u77ED\u4FE1")]),_:2},1032,["onClick"])),[[F,["company/postsms"]]]):j("",!0)],64)):j("",!0)])]}),_:1})]),_:1},8,["data"])]),C("div",ta,[e(Ee,{modelValue:u(g),"onUpdate:modelValue":o[6]||(o[6]=a=>P(g)?g.value=a:null),onChange:u(b)},null,8,["modelValue","onChange"])])]),_:1})),[[ve,u(g).loading]]),e(z,{modelValue:u(V),"onUpdate:modelValue":o[13]||(o[13]=a=>P(V)?V.value=a:null),onClose:T},{default:t(()=>[ua,C("div",null,[oa,e($,null,{default:t(()=>[e(Fe,null,{default:t(()=>[e(U,{span:12},{default:t(()=>[e(c,{"label-width":"100px",label:"\u7532\u65B9",prop:"field130"},{default:t(()=>[e(d,{modelValue:u(n).party_a_name,"onUpdate:modelValue":o[7]||(o[7]=a=>u(n).party_a_name=a),placeholder:"\u8BF7\u9009\u62E9\u7532\u65B9",onClick:o[8]||(o[8]=a=>w.value=!0),clearable:"",style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(U,{span:12},{default:t(()=>[e(c,{"label-width":"100px",label:"\u4E59\u65B9",prop:"field131"},{default:t(()=>[e(d,{disabled:!0,modelValue:u(n).party_b_name,"onUpdate:modelValue":o[9]||(o[9]=a=>u(n).party_b_name=a),placeholder:"\u8BF7\u9009\u62E9\u4E59\u65B9",clearable:"",style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(U,{span:12},{default:t(()=>[e(c,{"label-width":"100px",label:"\u5408\u540C\u7C7B\u578B",prop:"contract_type"},{default:t(()=>[e(S,{modelValue:u(n).contract_type,"onUpdate:modelValue":o[10]||(o[10]=a=>u(n).contract_type=a),placeholder:"\u8BF7\u9009\u62E9\u5408\u540C\u7C7B\u578B",clearable:"",style:{width:"100%"}},{default:t(()=>[(l(!0),E(R,null,Y(u(K),(a,k)=>(l(),y(h,{key:k,label:a.name,value:a.id},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(U,{span:12},{default:t(()=>[e(c,{"label-width":"100px",label:"\u5408\u540C\u7F16\u53F7",prop:"field133"},{default:t(()=>[e(d,{placeholder:"\u7CFB\u7EDF\u81EA\u52A8\u751F\u6210",modelValue:u(n).contract_no,"onUpdate:modelValue":o[11]||(o[11]=a=>u(n).contract_no=a),clearable:"",style:{width:"100%"},disabled:!0},null,8,["modelValue"])]),_:1})]),_:1})]),_:1})]),_:1})]),C("p",la,[e(i,{type:"primary",size:"large",onClick:se},{default:t(()=>[p("\u786E\u8BA4")]),_:1}),e(i,{type:"info",size:"large",onClick:T},{default:t(()=>[p("\u8FD4\u56DE")]),_:1})]),e(z,{modelValue:u(w),"onUpdate:modelValue":o[12]||(o[12]=a=>P(w)?w.value=a:null)},{default:t(()=>[e(Xe,{companyTypeList:u(I).dictTypeLists,type:30,onCustomEvent:ae},null,8,["companyTypeList"])]),_:1},8,["modelValue"])]),_:1},8,["modelValue"]),e(z,{modelValue:u(v),"onUpdate:modelValue":o[14]||(o[14]=a=>P(v)?v.value=a:null),onClose:L},{default:t(()=>[na,u(x)?(l(),E("div",sa," \u8BF7\u786E\u8BA4\u4FE1\u606F\u662F\u5426\u6709\u8BEF,\u53D1\u9001\u5408\u540C,\u8BF7\u786E\u8BA4\u4FE1\u606F\u662F\u5426\u6709\u8BEF,\u53D1\u9001\u7535\u5B50\u5408\u540C\u540E\u77ED\u65F6\u95F4\u5185\u5C06\u4E0D\u53EF\u518D\u6B21\u53D1\u9001. ")):(l(),E("div",ra," \u786E\u8BA4\u7B7E\u7EA6\u77ED\u4FE1\u5C06\u572860\u79D2\u540E\u53D1\u9001,\u8BF7\u6CE8\u610F\u67E5\u6536,\u5E76\u70B9\u51FB\u77ED\u4FE1\u94FE\u63A5\u8FDB\u884C\u7EBF\u4E0A\u5408\u540C\u7B7E\u7EA6 ")),C("p",ia,[u(x)?(l(),y(i,{key:0,type:"primary",size:"large",onClick:re},{default:t(()=>[p("\u786E\u8BA4")]),_:1})):(l(),y(i,{key:1,type:"primary",size:"large",onClick:ie},{default:t(()=>[p("\u786E\u8BA4")]),_:1})),e(i,{type:"info",size:"large",onClick:L},{default:t(()=>[p("\u8FD4\u56DE")]),_:1})])]),_:1},8,["modelValue"])])}}});export{et as default}; diff --git a/public/admin/assets/company.7f823bd3.js b/public/admin/assets/company.7f823bd3.js new file mode 100644 index 000000000..c55380790 --- /dev/null +++ b/public/admin/assets/company.7f823bd3.js @@ -0,0 +1 @@ +import{k as Be,B as be,C as he,M as ke,N as we,w as ge,D as Ve,I as De,O as Ae,P as xe,a1 as Le,a2 as Ue,L as Pe,Q as Te}from"./element-plus.4328d892.js";import{_ as Ie}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{d as ee,r as m,$ as X,a4 as Se,af as $e,o as l,c as E,U as e,L as t,u,M as _,V as N,T as R,a7 as Y,K as y,R as p,a as C,Q as j,k as P}from"./@vue.51d7f2d8.js";import{u as qe}from"./vue-router.9f65afb1.js";import{u as ze}from"./usePaging.2ad8e1e6.js";import{u as Me}from"./useDictOptions.8d37e54b.js";import{a as Ne,k as O,f as Re}from"./index.ed71ac09.js";import{i as je,g as Oe,s as Qe,h as Ge,a as Ke,c as He,j as Je}from"./company.8a1c349a.js";import"./lodash.08438971.js";import{d as Z}from"./dict.6c560e38.js";import{d as We}from"./dict.070e6995.js";import{_ as Xe}from"./dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.c1d31e4b.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./axios.105476b3.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const Ye={class:"mt-4"},Ze={key:0,style:{color:"#67c23a"}},ea={key:1,style:{color:"#fe0000"}},aa={style:{display:"flex"}},ta={class:"flex mt-4 justify-end"},ua=C("h1",null,"\u91CD\u8981\u63D0\u9192",-1),oa=C("div",{class:"content"},"\u8BF7\u786E\u8BA4\u4FE1\u606F\u662F\u5426\u6709\u8BEF",-1),la={class:"btn_menu"},na=C("h1",null,"\u91CD\u8981\u63D0\u9192",-1),sa={key:0,class:"content"},ra={key:1,class:"content"},ia={class:"btn_menu"},pa=ee({name:"companyLists"}),et=ee({...pa,setup(ca){var H;const w=m(!1),ae=s=>{n.value.party_a=s.id,n.value.party_a_name=s.company_name,w.value=!1},D=Ne();console.log(D.userInfo.company_id);const Q=qe(),A=m(!0),v=m(!1),x=m(!1),L=()=>{v.value=!1,x.value=!1},G=m(!1),g=m(!1),T=()=>{g.value=!1,G.value=!1},B=m(""),n=m({party_a:"",party_a_name:"",party_b:"",party_b_name:"",contract_type:"",contract_no:""}),te=m([]),K=m([]),ue=async s=>{const o=await Ke({id:s});He().then(d=>{te.value=d}),Z({type_id:7}).then(d=>{K.value=d.lists.filter(c=>We.find(h=>h==c.id))}),n.value.party_b=o.id,n.value.party_b_name=o.company_name,D.userInfo.company.id?(n.value.party_a=D.userInfo.company.id,n.value.party_a_name=D.userInfo.company.company_name):(n.value.party_a="",n.value.party_a_name="")},oe=s=>{B.value=s.id,ue(s.id),le()},le=()=>{G.value=!0,g.value=!0},ne=s=>{v.value=!0,x.value=!0,B.value=s.id},se=async()=>{await je({id:B.value,...n.value}),b(),T()},re=async()=>{await Oe({id:B.value}),b(),L()},ie=async()=>{await Qe({id:B.value}),b(),L()},r=X({company_name:"",area:"",street:"",company_type:"",area_manager:"",is_contract:""});Q.query.company_type&&(A.value=!1,r.company_type=((H=Q.query.company_type)==null?void 0:H.toString())||"");const I=X({dictTypeLists:[]});(async()=>{const s=await Z({type_id:6});I.dictTypeLists=s.lists})();const pe=m([]),ce=s=>{pe.value=s.map(({id:o})=>o)};Me("");const{pager:V,getLists:b,resetParams:de,resetPage:me}=ze({fetchFun:Je,params:r}),_e=async s=>{await Re.confirm("\u786E\u5B9A\u8981\u8BA4\u8BC1\uFF1F"),await Ge({id:s}),b()},ye=()=>{Be.warning("\u8BF7\u7B49\u5F85\u5408\u540C\u5BA1\u6838\u5B8C\u6210!")};return b(),(s,o)=>{const d=be,c=he,h=ke,S=we,i=ge,fe=Ve,$=De,q=Se("router-link"),f=Ae,Ce=xe,Ee=Ie,U=Le,Fe=Ue,z=Pe,F=$e("perms"),ve=Te;return l(),E("div",null,[e($,{class:"!border-none mb-4",shadow:"never"},{default:t(()=>[e(fe,{class:"mb-[-16px] formdata",model:u(r),inline:""},{default:t(()=>[e(c,{label:"\u516C\u53F8\u540D\u79F0",prop:"company_name"},{default:t(()=>[e(d,{class:"w-[280px]",modelValue:u(r).company_name,"onUpdate:modelValue":o[0]||(o[0]=a=>u(r).company_name=a),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u516C\u53F8\u540D\u79F0"},null,8,["modelValue"])]),_:1}),_(e(c,{label:"\u533A",prop:"area"},{default:t(()=>[e(d,{class:"w-[280px]",modelValue:u(r).area,"onUpdate:modelValue":o[1]||(o[1]=a=>u(r).area=a),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u533A"},null,8,["modelValue"])]),_:1},512),[[N,u(A)]]),_(e(c,{label:"\u9547",prop:"street"},{default:t(()=>[e(d,{class:"w-[280px]",modelValue:u(r).street,"onUpdate:modelValue":o[2]||(o[2]=a=>u(r).street=a),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u9547"},null,8,["modelValue"])]),_:1},512),[[N,u(A)]]),_(e(c,{label:"\u516C\u53F8\u7C7B\u578B",prop:"company_type"},{default:t(()=>[e(S,{modelValue:u(r).company_type,"onUpdate:modelValue":o[3]||(o[3]=a=>u(r).company_type=a),placeholder:"\u8BF7\u9009\u62E9\u516C\u53F8\u7C7B\u578B",clearable:"",class:"w-[280px]"},{default:t(()=>[(l(!0),E(R,null,Y(u(I).dictTypeLists,(a,k)=>(l(),y(h,{key:k,label:a.name,value:a.id},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1},512),[[N,u(A)]]),e(c,{label:"\u7247\u533A\u7ECF\u7406",prop:"area_manager"},{default:t(()=>[e(d,{class:"w-[280px]",modelValue:u(r).area_manager,"onUpdate:modelValue":o[4]||(o[4]=a=>u(r).area_manager=a),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u7247\u533A\u7ECF\u7406"},null,8,["modelValue"])]),_:1}),e(c,{label:"\u662F\u5426\u7B7E\u7EA6",prop:"is_contract"},{default:t(()=>[e(S,{modelValue:u(r).is_contract,"onUpdate:modelValue":o[5]||(o[5]=a=>u(r).is_contract=a),placeholder:"\u662F\u5426\u7B7E\u7EA6",clearable:"",class:"w-[240px]"},{default:t(()=>[e(h,{label:"\u5DF2\u7B7E\u7EA6",value:"1"}),e(h,{label:"\u672A\u7B7E\u7EA6",value:"0"})]),_:1},8,["modelValue"])]),_:1}),e(c,null,{default:t(()=>[e(i,{type:"primary",onClick:u(me)},{default:t(()=>[p("\u67E5\u8BE2")]),_:1},8,["onClick"]),e(i,{onClick:u(de)},{default:t(()=>[p("\u91CD\u7F6E")]),_:1},8,["onClick"])]),_:1})]),_:1},8,["model"])]),_:1}),_((l(),y($,{class:"!border-none",shadow:"never"},{default:t(()=>[_(e(q,{to:{path:u(O)("company/add:edit"),query:{flag:!0}}},null,8,["to"]),[[F,["company/add:edit"]]]),C("div",Ye,[e(Ce,{data:u(V).lists,onSelectionChange:ce},{default:t(()=>[e(f,{label:"id",prop:"id","show-overflow-tooltip":"",width:"60"}),e(f,{label:"\u516C\u53F8\u540D\u79F0",prop:"company_name",width:"250px","show-overflow-tooltip":""}),e(f,{label:"\u516C\u53F8\u7C7B\u578B",prop:"company_type","show-overflow-tooltip":""}),e(f,{label:"\u533A\u53BF",prop:"area","show-overflow-tooltip":""}),e(f,{label:"\u4E61\u9547",prop:"street","show-overflow-tooltip":""}),e(f,{label:"\u4E3B\u8054\u7CFB\u4EBA",prop:"master_name","show-overflow-tooltip":""}),e(f,{label:"\u8054\u7CFB\u65B9\u5F0F",prop:"master_phone","show-overflow-tooltip":""}),e(f,{label:"\u7247\u533A\u7ECF\u7406",prop:"area_manager","show-overflow-tooltip":""}),e(f,{label:"\u662F\u5426\u7B7E\u7EA6",prop:"is_contract","show-overflow-tooltip":""},{default:t(({row:a})=>[a.is_contract==1?(l(),E("span",Ze,"\u5DF2\u7B7E\u7EA6")):(l(),E("span",ea,"\u672A\u7B7E\u7EA6"))]),_:1}),e(f,{label:"\u64CD\u4F5C",align:"center",width:"510",fixed:"right"},{default:t(({row:a})=>{var k,J,W;return[C("div",aa,[e(i,{type:"primary",link:""},{default:t(()=>[e(q,{to:{path:u(O)("company/subordinate/lists"),query:{company_id:a.id,read:!0}}},{default:t(()=>[p("\u4E0B\u5C5E\u516C\u53F8")]),_:2},1032,["to"])]),_:2},1024),_((l(),y(i,{type:"primary",link:""},{default:t(()=>[e(q,{to:{path:u(O)("company/add:edit"),query:{id:a.id,read:!0,isshow:!0}}},{default:t(()=>[p("\u8BE6\u60C5")]),_:2},1032,["to"])]),_:2},1024)),[[F,["company/add:edit"]]]),a.is_authentication==0?_((l(),y(i,{key:0,type:"primary",link:"",onClick:M=>_e(a.id)},{default:t(()=>[p("\u4F01\u4E1A\u8BA4\u8BC1")]),_:2},1032,["onClick"])),[[F,["company/authentication"]]]):j("",!0),a.is_authentication&&a.is_contract==0?(l(),E(R,{key:1},[Array.isArray(a.contract)&&a.contract.length==0?_((l(),y(i,{key:0,type:"primary",link:"",onClick:M=>oe(a)},{default:t(()=>[p("\u751F\u6210\u5408\u540C")]),_:2},1032,["onClick"])),[[F,["company/initiate_contract"]]]):((k=a.contract)==null?void 0:k.check_status)==1?_((l(),y(i,{key:1,type:"warning",link:"",onClick:ye},{default:t(()=>[p("\u5BA1\u6838\u4E2D")]),_:1})),[[F,["company/initiate_contract"]]]):((J=a.contract)==null?void 0:J.check_status)==2?_((l(),y(i,{key:2,type:"primary",link:"",onClick:M=>ne(a)},{default:t(()=>[p("\u53D1\u9001\u5408\u540C")]),_:2},1032,["onClick"])),[[F,["company/Draftingcontracts"]]]):((W=a.contract)==null?void 0:W.check_status)==3?_((l(),y(i,{key:3,type:"primary",link:"",onClick:M=>(v.value=!0,B.value=a.id)},{default:t(()=>[p("\u53D1\u9001\u77ED\u4FE1")]),_:2},1032,["onClick"])),[[F,["company/postsms"]]]):j("",!0)],64)):j("",!0)])]}),_:1})]),_:1},8,["data"])]),C("div",ta,[e(Ee,{modelValue:u(V),"onUpdate:modelValue":o[6]||(o[6]=a=>P(V)?V.value=a:null),onChange:u(b)},null,8,["modelValue","onChange"])])]),_:1})),[[ve,u(V).loading]]),e(z,{modelValue:u(g),"onUpdate:modelValue":o[13]||(o[13]=a=>P(g)?g.value=a:null),onClose:T},{default:t(()=>[ua,C("div",null,[oa,e($,null,{default:t(()=>[e(Fe,null,{default:t(()=>[e(U,{span:12},{default:t(()=>[e(c,{"label-width":"100px",label:"\u7532\u65B9",prop:"field130"},{default:t(()=>[e(d,{modelValue:u(n).party_a_name,"onUpdate:modelValue":o[7]||(o[7]=a=>u(n).party_a_name=a),placeholder:"\u8BF7\u9009\u62E9\u7532\u65B9",onClick:o[8]||(o[8]=a=>w.value=!0),clearable:"",style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(U,{span:12},{default:t(()=>[e(c,{"label-width":"100px",label:"\u4E59\u65B9",prop:"field131"},{default:t(()=>[e(d,{disabled:!0,modelValue:u(n).party_b_name,"onUpdate:modelValue":o[9]||(o[9]=a=>u(n).party_b_name=a),placeholder:"\u8BF7\u9009\u62E9\u4E59\u65B9",clearable:"",style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(U,{span:12},{default:t(()=>[e(c,{"label-width":"100px",label:"\u5408\u540C\u7C7B\u578B",prop:"contract_type"},{default:t(()=>[e(S,{modelValue:u(n).contract_type,"onUpdate:modelValue":o[10]||(o[10]=a=>u(n).contract_type=a),placeholder:"\u8BF7\u9009\u62E9\u5408\u540C\u7C7B\u578B",clearable:"",style:{width:"100%"}},{default:t(()=>[(l(!0),E(R,null,Y(u(K),(a,k)=>(l(),y(h,{key:k,label:a.name,value:a.id},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(U,{span:12},{default:t(()=>[e(c,{"label-width":"100px",label:"\u5408\u540C\u7F16\u53F7",prop:"field133"},{default:t(()=>[e(d,{placeholder:"\u7CFB\u7EDF\u81EA\u52A8\u751F\u6210",modelValue:u(n).contract_no,"onUpdate:modelValue":o[11]||(o[11]=a=>u(n).contract_no=a),clearable:"",style:{width:"100%"},disabled:!0},null,8,["modelValue"])]),_:1})]),_:1})]),_:1})]),_:1})]),C("p",la,[e(i,{type:"primary",size:"large",onClick:se},{default:t(()=>[p("\u786E\u8BA4")]),_:1}),e(i,{type:"info",size:"large",onClick:T},{default:t(()=>[p("\u8FD4\u56DE")]),_:1})]),e(z,{modelValue:u(w),"onUpdate:modelValue":o[12]||(o[12]=a=>P(w)?w.value=a:null)},{default:t(()=>[e(Xe,{companyTypeList:u(I).dictTypeLists,type:30,onCustomEvent:ae},null,8,["companyTypeList"])]),_:1},8,["modelValue"])]),_:1},8,["modelValue"]),e(z,{modelValue:u(v),"onUpdate:modelValue":o[14]||(o[14]=a=>P(v)?v.value=a:null),onClose:L},{default:t(()=>[na,u(x)?(l(),E("div",sa," \u8BF7\u786E\u8BA4\u4FE1\u606F\u662F\u5426\u6709\u8BEF,\u53D1\u9001\u5408\u540C,\u8BF7\u786E\u8BA4\u4FE1\u606F\u662F\u5426\u6709\u8BEF,\u53D1\u9001\u7535\u5B50\u5408\u540C\u540E\u77ED\u65F6\u95F4\u5185\u5C06\u4E0D\u53EF\u518D\u6B21\u53D1\u9001. ")):(l(),E("div",ra," \u786E\u8BA4\u7B7E\u7EA6\u77ED\u4FE1\u5C06\u572860\u79D2\u540E\u53D1\u9001,\u8BF7\u6CE8\u610F\u67E5\u6536,\u5E76\u70B9\u51FB\u77ED\u4FE1\u94FE\u63A5\u8FDB\u884C\u7EBF\u4E0A\u5408\u540C\u7B7E\u7EA6 ")),C("p",ia,[u(x)?(l(),y(i,{key:0,type:"primary",size:"large",onClick:re},{default:t(()=>[p("\u786E\u8BA4")]),_:1})):(l(),y(i,{key:1,type:"primary",size:"large",onClick:ie},{default:t(()=>[p("\u786E\u8BA4")]),_:1})),e(i,{type:"info",size:"large",onClick:L},{default:t(()=>[p("\u8FD4\u56DE")]),_:1})])]),_:1},8,["modelValue"])])}}});export{et as default}; diff --git a/public/admin/assets/company.8a1c349a.js b/public/admin/assets/company.8a1c349a.js new file mode 100644 index 000000000..69e8bcba8 --- /dev/null +++ b/public/admin/assets/company.8a1c349a.js @@ -0,0 +1 @@ +import{r as n}from"./index.ed71ac09.js";function r(t){return n.get({url:"/company/lists",params:t})}function e(t){return n.post({url:"/company/add",params:t})}function o(t){return n.post({url:"/company/edit",params:t})}function i(t){return n.post({url:"/company/delete",params:t})}function u(t){return n.get({url:"/company/detail",params:t})}function c(t){return n.get({url:"/company/subordinate",params:t})}function s(t){return n.get({url:"/company/postsms",params:t})}function p(t){return n.get({url:"/company/initiate_contract",params:t})}function m(t){return n.get({url:"/company/Draftingcontracts",params:t})}function l(t){return n.get({url:"/company/authentication",params:t})}function y(t){return n.get({url:"/company/list_two",params:t})}function f(t){return n.get({url:"/company/responsible_area",params:t})}function g(t){return n.get({url:"/company/organizationFaceCreate",params:t})}export{u as a,f as b,y as c,o as d,e,i as f,m as g,l as h,p as i,r as j,c as k,g as o,s}; diff --git a/public/admin/assets/company.9c62bd6b.js b/public/admin/assets/company.9c62bd6b.js new file mode 100644 index 000000000..a0c1115b8 --- /dev/null +++ b/public/admin/assets/company.9c62bd6b.js @@ -0,0 +1 @@ +import{B as j,C as M,M as O,N as $,w as K,D as Q,I as z,O as G,P as H,Q as J}from"./element-plus.4328d892.js";import{_ as W}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{u as X}from"./vue-router.9f65afb1.js";import{d as x,r as h,$ as B,a4 as Y,o as d,c as V,U as e,L as a,u as o,M as c,V as y,T as Z,a7 as ee,K as E,R as C,a as _,S as oe,k as te}from"./@vue.51d7f2d8.js";import{u as ae}from"./usePaging.2ad8e1e6.js";import{u as le}from"./useDictOptions.8d37e54b.js";import{a as se,k as ue}from"./index.ed71ac09.js";import{j as ne}from"./company.8a1c349a.js";import"./lodash.08438971.js";import{d as re}from"./dict.6c560e38.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./axios.105476b3.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const pe={class:"mt-4"},me={class:"text-success"},ie={style:{display:"flex"}},de={class:"flex mt-4 justify-end"},ce=x({name:"financeCompanyLists"}),oo=x({...ce,setup(_e){var g;se();const w=X(),p=h(!0),s=B({company_name:"",area:"",street:"",company_type:"",area_manager:"",is_contract:""});w.query.company_type&&(p.value=!1,s.company_type=((g=w.query.company_type)==null?void 0:g.toString())||"");const F=B({dictTypeLists:[]});(async()=>{const m=await re({type_id:6});F.dictTypeLists=m.lists})();const k=h([]),D=m=>{k.value=m.map(({id:l})=>l)};le("");const{pager:r,getLists:b,resetParams:L,resetPage:T}=ae({fetchFun:ne,params:s});return b(),(m,l)=>{const i=j,n=M,A=O,S=$,f=K,U=Q,v=z,u=G,P=Y("router-link"),q=H,I=W,N=J;return d(),V("div",null,[e(v,{class:"!border-none mb-4",shadow:"never"},{default:a(()=>[e(U,{class:"mb-[-16px] formdata",model:o(s),inline:""},{default:a(()=>[e(n,{label:"\u516C\u53F8\u540D\u79F0",prop:"company_name"},{default:a(()=>[e(i,{class:"w-[280px]",modelValue:o(s).company_name,"onUpdate:modelValue":l[0]||(l[0]=t=>o(s).company_name=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u516C\u53F8\u540D\u79F0"},null,8,["modelValue"])]),_:1}),c(e(n,{label:"\u533A",prop:"area"},{default:a(()=>[e(i,{class:"w-[280px]",modelValue:o(s).area,"onUpdate:modelValue":l[1]||(l[1]=t=>o(s).area=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u533A"},null,8,["modelValue"])]),_:1},512),[[y,o(p)]]),c(e(n,{label:"\u9547",prop:"street"},{default:a(()=>[e(i,{class:"w-[280px]",modelValue:o(s).street,"onUpdate:modelValue":l[2]||(l[2]=t=>o(s).street=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u9547"},null,8,["modelValue"])]),_:1},512),[[y,o(p)]]),c(e(n,{label:"\u516C\u53F8\u7C7B\u578B",prop:"company_type"},{default:a(()=>[e(S,{modelValue:o(s).company_type,"onUpdate:modelValue":l[3]||(l[3]=t=>o(s).company_type=t),placeholder:"\u8BF7\u9009\u62E9\u516C\u53F8\u7C7B\u578B",clearable:"",class:"w-[280px]"},{default:a(()=>[(d(!0),V(Z,null,ee(o(F).dictTypeLists,(t,R)=>(d(),E(A,{key:R,label:t.name,value:t.id},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1},512),[[y,o(p)]]),e(n,{label:"\u7247\u533A\u7ECF\u7406",prop:"area_manager"},{default:a(()=>[e(i,{class:"w-[280px]",modelValue:o(s).area_manager,"onUpdate:modelValue":l[4]||(l[4]=t=>o(s).area_manager=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u7247\u533A\u7ECF\u7406"},null,8,["modelValue"])]),_:1}),e(n,null,{default:a(()=>[e(f,{type:"primary",onClick:o(T)},{default:a(()=>[C("\u67E5\u8BE2")]),_:1},8,["onClick"]),e(f,{onClick:o(L)},{default:a(()=>[C("\u91CD\u7F6E")]),_:1},8,["onClick"])]),_:1})]),_:1},8,["model"])]),_:1}),c((d(),E(v,{class:"!border-none",shadow:"never"},{default:a(()=>[_("div",pe,[e(q,{data:o(r).lists,onSelectionChange:D},{default:a(()=>[e(u,{label:"ID",prop:"id","show-overflow-tooltip":"",width:"80"}),e(u,{label:"\u516C\u53F8\u540D\u79F0",prop:"company_name",width:"300","show-overflow-tooltip":""}),e(u,{label:"\u516C\u53F8\u7C7B\u578B",prop:"company_type","show-overflow-tooltip":""}),e(u,{label:"\u516C\u53F8\u6536\u76CA",prop:"deposit","show-overflow-tooltip":""},{default:a(({row:t})=>[_("span",me,oe(t.deposit),1)]),_:1}),e(u,{label:"\u533A\u53BF",prop:"area","show-overflow-tooltip":""}),e(u,{label:"\u4E61\u9547",prop:"street","show-overflow-tooltip":""}),e(u,{label:"\u4E3B\u8054\u7CFB\u4EBA",prop:"master_name","show-overflow-tooltip":""}),e(u,{label:"\u8054\u7CFB\u65B9\u5F0F",prop:"master_phone","show-overflow-tooltip":""}),e(u,{label:"\u7247\u533A\u7ECF\u7406",prop:"area_manager","show-overflow-tooltip":""}),e(u,{label:"\u64CD\u4F5C",align:"center",width:"150",fixed:"right"},{default:a(({row:t})=>[_("div",ie,[e(f,{type:"primary",link:""},{default:a(()=>[e(P,{to:{path:o(ue)("finance.account_log/lists"),query:{company_id:t.id}}},{default:a(()=>[C("\u67E5\u770B\u6210\u5458")]),_:2},1032,["to"])]),_:2},1024)])]),_:1})]),_:1},8,["data"])]),_("div",de,[e(I,{modelValue:o(r),"onUpdate:modelValue":l[5]||(l[5]=t=>te(r)?r.value=t:null),onChange:o(b)},null,8,["modelValue","onChange"])])]),_:1})),[[N,o(r).loading]])])}}});export{oo as default}; diff --git a/public/admin/assets/company.b7ec1bf9.js b/public/admin/assets/company.b7ec1bf9.js new file mode 100644 index 000000000..23133908f --- /dev/null +++ b/public/admin/assets/company.b7ec1bf9.js @@ -0,0 +1 @@ +import{r as n}from"./index.aa9bb752.js";function r(t){return n.get({url:"/company/lists",params:t})}function e(t){return n.post({url:"/company/add",params:t})}function o(t){return n.post({url:"/company/edit",params:t})}function i(t){return n.post({url:"/company/delete",params:t})}function u(t){return n.get({url:"/company/detail",params:t})}function c(t){return n.get({url:"/company/subordinate",params:t})}function s(t){return n.get({url:"/setting.dict.dict_data/getContractPartyACompanyTypeList",params:t})}function p(t){return n.get({url:"/company/postsms",params:t})}function y(t){return n.get({url:"/company/initiate_contract",params:t})}function m(t){return n.get({url:"/company/Draftingcontracts",params:t})}function l(t){return n.get({url:"/company/authentication",params:t})}function g(t){return n.get({url:"/company/list_two",params:t})}function f(t){return n.get({url:"/company/responsible_area",params:t})}function d(t){return n.get({url:"/company/organizationFaceCreate",params:t})}export{u as a,f as b,g as c,o as d,e,m as f,s as g,i as h,y as i,l as j,r as k,c as l,d as o,p as s}; diff --git a/public/admin/assets/company.c2a04cef.js b/public/admin/assets/company.c2a04cef.js new file mode 100644 index 000000000..4b4023ade --- /dev/null +++ b/public/admin/assets/company.c2a04cef.js @@ -0,0 +1 @@ +import{k as Be,B as be,C as he,M as ke,N as we,w as Ve,D as ge,I as De,O as Ae,P as xe,a1 as Le,a2 as Ue,L as Pe,Q as Te}from"./element-plus.4328d892.js";import{_ as Ie}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{d as ee,r as m,$ as X,a4 as Se,af as $e,o as l,c as E,U as e,L as t,u,M as _,V as N,T as R,a7 as Y,K as y,R as p,a as C,Q as j,k as P}from"./@vue.51d7f2d8.js";import{u as qe}from"./vue-router.9f65afb1.js";import{u as ze}from"./usePaging.2ad8e1e6.js";import{u as Me}from"./useDictOptions.a45fc8ac.js";import{a as Ne,k as O,f as Re}from"./index.37f7aea6.js";import{i as je,f as Oe,s as Qe,j as Ge,a as Ke,c as He,k as Je}from"./company.d1e8fc82.js";import"./lodash.08438971.js";import{d as Z}from"./dict.58face92.js";import{d as We}from"./dict.070e6995.js";import{_ as Xe}from"./dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.dac25500.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./axios.105476b3.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const Ye={class:"mt-4"},Ze={key:0,style:{color:"#67c23a"}},ea={key:1,style:{color:"#fe0000"}},aa={style:{display:"flex"}},ta={class:"flex mt-4 justify-end"},ua=C("h1",null,"\u91CD\u8981\u63D0\u9192",-1),oa=C("div",{class:"content"},"\u8BF7\u786E\u8BA4\u4FE1\u606F\u662F\u5426\u6709\u8BEF",-1),la={class:"btn_menu"},na=C("h1",null,"\u91CD\u8981\u63D0\u9192",-1),sa={key:0,class:"content"},ra={key:1,class:"content"},ia={class:"btn_menu"},pa=ee({name:"companyLists"}),et=ee({...pa,setup(ca){var H;const w=m(!1),ae=s=>{n.value.party_a=s.id,n.value.party_a_name=s.company_name,w.value=!1},D=Ne();console.log(D.userInfo.company_id);const Q=qe(),A=m(!0),v=m(!1),x=m(!1),L=()=>{v.value=!1,x.value=!1},G=m(!1),V=m(!1),T=()=>{V.value=!1,G.value=!1},B=m(""),n=m({party_a:"",party_a_name:"",party_b:"",party_b_name:"",contract_type:"",contract_no:""}),te=m([]),K=m([]),ue=async s=>{const o=await Ke({id:s});He().then(d=>{te.value=d}),Z({type_id:7}).then(d=>{K.value=d.lists.filter(c=>We.find(h=>h==c.id))}),n.value.party_b=o.id,n.value.party_b_name=o.company_name,D.userInfo.company.id?(n.value.party_a=D.userInfo.company.id,n.value.party_a_name=D.userInfo.company.company_name):(n.value.party_a="",n.value.party_a_name="")},oe=s=>{B.value=s.id,ue(s.id),le()},le=()=>{G.value=!0,V.value=!0},ne=s=>{v.value=!0,x.value=!0,B.value=s.id},se=async()=>{await je({id:B.value,...n.value}),b(),T()},re=async()=>{await Oe({id:B.value}),b(),L()},ie=async()=>{await Qe({id:B.value}),b(),L()},r=X({company_name:"",area:"",street:"",company_type:"",area_manager:"",is_contract:""});Q.query.company_type&&(A.value=!1,r.company_type=((H=Q.query.company_type)==null?void 0:H.toString())||"");const I=X({dictTypeLists:[]});(async()=>{const s=await Z({type_id:6});I.dictTypeLists=s.lists})();const pe=m([]),ce=s=>{pe.value=s.map(({id:o})=>o)};Me("");const{pager:g,getLists:b,resetParams:de,resetPage:me}=ze({fetchFun:Je,params:r}),_e=async s=>{await Re.confirm("\u786E\u5B9A\u8981\u8BA4\u8BC1\uFF1F"),await Ge({id:s}),b()},ye=()=>{Be.warning("\u8BF7\u7B49\u5F85\u5408\u540C\u5BA1\u6838\u5B8C\u6210!")};return b(),(s,o)=>{const d=be,c=he,h=ke,S=we,i=Ve,fe=ge,$=De,q=Se("router-link"),f=Ae,Ce=xe,Ee=Ie,U=Le,Fe=Ue,z=Pe,F=$e("perms"),ve=Te;return l(),E("div",null,[e($,{class:"!border-none mb-4",shadow:"never"},{default:t(()=>[e(fe,{class:"mb-[-16px] formdata",model:u(r),inline:""},{default:t(()=>[e(c,{label:"\u516C\u53F8\u540D\u79F0",prop:"company_name"},{default:t(()=>[e(d,{class:"w-[280px]",modelValue:u(r).company_name,"onUpdate:modelValue":o[0]||(o[0]=a=>u(r).company_name=a),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u516C\u53F8\u540D\u79F0"},null,8,["modelValue"])]),_:1}),_(e(c,{label:"\u533A",prop:"area"},{default:t(()=>[e(d,{class:"w-[280px]",modelValue:u(r).area,"onUpdate:modelValue":o[1]||(o[1]=a=>u(r).area=a),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u533A"},null,8,["modelValue"])]),_:1},512),[[N,u(A)]]),_(e(c,{label:"\u9547",prop:"street"},{default:t(()=>[e(d,{class:"w-[280px]",modelValue:u(r).street,"onUpdate:modelValue":o[2]||(o[2]=a=>u(r).street=a),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u9547"},null,8,["modelValue"])]),_:1},512),[[N,u(A)]]),_(e(c,{label:"\u516C\u53F8\u7C7B\u578B",prop:"company_type"},{default:t(()=>[e(S,{modelValue:u(r).company_type,"onUpdate:modelValue":o[3]||(o[3]=a=>u(r).company_type=a),placeholder:"\u8BF7\u9009\u62E9\u516C\u53F8\u7C7B\u578B",clearable:"",class:"w-[280px]"},{default:t(()=>[(l(!0),E(R,null,Y(u(I).dictTypeLists,(a,k)=>(l(),y(h,{key:k,label:a.name,value:a.id},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1},512),[[N,u(A)]]),e(c,{label:"\u7247\u533A\u7ECF\u7406",prop:"area_manager"},{default:t(()=>[e(d,{class:"w-[280px]",modelValue:u(r).area_manager,"onUpdate:modelValue":o[4]||(o[4]=a=>u(r).area_manager=a),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u7247\u533A\u7ECF\u7406"},null,8,["modelValue"])]),_:1}),e(c,{label:"\u662F\u5426\u7B7E\u7EA6",prop:"is_contract"},{default:t(()=>[e(S,{modelValue:u(r).is_contract,"onUpdate:modelValue":o[5]||(o[5]=a=>u(r).is_contract=a),placeholder:"\u662F\u5426\u7B7E\u7EA6",clearable:"",class:"w-[240px]"},{default:t(()=>[e(h,{label:"\u5DF2\u7B7E\u7EA6",value:"1"}),e(h,{label:"\u672A\u7B7E\u7EA6",value:"0"})]),_:1},8,["modelValue"])]),_:1}),e(c,null,{default:t(()=>[e(i,{type:"primary",onClick:u(me)},{default:t(()=>[p("\u67E5\u8BE2")]),_:1},8,["onClick"]),e(i,{onClick:u(de)},{default:t(()=>[p("\u91CD\u7F6E")]),_:1},8,["onClick"])]),_:1})]),_:1},8,["model"])]),_:1}),_((l(),y($,{class:"!border-none",shadow:"never"},{default:t(()=>[_(e(q,{to:{path:u(O)("company/add:edit"),query:{flag:!0}}},null,8,["to"]),[[F,["company/add:edit"]]]),C("div",Ye,[e(Ce,{data:u(g).lists,onSelectionChange:ce},{default:t(()=>[e(f,{label:"id",prop:"id","show-overflow-tooltip":"",width:"60"}),e(f,{label:"\u516C\u53F8\u540D\u79F0",prop:"company_name",width:"250px","show-overflow-tooltip":""}),e(f,{label:"\u516C\u53F8\u7C7B\u578B",prop:"company_type","show-overflow-tooltip":""}),e(f,{label:"\u533A\u53BF",prop:"area","show-overflow-tooltip":""}),e(f,{label:"\u4E61\u9547",prop:"street","show-overflow-tooltip":""}),e(f,{label:"\u4E3B\u8054\u7CFB\u4EBA",prop:"master_name","show-overflow-tooltip":""}),e(f,{label:"\u8054\u7CFB\u65B9\u5F0F",prop:"master_phone","show-overflow-tooltip":""}),e(f,{label:"\u7247\u533A\u7ECF\u7406",prop:"area_manager","show-overflow-tooltip":""}),e(f,{label:"\u662F\u5426\u7B7E\u7EA6",prop:"is_contract","show-overflow-tooltip":""},{default:t(({row:a})=>[a.is_contract==1?(l(),E("span",Ze,"\u5DF2\u7B7E\u7EA6")):(l(),E("span",ea,"\u672A\u7B7E\u7EA6"))]),_:1}),e(f,{label:"\u64CD\u4F5C",align:"center",width:"510",fixed:"right"},{default:t(({row:a})=>{var k,J,W;return[C("div",aa,[e(i,{type:"primary",link:""},{default:t(()=>[e(q,{to:{path:u(O)("company/subordinate/lists"),query:{company_id:a.id,read:!0}}},{default:t(()=>[p("\u4E0B\u5C5E\u516C\u53F8")]),_:2},1032,["to"])]),_:2},1024),_((l(),y(i,{type:"primary",link:""},{default:t(()=>[e(q,{to:{path:u(O)("company/add:edit"),query:{id:a.id,read:!0,isshow:!0}}},{default:t(()=>[p("\u8BE6\u60C5")]),_:2},1032,["to"])]),_:2},1024)),[[F,["company/add:edit"]]]),a.is_authentication==0?_((l(),y(i,{key:0,type:"primary",link:"",onClick:M=>_e(a.id)},{default:t(()=>[p("\u4F01\u4E1A\u8BA4\u8BC1")]),_:2},1032,["onClick"])),[[F,["company/authentication"]]]):j("",!0),a.is_authentication&&a.is_contract==0?(l(),E(R,{key:1},[Array.isArray(a.contract)&&a.contract.length==0?_((l(),y(i,{key:0,type:"primary",link:"",onClick:M=>oe(a)},{default:t(()=>[p("\u751F\u6210\u5408\u540C")]),_:2},1032,["onClick"])),[[F,["company/initiate_contract"]]]):((k=a.contract)==null?void 0:k.check_status)==1?_((l(),y(i,{key:1,type:"warning",link:"",onClick:ye},{default:t(()=>[p("\u5BA1\u6838\u4E2D")]),_:1})),[[F,["company/initiate_contract"]]]):((J=a.contract)==null?void 0:J.check_status)==2?_((l(),y(i,{key:2,type:"primary",link:"",onClick:M=>ne(a)},{default:t(()=>[p("\u53D1\u9001\u5408\u540C")]),_:2},1032,["onClick"])),[[F,["company/Draftingcontracts"]]]):((W=a.contract)==null?void 0:W.check_status)==3?_((l(),y(i,{key:3,type:"primary",link:"",onClick:M=>(v.value=!0,B.value=a.id)},{default:t(()=>[p("\u53D1\u9001\u77ED\u4FE1")]),_:2},1032,["onClick"])),[[F,["company/postsms"]]]):j("",!0)],64)):j("",!0)])]}),_:1})]),_:1},8,["data"])]),C("div",ta,[e(Ee,{modelValue:u(g),"onUpdate:modelValue":o[6]||(o[6]=a=>P(g)?g.value=a:null),onChange:u(b)},null,8,["modelValue","onChange"])])]),_:1})),[[ve,u(g).loading]]),e(z,{modelValue:u(V),"onUpdate:modelValue":o[13]||(o[13]=a=>P(V)?V.value=a:null),onClose:T},{default:t(()=>[ua,C("div",null,[oa,e($,null,{default:t(()=>[e(Fe,null,{default:t(()=>[e(U,{span:12},{default:t(()=>[e(c,{"label-width":"100px",label:"\u7532\u65B9",prop:"field130"},{default:t(()=>[e(d,{modelValue:u(n).party_a_name,"onUpdate:modelValue":o[7]||(o[7]=a=>u(n).party_a_name=a),placeholder:"\u8BF7\u9009\u62E9\u7532\u65B9",onClick:o[8]||(o[8]=a=>w.value=!0),clearable:"",style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(U,{span:12},{default:t(()=>[e(c,{"label-width":"100px",label:"\u4E59\u65B9",prop:"field131"},{default:t(()=>[e(d,{disabled:!0,modelValue:u(n).party_b_name,"onUpdate:modelValue":o[9]||(o[9]=a=>u(n).party_b_name=a),placeholder:"\u8BF7\u9009\u62E9\u4E59\u65B9",clearable:"",style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(U,{span:12},{default:t(()=>[e(c,{"label-width":"100px",label:"\u5408\u540C\u7C7B\u578B",prop:"contract_type"},{default:t(()=>[e(S,{modelValue:u(n).contract_type,"onUpdate:modelValue":o[10]||(o[10]=a=>u(n).contract_type=a),placeholder:"\u8BF7\u9009\u62E9\u5408\u540C\u7C7B\u578B",clearable:"",style:{width:"100%"}},{default:t(()=>[(l(!0),E(R,null,Y(u(K),(a,k)=>(l(),y(h,{key:k,label:a.name,value:a.id},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(U,{span:12},{default:t(()=>[e(c,{"label-width":"100px",label:"\u5408\u540C\u7F16\u53F7",prop:"field133"},{default:t(()=>[e(d,{placeholder:"\u7CFB\u7EDF\u81EA\u52A8\u751F\u6210",modelValue:u(n).contract_no,"onUpdate:modelValue":o[11]||(o[11]=a=>u(n).contract_no=a),clearable:"",style:{width:"100%"},disabled:!0},null,8,["modelValue"])]),_:1})]),_:1})]),_:1})]),_:1})]),C("p",la,[e(i,{type:"primary",size:"large",onClick:se},{default:t(()=>[p("\u786E\u8BA4")]),_:1}),e(i,{type:"info",size:"large",onClick:T},{default:t(()=>[p("\u8FD4\u56DE")]),_:1})]),e(z,{modelValue:u(w),"onUpdate:modelValue":o[12]||(o[12]=a=>P(w)?w.value=a:null)},{default:t(()=>[e(Xe,{companyTypeList:u(I).dictTypeLists,type:30,onCustomEvent:ae},null,8,["companyTypeList"])]),_:1},8,["modelValue"])]),_:1},8,["modelValue"]),e(z,{modelValue:u(v),"onUpdate:modelValue":o[14]||(o[14]=a=>P(v)?v.value=a:null),onClose:L},{default:t(()=>[na,u(x)?(l(),E("div",sa," \u8BF7\u786E\u8BA4\u4FE1\u606F\u662F\u5426\u6709\u8BEF,\u53D1\u9001\u5408\u540C,\u8BF7\u786E\u8BA4\u4FE1\u606F\u662F\u5426\u6709\u8BEF,\u53D1\u9001\u7535\u5B50\u5408\u540C\u540E\u77ED\u65F6\u95F4\u5185\u5C06\u4E0D\u53EF\u518D\u6B21\u53D1\u9001. ")):(l(),E("div",ra," \u786E\u8BA4\u7B7E\u7EA6\u77ED\u4FE1\u5C06\u572860\u79D2\u540E\u53D1\u9001,\u8BF7\u6CE8\u610F\u67E5\u6536,\u5E76\u70B9\u51FB\u77ED\u4FE1\u94FE\u63A5\u8FDB\u884C\u7EBF\u4E0A\u5408\u540C\u7B7E\u7EA6 ")),C("p",ia,[u(x)?(l(),y(i,{key:0,type:"primary",size:"large",onClick:re},{default:t(()=>[p("\u786E\u8BA4")]),_:1})):(l(),y(i,{key:1,type:"primary",size:"large",onClick:ie},{default:t(()=>[p("\u786E\u8BA4")]),_:1})),e(i,{type:"info",size:"large",onClick:L},{default:t(()=>[p("\u8FD4\u56DE")]),_:1})])]),_:1},8,["modelValue"])])}}});export{et as default}; diff --git a/public/admin/assets/company.d1e8fc82.js b/public/admin/assets/company.d1e8fc82.js new file mode 100644 index 000000000..0acd664f4 --- /dev/null +++ b/public/admin/assets/company.d1e8fc82.js @@ -0,0 +1 @@ +import{r as n}from"./index.37f7aea6.js";function r(t){return n.get({url:"/company/lists",params:t})}function e(t){return n.post({url:"/company/add",params:t})}function o(t){return n.post({url:"/company/edit",params:t})}function i(t){return n.post({url:"/company/delete",params:t})}function u(t){return n.get({url:"/company/detail",params:t})}function c(t){return n.get({url:"/company/subordinate",params:t})}function s(t){return n.get({url:"/setting.dict.dict_data/getContractPartyACompanyTypeList",params:t})}function p(t){return n.get({url:"/company/postsms",params:t})}function y(t){return n.get({url:"/company/initiate_contract",params:t})}function m(t){return n.get({url:"/company/Draftingcontracts",params:t})}function l(t){return n.get({url:"/company/authentication",params:t})}function g(t){return n.get({url:"/company/list_two",params:t})}function f(t){return n.get({url:"/company/responsible_area",params:t})}function d(t){return n.get({url:"/company/organizationFaceCreate",params:t})}export{u as a,f as b,g as c,o as d,e,m as f,s as g,i as h,y as i,l as j,r as k,c as l,d as o,p as s}; diff --git a/public/admin/assets/config.9f9f3992.js b/public/admin/assets/config.9f9f3992.js new file mode 100644 index 000000000..c207e684f --- /dev/null +++ b/public/admin/assets/config.9f9f3992.js @@ -0,0 +1 @@ +import{_ as U}from"./index.13ef78d6.js";import{S,I,B as R,C as q,w as j,G as T,H as K,D as L}from"./element-plus.4328d892.js";import{_ as N}from"./picker.45aea54f.js";import{g as O,s as G}from"./wx_oa.dfa7359b.js";import{u as J}from"./index.aa9bb752.js";import{d as A,$ as M,s as z,af as D,o as F,c as H,U as u,L as t,a as e,u as l,M as p,K as c,R as n}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.fa872673.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.c47e74f8.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./index.a9a11abe.js";import"./index.a450f1bb.js";import"./index.vue_vue_type_script_setup_true_lang.dc835bba.js";import"./usePaging.2ad8e1e6.js";import"./vue3-video-play.b911321b.js";import"./vuedraggable.0cb40d3a.js";import"./vue.5de34049.js";import"./sortablejs.ef73fc5c.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const Z=e("div",{class:"font-medium mb-7"},"\u5FAE\u4FE1\u516C\u4F17\u53F7",-1),$={class:"w-80"},P={class:"w-80"},Q=e("div",{class:"form-tips"},"\u5EFA\u8BAE\u5C3A\u5BF8\uFF1A\u5BBD400px*\u9AD8400px\u3002jpg\uFF0Cjpeg\uFF0Cpng\u683C\u5F0F",-1),W=e("div",{class:"font-medium mb-7"},"\u516C\u4F17\u53F7\u5F00\u53D1\u8005\u4FE1\u606F",-1),X={class:"w-80"},Y={class:"w-80"},uu=e("div",{class:"form-tips"}," \u5C0F\u7A0B\u5E8F\u8D26\u53F7\u767B\u5F55\u5FAE\u4FE1\u516C\u4F17\u5E73\u53F0\uFF0C\u70B9\u51FB\u5F00\u53D1>\u5F00\u53D1\u8BBE\u7F6E->\u5F00\u53D1\u8005ID\uFF0C\u8BBE\u7F6EAppID\u548CAppSecret ",-1),eu=e("div",{class:"font-medium mb-7"},"\u670D\u52A1\u5668\u914D\u7F6E",-1),ou={class:"flex-1 min-w-0"},lu={class:"sm:flex"},tu={class:"mr-4 sm:w-80 flex"},su=e("div",{class:"form-tips"}," \u767B\u5F55\u5FAE\u4FE1\u516C\u4F17\u5E73\u53F0\uFF0C\u70B9\u51FB\u5F00\u53D1>\u57FA\u672C\u914D\u7F6E>\u670D\u52A1\u5668\u914D\u7F6E\uFF0C\u586B\u5199\u670D\u52A1\u5668\u5730\u5740\uFF08URL\uFF09 ",-1),au={class:"flex-1 min-w-0"},iu={class:"w-80"},du=e("div",{class:"form-tips"}," \u767B\u5F55\u5FAE\u4FE1\u516C\u4F17\u5E73\u53F0\uFF0C\u70B9\u51FB\u5F00\u53D1>\u57FA\u672C\u914D\u7F6E>\u670D\u52A1\u5668\u914D\u7F6E\uFF0C\u8BBE\u7F6E\u4EE4\u724CToken\u3002\u4E0D\u586B\u9ED8\u8BA4\u4E3A\u201Clikeshop\u201D ",-1),nu={class:"flex-1 min-w-0"},Fu={class:"w-80"},ru=e("div",{class:"form-tips"}," \u6D88\u606F\u52A0\u5BC6\u5BC6\u94A5\u753143\u4F4D\u5B57\u7B26\u7EC4\u6210\uFF0C\u5B57\u7B26\u8303\u56F4\u4E3AA-Z,a-z,0-9 ",-1),mu={class:"flex-1 min-w-0"},_u=e("div",{class:"font-medium mb-7"},"\u529F\u80FD\u8BBE\u7F6E",-1),pu={class:"flex-1 min-w-0"},cu={class:"sm:flex"},Bu={class:"mr-4 sm:w-80 flex"},Eu=e("div",{class:"form-tips"}," \u767B\u5F55\u5FAE\u4FE1\u516C\u4F17\u5E73\u53F0\uFF0C\u70B9\u51FB\u8BBE\u7F6E>\u516C\u4F17\u53F7\u8BBE\u7F6E>\u529F\u80FD\u8BBE\u7F6E\uFF0C\u586B\u5199\u4E1A\u52A1\u57DF\u540D ",-1),fu={class:"flex-1 min-w-0"},Cu={class:"sm:flex"},Du={class:"mr-4 sm:w-80 flex"},Au=e("div",{class:"form-tips"}," \u767B\u5F55\u5FAE\u4FE1\u516C\u4F17\u5E73\u53F0\uFF0C\u70B9\u51FB\u8BBE\u7F6E>\u516C\u4F17\u53F7\u8BBE\u7F6E>\u529F\u80FD\u8BBE\u7F6E\uFF0C\u586B\u5199JS\u63A5\u53E3\u5B89\u5168\u57DF\u540D ",-1),vu={class:"flex-1 min-w-0"},bu={class:"sm:flex"},wu={class:"mr-4 sm:w-80 flex"},Vu=e("div",{class:"form-tips"}," \u767B\u5F55\u5FAE\u4FE1\u516C\u4F17\u5E73\u53F0\uFF0C\u70B9\u51FB\u8BBE\u7F6E>\u516C\u4F17\u53F7\u8BBE\u7F6E>\u529F\u80FD\u8BBE\u7F6E\uFF0C\u586B\u5199\u7F51\u9875\u6388\u6743\u57DF\u540D ",-1),hu=A({name:"wxOaConfig"}),be=A({...hu,setup(gu){const v=J(),o=M({name:"",original_id:" ",qr_code:"",app_id:"",app_secret:"",url:"",token:"",encoding_aes_key:"",encryption_type:1,business_domain:"",js_secure_domain:"",web_auth_domain:""}),f=z(),b={app_id:[{required:!0,message:"\u8BF7\u8F93\u5165AppID",trigger:["blur","change"]}],app_secret:[{required:!0,message:"\u8BF7\u8F93\u5165AppSecret",trigger:["blur","change"]}]},C=async()=>{const r=await O();for(const s in o)o[s]=r[s]},w=async()=>{var r;await((r=f.value)==null?void 0:r.validate()),await G(o),C()};return C(),(r,s)=>{const V=S,m=I,d=R,i=q,h=N,_=j,E=T,g=K,x=L,y=U,B=D("copy"),k=D("perms");return F(),H("div",null,[u(m,{class:"!border-none",shadow:"never"},{default:t(()=>[u(V,{type:"warning",title:"\u6E29\u99A8\u63D0\u793A\uFF1A\u586B\u5199\u5FAE\u4FE1\u516C\u4F17\u53F7\u5F00\u53D1\u914D\u7F6E\uFF0C\u8BF7\u524D\u5F80\u5FAE\u4FE1\u516C\u4F17\u5E73\u53F0\u7533\u8BF7\u670D\u52A1\u53F7\u5E76\u5B8C\u6210\u8BA4\u8BC1",closable:!1,"show-icon":""})]),_:1}),u(x,{ref_key:"formRef",ref:f,model:l(o),rules:b,"label-width":l(v).isMobile?"80px":"160px"},{default:t(()=>[u(m,{class:"!border-none mt-4",shadow:"never"},{default:t(()=>[Z,u(i,{label:"\u516C\u4F17\u53F7\u540D\u79F0",prop:"name"},{default:t(()=>[e("div",$,[u(d,{modelValue:l(o).name,"onUpdate:modelValue":s[0]||(s[0]=a=>l(o).name=a),placeholder:"\u8BF7\u8F93\u5165\u516C\u4F17\u53F7\u540D\u79F0"},null,8,["modelValue"])])]),_:1}),u(i,{label:"\u539F\u59CBID",prop:"original_id"},{default:t(()=>[e("div",P,[u(d,{modelValue:l(o).original_id,"onUpdate:modelValue":s[1]||(s[1]=a=>l(o).original_id=a),placeholder:"\u8BF7\u8F93\u5165\u539F\u59CBID"},null,8,["modelValue"])])]),_:1}),u(i,{label:"\u516C\u4F17\u53F7\u4E8C\u7EF4\u7801",prop:"qr_code"},{default:t(()=>[e("div",null,[e("div",null,[u(h,{modelValue:l(o).qr_code,"onUpdate:modelValue":s[2]||(s[2]=a=>l(o).qr_code=a),limit:1},null,8,["modelValue"])]),Q])]),_:1})]),_:1}),u(m,{class:"!border-none mt-4",shadow:"never"},{default:t(()=>[W,u(i,{label:"AppID",prop:"app_id"},{default:t(()=>[e("div",X,[u(d,{modelValue:l(o).app_id,"onUpdate:modelValue":s[3]||(s[3]=a=>l(o).app_id=a),placeholder:"\u8BF7\u8F93\u5165AppID"},null,8,["modelValue"])])]),_:1}),u(i,{label:"AppSecret",prop:"app_secret"},{default:t(()=>[e("div",Y,[u(d,{modelValue:l(o).app_secret,"onUpdate:modelValue":s[4]||(s[4]=a=>l(o).app_secret=a),placeholder:"\u8BF7\u8F93\u5165AppSecret"},null,8,["modelValue"])])]),_:1}),u(i,null,{default:t(()=>[uu]),_:1})]),_:1}),u(m,{class:"!border-none mt-4",shadow:"never"},{default:t(()=>[eu,u(i,{label:"URL"},{default:t(()=>[e("div",ou,[e("div",lu,[e("div",tu,[u(d,{modelValue:l(o).url,"onUpdate:modelValue":s[5]||(s[5]=a=>l(o).url=a),disabled:""},null,8,["modelValue"])]),p((F(),c(_,null,{default:t(()=>[n("\u590D\u5236")]),_:1})),[[B,l(o).url]])]),su])]),_:1}),u(i,{label:"Token",prop:"Token"},{default:t(()=>[e("div",au,[e("div",iu,[u(d,{modelValue:l(o).token,"onUpdate:modelValue":s[6]||(s[6]=a=>l(o).token=a),placeholder:"\u8BF7\u8F93\u5165Token"},null,8,["modelValue"])]),du])]),_:1}),u(i,{label:"EncodingAESKey",prop:"encoding_aes_key"},{default:t(()=>[e("div",nu,[e("div",Fu,[u(d,{modelValue:l(o).encoding_aes_key,"onUpdate:modelValue":s[7]||(s[7]=a=>l(o).encoding_aes_key=a),placeholder:"\u8BF7\u8F93\u5165EncodingAESKey"},null,8,["modelValue"])]),ru])]),_:1}),u(i,{label:"\u6D88\u606F\u52A0\u5BC6\u65B9\u5F0F",required:"",prop:"encryption_type"},{default:t(()=>[e("div",mu,[u(g,{class:"flex-col !items-start min-w-0",modelValue:l(o).encryption_type,"onUpdate:modelValue":s[8]||(s[8]=a=>l(o).encryption_type=a)},{default:t(()=>[u(E,{label:1},{default:t(()=>[n(" \u660E\u6587\u6A21\u5F0F (\u4E0D\u4F7F\u7528\u6D88\u606F\u4F53\u52A0\u89E3\u5BC6\u529F\u80FD\uFF0C\u5B89\u5168\u7CFB\u6570\u8F83\u4F4E) ")]),_:1}),u(E,{label:2},{default:t(()=>[n(" \u517C\u5BB9\u6A21\u5F0F (\u660E\u6587\u3001\u5BC6\u6587\u5C06\u5171\u5B58\uFF0C\u65B9\u4FBF\u5F00\u53D1\u8005\u8C03\u8BD5\u548C\u7EF4\u62A4) ")]),_:1}),u(E,{label:3},{default:t(()=>[n(" \u5B89\u5168\u6A21\u5F0F\uFF08\u63A8\u8350\uFF09 (\u6D88\u606F\u5305\u4E3A\u7EAF\u5BC6\u6587\uFF0C\u9700\u8981\u5F00\u53D1\u8005\u52A0\u5BC6\u548C\u89E3\u5BC6\uFF0C\u5B89\u5168\u7CFB\u6570\u9AD8) ")]),_:1})]),_:1},8,["modelValue"])])]),_:1})]),_:1}),u(m,{class:"!border-none mt-4",shadow:"never"},{default:t(()=>[_u,u(i,{label:"\u4E1A\u52A1\u57DF\u540D"},{default:t(()=>[e("div",pu,[e("div",cu,[e("div",Bu,[u(d,{modelValue:l(o).business_domain,"onUpdate:modelValue":s[9]||(s[9]=a=>l(o).business_domain=a),disabled:""},null,8,["modelValue"])]),p((F(),c(_,null,{default:t(()=>[n("\u590D\u5236")]),_:1})),[[B,l(o).business_domain]])]),Eu])]),_:1}),u(i,{label:"JS\u63A5\u53E3\u5B89\u5168\u57DF\u540D"},{default:t(()=>[e("div",fu,[e("div",Cu,[e("div",Du,[u(d,{modelValue:l(o).js_secure_domain,"onUpdate:modelValue":s[10]||(s[10]=a=>l(o).js_secure_domain=a),disabled:""},null,8,["modelValue"])]),p((F(),c(_,null,{default:t(()=>[n("\u590D\u5236")]),_:1})),[[B,l(o).js_secure_domain]])]),Au])]),_:1}),u(i,{label:"\u7F51\u9875\u6388\u6743\u57DF\u540D"},{default:t(()=>[e("div",vu,[e("div",bu,[e("div",wu,[u(d,{modelValue:l(o).web_auth_domain,"onUpdate:modelValue":s[11]||(s[11]=a=>l(o).web_auth_domain=a),disabled:""},null,8,["modelValue"])]),p((F(),c(_,null,{default:t(()=>[n("\u590D\u5236")]),_:1})),[[B,l(o).web_auth_domain]])]),Vu])]),_:1})]),_:1})]),_:1},8,["model","label-width"]),p((F(),c(y,null,{default:t(()=>[u(_,{type:"primary",onClick:w},{default:t(()=>[n("\u4FDD\u5B58")]),_:1})]),_:1})),[[k,["channel.official_account_setting/setConfig"]]])])}}});export{be as default}; diff --git a/public/admin/assets/config.a98dd964.js b/public/admin/assets/config.a98dd964.js new file mode 100644 index 000000000..3b4b7fc15 --- /dev/null +++ b/public/admin/assets/config.a98dd964.js @@ -0,0 +1 @@ +import{_ as U}from"./index.fd04a214.js";import{S,I,B as R,C as q,w as j,G as T,H as K,D as L}from"./element-plus.4328d892.js";import{_ as N}from"./picker.3821e495.js";import{g as O,s as G}from"./wx_oa.115c1d98.js";import{u as J}from"./index.37f7aea6.js";import{d as A,$ as M,s as z,af as D,o as F,c as H,U as u,L as t,a as e,u as l,M as p,K as c,R as n}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.5759a1a6.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.af446662.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./index.fe1d30dd.js";import"./index.5f944d34.js";import"./index.vue_vue_type_script_setup_true_lang.dc835bba.js";import"./usePaging.2ad8e1e6.js";import"./vue3-video-play.b911321b.js";import"./vuedraggable.0cb40d3a.js";import"./vue.5de34049.js";import"./sortablejs.ef73fc5c.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const Z=e("div",{class:"font-medium mb-7"},"\u5FAE\u4FE1\u516C\u4F17\u53F7",-1),$={class:"w-80"},P={class:"w-80"},Q=e("div",{class:"form-tips"},"\u5EFA\u8BAE\u5C3A\u5BF8\uFF1A\u5BBD400px*\u9AD8400px\u3002jpg\uFF0Cjpeg\uFF0Cpng\u683C\u5F0F",-1),W=e("div",{class:"font-medium mb-7"},"\u516C\u4F17\u53F7\u5F00\u53D1\u8005\u4FE1\u606F",-1),X={class:"w-80"},Y={class:"w-80"},uu=e("div",{class:"form-tips"}," \u5C0F\u7A0B\u5E8F\u8D26\u53F7\u767B\u5F55\u5FAE\u4FE1\u516C\u4F17\u5E73\u53F0\uFF0C\u70B9\u51FB\u5F00\u53D1>\u5F00\u53D1\u8BBE\u7F6E->\u5F00\u53D1\u8005ID\uFF0C\u8BBE\u7F6EAppID\u548CAppSecret ",-1),eu=e("div",{class:"font-medium mb-7"},"\u670D\u52A1\u5668\u914D\u7F6E",-1),ou={class:"flex-1 min-w-0"},lu={class:"sm:flex"},tu={class:"mr-4 sm:w-80 flex"},su=e("div",{class:"form-tips"}," \u767B\u5F55\u5FAE\u4FE1\u516C\u4F17\u5E73\u53F0\uFF0C\u70B9\u51FB\u5F00\u53D1>\u57FA\u672C\u914D\u7F6E>\u670D\u52A1\u5668\u914D\u7F6E\uFF0C\u586B\u5199\u670D\u52A1\u5668\u5730\u5740\uFF08URL\uFF09 ",-1),au={class:"flex-1 min-w-0"},iu={class:"w-80"},du=e("div",{class:"form-tips"}," \u767B\u5F55\u5FAE\u4FE1\u516C\u4F17\u5E73\u53F0\uFF0C\u70B9\u51FB\u5F00\u53D1>\u57FA\u672C\u914D\u7F6E>\u670D\u52A1\u5668\u914D\u7F6E\uFF0C\u8BBE\u7F6E\u4EE4\u724CToken\u3002\u4E0D\u586B\u9ED8\u8BA4\u4E3A\u201Clikeshop\u201D ",-1),nu={class:"flex-1 min-w-0"},Fu={class:"w-80"},ru=e("div",{class:"form-tips"}," \u6D88\u606F\u52A0\u5BC6\u5BC6\u94A5\u753143\u4F4D\u5B57\u7B26\u7EC4\u6210\uFF0C\u5B57\u7B26\u8303\u56F4\u4E3AA-Z,a-z,0-9 ",-1),mu={class:"flex-1 min-w-0"},_u=e("div",{class:"font-medium mb-7"},"\u529F\u80FD\u8BBE\u7F6E",-1),pu={class:"flex-1 min-w-0"},cu={class:"sm:flex"},Bu={class:"mr-4 sm:w-80 flex"},Eu=e("div",{class:"form-tips"}," \u767B\u5F55\u5FAE\u4FE1\u516C\u4F17\u5E73\u53F0\uFF0C\u70B9\u51FB\u8BBE\u7F6E>\u516C\u4F17\u53F7\u8BBE\u7F6E>\u529F\u80FD\u8BBE\u7F6E\uFF0C\u586B\u5199\u4E1A\u52A1\u57DF\u540D ",-1),fu={class:"flex-1 min-w-0"},Cu={class:"sm:flex"},Du={class:"mr-4 sm:w-80 flex"},Au=e("div",{class:"form-tips"}," \u767B\u5F55\u5FAE\u4FE1\u516C\u4F17\u5E73\u53F0\uFF0C\u70B9\u51FB\u8BBE\u7F6E>\u516C\u4F17\u53F7\u8BBE\u7F6E>\u529F\u80FD\u8BBE\u7F6E\uFF0C\u586B\u5199JS\u63A5\u53E3\u5B89\u5168\u57DF\u540D ",-1),vu={class:"flex-1 min-w-0"},bu={class:"sm:flex"},wu={class:"mr-4 sm:w-80 flex"},Vu=e("div",{class:"form-tips"}," \u767B\u5F55\u5FAE\u4FE1\u516C\u4F17\u5E73\u53F0\uFF0C\u70B9\u51FB\u8BBE\u7F6E>\u516C\u4F17\u53F7\u8BBE\u7F6E>\u529F\u80FD\u8BBE\u7F6E\uFF0C\u586B\u5199\u7F51\u9875\u6388\u6743\u57DF\u540D ",-1),hu=A({name:"wxOaConfig"}),be=A({...hu,setup(gu){const v=J(),o=M({name:"",original_id:" ",qr_code:"",app_id:"",app_secret:"",url:"",token:"",encoding_aes_key:"",encryption_type:1,business_domain:"",js_secure_domain:"",web_auth_domain:""}),f=z(),b={app_id:[{required:!0,message:"\u8BF7\u8F93\u5165AppID",trigger:["blur","change"]}],app_secret:[{required:!0,message:"\u8BF7\u8F93\u5165AppSecret",trigger:["blur","change"]}]},C=async()=>{const r=await O();for(const s in o)o[s]=r[s]},w=async()=>{var r;await((r=f.value)==null?void 0:r.validate()),await G(o),C()};return C(),(r,s)=>{const V=S,m=I,d=R,i=q,h=N,_=j,E=T,g=K,x=L,y=U,B=D("copy"),k=D("perms");return F(),H("div",null,[u(m,{class:"!border-none",shadow:"never"},{default:t(()=>[u(V,{type:"warning",title:"\u6E29\u99A8\u63D0\u793A\uFF1A\u586B\u5199\u5FAE\u4FE1\u516C\u4F17\u53F7\u5F00\u53D1\u914D\u7F6E\uFF0C\u8BF7\u524D\u5F80\u5FAE\u4FE1\u516C\u4F17\u5E73\u53F0\u7533\u8BF7\u670D\u52A1\u53F7\u5E76\u5B8C\u6210\u8BA4\u8BC1",closable:!1,"show-icon":""})]),_:1}),u(x,{ref_key:"formRef",ref:f,model:l(o),rules:b,"label-width":l(v).isMobile?"80px":"160px"},{default:t(()=>[u(m,{class:"!border-none mt-4",shadow:"never"},{default:t(()=>[Z,u(i,{label:"\u516C\u4F17\u53F7\u540D\u79F0",prop:"name"},{default:t(()=>[e("div",$,[u(d,{modelValue:l(o).name,"onUpdate:modelValue":s[0]||(s[0]=a=>l(o).name=a),placeholder:"\u8BF7\u8F93\u5165\u516C\u4F17\u53F7\u540D\u79F0"},null,8,["modelValue"])])]),_:1}),u(i,{label:"\u539F\u59CBID",prop:"original_id"},{default:t(()=>[e("div",P,[u(d,{modelValue:l(o).original_id,"onUpdate:modelValue":s[1]||(s[1]=a=>l(o).original_id=a),placeholder:"\u8BF7\u8F93\u5165\u539F\u59CBID"},null,8,["modelValue"])])]),_:1}),u(i,{label:"\u516C\u4F17\u53F7\u4E8C\u7EF4\u7801",prop:"qr_code"},{default:t(()=>[e("div",null,[e("div",null,[u(h,{modelValue:l(o).qr_code,"onUpdate:modelValue":s[2]||(s[2]=a=>l(o).qr_code=a),limit:1},null,8,["modelValue"])]),Q])]),_:1})]),_:1}),u(m,{class:"!border-none mt-4",shadow:"never"},{default:t(()=>[W,u(i,{label:"AppID",prop:"app_id"},{default:t(()=>[e("div",X,[u(d,{modelValue:l(o).app_id,"onUpdate:modelValue":s[3]||(s[3]=a=>l(o).app_id=a),placeholder:"\u8BF7\u8F93\u5165AppID"},null,8,["modelValue"])])]),_:1}),u(i,{label:"AppSecret",prop:"app_secret"},{default:t(()=>[e("div",Y,[u(d,{modelValue:l(o).app_secret,"onUpdate:modelValue":s[4]||(s[4]=a=>l(o).app_secret=a),placeholder:"\u8BF7\u8F93\u5165AppSecret"},null,8,["modelValue"])])]),_:1}),u(i,null,{default:t(()=>[uu]),_:1})]),_:1}),u(m,{class:"!border-none mt-4",shadow:"never"},{default:t(()=>[eu,u(i,{label:"URL"},{default:t(()=>[e("div",ou,[e("div",lu,[e("div",tu,[u(d,{modelValue:l(o).url,"onUpdate:modelValue":s[5]||(s[5]=a=>l(o).url=a),disabled:""},null,8,["modelValue"])]),p((F(),c(_,null,{default:t(()=>[n("\u590D\u5236")]),_:1})),[[B,l(o).url]])]),su])]),_:1}),u(i,{label:"Token",prop:"Token"},{default:t(()=>[e("div",au,[e("div",iu,[u(d,{modelValue:l(o).token,"onUpdate:modelValue":s[6]||(s[6]=a=>l(o).token=a),placeholder:"\u8BF7\u8F93\u5165Token"},null,8,["modelValue"])]),du])]),_:1}),u(i,{label:"EncodingAESKey",prop:"encoding_aes_key"},{default:t(()=>[e("div",nu,[e("div",Fu,[u(d,{modelValue:l(o).encoding_aes_key,"onUpdate:modelValue":s[7]||(s[7]=a=>l(o).encoding_aes_key=a),placeholder:"\u8BF7\u8F93\u5165EncodingAESKey"},null,8,["modelValue"])]),ru])]),_:1}),u(i,{label:"\u6D88\u606F\u52A0\u5BC6\u65B9\u5F0F",required:"",prop:"encryption_type"},{default:t(()=>[e("div",mu,[u(g,{class:"flex-col !items-start min-w-0",modelValue:l(o).encryption_type,"onUpdate:modelValue":s[8]||(s[8]=a=>l(o).encryption_type=a)},{default:t(()=>[u(E,{label:1},{default:t(()=>[n(" \u660E\u6587\u6A21\u5F0F (\u4E0D\u4F7F\u7528\u6D88\u606F\u4F53\u52A0\u89E3\u5BC6\u529F\u80FD\uFF0C\u5B89\u5168\u7CFB\u6570\u8F83\u4F4E) ")]),_:1}),u(E,{label:2},{default:t(()=>[n(" \u517C\u5BB9\u6A21\u5F0F (\u660E\u6587\u3001\u5BC6\u6587\u5C06\u5171\u5B58\uFF0C\u65B9\u4FBF\u5F00\u53D1\u8005\u8C03\u8BD5\u548C\u7EF4\u62A4) ")]),_:1}),u(E,{label:3},{default:t(()=>[n(" \u5B89\u5168\u6A21\u5F0F\uFF08\u63A8\u8350\uFF09 (\u6D88\u606F\u5305\u4E3A\u7EAF\u5BC6\u6587\uFF0C\u9700\u8981\u5F00\u53D1\u8005\u52A0\u5BC6\u548C\u89E3\u5BC6\uFF0C\u5B89\u5168\u7CFB\u6570\u9AD8) ")]),_:1})]),_:1},8,["modelValue"])])]),_:1})]),_:1}),u(m,{class:"!border-none mt-4",shadow:"never"},{default:t(()=>[_u,u(i,{label:"\u4E1A\u52A1\u57DF\u540D"},{default:t(()=>[e("div",pu,[e("div",cu,[e("div",Bu,[u(d,{modelValue:l(o).business_domain,"onUpdate:modelValue":s[9]||(s[9]=a=>l(o).business_domain=a),disabled:""},null,8,["modelValue"])]),p((F(),c(_,null,{default:t(()=>[n("\u590D\u5236")]),_:1})),[[B,l(o).business_domain]])]),Eu])]),_:1}),u(i,{label:"JS\u63A5\u53E3\u5B89\u5168\u57DF\u540D"},{default:t(()=>[e("div",fu,[e("div",Cu,[e("div",Du,[u(d,{modelValue:l(o).js_secure_domain,"onUpdate:modelValue":s[10]||(s[10]=a=>l(o).js_secure_domain=a),disabled:""},null,8,["modelValue"])]),p((F(),c(_,null,{default:t(()=>[n("\u590D\u5236")]),_:1})),[[B,l(o).js_secure_domain]])]),Au])]),_:1}),u(i,{label:"\u7F51\u9875\u6388\u6743\u57DF\u540D"},{default:t(()=>[e("div",vu,[e("div",bu,[e("div",wu,[u(d,{modelValue:l(o).web_auth_domain,"onUpdate:modelValue":s[11]||(s[11]=a=>l(o).web_auth_domain=a),disabled:""},null,8,["modelValue"])]),p((F(),c(_,null,{default:t(()=>[n("\u590D\u5236")]),_:1})),[[B,l(o).web_auth_domain]])]),Vu])]),_:1})]),_:1})]),_:1},8,["model","label-width"]),p((F(),c(y,null,{default:t(()=>[u(_,{type:"primary",onClick:w},{default:t(()=>[n("\u4FDD\u5B58")]),_:1})]),_:1})),[[k,["channel.official_account_setting/setConfig"]]])])}}});export{be as default}; diff --git a/public/admin/assets/config.d930156a.js b/public/admin/assets/config.d930156a.js new file mode 100644 index 000000000..d67a16f32 --- /dev/null +++ b/public/admin/assets/config.d930156a.js @@ -0,0 +1 @@ +import{_ as U}from"./index.be5645df.js";import{S,I,B as R,C as q,w as j,G as T,H as K,D as L}from"./element-plus.4328d892.js";import{_ as N}from"./picker.597494a6.js";import{g as O,s as G}from"./wx_oa.ec356b57.js";import{u as J}from"./index.ed71ac09.js";import{d as A,$ as M,s as z,af as D,o as F,c as H,U as u,L as t,a as e,u as l,M as p,K as c,R as n}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.b940d6e3.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.c38e1dd6.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./index.f2c7f81b.js";import"./index.9c616a0c.js";import"./index.vue_vue_type_script_setup_true_lang.dc835bba.js";import"./usePaging.2ad8e1e6.js";import"./vue3-video-play.b911321b.js";import"./vuedraggable.0cb40d3a.js";import"./vue.5de34049.js";import"./sortablejs.ef73fc5c.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const Z=e("div",{class:"font-medium mb-7"},"\u5FAE\u4FE1\u516C\u4F17\u53F7",-1),$={class:"w-80"},P={class:"w-80"},Q=e("div",{class:"form-tips"},"\u5EFA\u8BAE\u5C3A\u5BF8\uFF1A\u5BBD400px*\u9AD8400px\u3002jpg\uFF0Cjpeg\uFF0Cpng\u683C\u5F0F",-1),W=e("div",{class:"font-medium mb-7"},"\u516C\u4F17\u53F7\u5F00\u53D1\u8005\u4FE1\u606F",-1),X={class:"w-80"},Y={class:"w-80"},uu=e("div",{class:"form-tips"}," \u5C0F\u7A0B\u5E8F\u8D26\u53F7\u767B\u5F55\u5FAE\u4FE1\u516C\u4F17\u5E73\u53F0\uFF0C\u70B9\u51FB\u5F00\u53D1>\u5F00\u53D1\u8BBE\u7F6E->\u5F00\u53D1\u8005ID\uFF0C\u8BBE\u7F6EAppID\u548CAppSecret ",-1),eu=e("div",{class:"font-medium mb-7"},"\u670D\u52A1\u5668\u914D\u7F6E",-1),ou={class:"flex-1 min-w-0"},lu={class:"sm:flex"},tu={class:"mr-4 sm:w-80 flex"},su=e("div",{class:"form-tips"}," \u767B\u5F55\u5FAE\u4FE1\u516C\u4F17\u5E73\u53F0\uFF0C\u70B9\u51FB\u5F00\u53D1>\u57FA\u672C\u914D\u7F6E>\u670D\u52A1\u5668\u914D\u7F6E\uFF0C\u586B\u5199\u670D\u52A1\u5668\u5730\u5740\uFF08URL\uFF09 ",-1),au={class:"flex-1 min-w-0"},iu={class:"w-80"},du=e("div",{class:"form-tips"}," \u767B\u5F55\u5FAE\u4FE1\u516C\u4F17\u5E73\u53F0\uFF0C\u70B9\u51FB\u5F00\u53D1>\u57FA\u672C\u914D\u7F6E>\u670D\u52A1\u5668\u914D\u7F6E\uFF0C\u8BBE\u7F6E\u4EE4\u724CToken\u3002\u4E0D\u586B\u9ED8\u8BA4\u4E3A\u201Clikeshop\u201D ",-1),nu={class:"flex-1 min-w-0"},Fu={class:"w-80"},ru=e("div",{class:"form-tips"}," \u6D88\u606F\u52A0\u5BC6\u5BC6\u94A5\u753143\u4F4D\u5B57\u7B26\u7EC4\u6210\uFF0C\u5B57\u7B26\u8303\u56F4\u4E3AA-Z,a-z,0-9 ",-1),mu={class:"flex-1 min-w-0"},_u=e("div",{class:"font-medium mb-7"},"\u529F\u80FD\u8BBE\u7F6E",-1),pu={class:"flex-1 min-w-0"},cu={class:"sm:flex"},Bu={class:"mr-4 sm:w-80 flex"},Eu=e("div",{class:"form-tips"}," \u767B\u5F55\u5FAE\u4FE1\u516C\u4F17\u5E73\u53F0\uFF0C\u70B9\u51FB\u8BBE\u7F6E>\u516C\u4F17\u53F7\u8BBE\u7F6E>\u529F\u80FD\u8BBE\u7F6E\uFF0C\u586B\u5199\u4E1A\u52A1\u57DF\u540D ",-1),fu={class:"flex-1 min-w-0"},Cu={class:"sm:flex"},Du={class:"mr-4 sm:w-80 flex"},Au=e("div",{class:"form-tips"}," \u767B\u5F55\u5FAE\u4FE1\u516C\u4F17\u5E73\u53F0\uFF0C\u70B9\u51FB\u8BBE\u7F6E>\u516C\u4F17\u53F7\u8BBE\u7F6E>\u529F\u80FD\u8BBE\u7F6E\uFF0C\u586B\u5199JS\u63A5\u53E3\u5B89\u5168\u57DF\u540D ",-1),vu={class:"flex-1 min-w-0"},bu={class:"sm:flex"},wu={class:"mr-4 sm:w-80 flex"},Vu=e("div",{class:"form-tips"}," \u767B\u5F55\u5FAE\u4FE1\u516C\u4F17\u5E73\u53F0\uFF0C\u70B9\u51FB\u8BBE\u7F6E>\u516C\u4F17\u53F7\u8BBE\u7F6E>\u529F\u80FD\u8BBE\u7F6E\uFF0C\u586B\u5199\u7F51\u9875\u6388\u6743\u57DF\u540D ",-1),hu=A({name:"wxOaConfig"}),be=A({...hu,setup(gu){const v=J(),o=M({name:"",original_id:" ",qr_code:"",app_id:"",app_secret:"",url:"",token:"",encoding_aes_key:"",encryption_type:1,business_domain:"",js_secure_domain:"",web_auth_domain:""}),f=z(),b={app_id:[{required:!0,message:"\u8BF7\u8F93\u5165AppID",trigger:["blur","change"]}],app_secret:[{required:!0,message:"\u8BF7\u8F93\u5165AppSecret",trigger:["blur","change"]}]},C=async()=>{const r=await O();for(const s in o)o[s]=r[s]},w=async()=>{var r;await((r=f.value)==null?void 0:r.validate()),await G(o),C()};return C(),(r,s)=>{const V=S,m=I,d=R,i=q,h=N,_=j,E=T,g=K,x=L,y=U,B=D("copy"),k=D("perms");return F(),H("div",null,[u(m,{class:"!border-none",shadow:"never"},{default:t(()=>[u(V,{type:"warning",title:"\u6E29\u99A8\u63D0\u793A\uFF1A\u586B\u5199\u5FAE\u4FE1\u516C\u4F17\u53F7\u5F00\u53D1\u914D\u7F6E\uFF0C\u8BF7\u524D\u5F80\u5FAE\u4FE1\u516C\u4F17\u5E73\u53F0\u7533\u8BF7\u670D\u52A1\u53F7\u5E76\u5B8C\u6210\u8BA4\u8BC1",closable:!1,"show-icon":""})]),_:1}),u(x,{ref_key:"formRef",ref:f,model:l(o),rules:b,"label-width":l(v).isMobile?"80px":"160px"},{default:t(()=>[u(m,{class:"!border-none mt-4",shadow:"never"},{default:t(()=>[Z,u(i,{label:"\u516C\u4F17\u53F7\u540D\u79F0",prop:"name"},{default:t(()=>[e("div",$,[u(d,{modelValue:l(o).name,"onUpdate:modelValue":s[0]||(s[0]=a=>l(o).name=a),placeholder:"\u8BF7\u8F93\u5165\u516C\u4F17\u53F7\u540D\u79F0"},null,8,["modelValue"])])]),_:1}),u(i,{label:"\u539F\u59CBID",prop:"original_id"},{default:t(()=>[e("div",P,[u(d,{modelValue:l(o).original_id,"onUpdate:modelValue":s[1]||(s[1]=a=>l(o).original_id=a),placeholder:"\u8BF7\u8F93\u5165\u539F\u59CBID"},null,8,["modelValue"])])]),_:1}),u(i,{label:"\u516C\u4F17\u53F7\u4E8C\u7EF4\u7801",prop:"qr_code"},{default:t(()=>[e("div",null,[e("div",null,[u(h,{modelValue:l(o).qr_code,"onUpdate:modelValue":s[2]||(s[2]=a=>l(o).qr_code=a),limit:1},null,8,["modelValue"])]),Q])]),_:1})]),_:1}),u(m,{class:"!border-none mt-4",shadow:"never"},{default:t(()=>[W,u(i,{label:"AppID",prop:"app_id"},{default:t(()=>[e("div",X,[u(d,{modelValue:l(o).app_id,"onUpdate:modelValue":s[3]||(s[3]=a=>l(o).app_id=a),placeholder:"\u8BF7\u8F93\u5165AppID"},null,8,["modelValue"])])]),_:1}),u(i,{label:"AppSecret",prop:"app_secret"},{default:t(()=>[e("div",Y,[u(d,{modelValue:l(o).app_secret,"onUpdate:modelValue":s[4]||(s[4]=a=>l(o).app_secret=a),placeholder:"\u8BF7\u8F93\u5165AppSecret"},null,8,["modelValue"])])]),_:1}),u(i,null,{default:t(()=>[uu]),_:1})]),_:1}),u(m,{class:"!border-none mt-4",shadow:"never"},{default:t(()=>[eu,u(i,{label:"URL"},{default:t(()=>[e("div",ou,[e("div",lu,[e("div",tu,[u(d,{modelValue:l(o).url,"onUpdate:modelValue":s[5]||(s[5]=a=>l(o).url=a),disabled:""},null,8,["modelValue"])]),p((F(),c(_,null,{default:t(()=>[n("\u590D\u5236")]),_:1})),[[B,l(o).url]])]),su])]),_:1}),u(i,{label:"Token",prop:"Token"},{default:t(()=>[e("div",au,[e("div",iu,[u(d,{modelValue:l(o).token,"onUpdate:modelValue":s[6]||(s[6]=a=>l(o).token=a),placeholder:"\u8BF7\u8F93\u5165Token"},null,8,["modelValue"])]),du])]),_:1}),u(i,{label:"EncodingAESKey",prop:"encoding_aes_key"},{default:t(()=>[e("div",nu,[e("div",Fu,[u(d,{modelValue:l(o).encoding_aes_key,"onUpdate:modelValue":s[7]||(s[7]=a=>l(o).encoding_aes_key=a),placeholder:"\u8BF7\u8F93\u5165EncodingAESKey"},null,8,["modelValue"])]),ru])]),_:1}),u(i,{label:"\u6D88\u606F\u52A0\u5BC6\u65B9\u5F0F",required:"",prop:"encryption_type"},{default:t(()=>[e("div",mu,[u(g,{class:"flex-col !items-start min-w-0",modelValue:l(o).encryption_type,"onUpdate:modelValue":s[8]||(s[8]=a=>l(o).encryption_type=a)},{default:t(()=>[u(E,{label:1},{default:t(()=>[n(" \u660E\u6587\u6A21\u5F0F (\u4E0D\u4F7F\u7528\u6D88\u606F\u4F53\u52A0\u89E3\u5BC6\u529F\u80FD\uFF0C\u5B89\u5168\u7CFB\u6570\u8F83\u4F4E) ")]),_:1}),u(E,{label:2},{default:t(()=>[n(" \u517C\u5BB9\u6A21\u5F0F (\u660E\u6587\u3001\u5BC6\u6587\u5C06\u5171\u5B58\uFF0C\u65B9\u4FBF\u5F00\u53D1\u8005\u8C03\u8BD5\u548C\u7EF4\u62A4) ")]),_:1}),u(E,{label:3},{default:t(()=>[n(" \u5B89\u5168\u6A21\u5F0F\uFF08\u63A8\u8350\uFF09 (\u6D88\u606F\u5305\u4E3A\u7EAF\u5BC6\u6587\uFF0C\u9700\u8981\u5F00\u53D1\u8005\u52A0\u5BC6\u548C\u89E3\u5BC6\uFF0C\u5B89\u5168\u7CFB\u6570\u9AD8) ")]),_:1})]),_:1},8,["modelValue"])])]),_:1})]),_:1}),u(m,{class:"!border-none mt-4",shadow:"never"},{default:t(()=>[_u,u(i,{label:"\u4E1A\u52A1\u57DF\u540D"},{default:t(()=>[e("div",pu,[e("div",cu,[e("div",Bu,[u(d,{modelValue:l(o).business_domain,"onUpdate:modelValue":s[9]||(s[9]=a=>l(o).business_domain=a),disabled:""},null,8,["modelValue"])]),p((F(),c(_,null,{default:t(()=>[n("\u590D\u5236")]),_:1})),[[B,l(o).business_domain]])]),Eu])]),_:1}),u(i,{label:"JS\u63A5\u53E3\u5B89\u5168\u57DF\u540D"},{default:t(()=>[e("div",fu,[e("div",Cu,[e("div",Du,[u(d,{modelValue:l(o).js_secure_domain,"onUpdate:modelValue":s[10]||(s[10]=a=>l(o).js_secure_domain=a),disabled:""},null,8,["modelValue"])]),p((F(),c(_,null,{default:t(()=>[n("\u590D\u5236")]),_:1})),[[B,l(o).js_secure_domain]])]),Au])]),_:1}),u(i,{label:"\u7F51\u9875\u6388\u6743\u57DF\u540D"},{default:t(()=>[e("div",vu,[e("div",bu,[e("div",wu,[u(d,{modelValue:l(o).web_auth_domain,"onUpdate:modelValue":s[11]||(s[11]=a=>l(o).web_auth_domain=a),disabled:""},null,8,["modelValue"])]),p((F(),c(_,null,{default:t(()=>[n("\u590D\u5236")]),_:1})),[[B,l(o).web_auth_domain]])]),Vu])]),_:1})]),_:1})]),_:1},8,["model","label-width"]),p((F(),c(y,null,{default:t(()=>[u(_,{type:"primary",onClick:w},{default:t(()=>[n("\u4FDD\u5B58")]),_:1})]),_:1})),[[k,["channel.official_account_setting/setConfig"]]])])}}});export{be as default}; diff --git a/public/admin/assets/consumer.5e9fbfa1.js b/public/admin/assets/consumer.5e9fbfa1.js new file mode 100644 index 000000000..8f1751b64 --- /dev/null +++ b/public/admin/assets/consumer.5e9fbfa1.js @@ -0,0 +1 @@ +import{r}from"./index.ed71ac09.js";function n(t){return r.get({url:"/user.user/lists",params:t},{ignoreCancelToken:!0})}function u(t){return r.get({url:"/user.user/detail",params:t})}function s(t){return r.post({url:"/user.user/edit",params:t})}function o(t){return r.post({url:"/user.user/adjustMoney",params:t})}function a(t){return r.post({url:"/user.user/initiate_contract",params:t})}function c(t){return r.post({url:"/contract.contract/wind_control",params:t})}function i(t){return r.post({url:"/user.user/Draftingcontracts",params:t})}function l(t){return r.get({url:"/contract.contract/postsms",params:t})}export{o as a,c as b,n as c,i as d,u as g,a as i,l as s,s as u}; diff --git a/public/admin/assets/consumer.d25e26af.js b/public/admin/assets/consumer.d25e26af.js new file mode 100644 index 000000000..b02a4a629 --- /dev/null +++ b/public/admin/assets/consumer.d25e26af.js @@ -0,0 +1 @@ +import{r}from"./index.aa9bb752.js";function n(t){return r.get({url:"/user.user/lists",params:t},{ignoreCancelToken:!0})}function u(t){return r.get({url:"/user.user/detail",params:t})}function s(t){return r.post({url:"/user.user/edit",params:t})}function o(t){return r.post({url:"/user.user/adjustMoney",params:t})}function a(t){return r.post({url:"/user.user/initiate_contract",params:t})}function c(t){return r.post({url:"/contract.contract/wind_control",params:t})}function i(t){return r.post({url:"/user.user/Draftingcontracts",params:t})}function l(t){return r.get({url:"/contract.contract/postsms",params:t})}export{o as a,c as b,n as c,i as d,u as g,a as i,l as s,s as u}; diff --git a/public/admin/assets/consumer.e5ac2901.js b/public/admin/assets/consumer.e5ac2901.js new file mode 100644 index 000000000..c93caf227 --- /dev/null +++ b/public/admin/assets/consumer.e5ac2901.js @@ -0,0 +1 @@ +import{r}from"./index.37f7aea6.js";function n(t){return r.get({url:"/user.user/lists",params:t},{ignoreCancelToken:!0})}function u(t){return r.get({url:"/user.user/detail",params:t})}function s(t){return r.post({url:"/user.user/edit",params:t})}function o(t){return r.post({url:"/user.user/adjustMoney",params:t})}function a(t){return r.post({url:"/user.user/initiate_contract",params:t})}function c(t){return r.post({url:"/contract.contract/wind_control",params:t})}function i(t){return r.post({url:"/user.user/Draftingcontracts",params:t})}function l(t){return r.get({url:"/contract.contract/postsms",params:t})}export{o as a,c as b,n as c,i as d,u as g,a as i,l as s,s as u}; diff --git a/public/admin/assets/content.0dcb8921.js b/public/admin/assets/content.0dcb8921.js new file mode 100644 index 000000000..e51030efd --- /dev/null +++ b/public/admin/assets/content.0dcb8921.js @@ -0,0 +1 @@ +import{d as r}from"./index.ed71ac09.js";import{o as i,c as e,bf as m,be as s,a as o}from"./@vue.51d7f2d8.js";import"./element-plus.4328d892.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const c="/admin/assets/default_avatar.fa19527b.png";const _={},p=t=>(m("data-v-4b1b613f"),t=t(),s(),t),a={class:"user-info flex items-center px-[25px]"},n=p(()=>o("img",{src:c,class:"w-[60px] h-[60px]",alt:""},null,-1)),d=p(()=>o("div",{class:"text-white text-[18px] ml-[10px]"},"\u672A\u767B\u5F55",-1)),f=[n,d];function l(t,x){return i(),e("div",a,f)}const X=r(_,[["render",l],["__scopeId","data-v-4b1b613f"]]);export{X as default}; diff --git a/public/admin/assets/content.206aab68.js b/public/admin/assets/content.206aab68.js new file mode 100644 index 000000000..faeafc7fd --- /dev/null +++ b/public/admin/assets/content.206aab68.js @@ -0,0 +1 @@ +import i from"./decoration-img.3e95b47f.js";import{d as p,o as r,c as m,U as c,a as o,S as e,bf as s,be as n}from"./@vue.51d7f2d8.js";import{d as a}from"./index.aa9bb752.js";import"./element-plus.4328d892.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const d=t=>(s("data-v-2cdedb7a"),t=t(),n(),t),u={class:"customer-service"},_={class:"text-[15px] mt-[7px] font-medium"},l={class:"text-[#666] mt-[20px]"},x={class:"text-[#666] mt-[7px]"},f=d(()=>o("div",{class:"text-white text-[16px] rounded-[42px] bg-[#4173FF] w-full h-[42px] flex justify-center items-center mt-[50px]"}," \u4FDD\u5B58\u4E8C\u7EF4\u7801\u56FE\u7247 ",-1)),h=p({__name:"content",props:{content:{type:Object,default:()=>({})},styles:{type:Object,default:()=>({})}},setup(t){return(F,v)=>(r(),m("div",u,[c(i,{width:"140px",height:"140px",src:t.content.qrcode,alt:""},null,8,["src"]),o("div",_,e(t.content.title),1),o("div",l,"\u670D\u52A1\u65F6\u95F4\uFF1A"+e(t.content.time),1),o("div",x,"\u5BA2\u670D\u7535\u8BDD\uFF1A"+e(t.content.mobile),1),f]))}});const ot=a(h,[["__scopeId","data-v-2cdedb7a"]]);export{ot as default}; diff --git a/public/admin/assets/content.39f10dd3.js b/public/admin/assets/content.39f10dd3.js new file mode 100644 index 000000000..d12e8eaaf --- /dev/null +++ b/public/admin/assets/content.39f10dd3.js @@ -0,0 +1 @@ +import{d as r,b as e}from"./index.37f7aea6.js";import{o as i,c as m,a as t,U as c,bf as s,be as a}from"./@vue.51d7f2d8.js";import"./element-plus.4328d892.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const _={},n=o=>(s("data-v-3514bdd8"),o=o(),a(),o),d={class:"search"},l={class:"search-con flex items-center px-[15px]"},f=n(()=>t("span",{class:"ml-[5px]"},"\u8BF7\u8F93\u5165\u5173\u952E\u8BCD\u641C\u7D22",-1));function h(o,x){const p=e;return i(),m("div",d,[t("div",l,[c(p,{name:"el-icon-Search",size:17}),f])])}const X=r(_,[["render",h],["__scopeId","data-v-3514bdd8"]]);export{X as default}; diff --git a/public/admin/assets/content.3fbe2997.js b/public/admin/assets/content.3fbe2997.js new file mode 100644 index 000000000..79ebf67b0 --- /dev/null +++ b/public/admin/assets/content.3fbe2997.js @@ -0,0 +1 @@ +import"./content.vue_vue_type_script_setup_true_lang.d21cb19e.js";import{_ as M}from"./content.vue_vue_type_script_setup_true_lang.d21cb19e.js";import"./decoration-img.3e95b47f.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.aa9bb752.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";export{M as default}; diff --git a/public/admin/assets/content.416ba4d2.js b/public/admin/assets/content.416ba4d2.js new file mode 100644 index 000000000..576fe62ad --- /dev/null +++ b/public/admin/assets/content.416ba4d2.js @@ -0,0 +1 @@ +import i from"./decoration-img.d7e5dbec.js";import{d as p,o as r,c as m,U as c,a as o,S as e,bf as s,be as n}from"./@vue.51d7f2d8.js";import{d as a}from"./index.37f7aea6.js";import"./element-plus.4328d892.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const d=t=>(s("data-v-2cdedb7a"),t=t(),n(),t),u={class:"customer-service"},_={class:"text-[15px] mt-[7px] font-medium"},l={class:"text-[#666] mt-[20px]"},x={class:"text-[#666] mt-[7px]"},f=d(()=>o("div",{class:"text-white text-[16px] rounded-[42px] bg-[#4173FF] w-full h-[42px] flex justify-center items-center mt-[50px]"}," \u4FDD\u5B58\u4E8C\u7EF4\u7801\u56FE\u7247 ",-1)),h=p({__name:"content",props:{content:{type:Object,default:()=>({})},styles:{type:Object,default:()=>({})}},setup(t){return(F,v)=>(r(),m("div",u,[c(i,{width:"140px",height:"140px",src:t.content.qrcode,alt:""},null,8,["src"]),o("div",_,e(t.content.title),1),o("div",l,"\u670D\u52A1\u65F6\u95F4\uFF1A"+e(t.content.time),1),o("div",x,"\u5BA2\u670D\u7535\u8BDD\uFF1A"+e(t.content.mobile),1),f]))}});const ot=a(h,[["__scopeId","data-v-2cdedb7a"]]);export{ot as default}; diff --git a/public/admin/assets/content.48c6aac4.js b/public/admin/assets/content.48c6aac4.js new file mode 100644 index 000000000..5e1794039 --- /dev/null +++ b/public/admin/assets/content.48c6aac4.js @@ -0,0 +1 @@ +import"./content.vue_vue_type_script_setup_true_lang.08763d7f.js";import{_ as M}from"./content.vue_vue_type_script_setup_true_lang.08763d7f.js";import"./decoration-img.3e95b47f.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.aa9bb752.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";export{M as default}; diff --git a/public/admin/assets/content.54b16038.js b/public/admin/assets/content.54b16038.js new file mode 100644 index 000000000..7347e6976 --- /dev/null +++ b/public/admin/assets/content.54b16038.js @@ -0,0 +1 @@ +import{b as n,d as m}from"./index.ed71ac09.js";import{g as d}from"./decoration.6a408574.js";import{d as l,r as _,o as s,c as i,T as x,a7 as f,a as t,Q as u,S as r,U as v,u as b,bf as h,be as y}from"./@vue.51d7f2d8.js";import"./element-plus.4328d892.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const w=o=>(h("data-v-18ea8db2"),o=o(),y(),o),g={class:"news"},j=w(()=>t("div",{class:"flex items-center news-title mx-[10px] my-[15px] text-[17px] font-medium"}," \u6700\u65B0\u8D44\u8BAF ",-1)),k={key:0,class:"mr-[10px]"},B=["src"],D={class:"flex flex-col justify-between flex-1"},S={class:"text-[15px] font-medium line-clamp-2"},I={class:"line-clamp-1 text-sm mt-[8px]"},V={class:"text-[#999] text-xs w-full flex justify-between mt-[8px]"},N={class:"flex items-center"},A={class:"ml-[5px]"},C=l({__name:"content",props:{content:{type:Object,default:()=>({})},styles:{type:Object,default:()=>({})}},setup(o){const c=_([]);return(async()=>{const p=await d({limit:10});c.value=p})(),(p,L)=>{const a=n;return s(),i("div",g,[j,(s(!0),i(x,null,f(b(c),e=>(s(),i("div",{key:e.id,class:"news-card flex bg-white px-[10px] py-[16px] text-[#333] border-[#f2f2f2] border-b"},[e.image?(s(),i("div",k,[t("img",{src:e.image,class:"w-[120px] h-[90px] object-contain"},null,8,B)])):u("",!0),t("div",D,[t("div",S,r(e.title),1),t("div",I,r(e.desc),1),t("div",V,[t("div",null,r(e.create_time),1),t("div",N,[v(a,{name:"el-icon-View"}),t("div",A,r(e.click),1)])])])]))),128))])}}});const ut=m(C,[["__scopeId","data-v-18ea8db2"]]);export{ut as default}; diff --git a/public/admin/assets/content.84ae04ad.js b/public/admin/assets/content.84ae04ad.js new file mode 100644 index 000000000..afd150a9e --- /dev/null +++ b/public/admin/assets/content.84ae04ad.js @@ -0,0 +1 @@ +import{d as r,b as e}from"./index.aa9bb752.js";import{o as i,c as m,a as t,U as c,bf as s,be as a}from"./@vue.51d7f2d8.js";import"./element-plus.4328d892.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const _={},n=o=>(s("data-v-3514bdd8"),o=o(),a(),o),d={class:"search"},l={class:"search-con flex items-center px-[15px]"},f=n(()=>t("span",{class:"ml-[5px]"},"\u8BF7\u8F93\u5165\u5173\u952E\u8BCD\u641C\u7D22",-1));function h(o,x){const p=e;return i(),m("div",d,[t("div",l,[c(p,{name:"el-icon-Search",size:17}),f])])}const X=r(_,[["render",h],["__scopeId","data-v-3514bdd8"]]);export{X as default}; diff --git a/public/admin/assets/content.87312235.js b/public/admin/assets/content.87312235.js new file mode 100644 index 000000000..8f788e976 --- /dev/null +++ b/public/admin/assets/content.87312235.js @@ -0,0 +1 @@ +import{b as n,d as m}from"./index.37f7aea6.js";import{g as d}from"./decoration.6f039a71.js";import{d as l,r as _,o as s,c as i,T as x,a7 as f,a as t,Q as u,S as r,U as v,u as b,bf as h,be as y}from"./@vue.51d7f2d8.js";import"./element-plus.4328d892.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const w=o=>(h("data-v-18ea8db2"),o=o(),y(),o),g={class:"news"},j=w(()=>t("div",{class:"flex items-center news-title mx-[10px] my-[15px] text-[17px] font-medium"}," \u6700\u65B0\u8D44\u8BAF ",-1)),k={key:0,class:"mr-[10px]"},B=["src"],D={class:"flex flex-col justify-between flex-1"},S={class:"text-[15px] font-medium line-clamp-2"},I={class:"line-clamp-1 text-sm mt-[8px]"},V={class:"text-[#999] text-xs w-full flex justify-between mt-[8px]"},N={class:"flex items-center"},A={class:"ml-[5px]"},C=l({__name:"content",props:{content:{type:Object,default:()=>({})},styles:{type:Object,default:()=>({})}},setup(o){const c=_([]);return(async()=>{const p=await d({limit:10});c.value=p})(),(p,L)=>{const a=n;return s(),i("div",g,[j,(s(!0),i(x,null,f(b(c),e=>(s(),i("div",{key:e.id,class:"news-card flex bg-white px-[10px] py-[16px] text-[#333] border-[#f2f2f2] border-b"},[e.image?(s(),i("div",k,[t("img",{src:e.image,class:"w-[120px] h-[90px] object-contain"},null,8,B)])):u("",!0),t("div",D,[t("div",S,r(e.title),1),t("div",I,r(e.desc),1),t("div",V,[t("div",null,r(e.create_time),1),t("div",N,[v(a,{name:"el-icon-View"}),t("div",A,r(e.click),1)])])])]))),128))])}}});const ut=m(C,[["__scopeId","data-v-18ea8db2"]]);export{ut as default}; diff --git a/public/admin/assets/content.92456155.js b/public/admin/assets/content.92456155.js new file mode 100644 index 000000000..dbbf68e6b --- /dev/null +++ b/public/admin/assets/content.92456155.js @@ -0,0 +1 @@ +import{d as r}from"./index.aa9bb752.js";import{o as i,c as e,bf as m,be as s,a as o}from"./@vue.51d7f2d8.js";import"./element-plus.4328d892.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const c="/admin/assets/default_avatar.fa19527b.png";const _={},p=t=>(m("data-v-4b1b613f"),t=t(),s(),t),a={class:"user-info flex items-center px-[25px]"},n=p(()=>o("img",{src:c,class:"w-[60px] h-[60px]",alt:""},null,-1)),d=p(()=>o("div",{class:"text-white text-[18px] ml-[10px]"},"\u672A\u767B\u5F55",-1)),f=[n,d];function l(t,x){return i(),e("div",a,f)}const X=r(_,[["render",l],["__scopeId","data-v-4b1b613f"]]);export{X as default}; diff --git a/public/admin/assets/content.95faa73b.js b/public/admin/assets/content.95faa73b.js new file mode 100644 index 000000000..1b4b4f1c4 --- /dev/null +++ b/public/admin/assets/content.95faa73b.js @@ -0,0 +1 @@ +import{b as n,d as m}from"./index.aa9bb752.js";import{g as d}from"./decoration.4be01ffa.js";import{d as l,r as _,o as s,c as i,T as x,a7 as f,a as t,Q as u,S as r,U as v,u as b,bf as h,be as y}from"./@vue.51d7f2d8.js";import"./element-plus.4328d892.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const w=o=>(h("data-v-18ea8db2"),o=o(),y(),o),g={class:"news"},j=w(()=>t("div",{class:"flex items-center news-title mx-[10px] my-[15px] text-[17px] font-medium"}," \u6700\u65B0\u8D44\u8BAF ",-1)),k={key:0,class:"mr-[10px]"},B=["src"],D={class:"flex flex-col justify-between flex-1"},S={class:"text-[15px] font-medium line-clamp-2"},I={class:"line-clamp-1 text-sm mt-[8px]"},V={class:"text-[#999] text-xs w-full flex justify-between mt-[8px]"},N={class:"flex items-center"},A={class:"ml-[5px]"},C=l({__name:"content",props:{content:{type:Object,default:()=>({})},styles:{type:Object,default:()=>({})}},setup(o){const c=_([]);return(async()=>{const p=await d({limit:10});c.value=p})(),(p,L)=>{const a=n;return s(),i("div",g,[j,(s(!0),i(x,null,f(b(c),e=>(s(),i("div",{key:e.id,class:"news-card flex bg-white px-[10px] py-[16px] text-[#333] border-[#f2f2f2] border-b"},[e.image?(s(),i("div",k,[t("img",{src:e.image,class:"w-[120px] h-[90px] object-contain"},null,8,B)])):u("",!0),t("div",D,[t("div",S,r(e.title),1),t("div",I,r(e.desc),1),t("div",V,[t("div",null,r(e.create_time),1),t("div",N,[v(a,{name:"el-icon-View"}),t("div",A,r(e.click),1)])])])]))),128))])}}});const ut=m(C,[["__scopeId","data-v-18ea8db2"]]);export{ut as default}; diff --git a/public/admin/assets/content.98a438fa.js b/public/admin/assets/content.98a438fa.js new file mode 100644 index 000000000..97d4e832b --- /dev/null +++ b/public/admin/assets/content.98a438fa.js @@ -0,0 +1 @@ +import"./content.vue_vue_type_script_setup_true_lang.e6931808.js";import{_ as M}from"./content.vue_vue_type_script_setup_true_lang.e6931808.js";import"./decoration-img.d7e5dbec.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.37f7aea6.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";export{M as default}; diff --git a/public/admin/assets/content.9a7d52cc.js b/public/admin/assets/content.9a7d52cc.js new file mode 100644 index 000000000..bdde0aebb --- /dev/null +++ b/public/admin/assets/content.9a7d52cc.js @@ -0,0 +1 @@ +import"./content.vue_vue_type_script_setup_true_lang.28911d3e.js";import{_ as M}from"./content.vue_vue_type_script_setup_true_lang.28911d3e.js";import"./decoration-img.3e95b47f.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.aa9bb752.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";export{M as default}; diff --git a/public/admin/assets/content.b043d1d3.js b/public/admin/assets/content.b043d1d3.js new file mode 100644 index 000000000..310e5bfa0 --- /dev/null +++ b/public/admin/assets/content.b043d1d3.js @@ -0,0 +1 @@ +import"./content.vue_vue_type_script_setup_true_lang.b3e4f379.js";import{_ as M}from"./content.vue_vue_type_script_setup_true_lang.b3e4f379.js";import"./decoration-img.d7e5dbec.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.37f7aea6.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";export{M as default}; diff --git a/public/admin/assets/content.b2cebb4d.js b/public/admin/assets/content.b2cebb4d.js new file mode 100644 index 000000000..564adc8c6 --- /dev/null +++ b/public/admin/assets/content.b2cebb4d.js @@ -0,0 +1 @@ +import{b as x,d as _}from"./index.aa9bb752.js";import c from"./decoration-img.3e95b47f.js";import{d as u,o as t,c as e,a as r,S as s,Q as p,T as a,a7 as l,U as m}from"./@vue.51d7f2d8.js";import"./element-plus.4328d892.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const f={class:"my-service"},h={key:0,class:"title px-[15px] py-[10px]"},y={key:1,class:"flex flex-wrap pt-[20px] pb-[10px]"},v={class:"mt-[7px]"},b={key:2},g={class:"ml-[10px] flex-1"},k=u({__name:"content",props:{content:{type:Object,default:()=>({})},styles:{type:Object,default:()=>({})}},setup(o){return(w,B)=>{const d=x;return t(),e("div",f,[o.content.title?(t(),e("div",h,[r("div",null,s(o.content.title),1)])):p("",!0),o.content.style==1?(t(),e("div",y,[(t(!0),e(a,null,l(o.content.data,(i,n)=>(t(),e("div",{key:n,class:"flex flex-col items-center w-1/4 mb-[15px]"},[m(c,{width:"26px",height:"26px",src:i.image,alt:""},null,8,["src"]),r("div",v,s(i.name),1)]))),128))])):p("",!0),o.content.style==2?(t(),e("div",b,[(t(!0),e(a,null,l(o.content.data,(i,n)=>(t(),e("div",{key:n,class:"flex items-center border-b border-[#e5e5e5] h-[50px] px-[12px]"},[m(c,{width:"24px",height:"24px",src:i.image,alt:""},null,8,["src"]),r("div",g,s(i.name),1),r("div",null,[m(d,{name:"el-icon-ArrowRight"})])]))),128))])):p("",!0)])}}});const st=_(k,[["__scopeId","data-v-26886ebe"]]);export{st as default}; diff --git a/public/admin/assets/content.b37ea571.js b/public/admin/assets/content.b37ea571.js new file mode 100644 index 000000000..26e5bfe74 --- /dev/null +++ b/public/admin/assets/content.b37ea571.js @@ -0,0 +1 @@ +import"./content.vue_vue_type_script_setup_true_lang.888a9caf.js";import{_ as M}from"./content.vue_vue_type_script_setup_true_lang.888a9caf.js";import"./decoration-img.d7e5dbec.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.37f7aea6.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";export{M as default}; diff --git a/public/admin/assets/content.b3fbaeeb.js b/public/admin/assets/content.b3fbaeeb.js new file mode 100644 index 000000000..90ba3fbcf --- /dev/null +++ b/public/admin/assets/content.b3fbaeeb.js @@ -0,0 +1 @@ +import{b as x,d as _}from"./index.37f7aea6.js";import c from"./decoration-img.d7e5dbec.js";import{d as u,o as t,c as e,a as r,S as s,Q as p,T as a,a7 as l,U as m}from"./@vue.51d7f2d8.js";import"./element-plus.4328d892.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const f={class:"my-service"},h={key:0,class:"title px-[15px] py-[10px]"},y={key:1,class:"flex flex-wrap pt-[20px] pb-[10px]"},v={class:"mt-[7px]"},b={key:2},g={class:"ml-[10px] flex-1"},k=u({__name:"content",props:{content:{type:Object,default:()=>({})},styles:{type:Object,default:()=>({})}},setup(o){return(w,B)=>{const d=x;return t(),e("div",f,[o.content.title?(t(),e("div",h,[r("div",null,s(o.content.title),1)])):p("",!0),o.content.style==1?(t(),e("div",y,[(t(!0),e(a,null,l(o.content.data,(i,n)=>(t(),e("div",{key:n,class:"flex flex-col items-center w-1/4 mb-[15px]"},[m(c,{width:"26px",height:"26px",src:i.image,alt:""},null,8,["src"]),r("div",v,s(i.name),1)]))),128))])):p("",!0),o.content.style==2?(t(),e("div",b,[(t(!0),e(a,null,l(o.content.data,(i,n)=>(t(),e("div",{key:n,class:"flex items-center border-b border-[#e5e5e5] h-[50px] px-[12px]"},[m(c,{width:"24px",height:"24px",src:i.image,alt:""},null,8,["src"]),r("div",g,s(i.name),1),r("div",null,[m(d,{name:"el-icon-ArrowRight"})])]))),128))])):p("",!0)])}}});const st=_(k,[["__scopeId","data-v-26886ebe"]]);export{st as default}; diff --git a/public/admin/assets/content.b4d20e23.js b/public/admin/assets/content.b4d20e23.js new file mode 100644 index 000000000..3f898fcc9 --- /dev/null +++ b/public/admin/assets/content.b4d20e23.js @@ -0,0 +1 @@ +import"./content.vue_vue_type_script_setup_true_lang.c8560c8f.js";import{_ as M}from"./content.vue_vue_type_script_setup_true_lang.c8560c8f.js";import"./decoration-img.82b482b3.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.ed71ac09.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";export{M as default}; diff --git a/public/admin/assets/content.b8657a15.js b/public/admin/assets/content.b8657a15.js new file mode 100644 index 000000000..e5a38512f --- /dev/null +++ b/public/admin/assets/content.b8657a15.js @@ -0,0 +1 @@ +import i from"./decoration-img.82b482b3.js";import{d as p,o as r,c as m,U as c,a as o,S as e,bf as s,be as n}from"./@vue.51d7f2d8.js";import{d as a}from"./index.ed71ac09.js";import"./element-plus.4328d892.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const d=t=>(s("data-v-2cdedb7a"),t=t(),n(),t),u={class:"customer-service"},_={class:"text-[15px] mt-[7px] font-medium"},l={class:"text-[#666] mt-[20px]"},x={class:"text-[#666] mt-[7px]"},f=d(()=>o("div",{class:"text-white text-[16px] rounded-[42px] bg-[#4173FF] w-full h-[42px] flex justify-center items-center mt-[50px]"}," \u4FDD\u5B58\u4E8C\u7EF4\u7801\u56FE\u7247 ",-1)),h=p({__name:"content",props:{content:{type:Object,default:()=>({})},styles:{type:Object,default:()=>({})}},setup(t){return(F,v)=>(r(),m("div",u,[c(i,{width:"140px",height:"140px",src:t.content.qrcode,alt:""},null,8,["src"]),o("div",_,e(t.content.title),1),o("div",l,"\u670D\u52A1\u65F6\u95F4\uFF1A"+e(t.content.time),1),o("div",x,"\u5BA2\u670D\u7535\u8BDD\uFF1A"+e(t.content.mobile),1),f]))}});const ot=a(h,[["__scopeId","data-v-2cdedb7a"]]);export{ot as default}; diff --git a/public/admin/assets/content.d63a41a9.js b/public/admin/assets/content.d63a41a9.js new file mode 100644 index 000000000..7b2804fab --- /dev/null +++ b/public/admin/assets/content.d63a41a9.js @@ -0,0 +1 @@ +import{d as r}from"./index.37f7aea6.js";import{o as i,c as e,bf as m,be as s,a as o}from"./@vue.51d7f2d8.js";import"./element-plus.4328d892.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const c="/admin/assets/default_avatar.fa19527b.png";const _={},p=t=>(m("data-v-4b1b613f"),t=t(),s(),t),a={class:"user-info flex items-center px-[25px]"},n=p(()=>o("img",{src:c,class:"w-[60px] h-[60px]",alt:""},null,-1)),d=p(()=>o("div",{class:"text-white text-[18px] ml-[10px]"},"\u672A\u767B\u5F55",-1)),f=[n,d];function l(t,x){return i(),e("div",a,f)}const X=r(_,[["render",l],["__scopeId","data-v-4b1b613f"]]);export{X as default}; diff --git a/public/admin/assets/content.de68a2a6.js b/public/admin/assets/content.de68a2a6.js new file mode 100644 index 000000000..33437a8ca --- /dev/null +++ b/public/admin/assets/content.de68a2a6.js @@ -0,0 +1 @@ +import{b as x,d as _}from"./index.ed71ac09.js";import c from"./decoration-img.82b482b3.js";import{d as u,o as t,c as e,a as r,S as s,Q as p,T as a,a7 as l,U as m}from"./@vue.51d7f2d8.js";import"./element-plus.4328d892.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const f={class:"my-service"},h={key:0,class:"title px-[15px] py-[10px]"},y={key:1,class:"flex flex-wrap pt-[20px] pb-[10px]"},v={class:"mt-[7px]"},b={key:2},g={class:"ml-[10px] flex-1"},k=u({__name:"content",props:{content:{type:Object,default:()=>({})},styles:{type:Object,default:()=>({})}},setup(o){return(w,B)=>{const d=x;return t(),e("div",f,[o.content.title?(t(),e("div",h,[r("div",null,s(o.content.title),1)])):p("",!0),o.content.style==1?(t(),e("div",y,[(t(!0),e(a,null,l(o.content.data,(i,n)=>(t(),e("div",{key:n,class:"flex flex-col items-center w-1/4 mb-[15px]"},[m(c,{width:"26px",height:"26px",src:i.image,alt:""},null,8,["src"]),r("div",v,s(i.name),1)]))),128))])):p("",!0),o.content.style==2?(t(),e("div",b,[(t(!0),e(a,null,l(o.content.data,(i,n)=>(t(),e("div",{key:n,class:"flex items-center border-b border-[#e5e5e5] h-[50px] px-[12px]"},[m(c,{width:"24px",height:"24px",src:i.image,alt:""},null,8,["src"]),r("div",g,s(i.name),1),r("div",null,[m(d,{name:"el-icon-ArrowRight"})])]))),128))])):p("",!0)])}}});const st=_(k,[["__scopeId","data-v-26886ebe"]]);export{st as default}; diff --git a/public/admin/assets/content.e5c2e527.js b/public/admin/assets/content.e5c2e527.js new file mode 100644 index 000000000..b86800ea5 --- /dev/null +++ b/public/admin/assets/content.e5c2e527.js @@ -0,0 +1 @@ +import"./content.vue_vue_type_script_setup_true_lang.e9fe6f66.js";import{_ as M}from"./content.vue_vue_type_script_setup_true_lang.e9fe6f66.js";import"./decoration-img.82b482b3.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.ed71ac09.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";export{M as default}; diff --git a/public/admin/assets/content.efbf9a62.js b/public/admin/assets/content.efbf9a62.js new file mode 100644 index 000000000..5142cba3f --- /dev/null +++ b/public/admin/assets/content.efbf9a62.js @@ -0,0 +1 @@ +import"./content.vue_vue_type_script_setup_true_lang.84d28a88.js";import{_ as M}from"./content.vue_vue_type_script_setup_true_lang.84d28a88.js";import"./decoration-img.82b482b3.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.ed71ac09.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";export{M as default}; diff --git a/public/admin/assets/content.fb432a0e.js b/public/admin/assets/content.fb432a0e.js new file mode 100644 index 000000000..54ef74057 --- /dev/null +++ b/public/admin/assets/content.fb432a0e.js @@ -0,0 +1 @@ +import{d as r,b as e}from"./index.ed71ac09.js";import{o as i,c as m,a as t,U as c,bf as s,be as a}from"./@vue.51d7f2d8.js";import"./element-plus.4328d892.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const _={},n=o=>(s("data-v-3514bdd8"),o=o(),a(),o),d={class:"search"},l={class:"search-con flex items-center px-[15px]"},f=n(()=>t("span",{class:"ml-[5px]"},"\u8BF7\u8F93\u5165\u5173\u952E\u8BCD\u641C\u7D22",-1));function h(o,x){const p=e;return i(),m("div",d,[t("div",l,[c(p,{name:"el-icon-Search",size:17}),f])])}const X=r(_,[["render",h],["__scopeId","data-v-3514bdd8"]]);export{X as default}; diff --git a/public/admin/assets/content.vue_vue_type_script_setup_true_lang.08763d7f.js b/public/admin/assets/content.vue_vue_type_script_setup_true_lang.08763d7f.js new file mode 100644 index 000000000..232f8356b --- /dev/null +++ b/public/admin/assets/content.vue_vue_type_script_setup_true_lang.08763d7f.js @@ -0,0 +1 @@ +import o from"./decoration-img.3e95b47f.js";import{d as r,o as e,c as t,a,T as l,a7 as p,U as i,S as d}from"./@vue.51d7f2d8.js";const m={class:"nav bg-white pt-[15px] pb-[8px]"},_={class:"flex flex-wrap"},x={class:"mt-[7px]"},b=r({__name:"content",props:{content:{type:Object,default:()=>({})},styles:{type:Object,default:()=>({})}},setup(n){return(f,u)=>(e(),t("div",m,[a("div",_,[(e(!0),t(l,null,p(n.content.data,(s,c)=>(e(),t("div",{key:c,class:"flex flex-col items-center w-1/5 mb-[15px]"},[i(o,{width:"41px",height:"41px",src:s.image,alt:""},null,8,["src"]),a("div",x,d(s.name),1)]))),128))])]))}});export{b as _}; diff --git a/public/admin/assets/content.vue_vue_type_script_setup_true_lang.28911d3e.js b/public/admin/assets/content.vue_vue_type_script_setup_true_lang.28911d3e.js new file mode 100644 index 000000000..6940e38bd --- /dev/null +++ b/public/admin/assets/content.vue_vue_type_script_setup_true_lang.28911d3e.js @@ -0,0 +1 @@ +import o from"./decoration-img.3e95b47f.js";import{d as s,e as c,o as r,c as i,a as p,U as m,u as d}from"./@vue.51d7f2d8.js";const u={class:"banner mx-[10px] mt-[10px]"},_={class:"banner-image"},h=s({__name:"content",props:{content:{type:Object,default:()=>({})},styles:{type:Object,default:()=>({})}},setup(t){const n=t,a=c(()=>{const{data:e}=n.content;return Array.isArray(e)&&e[0]?e[0].image:""});return(e,l)=>(r(),i("div",u,[p("div",_,[m(o,{width:"100%",height:"100px",src:d(a),fit:"contain"},null,8,["src"])])]))}});export{h as _}; diff --git a/public/admin/assets/content.vue_vue_type_script_setup_true_lang.84d28a88.js b/public/admin/assets/content.vue_vue_type_script_setup_true_lang.84d28a88.js new file mode 100644 index 000000000..e3059da1f --- /dev/null +++ b/public/admin/assets/content.vue_vue_type_script_setup_true_lang.84d28a88.js @@ -0,0 +1 @@ +import s from"./decoration-img.82b482b3.js";import{d as c,e as r,o,c as i,a as l,U as h,u as m,_ as u}from"./@vue.51d7f2d8.js";const d={class:"banner-image w-full h-full"},p=c({__name:"content",props:{content:{type:Object,default:()=>({})},styles:{type:Object,default:()=>({})},height:{type:String,default:"170px"}},setup(e){const a=e,n=r(()=>{const{data:t}=a.content;return Array.isArray(t)&&t[0]?t[0].image:""});return(t,f)=>(o(),i("div",{class:"banner",style:u(e.styles)},[l("div",d,[h(s,{width:"100%",height:e.styles.height||e.height,src:m(n),fit:"contain"},null,8,["height","src"])])],4))}});export{p as _}; diff --git a/public/admin/assets/content.vue_vue_type_script_setup_true_lang.888a9caf.js b/public/admin/assets/content.vue_vue_type_script_setup_true_lang.888a9caf.js new file mode 100644 index 000000000..3d2dca16e --- /dev/null +++ b/public/admin/assets/content.vue_vue_type_script_setup_true_lang.888a9caf.js @@ -0,0 +1 @@ +import o from"./decoration-img.d7e5dbec.js";import{d as r,o as e,c as t,a,T as l,a7 as p,U as i,S as d}from"./@vue.51d7f2d8.js";const m={class:"nav bg-white pt-[15px] pb-[8px]"},_={class:"flex flex-wrap"},x={class:"mt-[7px]"},b=r({__name:"content",props:{content:{type:Object,default:()=>({})},styles:{type:Object,default:()=>({})}},setup(n){return(f,u)=>(e(),t("div",m,[a("div",_,[(e(!0),t(l,null,p(n.content.data,(s,c)=>(e(),t("div",{key:c,class:"flex flex-col items-center w-1/5 mb-[15px]"},[i(o,{width:"41px",height:"41px",src:s.image,alt:""},null,8,["src"]),a("div",x,d(s.name),1)]))),128))])]))}});export{b as _}; diff --git a/public/admin/assets/content.vue_vue_type_script_setup_true_lang.b3e4f379.js b/public/admin/assets/content.vue_vue_type_script_setup_true_lang.b3e4f379.js new file mode 100644 index 000000000..09150177c --- /dev/null +++ b/public/admin/assets/content.vue_vue_type_script_setup_true_lang.b3e4f379.js @@ -0,0 +1 @@ +import s from"./decoration-img.d7e5dbec.js";import{d as c,e as r,o,c as i,a as l,U as h,u as m,_ as u}from"./@vue.51d7f2d8.js";const d={class:"banner-image w-full h-full"},p=c({__name:"content",props:{content:{type:Object,default:()=>({})},styles:{type:Object,default:()=>({})},height:{type:String,default:"170px"}},setup(e){const a=e,n=r(()=>{const{data:t}=a.content;return Array.isArray(t)&&t[0]?t[0].image:""});return(t,f)=>(o(),i("div",{class:"banner",style:u(e.styles)},[l("div",d,[h(s,{width:"100%",height:e.styles.height||e.height,src:m(n),fit:"contain"},null,8,["height","src"])])],4))}});export{p as _}; diff --git a/public/admin/assets/content.vue_vue_type_script_setup_true_lang.c8560c8f.js b/public/admin/assets/content.vue_vue_type_script_setup_true_lang.c8560c8f.js new file mode 100644 index 000000000..4aafee555 --- /dev/null +++ b/public/admin/assets/content.vue_vue_type_script_setup_true_lang.c8560c8f.js @@ -0,0 +1 @@ +import o from"./decoration-img.82b482b3.js";import{d as r,o as e,c as t,a,T as l,a7 as p,U as i,S as d}from"./@vue.51d7f2d8.js";const m={class:"nav bg-white pt-[15px] pb-[8px]"},_={class:"flex flex-wrap"},x={class:"mt-[7px]"},b=r({__name:"content",props:{content:{type:Object,default:()=>({})},styles:{type:Object,default:()=>({})}},setup(n){return(f,u)=>(e(),t("div",m,[a("div",_,[(e(!0),t(l,null,p(n.content.data,(s,c)=>(e(),t("div",{key:c,class:"flex flex-col items-center w-1/5 mb-[15px]"},[i(o,{width:"41px",height:"41px",src:s.image,alt:""},null,8,["src"]),a("div",x,d(s.name),1)]))),128))])]))}});export{b as _}; diff --git a/public/admin/assets/content.vue_vue_type_script_setup_true_lang.d21cb19e.js b/public/admin/assets/content.vue_vue_type_script_setup_true_lang.d21cb19e.js new file mode 100644 index 000000000..128e51e57 --- /dev/null +++ b/public/admin/assets/content.vue_vue_type_script_setup_true_lang.d21cb19e.js @@ -0,0 +1 @@ +import s from"./decoration-img.3e95b47f.js";import{d as c,e as r,o,c as i,a as l,U as h,u as m,_ as u}from"./@vue.51d7f2d8.js";const d={class:"banner-image w-full h-full"},p=c({__name:"content",props:{content:{type:Object,default:()=>({})},styles:{type:Object,default:()=>({})},height:{type:String,default:"170px"}},setup(e){const a=e,n=r(()=>{const{data:t}=a.content;return Array.isArray(t)&&t[0]?t[0].image:""});return(t,f)=>(o(),i("div",{class:"banner",style:u(e.styles)},[l("div",d,[h(s,{width:"100%",height:e.styles.height||e.height,src:m(n),fit:"contain"},null,8,["height","src"])])],4))}});export{p as _}; diff --git a/public/admin/assets/content.vue_vue_type_script_setup_true_lang.e6931808.js b/public/admin/assets/content.vue_vue_type_script_setup_true_lang.e6931808.js new file mode 100644 index 000000000..7dee373be --- /dev/null +++ b/public/admin/assets/content.vue_vue_type_script_setup_true_lang.e6931808.js @@ -0,0 +1 @@ +import o from"./decoration-img.d7e5dbec.js";import{d as s,e as c,o as r,c as i,a as p,U as m,u as d}from"./@vue.51d7f2d8.js";const u={class:"banner mx-[10px] mt-[10px]"},_={class:"banner-image"},h=s({__name:"content",props:{content:{type:Object,default:()=>({})},styles:{type:Object,default:()=>({})}},setup(t){const n=t,a=c(()=>{const{data:e}=n.content;return Array.isArray(e)&&e[0]?e[0].image:""});return(e,l)=>(r(),i("div",u,[p("div",_,[m(o,{width:"100%",height:"100px",src:d(a),fit:"contain"},null,8,["src"])])]))}});export{h as _}; diff --git a/public/admin/assets/content.vue_vue_type_script_setup_true_lang.e9fe6f66.js b/public/admin/assets/content.vue_vue_type_script_setup_true_lang.e9fe6f66.js new file mode 100644 index 000000000..582ed564a --- /dev/null +++ b/public/admin/assets/content.vue_vue_type_script_setup_true_lang.e9fe6f66.js @@ -0,0 +1 @@ +import o from"./decoration-img.82b482b3.js";import{d as s,e as c,o as r,c as i,a as p,U as m,u as d}from"./@vue.51d7f2d8.js";const u={class:"banner mx-[10px] mt-[10px]"},_={class:"banner-image"},h=s({__name:"content",props:{content:{type:Object,default:()=>({})},styles:{type:Object,default:()=>({})}},setup(t){const n=t,a=c(()=>{const{data:e}=n.content;return Array.isArray(e)&&e[0]?e[0].image:""});return(e,l)=>(r(),i("div",u,[p("div",_,[m(o,{width:"100%",height:"100px",src:d(a),fit:"contain"},null,8,["src"])])]))}});export{h as _}; diff --git a/public/admin/assets/contract.152e3bc2.js b/public/admin/assets/contract.152e3bc2.js new file mode 100644 index 000000000..8c30c0b61 --- /dev/null +++ b/public/admin/assets/contract.152e3bc2.js @@ -0,0 +1 @@ +import{r}from"./index.ed71ac09.js";function n(t){return r.get({url:"/contract.contract/lists",params:t})}function a(t){return r.post({url:"/contract.contract/add",params:t})}function o(t){return r.post({url:"/contract.contract/edit",params:t})}function e(t){return r.get({url:"/contract.contract/detail",params:t})}function i(t){return r.get({url:"/contract.VehicleContract/lists",params:t})}function u(t){return r.get({url:"/contract.VehicleContract/detail",params:t})}function s(t){return r.post({url:"/contract.VehicleContract/uploadContract",params:t})}function l(t){return r.get({url:"/contract.contract/evidence",params:t})}export{e as a,o as b,a as c,l as d,n as e,s as f,i as g,u as l}; diff --git a/public/admin/assets/contract.35ae5168.js b/public/admin/assets/contract.35ae5168.js new file mode 100644 index 000000000..8c390a7d1 --- /dev/null +++ b/public/admin/assets/contract.35ae5168.js @@ -0,0 +1 @@ +import{r}from"./index.aa9bb752.js";function n(t){return r.get({url:"/contract.contract/lists",params:t})}function a(t){return r.post({url:"/contract.contract/add",params:t})}function o(t){return r.post({url:"/contract.contract/edit",params:t})}function e(t){return r.get({url:"/contract.contract/detail",params:t})}function i(t){return r.get({url:"/contract.VehicleContract/lists",params:t})}function u(t){return r.get({url:"/contract.VehicleContract/detail",params:t})}function s(t){return r.post({url:"/contract.VehicleContract/uploadContract",params:t})}function l(t){return r.get({url:"/contract.contract/evidence",params:t})}export{e as a,o as b,a as c,l as d,n as e,s as f,i as g,u as l}; diff --git a/public/admin/assets/contract.e9a9dbc8.js b/public/admin/assets/contract.e9a9dbc8.js new file mode 100644 index 000000000..c93455cb8 --- /dev/null +++ b/public/admin/assets/contract.e9a9dbc8.js @@ -0,0 +1 @@ +import{r}from"./index.37f7aea6.js";function n(t){return r.get({url:"/contract.contract/lists",params:t})}function a(t){return r.post({url:"/contract.contract/add",params:t})}function o(t){return r.post({url:"/contract.contract/edit",params:t})}function e(t){return r.get({url:"/contract.contract/detail",params:t})}function i(t){return r.get({url:"/contract.VehicleContract/lists",params:t})}function u(t){return r.get({url:"/contract.VehicleContract/detail",params:t})}function s(t){return r.post({url:"/contract.VehicleContract/uploadContract",params:t})}function l(t){return r.get({url:"/contract.contract/evidence",params:t})}export{e as a,o as b,a as c,l as d,n as e,s as f,i as g,u as l}; diff --git a/public/admin/assets/contractDetil.49d835e3.js b/public/admin/assets/contractDetil.49d835e3.js new file mode 100644 index 000000000..88c18e5ad --- /dev/null +++ b/public/admin/assets/contractDetil.49d835e3.js @@ -0,0 +1 @@ +import{J as le,k as S,K as ue,B as ae,C as oe,N as te,D as re,I as ne,b as de,M as se,w as ie}from"./element-plus.4328d892.js";import{u as M,a as pe}from"./vue-router.9f65afb1.js";import{a as me}from"./contract.35ae5168.js";import{e as _e,a as ce,d as fe}from"./index.aa9bb752.js";import{b as ve}from"./consumer.d25e26af.js";import{d as be,C as ye,$ as Fe,r as b,j as Be,af as Ve,o as s,c as B,U as e,L as u,K as f,Q as m,a as p,T as I,a7 as T,M as O,u as j,R as J,S as Ee,bf as Ce,be as he}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const C=D=>(Ce("data-v-7d71011d"),D=D(),he(),D),ge=C(()=>p("span",null,"\u7532\u65B9\u57FA\u672C\u4FE1\u606F",-1)),De=C(()=>p("span",null,"\u7532\u65B9\u8D44\u8D28\u4FE1\u606F",-1)),ke={class:"company"},Ae={class:"company"},we=C(()=>p("span",null,"\u4E59\u65B9\u57FA\u672C\u4FE1\u606F",-1)),Ue=C(()=>p("span",null,"\u4E59\u65B9\u8D44\u8D28\u4FE1\u606F",-1)),qe={class:"company"},xe={class:"company"},Re=C(()=>p("span",null,"\u4E2A\u4EBA\u57FA\u672C\u4FE1\u606F",-1)),Se={class:"persenal"},Ie=["src"],ze=C(()=>p("span",null,"\u4E2A\u4EBA\u8D44\u8D28\u4FE1\u606F",-1)),Ne=["src"],Me=["src"],Te=["src"],Oe=["src"],je=["src"],Je=["src"],Ke=C(()=>p("span",null,"\u7535\u5B50\u5408\u540C",-1)),Le=["href"],Qe=["href"],$e=be({__name:"contractDetil",setup(D){const{query:K}=M(),{removeTab:L}=_e(),Q=ye("base_url"),n=Fe({id:"",company_id:"",contract_type:"",contract_type_name:"",contract_no:"",file:"",status:"",check_status:"",party_a:"",party_a_name:"",party_b:"",party_b_name:"",area_manager:"",area_manager_name:"",type_name:"",url:"",status_name:"",signed_contract_url:""});b([]);const k=b({}),r=b({}),y=b([]),d=b([]),F=b([]),i=b([]),v=b([]),U=b(!0),q=b(!0),x=b(!0),$=M(),G=ce();async function H(){const o=await me({id:K.id});Object.keys(n).forEach(l=>{o[l]!=null&&o[l]!=null&&(n[l]=o[l])}),r.value=o.party_a_info,k.value=o,(k.value.status==1||o.check_status==3||o.status==1)&&(x.value=!1);try{o.party_a_info.qualification.bank_account=JSON.parse(o.party_a_info.qualification.bank_account),y.value=o.party_a_info.qualification,o.party_b_info.qualification.other_qualifications=JSON.parse(o.party_b_info.qualification.other_qualifications),F.value=o.party_b_info.qualification}catch{}y.value=o.party_a_info.qualification,o.type==2&&(U.value=!1,o.party_b_info.sex==1?o.party_b_info.sex="\u7537":o.party_b_info.sex="\u5973",i.value=o.party_b_info,v.value=o.party_b_info.qualification),o.type==1?(d.value=o.party_b_info,F.value=o.party_b_info.qualification,q.value=!1):d.value.company_name=o.party_b_info.nickname}const P=o=>{var l;return((l=o==null?void 0:o.name)==null?void 0:l.substring(o.name.length-4,o.name.length))!=".pdf"?(S.error("\u4EC5\u652F\u6301\u4E0A\u4F20.pdf\u6587\u4EF6"),!1):!0},A=b(null),W=o=>{A.value.clearFiles();const l=o[0];l.uid=ue(),A.value.handleStart(l),A.value.submit()},X=(o,l)=>{if(o.code==0){S.error(o.msg);return}n.file=o.data.uri},Y=pe(),Z=()=>{if(!n.file)return S.error("\u8BF7\u5148\u4E0A\u4F20\u5408\u540C!");ve({file:n.file,id:$.query.id}),L(),Y.back()};return Be(async()=>{await H()}),(o,l)=>{const _=ae,t=oe,c=te,V=re,E=ne,h=de,w=se,z=ie,ee=le,N=Ve("perms");return s(),B(I,null,[e(E,{class:"box-card"},{header:u(()=>[ge]),default:u(()=>[e(V,{inline:!0,ref:"formRef",model:r.value,"label-width":"91.5px",rules:o.formRules,class:"select"},{default:u(()=>[e(t,{label:"\u516C\u53F8\u540D\u79F0",prop:"company_name",required:""},{default:u(()=>[e(_,{disabled:"",modelValue:r.value.company_name,"onUpdate:modelValue":l[0]||(l[0]=a=>r.value.company_name=a),placeholder:"\u8BF7\u8F93\u5165\u516C\u53F8\u540D\u79F0"},null,8,["modelValue"])]),_:1}),e(t,{label:"\u793E\u4F1A\u4EE3\u7801",prop:"organization_code",required:""},{default:u(()=>[e(_,{disabled:"",modelValue:r.value.organization_code,"onUpdate:modelValue":l[1]||(l[1]=a=>r.value.organization_code=a),placeholder:"\u8BF7\u8F93\u5165\u793E\u4F1A\u4EE3\u7801"},null,8,["modelValue"])]),_:1}),e(t,{label:"\u4E3B\u8981\u8054\u7CFB\u4EBA",prop:"company_name",required:""},{default:u(()=>[e(_,{disabled:"",modelValue:r.value.master_name,"onUpdate:modelValue":l[2]||(l[2]=a=>r.value.master_name=a),placeholder:"\u8BF7\u8F93\u5165\u4E3B\u8981\u8054\u7CFB\u4EBA"},null,8,["modelValue"])]),_:1}),e(t,{label:"\u516C\u53F8\u7C7B\u578B",prop:"compeny"},{default:u(()=>[e(c,{disabled:"",modelValue:r.value.company_type_name,"onUpdate:modelValue":l[3]||(l[3]=a=>r.value.company_type_name=a),placeholder:"\u8BF7\u8F93\u5165\u516C\u53F8\u7C7B\u578B"},null,8,["modelValue"])]),_:1}),e(t,{label:"\u7701",prop:"province"},{default:u(()=>[e(c,{disabled:"",modelValue:r.value.province_name,"onUpdate:modelValue":l[4]||(l[4]=a=>r.value.province_name=a),placeholder:"\u8BF7\u9009\u62E9\u7701"},null,8,["modelValue"])]),_:1}),e(t,{label:"\u5E02",prop:"city"},{default:u(()=>[e(c,{disabled:"",modelValue:r.value.city_name,"onUpdate:modelValue":l[5]||(l[5]=a=>r.value.city_name=a),placeholder:"\u8BF7\u9009\u62E9\u5E02"},null,8,["modelValue"])]),_:1}),e(t,{label:"\u533A",prop:"area"},{default:u(()=>[e(c,{disabled:"",modelValue:r.value.area_name,"onUpdate:modelValue":l[6]||(l[6]=a=>r.value.area_name=a),placeholder:"\u8BF7\u9009\u62E9\u533A"},null,8,["modelValue"])]),_:1}),r.value.company_type!=30?(s(),f(t,{key:0,label:"\u9547",prop:"company_type_name"},{default:u(()=>[e(c,{disabled:"",modelValue:r.value.street_name,"onUpdate:modelValue":l[7]||(l[7]=a=>r.value.street_name=a),placeholder:"\u8BF7\u9009\u62E9\u9547"},null,8,["modelValue"])]),_:1})):m("",!0),r.value.company_type!=30?(s(),f(t,{key:1,label:"\u5730\u5740",prop:"address"},{default:u(()=>[e(_,{disabled:"",modelValue:r.value.address,"onUpdate:modelValue":l[8]||(l[8]=a=>r.value.address=a),placeholder:"\u8BF7\u8F93\u5165\u516C\u53F8\u5730\u5740",style:{width:"32rem"}},null,8,["modelValue"])]),_:1})):m("",!0)]),_:1},8,["model","rules"])]),_:1}),e(E,null,{header:u(()=>[De]),default:u(()=>[e(V,{inline:!0,ref:"formRef",model:r.value,"label-width":"90px",rules:o.formRules,class:"company_z"},{default:u(()=>{var a;return[e(t,{label:"\u516C\u53F8\u8D44\u8D28",prop:"contract_type",required:""},{default:u(()=>[p("div",ke,[e(h,{src:y.value.business_license,"preview-src-list":[y.value.business_license],"initial-index":0,fit:"cover"},null,8,["src","preview-src-list"])])]),_:1}),e(t,{"label-width":"120px",label:"\u5F00\u6237\u8BB8\u53EF\u8BC1",prop:"contract_no",required:""},{default:u(()=>[p("div",Ae,[e(h,{src:y.value.business_licenseB,"preview-src-list":[y.value.business_licenseB],"initial-index":0,fit:"cover"},null,8,["src","preview-src-list"])])]),_:1}),((a=y.value.other_qualifications)==null?void 0:a.length)>0?(s(),f(t,{key:0,class:"other",label:"\u5176\u4ED6\u8D44\u8D28",prop:"contract_no",required:""},{default:u(()=>[(s(!0),B(I,null,T(y.value.other_qualifications,(R,g)=>(s(),B("div",{class:"company",key:g},[e(h,{src:R,"preview-src-list":y.value.other_qualifications,"initial-index":g,fit:"cover"},null,8,["src","preview-src-list","initial-index"])]))),128))]),_:1})):m("",!0)]}),_:1},8,["model","rules"])]),_:1}),U.value?(s(),f(E,{key:0},{header:u(()=>[we]),default:u(()=>[e(V,{inline:!0,ref:"formRef",model:d.value,"label-width":"91.5px",rules:o.formRules,class:"select"},{default:u(()=>[e(t,{label:"\u516C\u53F8\u540D\u79F0",prop:"company_name",required:""},{default:u(()=>[e(_,{disabled:"",modelValue:d.value.company_name,"onUpdate:modelValue":l[9]||(l[9]=a=>d.value.company_name=a),placeholder:"\u8BF7\u8F93\u5165\u516C\u53F8\u540D\u79F0"},null,8,["modelValue"])]),_:1}),e(t,{label:"\u793E\u4F1A\u4EE3\u7801",prop:"organization_code",required:""},{default:u(()=>[e(_,{disabled:"",modelValue:d.value.organization_code,"onUpdate:modelValue":l[10]||(l[10]=a=>d.value.organization_code=a),placeholder:"\u8BF7\u8F93\u5165\u793E\u4F1A\u4EE3\u7801"},null,8,["modelValue"])]),_:1}),e(t,{label:"\u516C\u53F8\u7C7B\u578B",prop:"company_type"},{default:u(()=>[e(c,{disabled:"",modelValue:d.value.company_type_name,"onUpdate:modelValue":l[11]||(l[11]=a=>d.value.company_type_name=a),placeholder:"\u8BF7\u8F93\u5165\u793E\u4F1A\u7C7B\u578B"},{default:u(()=>[e(w)]),_:1},8,["modelValue"])]),_:1}),e(t,{label:"\u4E3B\u8981\u8054\u7CFB\u4EBA",prop:"master_name",required:""},{default:u(()=>[e(_,{disabled:"",modelValue:d.value.master_name,"onUpdate:modelValue":l[12]||(l[12]=a=>d.value.master_name=a),placeholder:"\u8BF7\u8F93\u5165\u4E3B\u8981\u8054\u7CFB\u4EBA"},null,8,["modelValue"])]),_:1}),e(t,{label:"\u7701",prop:"province"},{default:u(()=>[e(c,{disabled:"",modelValue:d.value.province_name,"onUpdate:modelValue":l[13]||(l[13]=a=>d.value.province_name=a),placeholder:"\u8BF7\u9009\u62E9\u7701"},null,8,["modelValue"])]),_:1}),e(t,{label:"\u5E02",prop:"city"},{default:u(()=>[e(c,{disabled:"",modelValue:d.value.city_name,"onUpdate:modelValue":l[14]||(l[14]=a=>d.value.city_name=a),placeholder:"\u8BF7\u9009\u62E9\u5E02"},null,8,["modelValue"])]),_:1}),e(t,{label:"\u533A",prop:"area"},{default:u(()=>[e(c,{disabled:"",modelValue:d.value.area_name,"onUpdate:modelValue":l[15]||(l[15]=a=>d.value.area_name=a),placeholder:"\u8BF7\u9009\u62E9\u533A"},null,8,["modelValue"])]),_:1}),e(t,{label:"\u9547",prop:"street"},{default:u(()=>[e(c,{disabled:"",modelValue:d.value.street_name,"onUpdate:modelValue":l[16]||(l[16]=a=>d.value.street_name=a),placeholder:"\u8BF7\u9009\u62E9\u9547"},{default:u(()=>[e(w)]),_:1},8,["modelValue"])]),_:1}),e(t,{label:"\u5730\u5740",prop:"street"},{default:u(()=>[e(_,{disabled:"",modelValue:d.value.address,"onUpdate:modelValue":l[17]||(l[17]=a=>d.value.address=a),placeholder:"\u8BF7\u8F93\u5165\u516C\u53F8\u5730\u5740",style:{width:"31.5rem"}},null,8,["modelValue"])]),_:1})]),_:1},8,["model","rules"])]),_:1})):m("",!0),U.value?(s(),f(E,{key:1},{header:u(()=>[Ue]),default:u(()=>[e(V,{inline:!0,ref:"formRef",model:n,"label-width":"90px",rules:o.formRules,class:"company_z"},{default:u(()=>{var a;return[e(t,{label:"\u516C\u53F8\u8D44\u8D28",prop:"contract_type",required:""},{default:u(()=>[p("div",qe,[e(h,{src:F.value.business_license,"preview-src-list":[F.value.business_license],"initial-index":0,fit:"cover"},null,8,["src","preview-src-list"])])]),_:1}),e(t,{"label-width":"120px",label:"\u5F00\u6237\u8BB8\u53EF\u8BC1",prop:"contract_no",required:""},{default:u(()=>[p("div",xe,[e(h,{src:F.value.business_licenseB,"preview-src-list":[F.value.business_licenseB],"initial-index":0,fit:"cover"},null,8,["src","preview-src-list"])])]),_:1}),((a=F.value.other_qualifications)==null?void 0:a.length)>0?(s(),f(t,{key:0,class:"other",label:"\u5176\u4ED6\u8D44\u8D28",prop:"contract_no",required:""},{default:u(()=>[(s(!0),B(I,null,T(F.value.other_qualifications,(R,g)=>(s(),B("div",{class:"company",key:g},[e(h,{src:R,"preview-src-list":F.value.other_qualifications,"initial-index":g,fit:"cover"},null,8,["src","preview-src-list","initial-index"])]))),128))]),_:1})):m("",!0)]}),_:1},8,["model","rules"])]),_:1})):m("",!0),q.value?(s(),f(E,{key:2},{header:u(()=>[Re]),default:u(()=>[p("div",Se,[p("img",{src:i.value.avatar},null,8,Ie),e(V,{inline:!0,ref:"formRef",model:i.value,"label-width":"90px",rules:o.formRules,class:"person_select"},{default:u(()=>[e(t,{label:"\u59D3\u540D"},{default:u(()=>[e(_,{disabled:"",modelValue:i.value.nickname,"onUpdate:modelValue":l[18]||(l[18]=a=>i.value.nickname=a),placeholder:"\u8BF7\u8F93\u5165\u59D3\u540D"},null,8,["modelValue"])]),_:1}),e(t,{label:"\u6027\u522B"},{default:u(()=>[e(_,{disabled:"",modelValue:i.value.sex,"onUpdate:modelValue":l[19]||(l[19]=a=>i.value.sex=a),placeholder:"\u8BF7\u8F93\u5165\u6027\u522B"},null,8,["modelValue"])]),_:1}),e(t,{label:"\u8054\u7CFB\u7535\u8BDD"},{default:u(()=>[e(_,{disabled:"",modelValue:i.value.mobile,"onUpdate:modelValue":l[20]||(l[20]=a=>i.value.mobile=a),placeholder:"\u8BF7\u8F93\u5165\u8054\u7CFB\u7535\u8BDD"},null,8,["modelValue"])]),_:1}),e(t,{label:"\u8EAB\u4EFD\u8BC1\u53F7"},{default:u(()=>[e(_,{modelValue:i.value.id_card,"onUpdate:modelValue":l[21]||(l[21]=a=>i.value.id_card=a),placeholder:"\u8BF7\u8F93\u5165\u8EAB\u4EFD\u8BC1\u53F7",disabled:""},null,8,["modelValue"])]),_:1}),e(t,{label:"\u7701",prop:"province"},{default:u(()=>[e(c,{disabled:"",modelValue:i.value.province_name,"onUpdate:modelValue":l[22]||(l[22]=a=>i.value.province_name=a),placeholder:"\u8BF7\u9009\u62E9\u7701"},null,8,["modelValue"])]),_:1}),e(t,{label:"\u5E02",prop:"city"},{default:u(()=>[e(c,{disabled:"",modelValue:i.value.city_name,"onUpdate:modelValue":l[23]||(l[23]=a=>i.value.city_name=a),placeholder:"\u8BF7\u9009\u62E9\u5E02"},null,8,["modelValue"])]),_:1}),e(t,{label:"\u533A",prop:"area"},{default:u(()=>[e(c,{disabled:"",modelValue:i.value.area_name,"onUpdate:modelValue":l[24]||(l[24]=a=>i.value.area_name=a),placeholder:"\u8BF7\u9009\u62E9\u533A"},{default:u(()=>[e(w)]),_:1},8,["modelValue"])]),_:1}),e(t,{label:"\u9547",prop:"street"},{default:u(()=>[e(c,{disabled:"",modelValue:i.value.street_name,"onUpdate:modelValue":l[25]||(l[25]=a=>i.value.street_name=a),placeholder:"\u8BF7\u9009\u62E9\u9547"},{default:u(()=>[e(w)]),_:1},8,["modelValue"])]),_:1})]),_:1},8,["model","rules"])])]),_:1})):m("",!0),q.value?(s(),f(E,{key:3},{header:u(()=>[ze]),default:u(()=>[e(V,{class:"idcard",model:v.value,inline:!0},{default:u(()=>[e(t,{label:"\u8EAB\u4EFD\u8BC1"},{default:u(()=>[p("img",{src:v.value.id_card},null,8,Ne),p("img",{src:v.value.id_card_b},null,8,Me)]),_:1}),e(t,{label:"\u94F6\u884C\u5361"},{default:u(()=>[p("img",{src:v.value.bank_account},null,8,Te),p("img",{src:v.value.bank_account_b},null,8,Oe)]),_:1}),v.value.car_card||v.value.car_card_b?(s(),f(t,{key:0,label:"\u884C\u9A76\u8BC1"},{default:u(()=>[v.value.car_card?(s(),B("img",{key:0,src:v.value.car_card},null,8,je)):m("",!0),v.value.car_card_b?(s(),B("img",{key:1,src:v.value.car_card_b},null,8,Je)):m("",!0)]),_:1})):m("",!0)]),_:1},8,["model"])]),_:1})):m("",!0),e(E,null,{header:u(()=>[Ke]),default:u(()=>[e(V,{inline:!0,class:"frame",ref:"formRef",model:n,"label-width":"90px",rules:o.formRules},{default:u(()=>[e(t,{label:"\u7532\u65B9",prop:"contract_type"},{default:u(()=>[e(_,{modelValue:r.value.company_name,"onUpdate:modelValue":l[26]||(l[26]=a=>r.value.company_name=a),disabled:!0,placeholder:"\u6682\u65E0\u7532\u65B9\u65B9"},null,8,["modelValue"])]),_:1}),e(t,{label:"\u4E59\u65B9",prop:"contract_no"},{default:u(()=>[e(_,{modelValue:d.value.company_name,"onUpdate:modelValue":l[27]||(l[27]=a=>d.value.company_name=a),disabled:!0,placeholder:"\u6682\u65E0\u4E59\u65B9"},null,8,["modelValue"])]),_:1}),e(t,{label:"\u5408\u540C\u7C7B\u578B",prop:"contract_no"},{default:u(()=>[e(_,{modelValue:k.value.contract_type_name,"onUpdate:modelValue":l[28]||(l[28]=a=>k.value.contract_type_name=a),disabled:!0,placeholder:"\u6682\u65E0\u5408\u540C"},null,8,["modelValue"])]),_:1})]),_:1},8,["model","rules"])]),_:1}),e(E,null,{default:u(()=>[e(V,{"label-width":"100px"},{default:u(()=>[x.value||(n==null?void 0:n.status)==0?(s(),f(t,{key:0,label:"\u5408\u540C\u4E0A\u4F20",prop:"field127"},{default:u(()=>[(n==null?void 0:n.status)==0?O((s(),f(ee,{key:0,accept:".pdf",headers:{Token:j(G).token},class:"upload-demo",action:j(Q)+"/upload/file","on-success":X,"before-upload":P,limit:1,"on-exceed":W,ref_key:"upload",ref:A},{default:u(()=>[e(z,{type:"primary"},{default:u(()=>[J(Ee(n.file?"\u91CD\u65B0\u4E0A\u4F20":"\u4E0A\u4F20"),1)]),_:1})]),_:1},8,["headers","action"])),[[N,["contract.contract/wind_control"]]]):m("",!0),n.file?(s(),B("a",{key:1,style:{"margin-left":"10px",color:"#4a5dff","align-self":"flex-start"},href:n.file,target:"_blank"},"\u5408\u540C\u5DF2\u4E0A\u4F20,\u70B9\u51FB\u67E5\u770B",8,Le)):m("",!0)]),_:1})):m("",!0),x.value||n.status==0?(s(),f(t,{key:1},{default:u(()=>[O((s(),f(z,{type:"primary",onClick:Z},{default:u(()=>[J("\u786E\u5B9A")]),_:1})),[[N,["contract.contract/wind_control"]]])]),_:1})):n.file&&n.status?(s(),f(t,{key:2},{default:u(()=>[n.file?(s(),B("a",{key:0,style:{"margin-left":"10px",color:"#4a5dff"},href:n.signed_contract_url?n.signed_contract_url:n.file,target:"_blank"},"\u67E5\u770B\u5408\u540C",8,Qe)):m("",!0)]),_:1})):m("",!0)]),_:1})]),_:1})],64)}}});const wl=fe($e,[["__scopeId","data-v-7d71011d"]]);export{wl as default}; diff --git a/public/admin/assets/contractDetil.cbb6ef30.js b/public/admin/assets/contractDetil.cbb6ef30.js new file mode 100644 index 000000000..4c62ed97e --- /dev/null +++ b/public/admin/assets/contractDetil.cbb6ef30.js @@ -0,0 +1 @@ +import{J as le,k as S,K as ue,B as ae,C as oe,N as te,D as re,I as ne,b as de,M as se,w as ie}from"./element-plus.4328d892.js";import{u as M,a as pe}from"./vue-router.9f65afb1.js";import{a as me}from"./contract.152e3bc2.js";import{e as _e,a as ce,d as fe}from"./index.ed71ac09.js";import{b as ve}from"./consumer.5e9fbfa1.js";import{d as be,C as ye,$ as Fe,r as b,j as Be,af as Ve,o as s,c as B,U as e,L as u,K as f,Q as m,a as p,T as I,a7 as T,M as O,u as j,R as J,S as Ee,bf as Ce,be as he}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const C=D=>(Ce("data-v-7d71011d"),D=D(),he(),D),ge=C(()=>p("span",null,"\u7532\u65B9\u57FA\u672C\u4FE1\u606F",-1)),De=C(()=>p("span",null,"\u7532\u65B9\u8D44\u8D28\u4FE1\u606F",-1)),ke={class:"company"},Ae={class:"company"},we=C(()=>p("span",null,"\u4E59\u65B9\u57FA\u672C\u4FE1\u606F",-1)),Ue=C(()=>p("span",null,"\u4E59\u65B9\u8D44\u8D28\u4FE1\u606F",-1)),qe={class:"company"},xe={class:"company"},Re=C(()=>p("span",null,"\u4E2A\u4EBA\u57FA\u672C\u4FE1\u606F",-1)),Se={class:"persenal"},Ie=["src"],ze=C(()=>p("span",null,"\u4E2A\u4EBA\u8D44\u8D28\u4FE1\u606F",-1)),Ne=["src"],Me=["src"],Te=["src"],Oe=["src"],je=["src"],Je=["src"],Ke=C(()=>p("span",null,"\u7535\u5B50\u5408\u540C",-1)),Le=["href"],Qe=["href"],$e=be({__name:"contractDetil",setup(D){const{query:K}=M(),{removeTab:L}=_e(),Q=ye("base_url"),n=Fe({id:"",company_id:"",contract_type:"",contract_type_name:"",contract_no:"",file:"",status:"",check_status:"",party_a:"",party_a_name:"",party_b:"",party_b_name:"",area_manager:"",area_manager_name:"",type_name:"",url:"",status_name:"",signed_contract_url:""});b([]);const k=b({}),r=b({}),y=b([]),d=b([]),F=b([]),i=b([]),v=b([]),U=b(!0),q=b(!0),x=b(!0),$=M(),G=ce();async function H(){const o=await me({id:K.id});Object.keys(n).forEach(l=>{o[l]!=null&&o[l]!=null&&(n[l]=o[l])}),r.value=o.party_a_info,k.value=o,(k.value.status==1||o.check_status==3||o.status==1)&&(x.value=!1);try{o.party_a_info.qualification.bank_account=JSON.parse(o.party_a_info.qualification.bank_account),y.value=o.party_a_info.qualification,o.party_b_info.qualification.other_qualifications=JSON.parse(o.party_b_info.qualification.other_qualifications),F.value=o.party_b_info.qualification}catch{}y.value=o.party_a_info.qualification,o.type==2&&(U.value=!1,o.party_b_info.sex==1?o.party_b_info.sex="\u7537":o.party_b_info.sex="\u5973",i.value=o.party_b_info,v.value=o.party_b_info.qualification),o.type==1?(d.value=o.party_b_info,F.value=o.party_b_info.qualification,q.value=!1):d.value.company_name=o.party_b_info.nickname}const P=o=>{var l;return((l=o==null?void 0:o.name)==null?void 0:l.substring(o.name.length-4,o.name.length))!=".pdf"?(S.error("\u4EC5\u652F\u6301\u4E0A\u4F20.pdf\u6587\u4EF6"),!1):!0},A=b(null),W=o=>{A.value.clearFiles();const l=o[0];l.uid=ue(),A.value.handleStart(l),A.value.submit()},X=(o,l)=>{if(o.code==0){S.error(o.msg);return}n.file=o.data.uri},Y=pe(),Z=()=>{if(!n.file)return S.error("\u8BF7\u5148\u4E0A\u4F20\u5408\u540C!");ve({file:n.file,id:$.query.id}),L(),Y.back()};return Be(async()=>{await H()}),(o,l)=>{const _=ae,t=oe,c=te,V=re,E=ne,h=de,w=se,z=ie,ee=le,N=Ve("perms");return s(),B(I,null,[e(E,{class:"box-card"},{header:u(()=>[ge]),default:u(()=>[e(V,{inline:!0,ref:"formRef",model:r.value,"label-width":"91.5px",rules:o.formRules,class:"select"},{default:u(()=>[e(t,{label:"\u516C\u53F8\u540D\u79F0",prop:"company_name",required:""},{default:u(()=>[e(_,{disabled:"",modelValue:r.value.company_name,"onUpdate:modelValue":l[0]||(l[0]=a=>r.value.company_name=a),placeholder:"\u8BF7\u8F93\u5165\u516C\u53F8\u540D\u79F0"},null,8,["modelValue"])]),_:1}),e(t,{label:"\u793E\u4F1A\u4EE3\u7801",prop:"organization_code",required:""},{default:u(()=>[e(_,{disabled:"",modelValue:r.value.organization_code,"onUpdate:modelValue":l[1]||(l[1]=a=>r.value.organization_code=a),placeholder:"\u8BF7\u8F93\u5165\u793E\u4F1A\u4EE3\u7801"},null,8,["modelValue"])]),_:1}),e(t,{label:"\u4E3B\u8981\u8054\u7CFB\u4EBA",prop:"company_name",required:""},{default:u(()=>[e(_,{disabled:"",modelValue:r.value.master_name,"onUpdate:modelValue":l[2]||(l[2]=a=>r.value.master_name=a),placeholder:"\u8BF7\u8F93\u5165\u4E3B\u8981\u8054\u7CFB\u4EBA"},null,8,["modelValue"])]),_:1}),e(t,{label:"\u516C\u53F8\u7C7B\u578B",prop:"compeny"},{default:u(()=>[e(c,{disabled:"",modelValue:r.value.company_type_name,"onUpdate:modelValue":l[3]||(l[3]=a=>r.value.company_type_name=a),placeholder:"\u8BF7\u8F93\u5165\u516C\u53F8\u7C7B\u578B"},null,8,["modelValue"])]),_:1}),e(t,{label:"\u7701",prop:"province"},{default:u(()=>[e(c,{disabled:"",modelValue:r.value.province_name,"onUpdate:modelValue":l[4]||(l[4]=a=>r.value.province_name=a),placeholder:"\u8BF7\u9009\u62E9\u7701"},null,8,["modelValue"])]),_:1}),e(t,{label:"\u5E02",prop:"city"},{default:u(()=>[e(c,{disabled:"",modelValue:r.value.city_name,"onUpdate:modelValue":l[5]||(l[5]=a=>r.value.city_name=a),placeholder:"\u8BF7\u9009\u62E9\u5E02"},null,8,["modelValue"])]),_:1}),e(t,{label:"\u533A",prop:"area"},{default:u(()=>[e(c,{disabled:"",modelValue:r.value.area_name,"onUpdate:modelValue":l[6]||(l[6]=a=>r.value.area_name=a),placeholder:"\u8BF7\u9009\u62E9\u533A"},null,8,["modelValue"])]),_:1}),r.value.company_type!=30?(s(),f(t,{key:0,label:"\u9547",prop:"company_type_name"},{default:u(()=>[e(c,{disabled:"",modelValue:r.value.street_name,"onUpdate:modelValue":l[7]||(l[7]=a=>r.value.street_name=a),placeholder:"\u8BF7\u9009\u62E9\u9547"},null,8,["modelValue"])]),_:1})):m("",!0),r.value.company_type!=30?(s(),f(t,{key:1,label:"\u5730\u5740",prop:"address"},{default:u(()=>[e(_,{disabled:"",modelValue:r.value.address,"onUpdate:modelValue":l[8]||(l[8]=a=>r.value.address=a),placeholder:"\u8BF7\u8F93\u5165\u516C\u53F8\u5730\u5740",style:{width:"32rem"}},null,8,["modelValue"])]),_:1})):m("",!0)]),_:1},8,["model","rules"])]),_:1}),e(E,null,{header:u(()=>[De]),default:u(()=>[e(V,{inline:!0,ref:"formRef",model:r.value,"label-width":"90px",rules:o.formRules,class:"company_z"},{default:u(()=>{var a;return[e(t,{label:"\u516C\u53F8\u8D44\u8D28",prop:"contract_type",required:""},{default:u(()=>[p("div",ke,[e(h,{src:y.value.business_license,"preview-src-list":[y.value.business_license],"initial-index":0,fit:"cover"},null,8,["src","preview-src-list"])])]),_:1}),e(t,{"label-width":"120px",label:"\u5F00\u6237\u8BB8\u53EF\u8BC1",prop:"contract_no",required:""},{default:u(()=>[p("div",Ae,[e(h,{src:y.value.business_licenseB,"preview-src-list":[y.value.business_licenseB],"initial-index":0,fit:"cover"},null,8,["src","preview-src-list"])])]),_:1}),((a=y.value.other_qualifications)==null?void 0:a.length)>0?(s(),f(t,{key:0,class:"other",label:"\u5176\u4ED6\u8D44\u8D28",prop:"contract_no",required:""},{default:u(()=>[(s(!0),B(I,null,T(y.value.other_qualifications,(R,g)=>(s(),B("div",{class:"company",key:g},[e(h,{src:R,"preview-src-list":y.value.other_qualifications,"initial-index":g,fit:"cover"},null,8,["src","preview-src-list","initial-index"])]))),128))]),_:1})):m("",!0)]}),_:1},8,["model","rules"])]),_:1}),U.value?(s(),f(E,{key:0},{header:u(()=>[we]),default:u(()=>[e(V,{inline:!0,ref:"formRef",model:d.value,"label-width":"91.5px",rules:o.formRules,class:"select"},{default:u(()=>[e(t,{label:"\u516C\u53F8\u540D\u79F0",prop:"company_name",required:""},{default:u(()=>[e(_,{disabled:"",modelValue:d.value.company_name,"onUpdate:modelValue":l[9]||(l[9]=a=>d.value.company_name=a),placeholder:"\u8BF7\u8F93\u5165\u516C\u53F8\u540D\u79F0"},null,8,["modelValue"])]),_:1}),e(t,{label:"\u793E\u4F1A\u4EE3\u7801",prop:"organization_code",required:""},{default:u(()=>[e(_,{disabled:"",modelValue:d.value.organization_code,"onUpdate:modelValue":l[10]||(l[10]=a=>d.value.organization_code=a),placeholder:"\u8BF7\u8F93\u5165\u793E\u4F1A\u4EE3\u7801"},null,8,["modelValue"])]),_:1}),e(t,{label:"\u516C\u53F8\u7C7B\u578B",prop:"company_type"},{default:u(()=>[e(c,{disabled:"",modelValue:d.value.company_type_name,"onUpdate:modelValue":l[11]||(l[11]=a=>d.value.company_type_name=a),placeholder:"\u8BF7\u8F93\u5165\u793E\u4F1A\u7C7B\u578B"},{default:u(()=>[e(w)]),_:1},8,["modelValue"])]),_:1}),e(t,{label:"\u4E3B\u8981\u8054\u7CFB\u4EBA",prop:"master_name",required:""},{default:u(()=>[e(_,{disabled:"",modelValue:d.value.master_name,"onUpdate:modelValue":l[12]||(l[12]=a=>d.value.master_name=a),placeholder:"\u8BF7\u8F93\u5165\u4E3B\u8981\u8054\u7CFB\u4EBA"},null,8,["modelValue"])]),_:1}),e(t,{label:"\u7701",prop:"province"},{default:u(()=>[e(c,{disabled:"",modelValue:d.value.province_name,"onUpdate:modelValue":l[13]||(l[13]=a=>d.value.province_name=a),placeholder:"\u8BF7\u9009\u62E9\u7701"},null,8,["modelValue"])]),_:1}),e(t,{label:"\u5E02",prop:"city"},{default:u(()=>[e(c,{disabled:"",modelValue:d.value.city_name,"onUpdate:modelValue":l[14]||(l[14]=a=>d.value.city_name=a),placeholder:"\u8BF7\u9009\u62E9\u5E02"},null,8,["modelValue"])]),_:1}),e(t,{label:"\u533A",prop:"area"},{default:u(()=>[e(c,{disabled:"",modelValue:d.value.area_name,"onUpdate:modelValue":l[15]||(l[15]=a=>d.value.area_name=a),placeholder:"\u8BF7\u9009\u62E9\u533A"},null,8,["modelValue"])]),_:1}),e(t,{label:"\u9547",prop:"street"},{default:u(()=>[e(c,{disabled:"",modelValue:d.value.street_name,"onUpdate:modelValue":l[16]||(l[16]=a=>d.value.street_name=a),placeholder:"\u8BF7\u9009\u62E9\u9547"},{default:u(()=>[e(w)]),_:1},8,["modelValue"])]),_:1}),e(t,{label:"\u5730\u5740",prop:"street"},{default:u(()=>[e(_,{disabled:"",modelValue:d.value.address,"onUpdate:modelValue":l[17]||(l[17]=a=>d.value.address=a),placeholder:"\u8BF7\u8F93\u5165\u516C\u53F8\u5730\u5740",style:{width:"31.5rem"}},null,8,["modelValue"])]),_:1})]),_:1},8,["model","rules"])]),_:1})):m("",!0),U.value?(s(),f(E,{key:1},{header:u(()=>[Ue]),default:u(()=>[e(V,{inline:!0,ref:"formRef",model:n,"label-width":"90px",rules:o.formRules,class:"company_z"},{default:u(()=>{var a;return[e(t,{label:"\u516C\u53F8\u8D44\u8D28",prop:"contract_type",required:""},{default:u(()=>[p("div",qe,[e(h,{src:F.value.business_license,"preview-src-list":[F.value.business_license],"initial-index":0,fit:"cover"},null,8,["src","preview-src-list"])])]),_:1}),e(t,{"label-width":"120px",label:"\u5F00\u6237\u8BB8\u53EF\u8BC1",prop:"contract_no",required:""},{default:u(()=>[p("div",xe,[e(h,{src:F.value.business_licenseB,"preview-src-list":[F.value.business_licenseB],"initial-index":0,fit:"cover"},null,8,["src","preview-src-list"])])]),_:1}),((a=F.value.other_qualifications)==null?void 0:a.length)>0?(s(),f(t,{key:0,class:"other",label:"\u5176\u4ED6\u8D44\u8D28",prop:"contract_no",required:""},{default:u(()=>[(s(!0),B(I,null,T(F.value.other_qualifications,(R,g)=>(s(),B("div",{class:"company",key:g},[e(h,{src:R,"preview-src-list":F.value.other_qualifications,"initial-index":g,fit:"cover"},null,8,["src","preview-src-list","initial-index"])]))),128))]),_:1})):m("",!0)]}),_:1},8,["model","rules"])]),_:1})):m("",!0),q.value?(s(),f(E,{key:2},{header:u(()=>[Re]),default:u(()=>[p("div",Se,[p("img",{src:i.value.avatar},null,8,Ie),e(V,{inline:!0,ref:"formRef",model:i.value,"label-width":"90px",rules:o.formRules,class:"person_select"},{default:u(()=>[e(t,{label:"\u59D3\u540D"},{default:u(()=>[e(_,{disabled:"",modelValue:i.value.nickname,"onUpdate:modelValue":l[18]||(l[18]=a=>i.value.nickname=a),placeholder:"\u8BF7\u8F93\u5165\u59D3\u540D"},null,8,["modelValue"])]),_:1}),e(t,{label:"\u6027\u522B"},{default:u(()=>[e(_,{disabled:"",modelValue:i.value.sex,"onUpdate:modelValue":l[19]||(l[19]=a=>i.value.sex=a),placeholder:"\u8BF7\u8F93\u5165\u6027\u522B"},null,8,["modelValue"])]),_:1}),e(t,{label:"\u8054\u7CFB\u7535\u8BDD"},{default:u(()=>[e(_,{disabled:"",modelValue:i.value.mobile,"onUpdate:modelValue":l[20]||(l[20]=a=>i.value.mobile=a),placeholder:"\u8BF7\u8F93\u5165\u8054\u7CFB\u7535\u8BDD"},null,8,["modelValue"])]),_:1}),e(t,{label:"\u8EAB\u4EFD\u8BC1\u53F7"},{default:u(()=>[e(_,{modelValue:i.value.id_card,"onUpdate:modelValue":l[21]||(l[21]=a=>i.value.id_card=a),placeholder:"\u8BF7\u8F93\u5165\u8EAB\u4EFD\u8BC1\u53F7",disabled:""},null,8,["modelValue"])]),_:1}),e(t,{label:"\u7701",prop:"province"},{default:u(()=>[e(c,{disabled:"",modelValue:i.value.province_name,"onUpdate:modelValue":l[22]||(l[22]=a=>i.value.province_name=a),placeholder:"\u8BF7\u9009\u62E9\u7701"},null,8,["modelValue"])]),_:1}),e(t,{label:"\u5E02",prop:"city"},{default:u(()=>[e(c,{disabled:"",modelValue:i.value.city_name,"onUpdate:modelValue":l[23]||(l[23]=a=>i.value.city_name=a),placeholder:"\u8BF7\u9009\u62E9\u5E02"},null,8,["modelValue"])]),_:1}),e(t,{label:"\u533A",prop:"area"},{default:u(()=>[e(c,{disabled:"",modelValue:i.value.area_name,"onUpdate:modelValue":l[24]||(l[24]=a=>i.value.area_name=a),placeholder:"\u8BF7\u9009\u62E9\u533A"},{default:u(()=>[e(w)]),_:1},8,["modelValue"])]),_:1}),e(t,{label:"\u9547",prop:"street"},{default:u(()=>[e(c,{disabled:"",modelValue:i.value.street_name,"onUpdate:modelValue":l[25]||(l[25]=a=>i.value.street_name=a),placeholder:"\u8BF7\u9009\u62E9\u9547"},{default:u(()=>[e(w)]),_:1},8,["modelValue"])]),_:1})]),_:1},8,["model","rules"])])]),_:1})):m("",!0),q.value?(s(),f(E,{key:3},{header:u(()=>[ze]),default:u(()=>[e(V,{class:"idcard",model:v.value,inline:!0},{default:u(()=>[e(t,{label:"\u8EAB\u4EFD\u8BC1"},{default:u(()=>[p("img",{src:v.value.id_card},null,8,Ne),p("img",{src:v.value.id_card_b},null,8,Me)]),_:1}),e(t,{label:"\u94F6\u884C\u5361"},{default:u(()=>[p("img",{src:v.value.bank_account},null,8,Te),p("img",{src:v.value.bank_account_b},null,8,Oe)]),_:1}),v.value.car_card||v.value.car_card_b?(s(),f(t,{key:0,label:"\u884C\u9A76\u8BC1"},{default:u(()=>[v.value.car_card?(s(),B("img",{key:0,src:v.value.car_card},null,8,je)):m("",!0),v.value.car_card_b?(s(),B("img",{key:1,src:v.value.car_card_b},null,8,Je)):m("",!0)]),_:1})):m("",!0)]),_:1},8,["model"])]),_:1})):m("",!0),e(E,null,{header:u(()=>[Ke]),default:u(()=>[e(V,{inline:!0,class:"frame",ref:"formRef",model:n,"label-width":"90px",rules:o.formRules},{default:u(()=>[e(t,{label:"\u7532\u65B9",prop:"contract_type"},{default:u(()=>[e(_,{modelValue:r.value.company_name,"onUpdate:modelValue":l[26]||(l[26]=a=>r.value.company_name=a),disabled:!0,placeholder:"\u6682\u65E0\u7532\u65B9\u65B9"},null,8,["modelValue"])]),_:1}),e(t,{label:"\u4E59\u65B9",prop:"contract_no"},{default:u(()=>[e(_,{modelValue:d.value.company_name,"onUpdate:modelValue":l[27]||(l[27]=a=>d.value.company_name=a),disabled:!0,placeholder:"\u6682\u65E0\u4E59\u65B9"},null,8,["modelValue"])]),_:1}),e(t,{label:"\u5408\u540C\u7C7B\u578B",prop:"contract_no"},{default:u(()=>[e(_,{modelValue:k.value.contract_type_name,"onUpdate:modelValue":l[28]||(l[28]=a=>k.value.contract_type_name=a),disabled:!0,placeholder:"\u6682\u65E0\u5408\u540C"},null,8,["modelValue"])]),_:1})]),_:1},8,["model","rules"])]),_:1}),e(E,null,{default:u(()=>[e(V,{"label-width":"100px"},{default:u(()=>[x.value||(n==null?void 0:n.status)==0?(s(),f(t,{key:0,label:"\u5408\u540C\u4E0A\u4F20",prop:"field127"},{default:u(()=>[(n==null?void 0:n.status)==0?O((s(),f(ee,{key:0,accept:".pdf",headers:{Token:j(G).token},class:"upload-demo",action:j(Q)+"/upload/file","on-success":X,"before-upload":P,limit:1,"on-exceed":W,ref_key:"upload",ref:A},{default:u(()=>[e(z,{type:"primary"},{default:u(()=>[J(Ee(n.file?"\u91CD\u65B0\u4E0A\u4F20":"\u4E0A\u4F20"),1)]),_:1})]),_:1},8,["headers","action"])),[[N,["contract.contract/wind_control"]]]):m("",!0),n.file?(s(),B("a",{key:1,style:{"margin-left":"10px",color:"#4a5dff","align-self":"flex-start"},href:n.file,target:"_blank"},"\u5408\u540C\u5DF2\u4E0A\u4F20,\u70B9\u51FB\u67E5\u770B",8,Le)):m("",!0)]),_:1})):m("",!0),x.value||n.status==0?(s(),f(t,{key:1},{default:u(()=>[O((s(),f(z,{type:"primary",onClick:Z},{default:u(()=>[J("\u786E\u5B9A")]),_:1})),[[N,["contract.contract/wind_control"]]])]),_:1})):n.file&&n.status?(s(),f(t,{key:2},{default:u(()=>[n.file?(s(),B("a",{key:0,style:{"margin-left":"10px",color:"#4a5dff"},href:n.signed_contract_url?n.signed_contract_url:n.file,target:"_blank"},"\u67E5\u770B\u5408\u540C",8,Qe)):m("",!0)]),_:1})):m("",!0)]),_:1})]),_:1})],64)}}});const wl=fe($e,[["__scopeId","data-v-7d71011d"]]);export{wl as default}; diff --git a/public/admin/assets/contractDetil.e8de5db7.js b/public/admin/assets/contractDetil.e8de5db7.js new file mode 100644 index 000000000..9210fd776 --- /dev/null +++ b/public/admin/assets/contractDetil.e8de5db7.js @@ -0,0 +1 @@ +import{J as le,k as S,K as ue,B as ae,C as oe,N as te,D as re,I as ne,b as de,M as se,w as ie}from"./element-plus.4328d892.js";import{u as M,a as pe}from"./vue-router.9f65afb1.js";import{a as me}from"./contract.e9a9dbc8.js";import{e as _e,a as ce,d as fe}from"./index.37f7aea6.js";import{b as ve}from"./consumer.e5ac2901.js";import{d as be,C as ye,$ as Fe,r as b,j as Be,af as Ve,o as s,c as B,U as e,L as u,K as f,Q as m,a as p,T as I,a7 as T,M as O,u as j,R as J,S as Ee,bf as Ce,be as he}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const C=D=>(Ce("data-v-7d71011d"),D=D(),he(),D),ge=C(()=>p("span",null,"\u7532\u65B9\u57FA\u672C\u4FE1\u606F",-1)),De=C(()=>p("span",null,"\u7532\u65B9\u8D44\u8D28\u4FE1\u606F",-1)),ke={class:"company"},Ae={class:"company"},we=C(()=>p("span",null,"\u4E59\u65B9\u57FA\u672C\u4FE1\u606F",-1)),Ue=C(()=>p("span",null,"\u4E59\u65B9\u8D44\u8D28\u4FE1\u606F",-1)),qe={class:"company"},xe={class:"company"},Re=C(()=>p("span",null,"\u4E2A\u4EBA\u57FA\u672C\u4FE1\u606F",-1)),Se={class:"persenal"},Ie=["src"],ze=C(()=>p("span",null,"\u4E2A\u4EBA\u8D44\u8D28\u4FE1\u606F",-1)),Ne=["src"],Me=["src"],Te=["src"],Oe=["src"],je=["src"],Je=["src"],Ke=C(()=>p("span",null,"\u7535\u5B50\u5408\u540C",-1)),Le=["href"],Qe=["href"],$e=be({__name:"contractDetil",setup(D){const{query:K}=M(),{removeTab:L}=_e(),Q=ye("base_url"),n=Fe({id:"",company_id:"",contract_type:"",contract_type_name:"",contract_no:"",file:"",status:"",check_status:"",party_a:"",party_a_name:"",party_b:"",party_b_name:"",area_manager:"",area_manager_name:"",type_name:"",url:"",status_name:"",signed_contract_url:""});b([]);const k=b({}),r=b({}),y=b([]),d=b([]),F=b([]),i=b([]),v=b([]),U=b(!0),q=b(!0),x=b(!0),$=M(),G=ce();async function H(){const o=await me({id:K.id});Object.keys(n).forEach(l=>{o[l]!=null&&o[l]!=null&&(n[l]=o[l])}),r.value=o.party_a_info,k.value=o,(k.value.status==1||o.check_status==3||o.status==1)&&(x.value=!1);try{o.party_a_info.qualification.bank_account=JSON.parse(o.party_a_info.qualification.bank_account),y.value=o.party_a_info.qualification,o.party_b_info.qualification.other_qualifications=JSON.parse(o.party_b_info.qualification.other_qualifications),F.value=o.party_b_info.qualification}catch{}y.value=o.party_a_info.qualification,o.type==2&&(U.value=!1,o.party_b_info.sex==1?o.party_b_info.sex="\u7537":o.party_b_info.sex="\u5973",i.value=o.party_b_info,v.value=o.party_b_info.qualification),o.type==1?(d.value=o.party_b_info,F.value=o.party_b_info.qualification,q.value=!1):d.value.company_name=o.party_b_info.nickname}const P=o=>{var l;return((l=o==null?void 0:o.name)==null?void 0:l.substring(o.name.length-4,o.name.length))!=".pdf"?(S.error("\u4EC5\u652F\u6301\u4E0A\u4F20.pdf\u6587\u4EF6"),!1):!0},A=b(null),W=o=>{A.value.clearFiles();const l=o[0];l.uid=ue(),A.value.handleStart(l),A.value.submit()},X=(o,l)=>{if(o.code==0){S.error(o.msg);return}n.file=o.data.uri},Y=pe(),Z=()=>{if(!n.file)return S.error("\u8BF7\u5148\u4E0A\u4F20\u5408\u540C!");ve({file:n.file,id:$.query.id}),L(),Y.back()};return Be(async()=>{await H()}),(o,l)=>{const _=ae,t=oe,c=te,V=re,E=ne,h=de,w=se,z=ie,ee=le,N=Ve("perms");return s(),B(I,null,[e(E,{class:"box-card"},{header:u(()=>[ge]),default:u(()=>[e(V,{inline:!0,ref:"formRef",model:r.value,"label-width":"91.5px",rules:o.formRules,class:"select"},{default:u(()=>[e(t,{label:"\u516C\u53F8\u540D\u79F0",prop:"company_name",required:""},{default:u(()=>[e(_,{disabled:"",modelValue:r.value.company_name,"onUpdate:modelValue":l[0]||(l[0]=a=>r.value.company_name=a),placeholder:"\u8BF7\u8F93\u5165\u516C\u53F8\u540D\u79F0"},null,8,["modelValue"])]),_:1}),e(t,{label:"\u793E\u4F1A\u4EE3\u7801",prop:"organization_code",required:""},{default:u(()=>[e(_,{disabled:"",modelValue:r.value.organization_code,"onUpdate:modelValue":l[1]||(l[1]=a=>r.value.organization_code=a),placeholder:"\u8BF7\u8F93\u5165\u793E\u4F1A\u4EE3\u7801"},null,8,["modelValue"])]),_:1}),e(t,{label:"\u4E3B\u8981\u8054\u7CFB\u4EBA",prop:"company_name",required:""},{default:u(()=>[e(_,{disabled:"",modelValue:r.value.master_name,"onUpdate:modelValue":l[2]||(l[2]=a=>r.value.master_name=a),placeholder:"\u8BF7\u8F93\u5165\u4E3B\u8981\u8054\u7CFB\u4EBA"},null,8,["modelValue"])]),_:1}),e(t,{label:"\u516C\u53F8\u7C7B\u578B",prop:"compeny"},{default:u(()=>[e(c,{disabled:"",modelValue:r.value.company_type_name,"onUpdate:modelValue":l[3]||(l[3]=a=>r.value.company_type_name=a),placeholder:"\u8BF7\u8F93\u5165\u516C\u53F8\u7C7B\u578B"},null,8,["modelValue"])]),_:1}),e(t,{label:"\u7701",prop:"province"},{default:u(()=>[e(c,{disabled:"",modelValue:r.value.province_name,"onUpdate:modelValue":l[4]||(l[4]=a=>r.value.province_name=a),placeholder:"\u8BF7\u9009\u62E9\u7701"},null,8,["modelValue"])]),_:1}),e(t,{label:"\u5E02",prop:"city"},{default:u(()=>[e(c,{disabled:"",modelValue:r.value.city_name,"onUpdate:modelValue":l[5]||(l[5]=a=>r.value.city_name=a),placeholder:"\u8BF7\u9009\u62E9\u5E02"},null,8,["modelValue"])]),_:1}),e(t,{label:"\u533A",prop:"area"},{default:u(()=>[e(c,{disabled:"",modelValue:r.value.area_name,"onUpdate:modelValue":l[6]||(l[6]=a=>r.value.area_name=a),placeholder:"\u8BF7\u9009\u62E9\u533A"},null,8,["modelValue"])]),_:1}),r.value.company_type!=30?(s(),f(t,{key:0,label:"\u9547",prop:"company_type_name"},{default:u(()=>[e(c,{disabled:"",modelValue:r.value.street_name,"onUpdate:modelValue":l[7]||(l[7]=a=>r.value.street_name=a),placeholder:"\u8BF7\u9009\u62E9\u9547"},null,8,["modelValue"])]),_:1})):m("",!0),r.value.company_type!=30?(s(),f(t,{key:1,label:"\u5730\u5740",prop:"address"},{default:u(()=>[e(_,{disabled:"",modelValue:r.value.address,"onUpdate:modelValue":l[8]||(l[8]=a=>r.value.address=a),placeholder:"\u8BF7\u8F93\u5165\u516C\u53F8\u5730\u5740",style:{width:"32rem"}},null,8,["modelValue"])]),_:1})):m("",!0)]),_:1},8,["model","rules"])]),_:1}),e(E,null,{header:u(()=>[De]),default:u(()=>[e(V,{inline:!0,ref:"formRef",model:r.value,"label-width":"90px",rules:o.formRules,class:"company_z"},{default:u(()=>{var a;return[e(t,{label:"\u516C\u53F8\u8D44\u8D28",prop:"contract_type",required:""},{default:u(()=>[p("div",ke,[e(h,{src:y.value.business_license,"preview-src-list":[y.value.business_license],"initial-index":0,fit:"cover"},null,8,["src","preview-src-list"])])]),_:1}),e(t,{"label-width":"120px",label:"\u5F00\u6237\u8BB8\u53EF\u8BC1",prop:"contract_no",required:""},{default:u(()=>[p("div",Ae,[e(h,{src:y.value.business_licenseB,"preview-src-list":[y.value.business_licenseB],"initial-index":0,fit:"cover"},null,8,["src","preview-src-list"])])]),_:1}),((a=y.value.other_qualifications)==null?void 0:a.length)>0?(s(),f(t,{key:0,class:"other",label:"\u5176\u4ED6\u8D44\u8D28",prop:"contract_no",required:""},{default:u(()=>[(s(!0),B(I,null,T(y.value.other_qualifications,(R,g)=>(s(),B("div",{class:"company",key:g},[e(h,{src:R,"preview-src-list":y.value.other_qualifications,"initial-index":g,fit:"cover"},null,8,["src","preview-src-list","initial-index"])]))),128))]),_:1})):m("",!0)]}),_:1},8,["model","rules"])]),_:1}),U.value?(s(),f(E,{key:0},{header:u(()=>[we]),default:u(()=>[e(V,{inline:!0,ref:"formRef",model:d.value,"label-width":"91.5px",rules:o.formRules,class:"select"},{default:u(()=>[e(t,{label:"\u516C\u53F8\u540D\u79F0",prop:"company_name",required:""},{default:u(()=>[e(_,{disabled:"",modelValue:d.value.company_name,"onUpdate:modelValue":l[9]||(l[9]=a=>d.value.company_name=a),placeholder:"\u8BF7\u8F93\u5165\u516C\u53F8\u540D\u79F0"},null,8,["modelValue"])]),_:1}),e(t,{label:"\u793E\u4F1A\u4EE3\u7801",prop:"organization_code",required:""},{default:u(()=>[e(_,{disabled:"",modelValue:d.value.organization_code,"onUpdate:modelValue":l[10]||(l[10]=a=>d.value.organization_code=a),placeholder:"\u8BF7\u8F93\u5165\u793E\u4F1A\u4EE3\u7801"},null,8,["modelValue"])]),_:1}),e(t,{label:"\u516C\u53F8\u7C7B\u578B",prop:"company_type"},{default:u(()=>[e(c,{disabled:"",modelValue:d.value.company_type_name,"onUpdate:modelValue":l[11]||(l[11]=a=>d.value.company_type_name=a),placeholder:"\u8BF7\u8F93\u5165\u793E\u4F1A\u7C7B\u578B"},{default:u(()=>[e(w)]),_:1},8,["modelValue"])]),_:1}),e(t,{label:"\u4E3B\u8981\u8054\u7CFB\u4EBA",prop:"master_name",required:""},{default:u(()=>[e(_,{disabled:"",modelValue:d.value.master_name,"onUpdate:modelValue":l[12]||(l[12]=a=>d.value.master_name=a),placeholder:"\u8BF7\u8F93\u5165\u4E3B\u8981\u8054\u7CFB\u4EBA"},null,8,["modelValue"])]),_:1}),e(t,{label:"\u7701",prop:"province"},{default:u(()=>[e(c,{disabled:"",modelValue:d.value.province_name,"onUpdate:modelValue":l[13]||(l[13]=a=>d.value.province_name=a),placeholder:"\u8BF7\u9009\u62E9\u7701"},null,8,["modelValue"])]),_:1}),e(t,{label:"\u5E02",prop:"city"},{default:u(()=>[e(c,{disabled:"",modelValue:d.value.city_name,"onUpdate:modelValue":l[14]||(l[14]=a=>d.value.city_name=a),placeholder:"\u8BF7\u9009\u62E9\u5E02"},null,8,["modelValue"])]),_:1}),e(t,{label:"\u533A",prop:"area"},{default:u(()=>[e(c,{disabled:"",modelValue:d.value.area_name,"onUpdate:modelValue":l[15]||(l[15]=a=>d.value.area_name=a),placeholder:"\u8BF7\u9009\u62E9\u533A"},null,8,["modelValue"])]),_:1}),e(t,{label:"\u9547",prop:"street"},{default:u(()=>[e(c,{disabled:"",modelValue:d.value.street_name,"onUpdate:modelValue":l[16]||(l[16]=a=>d.value.street_name=a),placeholder:"\u8BF7\u9009\u62E9\u9547"},{default:u(()=>[e(w)]),_:1},8,["modelValue"])]),_:1}),e(t,{label:"\u5730\u5740",prop:"street"},{default:u(()=>[e(_,{disabled:"",modelValue:d.value.address,"onUpdate:modelValue":l[17]||(l[17]=a=>d.value.address=a),placeholder:"\u8BF7\u8F93\u5165\u516C\u53F8\u5730\u5740",style:{width:"31.5rem"}},null,8,["modelValue"])]),_:1})]),_:1},8,["model","rules"])]),_:1})):m("",!0),U.value?(s(),f(E,{key:1},{header:u(()=>[Ue]),default:u(()=>[e(V,{inline:!0,ref:"formRef",model:n,"label-width":"90px",rules:o.formRules,class:"company_z"},{default:u(()=>{var a;return[e(t,{label:"\u516C\u53F8\u8D44\u8D28",prop:"contract_type",required:""},{default:u(()=>[p("div",qe,[e(h,{src:F.value.business_license,"preview-src-list":[F.value.business_license],"initial-index":0,fit:"cover"},null,8,["src","preview-src-list"])])]),_:1}),e(t,{"label-width":"120px",label:"\u5F00\u6237\u8BB8\u53EF\u8BC1",prop:"contract_no",required:""},{default:u(()=>[p("div",xe,[e(h,{src:F.value.business_licenseB,"preview-src-list":[F.value.business_licenseB],"initial-index":0,fit:"cover"},null,8,["src","preview-src-list"])])]),_:1}),((a=F.value.other_qualifications)==null?void 0:a.length)>0?(s(),f(t,{key:0,class:"other",label:"\u5176\u4ED6\u8D44\u8D28",prop:"contract_no",required:""},{default:u(()=>[(s(!0),B(I,null,T(F.value.other_qualifications,(R,g)=>(s(),B("div",{class:"company",key:g},[e(h,{src:R,"preview-src-list":F.value.other_qualifications,"initial-index":g,fit:"cover"},null,8,["src","preview-src-list","initial-index"])]))),128))]),_:1})):m("",!0)]}),_:1},8,["model","rules"])]),_:1})):m("",!0),q.value?(s(),f(E,{key:2},{header:u(()=>[Re]),default:u(()=>[p("div",Se,[p("img",{src:i.value.avatar},null,8,Ie),e(V,{inline:!0,ref:"formRef",model:i.value,"label-width":"90px",rules:o.formRules,class:"person_select"},{default:u(()=>[e(t,{label:"\u59D3\u540D"},{default:u(()=>[e(_,{disabled:"",modelValue:i.value.nickname,"onUpdate:modelValue":l[18]||(l[18]=a=>i.value.nickname=a),placeholder:"\u8BF7\u8F93\u5165\u59D3\u540D"},null,8,["modelValue"])]),_:1}),e(t,{label:"\u6027\u522B"},{default:u(()=>[e(_,{disabled:"",modelValue:i.value.sex,"onUpdate:modelValue":l[19]||(l[19]=a=>i.value.sex=a),placeholder:"\u8BF7\u8F93\u5165\u6027\u522B"},null,8,["modelValue"])]),_:1}),e(t,{label:"\u8054\u7CFB\u7535\u8BDD"},{default:u(()=>[e(_,{disabled:"",modelValue:i.value.mobile,"onUpdate:modelValue":l[20]||(l[20]=a=>i.value.mobile=a),placeholder:"\u8BF7\u8F93\u5165\u8054\u7CFB\u7535\u8BDD"},null,8,["modelValue"])]),_:1}),e(t,{label:"\u8EAB\u4EFD\u8BC1\u53F7"},{default:u(()=>[e(_,{modelValue:i.value.id_card,"onUpdate:modelValue":l[21]||(l[21]=a=>i.value.id_card=a),placeholder:"\u8BF7\u8F93\u5165\u8EAB\u4EFD\u8BC1\u53F7",disabled:""},null,8,["modelValue"])]),_:1}),e(t,{label:"\u7701",prop:"province"},{default:u(()=>[e(c,{disabled:"",modelValue:i.value.province_name,"onUpdate:modelValue":l[22]||(l[22]=a=>i.value.province_name=a),placeholder:"\u8BF7\u9009\u62E9\u7701"},null,8,["modelValue"])]),_:1}),e(t,{label:"\u5E02",prop:"city"},{default:u(()=>[e(c,{disabled:"",modelValue:i.value.city_name,"onUpdate:modelValue":l[23]||(l[23]=a=>i.value.city_name=a),placeholder:"\u8BF7\u9009\u62E9\u5E02"},null,8,["modelValue"])]),_:1}),e(t,{label:"\u533A",prop:"area"},{default:u(()=>[e(c,{disabled:"",modelValue:i.value.area_name,"onUpdate:modelValue":l[24]||(l[24]=a=>i.value.area_name=a),placeholder:"\u8BF7\u9009\u62E9\u533A"},{default:u(()=>[e(w)]),_:1},8,["modelValue"])]),_:1}),e(t,{label:"\u9547",prop:"street"},{default:u(()=>[e(c,{disabled:"",modelValue:i.value.street_name,"onUpdate:modelValue":l[25]||(l[25]=a=>i.value.street_name=a),placeholder:"\u8BF7\u9009\u62E9\u9547"},{default:u(()=>[e(w)]),_:1},8,["modelValue"])]),_:1})]),_:1},8,["model","rules"])])]),_:1})):m("",!0),q.value?(s(),f(E,{key:3},{header:u(()=>[ze]),default:u(()=>[e(V,{class:"idcard",model:v.value,inline:!0},{default:u(()=>[e(t,{label:"\u8EAB\u4EFD\u8BC1"},{default:u(()=>[p("img",{src:v.value.id_card},null,8,Ne),p("img",{src:v.value.id_card_b},null,8,Me)]),_:1}),e(t,{label:"\u94F6\u884C\u5361"},{default:u(()=>[p("img",{src:v.value.bank_account},null,8,Te),p("img",{src:v.value.bank_account_b},null,8,Oe)]),_:1}),v.value.car_card||v.value.car_card_b?(s(),f(t,{key:0,label:"\u884C\u9A76\u8BC1"},{default:u(()=>[v.value.car_card?(s(),B("img",{key:0,src:v.value.car_card},null,8,je)):m("",!0),v.value.car_card_b?(s(),B("img",{key:1,src:v.value.car_card_b},null,8,Je)):m("",!0)]),_:1})):m("",!0)]),_:1},8,["model"])]),_:1})):m("",!0),e(E,null,{header:u(()=>[Ke]),default:u(()=>[e(V,{inline:!0,class:"frame",ref:"formRef",model:n,"label-width":"90px",rules:o.formRules},{default:u(()=>[e(t,{label:"\u7532\u65B9",prop:"contract_type"},{default:u(()=>[e(_,{modelValue:r.value.company_name,"onUpdate:modelValue":l[26]||(l[26]=a=>r.value.company_name=a),disabled:!0,placeholder:"\u6682\u65E0\u7532\u65B9\u65B9"},null,8,["modelValue"])]),_:1}),e(t,{label:"\u4E59\u65B9",prop:"contract_no"},{default:u(()=>[e(_,{modelValue:d.value.company_name,"onUpdate:modelValue":l[27]||(l[27]=a=>d.value.company_name=a),disabled:!0,placeholder:"\u6682\u65E0\u4E59\u65B9"},null,8,["modelValue"])]),_:1}),e(t,{label:"\u5408\u540C\u7C7B\u578B",prop:"contract_no"},{default:u(()=>[e(_,{modelValue:k.value.contract_type_name,"onUpdate:modelValue":l[28]||(l[28]=a=>k.value.contract_type_name=a),disabled:!0,placeholder:"\u6682\u65E0\u5408\u540C"},null,8,["modelValue"])]),_:1})]),_:1},8,["model","rules"])]),_:1}),e(E,null,{default:u(()=>[e(V,{"label-width":"100px"},{default:u(()=>[x.value||(n==null?void 0:n.status)==0?(s(),f(t,{key:0,label:"\u5408\u540C\u4E0A\u4F20",prop:"field127"},{default:u(()=>[(n==null?void 0:n.status)==0?O((s(),f(ee,{key:0,accept:".pdf",headers:{Token:j(G).token},class:"upload-demo",action:j(Q)+"/upload/file","on-success":X,"before-upload":P,limit:1,"on-exceed":W,ref_key:"upload",ref:A},{default:u(()=>[e(z,{type:"primary"},{default:u(()=>[J(Ee(n.file?"\u91CD\u65B0\u4E0A\u4F20":"\u4E0A\u4F20"),1)]),_:1})]),_:1},8,["headers","action"])),[[N,["contract.contract/wind_control"]]]):m("",!0),n.file?(s(),B("a",{key:1,style:{"margin-left":"10px",color:"#4a5dff","align-self":"flex-start"},href:n.file,target:"_blank"},"\u5408\u540C\u5DF2\u4E0A\u4F20,\u70B9\u51FB\u67E5\u770B",8,Le)):m("",!0)]),_:1})):m("",!0),x.value||n.status==0?(s(),f(t,{key:1},{default:u(()=>[O((s(),f(z,{type:"primary",onClick:Z},{default:u(()=>[J("\u786E\u5B9A")]),_:1})),[[N,["contract.contract/wind_control"]]])]),_:1})):n.file&&n.status?(s(),f(t,{key:2},{default:u(()=>[n.file?(s(),B("a",{key:0,style:{"margin-left":"10px",color:"#4a5dff"},href:n.signed_contract_url?n.signed_contract_url:n.file,target:"_blank"},"\u67E5\u770B\u5408\u540C",8,Qe)):m("",!0)]),_:1})):m("",!0)]),_:1})]),_:1})],64)}}});const wl=fe($e,[["__scopeId","data-v-7d71011d"]]);export{wl as default}; diff --git a/public/admin/assets/data-table.3420eeb8.js b/public/admin/assets/data-table.3420eeb8.js new file mode 100644 index 000000000..3ab19c0af --- /dev/null +++ b/public/admin/assets/data-table.3420eeb8.js @@ -0,0 +1 @@ +import"./data-table.vue_vue_type_script_setup_true_lang.60c026c1.js";import{_ as Q}from"./data-table.vue_vue_type_script_setup_true_lang.60c026c1.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.fa872673.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.aa9bb752.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./usePaging.2ad8e1e6.js";import"./code.1f2ae5c5.js";export{Q as default}; diff --git a/public/admin/assets/data-table.760b71c0.js b/public/admin/assets/data-table.760b71c0.js new file mode 100644 index 000000000..c8fd8aa6e --- /dev/null +++ b/public/admin/assets/data-table.760b71c0.js @@ -0,0 +1 @@ +import"./data-table.vue_vue_type_script_setup_true_lang.1dc8d879.js";import{_ as Q}from"./data-table.vue_vue_type_script_setup_true_lang.1dc8d879.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.b940d6e3.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.ed71ac09.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./usePaging.2ad8e1e6.js";import"./code.7deeaac3.js";export{Q as default}; diff --git a/public/admin/assets/data-table.f9084214.js b/public/admin/assets/data-table.f9084214.js new file mode 100644 index 000000000..7aef5e7ce --- /dev/null +++ b/public/admin/assets/data-table.f9084214.js @@ -0,0 +1 @@ +import"./data-table.vue_vue_type_script_setup_true_lang.a71b4b2a.js";import{_ as Q}from"./data-table.vue_vue_type_script_setup_true_lang.a71b4b2a.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.5759a1a6.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.37f7aea6.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./usePaging.2ad8e1e6.js";import"./code.2b4ea8b1.js";export{Q as default}; diff --git a/public/admin/assets/data-table.vue_vue_type_script_setup_true_lang.1dc8d879.js b/public/admin/assets/data-table.vue_vue_type_script_setup_true_lang.1dc8d879.js new file mode 100644 index 000000000..11a4d166d --- /dev/null +++ b/public/admin/assets/data-table.vue_vue_type_script_setup_true_lang.1dc8d879.js @@ -0,0 +1 @@ +import{B,C as x,w as D,D as P,O as K,P as R,Q as T}from"./element-plus.4328d892.js";import{d as U,s as L,$ as N,r as S,w as $,o as b,c as h,U as e,L as l,H as z,u as a,a8 as g,R as C,M as I,a as M,k as j}from"./@vue.51d7f2d8.js";import{P as A}from"./index.b940d6e3.js";import{_ as H}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{u as O}from"./usePaging.2ad8e1e6.js";import{f as Q,h as q}from"./code.7deeaac3.js";import{f as G}from"./index.ed71ac09.js";const J={class:"data-table"},W={class:"m-4"},X={class:"flex justify-end mt-4"},ne=U({__name:"data-table",emits:["success"],setup(Y,{emit:F}){const r=L(),s=N({name:"",comment:""}),{pager:n,getLists:_,resetParams:w,resetPage:c}=O({fetchFun:q,params:s,size:10}),d=S([]),E=t=>{d.value=t.map(({name:o,comment:m})=>({name:o,comment:m}))},v=async()=>{var t;if(!d.value.length)return G.msgError("\u8BF7\u9009\u62E9\u6570\u636E\u8868");await Q({table:d.value}),(t=r.value)==null||t.close(),F("success")};return $(()=>{var t;return(t=r.value)==null?void 0:t.visible},t=>{t&&_()}),(t,o)=>{const m=B,p=x,f=D,y=P,i=K,V=R,k=T;return b(),h("div",J,[e(A,{ref_key:"popupRef",ref:r,clickModalClose:!1,title:"\u9009\u62E9\u8868",width:"900px",async:!0,onConfirm:v},{trigger:l(()=>[z(t.$slots,"default")]),default:l(()=>[e(y,{class:"ls-form",model:a(s),inline:""},{default:l(()=>[e(p,{label:"\u8868\u540D\u79F0"},{default:l(()=>[e(m,{class:"w-[280px]",modelValue:a(s).name,"onUpdate:modelValue":o[0]||(o[0]=u=>a(s).name=u),clearable:"",onKeyup:g(a(c),["enter"])},null,8,["modelValue","onKeyup"])]),_:1}),e(p,{label:"\u8868\u63CF\u8FF0"},{default:l(()=>[e(m,{class:"w-[280px]",modelValue:a(s).comment,"onUpdate:modelValue":o[1]||(o[1]=u=>a(s).comment=u),clearable:"",onKeyup:g(a(c),["enter"])},null,8,["modelValue","onKeyup"])]),_:1}),e(p,null,{default:l(()=>[e(f,{type:"primary",onClick:a(c)},{default:l(()=>[C("\u67E5\u8BE2")]),_:1},8,["onClick"]),e(f,{onClick:a(w)},{default:l(()=>[C("\u91CD\u7F6E")]),_:1},8,["onClick"])]),_:1})]),_:1},8,["model"]),I((b(),h("div",W,[e(V,{height:"400",size:"large",data:a(n).lists,onSelectionChange:E},{default:l(()=>[e(i,{type:"selection",width:"55"}),e(i,{label:"\u8868\u540D\u79F0",prop:"name","min-width":"150"}),e(i,{label:"\u8868\u63CF\u8FF0",prop:"comment","min-width":"160"}),e(i,{label:"\u521B\u5EFA\u65F6\u95F4",prop:"create_time","min-width":"180"})]),_:1},8,["data"])])),[[k,a(n).loading]]),M("div",X,[e(H,{modelValue:a(n),"onUpdate:modelValue":o[2]||(o[2]=u=>j(n)?n.value=u:null),onChange:a(_)},null,8,["modelValue","onChange"])])]),_:3},512)])}}});export{ne as _}; diff --git a/public/admin/assets/data-table.vue_vue_type_script_setup_true_lang.60c026c1.js b/public/admin/assets/data-table.vue_vue_type_script_setup_true_lang.60c026c1.js new file mode 100644 index 000000000..12a1a777b --- /dev/null +++ b/public/admin/assets/data-table.vue_vue_type_script_setup_true_lang.60c026c1.js @@ -0,0 +1 @@ +import{B,C as x,w as D,D as P,O as K,P as R,Q as T}from"./element-plus.4328d892.js";import{d as U,s as L,$ as N,r as S,w as $,o as b,c as h,U as e,L as l,H as z,u as a,a8 as g,R as C,M as I,a as M,k as j}from"./@vue.51d7f2d8.js";import{P as A}from"./index.fa872673.js";import{_ as H}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{u as O}from"./usePaging.2ad8e1e6.js";import{f as Q,h as q}from"./code.1f2ae5c5.js";import{f as G}from"./index.aa9bb752.js";const J={class:"data-table"},W={class:"m-4"},X={class:"flex justify-end mt-4"},ne=U({__name:"data-table",emits:["success"],setup(Y,{emit:F}){const r=L(),s=N({name:"",comment:""}),{pager:n,getLists:_,resetParams:w,resetPage:c}=O({fetchFun:q,params:s,size:10}),d=S([]),E=t=>{d.value=t.map(({name:o,comment:m})=>({name:o,comment:m}))},v=async()=>{var t;if(!d.value.length)return G.msgError("\u8BF7\u9009\u62E9\u6570\u636E\u8868");await Q({table:d.value}),(t=r.value)==null||t.close(),F("success")};return $(()=>{var t;return(t=r.value)==null?void 0:t.visible},t=>{t&&_()}),(t,o)=>{const m=B,p=x,f=D,y=P,i=K,V=R,k=T;return b(),h("div",J,[e(A,{ref_key:"popupRef",ref:r,clickModalClose:!1,title:"\u9009\u62E9\u8868",width:"900px",async:!0,onConfirm:v},{trigger:l(()=>[z(t.$slots,"default")]),default:l(()=>[e(y,{class:"ls-form",model:a(s),inline:""},{default:l(()=>[e(p,{label:"\u8868\u540D\u79F0"},{default:l(()=>[e(m,{class:"w-[280px]",modelValue:a(s).name,"onUpdate:modelValue":o[0]||(o[0]=u=>a(s).name=u),clearable:"",onKeyup:g(a(c),["enter"])},null,8,["modelValue","onKeyup"])]),_:1}),e(p,{label:"\u8868\u63CF\u8FF0"},{default:l(()=>[e(m,{class:"w-[280px]",modelValue:a(s).comment,"onUpdate:modelValue":o[1]||(o[1]=u=>a(s).comment=u),clearable:"",onKeyup:g(a(c),["enter"])},null,8,["modelValue","onKeyup"])]),_:1}),e(p,null,{default:l(()=>[e(f,{type:"primary",onClick:a(c)},{default:l(()=>[C("\u67E5\u8BE2")]),_:1},8,["onClick"]),e(f,{onClick:a(w)},{default:l(()=>[C("\u91CD\u7F6E")]),_:1},8,["onClick"])]),_:1})]),_:1},8,["model"]),I((b(),h("div",W,[e(V,{height:"400",size:"large",data:a(n).lists,onSelectionChange:E},{default:l(()=>[e(i,{type:"selection",width:"55"}),e(i,{label:"\u8868\u540D\u79F0",prop:"name","min-width":"150"}),e(i,{label:"\u8868\u63CF\u8FF0",prop:"comment","min-width":"160"}),e(i,{label:"\u521B\u5EFA\u65F6\u95F4",prop:"create_time","min-width":"180"})]),_:1},8,["data"])])),[[k,a(n).loading]]),M("div",X,[e(H,{modelValue:a(n),"onUpdate:modelValue":o[2]||(o[2]=u=>j(n)?n.value=u:null),onChange:a(_)},null,8,["modelValue","onChange"])])]),_:3},512)])}}});export{ne as _}; diff --git a/public/admin/assets/data-table.vue_vue_type_script_setup_true_lang.a71b4b2a.js b/public/admin/assets/data-table.vue_vue_type_script_setup_true_lang.a71b4b2a.js new file mode 100644 index 000000000..5dcec0c20 --- /dev/null +++ b/public/admin/assets/data-table.vue_vue_type_script_setup_true_lang.a71b4b2a.js @@ -0,0 +1 @@ +import{B,C as x,w as D,D as P,O as K,P as R,Q as T}from"./element-plus.4328d892.js";import{d as U,s as L,$ as N,r as S,w as $,o as b,c as h,U as e,L as l,H as z,u as a,a8 as g,R as C,M as I,a as M,k as j}from"./@vue.51d7f2d8.js";import{P as A}from"./index.5759a1a6.js";import{_ as H}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{u as O}from"./usePaging.2ad8e1e6.js";import{f as Q,h as q}from"./code.2b4ea8b1.js";import{f as G}from"./index.37f7aea6.js";const J={class:"data-table"},W={class:"m-4"},X={class:"flex justify-end mt-4"},ne=U({__name:"data-table",emits:["success"],setup(Y,{emit:F}){const r=L(),s=N({name:"",comment:""}),{pager:n,getLists:_,resetParams:w,resetPage:c}=O({fetchFun:q,params:s,size:10}),d=S([]),E=t=>{d.value=t.map(({name:o,comment:m})=>({name:o,comment:m}))},v=async()=>{var t;if(!d.value.length)return G.msgError("\u8BF7\u9009\u62E9\u6570\u636E\u8868");await Q({table:d.value}),(t=r.value)==null||t.close(),F("success")};return $(()=>{var t;return(t=r.value)==null?void 0:t.visible},t=>{t&&_()}),(t,o)=>{const m=B,p=x,f=D,y=P,i=K,V=R,k=T;return b(),h("div",J,[e(A,{ref_key:"popupRef",ref:r,clickModalClose:!1,title:"\u9009\u62E9\u8868",width:"900px",async:!0,onConfirm:v},{trigger:l(()=>[z(t.$slots,"default")]),default:l(()=>[e(y,{class:"ls-form",model:a(s),inline:""},{default:l(()=>[e(p,{label:"\u8868\u540D\u79F0"},{default:l(()=>[e(m,{class:"w-[280px]",modelValue:a(s).name,"onUpdate:modelValue":o[0]||(o[0]=u=>a(s).name=u),clearable:"",onKeyup:g(a(c),["enter"])},null,8,["modelValue","onKeyup"])]),_:1}),e(p,{label:"\u8868\u63CF\u8FF0"},{default:l(()=>[e(m,{class:"w-[280px]",modelValue:a(s).comment,"onUpdate:modelValue":o[1]||(o[1]=u=>a(s).comment=u),clearable:"",onKeyup:g(a(c),["enter"])},null,8,["modelValue","onKeyup"])]),_:1}),e(p,null,{default:l(()=>[e(f,{type:"primary",onClick:a(c)},{default:l(()=>[C("\u67E5\u8BE2")]),_:1},8,["onClick"]),e(f,{onClick:a(w)},{default:l(()=>[C("\u91CD\u7F6E")]),_:1},8,["onClick"])]),_:1})]),_:1},8,["model"]),I((b(),h("div",W,[e(V,{height:"400",size:"large",data:a(n).lists,onSelectionChange:E},{default:l(()=>[e(i,{type:"selection",width:"55"}),e(i,{label:"\u8868\u540D\u79F0",prop:"name","min-width":"150"}),e(i,{label:"\u8868\u63CF\u8FF0",prop:"comment","min-width":"160"}),e(i,{label:"\u521B\u5EFA\u65F6\u95F4",prop:"create_time","min-width":"180"})]),_:1},8,["data"])])),[[k,a(n).loading]]),M("div",X,[e(H,{modelValue:a(n),"onUpdate:modelValue":o[2]||(o[2]=u=>j(n)?n.value=u:null),onChange:a(_)},null,8,["modelValue","onChange"])])]),_:3},512)])}}});export{ne as _}; diff --git a/public/admin/assets/decoration-img.3e95b47f.js b/public/admin/assets/decoration-img.3e95b47f.js new file mode 100644 index 000000000..e4adf5b32 --- /dev/null +++ b/public/admin/assets/decoration-img.3e95b47f.js @@ -0,0 +1 @@ +import{i as d,b as n}from"./element-plus.4328d892.js";import{u as _,h as e,b as u,d as l}from"./index.aa9bb752.js";import{d as g,e as h,o as f,K as b,L as r,a as i,U as I,I as y,u as v,bf as S,be as w}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const N=t=>(S("data-v-8b12a43d"),t=t(),w(),t),x=N(()=>i("div",{class:"image-slot"},null,-1)),B={class:"image-slot"},P=g({__name:"decoration-img",props:{width:{type:[String,Number],default:"auto"},height:{type:[String,Number],default:"auto"},radius:{type:[String,Number],default:0},...d},setup(t){const o=t,{getImageUrl:p}=_(),s=h(()=>({width:e(o.width),height:e(o.height),borderRadius:e(o.radius)}));return(a,U)=>{const m=u,c=n;return f(),b(c,y({style:s.value},o,{src:v(p)(a.src)}),{placeholder:r(()=>[x]),error:r(()=>[i("div",B,[I(m,{name:"el-icon-Picture",size:30})])]),_:1},16,["style","src"])}}});const ct=l(P,[["__scopeId","data-v-8b12a43d"]]);export{ct as default}; diff --git a/public/admin/assets/decoration-img.82b482b3.js b/public/admin/assets/decoration-img.82b482b3.js new file mode 100644 index 000000000..47aa5ae65 --- /dev/null +++ b/public/admin/assets/decoration-img.82b482b3.js @@ -0,0 +1 @@ +import{i as d,b as n}from"./element-plus.4328d892.js";import{u as _,h as e,b as u,d as l}from"./index.ed71ac09.js";import{d as g,e as h,o as f,K as b,L as r,a as i,U as I,I as y,u as v,bf as S,be as w}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const N=t=>(S("data-v-8b12a43d"),t=t(),w(),t),x=N(()=>i("div",{class:"image-slot"},null,-1)),B={class:"image-slot"},P=g({__name:"decoration-img",props:{width:{type:[String,Number],default:"auto"},height:{type:[String,Number],default:"auto"},radius:{type:[String,Number],default:0},...d},setup(t){const o=t,{getImageUrl:p}=_(),s=h(()=>({width:e(o.width),height:e(o.height),borderRadius:e(o.radius)}));return(a,U)=>{const m=u,c=n;return f(),b(c,y({style:s.value},o,{src:v(p)(a.src)}),{placeholder:r(()=>[x]),error:r(()=>[i("div",B,[I(m,{name:"el-icon-Picture",size:30})])]),_:1},16,["style","src"])}}});const ct=l(P,[["__scopeId","data-v-8b12a43d"]]);export{ct as default}; diff --git a/public/admin/assets/decoration-img.d7e5dbec.js b/public/admin/assets/decoration-img.d7e5dbec.js new file mode 100644 index 000000000..78f75d764 --- /dev/null +++ b/public/admin/assets/decoration-img.d7e5dbec.js @@ -0,0 +1 @@ +import{i as d,b as n}from"./element-plus.4328d892.js";import{u as _,h as e,b as u,d as l}from"./index.37f7aea6.js";import{d as g,e as h,o as f,K as b,L as r,a as i,U as I,I as y,u as v,bf as S,be as w}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const N=t=>(S("data-v-8b12a43d"),t=t(),w(),t),x=N(()=>i("div",{class:"image-slot"},null,-1)),B={class:"image-slot"},P=g({__name:"decoration-img",props:{width:{type:[String,Number],default:"auto"},height:{type:[String,Number],default:"auto"},radius:{type:[String,Number],default:0},...d},setup(t){const o=t,{getImageUrl:p}=_(),s=h(()=>({width:e(o.width),height:e(o.height),borderRadius:e(o.radius)}));return(a,U)=>{const m=u,c=n;return f(),b(c,y({style:s.value},o,{src:v(p)(a.src)}),{placeholder:r(()=>[x]),error:r(()=>[i("div",B,[I(m,{name:"el-icon-Picture",size:30})])]),_:1},16,["style","src"])}}});const ct=l(P,[["__scopeId","data-v-8b12a43d"]]);export{ct as default}; diff --git a/public/admin/assets/decoration.4be01ffa.js b/public/admin/assets/decoration.4be01ffa.js new file mode 100644 index 000000000..b1331f961 --- /dev/null +++ b/public/admin/assets/decoration.4be01ffa.js @@ -0,0 +1 @@ +import{r as t}from"./index.aa9bb752.js";function a(e){return t.get({url:"/decorate.page/detail",params:e},{ignoreCancelToken:!0})}function o(e){return t.post({url:"/decorate.page/save",params:e})}function c(e){return t.get({url:"/decorate.data/article",params:e})}function n(e){return t.get({url:"/decorate.tabbar/detail",params:e})}function u(e){return t.post({url:"/decorate.tabbar/save",params:e})}export{a,n as b,u as c,c as g,o as s}; diff --git a/public/admin/assets/decoration.6a408574.js b/public/admin/assets/decoration.6a408574.js new file mode 100644 index 000000000..3fe40b61d --- /dev/null +++ b/public/admin/assets/decoration.6a408574.js @@ -0,0 +1 @@ +import{r as t}from"./index.ed71ac09.js";function a(e){return t.get({url:"/decorate.page/detail",params:e},{ignoreCancelToken:!0})}function o(e){return t.post({url:"/decorate.page/save",params:e})}function c(e){return t.get({url:"/decorate.data/article",params:e})}function n(e){return t.get({url:"/decorate.tabbar/detail",params:e})}function u(e){return t.post({url:"/decorate.tabbar/save",params:e})}export{a,n as b,u as c,c as g,o as s}; diff --git a/public/admin/assets/decoration.6f039a71.js b/public/admin/assets/decoration.6f039a71.js new file mode 100644 index 000000000..2dad9c513 --- /dev/null +++ b/public/admin/assets/decoration.6f039a71.js @@ -0,0 +1 @@ +import{r as t}from"./index.37f7aea6.js";function a(e){return t.get({url:"/decorate.page/detail",params:e},{ignoreCancelToken:!0})}function o(e){return t.post({url:"/decorate.page/save",params:e})}function c(e){return t.get({url:"/decorate.data/article",params:e})}function n(e){return t.get({url:"/decorate.tabbar/detail",params:e})}function u(e){return t.post({url:"/decorate.tabbar/save",params:e})}export{a,n as b,u as c,c as g,o as s}; diff --git a/public/admin/assets/deepProcessing.4fdb9986.js b/public/admin/assets/deepProcessing.4fdb9986.js new file mode 100644 index 000000000..61d666460 --- /dev/null +++ b/public/admin/assets/deepProcessing.4fdb9986.js @@ -0,0 +1 @@ +import{G as c,H as z,C as D,a1 as v,B as A,M as k,N as x,a2 as w,D as I,I as N}from"./element-plus.4328d892.js";import{d as R,r as S,o as r,K as V,L as a,U as e,a as E,R as d,S as L,c as p,T as f,a7 as P,u as T}from"./@vue.51d7f2d8.js";import{d as G}from"./index.37f7aea6.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const O={class:"tit"},j={class:"time"},H=R({__name:"deepProcessing",props:{datas:{type:Object,defualt:function(){return{is_manage:"",construction_land:"",land_area:"",manage_place:"",source_materials:"",marketing_channel:"",technical_guidance:"",brand:"",advertising:"",transport:"",business_appeal:"",manage_type:"",people_count:"",canteen:"",automation:"",employment:"",repertory:""}}},update_time:{type:String,defualt:""}},setup(l){const _=S(["\u8D85\u5E02","\u751F\u9C9C","\u996D\u5E97","\u4E94\u91D1","\u6742\u8D27","\u670D\u88C5","\u6587\u5177","\u5176\u4ED6"]);return(g,t)=>{const o=c,s=z,n=D,m=v,i=A,F=k,y=x,C=w,U=I,B=N;return r(),V(B,{style:{"margin-top":"16px"}},{default:a(()=>[e(U,{ref:"elForm",disabled:!0,model:g.formData,size:"mini","label-width":"180px"},{default:a(()=>[E("div",O,[d(" \u6DF1\u52A0\u5DE5 "),E("span",j,"\u66F4\u65B0\u4E8E:"+L(l.update_time),1)]),e(C,null,{default:a(()=>[e(m,{span:8},{default:a(()=>[e(n,{label:"\u662F\u5426\u5728\u7ECF\u8425",prop:"is_manage"},{default:a(()=>[e(s,{modelValue:l.datas.is_manage,"onUpdate:modelValue":t[0]||(t[0]=u=>l.datas.is_manage=u),size:"medium"},{default:a(()=>[e(o,{label:"1"},{default:a(()=>[d("\u662F")]),_:1}),e(o,{label:"0"},{default:a(()=>[d("\u5426")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),l.datas.is_manage==1?(r(),p(f,{key:0},[e(m,{span:8},{default:a(()=>[e(n,{label:"\u6709\u65E0\u5EFA\u8BBE\u7528\u5730",prop:"construction_land"},{default:a(()=>[e(s,{modelValue:l.datas.construction_land,"onUpdate:modelValue":t[1]||(t[1]=u=>l.datas.construction_land=u),size:"medium"},{default:a(()=>[e(o,{label:"1"},{default:a(()=>[d("\u6709")]),_:1}),e(o,{label:"0"},{default:a(()=>[d("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u9762\u79EF(m\xB2)",prop:"land_area"},{default:a(()=>[e(i,{modelValue:l.datas.land_area,"onUpdate:modelValue":t[2]||(t[2]=u=>l.datas.land_area=u),clearable:"",disabled:!0},null,8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u7ECF\u8425\u5730\u70B9",prop:"manage_place"},{default:a(()=>[e(i,{modelValue:l.datas.manage_place,"onUpdate:modelValue":t[3]||(t[3]=u=>l.datas.manage_place=u),clearable:"",disabled:!0},null,8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u6750\u6599\u6765\u6E90",prop:"source_materials"},{default:a(()=>[e(i,{modelValue:l.datas.source_materials,"onUpdate:modelValue":t[4]||(t[4]=u=>l.datas.source_materials=u),clearable:"",disabled:!0},null,8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u6709\u65E0\u9500\u552E\u6E20\u9053",prop:"marketing_channel"},{default:a(()=>[e(s,{modelValue:l.datas.marketing_channel,"onUpdate:modelValue":t[5]||(t[5]=u=>l.datas.marketing_channel=u),size:"medium"},{default:a(()=>[e(o,{label:"1"},{default:a(()=>[d("\u6709")]),_:1}),e(o,{label:"0"},{default:a(()=>[d("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u6709\u65E0\u6280\u672F\u6307\u5BFC",prop:"technical_guidance"},{default:a(()=>[e(s,{modelValue:l.datas.technical_guidance,"onUpdate:modelValue":t[6]||(t[6]=u=>l.datas.technical_guidance=u),size:"medium"},{default:a(()=>[e(o,{label:"1"},{default:a(()=>[d("\u6709")]),_:1}),e(o,{label:"0"},{default:a(()=>[d("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u6709\u65E0\u54C1\u724C",prop:"brand"},{default:a(()=>[e(s,{modelValue:l.datas.brand,"onUpdate:modelValue":t[7]||(t[7]=u=>l.datas.brand=u),size:"medium"},{default:a(()=>[e(o,{label:"1"},{default:a(()=>[d("\u6709")]),_:1}),e(o,{label:"0"},{default:a(()=>[d("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u6709\u65E0\u5BA3\u4F20\u63A8\u5E7F",prop:"advertising"},{default:a(()=>[e(s,{modelValue:l.datas.advertising,"onUpdate:modelValue":t[8]||(t[8]=u=>l.datas.advertising=u),size:"medium"},{default:a(()=>[e(o,{label:"1"},{default:a(()=>[d("\u6709")]),_:1}),e(o,{label:"0"},{default:a(()=>[d("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u6709\u65E0\u8FD0\u8F93",prop:"transport"},{default:a(()=>[e(s,{modelValue:l.datas.transport,"onUpdate:modelValue":t[9]||(t[9]=u=>l.datas.transport=u),size:"medium"},{default:a(()=>[e(o,{label:"1"},{default:a(()=>[d("\u6709")]),_:1}),e(o,{label:"0"},{default:a(()=>[d("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u7ECF\u8425\u8BC9\u6C42",prop:"business_appeal"},{default:a(()=>[e(i,{modelValue:l.datas.business_appeal,"onUpdate:modelValue":t[10]||(t[10]=u=>l.datas.business_appeal=u),clearable:"",autosize:"",type:"textarea",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1})],64)):(r(),p(f,{key:1},[e(m,{span:8},{default:a(()=>[e(n,{label:"\u6709\u65E0\u5EFA\u8BBE\u7528\u5730",prop:"construction_land"},{default:a(()=>[e(s,{modelValue:l.datas.construction_land,"onUpdate:modelValue":t[11]||(t[11]=u=>l.datas.construction_land=u),size:"medium"},{default:a(()=>[e(o,{label:"1"},{default:a(()=>[d("\u6709")]),_:1}),e(o,{label:"0"},{default:a(()=>[d("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u7ECF\u8425\u7C7B\u578B",prop:"manage_type"},{default:a(()=>[e(y,{modelValue:l.datas.manage_type,"onUpdate:modelValue":t[12]||(t[12]=u=>l.datas.manage_type=u),clearable:"",style:{width:"100%"}},{default:a(()=>[(r(!0),p(f,null,P(T(_),(u,b)=>(r(),V(F,{key:b,label:u,value:b+""},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u7ECF\u8425\u5730\u70B9",prop:"manage_place"},{default:a(()=>[e(i,{modelValue:l.datas.manage_place,"onUpdate:modelValue":t[13]||(t[13]=u=>l.datas.manage_place=u),clearable:"",disabled:!0},null,8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u4EBA\u6570",prop:"people_count"},{default:a(()=>[e(i,{modelValue:l.datas.people_count,"onUpdate:modelValue":t[14]||(t[14]=u=>l.datas.people_count=u),clearable:"",disabled:!0},null,8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u6709\u65E0\u98DF\u5802",prop:"canteen"},{default:a(()=>[e(s,{modelValue:l.datas.canteen,"onUpdate:modelValue":t[15]||(t[15]=u=>l.datas.canteen=u),size:"medium"},{default:a(()=>[e(o,{label:"1"},{default:a(()=>[d("\u6709")]),_:1}),e(o,{label:"0"},{default:a(()=>[d("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u6750\u6599\u6765\u6E90",prop:"source_materials"},{default:a(()=>[e(i,{modelValue:l.datas.source_materials,"onUpdate:modelValue":t[16]||(t[16]=u=>l.datas.source_materials=u),clearable:"",disabled:!0},null,8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u81EA\u52A8\u5316\u529E\u516C\u7A0B\u5EA6",prop:"automation"},{default:a(()=>[e(i,{modelValue:l.datas.automation,"onUpdate:modelValue":t[17]||(t[17]=u=>l.datas.automation=u),clearable:"",disabled:!0},null,8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u6709\u65E0\u7528\u5DE5\u9700\u6C42",prop:"employment"},{default:a(()=>[e(s,{modelValue:l.datas.employment,"onUpdate:modelValue":t[18]||(t[18]=u=>l.datas.employment=u),size:"medium"},{default:a(()=>[e(o,{label:"1"},{default:a(()=>[d("\u6709")]),_:1}),e(o,{label:"0"},{default:a(()=>[d("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u6709\u65E0\u54C1\u724C",prop:"brand"},{default:a(()=>[e(s,{modelValue:l.datas.brand,"onUpdate:modelValue":t[19]||(t[19]=u=>l.datas.brand=u),size:"medium"},{default:a(()=>[e(o,{label:"1"},{default:a(()=>[d("\u6709")]),_:1}),e(o,{label:"0"},{default:a(()=>[d("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u6709\u65E0\u5BA3\u4F20\u63A8\u5E7F",prop:"advertising"},{default:a(()=>[e(s,{modelValue:l.datas.advertising,"onUpdate:modelValue":t[20]||(t[20]=u=>l.datas.advertising=u),size:"medium"},{default:a(()=>[e(o,{label:"1"},{default:a(()=>[d("\u6709")]),_:1}),e(o,{label:"0"},{default:a(()=>[d("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u5E93\u5B58\u60C5\u51B5",prop:"repertory"},{default:a(()=>[e(i,{modelValue:l.datas.repertory,"onUpdate:modelValue":t[21]||(t[21]=u=>l.datas.repertory=u),clearable:"",disabled:!0},null,8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u6709\u65E0\u8FD0\u8F93",prop:"transport"},{default:a(()=>[e(s,{modelValue:l.datas.transport,"onUpdate:modelValue":t[22]||(t[22]=u=>l.datas.transport=u),size:"medium"},{default:a(()=>[e(o,{label:"1"},{default:a(()=>[d("\u6709")]),_:1}),e(o,{label:"0"},{default:a(()=>[d("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u7ECF\u8425\u8BC9\u6C42",prop:"business_appeal"},{default:a(()=>[e(i,{modelValue:l.datas.business_appeal,"onUpdate:modelValue":t[23]||(t[23]=u=>l.datas.business_appeal=u),clearable:"",autosize:"",type:"textarea",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1})],64))]),_:1})]),_:1},8,["model"])]),_:1})}}});const Be=G(H,[["__scopeId","data-v-228e8dce"]]);export{Be as default}; diff --git a/public/admin/assets/deepProcessing.66eb2640.js b/public/admin/assets/deepProcessing.66eb2640.js new file mode 100644 index 000000000..32867afc0 --- /dev/null +++ b/public/admin/assets/deepProcessing.66eb2640.js @@ -0,0 +1 @@ +import{G as c,H as z,C as D,a1 as v,B as A,M as k,N as x,a2 as w,D as I,I as N}from"./element-plus.4328d892.js";import{d as R,r as S,o as r,K as V,L as a,U as e,a as E,R as d,S as L,c as p,T as f,a7 as P,u as T}from"./@vue.51d7f2d8.js";import{d as G}from"./index.ed71ac09.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const O={class:"tit"},j={class:"time"},H=R({__name:"deepProcessing",props:{datas:{type:Object,defualt:function(){return{is_manage:"",construction_land:"",land_area:"",manage_place:"",source_materials:"",marketing_channel:"",technical_guidance:"",brand:"",advertising:"",transport:"",business_appeal:"",manage_type:"",people_count:"",canteen:"",automation:"",employment:"",repertory:""}}},update_time:{type:String,defualt:""}},setup(l){const _=S(["\u8D85\u5E02","\u751F\u9C9C","\u996D\u5E97","\u4E94\u91D1","\u6742\u8D27","\u670D\u88C5","\u6587\u5177","\u5176\u4ED6"]);return(g,t)=>{const o=c,s=z,n=D,m=v,i=A,F=k,y=x,C=w,U=I,B=N;return r(),V(B,{style:{"margin-top":"16px"}},{default:a(()=>[e(U,{ref:"elForm",disabled:!0,model:g.formData,size:"mini","label-width":"180px"},{default:a(()=>[E("div",O,[d(" \u6DF1\u52A0\u5DE5 "),E("span",j,"\u66F4\u65B0\u4E8E:"+L(l.update_time),1)]),e(C,null,{default:a(()=>[e(m,{span:8},{default:a(()=>[e(n,{label:"\u662F\u5426\u5728\u7ECF\u8425",prop:"is_manage"},{default:a(()=>[e(s,{modelValue:l.datas.is_manage,"onUpdate:modelValue":t[0]||(t[0]=u=>l.datas.is_manage=u),size:"medium"},{default:a(()=>[e(o,{label:"1"},{default:a(()=>[d("\u662F")]),_:1}),e(o,{label:"0"},{default:a(()=>[d("\u5426")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),l.datas.is_manage==1?(r(),p(f,{key:0},[e(m,{span:8},{default:a(()=>[e(n,{label:"\u6709\u65E0\u5EFA\u8BBE\u7528\u5730",prop:"construction_land"},{default:a(()=>[e(s,{modelValue:l.datas.construction_land,"onUpdate:modelValue":t[1]||(t[1]=u=>l.datas.construction_land=u),size:"medium"},{default:a(()=>[e(o,{label:"1"},{default:a(()=>[d("\u6709")]),_:1}),e(o,{label:"0"},{default:a(()=>[d("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u9762\u79EF(m\xB2)",prop:"land_area"},{default:a(()=>[e(i,{modelValue:l.datas.land_area,"onUpdate:modelValue":t[2]||(t[2]=u=>l.datas.land_area=u),clearable:"",disabled:!0},null,8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u7ECF\u8425\u5730\u70B9",prop:"manage_place"},{default:a(()=>[e(i,{modelValue:l.datas.manage_place,"onUpdate:modelValue":t[3]||(t[3]=u=>l.datas.manage_place=u),clearable:"",disabled:!0},null,8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u6750\u6599\u6765\u6E90",prop:"source_materials"},{default:a(()=>[e(i,{modelValue:l.datas.source_materials,"onUpdate:modelValue":t[4]||(t[4]=u=>l.datas.source_materials=u),clearable:"",disabled:!0},null,8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u6709\u65E0\u9500\u552E\u6E20\u9053",prop:"marketing_channel"},{default:a(()=>[e(s,{modelValue:l.datas.marketing_channel,"onUpdate:modelValue":t[5]||(t[5]=u=>l.datas.marketing_channel=u),size:"medium"},{default:a(()=>[e(o,{label:"1"},{default:a(()=>[d("\u6709")]),_:1}),e(o,{label:"0"},{default:a(()=>[d("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u6709\u65E0\u6280\u672F\u6307\u5BFC",prop:"technical_guidance"},{default:a(()=>[e(s,{modelValue:l.datas.technical_guidance,"onUpdate:modelValue":t[6]||(t[6]=u=>l.datas.technical_guidance=u),size:"medium"},{default:a(()=>[e(o,{label:"1"},{default:a(()=>[d("\u6709")]),_:1}),e(o,{label:"0"},{default:a(()=>[d("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u6709\u65E0\u54C1\u724C",prop:"brand"},{default:a(()=>[e(s,{modelValue:l.datas.brand,"onUpdate:modelValue":t[7]||(t[7]=u=>l.datas.brand=u),size:"medium"},{default:a(()=>[e(o,{label:"1"},{default:a(()=>[d("\u6709")]),_:1}),e(o,{label:"0"},{default:a(()=>[d("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u6709\u65E0\u5BA3\u4F20\u63A8\u5E7F",prop:"advertising"},{default:a(()=>[e(s,{modelValue:l.datas.advertising,"onUpdate:modelValue":t[8]||(t[8]=u=>l.datas.advertising=u),size:"medium"},{default:a(()=>[e(o,{label:"1"},{default:a(()=>[d("\u6709")]),_:1}),e(o,{label:"0"},{default:a(()=>[d("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u6709\u65E0\u8FD0\u8F93",prop:"transport"},{default:a(()=>[e(s,{modelValue:l.datas.transport,"onUpdate:modelValue":t[9]||(t[9]=u=>l.datas.transport=u),size:"medium"},{default:a(()=>[e(o,{label:"1"},{default:a(()=>[d("\u6709")]),_:1}),e(o,{label:"0"},{default:a(()=>[d("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u7ECF\u8425\u8BC9\u6C42",prop:"business_appeal"},{default:a(()=>[e(i,{modelValue:l.datas.business_appeal,"onUpdate:modelValue":t[10]||(t[10]=u=>l.datas.business_appeal=u),clearable:"",autosize:"",type:"textarea",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1})],64)):(r(),p(f,{key:1},[e(m,{span:8},{default:a(()=>[e(n,{label:"\u6709\u65E0\u5EFA\u8BBE\u7528\u5730",prop:"construction_land"},{default:a(()=>[e(s,{modelValue:l.datas.construction_land,"onUpdate:modelValue":t[11]||(t[11]=u=>l.datas.construction_land=u),size:"medium"},{default:a(()=>[e(o,{label:"1"},{default:a(()=>[d("\u6709")]),_:1}),e(o,{label:"0"},{default:a(()=>[d("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u7ECF\u8425\u7C7B\u578B",prop:"manage_type"},{default:a(()=>[e(y,{modelValue:l.datas.manage_type,"onUpdate:modelValue":t[12]||(t[12]=u=>l.datas.manage_type=u),clearable:"",style:{width:"100%"}},{default:a(()=>[(r(!0),p(f,null,P(T(_),(u,b)=>(r(),V(F,{key:b,label:u,value:b+""},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u7ECF\u8425\u5730\u70B9",prop:"manage_place"},{default:a(()=>[e(i,{modelValue:l.datas.manage_place,"onUpdate:modelValue":t[13]||(t[13]=u=>l.datas.manage_place=u),clearable:"",disabled:!0},null,8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u4EBA\u6570",prop:"people_count"},{default:a(()=>[e(i,{modelValue:l.datas.people_count,"onUpdate:modelValue":t[14]||(t[14]=u=>l.datas.people_count=u),clearable:"",disabled:!0},null,8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u6709\u65E0\u98DF\u5802",prop:"canteen"},{default:a(()=>[e(s,{modelValue:l.datas.canteen,"onUpdate:modelValue":t[15]||(t[15]=u=>l.datas.canteen=u),size:"medium"},{default:a(()=>[e(o,{label:"1"},{default:a(()=>[d("\u6709")]),_:1}),e(o,{label:"0"},{default:a(()=>[d("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u6750\u6599\u6765\u6E90",prop:"source_materials"},{default:a(()=>[e(i,{modelValue:l.datas.source_materials,"onUpdate:modelValue":t[16]||(t[16]=u=>l.datas.source_materials=u),clearable:"",disabled:!0},null,8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u81EA\u52A8\u5316\u529E\u516C\u7A0B\u5EA6",prop:"automation"},{default:a(()=>[e(i,{modelValue:l.datas.automation,"onUpdate:modelValue":t[17]||(t[17]=u=>l.datas.automation=u),clearable:"",disabled:!0},null,8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u6709\u65E0\u7528\u5DE5\u9700\u6C42",prop:"employment"},{default:a(()=>[e(s,{modelValue:l.datas.employment,"onUpdate:modelValue":t[18]||(t[18]=u=>l.datas.employment=u),size:"medium"},{default:a(()=>[e(o,{label:"1"},{default:a(()=>[d("\u6709")]),_:1}),e(o,{label:"0"},{default:a(()=>[d("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u6709\u65E0\u54C1\u724C",prop:"brand"},{default:a(()=>[e(s,{modelValue:l.datas.brand,"onUpdate:modelValue":t[19]||(t[19]=u=>l.datas.brand=u),size:"medium"},{default:a(()=>[e(o,{label:"1"},{default:a(()=>[d("\u6709")]),_:1}),e(o,{label:"0"},{default:a(()=>[d("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u6709\u65E0\u5BA3\u4F20\u63A8\u5E7F",prop:"advertising"},{default:a(()=>[e(s,{modelValue:l.datas.advertising,"onUpdate:modelValue":t[20]||(t[20]=u=>l.datas.advertising=u),size:"medium"},{default:a(()=>[e(o,{label:"1"},{default:a(()=>[d("\u6709")]),_:1}),e(o,{label:"0"},{default:a(()=>[d("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u5E93\u5B58\u60C5\u51B5",prop:"repertory"},{default:a(()=>[e(i,{modelValue:l.datas.repertory,"onUpdate:modelValue":t[21]||(t[21]=u=>l.datas.repertory=u),clearable:"",disabled:!0},null,8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u6709\u65E0\u8FD0\u8F93",prop:"transport"},{default:a(()=>[e(s,{modelValue:l.datas.transport,"onUpdate:modelValue":t[22]||(t[22]=u=>l.datas.transport=u),size:"medium"},{default:a(()=>[e(o,{label:"1"},{default:a(()=>[d("\u6709")]),_:1}),e(o,{label:"0"},{default:a(()=>[d("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u7ECF\u8425\u8BC9\u6C42",prop:"business_appeal"},{default:a(()=>[e(i,{modelValue:l.datas.business_appeal,"onUpdate:modelValue":t[23]||(t[23]=u=>l.datas.business_appeal=u),clearable:"",autosize:"",type:"textarea",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1})],64))]),_:1})]),_:1},8,["model"])]),_:1})}}});const Be=G(H,[["__scopeId","data-v-228e8dce"]]);export{Be as default}; diff --git a/public/admin/assets/deepProcessing.f4a8af71.js b/public/admin/assets/deepProcessing.f4a8af71.js new file mode 100644 index 000000000..c0dc6eba7 --- /dev/null +++ b/public/admin/assets/deepProcessing.f4a8af71.js @@ -0,0 +1 @@ +import{G as c,H as z,C as D,a1 as v,B as A,M as k,N as x,a2 as w,D as I,I as N}from"./element-plus.4328d892.js";import{d as R,r as S,o as r,K as V,L as a,U as e,a as E,R as d,S as L,c as p,T as f,a7 as P,u as T}from"./@vue.51d7f2d8.js";import{d as G}from"./index.aa9bb752.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const O={class:"tit"},j={class:"time"},H=R({__name:"deepProcessing",props:{datas:{type:Object,defualt:function(){return{is_manage:"",construction_land:"",land_area:"",manage_place:"",source_materials:"",marketing_channel:"",technical_guidance:"",brand:"",advertising:"",transport:"",business_appeal:"",manage_type:"",people_count:"",canteen:"",automation:"",employment:"",repertory:""}}},update_time:{type:String,defualt:""}},setup(l){const _=S(["\u8D85\u5E02","\u751F\u9C9C","\u996D\u5E97","\u4E94\u91D1","\u6742\u8D27","\u670D\u88C5","\u6587\u5177","\u5176\u4ED6"]);return(g,t)=>{const o=c,s=z,n=D,m=v,i=A,F=k,y=x,C=w,U=I,B=N;return r(),V(B,{style:{"margin-top":"16px"}},{default:a(()=>[e(U,{ref:"elForm",disabled:!0,model:g.formData,size:"mini","label-width":"180px"},{default:a(()=>[E("div",O,[d(" \u6DF1\u52A0\u5DE5 "),E("span",j,"\u66F4\u65B0\u4E8E:"+L(l.update_time),1)]),e(C,null,{default:a(()=>[e(m,{span:8},{default:a(()=>[e(n,{label:"\u662F\u5426\u5728\u7ECF\u8425",prop:"is_manage"},{default:a(()=>[e(s,{modelValue:l.datas.is_manage,"onUpdate:modelValue":t[0]||(t[0]=u=>l.datas.is_manage=u),size:"medium"},{default:a(()=>[e(o,{label:"1"},{default:a(()=>[d("\u662F")]),_:1}),e(o,{label:"0"},{default:a(()=>[d("\u5426")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),l.datas.is_manage==1?(r(),p(f,{key:0},[e(m,{span:8},{default:a(()=>[e(n,{label:"\u6709\u65E0\u5EFA\u8BBE\u7528\u5730",prop:"construction_land"},{default:a(()=>[e(s,{modelValue:l.datas.construction_land,"onUpdate:modelValue":t[1]||(t[1]=u=>l.datas.construction_land=u),size:"medium"},{default:a(()=>[e(o,{label:"1"},{default:a(()=>[d("\u6709")]),_:1}),e(o,{label:"0"},{default:a(()=>[d("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u9762\u79EF(m\xB2)",prop:"land_area"},{default:a(()=>[e(i,{modelValue:l.datas.land_area,"onUpdate:modelValue":t[2]||(t[2]=u=>l.datas.land_area=u),clearable:"",disabled:!0},null,8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u7ECF\u8425\u5730\u70B9",prop:"manage_place"},{default:a(()=>[e(i,{modelValue:l.datas.manage_place,"onUpdate:modelValue":t[3]||(t[3]=u=>l.datas.manage_place=u),clearable:"",disabled:!0},null,8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u6750\u6599\u6765\u6E90",prop:"source_materials"},{default:a(()=>[e(i,{modelValue:l.datas.source_materials,"onUpdate:modelValue":t[4]||(t[4]=u=>l.datas.source_materials=u),clearable:"",disabled:!0},null,8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u6709\u65E0\u9500\u552E\u6E20\u9053",prop:"marketing_channel"},{default:a(()=>[e(s,{modelValue:l.datas.marketing_channel,"onUpdate:modelValue":t[5]||(t[5]=u=>l.datas.marketing_channel=u),size:"medium"},{default:a(()=>[e(o,{label:"1"},{default:a(()=>[d("\u6709")]),_:1}),e(o,{label:"0"},{default:a(()=>[d("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u6709\u65E0\u6280\u672F\u6307\u5BFC",prop:"technical_guidance"},{default:a(()=>[e(s,{modelValue:l.datas.technical_guidance,"onUpdate:modelValue":t[6]||(t[6]=u=>l.datas.technical_guidance=u),size:"medium"},{default:a(()=>[e(o,{label:"1"},{default:a(()=>[d("\u6709")]),_:1}),e(o,{label:"0"},{default:a(()=>[d("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u6709\u65E0\u54C1\u724C",prop:"brand"},{default:a(()=>[e(s,{modelValue:l.datas.brand,"onUpdate:modelValue":t[7]||(t[7]=u=>l.datas.brand=u),size:"medium"},{default:a(()=>[e(o,{label:"1"},{default:a(()=>[d("\u6709")]),_:1}),e(o,{label:"0"},{default:a(()=>[d("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u6709\u65E0\u5BA3\u4F20\u63A8\u5E7F",prop:"advertising"},{default:a(()=>[e(s,{modelValue:l.datas.advertising,"onUpdate:modelValue":t[8]||(t[8]=u=>l.datas.advertising=u),size:"medium"},{default:a(()=>[e(o,{label:"1"},{default:a(()=>[d("\u6709")]),_:1}),e(o,{label:"0"},{default:a(()=>[d("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u6709\u65E0\u8FD0\u8F93",prop:"transport"},{default:a(()=>[e(s,{modelValue:l.datas.transport,"onUpdate:modelValue":t[9]||(t[9]=u=>l.datas.transport=u),size:"medium"},{default:a(()=>[e(o,{label:"1"},{default:a(()=>[d("\u6709")]),_:1}),e(o,{label:"0"},{default:a(()=>[d("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u7ECF\u8425\u8BC9\u6C42",prop:"business_appeal"},{default:a(()=>[e(i,{modelValue:l.datas.business_appeal,"onUpdate:modelValue":t[10]||(t[10]=u=>l.datas.business_appeal=u),clearable:"",autosize:"",type:"textarea",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1})],64)):(r(),p(f,{key:1},[e(m,{span:8},{default:a(()=>[e(n,{label:"\u6709\u65E0\u5EFA\u8BBE\u7528\u5730",prop:"construction_land"},{default:a(()=>[e(s,{modelValue:l.datas.construction_land,"onUpdate:modelValue":t[11]||(t[11]=u=>l.datas.construction_land=u),size:"medium"},{default:a(()=>[e(o,{label:"1"},{default:a(()=>[d("\u6709")]),_:1}),e(o,{label:"0"},{default:a(()=>[d("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u7ECF\u8425\u7C7B\u578B",prop:"manage_type"},{default:a(()=>[e(y,{modelValue:l.datas.manage_type,"onUpdate:modelValue":t[12]||(t[12]=u=>l.datas.manage_type=u),clearable:"",style:{width:"100%"}},{default:a(()=>[(r(!0),p(f,null,P(T(_),(u,b)=>(r(),V(F,{key:b,label:u,value:b+""},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u7ECF\u8425\u5730\u70B9",prop:"manage_place"},{default:a(()=>[e(i,{modelValue:l.datas.manage_place,"onUpdate:modelValue":t[13]||(t[13]=u=>l.datas.manage_place=u),clearable:"",disabled:!0},null,8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u4EBA\u6570",prop:"people_count"},{default:a(()=>[e(i,{modelValue:l.datas.people_count,"onUpdate:modelValue":t[14]||(t[14]=u=>l.datas.people_count=u),clearable:"",disabled:!0},null,8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u6709\u65E0\u98DF\u5802",prop:"canteen"},{default:a(()=>[e(s,{modelValue:l.datas.canteen,"onUpdate:modelValue":t[15]||(t[15]=u=>l.datas.canteen=u),size:"medium"},{default:a(()=>[e(o,{label:"1"},{default:a(()=>[d("\u6709")]),_:1}),e(o,{label:"0"},{default:a(()=>[d("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u6750\u6599\u6765\u6E90",prop:"source_materials"},{default:a(()=>[e(i,{modelValue:l.datas.source_materials,"onUpdate:modelValue":t[16]||(t[16]=u=>l.datas.source_materials=u),clearable:"",disabled:!0},null,8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u81EA\u52A8\u5316\u529E\u516C\u7A0B\u5EA6",prop:"automation"},{default:a(()=>[e(i,{modelValue:l.datas.automation,"onUpdate:modelValue":t[17]||(t[17]=u=>l.datas.automation=u),clearable:"",disabled:!0},null,8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u6709\u65E0\u7528\u5DE5\u9700\u6C42",prop:"employment"},{default:a(()=>[e(s,{modelValue:l.datas.employment,"onUpdate:modelValue":t[18]||(t[18]=u=>l.datas.employment=u),size:"medium"},{default:a(()=>[e(o,{label:"1"},{default:a(()=>[d("\u6709")]),_:1}),e(o,{label:"0"},{default:a(()=>[d("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u6709\u65E0\u54C1\u724C",prop:"brand"},{default:a(()=>[e(s,{modelValue:l.datas.brand,"onUpdate:modelValue":t[19]||(t[19]=u=>l.datas.brand=u),size:"medium"},{default:a(()=>[e(o,{label:"1"},{default:a(()=>[d("\u6709")]),_:1}),e(o,{label:"0"},{default:a(()=>[d("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u6709\u65E0\u5BA3\u4F20\u63A8\u5E7F",prop:"advertising"},{default:a(()=>[e(s,{modelValue:l.datas.advertising,"onUpdate:modelValue":t[20]||(t[20]=u=>l.datas.advertising=u),size:"medium"},{default:a(()=>[e(o,{label:"1"},{default:a(()=>[d("\u6709")]),_:1}),e(o,{label:"0"},{default:a(()=>[d("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u5E93\u5B58\u60C5\u51B5",prop:"repertory"},{default:a(()=>[e(i,{modelValue:l.datas.repertory,"onUpdate:modelValue":t[21]||(t[21]=u=>l.datas.repertory=u),clearable:"",disabled:!0},null,8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u6709\u65E0\u8FD0\u8F93",prop:"transport"},{default:a(()=>[e(s,{modelValue:l.datas.transport,"onUpdate:modelValue":t[22]||(t[22]=u=>l.datas.transport=u),size:"medium"},{default:a(()=>[e(o,{label:"1"},{default:a(()=>[d("\u6709")]),_:1}),e(o,{label:"0"},{default:a(()=>[d("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u7ECF\u8425\u8BC9\u6C42",prop:"business_appeal"},{default:a(()=>[e(i,{modelValue:l.datas.business_appeal,"onUpdate:modelValue":t[23]||(t[23]=u=>l.datas.business_appeal=u),clearable:"",autosize:"",type:"textarea",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1})],64))]),_:1})]),_:1},8,["model"])]),_:1})}}});const Be=G(H,[["__scopeId","data-v-228e8dce"]]);export{Be as default}; diff --git a/public/admin/assets/default_reply.40bf618a.js b/public/admin/assets/default_reply.40bf618a.js new file mode 100644 index 000000000..b50b7bc80 --- /dev/null +++ b/public/admin/assets/default_reply.40bf618a.js @@ -0,0 +1 @@ +import{S as R,I as $,w as x,O as T,t as L,P as N,Q as U}from"./element-plus.4328d892.js";import{_ as O}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{f as E,b as P}from"./index.aa9bb752.js";import{o as Q,d as j,e as z}from"./wx_oa.dfa7359b.js";import{u as I}from"./usePaging.2ad8e1e6.js";import{_ as K}from"./edit.vue_vue_type_script_setup_true_lang.caf54865.js";import{d as M,s as q,r as G,e as H,o as f,c as J,U as e,L as u,a as D,R as d,M as W,K as F,u as n,S as X,k as Y,Q as Z,n as h}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.fa872673.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";const ee={class:"flex justify-end mt-4"},ze=M({__name:"default_reply",setup(te){const r=q(),m=G(!1),v=H(()=>o=>{switch(o){case 1:return"\u6587\u672C"}}),{pager:s,getLists:l}=I({fetchFun:z,params:{reply_type:3}}),g=async()=>{var o;m.value=!0,await h(),(o=r.value)==null||o.open("add",1)},y=async o=>{var a,p;m.value=!0,await h(),(a=r.value)==null||a.open("edit",1),(p=r.value)==null||p.getDetail(o)},w=async o=>{await E.confirm("\u786E\u5B9A\u8981\u5220\u9664\uFF1F"),await Q({id:o}),E.msgSuccess("\u5220\u9664\u6210\u529F"),l()},B=async o=>{try{await j({id:o}),l()}catch{l()}};return l(),(o,a)=>{const p=R,C=$,b=P,_=x,i=T,k=L,V=N,A=O,S=U;return f(),J("div",null,[e(C,{class:"!border-none",shadow:"never"},{default:u(()=>[e(p,{type:"warning",title:"\u6E29\u99A8\u63D0\u793A\uFF1A1.\u7C89\u4E1D\u5728\u516C\u4F17\u53F7\u53D1\u9001\u5185\u5BB9\u65F6\uFF0C\u7CFB\u7EDF\u65E0\u6CD5\u5339\u914D\u60C5\u51B5\u4E0B\u53D1\u9001\u542F\u7528\u7684\u9ED8\u8BA4\u6587\u672C\u56DE\u590D\uFF1B2.\u540C\u65F6\u53EA\u80FD\u542F\u7528\u4E00\u4E2A\u9ED8\u8BA4\u56DE\u590D\u3002",closable:!1,"show-icon":""})]),_:1}),e(C,{class:"!border-none mt-4",shadow:"never"},{default:u(()=>[D("div",null,[e(_,{class:"mb-4",type:"primary",onClick:a[0]||(a[0]=t=>g())},{icon:u(()=>[e(b,{name:"el-icon-Plus"})]),default:u(()=>[d(" \u65B0\u589E ")]),_:1})]),W((f(),F(V,{size:"large",data:n(s).lists},{default:u(()=>[e(i,{label:"\u89C4\u5219\u540D\u79F0",prop:"name","min-width":"120"}),e(i,{label:"\u56DE\u590D\u7C7B\u578B","min-width":"120"},{default:u(({row:t})=>[d(X(n(v)(t.content_type)),1)]),_:1}),e(i,{label:"\u56DE\u590D\u5185\u5BB9",prop:"content","min-width":"120"}),e(i,{label:"\u72B6\u6001","min-width":"120"},{default:u(({row:t})=>[e(k,{modelValue:t.status,"onUpdate:modelValue":c=>t.status=c,"active-value":1,"inactive-value":0,onChange:c=>B(t.id)},null,8,["modelValue","onUpdate:modelValue","onChange"])]),_:1}),e(i,{label:"\u6392\u5E8F",prop:"sort","min-width":"120"}),e(i,{label:"\u64CD\u4F5C",width:"120",fixed:"right"},{default:u(({row:t})=>[e(_,{type:"primary",link:"",onClick:c=>y(t)},{default:u(()=>[d(" \u7F16\u8F91 ")]),_:2},1032,["onClick"]),e(_,{type:"danger",link:"",onClick:c=>w(t.id)},{default:u(()=>[d(" \u5220\u9664 ")]),_:2},1032,["onClick"])]),_:1})]),_:1},8,["data"])),[[S,n(s).loading]]),D("div",ee,[e(A,{modelValue:n(s),"onUpdate:modelValue":a[1]||(a[1]=t=>Y(s)?s.value=t:null),onChange:n(l)},null,8,["modelValue","onChange"])])]),_:1}),n(m)?(f(),F(K,{key:0,ref_key:"editRef",ref:r,onSuccess:n(l),onClose:a[2]||(a[2]=t=>m.value=!1)},null,8,["onSuccess"])):Z("",!0)])}}});export{ze as default}; diff --git a/public/admin/assets/default_reply.8274379d.js b/public/admin/assets/default_reply.8274379d.js new file mode 100644 index 000000000..26d7296d5 --- /dev/null +++ b/public/admin/assets/default_reply.8274379d.js @@ -0,0 +1 @@ +import{S as R,I as $,w as x,O as T,t as L,P as N,Q as U}from"./element-plus.4328d892.js";import{_ as O}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{f as E,b as P}from"./index.37f7aea6.js";import{o as Q,d as j,e as z}from"./wx_oa.115c1d98.js";import{u as I}from"./usePaging.2ad8e1e6.js";import{_ as K}from"./edit.vue_vue_type_script_setup_true_lang.cfc20a70.js";import{d as M,s as q,r as G,e as H,o as f,c as J,U as e,L as u,a as D,R as d,M as W,K as F,u as n,S as X,k as Y,Q as Z,n as h}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.5759a1a6.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";const ee={class:"flex justify-end mt-4"},ze=M({__name:"default_reply",setup(te){const r=q(),m=G(!1),v=H(()=>o=>{switch(o){case 1:return"\u6587\u672C"}}),{pager:s,getLists:l}=I({fetchFun:z,params:{reply_type:3}}),g=async()=>{var o;m.value=!0,await h(),(o=r.value)==null||o.open("add",1)},y=async o=>{var a,p;m.value=!0,await h(),(a=r.value)==null||a.open("edit",1),(p=r.value)==null||p.getDetail(o)},w=async o=>{await E.confirm("\u786E\u5B9A\u8981\u5220\u9664\uFF1F"),await Q({id:o}),E.msgSuccess("\u5220\u9664\u6210\u529F"),l()},B=async o=>{try{await j({id:o}),l()}catch{l()}};return l(),(o,a)=>{const p=R,C=$,b=P,_=x,i=T,k=L,V=N,A=O,S=U;return f(),J("div",null,[e(C,{class:"!border-none",shadow:"never"},{default:u(()=>[e(p,{type:"warning",title:"\u6E29\u99A8\u63D0\u793A\uFF1A1.\u7C89\u4E1D\u5728\u516C\u4F17\u53F7\u53D1\u9001\u5185\u5BB9\u65F6\uFF0C\u7CFB\u7EDF\u65E0\u6CD5\u5339\u914D\u60C5\u51B5\u4E0B\u53D1\u9001\u542F\u7528\u7684\u9ED8\u8BA4\u6587\u672C\u56DE\u590D\uFF1B2.\u540C\u65F6\u53EA\u80FD\u542F\u7528\u4E00\u4E2A\u9ED8\u8BA4\u56DE\u590D\u3002",closable:!1,"show-icon":""})]),_:1}),e(C,{class:"!border-none mt-4",shadow:"never"},{default:u(()=>[D("div",null,[e(_,{class:"mb-4",type:"primary",onClick:a[0]||(a[0]=t=>g())},{icon:u(()=>[e(b,{name:"el-icon-Plus"})]),default:u(()=>[d(" \u65B0\u589E ")]),_:1})]),W((f(),F(V,{size:"large",data:n(s).lists},{default:u(()=>[e(i,{label:"\u89C4\u5219\u540D\u79F0",prop:"name","min-width":"120"}),e(i,{label:"\u56DE\u590D\u7C7B\u578B","min-width":"120"},{default:u(({row:t})=>[d(X(n(v)(t.content_type)),1)]),_:1}),e(i,{label:"\u56DE\u590D\u5185\u5BB9",prop:"content","min-width":"120"}),e(i,{label:"\u72B6\u6001","min-width":"120"},{default:u(({row:t})=>[e(k,{modelValue:t.status,"onUpdate:modelValue":c=>t.status=c,"active-value":1,"inactive-value":0,onChange:c=>B(t.id)},null,8,["modelValue","onUpdate:modelValue","onChange"])]),_:1}),e(i,{label:"\u6392\u5E8F",prop:"sort","min-width":"120"}),e(i,{label:"\u64CD\u4F5C",width:"120",fixed:"right"},{default:u(({row:t})=>[e(_,{type:"primary",link:"",onClick:c=>y(t)},{default:u(()=>[d(" \u7F16\u8F91 ")]),_:2},1032,["onClick"]),e(_,{type:"danger",link:"",onClick:c=>w(t.id)},{default:u(()=>[d(" \u5220\u9664 ")]),_:2},1032,["onClick"])]),_:1})]),_:1},8,["data"])),[[S,n(s).loading]]),D("div",ee,[e(A,{modelValue:n(s),"onUpdate:modelValue":a[1]||(a[1]=t=>Y(s)?s.value=t:null),onChange:n(l)},null,8,["modelValue","onChange"])])]),_:1}),n(m)?(f(),F(K,{key:0,ref_key:"editRef",ref:r,onSuccess:n(l),onClose:a[2]||(a[2]=t=>m.value=!1)},null,8,["onSuccess"])):Z("",!0)])}}});export{ze as default}; diff --git a/public/admin/assets/default_reply.fa14912b.js b/public/admin/assets/default_reply.fa14912b.js new file mode 100644 index 000000000..5867e9b91 --- /dev/null +++ b/public/admin/assets/default_reply.fa14912b.js @@ -0,0 +1 @@ +import{S as R,I as $,w as x,O as T,t as L,P as N,Q as U}from"./element-plus.4328d892.js";import{_ as O}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{f as E,b as P}from"./index.ed71ac09.js";import{o as Q,d as j,e as z}from"./wx_oa.ec356b57.js";import{u as I}from"./usePaging.2ad8e1e6.js";import{_ as K}from"./edit.vue_vue_type_script_setup_true_lang.7913183a.js";import{d as M,s as q,r as G,e as H,o as f,c as J,U as e,L as u,a as D,R as d,M as W,K as F,u as n,S as X,k as Y,Q as Z,n as h}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.b940d6e3.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";const ee={class:"flex justify-end mt-4"},ze=M({__name:"default_reply",setup(te){const r=q(),m=G(!1),v=H(()=>o=>{switch(o){case 1:return"\u6587\u672C"}}),{pager:s,getLists:l}=I({fetchFun:z,params:{reply_type:3}}),g=async()=>{var o;m.value=!0,await h(),(o=r.value)==null||o.open("add",1)},y=async o=>{var a,p;m.value=!0,await h(),(a=r.value)==null||a.open("edit",1),(p=r.value)==null||p.getDetail(o)},w=async o=>{await E.confirm("\u786E\u5B9A\u8981\u5220\u9664\uFF1F"),await Q({id:o}),E.msgSuccess("\u5220\u9664\u6210\u529F"),l()},B=async o=>{try{await j({id:o}),l()}catch{l()}};return l(),(o,a)=>{const p=R,C=$,b=P,_=x,i=T,k=L,V=N,A=O,S=U;return f(),J("div",null,[e(C,{class:"!border-none",shadow:"never"},{default:u(()=>[e(p,{type:"warning",title:"\u6E29\u99A8\u63D0\u793A\uFF1A1.\u7C89\u4E1D\u5728\u516C\u4F17\u53F7\u53D1\u9001\u5185\u5BB9\u65F6\uFF0C\u7CFB\u7EDF\u65E0\u6CD5\u5339\u914D\u60C5\u51B5\u4E0B\u53D1\u9001\u542F\u7528\u7684\u9ED8\u8BA4\u6587\u672C\u56DE\u590D\uFF1B2.\u540C\u65F6\u53EA\u80FD\u542F\u7528\u4E00\u4E2A\u9ED8\u8BA4\u56DE\u590D\u3002",closable:!1,"show-icon":""})]),_:1}),e(C,{class:"!border-none mt-4",shadow:"never"},{default:u(()=>[D("div",null,[e(_,{class:"mb-4",type:"primary",onClick:a[0]||(a[0]=t=>g())},{icon:u(()=>[e(b,{name:"el-icon-Plus"})]),default:u(()=>[d(" \u65B0\u589E ")]),_:1})]),W((f(),F(V,{size:"large",data:n(s).lists},{default:u(()=>[e(i,{label:"\u89C4\u5219\u540D\u79F0",prop:"name","min-width":"120"}),e(i,{label:"\u56DE\u590D\u7C7B\u578B","min-width":"120"},{default:u(({row:t})=>[d(X(n(v)(t.content_type)),1)]),_:1}),e(i,{label:"\u56DE\u590D\u5185\u5BB9",prop:"content","min-width":"120"}),e(i,{label:"\u72B6\u6001","min-width":"120"},{default:u(({row:t})=>[e(k,{modelValue:t.status,"onUpdate:modelValue":c=>t.status=c,"active-value":1,"inactive-value":0,onChange:c=>B(t.id)},null,8,["modelValue","onUpdate:modelValue","onChange"])]),_:1}),e(i,{label:"\u6392\u5E8F",prop:"sort","min-width":"120"}),e(i,{label:"\u64CD\u4F5C",width:"120",fixed:"right"},{default:u(({row:t})=>[e(_,{type:"primary",link:"",onClick:c=>y(t)},{default:u(()=>[d(" \u7F16\u8F91 ")]),_:2},1032,["onClick"]),e(_,{type:"danger",link:"",onClick:c=>w(t.id)},{default:u(()=>[d(" \u5220\u9664 ")]),_:2},1032,["onClick"])]),_:1})]),_:1},8,["data"])),[[S,n(s).loading]]),D("div",ee,[e(A,{modelValue:n(s),"onUpdate:modelValue":a[1]||(a[1]=t=>Y(s)?s.value=t:null),onChange:n(l)},null,8,["modelValue","onChange"])])]),_:1}),n(m)?(f(),F(K,{key:0,ref_key:"editRef",ref:r,onSuccess:n(l),onClose:a[2]||(a[2]=t=>m.value=!1)},null,8,["onSuccess"])):Z("",!0)])}}});export{ze as default}; diff --git a/public/admin/assets/department.4e17bcb6.js b/public/admin/assets/department.4e17bcb6.js new file mode 100644 index 000000000..428673904 --- /dev/null +++ b/public/admin/assets/department.4e17bcb6.js @@ -0,0 +1 @@ +import{r as e}from"./index.ed71ac09.js";function p(t){return e.get({url:"/dept.dept/lists",params:t})}function r(t){return e.post({url:"/dept.dept/add",params:t})}function u(t){return e.post({url:"/dept.dept/edit",params:t})}function n(t){return e.post({url:"/dept.dept/delete",params:t})}function l(t){return e.get({url:"/dept.dept/detail",params:t})}function s(){return e.get({url:"/dept.dept/all"})}export{u as a,r as b,l as c,s as d,p as e,n as f}; diff --git a/public/admin/assets/department.5076f65d.js b/public/admin/assets/department.5076f65d.js new file mode 100644 index 000000000..3e5ebae33 --- /dev/null +++ b/public/admin/assets/department.5076f65d.js @@ -0,0 +1 @@ +import{r as e}from"./index.aa9bb752.js";function p(t){return e.get({url:"/dept.dept/lists",params:t})}function r(t){return e.post({url:"/dept.dept/add",params:t})}function u(t){return e.post({url:"/dept.dept/edit",params:t})}function n(t){return e.post({url:"/dept.dept/delete",params:t})}function l(t){return e.get({url:"/dept.dept/detail",params:t})}function s(){return e.get({url:"/dept.dept/all"})}export{u as a,r as b,l as c,s as d,p as e,n as f}; diff --git a/public/admin/assets/department.ea28aaf8.js b/public/admin/assets/department.ea28aaf8.js new file mode 100644 index 000000000..13e460760 --- /dev/null +++ b/public/admin/assets/department.ea28aaf8.js @@ -0,0 +1 @@ +import{r as e}from"./index.37f7aea6.js";function p(t){return e.get({url:"/dept.dept/lists",params:t})}function r(t){return e.post({url:"/dept.dept/add",params:t})}function u(t){return e.post({url:"/dept.dept/edit",params:t})}function n(t){return e.post({url:"/dept.dept/delete",params:t})}function l(t){return e.get({url:"/dept.dept/detail",params:t})}function s(){return e.get({url:"/dept.dept/all"})}export{u as a,r as b,l as c,s as d,p as e,n as f}; diff --git a/public/admin/assets/detail copy.2b0d408e.js b/public/admin/assets/detail copy.2b0d408e.js new file mode 100644 index 000000000..1de183388 --- /dev/null +++ b/public/admin/assets/detail copy.2b0d408e.js @@ -0,0 +1 @@ +import{T as P,I as N,o as q,w as M,C as S,a1 as U,a2 as V,D as I}from"./element-plus.4328d892.js";import{_ as T}from"./index.vue_vue_type_script_setup_true_lang.dc835bba.js";import{m as z,b as H}from"./index.ed71ac09.js";import{u as K}from"./vue-router.9f65afb1.js";import{g as L,u as O,a as G}from"./consumer.5e9fbfa1.js";import{_ as J}from"./account-adjust.vue_vue_type_script_setup_true_lang.2709fbc4.js";import{d as h,$ as D,s as Q,af as W,o as d,c as X,U as e,L as t,u as s,a as _,R as u,S as i,M as F,K as b}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.b940d6e3.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";const Y={class:"bg-page flex py-5 mb-10 items-center"},Z={class:"basis-40 flex flex-col justify-center items-center"},ee=_("div",{class:"mb-2 text-tx-regular"},"\u7528\u6237\u5934\u50CF",-1),te={class:"basis-40 flex flex-col justify-center items-center"},ae=_("div",{class:"text-tx-regular"},"\u8D26\u6237\u4F59\u989D",-1),oe={class:"mt-2 flex items-center"},se=h({name:"consumerDetail"}),Le=h({...se,setup(le){const E=K(),o=D({avatar:"",channel:"",create_time:"",login_time:"",mobile:"",nickname:"",real_name:0,sex:0,sn:"",account:"",user_money:""}),p=D({show:!1,value:""}),A=Q(),C=async()=>{const l=await L({id:E.query.id});Object.keys(o).forEach(a=>{o[a]=l[a],a=="sex"&&(o[a]=Number(l[a]))})},v=async(l,a)=>{z(l)||(await O({id:E.query.id,field:a,value:l}),C())},g=l=>{p.show=!0,p.value=l},B=async l=>{await G({user_id:E.query.id,...l}),p.show=!1,C()};return C(),(l,a)=>{const k=P,w=N,j=q,c=M,m=S,r=U,y=H,x=T,$=V,R=I,f=W("perms");return d(),X("div",null,[e(w,{class:"!border-none",shadow:"never"},{default:t(()=>[e(k,{content:"\u7528\u6237\u8BE6\u60C5",onBack:a[0]||(a[0]=n=>l.$router.back())})]),_:1}),e(w,{class:"mt-4 !border-none",header:"\u57FA\u672C\u8D44\u6599",shadow:"never"},{default:t(()=>[e(R,{ref_key:"formRef",ref:A,class:"ls-form",model:s(o),"label-width":"120px"},{default:t(()=>[_("div",Y,[_("div",Z,[ee,e(j,{src:s(o).avatar,size:58},null,8,["src"])]),_("div",te,[ae,_("div",oe,[u(" \xA5"+i(s(o).user_money)+" ",1),F((d(),b(c,{type:"primary",link:"",onClick:a[1]||(a[1]=n=>g(s(o).user_money))},{default:t(()=>[u(" \u8C03\u6574 ")]),_:1})),[[f,["user.user/adjustMoney"]]])])])]),e(r,{span:24,class:"el-card pt-6"},{default:t(()=>[e($,null,{default:t(()=>[e(r,{span:12},{default:t(()=>[e(m,{label:"\u7528\u6237\u7F16\u53F7\uFF1A"},{default:t(()=>[u(i(s(o).sn),1)]),_:1})]),_:1}),e(r,{span:12},{default:t(()=>[e(m,{label:"\u7528\u6237\u6635\u79F0\uFF1A"},{default:t(()=>[u(i(s(o).nickname),1)]),_:1})]),_:1}),e(r,{span:12},{default:t(()=>[e(m,{label:"\u8D26\u53F7\uFF1A"},{default:t(()=>[u(i(s(o).account)+" ",1),F((d(),b(x,{class:"ml-[10px]",onConfirm:a[2]||(a[2]=n=>v(n,"account")),limit:32},{default:t(()=>[e(c,{type:"primary",link:""},{default:t(()=>[e(y,{name:"el-icon-EditPen"})]),_:1})]),_:1})),[[f,["user.user/edit"]]])]),_:1})]),_:1}),e(r,{span:12},{default:t(()=>[e(m,{label:"\u771F\u5B9E\u59D3\u540D\uFF1A"},{default:t(()=>[u(i(s(o).real_name||"-")+" ",1),F((d(),b(x,{class:"ml-[10px]",onConfirm:a[3]||(a[3]=n=>v(n,"real_name")),limit:32},{default:t(()=>[e(c,{type:"primary",link:""},{default:t(()=>[e(y,{name:"el-icon-EditPen"})]),_:1})]),_:1})),[[f,["user.user/edit"]]])]),_:1})]),_:1}),e(r,{span:12},{default:t(()=>[e(m,{label:"\u6027\u522B\uFF1A"},{default:t(()=>[u(i(s(o).sex)+" ",1),F((d(),b(x,{class:"ml-[10px]",type:"select",options:[{label:"\u672A\u77E5",value:0},{label:"\u7537",value:1},{label:"\u5973",value:2}],onConfirm:a[4]||(a[4]=n=>v(n,"sex"))},{default:t(()=>[e(c,{type:"primary",link:""},{default:t(()=>[e(y,{name:"el-icon-EditPen"})]),_:1})]),_:1})),[[f,["user.user/edit"]]])]),_:1})]),_:1}),e(r,{span:12},{default:t(()=>[e(m,{label:"\u8054\u7CFB\u7535\u8BDD\uFF1A"},{default:t(()=>[u(i(s(o).mobile||"-")+" ",1),F((d(),b(x,{class:"ml-[10px]",type:"number",onConfirm:a[5]||(a[5]=n=>v(n,"mobile"))},{default:t(()=>[e(c,{type:"primary",link:""},{default:t(()=>[e(y,{name:"el-icon-EditPen"})]),_:1})]),_:1})),[[f,["user.user/edit"]]])]),_:1})]),_:1}),e(r,{span:12},{default:t(()=>[e(m,{label:"\u6CE8\u518C\u6765\u6E90\uFF1A"},{default:t(()=>[u(i(s(o).channel),1)]),_:1})]),_:1}),e(r,{span:12},{default:t(()=>[e(m,{label:"\u6CE8\u518C\u65F6\u95F4\uFF1A"},{default:t(()=>[u(i(s(o).create_time),1)]),_:1})]),_:1}),e(r,{span:12},{default:t(()=>[e(m,{label:"\u6700\u8FD1\u767B\u5F55\u65F6\u95F4\uFF1A"},{default:t(()=>[u(i(s(o).login_time),1)]),_:1})]),_:1})]),_:1})]),_:1})]),_:1},8,["model"])]),_:1}),e(J,{show:s(p).show,"onUpdate:show":a[6]||(a[6]=n=>s(p).show=n),value:s(p).value,onConfirm:B},null,8,["show","value"])])}}});export{Le as default}; diff --git a/public/admin/assets/detail copy.52bf3f86.js b/public/admin/assets/detail copy.52bf3f86.js new file mode 100644 index 000000000..55cd2218a --- /dev/null +++ b/public/admin/assets/detail copy.52bf3f86.js @@ -0,0 +1 @@ +import{T as P,I as N,o as q,w as M,C as S,a1 as U,a2 as V,D as I}from"./element-plus.4328d892.js";import{_ as T}from"./index.vue_vue_type_script_setup_true_lang.dc835bba.js";import{m as z,b as H}from"./index.aa9bb752.js";import{u as K}from"./vue-router.9f65afb1.js";import{g as L,u as O,a as G}from"./consumer.d25e26af.js";import{_ as J}from"./account-adjust.vue_vue_type_script_setup_true_lang.99dff1dd.js";import{d as h,$ as D,s as Q,af as W,o as d,c as X,U as e,L as t,u as s,a as _,R as u,S as i,M as F,K as b}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.fa872673.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";const Y={class:"bg-page flex py-5 mb-10 items-center"},Z={class:"basis-40 flex flex-col justify-center items-center"},ee=_("div",{class:"mb-2 text-tx-regular"},"\u7528\u6237\u5934\u50CF",-1),te={class:"basis-40 flex flex-col justify-center items-center"},ae=_("div",{class:"text-tx-regular"},"\u8D26\u6237\u4F59\u989D",-1),oe={class:"mt-2 flex items-center"},se=h({name:"consumerDetail"}),Le=h({...se,setup(le){const E=K(),o=D({avatar:"",channel:"",create_time:"",login_time:"",mobile:"",nickname:"",real_name:0,sex:0,sn:"",account:"",user_money:""}),p=D({show:!1,value:""}),A=Q(),C=async()=>{const l=await L({id:E.query.id});Object.keys(o).forEach(a=>{o[a]=l[a],a=="sex"&&(o[a]=Number(l[a]))})},v=async(l,a)=>{z(l)||(await O({id:E.query.id,field:a,value:l}),C())},g=l=>{p.show=!0,p.value=l},B=async l=>{await G({user_id:E.query.id,...l}),p.show=!1,C()};return C(),(l,a)=>{const k=P,w=N,j=q,c=M,m=S,r=U,y=H,x=T,$=V,R=I,f=W("perms");return d(),X("div",null,[e(w,{class:"!border-none",shadow:"never"},{default:t(()=>[e(k,{content:"\u7528\u6237\u8BE6\u60C5",onBack:a[0]||(a[0]=n=>l.$router.back())})]),_:1}),e(w,{class:"mt-4 !border-none",header:"\u57FA\u672C\u8D44\u6599",shadow:"never"},{default:t(()=>[e(R,{ref_key:"formRef",ref:A,class:"ls-form",model:s(o),"label-width":"120px"},{default:t(()=>[_("div",Y,[_("div",Z,[ee,e(j,{src:s(o).avatar,size:58},null,8,["src"])]),_("div",te,[ae,_("div",oe,[u(" \xA5"+i(s(o).user_money)+" ",1),F((d(),b(c,{type:"primary",link:"",onClick:a[1]||(a[1]=n=>g(s(o).user_money))},{default:t(()=>[u(" \u8C03\u6574 ")]),_:1})),[[f,["user.user/adjustMoney"]]])])])]),e(r,{span:24,class:"el-card pt-6"},{default:t(()=>[e($,null,{default:t(()=>[e(r,{span:12},{default:t(()=>[e(m,{label:"\u7528\u6237\u7F16\u53F7\uFF1A"},{default:t(()=>[u(i(s(o).sn),1)]),_:1})]),_:1}),e(r,{span:12},{default:t(()=>[e(m,{label:"\u7528\u6237\u6635\u79F0\uFF1A"},{default:t(()=>[u(i(s(o).nickname),1)]),_:1})]),_:1}),e(r,{span:12},{default:t(()=>[e(m,{label:"\u8D26\u53F7\uFF1A"},{default:t(()=>[u(i(s(o).account)+" ",1),F((d(),b(x,{class:"ml-[10px]",onConfirm:a[2]||(a[2]=n=>v(n,"account")),limit:32},{default:t(()=>[e(c,{type:"primary",link:""},{default:t(()=>[e(y,{name:"el-icon-EditPen"})]),_:1})]),_:1})),[[f,["user.user/edit"]]])]),_:1})]),_:1}),e(r,{span:12},{default:t(()=>[e(m,{label:"\u771F\u5B9E\u59D3\u540D\uFF1A"},{default:t(()=>[u(i(s(o).real_name||"-")+" ",1),F((d(),b(x,{class:"ml-[10px]",onConfirm:a[3]||(a[3]=n=>v(n,"real_name")),limit:32},{default:t(()=>[e(c,{type:"primary",link:""},{default:t(()=>[e(y,{name:"el-icon-EditPen"})]),_:1})]),_:1})),[[f,["user.user/edit"]]])]),_:1})]),_:1}),e(r,{span:12},{default:t(()=>[e(m,{label:"\u6027\u522B\uFF1A"},{default:t(()=>[u(i(s(o).sex)+" ",1),F((d(),b(x,{class:"ml-[10px]",type:"select",options:[{label:"\u672A\u77E5",value:0},{label:"\u7537",value:1},{label:"\u5973",value:2}],onConfirm:a[4]||(a[4]=n=>v(n,"sex"))},{default:t(()=>[e(c,{type:"primary",link:""},{default:t(()=>[e(y,{name:"el-icon-EditPen"})]),_:1})]),_:1})),[[f,["user.user/edit"]]])]),_:1})]),_:1}),e(r,{span:12},{default:t(()=>[e(m,{label:"\u8054\u7CFB\u7535\u8BDD\uFF1A"},{default:t(()=>[u(i(s(o).mobile||"-")+" ",1),F((d(),b(x,{class:"ml-[10px]",type:"number",onConfirm:a[5]||(a[5]=n=>v(n,"mobile"))},{default:t(()=>[e(c,{type:"primary",link:""},{default:t(()=>[e(y,{name:"el-icon-EditPen"})]),_:1})]),_:1})),[[f,["user.user/edit"]]])]),_:1})]),_:1}),e(r,{span:12},{default:t(()=>[e(m,{label:"\u6CE8\u518C\u6765\u6E90\uFF1A"},{default:t(()=>[u(i(s(o).channel),1)]),_:1})]),_:1}),e(r,{span:12},{default:t(()=>[e(m,{label:"\u6CE8\u518C\u65F6\u95F4\uFF1A"},{default:t(()=>[u(i(s(o).create_time),1)]),_:1})]),_:1}),e(r,{span:12},{default:t(()=>[e(m,{label:"\u6700\u8FD1\u767B\u5F55\u65F6\u95F4\uFF1A"},{default:t(()=>[u(i(s(o).login_time),1)]),_:1})]),_:1})]),_:1})]),_:1})]),_:1},8,["model"])]),_:1}),e(J,{show:s(p).show,"onUpdate:show":a[6]||(a[6]=n=>s(p).show=n),value:s(p).value,onConfirm:B},null,8,["show","value"])])}}});export{Le as default}; diff --git a/public/admin/assets/detail copy.bab4c973.js b/public/admin/assets/detail copy.bab4c973.js new file mode 100644 index 000000000..3312151d8 --- /dev/null +++ b/public/admin/assets/detail copy.bab4c973.js @@ -0,0 +1 @@ +import{T as P,I as N,o as q,w as M,C as S,a1 as U,a2 as V,D as I}from"./element-plus.4328d892.js";import{_ as T}from"./index.vue_vue_type_script_setup_true_lang.dc835bba.js";import{m as z,b as H}from"./index.37f7aea6.js";import{u as K}from"./vue-router.9f65afb1.js";import{g as L,u as O,a as G}from"./consumer.e5ac2901.js";import{_ as J}from"./account-adjust.vue_vue_type_script_setup_true_lang.b96ecb1d.js";import{d as h,$ as D,s as Q,af as W,o as d,c as X,U as e,L as t,u as s,a as _,R as u,S as i,M as F,K as b}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.5759a1a6.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";const Y={class:"bg-page flex py-5 mb-10 items-center"},Z={class:"basis-40 flex flex-col justify-center items-center"},ee=_("div",{class:"mb-2 text-tx-regular"},"\u7528\u6237\u5934\u50CF",-1),te={class:"basis-40 flex flex-col justify-center items-center"},ae=_("div",{class:"text-tx-regular"},"\u8D26\u6237\u4F59\u989D",-1),oe={class:"mt-2 flex items-center"},se=h({name:"consumerDetail"}),Le=h({...se,setup(le){const E=K(),o=D({avatar:"",channel:"",create_time:"",login_time:"",mobile:"",nickname:"",real_name:0,sex:0,sn:"",account:"",user_money:""}),p=D({show:!1,value:""}),A=Q(),C=async()=>{const l=await L({id:E.query.id});Object.keys(o).forEach(a=>{o[a]=l[a],a=="sex"&&(o[a]=Number(l[a]))})},v=async(l,a)=>{z(l)||(await O({id:E.query.id,field:a,value:l}),C())},g=l=>{p.show=!0,p.value=l},B=async l=>{await G({user_id:E.query.id,...l}),p.show=!1,C()};return C(),(l,a)=>{const k=P,w=N,j=q,c=M,m=S,r=U,y=H,x=T,$=V,R=I,f=W("perms");return d(),X("div",null,[e(w,{class:"!border-none",shadow:"never"},{default:t(()=>[e(k,{content:"\u7528\u6237\u8BE6\u60C5",onBack:a[0]||(a[0]=n=>l.$router.back())})]),_:1}),e(w,{class:"mt-4 !border-none",header:"\u57FA\u672C\u8D44\u6599",shadow:"never"},{default:t(()=>[e(R,{ref_key:"formRef",ref:A,class:"ls-form",model:s(o),"label-width":"120px"},{default:t(()=>[_("div",Y,[_("div",Z,[ee,e(j,{src:s(o).avatar,size:58},null,8,["src"])]),_("div",te,[ae,_("div",oe,[u(" \xA5"+i(s(o).user_money)+" ",1),F((d(),b(c,{type:"primary",link:"",onClick:a[1]||(a[1]=n=>g(s(o).user_money))},{default:t(()=>[u(" \u8C03\u6574 ")]),_:1})),[[f,["user.user/adjustMoney"]]])])])]),e(r,{span:24,class:"el-card pt-6"},{default:t(()=>[e($,null,{default:t(()=>[e(r,{span:12},{default:t(()=>[e(m,{label:"\u7528\u6237\u7F16\u53F7\uFF1A"},{default:t(()=>[u(i(s(o).sn),1)]),_:1})]),_:1}),e(r,{span:12},{default:t(()=>[e(m,{label:"\u7528\u6237\u6635\u79F0\uFF1A"},{default:t(()=>[u(i(s(o).nickname),1)]),_:1})]),_:1}),e(r,{span:12},{default:t(()=>[e(m,{label:"\u8D26\u53F7\uFF1A"},{default:t(()=>[u(i(s(o).account)+" ",1),F((d(),b(x,{class:"ml-[10px]",onConfirm:a[2]||(a[2]=n=>v(n,"account")),limit:32},{default:t(()=>[e(c,{type:"primary",link:""},{default:t(()=>[e(y,{name:"el-icon-EditPen"})]),_:1})]),_:1})),[[f,["user.user/edit"]]])]),_:1})]),_:1}),e(r,{span:12},{default:t(()=>[e(m,{label:"\u771F\u5B9E\u59D3\u540D\uFF1A"},{default:t(()=>[u(i(s(o).real_name||"-")+" ",1),F((d(),b(x,{class:"ml-[10px]",onConfirm:a[3]||(a[3]=n=>v(n,"real_name")),limit:32},{default:t(()=>[e(c,{type:"primary",link:""},{default:t(()=>[e(y,{name:"el-icon-EditPen"})]),_:1})]),_:1})),[[f,["user.user/edit"]]])]),_:1})]),_:1}),e(r,{span:12},{default:t(()=>[e(m,{label:"\u6027\u522B\uFF1A"},{default:t(()=>[u(i(s(o).sex)+" ",1),F((d(),b(x,{class:"ml-[10px]",type:"select",options:[{label:"\u672A\u77E5",value:0},{label:"\u7537",value:1},{label:"\u5973",value:2}],onConfirm:a[4]||(a[4]=n=>v(n,"sex"))},{default:t(()=>[e(c,{type:"primary",link:""},{default:t(()=>[e(y,{name:"el-icon-EditPen"})]),_:1})]),_:1})),[[f,["user.user/edit"]]])]),_:1})]),_:1}),e(r,{span:12},{default:t(()=>[e(m,{label:"\u8054\u7CFB\u7535\u8BDD\uFF1A"},{default:t(()=>[u(i(s(o).mobile||"-")+" ",1),F((d(),b(x,{class:"ml-[10px]",type:"number",onConfirm:a[5]||(a[5]=n=>v(n,"mobile"))},{default:t(()=>[e(c,{type:"primary",link:""},{default:t(()=>[e(y,{name:"el-icon-EditPen"})]),_:1})]),_:1})),[[f,["user.user/edit"]]])]),_:1})]),_:1}),e(r,{span:12},{default:t(()=>[e(m,{label:"\u6CE8\u518C\u6765\u6E90\uFF1A"},{default:t(()=>[u(i(s(o).channel),1)]),_:1})]),_:1}),e(r,{span:12},{default:t(()=>[e(m,{label:"\u6CE8\u518C\u65F6\u95F4\uFF1A"},{default:t(()=>[u(i(s(o).create_time),1)]),_:1})]),_:1}),e(r,{span:12},{default:t(()=>[e(m,{label:"\u6700\u8FD1\u767B\u5F55\u65F6\u95F4\uFF1A"},{default:t(()=>[u(i(s(o).login_time),1)]),_:1})]),_:1})]),_:1})]),_:1})]),_:1},8,["model"])]),_:1}),e(J,{show:s(p).show,"onUpdate:show":a[6]||(a[6]=n=>s(p).show=n),value:s(p).value,onConfirm:B},null,8,["show","value"])])}}});export{Le as default}; diff --git a/public/admin/assets/detail.41c27cbc.js b/public/admin/assets/detail.41c27cbc.js new file mode 100644 index 000000000..3e5d8cb75 --- /dev/null +++ b/public/admin/assets/detail.41c27cbc.js @@ -0,0 +1 @@ +import{B as aa,C as ea,w as la,D as ta,I as oa,O as va,P as Fa,Q as ka,T as Ba,J as Va,k as E,c as Ca,a1 as ga,M as Ea,N as ha,a2 as wa}from"./element-plus.4328d892.js";import{a as Aa,u as Da}from"./vue-router.9f65afb1.js";import{g as qa,b as Ua,a as xa,i as La}from"./consumer.5e9fbfa1.js";import{a as Oa,b as Sa,c as Ta,d as Pa}from"./common.ac78ede6.js";import{d as ja}from"./dict.6c560e38.js";import{_ as Ra}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{u as $a}from"./usePaging.2ad8e1e6.js";import{e as Ia,a as Ma,f as Na}from"./index.ed71ac09.js";import{j as za}from"./company.8a1c349a.js";import{d as Q,$ as N,o as d,c as _,U as e,L as t,u as a,R as z,M as Qa,K as r,a as g,k as ua,C as Ha,r as U,s as Ja,a4 as Ka,T as P,a7 as j,Q as x}from"./@vue.51d7f2d8.js";import"./lodash.08438971.js";import{_ as Ga}from"./account-adjust.vue_vue_type_script_setup_true_lang.2709fbc4.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./axios.105476b3.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.b940d6e3.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";const Wa={class:"mt-4"},Xa={class:"flex mt-4 justify-end"},Ya=Q({name:"companyLists"});({...Ya});const Za=g("div",{style:{"font-size":"1.2rem",margin:"10px 0"}},"\u57FA\u672C\u4FE1\u606F\u521B\u5EFA",-1),ae={class:"headimg"},ee=["src"],le=g("div",{style:{"font-size":"1.2rem",margin:"10px 0"}},"\u8D44\u8D28\u4FE1\u606F",-1),te={style:{display:"flex","justify-content":"space-between"}},oe=["src"],ue=["src"],ne=["src"],de=["src"],se=["src"],re=["src"],ie=Q({name:"consumerDetail"}),al=Q({...ie,setup(na){const v=Ha("base_url");Ia(),Aa();const f=Da(),i=U(!0),l=N({id:"",sex:"",id_card:"",nickname:"",province:"",city:"",area:"",street:"",address:"",account:"",is_contract:0,party_b_name:"",party_b:"",qualification:{id_card:"",id_card_b:"",car_card:"",car_card_b:"",bank_account:"",bank_account_b:""},contract_type:"",file:"",avatar:"",multipoint_login:1,contract:{url:""}}),R=U(!1),A=N({show:!1,value:""}),b=N({provinceOptions:[],cityOptions:[],areaOptions:[],streetOptions:[],dictTypeLists:[],contract_type:[],contract:[]}),$=Ja();U(!1),U(!1);const p=Ma(),I=async()=>{const o=await ja({type_id:7});b.contract_type=o.lists},V=U(null);I();const L=async()=>{var n,O,S,k,B,y;const o=await qa({id:f.query.id});Object.keys(l).forEach(m=>{l[m]=o[m]}),V.value=f.query.mode,l.contract_type=(n=o.contract)==null?void 0:n.contract_type,l.party_b_name=(O=o.contract)==null?void 0:O.party_b_name,l.party_b=(S=o.contract)==null?void 0:S.party_b,l.file=(k=o.contract)==null?void 0:k.file,o.contract&&(D.value[0]={url:(B=o.contract)==null?void 0:B.file,name:(y=o.contract)!=null?y:"\u5408\u540C\u6587\u4EF6"}),await W(),await X(),await Y()},D=U([]),M=(o,n)=>{if(o.code==0){E.error(o.msg);return}l.qualification.id_card=o.data.uri},F=(o,n)=>{if(o.code==0){E.error(o.msg);return}l.avatar=o.data.uri},H=(o,n)=>{if(o.code==0){E.error(o.msg);return}l.qualification.id_card_b=o.data.uri},J=(o,n)=>{if(o.code==0){E.error(o.msg);return}l.qualification.car_card=o.data.uri},K=(o,n)=>{if(o.code==0){E.error(o.msg);return}l.qualification.car_card_b=o.data.uri},h=o=>!0,da=(o,n)=>{if(o.code==0){E.error(o.msg);return}l.qualification.bank_account=o.data.uri},sa=(o,n)=>{if(o.code==0){E.error(o.msg);return}l.qualification.bank_account_b=o.data.uri},ra=(o,n)=>{if(o.code==0){E.error(o.msg);return}l.file=o.data.uri,Ua({file:l.file,id:f.query.mdoeid}).then(O=>[V.value=!1])},G=o=>!0;function ia(o){W()}function ca(o){X()}function pa(o){Y()}function _a(o){l.street=o}const ma=async()=>{const o=await Oa({});b.provinceOptions=o},W=async()=>{const o=await Sa({city:l.province});b.cityOptions=o},X=async()=>{const o=await Ta({area:l.city});b.areaOptions=o},Y=async()=>{const o=await Pa({street:l.area});b.streetOptions=o},fa=async o=>{await xa({user_id:f.query.id,...o}),A.show=!1,L()},ba=()=>{const{contract_type:o}=l;La({party_b:f.query.id,contract_type:o,type:2}).then(n=>{Na.msgSuccess("\u53D1\u8D77\u6210\u529F\uFF0C\u7B49\u5F85\u5E73\u53F0\u98CE\u63A7\u90E8\u4E0A\u4F20\u5408\u540C")})};return L(),ma(),console.log(l),(o,n)=>{const O=Ba,S=oa,k=Ka("Plus"),B=Ca,y=Va,m=aa,s=ea,c=ga,w=Ea,q=ha,T=wa,Z=la,ya=ta;return d(),_("div",null,[e(S,{class:"!border-none",shadow:"never"},{default:t(()=>[e(O,{content:"\u7528\u6237\u8BE6\u60C5",onBack:n[0]||(n[0]=u=>o.$router.back())})]),_:1}),e(S,{class:"mt-4 !border-none",shadow:"never"},{default:t(()=>[e(ya,{ref_key:"formRef",ref:$,model:a(l),"label-width":"84px"},{default:t(()=>[Za,g("div",ae,[e(y,{modelValue:a(l).avatar,"onUpdate:modelValue":n[1]||(n[1]=u=>a(l).avatar=u),class:"avatar-uploader-head",disabled:a(i),data:{cid:1},headers:{Token:a(p).token},action:a(v)+"/upload/image","show-file-list":!1,"on-success":F},{default:t(()=>[a(l).avatar?(d(),_("img",{key:0,src:a(l).avatar,class:"avatar"},null,8,ee)):(d(),r(B,{key:1,class:"avatar-uploader-icon"},{default:t(()=>[e(k)]),_:1}))]),_:1},8,["modelValue","disabled","headers","action"])]),e(c,{class:"pt-6 !border-none"},{default:t(()=>[e(T,null,{default:t(()=>[e(c,{span:11},{default:t(()=>[e(s,{label:"\u59D3\u540D",prop:"nickname"},{default:t(()=>[e(m,{modelValue:a(l).nickname,"onUpdate:modelValue":n[2]||(n[2]=u=>a(l).nickname=u),disabled:a(i),placeholder:"\u8BF7\u8F93\u5165\u59D3\u540D",clearable:"",style:{width:"100%"}},null,8,["modelValue","disabled"])]),_:1})]),_:1}),e(c,{span:13},{default:t(()=>[e(s,{label:"\u6027\u522B",prop:"sex"},{default:t(()=>[e(q,{modelValue:a(l).sex,"onUpdate:modelValue":n[3]||(n[3]=u=>a(l).sex=u),disabled:a(i),placeholder:"\u8BF7\u9009\u62E9\u6027\u522B",style:{width:"100%"}},{default:t(()=>[e(w,{label:"\u7537",value:1}),e(w,{label:"\u5973",value:2})]),_:1},8,["modelValue","disabled"])]),_:1})]),_:1})]),_:1}),e(T,null,{default:t(()=>[e(c,{span:11},{default:t(()=>[e(s,{label:"\u8EAB\u4EFD\u8BC1\u53F7",prop:"id_card"},{default:t(()=>[e(m,{modelValue:a(l).id_card,"onUpdate:modelValue":n[4]||(n[4]=u=>a(l).id_card=u),disabled:a(i),placeholder:"\u8BF7\u8F93\u5165\u8EAB\u4EFD\u8BC1\u53F7",clearable:"",style:{width:"100%"}},null,8,["modelValue","disabled"])]),_:1})]),_:1}),e(c,{span:13},{default:t(()=>[e(s,{label:"\u8054\u7CFB\u7535\u8BDD",prop:"account"},{default:t(()=>[e(m,{modelValue:a(l).account,"onUpdate:modelValue":n[5]||(n[5]=u=>a(l).account=u),placeholder:"\u8BF7\u8F93\u5165\u8054\u7CFB\u7535\u8BDD",disabled:a(i),clearable:"",style:{width:"100%"}},null,8,["modelValue","disabled"])]),_:1})]),_:1})]),_:1}),e(T,null,{default:t(()=>[e(s,{label:"\u7701",prop:"province",style:{flex:"1"}},{default:t(()=>[e(q,{modelValue:a(l).province,"onUpdate:modelValue":n[6]||(n[6]=u=>a(l).province=u),placeholder:"\u8BF7\u9009\u62E9\u7701",disabled:a(i),clearable:"",onChange:ia,style:{width:"100%"}},{default:t(()=>[(d(!0),_(P,null,j(a(b).provinceOptions,(u,C)=>(d(),r(w,{key:C,label:u.province_name,value:u.province_code},null,8,["label","value"]))),128))]),_:1},8,["modelValue","disabled"])]),_:1}),e(s,{label:"\u5E02",prop:"city",style:{flex:"1"}},{default:t(()=>[e(q,{modelValue:a(l).city,"onUpdate:modelValue":n[7]||(n[7]=u=>a(l).city=u),placeholder:"\u8BF7\u9009\u62E9\u5E02",clearable:"",disabled:a(i),onChange:ca,style:{width:"100%"}},{default:t(()=>[(d(!0),_(P,null,j(a(b).cityOptions,(u,C)=>(d(),r(w,{key:C,label:u.city_name,value:u.city_code},null,8,["label","value"]))),128))]),_:1},8,["modelValue","disabled"])]),_:1}),e(s,{label:"\u533A",prop:"area",style:{flex:"1"}},{default:t(()=>[e(q,{modelValue:a(l).area,"onUpdate:modelValue":n[8]||(n[8]=u=>a(l).area=u),placeholder:"\u8BF7\u9009\u62E9\u533A",disabled:a(i),clearable:"",onChange:pa,style:{width:"100%"}},{default:t(()=>[(d(!0),_(P,null,j(a(b).areaOptions,(u,C)=>(d(),r(w,{key:C,label:u.area_name,value:u.area_code},null,8,["label","value"]))),128))]),_:1},8,["modelValue","disabled"])]),_:1}),e(s,{label:"\u9547",prop:"street",style:{flex:"1"}},{default:t(()=>[e(q,{modelValue:a(l).street,"onUpdate:modelValue":n[9]||(n[9]=u=>a(l).street=u),placeholder:"\u8BF7\u9009\u62E9\u9547",disabled:a(i),clearable:"",onChange:_a,style:{width:"100%"}},{default:t(()=>[(d(!0),_(P,null,j(a(b).streetOptions,(u,C)=>(d(),r(w,{key:C,label:u.street_name,value:u.street_code},null,8,["label","value"]))),128))]),_:1},8,["modelValue","disabled"])]),_:1}),e(s,{label:"\u6751\u793E\u5C0F\u961F",prop:"address",style:{flex:"1.5"}},{default:t(()=>[e(m,{modelValue:a(l).address,"onUpdate:modelValue":n[10]||(n[10]=u=>a(l).address=u),disabled:a(i),placeholder:"\u8BF7\u8F93\u5165\u6751\u793E\u5C0F\u961F",clearable:"",style:{width:"100%"}},null,8,["modelValue","disabled"])]),_:1})]),_:1})]),_:1}),e(c,{span:24,style:{"margin-top":"1vh"}}),le,g("div",te,[g("div",null,[e(s,{label:"\u8EAB\u4EFD\u8BC1",prop:"id_card"},{default:t(()=>[e(y,{modelValue:a(l).qualification.id_card,"onUpdate:modelValue":n[11]||(n[11]=u=>a(l).qualification.id_card=u),disabled:a(i),class:"avatar-uploader pl-3",data:{cid:1},headers:{Token:a(p).token},action:a(v)+"/upload/image","show-file-list":!1,"on-success":M},{default:t(()=>[a(l).qualification.id_card?(d(),_("img",{key:0,src:a(l).qualification.id_card,class:"avatar"},null,8,oe)):(d(),r(B,{key:1,class:"avatar-uploader-icon"},{default:t(()=>[e(k)]),_:1}))]),_:1},8,["modelValue","disabled","headers","action"]),e(y,{modelValue:a(l).qualification.id_card_b,"onUpdate:modelValue":n[12]||(n[12]=u=>a(l).qualification.id_card_b=u),disabled:a(i),class:"avatar-uploader pl-3",data:{cid:1},headers:{Token:a(p).token},action:a(v)+"/upload/image","show-file-list":!1,"on-success":H},{default:t(()=>[a(l).qualification.id_card_b?(d(),_("img",{key:0,src:a(l).qualification.id_card_b,class:"avatar"},null,8,ue)):(d(),r(B,{key:1,class:"avatar-uploader-icon"},{default:t(()=>[e(k)]),_:1}))]),_:1},8,["modelValue","disabled","headers","action"])]),_:1})]),g("div",null,[e(s,{label:"\u884C\u9A76\u8BC1",prop:"car_card"},{default:t(()=>[e(y,{modelValue:a(l).qualification.car_card,"onUpdate:modelValue":n[13]||(n[13]=u=>a(l).qualification.car_card=u),disabled:a(i),class:"avatar-uploader pl-3",data:{cid:1},headers:{Token:a(p).token},action:a(v)+"/upload/image","show-file-list":!1,"on-success":J},{default:t(()=>[a(l).qualification.car_card?(d(),_("img",{key:0,src:a(l).qualification.car_card,class:"avatar"},null,8,ne)):(d(),r(B,{key:1,class:"avatar-uploader-icon"},{default:t(()=>[e(k)]),_:1}))]),_:1},8,["modelValue","disabled","headers","action"]),e(y,{modelValue:a(l).qualification.car_card_b,"onUpdate:modelValue":n[14]||(n[14]=u=>a(l).qualification.car_card_b=u),disabled:a(i),class:"avatar-uploader pl-3",data:{cid:1},headers:{Token:a(p).token},action:a(v)+"/upload/image","show-file-list":!1,"on-success":K,"before-upload":h},{default:t(()=>[a(l).qualification.car_card_b?(d(),_("img",{key:0,src:a(l).qualification.car_card_b,class:"avatar"},null,8,de)):(d(),r(B,{key:1,class:"avatar-uploader-icon"},{default:t(()=>[e(k)]),_:1}))]),_:1},8,["modelValue","disabled","headers","action"])]),_:1})]),g("div",null,[e(s,{label:"\u94F6\u884C\u5361\u53F7",prop:"bank_account"},{default:t(()=>[e(y,{modelValue:a(l).qualification.bank_account,"onUpdate:modelValue":n[15]||(n[15]=u=>a(l).qualification.bank_account=u),disabled:a(i),class:"avatar-uploader pl-3",data:{cid:1},headers:{Token:a(p).token},action:a(v)+"/upload/image","show-file-list":!1,"on-success":da,"before-upload":G},{default:t(()=>[a(l).qualification.bank_account?(d(),_("img",{key:0,src:a(l).qualification.bank_account,class:"avatar"},null,8,se)):(d(),r(B,{key:1,class:"avatar-uploader-icon"},{default:t(()=>[e(k)]),_:1}))]),_:1},8,["modelValue","disabled","headers","action"]),e(y,{modelValue:a(l).qualification.bank_account_b,"onUpdate:modelValue":n[16]||(n[16]=u=>a(l).qualification.bank_account_b=u),disabled:a(i),class:"avatar-uploader pl-3",data:{cid:1},headers:{Token:a(p).token},action:a(v)+"/upload/image","show-file-list":!1,"on-success":sa,"before-upload":G},{default:t(()=>[a(l).qualification.bank_account_b?(d(),_("img",{key:0,src:a(l).qualification.bank_account_b,class:"avatar"},null,8,re)):(d(),r(B,{key:1,class:"avatar-uploader-icon"},{default:t(()=>[e(k)]),_:1}))]),_:1},8,["modelValue","disabled","headers","action"])]),_:1})])]),a(R)?(d(),r(c,{key:0,span:24},{default:t(()=>[e(T,null,{default:t(()=>[e(c,{span:12},{default:t(()=>[e(s,{label:"\u7B7E\u7EA6\u59D3\u540D",prop:"name"},{default:t(()=>[e(m,{modelValue:a(l).nickname,"onUpdate:modelValue":n[17]||(n[17]=u=>a(l).nickname=u),placeholder:"\u8BF7\u8F93\u5165\u7B7E\u7EA6\u59D3\u540D",disabled:!0,clearable:"",style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(c,{span:12},{default:t(()=>[e(s,{label:"\u6027\u522B",prop:"sex"},{default:t(()=>[e(m,{placeholder:"\u8BF7\u8F93\u5165\u6027\u522B",disabled:!0,clearable:"",style:{width:"100%"},value:a(l).sex=="1"?"\u7537":"\u5973"},null,8,["value"])]),_:1})]),_:1}),e(c,{span:12},{default:t(()=>[e(s,{label:"\u8EAB\u4EFD\u8BC1\u53F7",prop:"id_card"},{default:t(()=>[e(m,{modelValue:a(l).id_card,"onUpdate:modelValue":n[18]||(n[18]=u=>a(l).id_card=u),placeholder:"\u8BF7\u8F93\u5165\u8EAB\u4EFD\u8BC1\u53F7",disabled:!0,clearable:"",style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(c,{span:12},{default:t(()=>[e(s,{label:"\u8054\u7CFB\u7535\u8BDD",prop:"account"},{default:t(()=>[e(m,{modelValue:a(l).account,"onUpdate:modelValue":n[19]||(n[19]=u=>a(l).account=u),placeholder:"\u8BF7\u8F93\u5165\u8054\u7CFB\u7535\u8BDD",disabled:!0,clearable:"",style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),a(l).name?(d(),r(c,{key:0,span:12},{default:t(()=>[e(s,{label:"\u8D26\u53F7"},{default:t(()=>[e(m,{modelValue:a(l).account,"onUpdate:modelValue":n[20]||(n[20]=u=>a(l).account=u),disabled:!0,clearable:"",style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1})):x("",!0),a(l).name?(d(),r(c,{key:1,span:12},{default:t(()=>[e(s,{label:"\u521D\u59CB\u5BC6\u7801",prop:"password"},{default:t(()=>[e(m,{"model-value":"m"+a(l).account,disabled:!0,clearable:"",style:{width:"100%"}},null,8,["model-value"])]),_:1})]),_:1})):x("",!0)]),_:1})]),_:1})):x("",!0),a(V)=="uplode"?(d(),r(c,{key:1,span:24},{default:t(()=>[e(s,{label:"\u5408\u540C\u4E0A\u4F20",prop:"field127"},{default:t(()=>[e(y,{headers:{Token:a(p).token},"file-list":a(D),"onUpdate:fileList":n[21]||(n[21]=u=>ua(D)?D.value=u:null),class:"upload-demo",action:a(v)+"/upload/file","on-success":ra,multiple:"",limit:1},{default:t(()=>[e(Z,{type:"primary"},{default:t(()=>[z("\u4E0A\u4F20")]),_:1})]),_:1},8,["headers","file-list","action"])]),_:1})]),_:1})):x("",!0),a(V)=="initiate"?(d(),r(c,{key:2,span:24,class:"pt-6"},{default:t(()=>[e(T,null,{default:t(()=>[e(c,{span:8},{default:t(()=>[e(s,{label:"\u5408\u540C\u7C7B\u578B",prop:"contract_type"},{default:t(()=>[e(c,{span:24},{default:t(()=>[e(q,{modelValue:a(l).contract_type,"onUpdate:modelValue":n[22]||(n[22]=u=>a(l).contract_type=u),placeholder:"\u8BF7\u9009\u62E9\u5408\u540C\u7C7B\u578B",clearable:"",style:{width:"100%"}},{default:t(()=>[(d(!0),_(P,null,j(a(b).contract_type,(u,C)=>(d(),r(w,{key:C,label:u.name,value:u.id},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1})]),_:1})]),_:1}),e(c,{span:4},{default:t(()=>[e(s,{prop:"field139"},{default:t(()=>[a(V)=="initiate"?(d(),r(Z,{key:0,type:"primary",onClick:ba},{default:t(()=>[z("\u53D1\u8D77\u5408\u540C")]),_:1})):x("",!0)]),_:1})]),_:1})]),_:1})]),_:1})):x("",!0)]),_:1},8,["model"])]),_:1}),e(Ga,{show:a(A).show,"onUpdate:show":n[23]||(n[23]=u=>a(A).show=u),value:a(A).value,onConfirm:fa},null,8,["show","value"])])}}});export{al as default}; diff --git a/public/admin/assets/detail.becaabf2.js b/public/admin/assets/detail.becaabf2.js new file mode 100644 index 000000000..d83a43948 --- /dev/null +++ b/public/admin/assets/detail.becaabf2.js @@ -0,0 +1 @@ +import{B as aa,C as ea,w as la,D as ta,I as oa,O as va,P as Fa,Q as ka,T as Ba,J as Va,k as E,c as Ca,a1 as ga,M as Ea,N as ha,a2 as wa}from"./element-plus.4328d892.js";import{a as Aa,u as Da}from"./vue-router.9f65afb1.js";import{g as qa,b as Ua,a as xa,i as La}from"./consumer.e5ac2901.js";import{a as Oa,b as Sa,c as Ta,d as Pa}from"./common.a58b263a.js";import{d as Ra}from"./dict.58face92.js";import{_ as $a}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{u as ja}from"./usePaging.2ad8e1e6.js";import{e as Ia,a as Ma,f as Na}from"./index.37f7aea6.js";import{k as za}from"./company.d1e8fc82.js";import{d as Q,$ as N,o as d,c as _,U as e,L as t,u as a,R as z,M as Qa,K as r,a as g,k as ua,C as Ha,r as U,s as Ja,a4 as Ka,T as P,a7 as R,Q as x}from"./@vue.51d7f2d8.js";import"./lodash.08438971.js";import{_ as Ga}from"./account-adjust.vue_vue_type_script_setup_true_lang.b96ecb1d.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./axios.105476b3.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.5759a1a6.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";const Wa={class:"mt-4"},Xa={class:"flex mt-4 justify-end"},Ya=Q({name:"companyLists"});({...Ya});const Za=g("div",{style:{"font-size":"1.2rem",margin:"10px 0"}},"\u57FA\u672C\u4FE1\u606F\u521B\u5EFA",-1),ae={class:"headimg"},ee=["src"],le=g("div",{style:{"font-size":"1.2rem",margin:"10px 0"}},"\u8D44\u8D28\u4FE1\u606F",-1),te={style:{display:"flex","justify-content":"space-between"}},oe=["src"],ue=["src"],ne=["src"],de=["src"],se=["src"],re=["src"],ie=Q({name:"consumerDetail"}),al=Q({...ie,setup(na){const v=Ha("base_url");Ia(),Aa();const f=Da(),i=U(!0),l=N({id:"",sex:"",id_card:"",nickname:"",province:"",city:"",area:"",street:"",address:"",account:"",is_contract:0,party_b_name:"",party_b:"",qualification:{id_card:"",id_card_b:"",car_card:"",car_card_b:"",bank_account:"",bank_account_b:""},contract_type:"",file:"",avatar:"",multipoint_login:1,contract:{url:""}}),$=U(!1),A=N({show:!1,value:""}),b=N({provinceOptions:[],cityOptions:[],areaOptions:[],streetOptions:[],dictTypeLists:[],contract_type:[],contract:[]}),j=Ja();U(!1),U(!1);const p=Ma(),I=async()=>{const o=await Ra({type_id:7});b.contract_type=o.lists},V=U(null);I();const L=async()=>{var n,O,S,k,B,y;const o=await qa({id:f.query.id});Object.keys(l).forEach(m=>{l[m]=o[m]}),V.value=f.query.mode,l.contract_type=(n=o.contract)==null?void 0:n.contract_type,l.party_b_name=(O=o.contract)==null?void 0:O.party_b_name,l.party_b=(S=o.contract)==null?void 0:S.party_b,l.file=(k=o.contract)==null?void 0:k.file,o.contract&&(D.value[0]={url:(B=o.contract)==null?void 0:B.file,name:(y=o.contract)!=null?y:"\u5408\u540C\u6587\u4EF6"}),await W(),await X(),await Y()},D=U([]),M=(o,n)=>{if(o.code==0){E.error(o.msg);return}l.qualification.id_card=o.data.uri},F=(o,n)=>{if(o.code==0){E.error(o.msg);return}l.avatar=o.data.uri},H=(o,n)=>{if(o.code==0){E.error(o.msg);return}l.qualification.id_card_b=o.data.uri},J=(o,n)=>{if(o.code==0){E.error(o.msg);return}l.qualification.car_card=o.data.uri},K=(o,n)=>{if(o.code==0){E.error(o.msg);return}l.qualification.car_card_b=o.data.uri},h=o=>!0,da=(o,n)=>{if(o.code==0){E.error(o.msg);return}l.qualification.bank_account=o.data.uri},sa=(o,n)=>{if(o.code==0){E.error(o.msg);return}l.qualification.bank_account_b=o.data.uri},ra=(o,n)=>{if(o.code==0){E.error(o.msg);return}l.file=o.data.uri,Ua({file:l.file,id:f.query.mdoeid}).then(O=>[V.value=!1])},G=o=>!0;function ia(o){W()}function ca(o){X()}function pa(o){Y()}function _a(o){l.street=o}const ma=async()=>{const o=await Oa({});b.provinceOptions=o},W=async()=>{const o=await Sa({city:l.province});b.cityOptions=o},X=async()=>{const o=await Ta({area:l.city});b.areaOptions=o},Y=async()=>{const o=await Pa({street:l.area});b.streetOptions=o},fa=async o=>{await xa({user_id:f.query.id,...o}),A.show=!1,L()},ba=()=>{const{contract_type:o}=l;La({party_b:f.query.id,contract_type:o,type:2}).then(n=>{Na.msgSuccess("\u53D1\u8D77\u6210\u529F\uFF0C\u7B49\u5F85\u5E73\u53F0\u98CE\u63A7\u90E8\u4E0A\u4F20\u5408\u540C")})};return L(),ma(),console.log(l),(o,n)=>{const O=Ba,S=oa,k=Ka("Plus"),B=Ca,y=Va,m=aa,s=ea,c=ga,w=Ea,q=ha,T=wa,Z=la,ya=ta;return d(),_("div",null,[e(S,{class:"!border-none",shadow:"never"},{default:t(()=>[e(O,{content:"\u7528\u6237\u8BE6\u60C5",onBack:n[0]||(n[0]=u=>o.$router.back())})]),_:1}),e(S,{class:"mt-4 !border-none",shadow:"never"},{default:t(()=>[e(ya,{ref_key:"formRef",ref:j,model:a(l),"label-width":"84px"},{default:t(()=>[Za,g("div",ae,[e(y,{modelValue:a(l).avatar,"onUpdate:modelValue":n[1]||(n[1]=u=>a(l).avatar=u),class:"avatar-uploader-head",disabled:a(i),data:{cid:1},headers:{Token:a(p).token},action:a(v)+"/upload/image","show-file-list":!1,"on-success":F},{default:t(()=>[a(l).avatar?(d(),_("img",{key:0,src:a(l).avatar,class:"avatar"},null,8,ee)):(d(),r(B,{key:1,class:"avatar-uploader-icon"},{default:t(()=>[e(k)]),_:1}))]),_:1},8,["modelValue","disabled","headers","action"])]),e(c,{class:"pt-6 !border-none"},{default:t(()=>[e(T,null,{default:t(()=>[e(c,{span:11},{default:t(()=>[e(s,{label:"\u59D3\u540D",prop:"nickname"},{default:t(()=>[e(m,{modelValue:a(l).nickname,"onUpdate:modelValue":n[2]||(n[2]=u=>a(l).nickname=u),disabled:a(i),placeholder:"\u8BF7\u8F93\u5165\u59D3\u540D",clearable:"",style:{width:"100%"}},null,8,["modelValue","disabled"])]),_:1})]),_:1}),e(c,{span:13},{default:t(()=>[e(s,{label:"\u6027\u522B",prop:"sex"},{default:t(()=>[e(q,{modelValue:a(l).sex,"onUpdate:modelValue":n[3]||(n[3]=u=>a(l).sex=u),disabled:a(i),placeholder:"\u8BF7\u9009\u62E9\u6027\u522B",style:{width:"100%"}},{default:t(()=>[e(w,{label:"\u7537",value:1}),e(w,{label:"\u5973",value:2})]),_:1},8,["modelValue","disabled"])]),_:1})]),_:1})]),_:1}),e(T,null,{default:t(()=>[e(c,{span:11},{default:t(()=>[e(s,{label:"\u8EAB\u4EFD\u8BC1\u53F7",prop:"id_card"},{default:t(()=>[e(m,{modelValue:a(l).id_card,"onUpdate:modelValue":n[4]||(n[4]=u=>a(l).id_card=u),disabled:a(i),placeholder:"\u8BF7\u8F93\u5165\u8EAB\u4EFD\u8BC1\u53F7",clearable:"",style:{width:"100%"}},null,8,["modelValue","disabled"])]),_:1})]),_:1}),e(c,{span:13},{default:t(()=>[e(s,{label:"\u8054\u7CFB\u7535\u8BDD",prop:"account"},{default:t(()=>[e(m,{modelValue:a(l).account,"onUpdate:modelValue":n[5]||(n[5]=u=>a(l).account=u),placeholder:"\u8BF7\u8F93\u5165\u8054\u7CFB\u7535\u8BDD",disabled:a(i),clearable:"",style:{width:"100%"}},null,8,["modelValue","disabled"])]),_:1})]),_:1})]),_:1}),e(T,null,{default:t(()=>[e(s,{label:"\u7701",prop:"province",style:{flex:"1"}},{default:t(()=>[e(q,{modelValue:a(l).province,"onUpdate:modelValue":n[6]||(n[6]=u=>a(l).province=u),placeholder:"\u8BF7\u9009\u62E9\u7701",disabled:a(i),clearable:"",onChange:ia,style:{width:"100%"}},{default:t(()=>[(d(!0),_(P,null,R(a(b).provinceOptions,(u,C)=>(d(),r(w,{key:C,label:u.province_name,value:u.province_code},null,8,["label","value"]))),128))]),_:1},8,["modelValue","disabled"])]),_:1}),e(s,{label:"\u5E02",prop:"city",style:{flex:"1"}},{default:t(()=>[e(q,{modelValue:a(l).city,"onUpdate:modelValue":n[7]||(n[7]=u=>a(l).city=u),placeholder:"\u8BF7\u9009\u62E9\u5E02",clearable:"",disabled:a(i),onChange:ca,style:{width:"100%"}},{default:t(()=>[(d(!0),_(P,null,R(a(b).cityOptions,(u,C)=>(d(),r(w,{key:C,label:u.city_name,value:u.city_code},null,8,["label","value"]))),128))]),_:1},8,["modelValue","disabled"])]),_:1}),e(s,{label:"\u533A",prop:"area",style:{flex:"1"}},{default:t(()=>[e(q,{modelValue:a(l).area,"onUpdate:modelValue":n[8]||(n[8]=u=>a(l).area=u),placeholder:"\u8BF7\u9009\u62E9\u533A",disabled:a(i),clearable:"",onChange:pa,style:{width:"100%"}},{default:t(()=>[(d(!0),_(P,null,R(a(b).areaOptions,(u,C)=>(d(),r(w,{key:C,label:u.area_name,value:u.area_code},null,8,["label","value"]))),128))]),_:1},8,["modelValue","disabled"])]),_:1}),e(s,{label:"\u9547",prop:"street",style:{flex:"1"}},{default:t(()=>[e(q,{modelValue:a(l).street,"onUpdate:modelValue":n[9]||(n[9]=u=>a(l).street=u),placeholder:"\u8BF7\u9009\u62E9\u9547",disabled:a(i),clearable:"",onChange:_a,style:{width:"100%"}},{default:t(()=>[(d(!0),_(P,null,R(a(b).streetOptions,(u,C)=>(d(),r(w,{key:C,label:u.street_name,value:u.street_code},null,8,["label","value"]))),128))]),_:1},8,["modelValue","disabled"])]),_:1}),e(s,{label:"\u6751\u793E\u5C0F\u961F",prop:"address",style:{flex:"1.5"}},{default:t(()=>[e(m,{modelValue:a(l).address,"onUpdate:modelValue":n[10]||(n[10]=u=>a(l).address=u),disabled:a(i),placeholder:"\u8BF7\u8F93\u5165\u6751\u793E\u5C0F\u961F",clearable:"",style:{width:"100%"}},null,8,["modelValue","disabled"])]),_:1})]),_:1})]),_:1}),e(c,{span:24,style:{"margin-top":"1vh"}}),le,g("div",te,[g("div",null,[e(s,{label:"\u8EAB\u4EFD\u8BC1",prop:"id_card"},{default:t(()=>[e(y,{modelValue:a(l).qualification.id_card,"onUpdate:modelValue":n[11]||(n[11]=u=>a(l).qualification.id_card=u),disabled:a(i),class:"avatar-uploader pl-3",data:{cid:1},headers:{Token:a(p).token},action:a(v)+"/upload/image","show-file-list":!1,"on-success":M},{default:t(()=>[a(l).qualification.id_card?(d(),_("img",{key:0,src:a(l).qualification.id_card,class:"avatar"},null,8,oe)):(d(),r(B,{key:1,class:"avatar-uploader-icon"},{default:t(()=>[e(k)]),_:1}))]),_:1},8,["modelValue","disabled","headers","action"]),e(y,{modelValue:a(l).qualification.id_card_b,"onUpdate:modelValue":n[12]||(n[12]=u=>a(l).qualification.id_card_b=u),disabled:a(i),class:"avatar-uploader pl-3",data:{cid:1},headers:{Token:a(p).token},action:a(v)+"/upload/image","show-file-list":!1,"on-success":H},{default:t(()=>[a(l).qualification.id_card_b?(d(),_("img",{key:0,src:a(l).qualification.id_card_b,class:"avatar"},null,8,ue)):(d(),r(B,{key:1,class:"avatar-uploader-icon"},{default:t(()=>[e(k)]),_:1}))]),_:1},8,["modelValue","disabled","headers","action"])]),_:1})]),g("div",null,[e(s,{label:"\u884C\u9A76\u8BC1",prop:"car_card"},{default:t(()=>[e(y,{modelValue:a(l).qualification.car_card,"onUpdate:modelValue":n[13]||(n[13]=u=>a(l).qualification.car_card=u),disabled:a(i),class:"avatar-uploader pl-3",data:{cid:1},headers:{Token:a(p).token},action:a(v)+"/upload/image","show-file-list":!1,"on-success":J},{default:t(()=>[a(l).qualification.car_card?(d(),_("img",{key:0,src:a(l).qualification.car_card,class:"avatar"},null,8,ne)):(d(),r(B,{key:1,class:"avatar-uploader-icon"},{default:t(()=>[e(k)]),_:1}))]),_:1},8,["modelValue","disabled","headers","action"]),e(y,{modelValue:a(l).qualification.car_card_b,"onUpdate:modelValue":n[14]||(n[14]=u=>a(l).qualification.car_card_b=u),disabled:a(i),class:"avatar-uploader pl-3",data:{cid:1},headers:{Token:a(p).token},action:a(v)+"/upload/image","show-file-list":!1,"on-success":K,"before-upload":h},{default:t(()=>[a(l).qualification.car_card_b?(d(),_("img",{key:0,src:a(l).qualification.car_card_b,class:"avatar"},null,8,de)):(d(),r(B,{key:1,class:"avatar-uploader-icon"},{default:t(()=>[e(k)]),_:1}))]),_:1},8,["modelValue","disabled","headers","action"])]),_:1})]),g("div",null,[e(s,{label:"\u94F6\u884C\u5361\u53F7",prop:"bank_account"},{default:t(()=>[e(y,{modelValue:a(l).qualification.bank_account,"onUpdate:modelValue":n[15]||(n[15]=u=>a(l).qualification.bank_account=u),disabled:a(i),class:"avatar-uploader pl-3",data:{cid:1},headers:{Token:a(p).token},action:a(v)+"/upload/image","show-file-list":!1,"on-success":da,"before-upload":G},{default:t(()=>[a(l).qualification.bank_account?(d(),_("img",{key:0,src:a(l).qualification.bank_account,class:"avatar"},null,8,se)):(d(),r(B,{key:1,class:"avatar-uploader-icon"},{default:t(()=>[e(k)]),_:1}))]),_:1},8,["modelValue","disabled","headers","action"]),e(y,{modelValue:a(l).qualification.bank_account_b,"onUpdate:modelValue":n[16]||(n[16]=u=>a(l).qualification.bank_account_b=u),disabled:a(i),class:"avatar-uploader pl-3",data:{cid:1},headers:{Token:a(p).token},action:a(v)+"/upload/image","show-file-list":!1,"on-success":sa,"before-upload":G},{default:t(()=>[a(l).qualification.bank_account_b?(d(),_("img",{key:0,src:a(l).qualification.bank_account_b,class:"avatar"},null,8,re)):(d(),r(B,{key:1,class:"avatar-uploader-icon"},{default:t(()=>[e(k)]),_:1}))]),_:1},8,["modelValue","disabled","headers","action"])]),_:1})])]),a($)?(d(),r(c,{key:0,span:24},{default:t(()=>[e(T,null,{default:t(()=>[e(c,{span:12},{default:t(()=>[e(s,{label:"\u7B7E\u7EA6\u59D3\u540D",prop:"name"},{default:t(()=>[e(m,{modelValue:a(l).nickname,"onUpdate:modelValue":n[17]||(n[17]=u=>a(l).nickname=u),placeholder:"\u8BF7\u8F93\u5165\u7B7E\u7EA6\u59D3\u540D",disabled:!0,clearable:"",style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(c,{span:12},{default:t(()=>[e(s,{label:"\u6027\u522B",prop:"sex"},{default:t(()=>[e(m,{placeholder:"\u8BF7\u8F93\u5165\u6027\u522B",disabled:!0,clearable:"",style:{width:"100%"},value:a(l).sex=="1"?"\u7537":"\u5973"},null,8,["value"])]),_:1})]),_:1}),e(c,{span:12},{default:t(()=>[e(s,{label:"\u8EAB\u4EFD\u8BC1\u53F7",prop:"id_card"},{default:t(()=>[e(m,{modelValue:a(l).id_card,"onUpdate:modelValue":n[18]||(n[18]=u=>a(l).id_card=u),placeholder:"\u8BF7\u8F93\u5165\u8EAB\u4EFD\u8BC1\u53F7",disabled:!0,clearable:"",style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(c,{span:12},{default:t(()=>[e(s,{label:"\u8054\u7CFB\u7535\u8BDD",prop:"account"},{default:t(()=>[e(m,{modelValue:a(l).account,"onUpdate:modelValue":n[19]||(n[19]=u=>a(l).account=u),placeholder:"\u8BF7\u8F93\u5165\u8054\u7CFB\u7535\u8BDD",disabled:!0,clearable:"",style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),a(l).name?(d(),r(c,{key:0,span:12},{default:t(()=>[e(s,{label:"\u8D26\u53F7"},{default:t(()=>[e(m,{modelValue:a(l).account,"onUpdate:modelValue":n[20]||(n[20]=u=>a(l).account=u),disabled:!0,clearable:"",style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1})):x("",!0),a(l).name?(d(),r(c,{key:1,span:12},{default:t(()=>[e(s,{label:"\u521D\u59CB\u5BC6\u7801",prop:"password"},{default:t(()=>[e(m,{"model-value":"m"+a(l).account,disabled:!0,clearable:"",style:{width:"100%"}},null,8,["model-value"])]),_:1})]),_:1})):x("",!0)]),_:1})]),_:1})):x("",!0),a(V)=="uplode"?(d(),r(c,{key:1,span:24},{default:t(()=>[e(s,{label:"\u5408\u540C\u4E0A\u4F20",prop:"field127"},{default:t(()=>[e(y,{headers:{Token:a(p).token},"file-list":a(D),"onUpdate:fileList":n[21]||(n[21]=u=>ua(D)?D.value=u:null),class:"upload-demo",action:a(v)+"/upload/file","on-success":ra,multiple:"",limit:1},{default:t(()=>[e(Z,{type:"primary"},{default:t(()=>[z("\u4E0A\u4F20")]),_:1})]),_:1},8,["headers","file-list","action"])]),_:1})]),_:1})):x("",!0),a(V)=="initiate"?(d(),r(c,{key:2,span:24,class:"pt-6"},{default:t(()=>[e(T,null,{default:t(()=>[e(c,{span:8},{default:t(()=>[e(s,{label:"\u5408\u540C\u7C7B\u578B",prop:"contract_type"},{default:t(()=>[e(c,{span:24},{default:t(()=>[e(q,{modelValue:a(l).contract_type,"onUpdate:modelValue":n[22]||(n[22]=u=>a(l).contract_type=u),placeholder:"\u8BF7\u9009\u62E9\u5408\u540C\u7C7B\u578B",clearable:"",style:{width:"100%"}},{default:t(()=>[(d(!0),_(P,null,R(a(b).contract_type,(u,C)=>(d(),r(w,{key:C,label:u.name,value:u.id},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1})]),_:1})]),_:1}),e(c,{span:4},{default:t(()=>[e(s,{prop:"field139"},{default:t(()=>[a(V)=="initiate"?(d(),r(Z,{key:0,type:"primary",onClick:ba},{default:t(()=>[z("\u53D1\u8D77\u5408\u540C")]),_:1})):x("",!0)]),_:1})]),_:1})]),_:1})]),_:1})):x("",!0)]),_:1},8,["model"])]),_:1}),e(Ga,{show:a(A).show,"onUpdate:show":n[23]||(n[23]=u=>a(A).show=u),value:a(A).value,onConfirm:fa},null,8,["show","value"])])}}});export{al as default}; diff --git a/public/admin/assets/detail.fbc53c4f.js b/public/admin/assets/detail.fbc53c4f.js new file mode 100644 index 000000000..b60171088 --- /dev/null +++ b/public/admin/assets/detail.fbc53c4f.js @@ -0,0 +1 @@ +import{B as aa,C as ea,w as la,D as ta,I as oa,O as va,P as Fa,Q as ka,T as Ba,J as Va,k as E,c as Ca,a1 as ga,M as Ea,N as ha,a2 as wa}from"./element-plus.4328d892.js";import{a as Aa,u as Da}from"./vue-router.9f65afb1.js";import{g as qa,b as Ua,a as xa,i as La}from"./consumer.d25e26af.js";import{a as Oa,b as Sa,c as Ta,d as Pa}from"./common.86798ce6.js";import{d as Ra}from"./dict.927f1fc7.js";import{_ as $a}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{u as ja}from"./usePaging.2ad8e1e6.js";import{e as Ia,a as Ma,f as Na}from"./index.aa9bb752.js";import{k as za}from"./company.b7ec1bf9.js";import{d as Q,$ as N,o as d,c as _,U as e,L as t,u as a,R as z,M as Qa,K as r,a as g,k as ua,C as Ha,r as U,s as Ja,a4 as Ka,T as P,a7 as R,Q as x}from"./@vue.51d7f2d8.js";import"./lodash.08438971.js";import{_ as Ga}from"./account-adjust.vue_vue_type_script_setup_true_lang.99dff1dd.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./axios.105476b3.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.fa872673.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";const Wa={class:"mt-4"},Xa={class:"flex mt-4 justify-end"},Ya=Q({name:"companyLists"});({...Ya});const Za=g("div",{style:{"font-size":"1.2rem",margin:"10px 0"}},"\u57FA\u672C\u4FE1\u606F\u521B\u5EFA",-1),ae={class:"headimg"},ee=["src"],le=g("div",{style:{"font-size":"1.2rem",margin:"10px 0"}},"\u8D44\u8D28\u4FE1\u606F",-1),te={style:{display:"flex","justify-content":"space-between"}},oe=["src"],ue=["src"],ne=["src"],de=["src"],se=["src"],re=["src"],ie=Q({name:"consumerDetail"}),al=Q({...ie,setup(na){const v=Ha("base_url");Ia(),Aa();const f=Da(),i=U(!0),l=N({id:"",sex:"",id_card:"",nickname:"",province:"",city:"",area:"",street:"",address:"",account:"",is_contract:0,party_b_name:"",party_b:"",qualification:{id_card:"",id_card_b:"",car_card:"",car_card_b:"",bank_account:"",bank_account_b:""},contract_type:"",file:"",avatar:"",multipoint_login:1,contract:{url:""}}),$=U(!1),A=N({show:!1,value:""}),b=N({provinceOptions:[],cityOptions:[],areaOptions:[],streetOptions:[],dictTypeLists:[],contract_type:[],contract:[]}),j=Ja();U(!1),U(!1);const p=Ma(),I=async()=>{const o=await Ra({type_id:7});b.contract_type=o.lists},V=U(null);I();const L=async()=>{var n,O,S,k,B,y;const o=await qa({id:f.query.id});Object.keys(l).forEach(m=>{l[m]=o[m]}),V.value=f.query.mode,l.contract_type=(n=o.contract)==null?void 0:n.contract_type,l.party_b_name=(O=o.contract)==null?void 0:O.party_b_name,l.party_b=(S=o.contract)==null?void 0:S.party_b,l.file=(k=o.contract)==null?void 0:k.file,o.contract&&(D.value[0]={url:(B=o.contract)==null?void 0:B.file,name:(y=o.contract)!=null?y:"\u5408\u540C\u6587\u4EF6"}),await W(),await X(),await Y()},D=U([]),M=(o,n)=>{if(o.code==0){E.error(o.msg);return}l.qualification.id_card=o.data.uri},F=(o,n)=>{if(o.code==0){E.error(o.msg);return}l.avatar=o.data.uri},H=(o,n)=>{if(o.code==0){E.error(o.msg);return}l.qualification.id_card_b=o.data.uri},J=(o,n)=>{if(o.code==0){E.error(o.msg);return}l.qualification.car_card=o.data.uri},K=(o,n)=>{if(o.code==0){E.error(o.msg);return}l.qualification.car_card_b=o.data.uri},h=o=>!0,da=(o,n)=>{if(o.code==0){E.error(o.msg);return}l.qualification.bank_account=o.data.uri},sa=(o,n)=>{if(o.code==0){E.error(o.msg);return}l.qualification.bank_account_b=o.data.uri},ra=(o,n)=>{if(o.code==0){E.error(o.msg);return}l.file=o.data.uri,Ua({file:l.file,id:f.query.mdoeid}).then(O=>[V.value=!1])},G=o=>!0;function ia(o){W()}function ca(o){X()}function pa(o){Y()}function _a(o){l.street=o}const ma=async()=>{const o=await Oa({});b.provinceOptions=o},W=async()=>{const o=await Sa({city:l.province});b.cityOptions=o},X=async()=>{const o=await Ta({area:l.city});b.areaOptions=o},Y=async()=>{const o=await Pa({street:l.area});b.streetOptions=o},fa=async o=>{await xa({user_id:f.query.id,...o}),A.show=!1,L()},ba=()=>{const{contract_type:o}=l;La({party_b:f.query.id,contract_type:o,type:2}).then(n=>{Na.msgSuccess("\u53D1\u8D77\u6210\u529F\uFF0C\u7B49\u5F85\u5E73\u53F0\u98CE\u63A7\u90E8\u4E0A\u4F20\u5408\u540C")})};return L(),ma(),console.log(l),(o,n)=>{const O=Ba,S=oa,k=Ka("Plus"),B=Ca,y=Va,m=aa,s=ea,c=ga,w=Ea,q=ha,T=wa,Z=la,ya=ta;return d(),_("div",null,[e(S,{class:"!border-none",shadow:"never"},{default:t(()=>[e(O,{content:"\u7528\u6237\u8BE6\u60C5",onBack:n[0]||(n[0]=u=>o.$router.back())})]),_:1}),e(S,{class:"mt-4 !border-none",shadow:"never"},{default:t(()=>[e(ya,{ref_key:"formRef",ref:j,model:a(l),"label-width":"84px"},{default:t(()=>[Za,g("div",ae,[e(y,{modelValue:a(l).avatar,"onUpdate:modelValue":n[1]||(n[1]=u=>a(l).avatar=u),class:"avatar-uploader-head",disabled:a(i),data:{cid:1},headers:{Token:a(p).token},action:a(v)+"/upload/image","show-file-list":!1,"on-success":F},{default:t(()=>[a(l).avatar?(d(),_("img",{key:0,src:a(l).avatar,class:"avatar"},null,8,ee)):(d(),r(B,{key:1,class:"avatar-uploader-icon"},{default:t(()=>[e(k)]),_:1}))]),_:1},8,["modelValue","disabled","headers","action"])]),e(c,{class:"pt-6 !border-none"},{default:t(()=>[e(T,null,{default:t(()=>[e(c,{span:11},{default:t(()=>[e(s,{label:"\u59D3\u540D",prop:"nickname"},{default:t(()=>[e(m,{modelValue:a(l).nickname,"onUpdate:modelValue":n[2]||(n[2]=u=>a(l).nickname=u),disabled:a(i),placeholder:"\u8BF7\u8F93\u5165\u59D3\u540D",clearable:"",style:{width:"100%"}},null,8,["modelValue","disabled"])]),_:1})]),_:1}),e(c,{span:13},{default:t(()=>[e(s,{label:"\u6027\u522B",prop:"sex"},{default:t(()=>[e(q,{modelValue:a(l).sex,"onUpdate:modelValue":n[3]||(n[3]=u=>a(l).sex=u),disabled:a(i),placeholder:"\u8BF7\u9009\u62E9\u6027\u522B",style:{width:"100%"}},{default:t(()=>[e(w,{label:"\u7537",value:1}),e(w,{label:"\u5973",value:2})]),_:1},8,["modelValue","disabled"])]),_:1})]),_:1})]),_:1}),e(T,null,{default:t(()=>[e(c,{span:11},{default:t(()=>[e(s,{label:"\u8EAB\u4EFD\u8BC1\u53F7",prop:"id_card"},{default:t(()=>[e(m,{modelValue:a(l).id_card,"onUpdate:modelValue":n[4]||(n[4]=u=>a(l).id_card=u),disabled:a(i),placeholder:"\u8BF7\u8F93\u5165\u8EAB\u4EFD\u8BC1\u53F7",clearable:"",style:{width:"100%"}},null,8,["modelValue","disabled"])]),_:1})]),_:1}),e(c,{span:13},{default:t(()=>[e(s,{label:"\u8054\u7CFB\u7535\u8BDD",prop:"account"},{default:t(()=>[e(m,{modelValue:a(l).account,"onUpdate:modelValue":n[5]||(n[5]=u=>a(l).account=u),placeholder:"\u8BF7\u8F93\u5165\u8054\u7CFB\u7535\u8BDD",disabled:a(i),clearable:"",style:{width:"100%"}},null,8,["modelValue","disabled"])]),_:1})]),_:1})]),_:1}),e(T,null,{default:t(()=>[e(s,{label:"\u7701",prop:"province",style:{flex:"1"}},{default:t(()=>[e(q,{modelValue:a(l).province,"onUpdate:modelValue":n[6]||(n[6]=u=>a(l).province=u),placeholder:"\u8BF7\u9009\u62E9\u7701",disabled:a(i),clearable:"",onChange:ia,style:{width:"100%"}},{default:t(()=>[(d(!0),_(P,null,R(a(b).provinceOptions,(u,C)=>(d(),r(w,{key:C,label:u.province_name,value:u.province_code},null,8,["label","value"]))),128))]),_:1},8,["modelValue","disabled"])]),_:1}),e(s,{label:"\u5E02",prop:"city",style:{flex:"1"}},{default:t(()=>[e(q,{modelValue:a(l).city,"onUpdate:modelValue":n[7]||(n[7]=u=>a(l).city=u),placeholder:"\u8BF7\u9009\u62E9\u5E02",clearable:"",disabled:a(i),onChange:ca,style:{width:"100%"}},{default:t(()=>[(d(!0),_(P,null,R(a(b).cityOptions,(u,C)=>(d(),r(w,{key:C,label:u.city_name,value:u.city_code},null,8,["label","value"]))),128))]),_:1},8,["modelValue","disabled"])]),_:1}),e(s,{label:"\u533A",prop:"area",style:{flex:"1"}},{default:t(()=>[e(q,{modelValue:a(l).area,"onUpdate:modelValue":n[8]||(n[8]=u=>a(l).area=u),placeholder:"\u8BF7\u9009\u62E9\u533A",disabled:a(i),clearable:"",onChange:pa,style:{width:"100%"}},{default:t(()=>[(d(!0),_(P,null,R(a(b).areaOptions,(u,C)=>(d(),r(w,{key:C,label:u.area_name,value:u.area_code},null,8,["label","value"]))),128))]),_:1},8,["modelValue","disabled"])]),_:1}),e(s,{label:"\u9547",prop:"street",style:{flex:"1"}},{default:t(()=>[e(q,{modelValue:a(l).street,"onUpdate:modelValue":n[9]||(n[9]=u=>a(l).street=u),placeholder:"\u8BF7\u9009\u62E9\u9547",disabled:a(i),clearable:"",onChange:_a,style:{width:"100%"}},{default:t(()=>[(d(!0),_(P,null,R(a(b).streetOptions,(u,C)=>(d(),r(w,{key:C,label:u.street_name,value:u.street_code},null,8,["label","value"]))),128))]),_:1},8,["modelValue","disabled"])]),_:1}),e(s,{label:"\u6751\u793E\u5C0F\u961F",prop:"address",style:{flex:"1.5"}},{default:t(()=>[e(m,{modelValue:a(l).address,"onUpdate:modelValue":n[10]||(n[10]=u=>a(l).address=u),disabled:a(i),placeholder:"\u8BF7\u8F93\u5165\u6751\u793E\u5C0F\u961F",clearable:"",style:{width:"100%"}},null,8,["modelValue","disabled"])]),_:1})]),_:1})]),_:1}),e(c,{span:24,style:{"margin-top":"1vh"}}),le,g("div",te,[g("div",null,[e(s,{label:"\u8EAB\u4EFD\u8BC1",prop:"id_card"},{default:t(()=>[e(y,{modelValue:a(l).qualification.id_card,"onUpdate:modelValue":n[11]||(n[11]=u=>a(l).qualification.id_card=u),disabled:a(i),class:"avatar-uploader pl-3",data:{cid:1},headers:{Token:a(p).token},action:a(v)+"/upload/image","show-file-list":!1,"on-success":M},{default:t(()=>[a(l).qualification.id_card?(d(),_("img",{key:0,src:a(l).qualification.id_card,class:"avatar"},null,8,oe)):(d(),r(B,{key:1,class:"avatar-uploader-icon"},{default:t(()=>[e(k)]),_:1}))]),_:1},8,["modelValue","disabled","headers","action"]),e(y,{modelValue:a(l).qualification.id_card_b,"onUpdate:modelValue":n[12]||(n[12]=u=>a(l).qualification.id_card_b=u),disabled:a(i),class:"avatar-uploader pl-3",data:{cid:1},headers:{Token:a(p).token},action:a(v)+"/upload/image","show-file-list":!1,"on-success":H},{default:t(()=>[a(l).qualification.id_card_b?(d(),_("img",{key:0,src:a(l).qualification.id_card_b,class:"avatar"},null,8,ue)):(d(),r(B,{key:1,class:"avatar-uploader-icon"},{default:t(()=>[e(k)]),_:1}))]),_:1},8,["modelValue","disabled","headers","action"])]),_:1})]),g("div",null,[e(s,{label:"\u884C\u9A76\u8BC1",prop:"car_card"},{default:t(()=>[e(y,{modelValue:a(l).qualification.car_card,"onUpdate:modelValue":n[13]||(n[13]=u=>a(l).qualification.car_card=u),disabled:a(i),class:"avatar-uploader pl-3",data:{cid:1},headers:{Token:a(p).token},action:a(v)+"/upload/image","show-file-list":!1,"on-success":J},{default:t(()=>[a(l).qualification.car_card?(d(),_("img",{key:0,src:a(l).qualification.car_card,class:"avatar"},null,8,ne)):(d(),r(B,{key:1,class:"avatar-uploader-icon"},{default:t(()=>[e(k)]),_:1}))]),_:1},8,["modelValue","disabled","headers","action"]),e(y,{modelValue:a(l).qualification.car_card_b,"onUpdate:modelValue":n[14]||(n[14]=u=>a(l).qualification.car_card_b=u),disabled:a(i),class:"avatar-uploader pl-3",data:{cid:1},headers:{Token:a(p).token},action:a(v)+"/upload/image","show-file-list":!1,"on-success":K,"before-upload":h},{default:t(()=>[a(l).qualification.car_card_b?(d(),_("img",{key:0,src:a(l).qualification.car_card_b,class:"avatar"},null,8,de)):(d(),r(B,{key:1,class:"avatar-uploader-icon"},{default:t(()=>[e(k)]),_:1}))]),_:1},8,["modelValue","disabled","headers","action"])]),_:1})]),g("div",null,[e(s,{label:"\u94F6\u884C\u5361\u53F7",prop:"bank_account"},{default:t(()=>[e(y,{modelValue:a(l).qualification.bank_account,"onUpdate:modelValue":n[15]||(n[15]=u=>a(l).qualification.bank_account=u),disabled:a(i),class:"avatar-uploader pl-3",data:{cid:1},headers:{Token:a(p).token},action:a(v)+"/upload/image","show-file-list":!1,"on-success":da,"before-upload":G},{default:t(()=>[a(l).qualification.bank_account?(d(),_("img",{key:0,src:a(l).qualification.bank_account,class:"avatar"},null,8,se)):(d(),r(B,{key:1,class:"avatar-uploader-icon"},{default:t(()=>[e(k)]),_:1}))]),_:1},8,["modelValue","disabled","headers","action"]),e(y,{modelValue:a(l).qualification.bank_account_b,"onUpdate:modelValue":n[16]||(n[16]=u=>a(l).qualification.bank_account_b=u),disabled:a(i),class:"avatar-uploader pl-3",data:{cid:1},headers:{Token:a(p).token},action:a(v)+"/upload/image","show-file-list":!1,"on-success":sa,"before-upload":G},{default:t(()=>[a(l).qualification.bank_account_b?(d(),_("img",{key:0,src:a(l).qualification.bank_account_b,class:"avatar"},null,8,re)):(d(),r(B,{key:1,class:"avatar-uploader-icon"},{default:t(()=>[e(k)]),_:1}))]),_:1},8,["modelValue","disabled","headers","action"])]),_:1})])]),a($)?(d(),r(c,{key:0,span:24},{default:t(()=>[e(T,null,{default:t(()=>[e(c,{span:12},{default:t(()=>[e(s,{label:"\u7B7E\u7EA6\u59D3\u540D",prop:"name"},{default:t(()=>[e(m,{modelValue:a(l).nickname,"onUpdate:modelValue":n[17]||(n[17]=u=>a(l).nickname=u),placeholder:"\u8BF7\u8F93\u5165\u7B7E\u7EA6\u59D3\u540D",disabled:!0,clearable:"",style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(c,{span:12},{default:t(()=>[e(s,{label:"\u6027\u522B",prop:"sex"},{default:t(()=>[e(m,{placeholder:"\u8BF7\u8F93\u5165\u6027\u522B",disabled:!0,clearable:"",style:{width:"100%"},value:a(l).sex=="1"?"\u7537":"\u5973"},null,8,["value"])]),_:1})]),_:1}),e(c,{span:12},{default:t(()=>[e(s,{label:"\u8EAB\u4EFD\u8BC1\u53F7",prop:"id_card"},{default:t(()=>[e(m,{modelValue:a(l).id_card,"onUpdate:modelValue":n[18]||(n[18]=u=>a(l).id_card=u),placeholder:"\u8BF7\u8F93\u5165\u8EAB\u4EFD\u8BC1\u53F7",disabled:!0,clearable:"",style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(c,{span:12},{default:t(()=>[e(s,{label:"\u8054\u7CFB\u7535\u8BDD",prop:"account"},{default:t(()=>[e(m,{modelValue:a(l).account,"onUpdate:modelValue":n[19]||(n[19]=u=>a(l).account=u),placeholder:"\u8BF7\u8F93\u5165\u8054\u7CFB\u7535\u8BDD",disabled:!0,clearable:"",style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),a(l).name?(d(),r(c,{key:0,span:12},{default:t(()=>[e(s,{label:"\u8D26\u53F7"},{default:t(()=>[e(m,{modelValue:a(l).account,"onUpdate:modelValue":n[20]||(n[20]=u=>a(l).account=u),disabled:!0,clearable:"",style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1})):x("",!0),a(l).name?(d(),r(c,{key:1,span:12},{default:t(()=>[e(s,{label:"\u521D\u59CB\u5BC6\u7801",prop:"password"},{default:t(()=>[e(m,{"model-value":"m"+a(l).account,disabled:!0,clearable:"",style:{width:"100%"}},null,8,["model-value"])]),_:1})]),_:1})):x("",!0)]),_:1})]),_:1})):x("",!0),a(V)=="uplode"?(d(),r(c,{key:1,span:24},{default:t(()=>[e(s,{label:"\u5408\u540C\u4E0A\u4F20",prop:"field127"},{default:t(()=>[e(y,{headers:{Token:a(p).token},"file-list":a(D),"onUpdate:fileList":n[21]||(n[21]=u=>ua(D)?D.value=u:null),class:"upload-demo",action:a(v)+"/upload/file","on-success":ra,multiple:"",limit:1},{default:t(()=>[e(Z,{type:"primary"},{default:t(()=>[z("\u4E0A\u4F20")]),_:1})]),_:1},8,["headers","file-list","action"])]),_:1})]),_:1})):x("",!0),a(V)=="initiate"?(d(),r(c,{key:2,span:24,class:"pt-6"},{default:t(()=>[e(T,null,{default:t(()=>[e(c,{span:8},{default:t(()=>[e(s,{label:"\u5408\u540C\u7C7B\u578B",prop:"contract_type"},{default:t(()=>[e(c,{span:24},{default:t(()=>[e(q,{modelValue:a(l).contract_type,"onUpdate:modelValue":n[22]||(n[22]=u=>a(l).contract_type=u),placeholder:"\u8BF7\u9009\u62E9\u5408\u540C\u7C7B\u578B",clearable:"",style:{width:"100%"}},{default:t(()=>[(d(!0),_(P,null,R(a(b).contract_type,(u,C)=>(d(),r(w,{key:C,label:u.name,value:u.id},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1})]),_:1})]),_:1}),e(c,{span:4},{default:t(()=>[e(s,{prop:"field139"},{default:t(()=>[a(V)=="initiate"?(d(),r(Z,{key:0,type:"primary",onClick:ba},{default:t(()=>[z("\u53D1\u8D77\u5408\u540C")]),_:1})):x("",!0)]),_:1})]),_:1})]),_:1})]),_:1})):x("",!0)]),_:1},8,["model"])]),_:1}),e(Ga,{show:a(A).show,"onUpdate:show":n[23]||(n[23]=u=>a(A).show=u),value:a(A).value,onConfirm:fa},null,8,["show","value"])])}}});export{al as default}; diff --git a/public/admin/assets/details.2c8e6253.js b/public/admin/assets/details.2c8e6253.js new file mode 100644 index 000000000..604ca08f0 --- /dev/null +++ b/public/admin/assets/details.2c8e6253.js @@ -0,0 +1 @@ +import{B as S,C as M,a1 as N,G as P,H as T,a2 as G,a5 as j,M as H,N as K,D as Q,I as W}from"./element-plus.4328d892.js";import{u as $}from"./vue-router.9f65afb1.js";import J from"./store.8350d48f.js";import X from"./breeding.bad4e59c.js";import Y from"./plant.217b07c3.js";import Z from"./houseTransaction.61f9d2fb.js";import ee from"./houseRenovate.3481056b.js";import le from"./houseDecoration.49a16dce.js";import ue from"./houseRepair.73c4668e.js";import ae from"./banquetMarry.3faebc7e.js";import oe from"./banquetOther.ce740995.js";import te from"./banquetFuneral.149cd1af.js";import de from"./banquetFullMoon.9b5d9e7c.js";import se from"./banquetBirthday.7a102179.js";import ne from"./thickProcessing.ee706187.js";import re from"./deepProcessing.4fdb9986.js";import{f as pe}from"./informationg.0fb089cd.js";import{d as U,$ as f,r as g,o as r,c as _,U as e,L as l,R as m,K as b,Q as D,T as V,a7 as v,S as ie,P as me,bf as _e,be,a as y}from"./@vue.51d7f2d8.js";import{d as fe}from"./index.37f7aea6.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const C=h=>(_e("data-v-2fc76fc6"),h=h(),be(),h),Fe=C(()=>y("p",{class:"tit"},"\u4E2A\u4EBA\u4FE1\u606F",-1)),Ee=C(()=>y("p",{class:"tit"},"\u5730\u533A\u4FE1\u606F",-1)),ce=C(()=>y("p",{class:"tit"},"\u5E38\u4F4F\u4EBA\u53E3",-1)),Ve=U({name:"test"}),Be=U({...Ve,setup(h){const w=$(),p=f(new Map);p.set(7,Y),p.set(8,J),p.set(32,X),p.set(15,Z),p.set(14,ee),p.set(13,le),p.set(12,ue),p.set(17,ae),p.set(20,oe),p.set(21,te),p.set(19,de),p.set(18,se),p.set(10,ne),p.set(9,re);const k=F=>p.get(F),a=f({name:"",phone:"",age:"",sex:"",id_card:"",area_name:"",street_name:"",village_name:"",brigade_name:"",addressa:"",address:"",family:[{name:"",birth_time:"",situation:"",work:"",phone:"",skills:""}],child:void 0,child_arr:[{name:"",birth:"",age:0,class:"",lessons:"",notes:"",feeding:""}],highway:void 0,smart_phone:void 0,wechat:"",datas:[]}),x=f([{name:"\u505A\u5DE5\u5730\u7684",id:"0"},{name:"\u5382\u91CC\u6253\u5DE5",id:"1"},{name:"\u516C\u53F8\u804C\u5458",id:"2"},{name:"\u653F\u5E9C\u4E0A\u73ED",id:"3"},{name:"\u79CD\u5730",id:"4"},{name:"\u5728\u5BB6\u8D4B\u95F2",id:"5"},{name:"\u5176\u4ED6",id:"6"}]);g(!1);const O=f({subjs:[{label:"\u8BED\u6587",value:1},{label:"\u6570\u5B66",value:2},{label:"\u82F1\u8BED",value:3},{label:"\u827A\u672F\u7C7B",value:4},{label:"\u5176\u4ED6",value:5}],feedsList:[{label:"\u6BCD\u4E73",value:"0"},{label:"\u5976\u7C89",value:"1"}],plantList:[{label:"\u81EA\u5DF1\u79CD\u517B",value:"0"},{label:"\u51FA\u79DF",value:"1"},{label:"\u4EE3\u79CD\u517B",value:"2"},{label:"\u79DF\u66F4\u591A\u5730\u6269\u5927\u79CD\u690D",value:"3"}],houseStyle:[{label:"\u4E2D\u5F0F",value:1},{label:"\u7F8E\u5F0F",value:2},{label:"\u6B27\u5F0F",value:3},{label:"\u7B80\u7EA6",value:4},{label:"\u5962\u534E",value:5},{label:"\u522B\u5885/\u56DB\u5408\u9662",value:6},{label:"\u5176\u4ED6",value:7}],weihu:[{label:"\u623F\u9876",value:1},{label:"\u5395\u6240",value:2},{label:"\u7BA1\u7EBF",value:3},{label:"\u7535\u5668",value:4}],field102Options:[{label:"\u522B\u5885",value:1},{label:"\u6D0B\u623F",value:2},{label:"\u9AD8\u5C42",value:3},{label:"\u697C\u68AF\u623F",value:4}],ecologyPlant:[{label:"\u975E\u751F\u6001\u79CD\u690D",value:1}],sellType:[{label:"\u81EA\u9500",value:"1"},{label:"\u5B9A\u70B9\u9500\u552E",value:"2"}],publicize:[{label:"\u6709\u65E0\u5BA3\u4F20\u63A8\u5E7F",value:1}],field106Options:[{label:"\u8D85\u5E02",value:1},{label:"\u751F\u9C9C",value:2},{label:"\u996D\u5E97",value:3},{label:"\u4E94\u91D1",value:4},{label:"\u6742\u8D27",value:5},{label:"\u670D\u88C5",value:6},{label:"\u6587\u5177",value:7},{label:"\u5176\u4ED6",value:8}],field109Options:[{label:"\u5B66\u751F",value:1},{label:"\u5BB6\u5EAD\u5BA2\u6237",value:2},{label:"\u9752\u5E74\u5BA2\u6237",value:3},{label:"\u8001\u5E74\u4EBA",value:4},{label:"\u6E38\u5BA2",value:5}],banquetList:[{label:"\u5A5A\u5BB4",value:1},{label:"\u5BFF\u5BB4",value:2},{label:"\u6EE1\u6708\u9152",value:3},{label:"\u5176\u5B83\u5E86\u529F\u5BB4",value:4},{label:"\u767D\u4E8B",value:5}],field106aOptions:[{label:"\u9152\u5E97",value:1},{label:"\u4E00\u6761\u9F99",value:2},{label:"\u53EA\u8BF7\u53A8\u5E08",value:3}],field104Options:[{label:"\u7535\u74F6\u8F66",value:1},{label:"\u6469\u6258\u8F66",value:2},{label:"\u5C0F\u6C7D\u8F66",value:3}],provinceOptions:[],cityOptions:[],areaOptions:[],streetOptions:[]});return f([{label:"\u6709\u52A0\u5DE5\u4ED3\u50A8",value:1}]),f([{label:"\u6709\u8FD0\u8F93",value:1}]),f([{label:"\u662F\u5426\u60F3\u8981\u6269\u5927\u7ECF\u8425",value:1}]),g(!0),pe({id:w.query.id}).then(async F=>{for(const d in a)F[d]!=null&&F[d]!=null&&(a[d]=F[d]);a.addressa=a.area_name+a.street_name+a.village_name+a.brigade_name+a.address,console.log(a)}),(F,d)=>{const n=S,s=M,t=N,i=P,E=T,B=G,z=j,L=H,q=K,I=Q,R=W;return r(),_(V,null,[e(R,null,{default:l(()=>[e(I,{ref:"elForm",disabled:!0,model:a,size:"mini","label-width":"100px"},{default:l(()=>[Fe,e(t,null,{default:l(()=>[e(B,null,{default:l(()=>[e(t,{span:6},{default:l(()=>[e(s,{label:"\u59D3\u540D",prop:"name"},{default:l(()=>[e(n,{modelValue:a.name,"onUpdate:modelValue":d[0]||(d[0]=u=>a.name=u),placeholder:"\u8BF7\u8F93\u5165\u59D3\u540D",clearable:"",style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(t,{span:6},{default:l(()=>[e(s,{label:"\u6027\u522B",prop:"sex"},{default:l(()=>[e(E,{modelValue:a.sex,"onUpdate:modelValue":d[1]||(d[1]=u=>a.sex=u),size:"medium"},{default:l(()=>[e(i,{label:1},{default:l(()=>[m("\u7537")]),_:1}),e(i,{label:2},{default:l(()=>[m("\u5973")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(t,{span:6},{default:l(()=>[e(s,{label:"\u5E74\u9F84",prop:"age"},{default:l(()=>[e(n,{modelValue:a.age,"onUpdate:modelValue":d[2]||(d[2]=u=>a.age=u),placeholder:"\u8BF7\u8F93\u5165\u5E74\u9F84",clearable:"",style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(t,{span:6},{default:l(()=>[e(s,{label:"\u7535\u8BDD",prop:"phone"},{default:l(()=>[e(n,{modelValue:a.phone,"onUpdate:modelValue":d[3]||(d[3]=u=>a.phone=u),placeholder:"\u8BF7\u8F93\u5165\u7535\u8BDD",clearable:"",style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(t,{span:6},{default:l(()=>[e(s,{label:"\u8EAB\u4EFD\u8BC1\u53F7",prop:"id_card"},{default:l(()=>[e(n,{modelValue:a.id_card,"onUpdate:modelValue":d[4]||(d[4]=u=>a.id_card=u),placeholder:"\u8BF7\u8F93\u5165\u8EAB\u4EFD\u8BC1\u53F7",clearable:"",style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(t,{span:6},{default:l(()=>[e(s,{label:"\u5730\u5740",prop:"field104"},{default:l(()=>[e(n,{modelValue:a.address,"onUpdate:modelValue":d[5]||(d[5]=u=>a.address=u),clearable:"",style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1})]),_:1})]),_:1}),Ee,e(t,null,{default:l(()=>[e(B,null,{default:l(()=>[e(t,{span:6},{default:l(()=>[e(s,{label:"\u5730\u5740"},{default:l(()=>[e(n,{value:a.area_name+a.street_name+a.village_name,placeholder:"\u8BF7\u8F93\u5165\u5730\u5740",clearable:"",style:{width:"100%"}},null,8,["value"])]),_:1})]),_:1}),e(t,{span:6},{default:l(()=>[e(s,{label:"\u8BE6\u7EC6\u5730\u5740",prop:"address"},{default:l(()=>[e(n,{modelValue:a.address,"onUpdate:modelValue":d[6]||(d[6]=u=>a.address=u),placeholder:"\u8BF7\u8F93\u5165\u8BE6\u7EC6\u5730\u5740",clearable:"",style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(t,{span:12},{default:l(()=>[e(s,{label:"\u6C7D\u8F66\u662F\u5426\u80FD\u5230\u5BB6","label-width":"200px",prop:"highway"},{default:l(()=>[e(E,{modelValue:a.highway,"onUpdate:modelValue":d[7]||(d[7]=u=>a.highway=u),size:"medium"},{default:l(()=>[e(i,{label:1},{default:l(()=>[m("\u662F")]),_:1}),e(i,{label:0},{default:l(()=>[m("\u5426")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(t,{span:6},{default:l(()=>[e(s,{label:"\u662F\u5426\u4F7F\u7528\u667A\u80FD\u624B\u673A","label-width":"200px",prop:"smart_phone"},{default:l(()=>[e(E,{modelValue:a.smart_phone,"onUpdate:modelValue":d[8]||(d[8]=u=>a.smart_phone=u),size:"medium"},{default:l(()=>[e(i,{label:1},{default:l(()=>[m("\u662F")]),_:1}),e(i,{label:0},{default:l(()=>[m("\u5426")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),a.smart_phone?(r(),b(t,{key:0,span:6},{default:l(()=>[e(s,{label:"\u5FAE\u4FE1\u53F7",prop:"field119"},{default:l(()=>[e(n,{modelValue:a.skills,"onUpdate:modelValue":d[9]||(d[9]=u=>a.skills=u),placeholder:"\u8BF7\u8F93\u5165\u5FAE\u4FE1\u53F7",clearable:"",style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1})):D("",!0)]),_:1})]),_:1}),ce,e(t,null,{default:l(()=>[(r(!0),_(V,null,v(a.family,(u,c)=>(r(),_("div",{key:c},[e(B,null,{default:l(()=>[e(t,{span:6},{default:l(()=>[e(s,{label:"\u59D3\u540D",prop:"name"},{default:l(()=>[e(n,{modelValue:u.name,"onUpdate:modelValue":o=>u.name=o,placeholder:"\u8BF7\u8F93\u5165\u59D3\u540D",clearable:"",style:{width:"100%"}},null,8,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024),e(t,{span:6,class:"dates"},{default:l(()=>[e(s,{label:"\u51FA\u751F\u65E5\u671F",prop:"field110"},{default:l(()=>[e(z,{disabled:!0,modelValue:u.birth_time,"onUpdate:modelValue":o=>u.birth_time=o,style:{width:"150%"},placeholder:"\u8BF7\u8F93\u5165\u51FA\u751F\u65E5\u671F",clearable:""},null,8,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024),e(t,{span:6},{default:l(()=>[e(s,{label:"\u5C31\u4E1A\u60C5\u51B5",prop:"field111"},{default:l(()=>[e(q,{disabled:!0,modelValue:u.situation,"onUpdate:modelValue":o=>u.situation=o,placeholder:"\u8BF7\u8F93\u5165\u5C31\u4E1A\u60C5\u51B5",clearable:"",style:{width:"100%"}},{default:l(()=>[(r(!0),_(V,null,v(x,(o,A)=>(r(),b(L,{key:A,label:o.name,value:o.id},null,8,["label","value"]))),128))]),_:2},1032,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024),e(t,{span:6},{default:l(()=>[e(s,{label:"\u6280\u80FD\u7279\u957F",prop:"field119"},{default:l(()=>[e(n,{modelValue:u.skills,"onUpdate:modelValue":o=>u.skills=o,placeholder:"\u8BF7\u8F93\u5165\u6280\u80FD\u7279\u957F",clearable:"",style:{width:"100%"}},null,8,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024)]),_:2},1024)]))),128)),e(s,{label:"\u662F\u5426\u5B58\u5728\u5B66\u751F, \u5A74\u5E7C\u513F",labelWidth:"200px"},{default:l(()=>[e(E,{modelValue:a.child,"onUpdate:modelValue":d[10]||(d[10]=u=>a.child=u),size:"medium"},{default:l(()=>[e(i,{label:1},{default:l(()=>[m("\u662F")]),_:1}),e(i,{label:0},{default:l(()=>[m("\u5426")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),a.child?(r(!0),_(V,{key:0},v(a.child_arr,(u,c)=>(r(),_("div",null,[a.child_arr[c].age<=3?(r(),b(t,{key:0},{default:l(()=>[e(B,null,{default:l(()=>[e(t,{span:6},{default:l(()=>[e(s,{label:"\u5E74\u9F84",prop:"field134"},{default:l(()=>[e(n,{modelValue:u.age,"onUpdate:modelValue":o=>u.age=o,clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024),e(t,{span:6},{default:l(()=>[e(s,{label:"\u54FA\u4E73\u65B9\u5F0F",prop:"feeding"},{default:l(()=>[e(E,{modelValue:u.feeding,"onUpdate:modelValue":o=>u.feeding=o,size:"medium"},{default:l(()=>[(r(!0),_(V,null,v(O.feedsList,(o,A)=>(r(),b(i,{key:c,label:o.value},{default:l(()=>[m(ie(o.label),1)]),_:2},1032,["label"]))),128))]),_:2},1032,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024),e(t,{span:6},{default:l(()=>[e(s,{label:"\u5907\u6CE8",prop:"field157"},{default:l(()=>[e(n,{modelValue:u.notes,"onUpdate:modelValue":o=>u.notes=o,placeholder:"\u8BF7\u8F93\u5165\u5907\u6CE8",clearable:"",style:{width:"100%"}},null,8,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024)]),_:2},1024)]),_:2},1024)):(r(),b(t,{key:1},{default:l(()=>[e(B,null,{default:l(()=>[e(t,{span:6},{default:l(()=>[e(s,{label:"\u5E74\u9F84",prop:"field134"},{default:l(()=>[e(n,{modelValue:u.age,"onUpdate:modelValue":o=>u.age=o,clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024),a.child_arr[c].age>=3?(r(),b(t,{key:0,span:6},{default:l(()=>[e(s,{label:"\u5E74\u7EA7",prop:"grade"},{default:l(()=>[e(n,{modelValue:u.grade,"onUpdate:modelValue":o=>u.grade=o,placeholder:"\u8BF7\u8F93\u5165\u5E74\u7EA7",clearable:"",style:{width:"100%"}},null,8,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024)):D("",!0),e(t,{span:6},{default:l(()=>[e(s,{label:"\u662F\u5426\u8865\u8BFE",prop:"is_lesson"},{default:l(()=>[e(E,{modelValue:u.is_lesson,"onUpdate:modelValue":o=>u.is_lesson=o,size:"medium"},{default:l(()=>[e(i,{label:"1"},{default:l(()=>[m("\u662F")]),_:1}),e(i,{label:"0"},{default:l(()=>[m("\u5426")]),_:1})]),_:2},1032,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024),u.is_lesson?(r(),b(t,{key:1,span:6},{default:l(()=>[e(s,{label:"\u8865\u8BFE\u60C5\u51B5",prop:"lessons"},{default:l(()=>[e(n,{modelValue:u.lessons,"onUpdate:modelValue":o=>u.lessons=o,clearable:"",style:{width:"100%"}},null,8,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024)):D("",!0),e(t,{span:6},{default:l(()=>[e(s,{label:"\u5907\u6CE8",prop:"field138"},{default:l(()=>[e(n,{modelValue:u.notes,"onUpdate:modelValue":o=>u.notes=o,placeholder:"\u8BF7\u8F93\u5165\u5907\u6CE8",clearable:"",style:{width:"100%"}},null,8,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024)]),_:2},1024)]),_:2},1024))]))),256)):D("",!0)]),_:1},8,["model"])]),_:1}),(r(!0),_(V,null,v(a.datas,(u,c)=>(r(),b(me(k(u.category_child||u.category_id)),{key:u.id,datas:u.datas,update_time:u.update_time},null,8,["datas","update_time"]))),128))],64)}}});const Fl=fe(Be,[["__scopeId","data-v-2fc76fc6"]]);export{Fl as default}; diff --git a/public/admin/assets/details.3560c752.js b/public/admin/assets/details.3560c752.js new file mode 100644 index 000000000..5463a73a3 --- /dev/null +++ b/public/admin/assets/details.3560c752.js @@ -0,0 +1 @@ +import{B as S,C as M,a1 as N,G as P,H as T,a2 as G,a5 as j,M as H,N as K,D as Q,I as W}from"./element-plus.4328d892.js";import{u as $}from"./vue-router.9f65afb1.js";import J from"./store.fd0d23f9.js";import X from"./breeding.df10d103.js";import Y from"./plant.c310a4b1.js";import Z from"./houseTransaction.8e0d315a.js";import ee from"./houseRenovate.6deede8a.js";import le from"./houseDecoration.d3f002c4.js";import ue from"./houseRepair.f318223d.js";import ae from"./banquetMarry.f6e2a9a1.js";import oe from"./banquetOther.9224a376.js";import te from"./banquetFuneral.7cf4d815.js";import de from"./banquetFullMoon.087a55f4.js";import se from"./banquetBirthday.4a89ca8d.js";import ne from"./thickProcessing.2ca73e55.js";import re from"./deepProcessing.66eb2640.js";import{f as pe}from"./informationg.d3032a30.js";import{d as U,$ as f,r as g,o as r,c as _,U as e,L as l,R as m,K as b,Q as D,T as V,a7 as v,S as ie,P as me,bf as _e,be,a as y}from"./@vue.51d7f2d8.js";import{d as fe}from"./index.ed71ac09.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const C=h=>(_e("data-v-2fc76fc6"),h=h(),be(),h),Fe=C(()=>y("p",{class:"tit"},"\u4E2A\u4EBA\u4FE1\u606F",-1)),Ee=C(()=>y("p",{class:"tit"},"\u5730\u533A\u4FE1\u606F",-1)),ce=C(()=>y("p",{class:"tit"},"\u5E38\u4F4F\u4EBA\u53E3",-1)),Ve=U({name:"test"}),Be=U({...Ve,setup(h){const w=$(),p=f(new Map);p.set(7,Y),p.set(8,J),p.set(32,X),p.set(15,Z),p.set(14,ee),p.set(13,le),p.set(12,ue),p.set(17,ae),p.set(20,oe),p.set(21,te),p.set(19,de),p.set(18,se),p.set(10,ne),p.set(9,re);const k=F=>p.get(F),a=f({name:"",phone:"",age:"",sex:"",id_card:"",area_name:"",street_name:"",village_name:"",brigade_name:"",addressa:"",address:"",family:[{name:"",birth_time:"",situation:"",work:"",phone:"",skills:""}],child:void 0,child_arr:[{name:"",birth:"",age:0,class:"",lessons:"",notes:"",feeding:""}],highway:void 0,smart_phone:void 0,wechat:"",datas:[]}),x=f([{name:"\u505A\u5DE5\u5730\u7684",id:"0"},{name:"\u5382\u91CC\u6253\u5DE5",id:"1"},{name:"\u516C\u53F8\u804C\u5458",id:"2"},{name:"\u653F\u5E9C\u4E0A\u73ED",id:"3"},{name:"\u79CD\u5730",id:"4"},{name:"\u5728\u5BB6\u8D4B\u95F2",id:"5"},{name:"\u5176\u4ED6",id:"6"}]);g(!1);const O=f({subjs:[{label:"\u8BED\u6587",value:1},{label:"\u6570\u5B66",value:2},{label:"\u82F1\u8BED",value:3},{label:"\u827A\u672F\u7C7B",value:4},{label:"\u5176\u4ED6",value:5}],feedsList:[{label:"\u6BCD\u4E73",value:"0"},{label:"\u5976\u7C89",value:"1"}],plantList:[{label:"\u81EA\u5DF1\u79CD\u517B",value:"0"},{label:"\u51FA\u79DF",value:"1"},{label:"\u4EE3\u79CD\u517B",value:"2"},{label:"\u79DF\u66F4\u591A\u5730\u6269\u5927\u79CD\u690D",value:"3"}],houseStyle:[{label:"\u4E2D\u5F0F",value:1},{label:"\u7F8E\u5F0F",value:2},{label:"\u6B27\u5F0F",value:3},{label:"\u7B80\u7EA6",value:4},{label:"\u5962\u534E",value:5},{label:"\u522B\u5885/\u56DB\u5408\u9662",value:6},{label:"\u5176\u4ED6",value:7}],weihu:[{label:"\u623F\u9876",value:1},{label:"\u5395\u6240",value:2},{label:"\u7BA1\u7EBF",value:3},{label:"\u7535\u5668",value:4}],field102Options:[{label:"\u522B\u5885",value:1},{label:"\u6D0B\u623F",value:2},{label:"\u9AD8\u5C42",value:3},{label:"\u697C\u68AF\u623F",value:4}],ecologyPlant:[{label:"\u975E\u751F\u6001\u79CD\u690D",value:1}],sellType:[{label:"\u81EA\u9500",value:"1"},{label:"\u5B9A\u70B9\u9500\u552E",value:"2"}],publicize:[{label:"\u6709\u65E0\u5BA3\u4F20\u63A8\u5E7F",value:1}],field106Options:[{label:"\u8D85\u5E02",value:1},{label:"\u751F\u9C9C",value:2},{label:"\u996D\u5E97",value:3},{label:"\u4E94\u91D1",value:4},{label:"\u6742\u8D27",value:5},{label:"\u670D\u88C5",value:6},{label:"\u6587\u5177",value:7},{label:"\u5176\u4ED6",value:8}],field109Options:[{label:"\u5B66\u751F",value:1},{label:"\u5BB6\u5EAD\u5BA2\u6237",value:2},{label:"\u9752\u5E74\u5BA2\u6237",value:3},{label:"\u8001\u5E74\u4EBA",value:4},{label:"\u6E38\u5BA2",value:5}],banquetList:[{label:"\u5A5A\u5BB4",value:1},{label:"\u5BFF\u5BB4",value:2},{label:"\u6EE1\u6708\u9152",value:3},{label:"\u5176\u5B83\u5E86\u529F\u5BB4",value:4},{label:"\u767D\u4E8B",value:5}],field106aOptions:[{label:"\u9152\u5E97",value:1},{label:"\u4E00\u6761\u9F99",value:2},{label:"\u53EA\u8BF7\u53A8\u5E08",value:3}],field104Options:[{label:"\u7535\u74F6\u8F66",value:1},{label:"\u6469\u6258\u8F66",value:2},{label:"\u5C0F\u6C7D\u8F66",value:3}],provinceOptions:[],cityOptions:[],areaOptions:[],streetOptions:[]});return f([{label:"\u6709\u52A0\u5DE5\u4ED3\u50A8",value:1}]),f([{label:"\u6709\u8FD0\u8F93",value:1}]),f([{label:"\u662F\u5426\u60F3\u8981\u6269\u5927\u7ECF\u8425",value:1}]),g(!0),pe({id:w.query.id}).then(async F=>{for(const d in a)F[d]!=null&&F[d]!=null&&(a[d]=F[d]);a.addressa=a.area_name+a.street_name+a.village_name+a.brigade_name+a.address,console.log(a)}),(F,d)=>{const n=S,s=M,t=N,i=P,E=T,B=G,z=j,L=H,q=K,I=Q,R=W;return r(),_(V,null,[e(R,null,{default:l(()=>[e(I,{ref:"elForm",disabled:!0,model:a,size:"mini","label-width":"100px"},{default:l(()=>[Fe,e(t,null,{default:l(()=>[e(B,null,{default:l(()=>[e(t,{span:6},{default:l(()=>[e(s,{label:"\u59D3\u540D",prop:"name"},{default:l(()=>[e(n,{modelValue:a.name,"onUpdate:modelValue":d[0]||(d[0]=u=>a.name=u),placeholder:"\u8BF7\u8F93\u5165\u59D3\u540D",clearable:"",style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(t,{span:6},{default:l(()=>[e(s,{label:"\u6027\u522B",prop:"sex"},{default:l(()=>[e(E,{modelValue:a.sex,"onUpdate:modelValue":d[1]||(d[1]=u=>a.sex=u),size:"medium"},{default:l(()=>[e(i,{label:1},{default:l(()=>[m("\u7537")]),_:1}),e(i,{label:2},{default:l(()=>[m("\u5973")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(t,{span:6},{default:l(()=>[e(s,{label:"\u5E74\u9F84",prop:"age"},{default:l(()=>[e(n,{modelValue:a.age,"onUpdate:modelValue":d[2]||(d[2]=u=>a.age=u),placeholder:"\u8BF7\u8F93\u5165\u5E74\u9F84",clearable:"",style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(t,{span:6},{default:l(()=>[e(s,{label:"\u7535\u8BDD",prop:"phone"},{default:l(()=>[e(n,{modelValue:a.phone,"onUpdate:modelValue":d[3]||(d[3]=u=>a.phone=u),placeholder:"\u8BF7\u8F93\u5165\u7535\u8BDD",clearable:"",style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(t,{span:6},{default:l(()=>[e(s,{label:"\u8EAB\u4EFD\u8BC1\u53F7",prop:"id_card"},{default:l(()=>[e(n,{modelValue:a.id_card,"onUpdate:modelValue":d[4]||(d[4]=u=>a.id_card=u),placeholder:"\u8BF7\u8F93\u5165\u8EAB\u4EFD\u8BC1\u53F7",clearable:"",style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(t,{span:6},{default:l(()=>[e(s,{label:"\u5730\u5740",prop:"field104"},{default:l(()=>[e(n,{modelValue:a.address,"onUpdate:modelValue":d[5]||(d[5]=u=>a.address=u),clearable:"",style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1})]),_:1})]),_:1}),Ee,e(t,null,{default:l(()=>[e(B,null,{default:l(()=>[e(t,{span:6},{default:l(()=>[e(s,{label:"\u5730\u5740"},{default:l(()=>[e(n,{value:a.area_name+a.street_name+a.village_name,placeholder:"\u8BF7\u8F93\u5165\u5730\u5740",clearable:"",style:{width:"100%"}},null,8,["value"])]),_:1})]),_:1}),e(t,{span:6},{default:l(()=>[e(s,{label:"\u8BE6\u7EC6\u5730\u5740",prop:"address"},{default:l(()=>[e(n,{modelValue:a.address,"onUpdate:modelValue":d[6]||(d[6]=u=>a.address=u),placeholder:"\u8BF7\u8F93\u5165\u8BE6\u7EC6\u5730\u5740",clearable:"",style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(t,{span:12},{default:l(()=>[e(s,{label:"\u6C7D\u8F66\u662F\u5426\u80FD\u5230\u5BB6","label-width":"200px",prop:"highway"},{default:l(()=>[e(E,{modelValue:a.highway,"onUpdate:modelValue":d[7]||(d[7]=u=>a.highway=u),size:"medium"},{default:l(()=>[e(i,{label:1},{default:l(()=>[m("\u662F")]),_:1}),e(i,{label:0},{default:l(()=>[m("\u5426")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(t,{span:6},{default:l(()=>[e(s,{label:"\u662F\u5426\u4F7F\u7528\u667A\u80FD\u624B\u673A","label-width":"200px",prop:"smart_phone"},{default:l(()=>[e(E,{modelValue:a.smart_phone,"onUpdate:modelValue":d[8]||(d[8]=u=>a.smart_phone=u),size:"medium"},{default:l(()=>[e(i,{label:1},{default:l(()=>[m("\u662F")]),_:1}),e(i,{label:0},{default:l(()=>[m("\u5426")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),a.smart_phone?(r(),b(t,{key:0,span:6},{default:l(()=>[e(s,{label:"\u5FAE\u4FE1\u53F7",prop:"field119"},{default:l(()=>[e(n,{modelValue:a.skills,"onUpdate:modelValue":d[9]||(d[9]=u=>a.skills=u),placeholder:"\u8BF7\u8F93\u5165\u5FAE\u4FE1\u53F7",clearable:"",style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1})):D("",!0)]),_:1})]),_:1}),ce,e(t,null,{default:l(()=>[(r(!0),_(V,null,v(a.family,(u,c)=>(r(),_("div",{key:c},[e(B,null,{default:l(()=>[e(t,{span:6},{default:l(()=>[e(s,{label:"\u59D3\u540D",prop:"name"},{default:l(()=>[e(n,{modelValue:u.name,"onUpdate:modelValue":o=>u.name=o,placeholder:"\u8BF7\u8F93\u5165\u59D3\u540D",clearable:"",style:{width:"100%"}},null,8,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024),e(t,{span:6,class:"dates"},{default:l(()=>[e(s,{label:"\u51FA\u751F\u65E5\u671F",prop:"field110"},{default:l(()=>[e(z,{disabled:!0,modelValue:u.birth_time,"onUpdate:modelValue":o=>u.birth_time=o,style:{width:"150%"},placeholder:"\u8BF7\u8F93\u5165\u51FA\u751F\u65E5\u671F",clearable:""},null,8,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024),e(t,{span:6},{default:l(()=>[e(s,{label:"\u5C31\u4E1A\u60C5\u51B5",prop:"field111"},{default:l(()=>[e(q,{disabled:!0,modelValue:u.situation,"onUpdate:modelValue":o=>u.situation=o,placeholder:"\u8BF7\u8F93\u5165\u5C31\u4E1A\u60C5\u51B5",clearable:"",style:{width:"100%"}},{default:l(()=>[(r(!0),_(V,null,v(x,(o,A)=>(r(),b(L,{key:A,label:o.name,value:o.id},null,8,["label","value"]))),128))]),_:2},1032,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024),e(t,{span:6},{default:l(()=>[e(s,{label:"\u6280\u80FD\u7279\u957F",prop:"field119"},{default:l(()=>[e(n,{modelValue:u.skills,"onUpdate:modelValue":o=>u.skills=o,placeholder:"\u8BF7\u8F93\u5165\u6280\u80FD\u7279\u957F",clearable:"",style:{width:"100%"}},null,8,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024)]),_:2},1024)]))),128)),e(s,{label:"\u662F\u5426\u5B58\u5728\u5B66\u751F, \u5A74\u5E7C\u513F",labelWidth:"200px"},{default:l(()=>[e(E,{modelValue:a.child,"onUpdate:modelValue":d[10]||(d[10]=u=>a.child=u),size:"medium"},{default:l(()=>[e(i,{label:1},{default:l(()=>[m("\u662F")]),_:1}),e(i,{label:0},{default:l(()=>[m("\u5426")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),a.child?(r(!0),_(V,{key:0},v(a.child_arr,(u,c)=>(r(),_("div",null,[a.child_arr[c].age<=3?(r(),b(t,{key:0},{default:l(()=>[e(B,null,{default:l(()=>[e(t,{span:6},{default:l(()=>[e(s,{label:"\u5E74\u9F84",prop:"field134"},{default:l(()=>[e(n,{modelValue:u.age,"onUpdate:modelValue":o=>u.age=o,clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024),e(t,{span:6},{default:l(()=>[e(s,{label:"\u54FA\u4E73\u65B9\u5F0F",prop:"feeding"},{default:l(()=>[e(E,{modelValue:u.feeding,"onUpdate:modelValue":o=>u.feeding=o,size:"medium"},{default:l(()=>[(r(!0),_(V,null,v(O.feedsList,(o,A)=>(r(),b(i,{key:c,label:o.value},{default:l(()=>[m(ie(o.label),1)]),_:2},1032,["label"]))),128))]),_:2},1032,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024),e(t,{span:6},{default:l(()=>[e(s,{label:"\u5907\u6CE8",prop:"field157"},{default:l(()=>[e(n,{modelValue:u.notes,"onUpdate:modelValue":o=>u.notes=o,placeholder:"\u8BF7\u8F93\u5165\u5907\u6CE8",clearable:"",style:{width:"100%"}},null,8,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024)]),_:2},1024)]),_:2},1024)):(r(),b(t,{key:1},{default:l(()=>[e(B,null,{default:l(()=>[e(t,{span:6},{default:l(()=>[e(s,{label:"\u5E74\u9F84",prop:"field134"},{default:l(()=>[e(n,{modelValue:u.age,"onUpdate:modelValue":o=>u.age=o,clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024),a.child_arr[c].age>=3?(r(),b(t,{key:0,span:6},{default:l(()=>[e(s,{label:"\u5E74\u7EA7",prop:"grade"},{default:l(()=>[e(n,{modelValue:u.grade,"onUpdate:modelValue":o=>u.grade=o,placeholder:"\u8BF7\u8F93\u5165\u5E74\u7EA7",clearable:"",style:{width:"100%"}},null,8,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024)):D("",!0),e(t,{span:6},{default:l(()=>[e(s,{label:"\u662F\u5426\u8865\u8BFE",prop:"is_lesson"},{default:l(()=>[e(E,{modelValue:u.is_lesson,"onUpdate:modelValue":o=>u.is_lesson=o,size:"medium"},{default:l(()=>[e(i,{label:"1"},{default:l(()=>[m("\u662F")]),_:1}),e(i,{label:"0"},{default:l(()=>[m("\u5426")]),_:1})]),_:2},1032,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024),u.is_lesson?(r(),b(t,{key:1,span:6},{default:l(()=>[e(s,{label:"\u8865\u8BFE\u60C5\u51B5",prop:"lessons"},{default:l(()=>[e(n,{modelValue:u.lessons,"onUpdate:modelValue":o=>u.lessons=o,clearable:"",style:{width:"100%"}},null,8,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024)):D("",!0),e(t,{span:6},{default:l(()=>[e(s,{label:"\u5907\u6CE8",prop:"field138"},{default:l(()=>[e(n,{modelValue:u.notes,"onUpdate:modelValue":o=>u.notes=o,placeholder:"\u8BF7\u8F93\u5165\u5907\u6CE8",clearable:"",style:{width:"100%"}},null,8,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024)]),_:2},1024)]),_:2},1024))]))),256)):D("",!0)]),_:1},8,["model"])]),_:1}),(r(!0),_(V,null,v(a.datas,(u,c)=>(r(),b(me(k(u.category_child||u.category_id)),{key:u.id,datas:u.datas,update_time:u.update_time},null,8,["datas","update_time"]))),128))],64)}}});const Fl=fe(Be,[["__scopeId","data-v-2fc76fc6"]]);export{Fl as default}; diff --git a/public/admin/assets/details.41068db2.js b/public/admin/assets/details.41068db2.js new file mode 100644 index 000000000..1e8021d31 --- /dev/null +++ b/public/admin/assets/details.41068db2.js @@ -0,0 +1 @@ +import{J as Z,k as D,K as ee,B as le,C as ae,D as ue,I as oe,b as te,N as re,M as ne,w as de}from"./element-plus.4328d892.js";import{u as N,a as se}from"./vue-router.9f65afb1.js";import{a as ie,b as me}from"./shop_contract.07d6415c.js";import{e as pe,a as _e,d as fe}from"./index.37f7aea6.js";import{d as ce,C as ye,$ as ve,r as c,j as Ve,af as be,o as s,c as b,U as e,L as a,K as _,Q as m,T as M,a7 as Ee,a as f,M as A,u as T,R as U,S as Fe,bf as Be,be as ge}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const E=F=>(Be("data-v-7735eef5"),F=F(),ge(),F),Ce=E(()=>f("span",null,"\u7532\u65B9\u57FA\u672C\u4FE1\u606F",-1)),ke=E(()=>f("span",null,"\u4E59\u65B9\u57FA\u672C\u4FE1\u606F",-1)),Ae=E(()=>f("span",null,"\u4E59\u65B9\u8D44\u8D28\u4FE1\u606F",-1)),Ue=E(()=>f("span",null,"\u4E2A\u4EBA\u57FA\u672C\u4FE1\u606F",-1)),he={class:"persenal"},qe=["src"],De=E(()=>f("span",null,"\u4E2A\u4EBA\u8D44\u8D28\u4FE1\u606F",-1)),we=["src"],xe=["src"],Se=["src"],Re=["src"],Ie=["src"],ze=["src"],Ne=E(()=>f("span",null,"\u7535\u5B50\u5408\u540C",-1)),Me=E(()=>f("br",null,null,-1)),Te=["href"],Oe=["href"],je=ce({__name:"details",setup(F){const{query:O}=N(),{removeTab:j}=pe(),J=ye("base_url"),n=ve({id:"",company_id:"",contract_type:"",contract_type_name:"",contract_no:"",file:"",status:"",check_status:"",party_a:"",party_a_name:"",party_b:"",party_b_name:"",area_manager:"",area_manager_name:"",type_name:"",url:"",status_name:"",signed_contract_url:"",notes:""});c([]);const w=c({}),r=c({}),x=c([]),p=c([]),B=c([]),i=c([]),y=c([]),S=c(!0),h=c(!1),q=c(!0),K=N(),L=_e();async function Q(){const o=await ie({id:O.id});Object.keys(n).forEach(l=>{o[l]!=null&&o[l]!=null&&(n[l]=o[l])}),r.value=o.party_a_info,w.value=o,(w.value.status==1||o.check_status==3||o.status==1)&&(q.value=!1);try{o.party_a_info.qualification.bank_account&&(o.party_a_info.qualification.bank_account=JSON.parse(o.party_a_info.qualification.bank_account),x.value=o.party_a_info.qualification),o.party_b_info.qualification.other_qualifications&&(o.party_b_info.qualification.other_qualifications=JSON.parse(o.party_b_info.qualification.other_qualifications),B.value=o.party_b_info.qualification)}catch{}x.value=o.party_a_info.qualification,p.value=o.party_b_info,B.value=o.party_b_info.qualification,h.value=!1}const W=o=>{var l;return((l=o==null?void 0:o.name)==null?void 0:l.substring(o.name.length-4,o.name.length))!=".pdf"?(D.error("\u4EC5\u652F\u6301\u4E0A\u4F20.pdf\u6587\u4EF6"),!1):!0},g=c(null),$=o=>{g.value.clearFiles();const l=o[0];l.uid=ee(),g.value.handleStart(l),g.value.submit()},G=(o,l)=>{if(o.code==0){D.error(o.msg);return}n.file=o.data.uri},H=se(),P=()=>{if(!n.file)return D.error("\u8BF7\u5148\u4E0A\u4F20\u5408\u540C!");me({file:n.file,id:K.query.id}),j(),H.back()};return Ve(async()=>{await Q()}),(o,l)=>{const d=le,t=ae,v=ue,V=oe,X=te,C=re,R=ne,I=de,Y=Z,k=be("perms");return s(),b(M,null,[e(V,{class:"box-card"},{header:a(()=>[Ce]),default:a(()=>[e(v,{inline:!0,ref:"formRef",model:r.value,"label-width":"91.5px",rules:o.formRules,class:"select"},{default:a(()=>[e(t,{label:"\u516C\u53F8\u540D\u79F0",prop:"company_name",required:""},{default:a(()=>[e(d,{readonly:"",modelValue:r.value.company_name,"onUpdate:modelValue":l[0]||(l[0]=u=>r.value.company_name=u)},null,8,["modelValue"])]),_:1}),e(t,{label:"\u793E\u4F1A\u4EE3\u7801",prop:"organization_code",required:""},{default:a(()=>[e(d,{readonly:"",modelValue:r.value.organization_code,"onUpdate:modelValue":l[1]||(l[1]=u=>r.value.organization_code=u)},null,8,["modelValue"])]),_:1}),e(t,{label:"\u4E3B\u8981\u8054\u7CFB\u4EBA",prop:"company_name",required:""},{default:a(()=>[e(d,{readonly:"",modelValue:r.value.master_name,"onUpdate:modelValue":l[2]||(l[2]=u=>r.value.master_name=u)},null,8,["modelValue"])]),_:1}),e(t,{label:"\u624B\u673A\u53F7",prop:"master_phone",required:""},{default:a(()=>[e(d,{readonly:"",modelValue:r.value.master_phone,"onUpdate:modelValue":l[3]||(l[3]=u=>r.value.master_phone=u)},null,8,["modelValue"])]),_:1}),e(t,{label:"\u5E02",prop:"city"},{default:a(()=>[e(d,{readonly:"",modelValue:r.value.city_name,"onUpdate:modelValue":l[4]||(l[4]=u=>r.value.city_name=u)},null,8,["modelValue"])]),_:1}),e(t,{label:"\u533A",prop:"area"},{default:a(()=>[e(d,{readonly:"",modelValue:r.value.area_name,"onUpdate:modelValue":l[5]||(l[5]=u=>r.value.area_name=u)},null,8,["modelValue"])]),_:1}),r.value.company_type!=30?(s(),_(t,{key:0,label:"\u9547",prop:"company_type_name"},{default:a(()=>[e(d,{readonly:"",modelValue:r.value.street_name,"onUpdate:modelValue":l[6]||(l[6]=u=>r.value.street_name=u)},null,8,["modelValue"])]),_:1})):m("",!0),r.value.company_type!=30?(s(),_(t,{key:1,label:"\u5730\u5740",prop:"address"},{default:a(()=>[e(d,{readonly:"",modelValue:r.value.address,"onUpdate:modelValue":l[7]||(l[7]=u=>r.value.address=u),style:{width:"32rem"}},null,8,["modelValue"])]),_:1})):m("",!0)]),_:1},8,["model","rules"])]),_:1}),m("",!0),S.value?(s(),_(V,{key:1},{header:a(()=>[ke]),default:a(()=>[e(v,{inline:!0,ref:"formRef",model:p.value,"label-width":"91.5px",rules:o.formRules,class:"select"},{default:a(()=>[e(t,{label:"\u5546\u6237\u540D\u79F0",prop:"company_name",required:""},{default:a(()=>[e(d,{readonly:"",modelValue:p.value.company_name,"onUpdate:modelValue":l[8]||(l[8]=u=>p.value.company_name=u)},null,8,["modelValue"])]),_:1}),e(t,{label:"\u793E\u4F1A\u4EE3\u7801",prop:"organization_code",required:""},{default:a(()=>[e(d,{readonly:"",modelValue:p.value.organization_code,"onUpdate:modelValue":l[9]||(l[9]=u=>p.value.organization_code=u)},null,8,["modelValue"])]),_:1}),e(t,{label:"\u4E3B\u8981\u8054\u7CFB\u4EBA",prop:"master_name",required:""},{default:a(()=>[e(d,{readonly:"",modelValue:p.value.master_name,"onUpdate:modelValue":l[10]||(l[10]=u=>p.value.master_name=u)},null,8,["modelValue"])]),_:1}),e(t,{label:"\u624B\u673A\u53F7",prop:"master_phone",required:""},{default:a(()=>[e(d,{readonly:"",modelValue:p.value.master_phone,"onUpdate:modelValue":l[11]||(l[11]=u=>p.value.master_phone=u)},null,8,["modelValue"])]),_:1}),e(t,{label:"\u5E02",prop:"city"},{default:a(()=>[e(d,{readonly:"",modelValue:r.value.city_name,"onUpdate:modelValue":l[12]||(l[12]=u=>r.value.city_name=u)},null,8,["modelValue"])]),_:1}),e(t,{label:"\u533A",prop:"area"},{default:a(()=>[e(d,{readonly:"",modelValue:r.value.area_name,"onUpdate:modelValue":l[13]||(l[13]=u=>r.value.area_name=u)},null,8,["modelValue"])]),_:1}),e(t,{label:"\u9547",prop:"street"},{default:a(()=>[e(d,{readonly:"",modelValue:r.value.street_name,"onUpdate:modelValue":l[14]||(l[14]=u=>r.value.street_name=u)},null,8,["modelValue"])]),_:1}),e(t,{label:"\u5730\u5740",prop:"street"},{default:a(()=>[e(d,{readonly:"",modelValue:p.value.address,"onUpdate:modelValue":l[15]||(l[15]=u=>p.value.address=u),style:{width:"31.5rem"}},null,8,["modelValue"])]),_:1})]),_:1},8,["model","rules"])]),_:1})):m("",!0),S.value?(s(),_(V,{key:2},{header:a(()=>[Ae]),default:a(()=>[e(v,{inline:!0,ref:"formRef",model:n,"label-width":"90px",rules:o.formRules,class:"company_z"},{default:a(()=>[e(t,{class:"other",label:"\u8D44\u8D28\u4FE1\u606F",prop:"contract_no",required:""},{default:a(()=>[(s(!0),b(M,null,Ee(B.value,(u,z)=>(s(),b("div",{class:"company",key:z},[e(X,{src:u,"preview-src-list":B.value,"initial-index":z,fit:"cover"},null,8,["src","preview-src-list","initial-index"])]))),128))]),_:1})]),_:1},8,["model","rules"])]),_:1})):m("",!0),h.value?(s(),_(V,{key:3},{header:a(()=>[Ue]),default:a(()=>[f("div",he,[f("img",{src:i.value.avatar},null,8,qe),e(v,{inline:!0,ref:"formRef",model:i.value,"label-width":"90px",rules:o.formRules,class:"person_select"},{default:a(()=>[e(t,{label:"\u59D3\u540D"},{default:a(()=>[e(d,{readonly:"",modelValue:i.value.nickname,"onUpdate:modelValue":l[16]||(l[16]=u=>i.value.nickname=u),placeholder:"\u8BF7\u8F93\u5165\u59D3\u540D"},null,8,["modelValue"])]),_:1}),e(t,{label:"\u6027\u522B"},{default:a(()=>[e(d,{readonly:"",modelValue:i.value.sex,"onUpdate:modelValue":l[17]||(l[17]=u=>i.value.sex=u),placeholder:"\u8BF7\u8F93\u5165\u6027\u522B"},null,8,["modelValue"])]),_:1}),e(t,{label:"\u8054\u7CFB\u7535\u8BDD"},{default:a(()=>[e(d,{readonly:"",modelValue:i.value.mobile,"onUpdate:modelValue":l[18]||(l[18]=u=>i.value.mobile=u),placeholder:"\u8BF7\u8F93\u5165\u8054\u7CFB\u7535\u8BDD"},null,8,["modelValue"])]),_:1}),e(t,{label:"\u8EAB\u4EFD\u8BC1\u53F7"},{default:a(()=>[e(d,{modelValue:i.value.id_card,"onUpdate:modelValue":l[19]||(l[19]=u=>i.value.id_card=u),placeholder:"\u8BF7\u8F93\u5165\u8EAB\u4EFD\u8BC1\u53F7",readonly:""},null,8,["modelValue"])]),_:1}),e(t,{label:"\u7701",prop:"province"},{default:a(()=>[e(C,{readonly:"",modelValue:i.value.province_name,"onUpdate:modelValue":l[20]||(l[20]=u=>i.value.province_name=u),placeholder:"\u8BF7\u9009\u62E9\u7701"},null,8,["modelValue"])]),_:1}),e(t,{label:"\u5E02",prop:"city"},{default:a(()=>[e(C,{readonly:"",modelValue:i.value.city_name,"onUpdate:modelValue":l[21]||(l[21]=u=>i.value.city_name=u),placeholder:"\u8BF7\u9009\u62E9\u5E02"},null,8,["modelValue"])]),_:1}),e(t,{label:"\u533A",prop:"area"},{default:a(()=>[e(C,{readonly:"",modelValue:i.value.area_name,"onUpdate:modelValue":l[22]||(l[22]=u=>i.value.area_name=u),placeholder:"\u8BF7\u9009\u62E9\u533A"},{default:a(()=>[e(R)]),_:1},8,["modelValue"])]),_:1}),e(t,{label:"\u9547",prop:"street"},{default:a(()=>[e(C,{readonly:"",modelValue:i.value.street_name,"onUpdate:modelValue":l[23]||(l[23]=u=>i.value.street_name=u),placeholder:"\u8BF7\u9009\u62E9\u9547"},{default:a(()=>[e(R)]),_:1},8,["modelValue"])]),_:1})]),_:1},8,["model","rules"])])]),_:1})):m("",!0),h.value?(s(),_(V,{key:4},{header:a(()=>[De]),default:a(()=>[e(v,{class:"idcard",model:y.value,inline:!0},{default:a(()=>[e(t,{label:"\u8EAB\u4EFD\u8BC1"},{default:a(()=>[f("img",{src:y.value.id_card},null,8,we),f("img",{src:y.value.id_card_b},null,8,xe)]),_:1}),e(t,{label:"\u94F6\u884C\u5361"},{default:a(()=>[f("img",{src:y.value.bank_account},null,8,Se),f("img",{src:y.value.bank_account_b},null,8,Re)]),_:1}),y.value.car_card||y.value.car_card_b?(s(),_(t,{key:0,label:"\u884C\u9A76\u8BC1"},{default:a(()=>[y.value.car_card?(s(),b("img",{key:0,src:y.value.car_card},null,8,Ie)):m("",!0),y.value.car_card_b?(s(),b("img",{key:1,src:y.value.car_card_b},null,8,ze)):m("",!0)]),_:1})):m("",!0)]),_:1},8,["model"])]),_:1})):m("",!0),e(V,null,{header:a(()=>[Ne]),default:a(()=>[e(v,{inline:!0,class:"frame",ref:"formRef",model:n,"label-width":"90px",rules:o.formRules},{default:a(()=>[e(t,{label:"\u7532\u65B9",prop:"contract_type"},{default:a(()=>[e(d,{modelValue:r.value.company_name,"onUpdate:modelValue":l[24]||(l[24]=u=>r.value.company_name=u),readonly:!0,placeholder:"\u6682\u65E0\u7532\u65B9\u65B9"},null,8,["modelValue"])]),_:1}),e(t,{label:"\u4E59\u65B9",prop:"contract_no"},{default:a(()=>[e(d,{modelValue:p.value.company_name,"onUpdate:modelValue":l[25]||(l[25]=u=>p.value.company_name=u),readonly:!0,placeholder:"\u6682\u65E0\u4E59\u65B9"},null,8,["modelValue"])]),_:1}),e(t,{label:"\u5408\u540C\u7C7B\u578B"},{default:a(()=>[e(d,{value:"\u5546\u6237\u5165\u9A7B\u5408\u540C",readonly:!0,placeholder:"\u5546\u6237\u5165\u9A7B\u5408\u540C"})]),_:1}),Me,n.notes?(s(),_(t,{key:0,label:"\u5907\u6CE8"},{default:a(()=>[e(d,{modelValue:n.notes,"onUpdate:modelValue":l[26]||(l[26]=u=>n.notes=u),readonly:!0,type:"textarea"},null,8,["modelValue"])]),_:1})):m("",!0)]),_:1},8,["model","rules"])]),_:1}),e(V,null,{default:a(()=>[e(v,{"label-width":"100px"},{default:a(()=>[q.value||(n==null?void 0:n.status)==0?(s(),_(t,{key:0,label:"\u5408\u540C\u4E0A\u4F20",prop:"field127"},{default:a(()=>[(n==null?void 0:n.status)==0?A((s(),_(Y,{key:0,accept:".pdf",headers:{Token:T(L).token},class:"upload-demo",action:T(J)+"/upload/file","on-success":G,"before-upload":W,limit:1,"on-exceed":$,ref_key:"upload",ref:g},{default:a(()=>[e(I,{type:"primary"},{default:a(()=>[U(Fe(n.file?"\u91CD\u65B0\u4E0A\u4F20":"\u4E0A\u4F20"),1)]),_:1})]),_:1},8,["headers","action"])),[[k,["shop_contract/upload"]]]):m("",!0),n.file?A((s(),b("a",{key:1,style:{"margin-left":"10px",color:"#4a5dff","align-self":"flex-start"},href:n.file,target:"_blank"},[U("\u5408\u540C\u5DF2\u4E0A\u4F20,\u70B9\u51FB\u67E5\u770B")],8,Te)),[[k,["shop_contract/file"]]]):m("",!0)]),_:1})):m("",!0),q.value||n.status==0?(s(),_(t,{key:1},{default:a(()=>[A((s(),_(I,{type:"primary",onClick:P},{default:a(()=>[U("\u786E\u5B9A")]),_:1})),[[k,["shop_contract/upload"]]])]),_:1})):n.file&&n.status?(s(),_(t,{key:2},{default:a(()=>[n.file?A((s(),b("a",{key:0,style:{"margin-left":"10px",color:"#4a5dff"},href:n.signed_contract_url?n.signed_contract_url:n.file,target:"_blank"},[U("\u67E5\u770B\u5408\u540C")],8,Oe)),[[k,["shop_contract/file"]]]):m("",!0)]),_:1})):m("",!0)]),_:1})]),_:1})],64)}}});const gl=fe(je,[["__scopeId","data-v-7735eef5"]]);export{gl as default}; diff --git a/public/admin/assets/details.4664ed49.js b/public/admin/assets/details.4664ed49.js new file mode 100644 index 000000000..8e4807503 --- /dev/null +++ b/public/admin/assets/details.4664ed49.js @@ -0,0 +1 @@ +import{J as Z,k as D,K as ee,B as le,C as ae,D as ue,I as oe,b as te,N as re,M as ne,w as de}from"./element-plus.4328d892.js";import{u as N,a as se}from"./vue-router.9f65afb1.js";import{a as ie,b as me}from"./shop_contract.f4761eae.js";import{e as pe,a as _e,d as fe}from"./index.aa9bb752.js";import{d as ce,C as ye,$ as ve,r as c,j as Ve,af as be,o as s,c as b,U as e,L as a,K as _,Q as m,T as M,a7 as Ee,a as f,M as A,u as T,R as U,S as Fe,bf as Be,be as ge}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const E=F=>(Be("data-v-7735eef5"),F=F(),ge(),F),Ce=E(()=>f("span",null,"\u7532\u65B9\u57FA\u672C\u4FE1\u606F",-1)),ke=E(()=>f("span",null,"\u4E59\u65B9\u57FA\u672C\u4FE1\u606F",-1)),Ae=E(()=>f("span",null,"\u4E59\u65B9\u8D44\u8D28\u4FE1\u606F",-1)),Ue=E(()=>f("span",null,"\u4E2A\u4EBA\u57FA\u672C\u4FE1\u606F",-1)),he={class:"persenal"},qe=["src"],De=E(()=>f("span",null,"\u4E2A\u4EBA\u8D44\u8D28\u4FE1\u606F",-1)),we=["src"],xe=["src"],Se=["src"],Re=["src"],Ie=["src"],ze=["src"],Ne=E(()=>f("span",null,"\u7535\u5B50\u5408\u540C",-1)),Me=E(()=>f("br",null,null,-1)),Te=["href"],Oe=["href"],je=ce({__name:"details",setup(F){const{query:O}=N(),{removeTab:j}=pe(),J=ye("base_url"),n=ve({id:"",company_id:"",contract_type:"",contract_type_name:"",contract_no:"",file:"",status:"",check_status:"",party_a:"",party_a_name:"",party_b:"",party_b_name:"",area_manager:"",area_manager_name:"",type_name:"",url:"",status_name:"",signed_contract_url:"",notes:""});c([]);const w=c({}),r=c({}),x=c([]),p=c([]),B=c([]),i=c([]),y=c([]),S=c(!0),h=c(!1),q=c(!0),K=N(),L=_e();async function Q(){const o=await ie({id:O.id});Object.keys(n).forEach(l=>{o[l]!=null&&o[l]!=null&&(n[l]=o[l])}),r.value=o.party_a_info,w.value=o,(w.value.status==1||o.check_status==3||o.status==1)&&(q.value=!1);try{o.party_a_info.qualification.bank_account&&(o.party_a_info.qualification.bank_account=JSON.parse(o.party_a_info.qualification.bank_account),x.value=o.party_a_info.qualification),o.party_b_info.qualification.other_qualifications&&(o.party_b_info.qualification.other_qualifications=JSON.parse(o.party_b_info.qualification.other_qualifications),B.value=o.party_b_info.qualification)}catch{}x.value=o.party_a_info.qualification,p.value=o.party_b_info,B.value=o.party_b_info.qualification,h.value=!1}const W=o=>{var l;return((l=o==null?void 0:o.name)==null?void 0:l.substring(o.name.length-4,o.name.length))!=".pdf"?(D.error("\u4EC5\u652F\u6301\u4E0A\u4F20.pdf\u6587\u4EF6"),!1):!0},g=c(null),$=o=>{g.value.clearFiles();const l=o[0];l.uid=ee(),g.value.handleStart(l),g.value.submit()},G=(o,l)=>{if(o.code==0){D.error(o.msg);return}n.file=o.data.uri},H=se(),P=()=>{if(!n.file)return D.error("\u8BF7\u5148\u4E0A\u4F20\u5408\u540C!");me({file:n.file,id:K.query.id}),j(),H.back()};return Ve(async()=>{await Q()}),(o,l)=>{const d=le,t=ae,v=ue,V=oe,X=te,C=re,R=ne,I=de,Y=Z,k=be("perms");return s(),b(M,null,[e(V,{class:"box-card"},{header:a(()=>[Ce]),default:a(()=>[e(v,{inline:!0,ref:"formRef",model:r.value,"label-width":"91.5px",rules:o.formRules,class:"select"},{default:a(()=>[e(t,{label:"\u516C\u53F8\u540D\u79F0",prop:"company_name",required:""},{default:a(()=>[e(d,{readonly:"",modelValue:r.value.company_name,"onUpdate:modelValue":l[0]||(l[0]=u=>r.value.company_name=u)},null,8,["modelValue"])]),_:1}),e(t,{label:"\u793E\u4F1A\u4EE3\u7801",prop:"organization_code",required:""},{default:a(()=>[e(d,{readonly:"",modelValue:r.value.organization_code,"onUpdate:modelValue":l[1]||(l[1]=u=>r.value.organization_code=u)},null,8,["modelValue"])]),_:1}),e(t,{label:"\u4E3B\u8981\u8054\u7CFB\u4EBA",prop:"company_name",required:""},{default:a(()=>[e(d,{readonly:"",modelValue:r.value.master_name,"onUpdate:modelValue":l[2]||(l[2]=u=>r.value.master_name=u)},null,8,["modelValue"])]),_:1}),e(t,{label:"\u624B\u673A\u53F7",prop:"master_phone",required:""},{default:a(()=>[e(d,{readonly:"",modelValue:r.value.master_phone,"onUpdate:modelValue":l[3]||(l[3]=u=>r.value.master_phone=u)},null,8,["modelValue"])]),_:1}),e(t,{label:"\u5E02",prop:"city"},{default:a(()=>[e(d,{readonly:"",modelValue:r.value.city_name,"onUpdate:modelValue":l[4]||(l[4]=u=>r.value.city_name=u)},null,8,["modelValue"])]),_:1}),e(t,{label:"\u533A",prop:"area"},{default:a(()=>[e(d,{readonly:"",modelValue:r.value.area_name,"onUpdate:modelValue":l[5]||(l[5]=u=>r.value.area_name=u)},null,8,["modelValue"])]),_:1}),r.value.company_type!=30?(s(),_(t,{key:0,label:"\u9547",prop:"company_type_name"},{default:a(()=>[e(d,{readonly:"",modelValue:r.value.street_name,"onUpdate:modelValue":l[6]||(l[6]=u=>r.value.street_name=u)},null,8,["modelValue"])]),_:1})):m("",!0),r.value.company_type!=30?(s(),_(t,{key:1,label:"\u5730\u5740",prop:"address"},{default:a(()=>[e(d,{readonly:"",modelValue:r.value.address,"onUpdate:modelValue":l[7]||(l[7]=u=>r.value.address=u),style:{width:"32rem"}},null,8,["modelValue"])]),_:1})):m("",!0)]),_:1},8,["model","rules"])]),_:1}),m("",!0),S.value?(s(),_(V,{key:1},{header:a(()=>[ke]),default:a(()=>[e(v,{inline:!0,ref:"formRef",model:p.value,"label-width":"91.5px",rules:o.formRules,class:"select"},{default:a(()=>[e(t,{label:"\u5546\u6237\u540D\u79F0",prop:"company_name",required:""},{default:a(()=>[e(d,{readonly:"",modelValue:p.value.company_name,"onUpdate:modelValue":l[8]||(l[8]=u=>p.value.company_name=u)},null,8,["modelValue"])]),_:1}),e(t,{label:"\u793E\u4F1A\u4EE3\u7801",prop:"organization_code",required:""},{default:a(()=>[e(d,{readonly:"",modelValue:p.value.organization_code,"onUpdate:modelValue":l[9]||(l[9]=u=>p.value.organization_code=u)},null,8,["modelValue"])]),_:1}),e(t,{label:"\u4E3B\u8981\u8054\u7CFB\u4EBA",prop:"master_name",required:""},{default:a(()=>[e(d,{readonly:"",modelValue:p.value.master_name,"onUpdate:modelValue":l[10]||(l[10]=u=>p.value.master_name=u)},null,8,["modelValue"])]),_:1}),e(t,{label:"\u624B\u673A\u53F7",prop:"master_phone",required:""},{default:a(()=>[e(d,{readonly:"",modelValue:p.value.master_phone,"onUpdate:modelValue":l[11]||(l[11]=u=>p.value.master_phone=u)},null,8,["modelValue"])]),_:1}),e(t,{label:"\u5E02",prop:"city"},{default:a(()=>[e(d,{readonly:"",modelValue:r.value.city_name,"onUpdate:modelValue":l[12]||(l[12]=u=>r.value.city_name=u)},null,8,["modelValue"])]),_:1}),e(t,{label:"\u533A",prop:"area"},{default:a(()=>[e(d,{readonly:"",modelValue:r.value.area_name,"onUpdate:modelValue":l[13]||(l[13]=u=>r.value.area_name=u)},null,8,["modelValue"])]),_:1}),e(t,{label:"\u9547",prop:"street"},{default:a(()=>[e(d,{readonly:"",modelValue:r.value.street_name,"onUpdate:modelValue":l[14]||(l[14]=u=>r.value.street_name=u)},null,8,["modelValue"])]),_:1}),e(t,{label:"\u5730\u5740",prop:"street"},{default:a(()=>[e(d,{readonly:"",modelValue:p.value.address,"onUpdate:modelValue":l[15]||(l[15]=u=>p.value.address=u),style:{width:"31.5rem"}},null,8,["modelValue"])]),_:1})]),_:1},8,["model","rules"])]),_:1})):m("",!0),S.value?(s(),_(V,{key:2},{header:a(()=>[Ae]),default:a(()=>[e(v,{inline:!0,ref:"formRef",model:n,"label-width":"90px",rules:o.formRules,class:"company_z"},{default:a(()=>[e(t,{class:"other",label:"\u8D44\u8D28\u4FE1\u606F",prop:"contract_no",required:""},{default:a(()=>[(s(!0),b(M,null,Ee(B.value,(u,z)=>(s(),b("div",{class:"company",key:z},[e(X,{src:u,"preview-src-list":B.value,"initial-index":z,fit:"cover"},null,8,["src","preview-src-list","initial-index"])]))),128))]),_:1})]),_:1},8,["model","rules"])]),_:1})):m("",!0),h.value?(s(),_(V,{key:3},{header:a(()=>[Ue]),default:a(()=>[f("div",he,[f("img",{src:i.value.avatar},null,8,qe),e(v,{inline:!0,ref:"formRef",model:i.value,"label-width":"90px",rules:o.formRules,class:"person_select"},{default:a(()=>[e(t,{label:"\u59D3\u540D"},{default:a(()=>[e(d,{readonly:"",modelValue:i.value.nickname,"onUpdate:modelValue":l[16]||(l[16]=u=>i.value.nickname=u),placeholder:"\u8BF7\u8F93\u5165\u59D3\u540D"},null,8,["modelValue"])]),_:1}),e(t,{label:"\u6027\u522B"},{default:a(()=>[e(d,{readonly:"",modelValue:i.value.sex,"onUpdate:modelValue":l[17]||(l[17]=u=>i.value.sex=u),placeholder:"\u8BF7\u8F93\u5165\u6027\u522B"},null,8,["modelValue"])]),_:1}),e(t,{label:"\u8054\u7CFB\u7535\u8BDD"},{default:a(()=>[e(d,{readonly:"",modelValue:i.value.mobile,"onUpdate:modelValue":l[18]||(l[18]=u=>i.value.mobile=u),placeholder:"\u8BF7\u8F93\u5165\u8054\u7CFB\u7535\u8BDD"},null,8,["modelValue"])]),_:1}),e(t,{label:"\u8EAB\u4EFD\u8BC1\u53F7"},{default:a(()=>[e(d,{modelValue:i.value.id_card,"onUpdate:modelValue":l[19]||(l[19]=u=>i.value.id_card=u),placeholder:"\u8BF7\u8F93\u5165\u8EAB\u4EFD\u8BC1\u53F7",readonly:""},null,8,["modelValue"])]),_:1}),e(t,{label:"\u7701",prop:"province"},{default:a(()=>[e(C,{readonly:"",modelValue:i.value.province_name,"onUpdate:modelValue":l[20]||(l[20]=u=>i.value.province_name=u),placeholder:"\u8BF7\u9009\u62E9\u7701"},null,8,["modelValue"])]),_:1}),e(t,{label:"\u5E02",prop:"city"},{default:a(()=>[e(C,{readonly:"",modelValue:i.value.city_name,"onUpdate:modelValue":l[21]||(l[21]=u=>i.value.city_name=u),placeholder:"\u8BF7\u9009\u62E9\u5E02"},null,8,["modelValue"])]),_:1}),e(t,{label:"\u533A",prop:"area"},{default:a(()=>[e(C,{readonly:"",modelValue:i.value.area_name,"onUpdate:modelValue":l[22]||(l[22]=u=>i.value.area_name=u),placeholder:"\u8BF7\u9009\u62E9\u533A"},{default:a(()=>[e(R)]),_:1},8,["modelValue"])]),_:1}),e(t,{label:"\u9547",prop:"street"},{default:a(()=>[e(C,{readonly:"",modelValue:i.value.street_name,"onUpdate:modelValue":l[23]||(l[23]=u=>i.value.street_name=u),placeholder:"\u8BF7\u9009\u62E9\u9547"},{default:a(()=>[e(R)]),_:1},8,["modelValue"])]),_:1})]),_:1},8,["model","rules"])])]),_:1})):m("",!0),h.value?(s(),_(V,{key:4},{header:a(()=>[De]),default:a(()=>[e(v,{class:"idcard",model:y.value,inline:!0},{default:a(()=>[e(t,{label:"\u8EAB\u4EFD\u8BC1"},{default:a(()=>[f("img",{src:y.value.id_card},null,8,we),f("img",{src:y.value.id_card_b},null,8,xe)]),_:1}),e(t,{label:"\u94F6\u884C\u5361"},{default:a(()=>[f("img",{src:y.value.bank_account},null,8,Se),f("img",{src:y.value.bank_account_b},null,8,Re)]),_:1}),y.value.car_card||y.value.car_card_b?(s(),_(t,{key:0,label:"\u884C\u9A76\u8BC1"},{default:a(()=>[y.value.car_card?(s(),b("img",{key:0,src:y.value.car_card},null,8,Ie)):m("",!0),y.value.car_card_b?(s(),b("img",{key:1,src:y.value.car_card_b},null,8,ze)):m("",!0)]),_:1})):m("",!0)]),_:1},8,["model"])]),_:1})):m("",!0),e(V,null,{header:a(()=>[Ne]),default:a(()=>[e(v,{inline:!0,class:"frame",ref:"formRef",model:n,"label-width":"90px",rules:o.formRules},{default:a(()=>[e(t,{label:"\u7532\u65B9",prop:"contract_type"},{default:a(()=>[e(d,{modelValue:r.value.company_name,"onUpdate:modelValue":l[24]||(l[24]=u=>r.value.company_name=u),readonly:!0,placeholder:"\u6682\u65E0\u7532\u65B9\u65B9"},null,8,["modelValue"])]),_:1}),e(t,{label:"\u4E59\u65B9",prop:"contract_no"},{default:a(()=>[e(d,{modelValue:p.value.company_name,"onUpdate:modelValue":l[25]||(l[25]=u=>p.value.company_name=u),readonly:!0,placeholder:"\u6682\u65E0\u4E59\u65B9"},null,8,["modelValue"])]),_:1}),e(t,{label:"\u5408\u540C\u7C7B\u578B"},{default:a(()=>[e(d,{value:"\u5546\u6237\u5165\u9A7B\u5408\u540C",readonly:!0,placeholder:"\u5546\u6237\u5165\u9A7B\u5408\u540C"})]),_:1}),Me,n.notes?(s(),_(t,{key:0,label:"\u5907\u6CE8"},{default:a(()=>[e(d,{modelValue:n.notes,"onUpdate:modelValue":l[26]||(l[26]=u=>n.notes=u),readonly:!0,type:"textarea"},null,8,["modelValue"])]),_:1})):m("",!0)]),_:1},8,["model","rules"])]),_:1}),e(V,null,{default:a(()=>[e(v,{"label-width":"100px"},{default:a(()=>[q.value||(n==null?void 0:n.status)==0?(s(),_(t,{key:0,label:"\u5408\u540C\u4E0A\u4F20",prop:"field127"},{default:a(()=>[(n==null?void 0:n.status)==0?A((s(),_(Y,{key:0,accept:".pdf",headers:{Token:T(L).token},class:"upload-demo",action:T(J)+"/upload/file","on-success":G,"before-upload":W,limit:1,"on-exceed":$,ref_key:"upload",ref:g},{default:a(()=>[e(I,{type:"primary"},{default:a(()=>[U(Fe(n.file?"\u91CD\u65B0\u4E0A\u4F20":"\u4E0A\u4F20"),1)]),_:1})]),_:1},8,["headers","action"])),[[k,["shop_contract/upload"]]]):m("",!0),n.file?A((s(),b("a",{key:1,style:{"margin-left":"10px",color:"#4a5dff","align-self":"flex-start"},href:n.file,target:"_blank"},[U("\u5408\u540C\u5DF2\u4E0A\u4F20,\u70B9\u51FB\u67E5\u770B")],8,Te)),[[k,["shop_contract/file"]]]):m("",!0)]),_:1})):m("",!0),q.value||n.status==0?(s(),_(t,{key:1},{default:a(()=>[A((s(),_(I,{type:"primary",onClick:P},{default:a(()=>[U("\u786E\u5B9A")]),_:1})),[[k,["shop_contract/upload"]]])]),_:1})):n.file&&n.status?(s(),_(t,{key:2},{default:a(()=>[n.file?A((s(),b("a",{key:0,style:{"margin-left":"10px",color:"#4a5dff"},href:n.signed_contract_url?n.signed_contract_url:n.file,target:"_blank"},[U("\u67E5\u770B\u5408\u540C")],8,Oe)),[[k,["shop_contract/file"]]]):m("",!0)]),_:1})):m("",!0)]),_:1})]),_:1})],64)}}});const gl=fe(je,[["__scopeId","data-v-7735eef5"]]);export{gl as default}; diff --git a/public/admin/assets/details.dcc43188.js b/public/admin/assets/details.dcc43188.js new file mode 100644 index 000000000..31d00f82c --- /dev/null +++ b/public/admin/assets/details.dcc43188.js @@ -0,0 +1 @@ +import{B as S,C as M,a1 as N,G as P,H as T,a2 as G,a5 as j,M as H,N as K,D as Q,I as W}from"./element-plus.4328d892.js";import{u as $}from"./vue-router.9f65afb1.js";import J from"./store.4d739f82.js";import X from"./breeding.fe4efdf0.js";import Y from"./plant.239e6b5f.js";import Z from"./houseTransaction.cc233a7f.js";import ee from"./houseRenovate.b7fc426b.js";import le from"./houseDecoration.68c056e7.js";import ue from"./houseRepair.728e0187.js";import ae from"./banquetMarry.6065a41b.js";import oe from"./banquetOther.f0a94677.js";import te from"./banquetFuneral.a3a46135.js";import de from"./banquetFullMoon.45e9bc22.js";import se from"./banquetBirthday.4f9d734c.js";import ne from"./thickProcessing.7253c120.js";import re from"./deepProcessing.f4a8af71.js";import{f as pe}from"./informationg.b648c8df.js";import{d as U,$ as f,r as g,o as r,c as _,U as e,L as l,R as m,K as b,Q as D,T as V,a7 as v,S as ie,P as me,bf as _e,be,a as y}from"./@vue.51d7f2d8.js";import{d as fe}from"./index.aa9bb752.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const C=h=>(_e("data-v-2fc76fc6"),h=h(),be(),h),Fe=C(()=>y("p",{class:"tit"},"\u4E2A\u4EBA\u4FE1\u606F",-1)),Ee=C(()=>y("p",{class:"tit"},"\u5730\u533A\u4FE1\u606F",-1)),ce=C(()=>y("p",{class:"tit"},"\u5E38\u4F4F\u4EBA\u53E3",-1)),Ve=U({name:"test"}),Be=U({...Ve,setup(h){const w=$(),p=f(new Map);p.set(7,Y),p.set(8,J),p.set(32,X),p.set(15,Z),p.set(14,ee),p.set(13,le),p.set(12,ue),p.set(17,ae),p.set(20,oe),p.set(21,te),p.set(19,de),p.set(18,se),p.set(10,ne),p.set(9,re);const k=F=>p.get(F),a=f({name:"",phone:"",age:"",sex:"",id_card:"",area_name:"",street_name:"",village_name:"",brigade_name:"",addressa:"",address:"",family:[{name:"",birth_time:"",situation:"",work:"",phone:"",skills:""}],child:void 0,child_arr:[{name:"",birth:"",age:0,class:"",lessons:"",notes:"",feeding:""}],highway:void 0,smart_phone:void 0,wechat:"",datas:[]}),x=f([{name:"\u505A\u5DE5\u5730\u7684",id:"0"},{name:"\u5382\u91CC\u6253\u5DE5",id:"1"},{name:"\u516C\u53F8\u804C\u5458",id:"2"},{name:"\u653F\u5E9C\u4E0A\u73ED",id:"3"},{name:"\u79CD\u5730",id:"4"},{name:"\u5728\u5BB6\u8D4B\u95F2",id:"5"},{name:"\u5176\u4ED6",id:"6"}]);g(!1);const O=f({subjs:[{label:"\u8BED\u6587",value:1},{label:"\u6570\u5B66",value:2},{label:"\u82F1\u8BED",value:3},{label:"\u827A\u672F\u7C7B",value:4},{label:"\u5176\u4ED6",value:5}],feedsList:[{label:"\u6BCD\u4E73",value:"0"},{label:"\u5976\u7C89",value:"1"}],plantList:[{label:"\u81EA\u5DF1\u79CD\u517B",value:"0"},{label:"\u51FA\u79DF",value:"1"},{label:"\u4EE3\u79CD\u517B",value:"2"},{label:"\u79DF\u66F4\u591A\u5730\u6269\u5927\u79CD\u690D",value:"3"}],houseStyle:[{label:"\u4E2D\u5F0F",value:1},{label:"\u7F8E\u5F0F",value:2},{label:"\u6B27\u5F0F",value:3},{label:"\u7B80\u7EA6",value:4},{label:"\u5962\u534E",value:5},{label:"\u522B\u5885/\u56DB\u5408\u9662",value:6},{label:"\u5176\u4ED6",value:7}],weihu:[{label:"\u623F\u9876",value:1},{label:"\u5395\u6240",value:2},{label:"\u7BA1\u7EBF",value:3},{label:"\u7535\u5668",value:4}],field102Options:[{label:"\u522B\u5885",value:1},{label:"\u6D0B\u623F",value:2},{label:"\u9AD8\u5C42",value:3},{label:"\u697C\u68AF\u623F",value:4}],ecologyPlant:[{label:"\u975E\u751F\u6001\u79CD\u690D",value:1}],sellType:[{label:"\u81EA\u9500",value:"1"},{label:"\u5B9A\u70B9\u9500\u552E",value:"2"}],publicize:[{label:"\u6709\u65E0\u5BA3\u4F20\u63A8\u5E7F",value:1}],field106Options:[{label:"\u8D85\u5E02",value:1},{label:"\u751F\u9C9C",value:2},{label:"\u996D\u5E97",value:3},{label:"\u4E94\u91D1",value:4},{label:"\u6742\u8D27",value:5},{label:"\u670D\u88C5",value:6},{label:"\u6587\u5177",value:7},{label:"\u5176\u4ED6",value:8}],field109Options:[{label:"\u5B66\u751F",value:1},{label:"\u5BB6\u5EAD\u5BA2\u6237",value:2},{label:"\u9752\u5E74\u5BA2\u6237",value:3},{label:"\u8001\u5E74\u4EBA",value:4},{label:"\u6E38\u5BA2",value:5}],banquetList:[{label:"\u5A5A\u5BB4",value:1},{label:"\u5BFF\u5BB4",value:2},{label:"\u6EE1\u6708\u9152",value:3},{label:"\u5176\u5B83\u5E86\u529F\u5BB4",value:4},{label:"\u767D\u4E8B",value:5}],field106aOptions:[{label:"\u9152\u5E97",value:1},{label:"\u4E00\u6761\u9F99",value:2},{label:"\u53EA\u8BF7\u53A8\u5E08",value:3}],field104Options:[{label:"\u7535\u74F6\u8F66",value:1},{label:"\u6469\u6258\u8F66",value:2},{label:"\u5C0F\u6C7D\u8F66",value:3}],provinceOptions:[],cityOptions:[],areaOptions:[],streetOptions:[]});return f([{label:"\u6709\u52A0\u5DE5\u4ED3\u50A8",value:1}]),f([{label:"\u6709\u8FD0\u8F93",value:1}]),f([{label:"\u662F\u5426\u60F3\u8981\u6269\u5927\u7ECF\u8425",value:1}]),g(!0),pe({id:w.query.id}).then(async F=>{for(const d in a)F[d]!=null&&F[d]!=null&&(a[d]=F[d]);a.addressa=a.area_name+a.street_name+a.village_name+a.brigade_name+a.address,console.log(a)}),(F,d)=>{const n=S,s=M,t=N,i=P,E=T,B=G,z=j,L=H,q=K,I=Q,R=W;return r(),_(V,null,[e(R,null,{default:l(()=>[e(I,{ref:"elForm",disabled:!0,model:a,size:"mini","label-width":"100px"},{default:l(()=>[Fe,e(t,null,{default:l(()=>[e(B,null,{default:l(()=>[e(t,{span:6},{default:l(()=>[e(s,{label:"\u59D3\u540D",prop:"name"},{default:l(()=>[e(n,{modelValue:a.name,"onUpdate:modelValue":d[0]||(d[0]=u=>a.name=u),placeholder:"\u8BF7\u8F93\u5165\u59D3\u540D",clearable:"",style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(t,{span:6},{default:l(()=>[e(s,{label:"\u6027\u522B",prop:"sex"},{default:l(()=>[e(E,{modelValue:a.sex,"onUpdate:modelValue":d[1]||(d[1]=u=>a.sex=u),size:"medium"},{default:l(()=>[e(i,{label:1},{default:l(()=>[m("\u7537")]),_:1}),e(i,{label:2},{default:l(()=>[m("\u5973")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(t,{span:6},{default:l(()=>[e(s,{label:"\u5E74\u9F84",prop:"age"},{default:l(()=>[e(n,{modelValue:a.age,"onUpdate:modelValue":d[2]||(d[2]=u=>a.age=u),placeholder:"\u8BF7\u8F93\u5165\u5E74\u9F84",clearable:"",style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(t,{span:6},{default:l(()=>[e(s,{label:"\u7535\u8BDD",prop:"phone"},{default:l(()=>[e(n,{modelValue:a.phone,"onUpdate:modelValue":d[3]||(d[3]=u=>a.phone=u),placeholder:"\u8BF7\u8F93\u5165\u7535\u8BDD",clearable:"",style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(t,{span:6},{default:l(()=>[e(s,{label:"\u8EAB\u4EFD\u8BC1\u53F7",prop:"id_card"},{default:l(()=>[e(n,{modelValue:a.id_card,"onUpdate:modelValue":d[4]||(d[4]=u=>a.id_card=u),placeholder:"\u8BF7\u8F93\u5165\u8EAB\u4EFD\u8BC1\u53F7",clearable:"",style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(t,{span:6},{default:l(()=>[e(s,{label:"\u5730\u5740",prop:"field104"},{default:l(()=>[e(n,{modelValue:a.address,"onUpdate:modelValue":d[5]||(d[5]=u=>a.address=u),clearable:"",style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1})]),_:1})]),_:1}),Ee,e(t,null,{default:l(()=>[e(B,null,{default:l(()=>[e(t,{span:6},{default:l(()=>[e(s,{label:"\u5730\u5740"},{default:l(()=>[e(n,{value:a.area_name+a.street_name+a.village_name,placeholder:"\u8BF7\u8F93\u5165\u5730\u5740",clearable:"",style:{width:"100%"}},null,8,["value"])]),_:1})]),_:1}),e(t,{span:6},{default:l(()=>[e(s,{label:"\u8BE6\u7EC6\u5730\u5740",prop:"address"},{default:l(()=>[e(n,{modelValue:a.address,"onUpdate:modelValue":d[6]||(d[6]=u=>a.address=u),placeholder:"\u8BF7\u8F93\u5165\u8BE6\u7EC6\u5730\u5740",clearable:"",style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(t,{span:12},{default:l(()=>[e(s,{label:"\u6C7D\u8F66\u662F\u5426\u80FD\u5230\u5BB6","label-width":"200px",prop:"highway"},{default:l(()=>[e(E,{modelValue:a.highway,"onUpdate:modelValue":d[7]||(d[7]=u=>a.highway=u),size:"medium"},{default:l(()=>[e(i,{label:1},{default:l(()=>[m("\u662F")]),_:1}),e(i,{label:0},{default:l(()=>[m("\u5426")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(t,{span:6},{default:l(()=>[e(s,{label:"\u662F\u5426\u4F7F\u7528\u667A\u80FD\u624B\u673A","label-width":"200px",prop:"smart_phone"},{default:l(()=>[e(E,{modelValue:a.smart_phone,"onUpdate:modelValue":d[8]||(d[8]=u=>a.smart_phone=u),size:"medium"},{default:l(()=>[e(i,{label:1},{default:l(()=>[m("\u662F")]),_:1}),e(i,{label:0},{default:l(()=>[m("\u5426")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),a.smart_phone?(r(),b(t,{key:0,span:6},{default:l(()=>[e(s,{label:"\u5FAE\u4FE1\u53F7",prop:"field119"},{default:l(()=>[e(n,{modelValue:a.skills,"onUpdate:modelValue":d[9]||(d[9]=u=>a.skills=u),placeholder:"\u8BF7\u8F93\u5165\u5FAE\u4FE1\u53F7",clearable:"",style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1})):D("",!0)]),_:1})]),_:1}),ce,e(t,null,{default:l(()=>[(r(!0),_(V,null,v(a.family,(u,c)=>(r(),_("div",{key:c},[e(B,null,{default:l(()=>[e(t,{span:6},{default:l(()=>[e(s,{label:"\u59D3\u540D",prop:"name"},{default:l(()=>[e(n,{modelValue:u.name,"onUpdate:modelValue":o=>u.name=o,placeholder:"\u8BF7\u8F93\u5165\u59D3\u540D",clearable:"",style:{width:"100%"}},null,8,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024),e(t,{span:6,class:"dates"},{default:l(()=>[e(s,{label:"\u51FA\u751F\u65E5\u671F",prop:"field110"},{default:l(()=>[e(z,{disabled:!0,modelValue:u.birth_time,"onUpdate:modelValue":o=>u.birth_time=o,style:{width:"150%"},placeholder:"\u8BF7\u8F93\u5165\u51FA\u751F\u65E5\u671F",clearable:""},null,8,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024),e(t,{span:6},{default:l(()=>[e(s,{label:"\u5C31\u4E1A\u60C5\u51B5",prop:"field111"},{default:l(()=>[e(q,{disabled:!0,modelValue:u.situation,"onUpdate:modelValue":o=>u.situation=o,placeholder:"\u8BF7\u8F93\u5165\u5C31\u4E1A\u60C5\u51B5",clearable:"",style:{width:"100%"}},{default:l(()=>[(r(!0),_(V,null,v(x,(o,A)=>(r(),b(L,{key:A,label:o.name,value:o.id},null,8,["label","value"]))),128))]),_:2},1032,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024),e(t,{span:6},{default:l(()=>[e(s,{label:"\u6280\u80FD\u7279\u957F",prop:"field119"},{default:l(()=>[e(n,{modelValue:u.skills,"onUpdate:modelValue":o=>u.skills=o,placeholder:"\u8BF7\u8F93\u5165\u6280\u80FD\u7279\u957F",clearable:"",style:{width:"100%"}},null,8,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024)]),_:2},1024)]))),128)),e(s,{label:"\u662F\u5426\u5B58\u5728\u5B66\u751F, \u5A74\u5E7C\u513F",labelWidth:"200px"},{default:l(()=>[e(E,{modelValue:a.child,"onUpdate:modelValue":d[10]||(d[10]=u=>a.child=u),size:"medium"},{default:l(()=>[e(i,{label:1},{default:l(()=>[m("\u662F")]),_:1}),e(i,{label:0},{default:l(()=>[m("\u5426")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),a.child?(r(!0),_(V,{key:0},v(a.child_arr,(u,c)=>(r(),_("div",null,[a.child_arr[c].age<=3?(r(),b(t,{key:0},{default:l(()=>[e(B,null,{default:l(()=>[e(t,{span:6},{default:l(()=>[e(s,{label:"\u5E74\u9F84",prop:"field134"},{default:l(()=>[e(n,{modelValue:u.age,"onUpdate:modelValue":o=>u.age=o,clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024),e(t,{span:6},{default:l(()=>[e(s,{label:"\u54FA\u4E73\u65B9\u5F0F",prop:"feeding"},{default:l(()=>[e(E,{modelValue:u.feeding,"onUpdate:modelValue":o=>u.feeding=o,size:"medium"},{default:l(()=>[(r(!0),_(V,null,v(O.feedsList,(o,A)=>(r(),b(i,{key:c,label:o.value},{default:l(()=>[m(ie(o.label),1)]),_:2},1032,["label"]))),128))]),_:2},1032,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024),e(t,{span:6},{default:l(()=>[e(s,{label:"\u5907\u6CE8",prop:"field157"},{default:l(()=>[e(n,{modelValue:u.notes,"onUpdate:modelValue":o=>u.notes=o,placeholder:"\u8BF7\u8F93\u5165\u5907\u6CE8",clearable:"",style:{width:"100%"}},null,8,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024)]),_:2},1024)]),_:2},1024)):(r(),b(t,{key:1},{default:l(()=>[e(B,null,{default:l(()=>[e(t,{span:6},{default:l(()=>[e(s,{label:"\u5E74\u9F84",prop:"field134"},{default:l(()=>[e(n,{modelValue:u.age,"onUpdate:modelValue":o=>u.age=o,clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024),a.child_arr[c].age>=3?(r(),b(t,{key:0,span:6},{default:l(()=>[e(s,{label:"\u5E74\u7EA7",prop:"grade"},{default:l(()=>[e(n,{modelValue:u.grade,"onUpdate:modelValue":o=>u.grade=o,placeholder:"\u8BF7\u8F93\u5165\u5E74\u7EA7",clearable:"",style:{width:"100%"}},null,8,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024)):D("",!0),e(t,{span:6},{default:l(()=>[e(s,{label:"\u662F\u5426\u8865\u8BFE",prop:"is_lesson"},{default:l(()=>[e(E,{modelValue:u.is_lesson,"onUpdate:modelValue":o=>u.is_lesson=o,size:"medium"},{default:l(()=>[e(i,{label:"1"},{default:l(()=>[m("\u662F")]),_:1}),e(i,{label:"0"},{default:l(()=>[m("\u5426")]),_:1})]),_:2},1032,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024),u.is_lesson?(r(),b(t,{key:1,span:6},{default:l(()=>[e(s,{label:"\u8865\u8BFE\u60C5\u51B5",prop:"lessons"},{default:l(()=>[e(n,{modelValue:u.lessons,"onUpdate:modelValue":o=>u.lessons=o,clearable:"",style:{width:"100%"}},null,8,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024)):D("",!0),e(t,{span:6},{default:l(()=>[e(s,{label:"\u5907\u6CE8",prop:"field138"},{default:l(()=>[e(n,{modelValue:u.notes,"onUpdate:modelValue":o=>u.notes=o,placeholder:"\u8BF7\u8F93\u5165\u5907\u6CE8",clearable:"",style:{width:"100%"}},null,8,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024)]),_:2},1024)]),_:2},1024))]))),256)):D("",!0)]),_:1},8,["model"])]),_:1}),(r(!0),_(V,null,v(a.datas,(u,c)=>(r(),b(me(k(u.category_child||u.category_id)),{key:u.id,datas:u.datas,update_time:u.update_time},null,8,["datas","update_time"]))),128))],64)}}});const Fl=fe(Be,[["__scopeId","data-v-2fc76fc6"]]);export{Fl as default}; diff --git a/public/admin/assets/details.eccb2df9.js b/public/admin/assets/details.eccb2df9.js new file mode 100644 index 000000000..eb3c72ecd --- /dev/null +++ b/public/admin/assets/details.eccb2df9.js @@ -0,0 +1 @@ +import{J as Z,k as D,K as ee,B as le,C as ae,D as ue,I as oe,b as te,N as re,M as ne,w as de}from"./element-plus.4328d892.js";import{u as N,a as se}from"./vue-router.9f65afb1.js";import{a as ie,b as me}from"./shop_contract.c24a8510.js";import{e as pe,a as _e,d as fe}from"./index.ed71ac09.js";import{d as ce,C as ye,$ as ve,r as c,j as Ve,af as be,o as s,c as b,U as e,L as a,K as _,Q as m,T as M,a7 as Ee,a as f,M as A,u as T,R as U,S as Fe,bf as Be,be as ge}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const E=F=>(Be("data-v-7735eef5"),F=F(),ge(),F),Ce=E(()=>f("span",null,"\u7532\u65B9\u57FA\u672C\u4FE1\u606F",-1)),ke=E(()=>f("span",null,"\u4E59\u65B9\u57FA\u672C\u4FE1\u606F",-1)),Ae=E(()=>f("span",null,"\u4E59\u65B9\u8D44\u8D28\u4FE1\u606F",-1)),Ue=E(()=>f("span",null,"\u4E2A\u4EBA\u57FA\u672C\u4FE1\u606F",-1)),he={class:"persenal"},qe=["src"],De=E(()=>f("span",null,"\u4E2A\u4EBA\u8D44\u8D28\u4FE1\u606F",-1)),we=["src"],xe=["src"],Se=["src"],Re=["src"],Ie=["src"],ze=["src"],Ne=E(()=>f("span",null,"\u7535\u5B50\u5408\u540C",-1)),Me=E(()=>f("br",null,null,-1)),Te=["href"],Oe=["href"],je=ce({__name:"details",setup(F){const{query:O}=N(),{removeTab:j}=pe(),J=ye("base_url"),n=ve({id:"",company_id:"",contract_type:"",contract_type_name:"",contract_no:"",file:"",status:"",check_status:"",party_a:"",party_a_name:"",party_b:"",party_b_name:"",area_manager:"",area_manager_name:"",type_name:"",url:"",status_name:"",signed_contract_url:"",notes:""});c([]);const w=c({}),r=c({}),x=c([]),p=c([]),B=c([]),i=c([]),y=c([]),S=c(!0),h=c(!1),q=c(!0),K=N(),L=_e();async function Q(){const o=await ie({id:O.id});Object.keys(n).forEach(l=>{o[l]!=null&&o[l]!=null&&(n[l]=o[l])}),r.value=o.party_a_info,w.value=o,(w.value.status==1||o.check_status==3||o.status==1)&&(q.value=!1);try{o.party_a_info.qualification.bank_account&&(o.party_a_info.qualification.bank_account=JSON.parse(o.party_a_info.qualification.bank_account),x.value=o.party_a_info.qualification),o.party_b_info.qualification.other_qualifications&&(o.party_b_info.qualification.other_qualifications=JSON.parse(o.party_b_info.qualification.other_qualifications),B.value=o.party_b_info.qualification)}catch{}x.value=o.party_a_info.qualification,p.value=o.party_b_info,B.value=o.party_b_info.qualification,h.value=!1}const W=o=>{var l;return((l=o==null?void 0:o.name)==null?void 0:l.substring(o.name.length-4,o.name.length))!=".pdf"?(D.error("\u4EC5\u652F\u6301\u4E0A\u4F20.pdf\u6587\u4EF6"),!1):!0},g=c(null),$=o=>{g.value.clearFiles();const l=o[0];l.uid=ee(),g.value.handleStart(l),g.value.submit()},G=(o,l)=>{if(o.code==0){D.error(o.msg);return}n.file=o.data.uri},H=se(),P=()=>{if(!n.file)return D.error("\u8BF7\u5148\u4E0A\u4F20\u5408\u540C!");me({file:n.file,id:K.query.id}),j(),H.back()};return Ve(async()=>{await Q()}),(o,l)=>{const d=le,t=ae,v=ue,V=oe,X=te,C=re,R=ne,I=de,Y=Z,k=be("perms");return s(),b(M,null,[e(V,{class:"box-card"},{header:a(()=>[Ce]),default:a(()=>[e(v,{inline:!0,ref:"formRef",model:r.value,"label-width":"91.5px",rules:o.formRules,class:"select"},{default:a(()=>[e(t,{label:"\u516C\u53F8\u540D\u79F0",prop:"company_name",required:""},{default:a(()=>[e(d,{readonly:"",modelValue:r.value.company_name,"onUpdate:modelValue":l[0]||(l[0]=u=>r.value.company_name=u)},null,8,["modelValue"])]),_:1}),e(t,{label:"\u793E\u4F1A\u4EE3\u7801",prop:"organization_code",required:""},{default:a(()=>[e(d,{readonly:"",modelValue:r.value.organization_code,"onUpdate:modelValue":l[1]||(l[1]=u=>r.value.organization_code=u)},null,8,["modelValue"])]),_:1}),e(t,{label:"\u4E3B\u8981\u8054\u7CFB\u4EBA",prop:"company_name",required:""},{default:a(()=>[e(d,{readonly:"",modelValue:r.value.master_name,"onUpdate:modelValue":l[2]||(l[2]=u=>r.value.master_name=u)},null,8,["modelValue"])]),_:1}),e(t,{label:"\u624B\u673A\u53F7",prop:"master_phone",required:""},{default:a(()=>[e(d,{readonly:"",modelValue:r.value.master_phone,"onUpdate:modelValue":l[3]||(l[3]=u=>r.value.master_phone=u)},null,8,["modelValue"])]),_:1}),e(t,{label:"\u5E02",prop:"city"},{default:a(()=>[e(d,{readonly:"",modelValue:r.value.city_name,"onUpdate:modelValue":l[4]||(l[4]=u=>r.value.city_name=u)},null,8,["modelValue"])]),_:1}),e(t,{label:"\u533A",prop:"area"},{default:a(()=>[e(d,{readonly:"",modelValue:r.value.area_name,"onUpdate:modelValue":l[5]||(l[5]=u=>r.value.area_name=u)},null,8,["modelValue"])]),_:1}),r.value.company_type!=30?(s(),_(t,{key:0,label:"\u9547",prop:"company_type_name"},{default:a(()=>[e(d,{readonly:"",modelValue:r.value.street_name,"onUpdate:modelValue":l[6]||(l[6]=u=>r.value.street_name=u)},null,8,["modelValue"])]),_:1})):m("",!0),r.value.company_type!=30?(s(),_(t,{key:1,label:"\u5730\u5740",prop:"address"},{default:a(()=>[e(d,{readonly:"",modelValue:r.value.address,"onUpdate:modelValue":l[7]||(l[7]=u=>r.value.address=u),style:{width:"32rem"}},null,8,["modelValue"])]),_:1})):m("",!0)]),_:1},8,["model","rules"])]),_:1}),m("",!0),S.value?(s(),_(V,{key:1},{header:a(()=>[ke]),default:a(()=>[e(v,{inline:!0,ref:"formRef",model:p.value,"label-width":"91.5px",rules:o.formRules,class:"select"},{default:a(()=>[e(t,{label:"\u5546\u6237\u540D\u79F0",prop:"company_name",required:""},{default:a(()=>[e(d,{readonly:"",modelValue:p.value.company_name,"onUpdate:modelValue":l[8]||(l[8]=u=>p.value.company_name=u)},null,8,["modelValue"])]),_:1}),e(t,{label:"\u793E\u4F1A\u4EE3\u7801",prop:"organization_code",required:""},{default:a(()=>[e(d,{readonly:"",modelValue:p.value.organization_code,"onUpdate:modelValue":l[9]||(l[9]=u=>p.value.organization_code=u)},null,8,["modelValue"])]),_:1}),e(t,{label:"\u4E3B\u8981\u8054\u7CFB\u4EBA",prop:"master_name",required:""},{default:a(()=>[e(d,{readonly:"",modelValue:p.value.master_name,"onUpdate:modelValue":l[10]||(l[10]=u=>p.value.master_name=u)},null,8,["modelValue"])]),_:1}),e(t,{label:"\u624B\u673A\u53F7",prop:"master_phone",required:""},{default:a(()=>[e(d,{readonly:"",modelValue:p.value.master_phone,"onUpdate:modelValue":l[11]||(l[11]=u=>p.value.master_phone=u)},null,8,["modelValue"])]),_:1}),e(t,{label:"\u5E02",prop:"city"},{default:a(()=>[e(d,{readonly:"",modelValue:r.value.city_name,"onUpdate:modelValue":l[12]||(l[12]=u=>r.value.city_name=u)},null,8,["modelValue"])]),_:1}),e(t,{label:"\u533A",prop:"area"},{default:a(()=>[e(d,{readonly:"",modelValue:r.value.area_name,"onUpdate:modelValue":l[13]||(l[13]=u=>r.value.area_name=u)},null,8,["modelValue"])]),_:1}),e(t,{label:"\u9547",prop:"street"},{default:a(()=>[e(d,{readonly:"",modelValue:r.value.street_name,"onUpdate:modelValue":l[14]||(l[14]=u=>r.value.street_name=u)},null,8,["modelValue"])]),_:1}),e(t,{label:"\u5730\u5740",prop:"street"},{default:a(()=>[e(d,{readonly:"",modelValue:p.value.address,"onUpdate:modelValue":l[15]||(l[15]=u=>p.value.address=u),style:{width:"31.5rem"}},null,8,["modelValue"])]),_:1})]),_:1},8,["model","rules"])]),_:1})):m("",!0),S.value?(s(),_(V,{key:2},{header:a(()=>[Ae]),default:a(()=>[e(v,{inline:!0,ref:"formRef",model:n,"label-width":"90px",rules:o.formRules,class:"company_z"},{default:a(()=>[e(t,{class:"other",label:"\u8D44\u8D28\u4FE1\u606F",prop:"contract_no",required:""},{default:a(()=>[(s(!0),b(M,null,Ee(B.value,(u,z)=>(s(),b("div",{class:"company",key:z},[e(X,{src:u,"preview-src-list":B.value,"initial-index":z,fit:"cover"},null,8,["src","preview-src-list","initial-index"])]))),128))]),_:1})]),_:1},8,["model","rules"])]),_:1})):m("",!0),h.value?(s(),_(V,{key:3},{header:a(()=>[Ue]),default:a(()=>[f("div",he,[f("img",{src:i.value.avatar},null,8,qe),e(v,{inline:!0,ref:"formRef",model:i.value,"label-width":"90px",rules:o.formRules,class:"person_select"},{default:a(()=>[e(t,{label:"\u59D3\u540D"},{default:a(()=>[e(d,{readonly:"",modelValue:i.value.nickname,"onUpdate:modelValue":l[16]||(l[16]=u=>i.value.nickname=u),placeholder:"\u8BF7\u8F93\u5165\u59D3\u540D"},null,8,["modelValue"])]),_:1}),e(t,{label:"\u6027\u522B"},{default:a(()=>[e(d,{readonly:"",modelValue:i.value.sex,"onUpdate:modelValue":l[17]||(l[17]=u=>i.value.sex=u),placeholder:"\u8BF7\u8F93\u5165\u6027\u522B"},null,8,["modelValue"])]),_:1}),e(t,{label:"\u8054\u7CFB\u7535\u8BDD"},{default:a(()=>[e(d,{readonly:"",modelValue:i.value.mobile,"onUpdate:modelValue":l[18]||(l[18]=u=>i.value.mobile=u),placeholder:"\u8BF7\u8F93\u5165\u8054\u7CFB\u7535\u8BDD"},null,8,["modelValue"])]),_:1}),e(t,{label:"\u8EAB\u4EFD\u8BC1\u53F7"},{default:a(()=>[e(d,{modelValue:i.value.id_card,"onUpdate:modelValue":l[19]||(l[19]=u=>i.value.id_card=u),placeholder:"\u8BF7\u8F93\u5165\u8EAB\u4EFD\u8BC1\u53F7",readonly:""},null,8,["modelValue"])]),_:1}),e(t,{label:"\u7701",prop:"province"},{default:a(()=>[e(C,{readonly:"",modelValue:i.value.province_name,"onUpdate:modelValue":l[20]||(l[20]=u=>i.value.province_name=u),placeholder:"\u8BF7\u9009\u62E9\u7701"},null,8,["modelValue"])]),_:1}),e(t,{label:"\u5E02",prop:"city"},{default:a(()=>[e(C,{readonly:"",modelValue:i.value.city_name,"onUpdate:modelValue":l[21]||(l[21]=u=>i.value.city_name=u),placeholder:"\u8BF7\u9009\u62E9\u5E02"},null,8,["modelValue"])]),_:1}),e(t,{label:"\u533A",prop:"area"},{default:a(()=>[e(C,{readonly:"",modelValue:i.value.area_name,"onUpdate:modelValue":l[22]||(l[22]=u=>i.value.area_name=u),placeholder:"\u8BF7\u9009\u62E9\u533A"},{default:a(()=>[e(R)]),_:1},8,["modelValue"])]),_:1}),e(t,{label:"\u9547",prop:"street"},{default:a(()=>[e(C,{readonly:"",modelValue:i.value.street_name,"onUpdate:modelValue":l[23]||(l[23]=u=>i.value.street_name=u),placeholder:"\u8BF7\u9009\u62E9\u9547"},{default:a(()=>[e(R)]),_:1},8,["modelValue"])]),_:1})]),_:1},8,["model","rules"])])]),_:1})):m("",!0),h.value?(s(),_(V,{key:4},{header:a(()=>[De]),default:a(()=>[e(v,{class:"idcard",model:y.value,inline:!0},{default:a(()=>[e(t,{label:"\u8EAB\u4EFD\u8BC1"},{default:a(()=>[f("img",{src:y.value.id_card},null,8,we),f("img",{src:y.value.id_card_b},null,8,xe)]),_:1}),e(t,{label:"\u94F6\u884C\u5361"},{default:a(()=>[f("img",{src:y.value.bank_account},null,8,Se),f("img",{src:y.value.bank_account_b},null,8,Re)]),_:1}),y.value.car_card||y.value.car_card_b?(s(),_(t,{key:0,label:"\u884C\u9A76\u8BC1"},{default:a(()=>[y.value.car_card?(s(),b("img",{key:0,src:y.value.car_card},null,8,Ie)):m("",!0),y.value.car_card_b?(s(),b("img",{key:1,src:y.value.car_card_b},null,8,ze)):m("",!0)]),_:1})):m("",!0)]),_:1},8,["model"])]),_:1})):m("",!0),e(V,null,{header:a(()=>[Ne]),default:a(()=>[e(v,{inline:!0,class:"frame",ref:"formRef",model:n,"label-width":"90px",rules:o.formRules},{default:a(()=>[e(t,{label:"\u7532\u65B9",prop:"contract_type"},{default:a(()=>[e(d,{modelValue:r.value.company_name,"onUpdate:modelValue":l[24]||(l[24]=u=>r.value.company_name=u),readonly:!0,placeholder:"\u6682\u65E0\u7532\u65B9\u65B9"},null,8,["modelValue"])]),_:1}),e(t,{label:"\u4E59\u65B9",prop:"contract_no"},{default:a(()=>[e(d,{modelValue:p.value.company_name,"onUpdate:modelValue":l[25]||(l[25]=u=>p.value.company_name=u),readonly:!0,placeholder:"\u6682\u65E0\u4E59\u65B9"},null,8,["modelValue"])]),_:1}),e(t,{label:"\u5408\u540C\u7C7B\u578B"},{default:a(()=>[e(d,{value:"\u5546\u6237\u5165\u9A7B\u5408\u540C",readonly:!0,placeholder:"\u5546\u6237\u5165\u9A7B\u5408\u540C"})]),_:1}),Me,n.notes?(s(),_(t,{key:0,label:"\u5907\u6CE8"},{default:a(()=>[e(d,{modelValue:n.notes,"onUpdate:modelValue":l[26]||(l[26]=u=>n.notes=u),readonly:!0,type:"textarea"},null,8,["modelValue"])]),_:1})):m("",!0)]),_:1},8,["model","rules"])]),_:1}),e(V,null,{default:a(()=>[e(v,{"label-width":"100px"},{default:a(()=>[q.value||(n==null?void 0:n.status)==0?(s(),_(t,{key:0,label:"\u5408\u540C\u4E0A\u4F20",prop:"field127"},{default:a(()=>[(n==null?void 0:n.status)==0?A((s(),_(Y,{key:0,accept:".pdf",headers:{Token:T(L).token},class:"upload-demo",action:T(J)+"/upload/file","on-success":G,"before-upload":W,limit:1,"on-exceed":$,ref_key:"upload",ref:g},{default:a(()=>[e(I,{type:"primary"},{default:a(()=>[U(Fe(n.file?"\u91CD\u65B0\u4E0A\u4F20":"\u4E0A\u4F20"),1)]),_:1})]),_:1},8,["headers","action"])),[[k,["shop_contract/upload"]]]):m("",!0),n.file?A((s(),b("a",{key:1,style:{"margin-left":"10px",color:"#4a5dff","align-self":"flex-start"},href:n.file,target:"_blank"},[U("\u5408\u540C\u5DF2\u4E0A\u4F20,\u70B9\u51FB\u67E5\u770B")],8,Te)),[[k,["shop_contract/file"]]]):m("",!0)]),_:1})):m("",!0),q.value||n.status==0?(s(),_(t,{key:1},{default:a(()=>[A((s(),_(I,{type:"primary",onClick:P},{default:a(()=>[U("\u786E\u5B9A")]),_:1})),[[k,["shop_contract/upload"]]])]),_:1})):n.file&&n.status?(s(),_(t,{key:2},{default:a(()=>[n.file?A((s(),b("a",{key:0,style:{"margin-left":"10px",color:"#4a5dff"},href:n.signed_contract_url?n.signed_contract_url:n.file,target:"_blank"},[U("\u67E5\u770B\u5408\u540C")],8,Oe)),[[k,["shop_contract/file"]]]):m("",!0)]),_:1})):m("",!0)]),_:1})]),_:1})],64)}}});const gl=fe(je,[["__scopeId","data-v-7735eef5"]]);export{gl as default}; diff --git a/public/admin/assets/detil.088ae19c.js b/public/admin/assets/detil.088ae19c.js new file mode 100644 index 000000000..2dd9bc35a --- /dev/null +++ b/public/admin/assets/detil.088ae19c.js @@ -0,0 +1 @@ +import{B as R,C as O,a1 as W,G as q,H as I,a2 as G,a5 as P,M as J,N as M,w as j,F as H,a0 as K,D as Q}from"./element-plus.4328d892.js";import{u as X}from"./vue-router.9f65afb1.js";import{f as Y}from"./informationg.b648c8df.js";import{d as k,$ as F,r as g,o as i,c as V,U as e,L as t,R as c,T as h,a7 as C,Q as b,K as s,S as v,a as x,bf as Z,be as ee}from"./@vue.51d7f2d8.js";import{d as le}from"./index.aa9bb752.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const N=E=>(Z("data-v-2e603946"),E=E(),ee(),E),te={class:"content"},ae=N(()=>x("div",{style:{"font-size":"1.2rem",translate:"1vw 0","background-color":"white"}}," \u4E2A\u4EBA\u4FE1\u606F ",-1)),oe=N(()=>x("p",{class:"tit"},"\u5E38\u4F4F\u4EBA\u53E3",-1)),ue=N(()=>x("p",{class:"tit"},"\u5BB6\u5EAD\u60C5\u51B5",-1)),de=N(()=>x("p",{class:"tit"},"\u571F\u5730\u5177\u4F53\u4FE1\u606F",-1)),_e={style:{"font-weight":"bold","padding-left":"1vw"}},ne=N(()=>x("div",{style:{"box-sizing":"border-box",padding:"0 2vw"}},[x("p",{style:{border:"1px solid #bfbfbf","margin-bottom":"6px","text-align":"center"}})],-1));const ie=N(()=>x("p",{class:"tit"},"\u5F00\u8BBE\u5E97\u94FA",-1));const me=k({name:"test"}),ce=k({...me,setup(E){const A=X(),o=F({name:void 0,phone:"",age:"",area_name:"",street_name:"",village_name:"",brigade_name:"",addressa:"",address:"",family:[{name:"",birth_time:"",situation:"",work:"",phone:"",skills:""}],child:void 0,child_arr:[{name:"",birth:"",age:0,class:"",lessons:"",notes:"",feeding:""}],highway:void 0,smart_phone:void 0,wechat:"",datas:[{datas:{cultivated_area:"20",planning:66,breeding_training:1,planting_company:0,notes:"\u8BD5\u8BD5\u5907\u6CE8",breeding_type:22,area:20,breeding_time:"2022-07-22",mature_time:"2022-07-22",yield:600,estimated_income:1500,farm_tools:"\u6536\u5272\u673A\u4E00\u53F0,\u6253\u7C73\u673A\u4E00\u53F0",ecological_farming:1,modernization:30,pre_price:"30.00",method_sales:1,processing_storage:0,promote:0,transportation:0,expand_business_needs:0,demand:"\u6CA1\u6709\u8FF0\u6C42",policy_subsidies:"\u65E0\u8865\u52A9"}}],cultivated_area:"",planning:"",planting_company:"",notes:"",farmland:[{breeding_type:"",area:"",breeding_time:"",mature_time:"",yield:"",ecological_farming:"",farm_tools:"",pre_price:"",method_sales:[],processing_storage:"",promote:"",expand_business_needs:0,demand:"\u6CA1\u6709\u8FF0\u6C42",policy_subsidies:"\u65E0\u8865\u52A9"}],expand_business_needs:"",demand:"",housingDecoration:[{field101:1,field102:[],field103:void 0,field104:void 0,field105:void 0,field106:void 0,field108:[],field109:[],field110:[],field113:null,field114:void 0,field115:void 0,field116:void 0}],sellhouse:1,fanxin:1,historyDecoration:[{field101:void 0,field102:[],field103:void 0,field104:void 0,field105:void 0,field106:void 0,field108:[],field109:[],field110:[],field113:null,field114:void 0,field115:void 0,field116:void 0}],isWorkshop:0,isBuildLand:0,isbrand:0,isRecruit:0,field101:1,field116:void 0,field102:1,field104:void 0,field107:void 0,field109:[],field110:1,field111:1,field112:void 0,field113:void 0,field114:1,field115:void 0,field117:void 0,field118:void 0,field121:void 0,field126:void 0,field127:[],field128:void 0,field129:1,field130:void 0,field131:1,field132:1,field133:1,field135:void 0,field136:void 0,shop_front:"",area:"",place:"",type:"",environment:"",service:"",qualification:"",stock:"",scale:"",online_display:"",brand:"",repertory:"",appeal:"",isStock:0,isOnline:0,field103:void 0,field106:void 0,field108:void 0,banquetList:[],field102a:void 0,field103a:void 0,field104a:void 0,field105a:void 0,field106a:void 0,field107a:"",field108a:"",field109a:"",isSmoke:0,isWelfare:0,isNeedWelfare:0,familySituation:"",familyAppeal:""}),z=F([{name:"\u505A\u5DE5\u5730\u7684",id:"1"},{name:"\u5382\u91CC\u6253\u5DE5",id:"2"},{name:"\u516C\u53F8\u804C\u5458",id:"3"},{name:"\u653F\u5E9C\u4E0A\u73ED",id:"4"},{name:"\u79CD\u5730",id:"5"},{name:"\u5728\u5BB6\u8D4B\u95F2",id:"6"},{name:"\u5176\u4ED6",id:"7"}]),re=g(!1),B=F({subjs:[{label:"\u8BED\u6587",value:1},{label:"\u6570\u5B66",value:2},{label:"\u82F1\u8BED",value:3},{label:"\u827A\u672F\u7C7B",value:4},{label:"\u5176\u4ED6",value:5}],feedsList:[{label:"\u6BCD\u4E73",value:"1"},{label:"\u5976\u7C89",value:"2"}],plantList:[{label:"\u81EA\u5DF1\u79CD\u517B",value:"0"},{label:"\u51FA\u79DF",value:"1"},{label:"\u4EE3\u79CD\u517B",value:"2"},{label:"\u79DF\u66F4\u591A\u5730\u6269\u5927\u79CD\u690D",value:"3"}],houseStyle:[{label:"\u4E2D\u5F0F",value:1},{label:"\u7F8E\u5F0F",value:2},{label:"\u6B27\u5F0F",value:3},{label:"\u7B80\u7EA6",value:4},{label:"\u5962\u534E",value:5},{label:"\u522B\u5885/\u56DB\u5408\u9662",value:6},{label:"\u5176\u4ED6",value:7}],weihu:[{label:"\u623F\u9876",value:1},{label:"\u5395\u6240",value:2},{label:"\u7BA1\u7EBF",value:3},{label:"\u7535\u5668",value:4}],field102Options:[{label:"\u522B\u5885",value:1},{label:"\u6D0B\u623F",value:2},{label:"\u9AD8\u5C42",value:3},{label:"\u697C\u68AF\u623F",value:4}],ecologyPlant:[{label:"\u975E\u751F\u6001\u79CD\u690D",value:1}],sellType:[{label:"\u81EA\u9500",value:"1"},{label:"\u5B9A\u70B9\u9500\u552E",value:"2"}],publicize:[{label:"\u6709\u65E0\u5BA3\u4F20\u63A8\u5E7F",value:1}],field106Options:[{label:"\u8D85\u5E02",value:1},{label:"\u751F\u9C9C",value:2},{label:"\u996D\u5E97",value:3},{label:"\u4E94\u91D1",value:4},{label:"\u6742\u8D27",value:5},{label:"\u670D\u88C5",value:6},{label:"\u6587\u5177",value:7},{label:"\u5176\u4ED6",value:8}],field109Options:[{label:"\u5B66\u751F",value:1},{label:"\u5BB6\u5EAD\u5BA2\u6237",value:2},{label:"\u9752\u5E74\u5BA2\u6237",value:3},{label:"\u8001\u5E74\u4EBA",value:4},{label:"\u6E38\u5BA2",value:5}],banquetList:[{label:"\u5A5A\u5BB4",value:1},{label:"\u5BFF\u5BB4",value:2},{label:"\u6EE1\u6708\u9152",value:3},{label:"\u5176\u5B83\u5E86\u529F\u5BB4",value:4},{label:"\u767D\u4E8B",value:5}],field106aOptions:[{label:"\u9152\u5E97",value:1},{label:"\u4E00\u6761\u9F99",value:2},{label:"\u53EA\u8BF7\u53A8\u5E08",value:3}],field104Options:[{label:"\u7535\u74F6\u8F66",value:1},{label:"\u6469\u6258\u8F66",value:2},{label:"\u5C0F\u6C7D\u8F66",value:3}],provinceOptions:[],cityOptions:[],areaOptions:[],streetOptions:[]}),pe=()=>{console.log(o.banquetList)};F([{label:"\u6709\u52A0\u5DE5\u4ED3\u50A8",value:1}]),F([{label:"\u6709\u8FD0\u8F93",value:1}]),F([{label:"\u662F\u5426\u60F3\u8981\u6269\u5927\u7ECF\u8425",value:1}]);const fe=g(!0),Ve=()=>{};return Y({id:A.query.id}).then(async D=>{for(const _ in o)D[_]!=null&&D[_]!=null&&(o[_]=D[_]);o.addressa=o.area_name+o.street_name+o.village_name+o.brigade_name+o.address,console.log(o)}),(D,_)=>{const n=R,d=O,u=W,r=q,p=I,f=G,y=P,U=J,$=M,se=j,T=H,L=K,S=Q;return i(),V("div",te,[e(S,{ref:"elForm",disabled:!0,model:o,size:"mini","label-width":"100px"},{default:t(()=>[ae,e(u,null,{default:t(()=>[e(f,null,{default:t(()=>[e(u,{span:6},{default:t(()=>[e(d,{label:"\u59D3\u540D",prop:"name"},{default:t(()=>[e(n,{modelValue:o.name,"onUpdate:modelValue":_[0]||(_[0]=l=>o.name=l),placeholder:"\u8BF7\u8F93\u5165\u59D3\u540D",clearable:"",style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(u,{span:6},{default:t(()=>[e(d,{label:"\u6027\u522B",prop:"name"},{default:t(()=>[e(p,{modelValue:o.sex,"onUpdate:modelValue":_[1]||(_[1]=l=>o.sex=l),size:"medium"},{default:t(()=>[e(r,{label:1},{default:t(()=>[c("\u7537")]),_:1}),e(r,{label:2},{default:t(()=>[c("\u5973")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(u,{span:6},{default:t(()=>[e(d,{label:"\u5E74\u9F84",prop:"age"},{default:t(()=>[e(n,{modelValue:o.age,"onUpdate:modelValue":_[2]||(_[2]=l=>o.age=l),placeholder:"\u8BF7\u8F93\u5165\u5E74\u9F84",clearable:"",style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(u,{span:6},{default:t(()=>[e(d,{label:"\u7535\u8BDD",prop:"phone"},{default:t(()=>[e(n,{modelValue:o.phone,"onUpdate:modelValue":_[3]||(_[3]=l=>o.phone=l),placeholder:"\u8BF7\u8F93\u5165\u7535\u8BDD",clearable:"",style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(u,{span:6},{default:t(()=>[e(d,{label:"\u8EAB\u4EFD\u8BC1\u53F7",prop:"id_card"},{default:t(()=>[e(n,{modelValue:o.id_card,"onUpdate:modelValue":_[4]||(_[4]=l=>o.id_card=l),placeholder:"\u8BF7\u8F93\u5165\u8EAB\u4EFD\u8BC1\u53F7",clearable:"",style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(u,{span:6},{default:t(()=>[e(d,{label:"\u5730\u5740",prop:"field104"},{default:t(()=>[e(n,{modelValue:o.address,"onUpdate:modelValue":_[5]||(_[5]=l=>o.address=l),clearable:"",style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1})]),_:1})]),_:1}),oe,e(u,null,{default:t(()=>[(i(!0),V(h,null,C(o.family,(l,m)=>(i(),V("div",{key:m},[e(f,null,{default:t(()=>[e(u,{span:6},{default:t(()=>[e(d,{label:"\u59D3\u540D",prop:"name"},{default:t(()=>[e(n,{modelValue:l.name,"onUpdate:modelValue":a=>l.name=a,placeholder:"\u8BF7\u8F93\u5165\u59D3\u540D",clearable:"",style:{width:"100%"}},null,8,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024),e(u,{span:6,class:"dates"},{default:t(()=>[e(d,{label:"\u51FA\u751F\u65E5\u671F",prop:"field110"},{default:t(()=>[e(y,{disabled:!0,modelValue:l.birth_time,"onUpdate:modelValue":a=>l.birth_time=a,style:{width:"150%"},placeholder:"\u8BF7\u8F93\u5165\u51FA\u751F\u65E5\u671F",clearable:""},null,8,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024),e(u,{span:6},{default:t(()=>[e(d,{label:"\u5C31\u4E1A\u60C5\u51B5",prop:"field111"},{default:t(()=>[e($,{disabled:!0,modelValue:l.situation,"onUpdate:modelValue":a=>l.situation=a,placeholder:"\u8BF7\u8F93\u5165\u5C31\u4E1A\u60C5\u51B5",clearable:"",style:{width:"100%"}},{default:t(()=>[(i(!0),V(h,null,C(z,(a,w)=>(i(),s(U,{key:w,label:a.name,value:a.id},null,8,["label","value"]))),128))]),_:2},1032,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024),e(u,{span:6},{default:t(()=>[e(d,{label:"\u6280\u80FD\u7279\u957F",prop:"field119"},{default:t(()=>[e(n,{modelValue:l.skills,"onUpdate:modelValue":a=>l.skills=a,placeholder:"\u8BF7\u8F93\u5165\u6280\u80FD\u7279\u957F",clearable:"",style:{width:"100%"}},null,8,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024)]),_:2},1024)]))),128)),e(d,null,{default:t(()=>[e(p,{modelValue:o.child,"onUpdate:modelValue":_[6]||(_[6]=l=>o.child=l),size:"medium"},{default:t(()=>[e(r,{label:1},{default:t(()=>[c("\u5A74\u5E7C\u513F")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),o.child?(i(!0),V(h,{key:0},C(o.child_arr,(l,m)=>(i(),V("div",null,[o.child_arr[m].age<3?(i(),s(u,{key:0},{default:t(()=>[e(f,null,{default:t(()=>[e(u,{span:6},{default:t(()=>[e(d,{label:"\u5E74\u9F84",prop:"field134"},{default:t(()=>[e(n,{modelValue:l.age,"onUpdate:modelValue":a=>l.age=a,clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024),o.child_arr[m].age<3?(i(),s(u,{key:0,span:6},{default:t(()=>[e(d,{"label-width":"4vw",label:"",prop:"field156"},{default:t(()=>[e(p,{modelValue:l.feeding,"onUpdate:modelValue":a=>l.feeding=a,size:"medium"},{default:t(()=>[(i(!0),V(h,null,C(B.feedsList,(a,w)=>(i(),s(r,{key:m,label:a.value},{default:t(()=>[c(v(a.label),1)]),_:2},1032,["label"]))),128))]),_:2},1032,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024)):b("",!0),e(u,{span:12},{default:t(()=>[e(d,{label:"\u5907\u6CE8",prop:"field157"},{default:t(()=>[e(n,{modelValue:l.notes,"onUpdate:modelValue":a=>l.notes=a,placeholder:"\u8BF7\u8F93\u5165\u5907\u6CE8",clearable:"",style:{width:"100%"}},null,8,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024)]),_:2},1024)]),_:2},1024)):(i(),s(u,{key:1},{default:t(()=>[e(f,null,{default:t(()=>[e(u,{span:6},{default:t(()=>[e(d,{label:"\u5E74\u9F84",prop:"field134"},{default:t(()=>[e(n,{modelValue:l.age,"onUpdate:modelValue":a=>l.age=a,clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024),o.child_arr[m].age>=3?(i(),s(u,{key:0,span:6},{default:t(()=>[e(d,{label:"\u5E74\u7EAA",prop:"field141"},{default:t(()=>[e(n,{modelValue:l.grade,"onUpdate:modelValue":a=>l.grade=a,placeholder:"\u8BF7\u8F93\u5165\u5E74\u7EAA",clearable:"",style:{width:"100%"}},null,8,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024)):b("",!0),e(u,{span:6},{default:t(()=>[e(d,{label:"\u8865\u8BFE\u60C5\u51B5",prop:"field135"},{default:t(()=>[e(n,{modelValue:l.lessons,"onUpdate:modelValue":a=>l.lessons=a,clearable:"",style:{width:"100%"}},null,8,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024),e(u,{span:6},{default:t(()=>[e(d,{label:"\u5907\u6CE8",prop:"field138"},{default:t(()=>[e(n,{modelValue:l.notes,"onUpdate:modelValue":a=>l.notes=a,placeholder:"\u8BF7\u8F93\u5165\u5907\u6CE8",clearable:"",style:{width:"100%"}},null,8,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024)]),_:2},1024)]),_:2},1024))]))),256)):b("",!0),ue,e(u,null,{default:t(()=>[e(f,null,{default:t(()=>[e(u,{span:8},{default:t(()=>[e(d,{prop:"field162","label-width":"200px"},{default:t(()=>[e(p,{modelValue:o.highway,"onUpdate:modelValue":_[7]||(_[7]=l=>o.highway=l),size:"medium"},{default:t(()=>[e(r,{label:"1"},{default:t(()=>[c("\u6C7D\u8F66\u662F\u5426\u80FD\u5230\u5BB6")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(u,{span:8},{default:t(()=>[e(d,{prop:"smart_phone","label-width":"200px"},{default:t(()=>[e(p,{modelValue:o.smart_phone,"onUpdate:modelValue":_[8]||(_[8]=l=>o.smart_phone=l),size:"medium"},{default:t(()=>[e(r,{label:"1"},{default:t(()=>[c("\u662F\u5426\u4F7F\u7528\u667A\u80FD\u624B\u673A")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),o.smart_phone?(i(),s(u,{key:0,span:8},{default:t(()=>[e(d,{label:"\u8BF7\u7559\u4E0B\u60A8\u7684\u5FAE\u4FE1\u53F7","label-width":"200px",prop:"field164"},{default:t(()=>[e(n,{modelValue:o.wechat,"onUpdate:modelValue":_[9]||(_[9]=l=>o.wechat=l),placeholder:"\u8BF7\u8BF7\u7559\u4E0B\u60A8\u7684\u5FAE\u4FE1\u53F7",clearable:"",style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1})):b("",!0)]),_:1})]),_:1}),de,(i(!0),V(h,null,C(o.datas,(l,m)=>(i(),V("div",null,[x("p",_e," \u571F\u5730\u4FE1\u606F"+v(m+1)+": ",1),e(u,null,{default:t(()=>[e(f,null,{default:t(()=>[e(u,{span:6},{default:t(()=>[e(d,{label:"\u79CD\u517B\u6B96\u7C7B\u522B",prop:"field171"},{default:t(()=>[e(n,{modelValue:l.datas.breeding_type,"onUpdate:modelValue":a=>l.datas.breeding_type=a,placeholder:"\u5982 \u571F\u8C46",clearable:"",style:{width:"100%"}},null,8,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024),e(u,{span:6},{default:t(()=>[e(d,{label:"\u79CD\u517B\u6B96\u9762\u79EF",prop:"field172"},{default:t(()=>[e(n,{modelValue:l.datas.area,"onUpdate:modelValue":a=>l.datas.area=a,placeholder:"\u8BF7\u8F93\u5165\u9762\u79EF",clearable:"",style:{width:"100%"}},null,8,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024),e(u,{span:6},{default:t(()=>[e(d,{label:"\u79CD\u690D\u5F00\u59CB\u65F6",prop:"field173",class:"dates"},{default:t(()=>[e(y,{modelValue:l.datas.breeding_time,"onUpdate:modelValue":a=>l.datas.breeding_time=a,style:{width:"100%"},placeholder:"\u8BF7\u9009\u62E9\u79CD\u690D\u5F00\u59CB\u65F6",clearable:""},null,8,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024),e(u,{span:6},{default:t(()=>[e(d,{label:"\u4E0A\u5E02\u65F6\u95F4",prop:"field174",class:"dates"},{default:t(()=>[e(y,{modelValue:l.datas.mature_time,"onUpdate:modelValue":a=>l.datas.mature_time=a,style:{width:"100%"},placeholder:"\u8BF7\u9009\u62E9\u4E0A\u5E02\u65F6\u95F4",clearable:""},null,8,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024)]),_:2},1024),e(f,null,{default:t(()=>[e(u,{span:4},{default:t(()=>[e(d,{label:"\u4EA7\u91CF",prop:"field175"},{default:t(()=>[e(n,{modelValue:l.datas.yield,"onUpdate:modelValue":a=>l.datas.yield=a,placeholder:"\u8BF7\u8F93\u5165\u4EA7\u91CF",clearable:"",style:{width:"100%"}},null,8,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024),e(u,{span:8},{default:t(()=>[e(d,{label:"\u519C\u8D44\u519C\u5177\u4F7F\u7528\u60C5\u51B5","label-width":"150px",prop:"field176"},{default:t(()=>[e(n,{modelValue:l.datas.farm_tools,"onUpdate:modelValue":a=>l.datas.farm_tools=a,placeholder:"\u8BF7\u8F93\u5165\u519C\u8D44\u519C\u5177\u4F7F\u7528\u60C5\u51B5",clearable:"",style:{width:"100%"}},null,8,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024),e(u,{span:6},{default:t(()=>[e(d,{label:"\u9884\u552E\u5356\u4EF7\u683C",prop:"field177"},{default:t(()=>[e(n,{modelValue:l.datas.pre_price,"onUpdate:modelValue":a=>l.datas.pre_price=a,placeholder:"\u8BF7\u8F93\u5165\u9884\u552E\u5356\u4EF7\u683C",clearable:"",style:{width:"100%"}},null,8,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024),e(u,{span:6},{default:t(()=>[e(d,{label:"\u8015\u5730\u603B\u9762\u79EF",prop:"field166"},{default:t(()=>[e(n,{modelValue:l.datas.cultivated_area,"onUpdate:modelValue":a=>l.datas.cultivated_area=a,placeholder:"\u8BF7\u8F93\u5165\u8015\u5730\u603B\u9762\u79EF",clearable:"",style:{width:"100%"}},null,8,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024)]),_:2},1024)]),_:2},1024),e(f,null,{default:t(()=>[e(u,{span:10},{default:t(()=>[e(d,{label:"\u571F\u5730\u89C4\u5212",prop:"field167"},{default:t(()=>[e(p,{modelValue:l.datas.planning,"onUpdate:modelValue":a=>l.datas.planning=a,size:"medium"},{default:t(()=>[(i(!0),V(h,null,C(B.plantList,(a,w)=>(i(),s(r,{key:w,label:a.value},{default:t(()=>[c(v(a.label),1)]),_:2},1032,["label"]))),128))]),_:2},1032,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024),e(u,{span:4},{default:t(()=>[e(d,null,{default:t(()=>[e(p,{modelValue:l.datas.breeding_training,"onUpdate:modelValue":a=>l.datas.breeding_training=a,size:"medium"},{default:t(()=>[e(r,{label:"1"},{default:t(()=>[c("\u79CD\u690D\u57F9\u8BAD")]),_:1})]),_:2},1032,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024),e(u,{span:4},{default:t(()=>[e(d,null,{default:t(()=>[e(p,{modelValue:l.datas.planting_company,"onUpdate:modelValue":a=>l.datas.planting_company=a,size:"medium"},{default:t(()=>[e(r,{label:"1"},{default:t(()=>[c("\u6CE8\u518C\u6210\u7ACB\u516C\u53F8\u7ECF\u5386")]),_:1})]),_:2},1032,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024),e(u,{span:6},{default:t(()=>[e(d,{label:"\u5907\u6CE8",prop:"field138"},{default:t(()=>[e(n,{modelValue:l.datas.notes,"onUpdate:modelValue":a=>l.datas.notes=a,placeholder:"\u8BF7\u8F93\u5165\u5907\u6CE8",clearable:"",style:{width:"100%"}},null,8,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024)]),_:2},1024),e(u,null,{default:t(()=>[e(f,null,{default:t(()=>[e(u,{span:6},{default:t(()=>[e(d,{label:"\u9500\u552E\u65B9\u5F0F",prop:"field180"},{default:t(()=>[e(p,{modelValue:l.datas.method_sales,"onUpdate:modelValue":a=>l.datas.method_sales=a,size:"medium"},{default:t(()=>[(i(!0),V(h,null,C(B.sellType,(a,w)=>(i(),s(r,{key:w,label:a.value},{default:t(()=>[c(v(a.label),1)]),_:2},1032,["label"]))),128))]),_:2},1032,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024),e(u,{span:4},{default:t(()=>[e(d,{"label-width":"100px",prop:"field179"},{default:t(()=>[e(p,{modelValue:l.datas.ecological_farming,"onUpdate:modelValue":a=>l.datas.ecological_farming=a,size:"medium"},{default:t(()=>[e(r,{label:"1"},{default:t(()=>[c("\u751F\u6001\u79CD\u690D")]),_:1})]),_:2},1032,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024),e(u,{span:4},{default:t(()=>[e(d,{"label-width":"100px",prop:"field182"},{default:t(()=>[e(p,{modelValue:l.datas.promote,"onUpdate:modelValue":a=>l.datas.promote=a,size:"medium"},{default:t(()=>[e(r,{label:"1"},{default:t(()=>[c("\u5BA3\u4F20\u63A8\u5E7F")]),_:1}),c(" > ")]),_:2},1032,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024),e(u,{span:4},{default:t(()=>[e(d,{"label-width":"100px",prop:"field181"},{default:t(()=>[e(p,{modelValue:l.datas.processing_storage,"onUpdate:modelValue":a=>l.datas.processing_storage=a,size:"medium"},{default:t(()=>[e(r,{label:"1"},{default:t(()=>[c("\u52A0\u5DE5\u4ED3\u50A8")]),_:1})]),_:2},1032,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024),e(u,{span:4},{default:t(()=>[e(d,{"label-width":"100px",prop:"field183"},{default:t(()=>[e(p,{modelValue:l.datas.transportation,"onUpdate:modelValue":a=>l.datas.transportation=a,size:"medium"},{default:t(()=>[e(r,{label:"1"},{default:t(()=>[c("\u8FD0\u8F93")]),_:1})]),_:2},1032,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024)]),_:2},1024),e(f,null,{default:t(()=>[e(u,{span:8},{default:t(()=>[e(d,{label:"\u79CD\u690D\u8BC9\u6C42",prop:"field189"},{default:t(()=>[e(n,{modelValue:l.datas.demand,"onUpdate:modelValue":a=>l.datas.demand=a,placeholder:"\u8BF7\u8F93\u5165\u79CD\u690D\u8BC9\u6C42",clearable:"",style:{width:"100%"}},null,8,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024),e(u,{span:8},{default:t(()=>[e(d,{label:"\u653F\u7B56\u8865\u52A9",prop:"field190"},{default:t(()=>[e(n,{modelValue:l.datas.policy_subsidies,"onUpdate:modelValue":a=>l.datas.policy_subsidies=a,placeholder:"\u8BF7\u8F93\u5165\u653F\u7B56\u8865\u52A9",clearable:"",style:{width:"100%"}},null,8,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024),e(u,{span:8},{default:t(()=>[e(d,{"label-width":"4vw",prop:"field188"},{default:t(()=>[e(p,{modelValue:l.datas.expand_business_needs,"onUpdate:modelValue":a=>l.datas.expand_business_needs=a,size:"medium"},{default:t(()=>[e(r,{label:"1"},{default:t(()=>[c("\u662F\u5426\u60F3\u8981\u6269\u5927\u7ECF\u8425 ")]),_:1})]),_:2},1032,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024)]),_:2},1024)]),_:2},1024),ne]))),256)),b("",!0),ie,e(u,null,{default:t(()=>[e(f,null,{default:t(()=>[e(u,{span:12},{default:t(()=>[e(d,{"label-width":"100px",prop:"field101"},{default:t(()=>[e(p,{modelValue:o.shop_front,"onUpdate:modelValue":_[52]||(_[52]=l=>o.shop_front=l),size:"medium"},{default:t(()=>[e(r,{label:1},{default:t(()=>[c("\u95E8\u9762")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(u,{span:12},{default:t(()=>[e(d,{label:"\u7ECF\u8425\u8BC9\u6C42",prop:"field102"},{default:t(()=>[e(n,{modelValue:o.appeal,"onUpdate:modelValue":_[53]||(_[53]=l=>o.appeal=l),placeholder:"\u8BF7\u8F93\u5165\u7ECF\u8425\u8BC9\u6C42",clearable:"",style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1})]),_:1}),e(f,null,{default:t(()=>[e(u,{span:6},{default:t(()=>[e(d,{label:"\u95E8\u5E02\u9762\u79EF",prop:"field103"},{default:t(()=>[e(n,{modelValue:o.area,"onUpdate:modelValue":_[54]||(_[54]=l=>o.area=l),placeholder:"\u8BF7\u8F93\u5165\u95E8\u5E02\u9762\u79EF",clearable:"",style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(u,{span:6},{default:t(()=>[e(d,{label:"\u5730\u70B9",prop:"field104"},{default:t(()=>[e(n,{modelValue:o.place,"onUpdate:modelValue":_[55]||(_[55]=l=>o.place=l),placeholder:"\u8BF7\u8F93\u5165\u5730\u70B9",clearable:"",style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(u,{span:6},{default:t(()=>[e(d,{label:"\u7ECF\u8425\u7C7B\u578B",prop:"field106"},{default:t(()=>[e($,{modelValue:o.type,"onUpdate:modelValue":_[56]||(_[56]=l=>o.type=l),placeholder:"\u8BF7\u9009\u62E9\u7ECF\u8425\u7C7B\u578B",clearable:"",style:{width:"100%"}},{default:t(()=>[(i(!0),V(h,null,C(B.field106Options,(l,m)=>(i(),s(U,{key:m,label:l.label,value:l.value},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(u,{span:6},{default:t(()=>[e(d,{label:"\u5E93\u5B58\u60C5\u51B5",prop:"field108"},{default:t(()=>[e(n,{modelValue:o.field108,"onUpdate:modelValue":_[57]||(_[57]=l=>o.field108=l),placeholder:"\u8BF7\u8F93\u5165\u5E93\u5B58\u60C5\u51B5",clearable:"",style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1})]),_:1}),e(f,null,{default:t(()=>[e(u,{span:12},{default:t(()=>[e(d,{label:"\u670D\u52A1\u5BF9\u8C61",prop:"field135"},{default:t(()=>[e(L,{modelValue:o.service,"onUpdate:modelValue":_[58]||(_[58]=l=>o.service=l),size:"medium"},{default:t(()=>[(i(!0),V(h,null,C(B.field109Options,(l,m)=>(i(),s(T,{key:m,label:l.value},{default:t(()=>[c(v(l.label),1)]),_:2},1032,["label"]))),128))]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(u,{span:12},{default:t(()=>[e(d,{"label-width":"100px",prop:"field115"},{default:t(()=>[e(p,{modelValue:o.brand,"onUpdate:modelValue":_[59]||(_[59]=l=>o.brand=l),size:"medium"},{default:t(()=>[e(r,{label:1},{default:t(()=>[c("\u8425\u4E1A\u6267\u7167")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1})]),_:1}),e(f,null,{default:t(()=>[e(u,{span:6},{default:t(()=>[e(d,{"label-width":"100px",prop:"field113"},{default:t(()=>[e(p,{modelValue:o.stock,"onUpdate:modelValue":_[60]||(_[60]=l=>o.stock=l),size:"medium"},{default:t(()=>[e(r,{label:1},{default:t(()=>[c("\u8FDB\u8D27\u6E20\u9053")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),o.stock?(i(),s(u,{key:0,span:6},{default:t(()=>[e(d,{label:"\u8FDB\u8D27\u6E20\u9053",prop:"field114"},{default:t(()=>[e(n,{modelValue:o.field114,"onUpdate:modelValue":_[61]||(_[61]=l=>o.field114=l),placeholder:"\u8BF7\u8F93\u5165\u8FDB\u8D27\u6E20\u9053",clearable:"",style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1})):b("",!0),e(u,{span:6},{default:t(()=>[e(d,{"label-width":"100px",prop:"field115"},{default:t(()=>[e(p,{modelValue:o.online_display,"onUpdate:modelValue":_[62]||(_[62]=l=>o.online_display=l),size:"medium"},{default:t(()=>[e(r,{label:1},{default:t(()=>[c("\u7EBF\u4E0A\u5C55\u793A")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),o.online_display?(i(),s(u,{key:1,span:6},{default:t(()=>[e(d,{label:"\u7EBF\u4E0A\u5E73\u53F0",prop:"field116"},{default:t(()=>[e(n,{modelValue:o.field116,"onUpdate:modelValue":_[63]||(_[63]=l=>o.field116=l),placeholder:"\u8BF7\u8F93\u5165\u7EBF\u4E0A\u5E73\u53F0",clearable:"",style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1})):b("",!0)]),_:1})]),_:1}),b("",!0)]),_:1},8,["model"])])}}});const Ye=le(ce,[["__scopeId","data-v-2e603946"]]);export{Ye as default}; diff --git a/public/admin/assets/detil.dfd0c90d.js b/public/admin/assets/detil.dfd0c90d.js new file mode 100644 index 000000000..959dc53da --- /dev/null +++ b/public/admin/assets/detil.dfd0c90d.js @@ -0,0 +1 @@ +import{B as R,C as O,a1 as W,G as q,H as I,a2 as G,a5 as P,M as J,N as M,w as j,F as H,a0 as K,D as Q}from"./element-plus.4328d892.js";import{u as X}from"./vue-router.9f65afb1.js";import{f as Y}from"./informationg.d3032a30.js";import{d as k,$ as F,r as g,o as i,c as V,U as e,L as t,R as c,T as h,a7 as C,Q as b,K as s,S as v,a as x,bf as Z,be as ee}from"./@vue.51d7f2d8.js";import{d as le}from"./index.ed71ac09.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const N=E=>(Z("data-v-2e603946"),E=E(),ee(),E),te={class:"content"},ae=N(()=>x("div",{style:{"font-size":"1.2rem",translate:"1vw 0","background-color":"white"}}," \u4E2A\u4EBA\u4FE1\u606F ",-1)),oe=N(()=>x("p",{class:"tit"},"\u5E38\u4F4F\u4EBA\u53E3",-1)),ue=N(()=>x("p",{class:"tit"},"\u5BB6\u5EAD\u60C5\u51B5",-1)),de=N(()=>x("p",{class:"tit"},"\u571F\u5730\u5177\u4F53\u4FE1\u606F",-1)),_e={style:{"font-weight":"bold","padding-left":"1vw"}},ne=N(()=>x("div",{style:{"box-sizing":"border-box",padding:"0 2vw"}},[x("p",{style:{border:"1px solid #bfbfbf","margin-bottom":"6px","text-align":"center"}})],-1));const ie=N(()=>x("p",{class:"tit"},"\u5F00\u8BBE\u5E97\u94FA",-1));const me=k({name:"test"}),ce=k({...me,setup(E){const A=X(),o=F({name:void 0,phone:"",age:"",area_name:"",street_name:"",village_name:"",brigade_name:"",addressa:"",address:"",family:[{name:"",birth_time:"",situation:"",work:"",phone:"",skills:""}],child:void 0,child_arr:[{name:"",birth:"",age:0,class:"",lessons:"",notes:"",feeding:""}],highway:void 0,smart_phone:void 0,wechat:"",datas:[{datas:{cultivated_area:"20",planning:66,breeding_training:1,planting_company:0,notes:"\u8BD5\u8BD5\u5907\u6CE8",breeding_type:22,area:20,breeding_time:"2022-07-22",mature_time:"2022-07-22",yield:600,estimated_income:1500,farm_tools:"\u6536\u5272\u673A\u4E00\u53F0,\u6253\u7C73\u673A\u4E00\u53F0",ecological_farming:1,modernization:30,pre_price:"30.00",method_sales:1,processing_storage:0,promote:0,transportation:0,expand_business_needs:0,demand:"\u6CA1\u6709\u8FF0\u6C42",policy_subsidies:"\u65E0\u8865\u52A9"}}],cultivated_area:"",planning:"",planting_company:"",notes:"",farmland:[{breeding_type:"",area:"",breeding_time:"",mature_time:"",yield:"",ecological_farming:"",farm_tools:"",pre_price:"",method_sales:[],processing_storage:"",promote:"",expand_business_needs:0,demand:"\u6CA1\u6709\u8FF0\u6C42",policy_subsidies:"\u65E0\u8865\u52A9"}],expand_business_needs:"",demand:"",housingDecoration:[{field101:1,field102:[],field103:void 0,field104:void 0,field105:void 0,field106:void 0,field108:[],field109:[],field110:[],field113:null,field114:void 0,field115:void 0,field116:void 0}],sellhouse:1,fanxin:1,historyDecoration:[{field101:void 0,field102:[],field103:void 0,field104:void 0,field105:void 0,field106:void 0,field108:[],field109:[],field110:[],field113:null,field114:void 0,field115:void 0,field116:void 0}],isWorkshop:0,isBuildLand:0,isbrand:0,isRecruit:0,field101:1,field116:void 0,field102:1,field104:void 0,field107:void 0,field109:[],field110:1,field111:1,field112:void 0,field113:void 0,field114:1,field115:void 0,field117:void 0,field118:void 0,field121:void 0,field126:void 0,field127:[],field128:void 0,field129:1,field130:void 0,field131:1,field132:1,field133:1,field135:void 0,field136:void 0,shop_front:"",area:"",place:"",type:"",environment:"",service:"",qualification:"",stock:"",scale:"",online_display:"",brand:"",repertory:"",appeal:"",isStock:0,isOnline:0,field103:void 0,field106:void 0,field108:void 0,banquetList:[],field102a:void 0,field103a:void 0,field104a:void 0,field105a:void 0,field106a:void 0,field107a:"",field108a:"",field109a:"",isSmoke:0,isWelfare:0,isNeedWelfare:0,familySituation:"",familyAppeal:""}),z=F([{name:"\u505A\u5DE5\u5730\u7684",id:"1"},{name:"\u5382\u91CC\u6253\u5DE5",id:"2"},{name:"\u516C\u53F8\u804C\u5458",id:"3"},{name:"\u653F\u5E9C\u4E0A\u73ED",id:"4"},{name:"\u79CD\u5730",id:"5"},{name:"\u5728\u5BB6\u8D4B\u95F2",id:"6"},{name:"\u5176\u4ED6",id:"7"}]),re=g(!1),B=F({subjs:[{label:"\u8BED\u6587",value:1},{label:"\u6570\u5B66",value:2},{label:"\u82F1\u8BED",value:3},{label:"\u827A\u672F\u7C7B",value:4},{label:"\u5176\u4ED6",value:5}],feedsList:[{label:"\u6BCD\u4E73",value:"1"},{label:"\u5976\u7C89",value:"2"}],plantList:[{label:"\u81EA\u5DF1\u79CD\u517B",value:"0"},{label:"\u51FA\u79DF",value:"1"},{label:"\u4EE3\u79CD\u517B",value:"2"},{label:"\u79DF\u66F4\u591A\u5730\u6269\u5927\u79CD\u690D",value:"3"}],houseStyle:[{label:"\u4E2D\u5F0F",value:1},{label:"\u7F8E\u5F0F",value:2},{label:"\u6B27\u5F0F",value:3},{label:"\u7B80\u7EA6",value:4},{label:"\u5962\u534E",value:5},{label:"\u522B\u5885/\u56DB\u5408\u9662",value:6},{label:"\u5176\u4ED6",value:7}],weihu:[{label:"\u623F\u9876",value:1},{label:"\u5395\u6240",value:2},{label:"\u7BA1\u7EBF",value:3},{label:"\u7535\u5668",value:4}],field102Options:[{label:"\u522B\u5885",value:1},{label:"\u6D0B\u623F",value:2},{label:"\u9AD8\u5C42",value:3},{label:"\u697C\u68AF\u623F",value:4}],ecologyPlant:[{label:"\u975E\u751F\u6001\u79CD\u690D",value:1}],sellType:[{label:"\u81EA\u9500",value:"1"},{label:"\u5B9A\u70B9\u9500\u552E",value:"2"}],publicize:[{label:"\u6709\u65E0\u5BA3\u4F20\u63A8\u5E7F",value:1}],field106Options:[{label:"\u8D85\u5E02",value:1},{label:"\u751F\u9C9C",value:2},{label:"\u996D\u5E97",value:3},{label:"\u4E94\u91D1",value:4},{label:"\u6742\u8D27",value:5},{label:"\u670D\u88C5",value:6},{label:"\u6587\u5177",value:7},{label:"\u5176\u4ED6",value:8}],field109Options:[{label:"\u5B66\u751F",value:1},{label:"\u5BB6\u5EAD\u5BA2\u6237",value:2},{label:"\u9752\u5E74\u5BA2\u6237",value:3},{label:"\u8001\u5E74\u4EBA",value:4},{label:"\u6E38\u5BA2",value:5}],banquetList:[{label:"\u5A5A\u5BB4",value:1},{label:"\u5BFF\u5BB4",value:2},{label:"\u6EE1\u6708\u9152",value:3},{label:"\u5176\u5B83\u5E86\u529F\u5BB4",value:4},{label:"\u767D\u4E8B",value:5}],field106aOptions:[{label:"\u9152\u5E97",value:1},{label:"\u4E00\u6761\u9F99",value:2},{label:"\u53EA\u8BF7\u53A8\u5E08",value:3}],field104Options:[{label:"\u7535\u74F6\u8F66",value:1},{label:"\u6469\u6258\u8F66",value:2},{label:"\u5C0F\u6C7D\u8F66",value:3}],provinceOptions:[],cityOptions:[],areaOptions:[],streetOptions:[]}),pe=()=>{console.log(o.banquetList)};F([{label:"\u6709\u52A0\u5DE5\u4ED3\u50A8",value:1}]),F([{label:"\u6709\u8FD0\u8F93",value:1}]),F([{label:"\u662F\u5426\u60F3\u8981\u6269\u5927\u7ECF\u8425",value:1}]);const fe=g(!0),Ve=()=>{};return Y({id:A.query.id}).then(async D=>{for(const _ in o)D[_]!=null&&D[_]!=null&&(o[_]=D[_]);o.addressa=o.area_name+o.street_name+o.village_name+o.brigade_name+o.address,console.log(o)}),(D,_)=>{const n=R,d=O,u=W,r=q,p=I,f=G,y=P,U=J,$=M,se=j,T=H,L=K,S=Q;return i(),V("div",te,[e(S,{ref:"elForm",disabled:!0,model:o,size:"mini","label-width":"100px"},{default:t(()=>[ae,e(u,null,{default:t(()=>[e(f,null,{default:t(()=>[e(u,{span:6},{default:t(()=>[e(d,{label:"\u59D3\u540D",prop:"name"},{default:t(()=>[e(n,{modelValue:o.name,"onUpdate:modelValue":_[0]||(_[0]=l=>o.name=l),placeholder:"\u8BF7\u8F93\u5165\u59D3\u540D",clearable:"",style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(u,{span:6},{default:t(()=>[e(d,{label:"\u6027\u522B",prop:"name"},{default:t(()=>[e(p,{modelValue:o.sex,"onUpdate:modelValue":_[1]||(_[1]=l=>o.sex=l),size:"medium"},{default:t(()=>[e(r,{label:1},{default:t(()=>[c("\u7537")]),_:1}),e(r,{label:2},{default:t(()=>[c("\u5973")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(u,{span:6},{default:t(()=>[e(d,{label:"\u5E74\u9F84",prop:"age"},{default:t(()=>[e(n,{modelValue:o.age,"onUpdate:modelValue":_[2]||(_[2]=l=>o.age=l),placeholder:"\u8BF7\u8F93\u5165\u5E74\u9F84",clearable:"",style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(u,{span:6},{default:t(()=>[e(d,{label:"\u7535\u8BDD",prop:"phone"},{default:t(()=>[e(n,{modelValue:o.phone,"onUpdate:modelValue":_[3]||(_[3]=l=>o.phone=l),placeholder:"\u8BF7\u8F93\u5165\u7535\u8BDD",clearable:"",style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(u,{span:6},{default:t(()=>[e(d,{label:"\u8EAB\u4EFD\u8BC1\u53F7",prop:"id_card"},{default:t(()=>[e(n,{modelValue:o.id_card,"onUpdate:modelValue":_[4]||(_[4]=l=>o.id_card=l),placeholder:"\u8BF7\u8F93\u5165\u8EAB\u4EFD\u8BC1\u53F7",clearable:"",style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(u,{span:6},{default:t(()=>[e(d,{label:"\u5730\u5740",prop:"field104"},{default:t(()=>[e(n,{modelValue:o.address,"onUpdate:modelValue":_[5]||(_[5]=l=>o.address=l),clearable:"",style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1})]),_:1})]),_:1}),oe,e(u,null,{default:t(()=>[(i(!0),V(h,null,C(o.family,(l,m)=>(i(),V("div",{key:m},[e(f,null,{default:t(()=>[e(u,{span:6},{default:t(()=>[e(d,{label:"\u59D3\u540D",prop:"name"},{default:t(()=>[e(n,{modelValue:l.name,"onUpdate:modelValue":a=>l.name=a,placeholder:"\u8BF7\u8F93\u5165\u59D3\u540D",clearable:"",style:{width:"100%"}},null,8,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024),e(u,{span:6,class:"dates"},{default:t(()=>[e(d,{label:"\u51FA\u751F\u65E5\u671F",prop:"field110"},{default:t(()=>[e(y,{disabled:!0,modelValue:l.birth_time,"onUpdate:modelValue":a=>l.birth_time=a,style:{width:"150%"},placeholder:"\u8BF7\u8F93\u5165\u51FA\u751F\u65E5\u671F",clearable:""},null,8,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024),e(u,{span:6},{default:t(()=>[e(d,{label:"\u5C31\u4E1A\u60C5\u51B5",prop:"field111"},{default:t(()=>[e($,{disabled:!0,modelValue:l.situation,"onUpdate:modelValue":a=>l.situation=a,placeholder:"\u8BF7\u8F93\u5165\u5C31\u4E1A\u60C5\u51B5",clearable:"",style:{width:"100%"}},{default:t(()=>[(i(!0),V(h,null,C(z,(a,w)=>(i(),s(U,{key:w,label:a.name,value:a.id},null,8,["label","value"]))),128))]),_:2},1032,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024),e(u,{span:6},{default:t(()=>[e(d,{label:"\u6280\u80FD\u7279\u957F",prop:"field119"},{default:t(()=>[e(n,{modelValue:l.skills,"onUpdate:modelValue":a=>l.skills=a,placeholder:"\u8BF7\u8F93\u5165\u6280\u80FD\u7279\u957F",clearable:"",style:{width:"100%"}},null,8,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024)]),_:2},1024)]))),128)),e(d,null,{default:t(()=>[e(p,{modelValue:o.child,"onUpdate:modelValue":_[6]||(_[6]=l=>o.child=l),size:"medium"},{default:t(()=>[e(r,{label:1},{default:t(()=>[c("\u5A74\u5E7C\u513F")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),o.child?(i(!0),V(h,{key:0},C(o.child_arr,(l,m)=>(i(),V("div",null,[o.child_arr[m].age<3?(i(),s(u,{key:0},{default:t(()=>[e(f,null,{default:t(()=>[e(u,{span:6},{default:t(()=>[e(d,{label:"\u5E74\u9F84",prop:"field134"},{default:t(()=>[e(n,{modelValue:l.age,"onUpdate:modelValue":a=>l.age=a,clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024),o.child_arr[m].age<3?(i(),s(u,{key:0,span:6},{default:t(()=>[e(d,{"label-width":"4vw",label:"",prop:"field156"},{default:t(()=>[e(p,{modelValue:l.feeding,"onUpdate:modelValue":a=>l.feeding=a,size:"medium"},{default:t(()=>[(i(!0),V(h,null,C(B.feedsList,(a,w)=>(i(),s(r,{key:m,label:a.value},{default:t(()=>[c(v(a.label),1)]),_:2},1032,["label"]))),128))]),_:2},1032,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024)):b("",!0),e(u,{span:12},{default:t(()=>[e(d,{label:"\u5907\u6CE8",prop:"field157"},{default:t(()=>[e(n,{modelValue:l.notes,"onUpdate:modelValue":a=>l.notes=a,placeholder:"\u8BF7\u8F93\u5165\u5907\u6CE8",clearable:"",style:{width:"100%"}},null,8,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024)]),_:2},1024)]),_:2},1024)):(i(),s(u,{key:1},{default:t(()=>[e(f,null,{default:t(()=>[e(u,{span:6},{default:t(()=>[e(d,{label:"\u5E74\u9F84",prop:"field134"},{default:t(()=>[e(n,{modelValue:l.age,"onUpdate:modelValue":a=>l.age=a,clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024),o.child_arr[m].age>=3?(i(),s(u,{key:0,span:6},{default:t(()=>[e(d,{label:"\u5E74\u7EAA",prop:"field141"},{default:t(()=>[e(n,{modelValue:l.grade,"onUpdate:modelValue":a=>l.grade=a,placeholder:"\u8BF7\u8F93\u5165\u5E74\u7EAA",clearable:"",style:{width:"100%"}},null,8,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024)):b("",!0),e(u,{span:6},{default:t(()=>[e(d,{label:"\u8865\u8BFE\u60C5\u51B5",prop:"field135"},{default:t(()=>[e(n,{modelValue:l.lessons,"onUpdate:modelValue":a=>l.lessons=a,clearable:"",style:{width:"100%"}},null,8,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024),e(u,{span:6},{default:t(()=>[e(d,{label:"\u5907\u6CE8",prop:"field138"},{default:t(()=>[e(n,{modelValue:l.notes,"onUpdate:modelValue":a=>l.notes=a,placeholder:"\u8BF7\u8F93\u5165\u5907\u6CE8",clearable:"",style:{width:"100%"}},null,8,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024)]),_:2},1024)]),_:2},1024))]))),256)):b("",!0),ue,e(u,null,{default:t(()=>[e(f,null,{default:t(()=>[e(u,{span:8},{default:t(()=>[e(d,{prop:"field162","label-width":"200px"},{default:t(()=>[e(p,{modelValue:o.highway,"onUpdate:modelValue":_[7]||(_[7]=l=>o.highway=l),size:"medium"},{default:t(()=>[e(r,{label:"1"},{default:t(()=>[c("\u6C7D\u8F66\u662F\u5426\u80FD\u5230\u5BB6")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(u,{span:8},{default:t(()=>[e(d,{prop:"smart_phone","label-width":"200px"},{default:t(()=>[e(p,{modelValue:o.smart_phone,"onUpdate:modelValue":_[8]||(_[8]=l=>o.smart_phone=l),size:"medium"},{default:t(()=>[e(r,{label:"1"},{default:t(()=>[c("\u662F\u5426\u4F7F\u7528\u667A\u80FD\u624B\u673A")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),o.smart_phone?(i(),s(u,{key:0,span:8},{default:t(()=>[e(d,{label:"\u8BF7\u7559\u4E0B\u60A8\u7684\u5FAE\u4FE1\u53F7","label-width":"200px",prop:"field164"},{default:t(()=>[e(n,{modelValue:o.wechat,"onUpdate:modelValue":_[9]||(_[9]=l=>o.wechat=l),placeholder:"\u8BF7\u8BF7\u7559\u4E0B\u60A8\u7684\u5FAE\u4FE1\u53F7",clearable:"",style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1})):b("",!0)]),_:1})]),_:1}),de,(i(!0),V(h,null,C(o.datas,(l,m)=>(i(),V("div",null,[x("p",_e," \u571F\u5730\u4FE1\u606F"+v(m+1)+": ",1),e(u,null,{default:t(()=>[e(f,null,{default:t(()=>[e(u,{span:6},{default:t(()=>[e(d,{label:"\u79CD\u517B\u6B96\u7C7B\u522B",prop:"field171"},{default:t(()=>[e(n,{modelValue:l.datas.breeding_type,"onUpdate:modelValue":a=>l.datas.breeding_type=a,placeholder:"\u5982 \u571F\u8C46",clearable:"",style:{width:"100%"}},null,8,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024),e(u,{span:6},{default:t(()=>[e(d,{label:"\u79CD\u517B\u6B96\u9762\u79EF",prop:"field172"},{default:t(()=>[e(n,{modelValue:l.datas.area,"onUpdate:modelValue":a=>l.datas.area=a,placeholder:"\u8BF7\u8F93\u5165\u9762\u79EF",clearable:"",style:{width:"100%"}},null,8,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024),e(u,{span:6},{default:t(()=>[e(d,{label:"\u79CD\u690D\u5F00\u59CB\u65F6",prop:"field173",class:"dates"},{default:t(()=>[e(y,{modelValue:l.datas.breeding_time,"onUpdate:modelValue":a=>l.datas.breeding_time=a,style:{width:"100%"},placeholder:"\u8BF7\u9009\u62E9\u79CD\u690D\u5F00\u59CB\u65F6",clearable:""},null,8,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024),e(u,{span:6},{default:t(()=>[e(d,{label:"\u4E0A\u5E02\u65F6\u95F4",prop:"field174",class:"dates"},{default:t(()=>[e(y,{modelValue:l.datas.mature_time,"onUpdate:modelValue":a=>l.datas.mature_time=a,style:{width:"100%"},placeholder:"\u8BF7\u9009\u62E9\u4E0A\u5E02\u65F6\u95F4",clearable:""},null,8,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024)]),_:2},1024),e(f,null,{default:t(()=>[e(u,{span:4},{default:t(()=>[e(d,{label:"\u4EA7\u91CF",prop:"field175"},{default:t(()=>[e(n,{modelValue:l.datas.yield,"onUpdate:modelValue":a=>l.datas.yield=a,placeholder:"\u8BF7\u8F93\u5165\u4EA7\u91CF",clearable:"",style:{width:"100%"}},null,8,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024),e(u,{span:8},{default:t(()=>[e(d,{label:"\u519C\u8D44\u519C\u5177\u4F7F\u7528\u60C5\u51B5","label-width":"150px",prop:"field176"},{default:t(()=>[e(n,{modelValue:l.datas.farm_tools,"onUpdate:modelValue":a=>l.datas.farm_tools=a,placeholder:"\u8BF7\u8F93\u5165\u519C\u8D44\u519C\u5177\u4F7F\u7528\u60C5\u51B5",clearable:"",style:{width:"100%"}},null,8,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024),e(u,{span:6},{default:t(()=>[e(d,{label:"\u9884\u552E\u5356\u4EF7\u683C",prop:"field177"},{default:t(()=>[e(n,{modelValue:l.datas.pre_price,"onUpdate:modelValue":a=>l.datas.pre_price=a,placeholder:"\u8BF7\u8F93\u5165\u9884\u552E\u5356\u4EF7\u683C",clearable:"",style:{width:"100%"}},null,8,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024),e(u,{span:6},{default:t(()=>[e(d,{label:"\u8015\u5730\u603B\u9762\u79EF",prop:"field166"},{default:t(()=>[e(n,{modelValue:l.datas.cultivated_area,"onUpdate:modelValue":a=>l.datas.cultivated_area=a,placeholder:"\u8BF7\u8F93\u5165\u8015\u5730\u603B\u9762\u79EF",clearable:"",style:{width:"100%"}},null,8,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024)]),_:2},1024)]),_:2},1024),e(f,null,{default:t(()=>[e(u,{span:10},{default:t(()=>[e(d,{label:"\u571F\u5730\u89C4\u5212",prop:"field167"},{default:t(()=>[e(p,{modelValue:l.datas.planning,"onUpdate:modelValue":a=>l.datas.planning=a,size:"medium"},{default:t(()=>[(i(!0),V(h,null,C(B.plantList,(a,w)=>(i(),s(r,{key:w,label:a.value},{default:t(()=>[c(v(a.label),1)]),_:2},1032,["label"]))),128))]),_:2},1032,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024),e(u,{span:4},{default:t(()=>[e(d,null,{default:t(()=>[e(p,{modelValue:l.datas.breeding_training,"onUpdate:modelValue":a=>l.datas.breeding_training=a,size:"medium"},{default:t(()=>[e(r,{label:"1"},{default:t(()=>[c("\u79CD\u690D\u57F9\u8BAD")]),_:1})]),_:2},1032,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024),e(u,{span:4},{default:t(()=>[e(d,null,{default:t(()=>[e(p,{modelValue:l.datas.planting_company,"onUpdate:modelValue":a=>l.datas.planting_company=a,size:"medium"},{default:t(()=>[e(r,{label:"1"},{default:t(()=>[c("\u6CE8\u518C\u6210\u7ACB\u516C\u53F8\u7ECF\u5386")]),_:1})]),_:2},1032,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024),e(u,{span:6},{default:t(()=>[e(d,{label:"\u5907\u6CE8",prop:"field138"},{default:t(()=>[e(n,{modelValue:l.datas.notes,"onUpdate:modelValue":a=>l.datas.notes=a,placeholder:"\u8BF7\u8F93\u5165\u5907\u6CE8",clearable:"",style:{width:"100%"}},null,8,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024)]),_:2},1024),e(u,null,{default:t(()=>[e(f,null,{default:t(()=>[e(u,{span:6},{default:t(()=>[e(d,{label:"\u9500\u552E\u65B9\u5F0F",prop:"field180"},{default:t(()=>[e(p,{modelValue:l.datas.method_sales,"onUpdate:modelValue":a=>l.datas.method_sales=a,size:"medium"},{default:t(()=>[(i(!0),V(h,null,C(B.sellType,(a,w)=>(i(),s(r,{key:w,label:a.value},{default:t(()=>[c(v(a.label),1)]),_:2},1032,["label"]))),128))]),_:2},1032,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024),e(u,{span:4},{default:t(()=>[e(d,{"label-width":"100px",prop:"field179"},{default:t(()=>[e(p,{modelValue:l.datas.ecological_farming,"onUpdate:modelValue":a=>l.datas.ecological_farming=a,size:"medium"},{default:t(()=>[e(r,{label:"1"},{default:t(()=>[c("\u751F\u6001\u79CD\u690D")]),_:1})]),_:2},1032,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024),e(u,{span:4},{default:t(()=>[e(d,{"label-width":"100px",prop:"field182"},{default:t(()=>[e(p,{modelValue:l.datas.promote,"onUpdate:modelValue":a=>l.datas.promote=a,size:"medium"},{default:t(()=>[e(r,{label:"1"},{default:t(()=>[c("\u5BA3\u4F20\u63A8\u5E7F")]),_:1}),c(" > ")]),_:2},1032,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024),e(u,{span:4},{default:t(()=>[e(d,{"label-width":"100px",prop:"field181"},{default:t(()=>[e(p,{modelValue:l.datas.processing_storage,"onUpdate:modelValue":a=>l.datas.processing_storage=a,size:"medium"},{default:t(()=>[e(r,{label:"1"},{default:t(()=>[c("\u52A0\u5DE5\u4ED3\u50A8")]),_:1})]),_:2},1032,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024),e(u,{span:4},{default:t(()=>[e(d,{"label-width":"100px",prop:"field183"},{default:t(()=>[e(p,{modelValue:l.datas.transportation,"onUpdate:modelValue":a=>l.datas.transportation=a,size:"medium"},{default:t(()=>[e(r,{label:"1"},{default:t(()=>[c("\u8FD0\u8F93")]),_:1})]),_:2},1032,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024)]),_:2},1024),e(f,null,{default:t(()=>[e(u,{span:8},{default:t(()=>[e(d,{label:"\u79CD\u690D\u8BC9\u6C42",prop:"field189"},{default:t(()=>[e(n,{modelValue:l.datas.demand,"onUpdate:modelValue":a=>l.datas.demand=a,placeholder:"\u8BF7\u8F93\u5165\u79CD\u690D\u8BC9\u6C42",clearable:"",style:{width:"100%"}},null,8,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024),e(u,{span:8},{default:t(()=>[e(d,{label:"\u653F\u7B56\u8865\u52A9",prop:"field190"},{default:t(()=>[e(n,{modelValue:l.datas.policy_subsidies,"onUpdate:modelValue":a=>l.datas.policy_subsidies=a,placeholder:"\u8BF7\u8F93\u5165\u653F\u7B56\u8865\u52A9",clearable:"",style:{width:"100%"}},null,8,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024),e(u,{span:8},{default:t(()=>[e(d,{"label-width":"4vw",prop:"field188"},{default:t(()=>[e(p,{modelValue:l.datas.expand_business_needs,"onUpdate:modelValue":a=>l.datas.expand_business_needs=a,size:"medium"},{default:t(()=>[e(r,{label:"1"},{default:t(()=>[c("\u662F\u5426\u60F3\u8981\u6269\u5927\u7ECF\u8425 ")]),_:1})]),_:2},1032,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024)]),_:2},1024)]),_:2},1024),ne]))),256)),b("",!0),ie,e(u,null,{default:t(()=>[e(f,null,{default:t(()=>[e(u,{span:12},{default:t(()=>[e(d,{"label-width":"100px",prop:"field101"},{default:t(()=>[e(p,{modelValue:o.shop_front,"onUpdate:modelValue":_[52]||(_[52]=l=>o.shop_front=l),size:"medium"},{default:t(()=>[e(r,{label:1},{default:t(()=>[c("\u95E8\u9762")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(u,{span:12},{default:t(()=>[e(d,{label:"\u7ECF\u8425\u8BC9\u6C42",prop:"field102"},{default:t(()=>[e(n,{modelValue:o.appeal,"onUpdate:modelValue":_[53]||(_[53]=l=>o.appeal=l),placeholder:"\u8BF7\u8F93\u5165\u7ECF\u8425\u8BC9\u6C42",clearable:"",style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1})]),_:1}),e(f,null,{default:t(()=>[e(u,{span:6},{default:t(()=>[e(d,{label:"\u95E8\u5E02\u9762\u79EF",prop:"field103"},{default:t(()=>[e(n,{modelValue:o.area,"onUpdate:modelValue":_[54]||(_[54]=l=>o.area=l),placeholder:"\u8BF7\u8F93\u5165\u95E8\u5E02\u9762\u79EF",clearable:"",style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(u,{span:6},{default:t(()=>[e(d,{label:"\u5730\u70B9",prop:"field104"},{default:t(()=>[e(n,{modelValue:o.place,"onUpdate:modelValue":_[55]||(_[55]=l=>o.place=l),placeholder:"\u8BF7\u8F93\u5165\u5730\u70B9",clearable:"",style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(u,{span:6},{default:t(()=>[e(d,{label:"\u7ECF\u8425\u7C7B\u578B",prop:"field106"},{default:t(()=>[e($,{modelValue:o.type,"onUpdate:modelValue":_[56]||(_[56]=l=>o.type=l),placeholder:"\u8BF7\u9009\u62E9\u7ECF\u8425\u7C7B\u578B",clearable:"",style:{width:"100%"}},{default:t(()=>[(i(!0),V(h,null,C(B.field106Options,(l,m)=>(i(),s(U,{key:m,label:l.label,value:l.value},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(u,{span:6},{default:t(()=>[e(d,{label:"\u5E93\u5B58\u60C5\u51B5",prop:"field108"},{default:t(()=>[e(n,{modelValue:o.field108,"onUpdate:modelValue":_[57]||(_[57]=l=>o.field108=l),placeholder:"\u8BF7\u8F93\u5165\u5E93\u5B58\u60C5\u51B5",clearable:"",style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1})]),_:1}),e(f,null,{default:t(()=>[e(u,{span:12},{default:t(()=>[e(d,{label:"\u670D\u52A1\u5BF9\u8C61",prop:"field135"},{default:t(()=>[e(L,{modelValue:o.service,"onUpdate:modelValue":_[58]||(_[58]=l=>o.service=l),size:"medium"},{default:t(()=>[(i(!0),V(h,null,C(B.field109Options,(l,m)=>(i(),s(T,{key:m,label:l.value},{default:t(()=>[c(v(l.label),1)]),_:2},1032,["label"]))),128))]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(u,{span:12},{default:t(()=>[e(d,{"label-width":"100px",prop:"field115"},{default:t(()=>[e(p,{modelValue:o.brand,"onUpdate:modelValue":_[59]||(_[59]=l=>o.brand=l),size:"medium"},{default:t(()=>[e(r,{label:1},{default:t(()=>[c("\u8425\u4E1A\u6267\u7167")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1})]),_:1}),e(f,null,{default:t(()=>[e(u,{span:6},{default:t(()=>[e(d,{"label-width":"100px",prop:"field113"},{default:t(()=>[e(p,{modelValue:o.stock,"onUpdate:modelValue":_[60]||(_[60]=l=>o.stock=l),size:"medium"},{default:t(()=>[e(r,{label:1},{default:t(()=>[c("\u8FDB\u8D27\u6E20\u9053")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),o.stock?(i(),s(u,{key:0,span:6},{default:t(()=>[e(d,{label:"\u8FDB\u8D27\u6E20\u9053",prop:"field114"},{default:t(()=>[e(n,{modelValue:o.field114,"onUpdate:modelValue":_[61]||(_[61]=l=>o.field114=l),placeholder:"\u8BF7\u8F93\u5165\u8FDB\u8D27\u6E20\u9053",clearable:"",style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1})):b("",!0),e(u,{span:6},{default:t(()=>[e(d,{"label-width":"100px",prop:"field115"},{default:t(()=>[e(p,{modelValue:o.online_display,"onUpdate:modelValue":_[62]||(_[62]=l=>o.online_display=l),size:"medium"},{default:t(()=>[e(r,{label:1},{default:t(()=>[c("\u7EBF\u4E0A\u5C55\u793A")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),o.online_display?(i(),s(u,{key:1,span:6},{default:t(()=>[e(d,{label:"\u7EBF\u4E0A\u5E73\u53F0",prop:"field116"},{default:t(()=>[e(n,{modelValue:o.field116,"onUpdate:modelValue":_[63]||(_[63]=l=>o.field116=l),placeholder:"\u8BF7\u8F93\u5165\u7EBF\u4E0A\u5E73\u53F0",clearable:"",style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1})):b("",!0)]),_:1})]),_:1}),b("",!0)]),_:1},8,["model"])])}}});const Ye=le(ce,[["__scopeId","data-v-2e603946"]]);export{Ye as default}; diff --git a/public/admin/assets/detil.f1685fed.js b/public/admin/assets/detil.f1685fed.js new file mode 100644 index 000000000..75f033d2e --- /dev/null +++ b/public/admin/assets/detil.f1685fed.js @@ -0,0 +1 @@ +import{B as R,C as O,a1 as W,G as q,H as I,a2 as G,a5 as P,M as J,N as M,w as j,F as H,a0 as K,D as Q}from"./element-plus.4328d892.js";import{u as X}from"./vue-router.9f65afb1.js";import{f as Y}from"./informationg.0fb089cd.js";import{d as k,$ as F,r as g,o as i,c as V,U as e,L as t,R as c,T as h,a7 as C,Q as b,K as s,S as v,a as x,bf as Z,be as ee}from"./@vue.51d7f2d8.js";import{d as le}from"./index.37f7aea6.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const N=E=>(Z("data-v-2e603946"),E=E(),ee(),E),te={class:"content"},ae=N(()=>x("div",{style:{"font-size":"1.2rem",translate:"1vw 0","background-color":"white"}}," \u4E2A\u4EBA\u4FE1\u606F ",-1)),oe=N(()=>x("p",{class:"tit"},"\u5E38\u4F4F\u4EBA\u53E3",-1)),ue=N(()=>x("p",{class:"tit"},"\u5BB6\u5EAD\u60C5\u51B5",-1)),de=N(()=>x("p",{class:"tit"},"\u571F\u5730\u5177\u4F53\u4FE1\u606F",-1)),_e={style:{"font-weight":"bold","padding-left":"1vw"}},ne=N(()=>x("div",{style:{"box-sizing":"border-box",padding:"0 2vw"}},[x("p",{style:{border:"1px solid #bfbfbf","margin-bottom":"6px","text-align":"center"}})],-1));const ie=N(()=>x("p",{class:"tit"},"\u5F00\u8BBE\u5E97\u94FA",-1));const me=k({name:"test"}),ce=k({...me,setup(E){const A=X(),o=F({name:void 0,phone:"",age:"",area_name:"",street_name:"",village_name:"",brigade_name:"",addressa:"",address:"",family:[{name:"",birth_time:"",situation:"",work:"",phone:"",skills:""}],child:void 0,child_arr:[{name:"",birth:"",age:0,class:"",lessons:"",notes:"",feeding:""}],highway:void 0,smart_phone:void 0,wechat:"",datas:[{datas:{cultivated_area:"20",planning:66,breeding_training:1,planting_company:0,notes:"\u8BD5\u8BD5\u5907\u6CE8",breeding_type:22,area:20,breeding_time:"2022-07-22",mature_time:"2022-07-22",yield:600,estimated_income:1500,farm_tools:"\u6536\u5272\u673A\u4E00\u53F0,\u6253\u7C73\u673A\u4E00\u53F0",ecological_farming:1,modernization:30,pre_price:"30.00",method_sales:1,processing_storage:0,promote:0,transportation:0,expand_business_needs:0,demand:"\u6CA1\u6709\u8FF0\u6C42",policy_subsidies:"\u65E0\u8865\u52A9"}}],cultivated_area:"",planning:"",planting_company:"",notes:"",farmland:[{breeding_type:"",area:"",breeding_time:"",mature_time:"",yield:"",ecological_farming:"",farm_tools:"",pre_price:"",method_sales:[],processing_storage:"",promote:"",expand_business_needs:0,demand:"\u6CA1\u6709\u8FF0\u6C42",policy_subsidies:"\u65E0\u8865\u52A9"}],expand_business_needs:"",demand:"",housingDecoration:[{field101:1,field102:[],field103:void 0,field104:void 0,field105:void 0,field106:void 0,field108:[],field109:[],field110:[],field113:null,field114:void 0,field115:void 0,field116:void 0}],sellhouse:1,fanxin:1,historyDecoration:[{field101:void 0,field102:[],field103:void 0,field104:void 0,field105:void 0,field106:void 0,field108:[],field109:[],field110:[],field113:null,field114:void 0,field115:void 0,field116:void 0}],isWorkshop:0,isBuildLand:0,isbrand:0,isRecruit:0,field101:1,field116:void 0,field102:1,field104:void 0,field107:void 0,field109:[],field110:1,field111:1,field112:void 0,field113:void 0,field114:1,field115:void 0,field117:void 0,field118:void 0,field121:void 0,field126:void 0,field127:[],field128:void 0,field129:1,field130:void 0,field131:1,field132:1,field133:1,field135:void 0,field136:void 0,shop_front:"",area:"",place:"",type:"",environment:"",service:"",qualification:"",stock:"",scale:"",online_display:"",brand:"",repertory:"",appeal:"",isStock:0,isOnline:0,field103:void 0,field106:void 0,field108:void 0,banquetList:[],field102a:void 0,field103a:void 0,field104a:void 0,field105a:void 0,field106a:void 0,field107a:"",field108a:"",field109a:"",isSmoke:0,isWelfare:0,isNeedWelfare:0,familySituation:"",familyAppeal:""}),z=F([{name:"\u505A\u5DE5\u5730\u7684",id:"1"},{name:"\u5382\u91CC\u6253\u5DE5",id:"2"},{name:"\u516C\u53F8\u804C\u5458",id:"3"},{name:"\u653F\u5E9C\u4E0A\u73ED",id:"4"},{name:"\u79CD\u5730",id:"5"},{name:"\u5728\u5BB6\u8D4B\u95F2",id:"6"},{name:"\u5176\u4ED6",id:"7"}]),re=g(!1),B=F({subjs:[{label:"\u8BED\u6587",value:1},{label:"\u6570\u5B66",value:2},{label:"\u82F1\u8BED",value:3},{label:"\u827A\u672F\u7C7B",value:4},{label:"\u5176\u4ED6",value:5}],feedsList:[{label:"\u6BCD\u4E73",value:"1"},{label:"\u5976\u7C89",value:"2"}],plantList:[{label:"\u81EA\u5DF1\u79CD\u517B",value:"0"},{label:"\u51FA\u79DF",value:"1"},{label:"\u4EE3\u79CD\u517B",value:"2"},{label:"\u79DF\u66F4\u591A\u5730\u6269\u5927\u79CD\u690D",value:"3"}],houseStyle:[{label:"\u4E2D\u5F0F",value:1},{label:"\u7F8E\u5F0F",value:2},{label:"\u6B27\u5F0F",value:3},{label:"\u7B80\u7EA6",value:4},{label:"\u5962\u534E",value:5},{label:"\u522B\u5885/\u56DB\u5408\u9662",value:6},{label:"\u5176\u4ED6",value:7}],weihu:[{label:"\u623F\u9876",value:1},{label:"\u5395\u6240",value:2},{label:"\u7BA1\u7EBF",value:3},{label:"\u7535\u5668",value:4}],field102Options:[{label:"\u522B\u5885",value:1},{label:"\u6D0B\u623F",value:2},{label:"\u9AD8\u5C42",value:3},{label:"\u697C\u68AF\u623F",value:4}],ecologyPlant:[{label:"\u975E\u751F\u6001\u79CD\u690D",value:1}],sellType:[{label:"\u81EA\u9500",value:"1"},{label:"\u5B9A\u70B9\u9500\u552E",value:"2"}],publicize:[{label:"\u6709\u65E0\u5BA3\u4F20\u63A8\u5E7F",value:1}],field106Options:[{label:"\u8D85\u5E02",value:1},{label:"\u751F\u9C9C",value:2},{label:"\u996D\u5E97",value:3},{label:"\u4E94\u91D1",value:4},{label:"\u6742\u8D27",value:5},{label:"\u670D\u88C5",value:6},{label:"\u6587\u5177",value:7},{label:"\u5176\u4ED6",value:8}],field109Options:[{label:"\u5B66\u751F",value:1},{label:"\u5BB6\u5EAD\u5BA2\u6237",value:2},{label:"\u9752\u5E74\u5BA2\u6237",value:3},{label:"\u8001\u5E74\u4EBA",value:4},{label:"\u6E38\u5BA2",value:5}],banquetList:[{label:"\u5A5A\u5BB4",value:1},{label:"\u5BFF\u5BB4",value:2},{label:"\u6EE1\u6708\u9152",value:3},{label:"\u5176\u5B83\u5E86\u529F\u5BB4",value:4},{label:"\u767D\u4E8B",value:5}],field106aOptions:[{label:"\u9152\u5E97",value:1},{label:"\u4E00\u6761\u9F99",value:2},{label:"\u53EA\u8BF7\u53A8\u5E08",value:3}],field104Options:[{label:"\u7535\u74F6\u8F66",value:1},{label:"\u6469\u6258\u8F66",value:2},{label:"\u5C0F\u6C7D\u8F66",value:3}],provinceOptions:[],cityOptions:[],areaOptions:[],streetOptions:[]}),pe=()=>{console.log(o.banquetList)};F([{label:"\u6709\u52A0\u5DE5\u4ED3\u50A8",value:1}]),F([{label:"\u6709\u8FD0\u8F93",value:1}]),F([{label:"\u662F\u5426\u60F3\u8981\u6269\u5927\u7ECF\u8425",value:1}]);const fe=g(!0),Ve=()=>{};return Y({id:A.query.id}).then(async D=>{for(const _ in o)D[_]!=null&&D[_]!=null&&(o[_]=D[_]);o.addressa=o.area_name+o.street_name+o.village_name+o.brigade_name+o.address,console.log(o)}),(D,_)=>{const n=R,d=O,u=W,r=q,p=I,f=G,y=P,U=J,$=M,se=j,T=H,L=K,S=Q;return i(),V("div",te,[e(S,{ref:"elForm",disabled:!0,model:o,size:"mini","label-width":"100px"},{default:t(()=>[ae,e(u,null,{default:t(()=>[e(f,null,{default:t(()=>[e(u,{span:6},{default:t(()=>[e(d,{label:"\u59D3\u540D",prop:"name"},{default:t(()=>[e(n,{modelValue:o.name,"onUpdate:modelValue":_[0]||(_[0]=l=>o.name=l),placeholder:"\u8BF7\u8F93\u5165\u59D3\u540D",clearable:"",style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(u,{span:6},{default:t(()=>[e(d,{label:"\u6027\u522B",prop:"name"},{default:t(()=>[e(p,{modelValue:o.sex,"onUpdate:modelValue":_[1]||(_[1]=l=>o.sex=l),size:"medium"},{default:t(()=>[e(r,{label:1},{default:t(()=>[c("\u7537")]),_:1}),e(r,{label:2},{default:t(()=>[c("\u5973")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(u,{span:6},{default:t(()=>[e(d,{label:"\u5E74\u9F84",prop:"age"},{default:t(()=>[e(n,{modelValue:o.age,"onUpdate:modelValue":_[2]||(_[2]=l=>o.age=l),placeholder:"\u8BF7\u8F93\u5165\u5E74\u9F84",clearable:"",style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(u,{span:6},{default:t(()=>[e(d,{label:"\u7535\u8BDD",prop:"phone"},{default:t(()=>[e(n,{modelValue:o.phone,"onUpdate:modelValue":_[3]||(_[3]=l=>o.phone=l),placeholder:"\u8BF7\u8F93\u5165\u7535\u8BDD",clearable:"",style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(u,{span:6},{default:t(()=>[e(d,{label:"\u8EAB\u4EFD\u8BC1\u53F7",prop:"id_card"},{default:t(()=>[e(n,{modelValue:o.id_card,"onUpdate:modelValue":_[4]||(_[4]=l=>o.id_card=l),placeholder:"\u8BF7\u8F93\u5165\u8EAB\u4EFD\u8BC1\u53F7",clearable:"",style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(u,{span:6},{default:t(()=>[e(d,{label:"\u5730\u5740",prop:"field104"},{default:t(()=>[e(n,{modelValue:o.address,"onUpdate:modelValue":_[5]||(_[5]=l=>o.address=l),clearable:"",style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1})]),_:1})]),_:1}),oe,e(u,null,{default:t(()=>[(i(!0),V(h,null,C(o.family,(l,m)=>(i(),V("div",{key:m},[e(f,null,{default:t(()=>[e(u,{span:6},{default:t(()=>[e(d,{label:"\u59D3\u540D",prop:"name"},{default:t(()=>[e(n,{modelValue:l.name,"onUpdate:modelValue":a=>l.name=a,placeholder:"\u8BF7\u8F93\u5165\u59D3\u540D",clearable:"",style:{width:"100%"}},null,8,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024),e(u,{span:6,class:"dates"},{default:t(()=>[e(d,{label:"\u51FA\u751F\u65E5\u671F",prop:"field110"},{default:t(()=>[e(y,{disabled:!0,modelValue:l.birth_time,"onUpdate:modelValue":a=>l.birth_time=a,style:{width:"150%"},placeholder:"\u8BF7\u8F93\u5165\u51FA\u751F\u65E5\u671F",clearable:""},null,8,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024),e(u,{span:6},{default:t(()=>[e(d,{label:"\u5C31\u4E1A\u60C5\u51B5",prop:"field111"},{default:t(()=>[e($,{disabled:!0,modelValue:l.situation,"onUpdate:modelValue":a=>l.situation=a,placeholder:"\u8BF7\u8F93\u5165\u5C31\u4E1A\u60C5\u51B5",clearable:"",style:{width:"100%"}},{default:t(()=>[(i(!0),V(h,null,C(z,(a,w)=>(i(),s(U,{key:w,label:a.name,value:a.id},null,8,["label","value"]))),128))]),_:2},1032,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024),e(u,{span:6},{default:t(()=>[e(d,{label:"\u6280\u80FD\u7279\u957F",prop:"field119"},{default:t(()=>[e(n,{modelValue:l.skills,"onUpdate:modelValue":a=>l.skills=a,placeholder:"\u8BF7\u8F93\u5165\u6280\u80FD\u7279\u957F",clearable:"",style:{width:"100%"}},null,8,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024)]),_:2},1024)]))),128)),e(d,null,{default:t(()=>[e(p,{modelValue:o.child,"onUpdate:modelValue":_[6]||(_[6]=l=>o.child=l),size:"medium"},{default:t(()=>[e(r,{label:1},{default:t(()=>[c("\u5A74\u5E7C\u513F")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),o.child?(i(!0),V(h,{key:0},C(o.child_arr,(l,m)=>(i(),V("div",null,[o.child_arr[m].age<3?(i(),s(u,{key:0},{default:t(()=>[e(f,null,{default:t(()=>[e(u,{span:6},{default:t(()=>[e(d,{label:"\u5E74\u9F84",prop:"field134"},{default:t(()=>[e(n,{modelValue:l.age,"onUpdate:modelValue":a=>l.age=a,clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024),o.child_arr[m].age<3?(i(),s(u,{key:0,span:6},{default:t(()=>[e(d,{"label-width":"4vw",label:"",prop:"field156"},{default:t(()=>[e(p,{modelValue:l.feeding,"onUpdate:modelValue":a=>l.feeding=a,size:"medium"},{default:t(()=>[(i(!0),V(h,null,C(B.feedsList,(a,w)=>(i(),s(r,{key:m,label:a.value},{default:t(()=>[c(v(a.label),1)]),_:2},1032,["label"]))),128))]),_:2},1032,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024)):b("",!0),e(u,{span:12},{default:t(()=>[e(d,{label:"\u5907\u6CE8",prop:"field157"},{default:t(()=>[e(n,{modelValue:l.notes,"onUpdate:modelValue":a=>l.notes=a,placeholder:"\u8BF7\u8F93\u5165\u5907\u6CE8",clearable:"",style:{width:"100%"}},null,8,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024)]),_:2},1024)]),_:2},1024)):(i(),s(u,{key:1},{default:t(()=>[e(f,null,{default:t(()=>[e(u,{span:6},{default:t(()=>[e(d,{label:"\u5E74\u9F84",prop:"field134"},{default:t(()=>[e(n,{modelValue:l.age,"onUpdate:modelValue":a=>l.age=a,clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024),o.child_arr[m].age>=3?(i(),s(u,{key:0,span:6},{default:t(()=>[e(d,{label:"\u5E74\u7EAA",prop:"field141"},{default:t(()=>[e(n,{modelValue:l.grade,"onUpdate:modelValue":a=>l.grade=a,placeholder:"\u8BF7\u8F93\u5165\u5E74\u7EAA",clearable:"",style:{width:"100%"}},null,8,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024)):b("",!0),e(u,{span:6},{default:t(()=>[e(d,{label:"\u8865\u8BFE\u60C5\u51B5",prop:"field135"},{default:t(()=>[e(n,{modelValue:l.lessons,"onUpdate:modelValue":a=>l.lessons=a,clearable:"",style:{width:"100%"}},null,8,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024),e(u,{span:6},{default:t(()=>[e(d,{label:"\u5907\u6CE8",prop:"field138"},{default:t(()=>[e(n,{modelValue:l.notes,"onUpdate:modelValue":a=>l.notes=a,placeholder:"\u8BF7\u8F93\u5165\u5907\u6CE8",clearable:"",style:{width:"100%"}},null,8,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024)]),_:2},1024)]),_:2},1024))]))),256)):b("",!0),ue,e(u,null,{default:t(()=>[e(f,null,{default:t(()=>[e(u,{span:8},{default:t(()=>[e(d,{prop:"field162","label-width":"200px"},{default:t(()=>[e(p,{modelValue:o.highway,"onUpdate:modelValue":_[7]||(_[7]=l=>o.highway=l),size:"medium"},{default:t(()=>[e(r,{label:"1"},{default:t(()=>[c("\u6C7D\u8F66\u662F\u5426\u80FD\u5230\u5BB6")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(u,{span:8},{default:t(()=>[e(d,{prop:"smart_phone","label-width":"200px"},{default:t(()=>[e(p,{modelValue:o.smart_phone,"onUpdate:modelValue":_[8]||(_[8]=l=>o.smart_phone=l),size:"medium"},{default:t(()=>[e(r,{label:"1"},{default:t(()=>[c("\u662F\u5426\u4F7F\u7528\u667A\u80FD\u624B\u673A")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),o.smart_phone?(i(),s(u,{key:0,span:8},{default:t(()=>[e(d,{label:"\u8BF7\u7559\u4E0B\u60A8\u7684\u5FAE\u4FE1\u53F7","label-width":"200px",prop:"field164"},{default:t(()=>[e(n,{modelValue:o.wechat,"onUpdate:modelValue":_[9]||(_[9]=l=>o.wechat=l),placeholder:"\u8BF7\u8BF7\u7559\u4E0B\u60A8\u7684\u5FAE\u4FE1\u53F7",clearable:"",style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1})):b("",!0)]),_:1})]),_:1}),de,(i(!0),V(h,null,C(o.datas,(l,m)=>(i(),V("div",null,[x("p",_e," \u571F\u5730\u4FE1\u606F"+v(m+1)+": ",1),e(u,null,{default:t(()=>[e(f,null,{default:t(()=>[e(u,{span:6},{default:t(()=>[e(d,{label:"\u79CD\u517B\u6B96\u7C7B\u522B",prop:"field171"},{default:t(()=>[e(n,{modelValue:l.datas.breeding_type,"onUpdate:modelValue":a=>l.datas.breeding_type=a,placeholder:"\u5982 \u571F\u8C46",clearable:"",style:{width:"100%"}},null,8,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024),e(u,{span:6},{default:t(()=>[e(d,{label:"\u79CD\u517B\u6B96\u9762\u79EF",prop:"field172"},{default:t(()=>[e(n,{modelValue:l.datas.area,"onUpdate:modelValue":a=>l.datas.area=a,placeholder:"\u8BF7\u8F93\u5165\u9762\u79EF",clearable:"",style:{width:"100%"}},null,8,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024),e(u,{span:6},{default:t(()=>[e(d,{label:"\u79CD\u690D\u5F00\u59CB\u65F6",prop:"field173",class:"dates"},{default:t(()=>[e(y,{modelValue:l.datas.breeding_time,"onUpdate:modelValue":a=>l.datas.breeding_time=a,style:{width:"100%"},placeholder:"\u8BF7\u9009\u62E9\u79CD\u690D\u5F00\u59CB\u65F6",clearable:""},null,8,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024),e(u,{span:6},{default:t(()=>[e(d,{label:"\u4E0A\u5E02\u65F6\u95F4",prop:"field174",class:"dates"},{default:t(()=>[e(y,{modelValue:l.datas.mature_time,"onUpdate:modelValue":a=>l.datas.mature_time=a,style:{width:"100%"},placeholder:"\u8BF7\u9009\u62E9\u4E0A\u5E02\u65F6\u95F4",clearable:""},null,8,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024)]),_:2},1024),e(f,null,{default:t(()=>[e(u,{span:4},{default:t(()=>[e(d,{label:"\u4EA7\u91CF",prop:"field175"},{default:t(()=>[e(n,{modelValue:l.datas.yield,"onUpdate:modelValue":a=>l.datas.yield=a,placeholder:"\u8BF7\u8F93\u5165\u4EA7\u91CF",clearable:"",style:{width:"100%"}},null,8,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024),e(u,{span:8},{default:t(()=>[e(d,{label:"\u519C\u8D44\u519C\u5177\u4F7F\u7528\u60C5\u51B5","label-width":"150px",prop:"field176"},{default:t(()=>[e(n,{modelValue:l.datas.farm_tools,"onUpdate:modelValue":a=>l.datas.farm_tools=a,placeholder:"\u8BF7\u8F93\u5165\u519C\u8D44\u519C\u5177\u4F7F\u7528\u60C5\u51B5",clearable:"",style:{width:"100%"}},null,8,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024),e(u,{span:6},{default:t(()=>[e(d,{label:"\u9884\u552E\u5356\u4EF7\u683C",prop:"field177"},{default:t(()=>[e(n,{modelValue:l.datas.pre_price,"onUpdate:modelValue":a=>l.datas.pre_price=a,placeholder:"\u8BF7\u8F93\u5165\u9884\u552E\u5356\u4EF7\u683C",clearable:"",style:{width:"100%"}},null,8,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024),e(u,{span:6},{default:t(()=>[e(d,{label:"\u8015\u5730\u603B\u9762\u79EF",prop:"field166"},{default:t(()=>[e(n,{modelValue:l.datas.cultivated_area,"onUpdate:modelValue":a=>l.datas.cultivated_area=a,placeholder:"\u8BF7\u8F93\u5165\u8015\u5730\u603B\u9762\u79EF",clearable:"",style:{width:"100%"}},null,8,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024)]),_:2},1024)]),_:2},1024),e(f,null,{default:t(()=>[e(u,{span:10},{default:t(()=>[e(d,{label:"\u571F\u5730\u89C4\u5212",prop:"field167"},{default:t(()=>[e(p,{modelValue:l.datas.planning,"onUpdate:modelValue":a=>l.datas.planning=a,size:"medium"},{default:t(()=>[(i(!0),V(h,null,C(B.plantList,(a,w)=>(i(),s(r,{key:w,label:a.value},{default:t(()=>[c(v(a.label),1)]),_:2},1032,["label"]))),128))]),_:2},1032,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024),e(u,{span:4},{default:t(()=>[e(d,null,{default:t(()=>[e(p,{modelValue:l.datas.breeding_training,"onUpdate:modelValue":a=>l.datas.breeding_training=a,size:"medium"},{default:t(()=>[e(r,{label:"1"},{default:t(()=>[c("\u79CD\u690D\u57F9\u8BAD")]),_:1})]),_:2},1032,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024),e(u,{span:4},{default:t(()=>[e(d,null,{default:t(()=>[e(p,{modelValue:l.datas.planting_company,"onUpdate:modelValue":a=>l.datas.planting_company=a,size:"medium"},{default:t(()=>[e(r,{label:"1"},{default:t(()=>[c("\u6CE8\u518C\u6210\u7ACB\u516C\u53F8\u7ECF\u5386")]),_:1})]),_:2},1032,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024),e(u,{span:6},{default:t(()=>[e(d,{label:"\u5907\u6CE8",prop:"field138"},{default:t(()=>[e(n,{modelValue:l.datas.notes,"onUpdate:modelValue":a=>l.datas.notes=a,placeholder:"\u8BF7\u8F93\u5165\u5907\u6CE8",clearable:"",style:{width:"100%"}},null,8,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024)]),_:2},1024),e(u,null,{default:t(()=>[e(f,null,{default:t(()=>[e(u,{span:6},{default:t(()=>[e(d,{label:"\u9500\u552E\u65B9\u5F0F",prop:"field180"},{default:t(()=>[e(p,{modelValue:l.datas.method_sales,"onUpdate:modelValue":a=>l.datas.method_sales=a,size:"medium"},{default:t(()=>[(i(!0),V(h,null,C(B.sellType,(a,w)=>(i(),s(r,{key:w,label:a.value},{default:t(()=>[c(v(a.label),1)]),_:2},1032,["label"]))),128))]),_:2},1032,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024),e(u,{span:4},{default:t(()=>[e(d,{"label-width":"100px",prop:"field179"},{default:t(()=>[e(p,{modelValue:l.datas.ecological_farming,"onUpdate:modelValue":a=>l.datas.ecological_farming=a,size:"medium"},{default:t(()=>[e(r,{label:"1"},{default:t(()=>[c("\u751F\u6001\u79CD\u690D")]),_:1})]),_:2},1032,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024),e(u,{span:4},{default:t(()=>[e(d,{"label-width":"100px",prop:"field182"},{default:t(()=>[e(p,{modelValue:l.datas.promote,"onUpdate:modelValue":a=>l.datas.promote=a,size:"medium"},{default:t(()=>[e(r,{label:"1"},{default:t(()=>[c("\u5BA3\u4F20\u63A8\u5E7F")]),_:1}),c(" > ")]),_:2},1032,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024),e(u,{span:4},{default:t(()=>[e(d,{"label-width":"100px",prop:"field181"},{default:t(()=>[e(p,{modelValue:l.datas.processing_storage,"onUpdate:modelValue":a=>l.datas.processing_storage=a,size:"medium"},{default:t(()=>[e(r,{label:"1"},{default:t(()=>[c("\u52A0\u5DE5\u4ED3\u50A8")]),_:1})]),_:2},1032,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024),e(u,{span:4},{default:t(()=>[e(d,{"label-width":"100px",prop:"field183"},{default:t(()=>[e(p,{modelValue:l.datas.transportation,"onUpdate:modelValue":a=>l.datas.transportation=a,size:"medium"},{default:t(()=>[e(r,{label:"1"},{default:t(()=>[c("\u8FD0\u8F93")]),_:1})]),_:2},1032,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024)]),_:2},1024),e(f,null,{default:t(()=>[e(u,{span:8},{default:t(()=>[e(d,{label:"\u79CD\u690D\u8BC9\u6C42",prop:"field189"},{default:t(()=>[e(n,{modelValue:l.datas.demand,"onUpdate:modelValue":a=>l.datas.demand=a,placeholder:"\u8BF7\u8F93\u5165\u79CD\u690D\u8BC9\u6C42",clearable:"",style:{width:"100%"}},null,8,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024),e(u,{span:8},{default:t(()=>[e(d,{label:"\u653F\u7B56\u8865\u52A9",prop:"field190"},{default:t(()=>[e(n,{modelValue:l.datas.policy_subsidies,"onUpdate:modelValue":a=>l.datas.policy_subsidies=a,placeholder:"\u8BF7\u8F93\u5165\u653F\u7B56\u8865\u52A9",clearable:"",style:{width:"100%"}},null,8,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024),e(u,{span:8},{default:t(()=>[e(d,{"label-width":"4vw",prop:"field188"},{default:t(()=>[e(p,{modelValue:l.datas.expand_business_needs,"onUpdate:modelValue":a=>l.datas.expand_business_needs=a,size:"medium"},{default:t(()=>[e(r,{label:"1"},{default:t(()=>[c("\u662F\u5426\u60F3\u8981\u6269\u5927\u7ECF\u8425 ")]),_:1})]),_:2},1032,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024)]),_:2},1024)]),_:2},1024),ne]))),256)),b("",!0),ie,e(u,null,{default:t(()=>[e(f,null,{default:t(()=>[e(u,{span:12},{default:t(()=>[e(d,{"label-width":"100px",prop:"field101"},{default:t(()=>[e(p,{modelValue:o.shop_front,"onUpdate:modelValue":_[52]||(_[52]=l=>o.shop_front=l),size:"medium"},{default:t(()=>[e(r,{label:1},{default:t(()=>[c("\u95E8\u9762")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(u,{span:12},{default:t(()=>[e(d,{label:"\u7ECF\u8425\u8BC9\u6C42",prop:"field102"},{default:t(()=>[e(n,{modelValue:o.appeal,"onUpdate:modelValue":_[53]||(_[53]=l=>o.appeal=l),placeholder:"\u8BF7\u8F93\u5165\u7ECF\u8425\u8BC9\u6C42",clearable:"",style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1})]),_:1}),e(f,null,{default:t(()=>[e(u,{span:6},{default:t(()=>[e(d,{label:"\u95E8\u5E02\u9762\u79EF",prop:"field103"},{default:t(()=>[e(n,{modelValue:o.area,"onUpdate:modelValue":_[54]||(_[54]=l=>o.area=l),placeholder:"\u8BF7\u8F93\u5165\u95E8\u5E02\u9762\u79EF",clearable:"",style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(u,{span:6},{default:t(()=>[e(d,{label:"\u5730\u70B9",prop:"field104"},{default:t(()=>[e(n,{modelValue:o.place,"onUpdate:modelValue":_[55]||(_[55]=l=>o.place=l),placeholder:"\u8BF7\u8F93\u5165\u5730\u70B9",clearable:"",style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(u,{span:6},{default:t(()=>[e(d,{label:"\u7ECF\u8425\u7C7B\u578B",prop:"field106"},{default:t(()=>[e($,{modelValue:o.type,"onUpdate:modelValue":_[56]||(_[56]=l=>o.type=l),placeholder:"\u8BF7\u9009\u62E9\u7ECF\u8425\u7C7B\u578B",clearable:"",style:{width:"100%"}},{default:t(()=>[(i(!0),V(h,null,C(B.field106Options,(l,m)=>(i(),s(U,{key:m,label:l.label,value:l.value},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(u,{span:6},{default:t(()=>[e(d,{label:"\u5E93\u5B58\u60C5\u51B5",prop:"field108"},{default:t(()=>[e(n,{modelValue:o.field108,"onUpdate:modelValue":_[57]||(_[57]=l=>o.field108=l),placeholder:"\u8BF7\u8F93\u5165\u5E93\u5B58\u60C5\u51B5",clearable:"",style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1})]),_:1}),e(f,null,{default:t(()=>[e(u,{span:12},{default:t(()=>[e(d,{label:"\u670D\u52A1\u5BF9\u8C61",prop:"field135"},{default:t(()=>[e(L,{modelValue:o.service,"onUpdate:modelValue":_[58]||(_[58]=l=>o.service=l),size:"medium"},{default:t(()=>[(i(!0),V(h,null,C(B.field109Options,(l,m)=>(i(),s(T,{key:m,label:l.value},{default:t(()=>[c(v(l.label),1)]),_:2},1032,["label"]))),128))]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(u,{span:12},{default:t(()=>[e(d,{"label-width":"100px",prop:"field115"},{default:t(()=>[e(p,{modelValue:o.brand,"onUpdate:modelValue":_[59]||(_[59]=l=>o.brand=l),size:"medium"},{default:t(()=>[e(r,{label:1},{default:t(()=>[c("\u8425\u4E1A\u6267\u7167")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1})]),_:1}),e(f,null,{default:t(()=>[e(u,{span:6},{default:t(()=>[e(d,{"label-width":"100px",prop:"field113"},{default:t(()=>[e(p,{modelValue:o.stock,"onUpdate:modelValue":_[60]||(_[60]=l=>o.stock=l),size:"medium"},{default:t(()=>[e(r,{label:1},{default:t(()=>[c("\u8FDB\u8D27\u6E20\u9053")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),o.stock?(i(),s(u,{key:0,span:6},{default:t(()=>[e(d,{label:"\u8FDB\u8D27\u6E20\u9053",prop:"field114"},{default:t(()=>[e(n,{modelValue:o.field114,"onUpdate:modelValue":_[61]||(_[61]=l=>o.field114=l),placeholder:"\u8BF7\u8F93\u5165\u8FDB\u8D27\u6E20\u9053",clearable:"",style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1})):b("",!0),e(u,{span:6},{default:t(()=>[e(d,{"label-width":"100px",prop:"field115"},{default:t(()=>[e(p,{modelValue:o.online_display,"onUpdate:modelValue":_[62]||(_[62]=l=>o.online_display=l),size:"medium"},{default:t(()=>[e(r,{label:1},{default:t(()=>[c("\u7EBF\u4E0A\u5C55\u793A")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),o.online_display?(i(),s(u,{key:1,span:6},{default:t(()=>[e(d,{label:"\u7EBF\u4E0A\u5E73\u53F0",prop:"field116"},{default:t(()=>[e(n,{modelValue:o.field116,"onUpdate:modelValue":_[63]||(_[63]=l=>o.field116=l),placeholder:"\u8BF7\u8F93\u5165\u7EBF\u4E0A\u5E73\u53F0",clearable:"",style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1})):b("",!0)]),_:1})]),_:1}),b("",!0)]),_:1},8,["model"])])}}});const Ye=le(ce,[["__scopeId","data-v-2e603946"]]);export{Ye as default}; diff --git a/public/admin/assets/dialog.3882feb2.js b/public/admin/assets/dialog.3882feb2.js new file mode 100644 index 000000000..abd8571fd --- /dev/null +++ b/public/admin/assets/dialog.3882feb2.js @@ -0,0 +1 @@ +import{w as n,L as c}from"./element-plus.4328d892.js";import{d as _,$ as E,o as f,c as F,U as t,L as e,a as u,R as s,bf as B,be as D}from"./@vue.51d7f2d8.js";import{d as g}from"./index.ed71ac09.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const a=o=>(B("data-v-f503cd48"),o=o(),D(),o),h=a(()=>u("h1",null,"\u91CD\u8981\u63D0\u9192",-1)),v=a(()=>u("div",{class:"content"}," \u8BF7\u786E\u8BA4\u4FE1\u606F\u662F\u5426\u6709\u8BEF,\u53D1\u9001\u5408\u540C,\u8BF7\u786E\u8BA4\u4FE1\u606F\u662F\u5426\u6709\u8BEF,\u53D1\u9001\u7535\u5B50\u5408\u540C\u540E\u77ED\u65F6\u95F4\u5185\u5C06\u4E0D\u53EF\u518D\u6B21\u53D1\u9001. ",-1)),y={class:"btn_menu"},C=_({__name:"dialog",props:{showEdit:{default:!1}},setup(o){const i=o,m=()=>{content.emit("close")};return E({name:"",region:"",date1:"",date2:"",delivery:!1,type:[],resource:"",desc:""}),(w,p)=>{const r=n,d=c;return f(),F("div",null,[t(d,{modelValue:i.showEdit,"onUpdate:modelValue":p[0]||(p[0]=l=>i.showEdit=l),onClose:m},{default:e(()=>[h,v,u("p",y,[t(r,{type:"primary",size:"large"},{default:e(()=>[s("\u786E\u8BA4\u521B\u5EFA")]),_:1}),t(r,{type:"info",size:"large"},{default:e(()=>[s("\u8FD4\u56DE")]),_:1})])]),_:1},8,["modelValue"])])}}});const ro=g(C,[["__scopeId","data-v-f503cd48"]]);export{ro as default}; diff --git a/public/admin/assets/dialog.8098c939.js b/public/admin/assets/dialog.8098c939.js new file mode 100644 index 000000000..12e26d32c --- /dev/null +++ b/public/admin/assets/dialog.8098c939.js @@ -0,0 +1 @@ +import{w as n,L as c}from"./element-plus.4328d892.js";import{d as _,$ as E,o as f,c as F,U as t,L as e,a as u,R as s,bf as B,be as D}from"./@vue.51d7f2d8.js";import{d as g}from"./index.37f7aea6.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const a=o=>(B("data-v-f503cd48"),o=o(),D(),o),h=a(()=>u("h1",null,"\u91CD\u8981\u63D0\u9192",-1)),v=a(()=>u("div",{class:"content"}," \u8BF7\u786E\u8BA4\u4FE1\u606F\u662F\u5426\u6709\u8BEF,\u53D1\u9001\u5408\u540C,\u8BF7\u786E\u8BA4\u4FE1\u606F\u662F\u5426\u6709\u8BEF,\u53D1\u9001\u7535\u5B50\u5408\u540C\u540E\u77ED\u65F6\u95F4\u5185\u5C06\u4E0D\u53EF\u518D\u6B21\u53D1\u9001. ",-1)),y={class:"btn_menu"},C=_({__name:"dialog",props:{showEdit:{default:!1}},setup(o){const i=o,m=()=>{content.emit("close")};return E({name:"",region:"",date1:"",date2:"",delivery:!1,type:[],resource:"",desc:""}),(w,p)=>{const r=n,d=c;return f(),F("div",null,[t(d,{modelValue:i.showEdit,"onUpdate:modelValue":p[0]||(p[0]=l=>i.showEdit=l),onClose:m},{default:e(()=>[h,v,u("p",y,[t(r,{type:"primary",size:"large"},{default:e(()=>[s("\u786E\u8BA4\u521B\u5EFA")]),_:1}),t(r,{type:"info",size:"large"},{default:e(()=>[s("\u8FD4\u56DE")]),_:1})])]),_:1},8,["modelValue"])])}}});const ro=g(C,[["__scopeId","data-v-f503cd48"]]);export{ro as default}; diff --git a/public/admin/assets/dialog.b756c97b.js b/public/admin/assets/dialog.b756c97b.js new file mode 100644 index 000000000..4f5d42347 --- /dev/null +++ b/public/admin/assets/dialog.b756c97b.js @@ -0,0 +1 @@ +import{w as n,L as c}from"./element-plus.4328d892.js";import{d as _,$ as E,o as f,c as F,U as t,L as e,a as u,R as s,bf as B,be as D}from"./@vue.51d7f2d8.js";import{d as g}from"./index.aa9bb752.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const a=o=>(B("data-v-f503cd48"),o=o(),D(),o),h=a(()=>u("h1",null,"\u91CD\u8981\u63D0\u9192",-1)),v=a(()=>u("div",{class:"content"}," \u8BF7\u786E\u8BA4\u4FE1\u606F\u662F\u5426\u6709\u8BEF,\u53D1\u9001\u5408\u540C,\u8BF7\u786E\u8BA4\u4FE1\u606F\u662F\u5426\u6709\u8BEF,\u53D1\u9001\u7535\u5B50\u5408\u540C\u540E\u77ED\u65F6\u95F4\u5185\u5C06\u4E0D\u53EF\u518D\u6B21\u53D1\u9001. ",-1)),y={class:"btn_menu"},C=_({__name:"dialog",props:{showEdit:{default:!1}},setup(o){const i=o,m=()=>{content.emit("close")};return E({name:"",region:"",date1:"",date2:"",delivery:!1,type:[],resource:"",desc:""}),(w,p)=>{const r=n,d=c;return f(),F("div",null,[t(d,{modelValue:i.showEdit,"onUpdate:modelValue":p[0]||(p[0]=l=>i.showEdit=l),onClose:m},{default:e(()=>[h,v,u("p",y,[t(r,{type:"primary",size:"large"},{default:e(()=>[s("\u786E\u8BA4\u521B\u5EFA")]),_:1}),t(r,{type:"info",size:"large"},{default:e(()=>[s("\u8FD4\u56DE")]),_:1})])]),_:1},8,["modelValue"])])}}});const ro=g(C,[["__scopeId","data-v-f503cd48"]]);export{ro as default}; diff --git a/public/admin/assets/dialog_index.0ab9787d.js b/public/admin/assets/dialog_index.0ab9787d.js new file mode 100644 index 000000000..8931d6d6d --- /dev/null +++ b/public/admin/assets/dialog_index.0ab9787d.js @@ -0,0 +1 @@ +import"./dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.6b149d5f.js";import{_ as O}from"./dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.6b149d5f.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./usePaging.2ad8e1e6.js";import"./index.aa9bb752.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./company.b7ec1bf9.js";export{O as default}; diff --git a/public/admin/assets/dialog_index.1075fd25.js b/public/admin/assets/dialog_index.1075fd25.js new file mode 100644 index 000000000..9b5ba1480 --- /dev/null +++ b/public/admin/assets/dialog_index.1075fd25.js @@ -0,0 +1 @@ +import"./dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.8548f463.js";import{_ as O}from"./dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.8548f463.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./usePaging.2ad8e1e6.js";import"./index.aa9bb752.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./company.b7ec1bf9.js";export{O as default}; diff --git a/public/admin/assets/dialog_index.13cf8d32.js b/public/admin/assets/dialog_index.13cf8d32.js new file mode 100644 index 000000000..f5df94cbd --- /dev/null +++ b/public/admin/assets/dialog_index.13cf8d32.js @@ -0,0 +1 @@ +import"./dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.8f34f1b3.js";import{_ as O}from"./dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.8f34f1b3.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./usePaging.2ad8e1e6.js";import"./index.aa9bb752.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./admin.1cd61358.js";export{O as default}; diff --git a/public/admin/assets/dialog_index.14404c9e.js b/public/admin/assets/dialog_index.14404c9e.js new file mode 100644 index 000000000..2b2202f3a --- /dev/null +++ b/public/admin/assets/dialog_index.14404c9e.js @@ -0,0 +1 @@ +import"./dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.dac5c88f.js";import{_ as O}from"./dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.dac5c88f.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./usePaging.2ad8e1e6.js";import"./index.ed71ac09.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./company.8a1c349a.js";export{O as default}; diff --git a/public/admin/assets/dialog_index.282035e2.js b/public/admin/assets/dialog_index.282035e2.js new file mode 100644 index 000000000..5bb2771d5 --- /dev/null +++ b/public/admin/assets/dialog_index.282035e2.js @@ -0,0 +1 @@ +import"./dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.8b016626.js";import{_ as O}from"./dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.8b016626.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./usePaging.2ad8e1e6.js";import"./index.aa9bb752.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./company.b7ec1bf9.js";export{O as default}; diff --git a/public/admin/assets/dialog_index.30321b60.js b/public/admin/assets/dialog_index.30321b60.js new file mode 100644 index 000000000..cf7edb47b --- /dev/null +++ b/public/admin/assets/dialog_index.30321b60.js @@ -0,0 +1 @@ +import"./dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.cbb85e35.js";import{_ as O}from"./dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.cbb85e35.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./usePaging.2ad8e1e6.js";import"./index.37f7aea6.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./company.d1e8fc82.js";export{O as default}; diff --git a/public/admin/assets/dialog_index.326998c3.js b/public/admin/assets/dialog_index.326998c3.js new file mode 100644 index 000000000..b89ecfa99 --- /dev/null +++ b/public/admin/assets/dialog_index.326998c3.js @@ -0,0 +1 @@ +import"./dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.c1d31e4b.js";import{_ as O}from"./dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.c1d31e4b.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./usePaging.2ad8e1e6.js";import"./index.ed71ac09.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./company.8a1c349a.js";export{O as default}; diff --git a/public/admin/assets/dialog_index.3e426302.js b/public/admin/assets/dialog_index.3e426302.js new file mode 100644 index 000000000..f79a16a23 --- /dev/null +++ b/public/admin/assets/dialog_index.3e426302.js @@ -0,0 +1 @@ +import"./dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.dac25500.js";import{_ as O}from"./dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.dac25500.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./usePaging.2ad8e1e6.js";import"./index.37f7aea6.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./company.d1e8fc82.js";export{O as default}; diff --git a/public/admin/assets/dialog_index.5b29a2d0.js b/public/admin/assets/dialog_index.5b29a2d0.js new file mode 100644 index 000000000..68115f868 --- /dev/null +++ b/public/admin/assets/dialog_index.5b29a2d0.js @@ -0,0 +1 @@ +import"./dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.8c21acad.js";import{_ as O}from"./dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.8c21acad.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./usePaging.2ad8e1e6.js";import"./index.aa9bb752.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./company.b7ec1bf9.js";export{O as default}; diff --git a/public/admin/assets/dialog_index.62410c19.js b/public/admin/assets/dialog_index.62410c19.js new file mode 100644 index 000000000..734d0ff2a --- /dev/null +++ b/public/admin/assets/dialog_index.62410c19.js @@ -0,0 +1 @@ +import"./dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.a896e319.js";import{_ as O}from"./dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.a896e319.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./usePaging.2ad8e1e6.js";import"./index.37f7aea6.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./admin.f0e2c7b9.js";export{O as default}; diff --git a/public/admin/assets/dialog_index.7f5017e4.js b/public/admin/assets/dialog_index.7f5017e4.js new file mode 100644 index 000000000..032de2c0d --- /dev/null +++ b/public/admin/assets/dialog_index.7f5017e4.js @@ -0,0 +1 @@ +import"./dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.67886d67.js";import{_ as O}from"./dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.67886d67.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./usePaging.2ad8e1e6.js";import"./index.ed71ac09.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./admin.f28da7a1.js";export{O as default}; diff --git a/public/admin/assets/dialog_index.cb5bb101.js b/public/admin/assets/dialog_index.cb5bb101.js new file mode 100644 index 000000000..59d335ee6 --- /dev/null +++ b/public/admin/assets/dialog_index.cb5bb101.js @@ -0,0 +1 @@ +import"./dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.bd8cad2b.js";import{_ as O}from"./dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.bd8cad2b.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./usePaging.2ad8e1e6.js";import"./index.ed71ac09.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./company.8a1c349a.js";export{O as default}; diff --git a/public/admin/assets/dialog_index.da980c77.js b/public/admin/assets/dialog_index.da980c77.js new file mode 100644 index 000000000..9a32f9fcd --- /dev/null +++ b/public/admin/assets/dialog_index.da980c77.js @@ -0,0 +1 @@ +import"./dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.26cf5c3d.js";import{_ as O}from"./dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.26cf5c3d.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./usePaging.2ad8e1e6.js";import"./index.37f7aea6.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./company.d1e8fc82.js";export{O as default}; diff --git a/public/admin/assets/dialog_index.e3a90926.js b/public/admin/assets/dialog_index.e3a90926.js new file mode 100644 index 000000000..6fed08a67 --- /dev/null +++ b/public/admin/assets/dialog_index.e3a90926.js @@ -0,0 +1 @@ +import"./dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.0b707b28.js";import{_ as O}from"./dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.0b707b28.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./usePaging.2ad8e1e6.js";import"./index.ed71ac09.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./company.8a1c349a.js";export{O as default}; diff --git a/public/admin/assets/dialog_index.ef276b62.js b/public/admin/assets/dialog_index.ef276b62.js new file mode 100644 index 000000000..f30f48221 --- /dev/null +++ b/public/admin/assets/dialog_index.ef276b62.js @@ -0,0 +1 @@ +import"./dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.383436e1.js";import{_ as O}from"./dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.383436e1.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./usePaging.2ad8e1e6.js";import"./index.37f7aea6.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./company.d1e8fc82.js";export{O as default}; diff --git a/public/admin/assets/dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.0b707b28.js b/public/admin/assets/dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.0b707b28.js new file mode 100644 index 000000000..10ad1d14f --- /dev/null +++ b/public/admin/assets/dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.0b707b28.js @@ -0,0 +1 @@ +import{B as A,C as I,M as S,N as q,w as M,D as O,I as R,O as $,P as j,Q as z}from"./element-plus.4328d892.js";import{_ as K}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{u as Q}from"./usePaging.2ad8e1e6.js";import"./index.ed71ac09.js";import{c as G}from"./company.8a1c349a.js";import{d as g,$ as H,o as p,c as b,U as e,L as t,u as a,T as J,a7 as W,K as F,R as B,M as X,a as d,S as Y,k as Z}from"./@vue.51d7f2d8.js";const ee={class:"mt-4"},ae={class:"flex mt-4 justify-end"},te=g({name:"companyLists"}),pe=g({...te,props:{type:{type:Number,default:0},companyTypeList:{type:Array,default:()=>[]}},emits:["customEvent"],setup(E,{emit:v}){const m=E,y=m.companyTypeList.filter(l=>l.id==30||l.id==16),n=H({level_two:"",level_one:"",company_name:"",organization_code:"",city:"",area:"",street:"",company_type:"",master_name:"",master_position:"",master_phone:"",master_email:"",other_contacts:"",area_manager:"",is_contract:"",account:"",password:"",deposit:"",deposit_time:"",qualification:"",status:""});m.type&&(n.company_type=m.type);const h=l=>{v("customEvent",l)},V=l=>{c()},{pager:r,getLists:c,resetParams:k,resetPage:w}=Q({fetchFun:G,params:n});return c(),(l,s)=>{const L=A,_=I,T=S,x=q,f=M,D=O,C=R,u=$,N=j,P=K,U=z;return p(),b("div",null,[e(C,{class:"!border-none",shadow:"never"},{default:t(()=>[e(D,{class:"mb-[-16px]",model:a(n),inline:""},{default:t(()=>[e(_,{label:"\u516C\u53F8\u540D\u79F0",prop:"company_name"},{default:t(()=>[e(L,{class:"w-[280px]",modelValue:a(n).company_name,"onUpdate:modelValue":s[0]||(s[0]=o=>a(n).company_name=o),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u516C\u53F8\u540D\u79F0"},null,8,["modelValue"])]),_:1}),e(_,{label:"\u516C\u53F8\u7C7B\u578B",prop:"company_type"},{default:t(()=>[e(x,{modelValue:a(n).company_type,"onUpdate:modelValue":s[1]||(s[1]=o=>a(n).company_type=o),placeholder:"\u516C\u53F8\u7C7B\u578B",clearable:"",onChange:V,style:{width:"100%"}},{default:t(()=>[(p(!0),b(J,null,W(a(y),(o,i)=>(p(),F(T,{key:i,label:o.name,value:o.id},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1}),e(_,null,{default:t(()=>[e(f,{type:"primary",onClick:a(w)},{default:t(()=>[B("\u67E5\u8BE2")]),_:1},8,["onClick"]),e(f,{onClick:a(k)},{default:t(()=>[B("\u91CD\u7F6E")]),_:1},8,["onClick"])]),_:1})]),_:1},8,["model"])]),_:1}),X((p(),F(C,{class:"!border-none",shadow:"never"},{default:t(()=>[d("div",ee,[e(N,{data:a(r).lists,onCellClick:h},{default:t(()=>[e(u,{label:"\u516C\u53F8\u540D\u79F0",property:"company_name"}),e(u,{label:"\u516C\u53F8\u7C7B\u578B",property:"company_type"},{default:t(({row:o})=>[d("span",null,Y(a(y).find(i=>i.id==o.company_type).name),1)]),_:1}),e(u,{label:"\u533A\u53BF",property:"area_name"}),e(u,{label:"\u4E61\u9547",property:"street_name"}),e(u,{label:"\u4E3B\u8054\u7CFB\u4EBA",property:"master_name"}),e(u,{label:"\u8054\u7CFB\u65B9\u5F0F",property:"master_phone"})]),_:1},8,["data"])]),d("div",ae,[e(P,{modelValue:a(r),"onUpdate:modelValue":s[2]||(s[2]=o=>Z(r)?r.value=o:null),onChange:a(c)},null,8,["modelValue","onChange"])])]),_:1})),[[U,a(r).loading]])])}}});export{pe as _}; diff --git a/public/admin/assets/dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.26cf5c3d.js b/public/admin/assets/dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.26cf5c3d.js new file mode 100644 index 000000000..101c301c0 --- /dev/null +++ b/public/admin/assets/dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.26cf5c3d.js @@ -0,0 +1 @@ +import{B as x,C as D,w as L,D as P,I as N,O as U,P as I,Q as T}from"./element-plus.4328d892.js";import{_ as q}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{u as A}from"./usePaging.2ad8e1e6.js";import"./index.37f7aea6.js";import{k as R}from"./company.d1e8fc82.js";import{d as F,$,o as y,c as j,U as e,L as o,u as a,R as f,M as z,K,a as C,k as M}from"./@vue.51d7f2d8.js";const O={class:"mt-4"},Q={class:"flex mt-4 justify-end"},G=F({name:"companyLists"}),Z=F({...G,props:{type:{type:Number,default:0}},emits:["customEvent"],setup(B,{emit:b}){const m=B,t=$({level_two:"",level_one:"",company_name:"",organization_code:"",city:"",area:"",street:"",company_type:"",master_name:"",master_position:"",master_phone:"",master_email:"",other_contacts:"",area_manager:"",is_contract:"",account:"",password:"",deposit:"",deposit_time:"",qualification:"",status:""});m.type&&(t.company_type=m.type);const E=c=>{b("customEvent",c)},{pager:s,getLists:p,resetParams:g,resetPage:v}=A({fetchFun:R,params:t});return p(),(c,n)=>{const _=x,r=D,i=L,V=P,d=N,l=U,h=I,k=q,w=T;return y(),j("div",null,[e(d,{class:"!border-none",shadow:"never"},{default:o(()=>[e(V,{class:"mb-[-16px]",model:a(t),inline:""},{default:o(()=>[e(r,{label:"\u516C\u53F8\u540D\u79F0",prop:"company_name"},{default:o(()=>[e(_,{class:"w-[280px]",modelValue:a(t).company_name,"onUpdate:modelValue":n[0]||(n[0]=u=>a(t).company_name=u),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u516C\u53F8\u540D\u79F0"},null,8,["modelValue"])]),_:1}),e(r,{label:"\u516C\u53F8\u7C7B\u578B",prop:"company_type"},{default:o(()=>[e(_,{class:"w-[280px]",modelValue:a(t).company_type,"onUpdate:modelValue":n[1]||(n[1]=u=>a(t).company_type=u),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u516C\u53F8\u7C7B\u578B"},null,8,["modelValue"])]),_:1}),e(r,null,{default:o(()=>[e(i,{type:"primary",onClick:a(v)},{default:o(()=>[f("\u67E5\u8BE2")]),_:1},8,["onClick"]),e(i,{onClick:a(g)},{default:o(()=>[f("\u91CD\u7F6E")]),_:1},8,["onClick"])]),_:1})]),_:1},8,["model"])]),_:1}),z((y(),K(d,{class:"!border-none",shadow:"never"},{default:o(()=>[C("div",O,[e(h,{data:a(s).lists,onCellClick:E},{default:o(()=>[e(l,{label:"\u516C\u53F8\u540D\u79F0",property:"company_name"}),e(l,{label:"\u516C\u53F8\u7C7B\u578B",property:"company_type"}),e(l,{label:"\u533A\u53BF",property:"area"}),e(l,{label:"\u4E61\u9547",property:"street"}),e(l,{label:"\u4E3B\u8054\u7CFB\u4EBA",property:"master_name"}),e(l,{label:"\u8054\u7CFB\u65B9\u5F0F",property:"master_phone"})]),_:1},8,["data"])]),C("div",Q,[e(k,{modelValue:a(s),"onUpdate:modelValue":n[2]||(n[2]=u=>M(s)?s.value=u:null),onChange:a(p)},null,8,["modelValue","onChange"])])]),_:1})),[[w,a(s).loading]])])}}});export{Z as _}; diff --git a/public/admin/assets/dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.383436e1.js b/public/admin/assets/dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.383436e1.js new file mode 100644 index 000000000..79f8111b6 --- /dev/null +++ b/public/admin/assets/dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.383436e1.js @@ -0,0 +1 @@ +import{B as U,C as I,M as S,N as q,w as M,D as O,I as R,O as $,P as j,Q as z}from"./element-plus.4328d892.js";import{_ as K}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{u as Q}from"./usePaging.2ad8e1e6.js";import"./index.37f7aea6.js";import{g as G,c as H}from"./company.d1e8fc82.js";import{d as B,r as J,$ as W,o as p,c as b,U as e,L as t,u as a,T as X,a7 as Y,K as F,R as g,M as Z,a as d,S as ee,k as ae}from"./@vue.51d7f2d8.js";const te={class:"mt-4"},oe={class:"flex mt-4 justify-end"},ne=B({name:"companyLists"}),ce=B({...ne,props:{type:{type:Number,default:0},companyTypeList:{type:Array,default:()=>[]}},emits:["customEvent"],setup(E,{emit:v}){const y=E,m=J([]);G({}).then(r=>{m.value=r});const n=W({level_two:"",level_one:"",company_name:"",organization_code:"",city:"",area:"",street:"",company_type:"",master_name:"",master_position:"",master_phone:"",master_email:"",other_contacts:"",area_manager:"",is_contract:"",account:"",password:"",deposit:"",deposit_time:"",qualification:"",status:""});y.type&&(n.company_type=y.type);const h=r=>{v("customEvent",r)},V=r=>{c()},{pager:u,getLists:c,resetParams:k,resetPage:w}=Q({fetchFun:H,params:n});return c(),(r,l)=>{const L=U,_=I,T=S,x=q,f=M,D=O,C=R,s=$,P=j,N=K,A=z;return p(),b("div",null,[e(C,{class:"!border-none",shadow:"never"},{default:t(()=>[e(D,{class:"mb-[-16px]",model:a(n),inline:""},{default:t(()=>[e(_,{label:"\u516C\u53F8\u540D\u79F0",prop:"company_name"},{default:t(()=>[e(L,{class:"w-[280px]",modelValue:a(n).company_name,"onUpdate:modelValue":l[0]||(l[0]=o=>a(n).company_name=o),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u516C\u53F8\u540D\u79F0"},null,8,["modelValue"])]),_:1}),e(_,{label:"\u516C\u53F8\u7C7B\u578B",prop:"company_type"},{default:t(()=>[e(x,{modelValue:a(n).company_type,"onUpdate:modelValue":l[1]||(l[1]=o=>a(n).company_type=o),placeholder:"\u516C\u53F8\u7C7B\u578B",clearable:"",onChange:V,style:{width:"100%"}},{default:t(()=>[(p(!0),b(X,null,Y(a(m),(o,i)=>(p(),F(T,{key:i,label:o.name,value:o.id},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1}),e(_,null,{default:t(()=>[e(f,{type:"primary",onClick:a(w)},{default:t(()=>[g("\u67E5\u8BE2")]),_:1},8,["onClick"]),e(f,{onClick:a(k)},{default:t(()=>[g("\u91CD\u7F6E")]),_:1},8,["onClick"])]),_:1})]),_:1},8,["model"])]),_:1}),Z((p(),F(C,{class:"!border-none",shadow:"never"},{default:t(()=>[d("div",te,[e(P,{data:a(u).lists,onCellClick:h},{default:t(()=>[e(s,{label:"\u516C\u53F8\u540D\u79F0",property:"company_name"}),e(s,{label:"\u516C\u53F8\u7C7B\u578B",property:"company_type"},{default:t(({row:o})=>[d("span",null,ee(a(m).find(i=>i.id==o.company_type).name),1)]),_:1}),e(s,{label:"\u533A\u53BF",property:"area_name"}),e(s,{label:"\u4E61\u9547",property:"street_name"}),e(s,{label:"\u4E3B\u8054\u7CFB\u4EBA",property:"master_name"}),e(s,{label:"\u8054\u7CFB\u65B9\u5F0F",property:"master_phone"})]),_:1},8,["data"])]),d("div",oe,[e(N,{modelValue:a(u),"onUpdate:modelValue":l[2]||(l[2]=o=>ae(u)?u.value=o:null),onChange:a(c)},null,8,["modelValue","onChange"])])]),_:1})),[[A,a(u).loading]])])}}});export{ce as _}; diff --git a/public/admin/assets/dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.67886d67.js b/public/admin/assets/dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.67886d67.js new file mode 100644 index 000000000..aad9f6d2e --- /dev/null +++ b/public/admin/assets/dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.67886d67.js @@ -0,0 +1 @@ +import{B as k,C as x,w as A,D as P,I,O as L,o as U,P as z,Q as N}from"./element-plus.4328d892.js";import{_ as T}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{u as q}from"./usePaging.2ad8e1e6.js";import"./index.ed71ac09.js";import{a as R}from"./admin.f28da7a1.js";import{d as C,$ as S,o as m,c,U as e,L as a,u as n,R as i,M as $,K as j,a as y,S as K,k as M}from"./@vue.51d7f2d8.js";const O={class:"mt-4"},Q={key:0,style:{color:"#67c23a"}},G={key:1,style:{color:"#fe0000"}},H={class:"flex mt-4 justify-end"},J=C({name:"companyLists"}),oe=C({...J,emits:["customEvent"],setup(W,{emit:E}){const l=S({level_two:"",level_one:"",company_name:"",organization_code:"",city:"",area:"",street:"",company_type:"",master_name:"",master_position:"",master_phone:"",master_email:"",other_contacts:"",area_manager:"",is_contract:"",account:"",password:"",deposit:"",deposit_time:"",qualification:"",status:""}),b=_=>{E("customEvent",_)},{pager:s,getLists:p,resetParams:h,resetPage:B}=q({fetchFun:R,params:l});return p(),(_,u)=>{const d=k,r=x,F=A,g=P,f=I,t=L,w=U,v=z,D=T,V=N;return m(),c("div",null,[e(f,{class:"!border-none",shadow:"never"},{default:a(()=>[e(g,{class:"mb-[-16px]",model:n(l),inline:""},{default:a(()=>[e(r,{label:"\u516C\u53F8\u540D\u79F0",prop:"company_name"},{default:a(()=>[e(d,{class:"w-[280px]",modelValue:n(l).company_name,"onUpdate:modelValue":u[0]||(u[0]=o=>n(l).company_name=o),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u516C\u53F8\u540D\u79F0"},null,8,["modelValue"])]),_:1}),e(r,{label:"\u516C\u53F8\u7C7B\u578B",prop:"company_type"},{default:a(()=>[e(d,{class:"w-[280px]",modelValue:n(l).company_type,"onUpdate:modelValue":u[1]||(u[1]=o=>n(l).company_type=o),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u516C\u53F8\u7C7B\u578B"},null,8,["modelValue"])]),_:1}),e(r,null,{default:a(()=>[e(F,{type:"primary",onClick:n(B)},{default:a(()=>[i("\u67E5\u8BE2")]),_:1},8,["onClick"]),e(F,{onClick:n(h)},{default:a(()=>[i("\u91CD\u7F6E")]),_:1},8,["onClick"])]),_:1})]),_:1},8,["model"])]),_:1}),$((m(),j(f,{class:"!border-none",shadow:"never"},{default:a(()=>[y("div",O,[e(v,{data:n(s).lists,size:"large",onCellClick:b},{default:a(()=>[e(t,{label:"ID",prop:"id","min-width":"60"}),i("> "),e(t,{label:"\u5934\u50CF","min-width":"100"},{default:a(({row:o})=>[e(w,{size:50,src:o.avatar},null,8,["src"])]),_:1}),e(t,{label:"\u59D3\u540D",prop:"name","min-width":"100"}),e(t,{label:"\u8054\u7CFB\u65B9\u5F0F",prop:"account","min-width":"130"}),e(t,{label:"\u96B6\u5C5E\u516C\u53F8",prop:"company.company_name","min-width":"120",align:"center"},{default:a(({row:o})=>[i(K(o.company.company_name||"/"),1)]),_:1}),e(t,{label:"\u6240\u5728\u4E61\u9547",prop:"street_name","min-width":"120"}),e(t,{label:"\u6388\u6743\u8EAB\u4EFD",prop:"role_name","min-width":"120"}),e(t,{label:"\u662F\u5426\u7B7E\u7EA6",prop:"is_contract",align:"center","min-width":"120"},{default:a(({row:o})=>[o.is_contract==1?(m(),c("span",Q,"\u5DF2\u7B7E\u7EA6")):(m(),c("span",G,"\u672A\u7B7E\u7EA6"))]),_:1}),e(t,{label:"\u6700\u8FD1\u767B\u5F55\u65F6\u95F4",prop:"login_time","min-width":"180"}),e(t,{label:"\u521B\u5EFA\u65F6\u95F4",prop:"create_time","min-width":"180",align:"center"}),e(t,{label:"\u6700\u8FD1\u767B\u5F55IP",prop:"login_ip","min-width":"120"})]),_:1},8,["data"])]),y("div",H,[e(D,{modelValue:n(s),"onUpdate:modelValue":u[2]||(u[2]=o=>M(s)?s.value=o:null),onChange:n(p)},null,8,["modelValue","onChange"])])]),_:1})),[[V,n(s).loading]])])}}});export{oe as _}; diff --git a/public/admin/assets/dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.6b149d5f.js b/public/admin/assets/dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.6b149d5f.js new file mode 100644 index 000000000..e3d5d4ee3 --- /dev/null +++ b/public/admin/assets/dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.6b149d5f.js @@ -0,0 +1 @@ +import{B as x,C as D,w as L,D as P,I as N,O as U,P as I,Q as T}from"./element-plus.4328d892.js";import{_ as q}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{u as A}from"./usePaging.2ad8e1e6.js";import"./index.aa9bb752.js";import{k as R}from"./company.b7ec1bf9.js";import{d as F,$,o as y,c as j,U as e,L as o,u as a,R as f,M as z,K,a as C,k as M}from"./@vue.51d7f2d8.js";const O={class:"mt-4"},Q={class:"flex mt-4 justify-end"},G=F({name:"companyLists"}),Z=F({...G,props:{type:{type:Number,default:0}},emits:["customEvent"],setup(B,{emit:b}){const m=B,t=$({level_two:"",level_one:"",company_name:"",organization_code:"",city:"",area:"",street:"",company_type:"",master_name:"",master_position:"",master_phone:"",master_email:"",other_contacts:"",area_manager:"",is_contract:"",account:"",password:"",deposit:"",deposit_time:"",qualification:"",status:""});m.type&&(t.company_type=m.type);const E=c=>{b("customEvent",c)},{pager:s,getLists:p,resetParams:g,resetPage:v}=A({fetchFun:R,params:t});return p(),(c,n)=>{const _=x,r=D,i=L,V=P,d=N,l=U,h=I,k=q,w=T;return y(),j("div",null,[e(d,{class:"!border-none",shadow:"never"},{default:o(()=>[e(V,{class:"mb-[-16px]",model:a(t),inline:""},{default:o(()=>[e(r,{label:"\u516C\u53F8\u540D\u79F0",prop:"company_name"},{default:o(()=>[e(_,{class:"w-[280px]",modelValue:a(t).company_name,"onUpdate:modelValue":n[0]||(n[0]=u=>a(t).company_name=u),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u516C\u53F8\u540D\u79F0"},null,8,["modelValue"])]),_:1}),e(r,{label:"\u516C\u53F8\u7C7B\u578B",prop:"company_type"},{default:o(()=>[e(_,{class:"w-[280px]",modelValue:a(t).company_type,"onUpdate:modelValue":n[1]||(n[1]=u=>a(t).company_type=u),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u516C\u53F8\u7C7B\u578B"},null,8,["modelValue"])]),_:1}),e(r,null,{default:o(()=>[e(i,{type:"primary",onClick:a(v)},{default:o(()=>[f("\u67E5\u8BE2")]),_:1},8,["onClick"]),e(i,{onClick:a(g)},{default:o(()=>[f("\u91CD\u7F6E")]),_:1},8,["onClick"])]),_:1})]),_:1},8,["model"])]),_:1}),z((y(),K(d,{class:"!border-none",shadow:"never"},{default:o(()=>[C("div",O,[e(h,{data:a(s).lists,onCellClick:E},{default:o(()=>[e(l,{label:"\u516C\u53F8\u540D\u79F0",property:"company_name"}),e(l,{label:"\u516C\u53F8\u7C7B\u578B",property:"company_type"}),e(l,{label:"\u533A\u53BF",property:"area"}),e(l,{label:"\u4E61\u9547",property:"street"}),e(l,{label:"\u4E3B\u8054\u7CFB\u4EBA",property:"master_name"}),e(l,{label:"\u8054\u7CFB\u65B9\u5F0F",property:"master_phone"})]),_:1},8,["data"])]),C("div",Q,[e(k,{modelValue:a(s),"onUpdate:modelValue":n[2]||(n[2]=u=>M(s)?s.value=u:null),onChange:a(p)},null,8,["modelValue","onChange"])])]),_:1})),[[w,a(s).loading]])])}}});export{Z as _}; diff --git a/public/admin/assets/dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.8548f463.js b/public/admin/assets/dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.8548f463.js new file mode 100644 index 000000000..b6761493f --- /dev/null +++ b/public/admin/assets/dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.8548f463.js @@ -0,0 +1 @@ +import{B as k,C as w,w as x,D as A,I as D,O as L,P,Q as U}from"./element-plus.4328d892.js";import{_ as I}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{u as N}from"./usePaging.2ad8e1e6.js";import"./index.aa9bb752.js";import{k as T}from"./company.b7ec1bf9.js";import{d as f,$ as q,o as d,c as R,U as e,L as o,u as a,R as y,M as $,K as j,a as C,k as z}from"./@vue.51d7f2d8.js";const K={class:"mt-4"},M={class:"flex mt-4 justify-end"},O=f({name:"companyLists"}),Y=f({...O,emits:["customEvent"],setup(Q,{emit:B}){const l=q({level_two:"",level_one:"",company_name:"",organization_code:"",city:"",area:"",street:"",company_type:"",master_name:"",master_position:"",master_phone:"",master_email:"",other_contacts:"",area_manager:"",is_contract:"",account:"",password:"",deposit:"",deposit_time:"",qualification:"",status:""}),F=p=>{B("customEvent",p)},{pager:u,getLists:m,resetParams:E,resetPage:b}=N({fetchFun:T,params:l});return m(),(p,n)=>{const _=k,r=w,c=x,g=A,i=D,t=L,v=P,V=I,h=U;return d(),R("div",null,[e(i,{class:"!border-none",shadow:"never"},{default:o(()=>[e(g,{class:"mb-[-16px]",model:a(l),inline:""},{default:o(()=>[e(r,{label:"\u516C\u53F8\u540D\u79F0",prop:"company_name"},{default:o(()=>[e(_,{class:"w-[280px]",modelValue:a(l).company_name,"onUpdate:modelValue":n[0]||(n[0]=s=>a(l).company_name=s),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u516C\u53F8\u540D\u79F0"},null,8,["modelValue"])]),_:1}),e(r,{label:"\u516C\u53F8\u7C7B\u578B",prop:"company_type"},{default:o(()=>[e(_,{class:"w-[280px]",modelValue:a(l).company_type,"onUpdate:modelValue":n[1]||(n[1]=s=>a(l).company_type=s),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u516C\u53F8\u7C7B\u578B"},null,8,["modelValue"])]),_:1}),e(r,null,{default:o(()=>[e(c,{type:"primary",onClick:a(b)},{default:o(()=>[y("\u67E5\u8BE2")]),_:1},8,["onClick"]),e(c,{onClick:a(E)},{default:o(()=>[y("\u91CD\u7F6E")]),_:1},8,["onClick"])]),_:1})]),_:1},8,["model"])]),_:1}),$((d(),j(i,{class:"!border-none",shadow:"never"},{default:o(()=>[C("div",K,[e(v,{data:a(u).lists,onCellClick:F},{default:o(()=>[e(t,{label:"\u7B7E\u7EA6\u516C\u53F8",property:"company_name"}),e(t,{label:"\u516C\u53F8\u7C7B\u578B",property:"company_type"}),e(t,{label:"\u533A\u53BF",property:"area"}),e(t,{label:"\u4E61\u9547",property:"street"}),e(t,{label:"\u4E3B\u8054\u7CFB\u4EBA",property:"master_name"}),e(t,{label:"\u8054\u7CFB\u65B9\u5F0F",property:"master_phone"}),e(t,{label:"\u7247\u533A\u7ECF\u7406",property:"area_manager"}),e(t,{label:"\u662F\u5426\u7B7E\u7EA6",property:"is_contract"})]),_:1},8,["data"])]),C("div",M,[e(V,{modelValue:a(u),"onUpdate:modelValue":n[2]||(n[2]=s=>z(u)?u.value=s:null),onChange:a(m)},null,8,["modelValue","onChange"])])]),_:1})),[[h,a(u).loading]])])}}});export{Y as _}; diff --git a/public/admin/assets/dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.8b016626.js b/public/admin/assets/dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.8b016626.js new file mode 100644 index 000000000..e727ff0b7 --- /dev/null +++ b/public/admin/assets/dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.8b016626.js @@ -0,0 +1 @@ +import{B as U,C as I,M as S,N as q,w as M,D as O,I as R,O as $,P as j,Q as z}from"./element-plus.4328d892.js";import{_ as K}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{u as Q}from"./usePaging.2ad8e1e6.js";import"./index.aa9bb752.js";import{g as G,c as H}from"./company.b7ec1bf9.js";import{d as B,r as J,$ as W,o as p,c as b,U as e,L as t,u as a,T as X,a7 as Y,K as F,R as g,M as Z,a as d,S as ee,k as ae}from"./@vue.51d7f2d8.js";const te={class:"mt-4"},oe={class:"flex mt-4 justify-end"},ne=B({name:"companyLists"}),ce=B({...ne,props:{type:{type:Number,default:0},companyTypeList:{type:Array,default:()=>[]}},emits:["customEvent"],setup(E,{emit:v}){const y=E,m=J([]);G({}).then(r=>{m.value=r});const n=W({level_two:"",level_one:"",company_name:"",organization_code:"",city:"",area:"",street:"",company_type:"",master_name:"",master_position:"",master_phone:"",master_email:"",other_contacts:"",area_manager:"",is_contract:"",account:"",password:"",deposit:"",deposit_time:"",qualification:"",status:""});y.type&&(n.company_type=y.type);const h=r=>{v("customEvent",r)},V=r=>{c()},{pager:u,getLists:c,resetParams:k,resetPage:w}=Q({fetchFun:H,params:n});return c(),(r,l)=>{const L=U,_=I,T=S,x=q,f=M,D=O,C=R,s=$,P=j,N=K,A=z;return p(),b("div",null,[e(C,{class:"!border-none",shadow:"never"},{default:t(()=>[e(D,{class:"mb-[-16px]",model:a(n),inline:""},{default:t(()=>[e(_,{label:"\u516C\u53F8\u540D\u79F0",prop:"company_name"},{default:t(()=>[e(L,{class:"w-[280px]",modelValue:a(n).company_name,"onUpdate:modelValue":l[0]||(l[0]=o=>a(n).company_name=o),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u516C\u53F8\u540D\u79F0"},null,8,["modelValue"])]),_:1}),e(_,{label:"\u516C\u53F8\u7C7B\u578B",prop:"company_type"},{default:t(()=>[e(x,{modelValue:a(n).company_type,"onUpdate:modelValue":l[1]||(l[1]=o=>a(n).company_type=o),placeholder:"\u516C\u53F8\u7C7B\u578B",clearable:"",onChange:V,style:{width:"100%"}},{default:t(()=>[(p(!0),b(X,null,Y(a(m),(o,i)=>(p(),F(T,{key:i,label:o.name,value:o.id},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1}),e(_,null,{default:t(()=>[e(f,{type:"primary",onClick:a(w)},{default:t(()=>[g("\u67E5\u8BE2")]),_:1},8,["onClick"]),e(f,{onClick:a(k)},{default:t(()=>[g("\u91CD\u7F6E")]),_:1},8,["onClick"])]),_:1})]),_:1},8,["model"])]),_:1}),Z((p(),F(C,{class:"!border-none",shadow:"never"},{default:t(()=>[d("div",te,[e(P,{data:a(u).lists,onCellClick:h},{default:t(()=>[e(s,{label:"\u516C\u53F8\u540D\u79F0",property:"company_name"}),e(s,{label:"\u516C\u53F8\u7C7B\u578B",property:"company_type"},{default:t(({row:o})=>[d("span",null,ee(a(m).find(i=>i.id==o.company_type).name),1)]),_:1}),e(s,{label:"\u533A\u53BF",property:"area_name"}),e(s,{label:"\u4E61\u9547",property:"street_name"}),e(s,{label:"\u4E3B\u8054\u7CFB\u4EBA",property:"master_name"}),e(s,{label:"\u8054\u7CFB\u65B9\u5F0F",property:"master_phone"})]),_:1},8,["data"])]),d("div",oe,[e(N,{modelValue:a(u),"onUpdate:modelValue":l[2]||(l[2]=o=>ae(u)?u.value=o:null),onChange:a(c)},null,8,["modelValue","onChange"])])]),_:1})),[[A,a(u).loading]])])}}});export{ce as _}; diff --git a/public/admin/assets/dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.8c21acad.js b/public/admin/assets/dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.8c21acad.js new file mode 100644 index 000000000..1b70afeeb --- /dev/null +++ b/public/admin/assets/dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.8c21acad.js @@ -0,0 +1 @@ +import{B as A,C as I,M as S,N as q,w as M,D as O,I as R,O as $,P as j,Q as z}from"./element-plus.4328d892.js";import{_ as K}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{u as Q}from"./usePaging.2ad8e1e6.js";import"./index.aa9bb752.js";import{c as G}from"./company.b7ec1bf9.js";import{d as g,$ as H,o as p,c as b,U as e,L as t,u as a,T as J,a7 as W,K as F,R as B,M as X,a as d,S as Y,k as Z}from"./@vue.51d7f2d8.js";const ee={class:"mt-4"},ae={class:"flex mt-4 justify-end"},te=g({name:"companyLists"}),pe=g({...te,props:{type:{type:Number,default:0},companyTypeList:{type:Array,default:()=>[]}},emits:["customEvent"],setup(E,{emit:v}){const m=E,y=m.companyTypeList.filter(l=>l.id==30||l.id==16),n=H({level_two:"",level_one:"",company_name:"",organization_code:"",city:"",area:"",street:"",company_type:"",master_name:"",master_position:"",master_phone:"",master_email:"",other_contacts:"",area_manager:"",is_contract:"",account:"",password:"",deposit:"",deposit_time:"",qualification:"",status:""});m.type&&(n.company_type=m.type);const h=l=>{v("customEvent",l)},V=l=>{c()},{pager:r,getLists:c,resetParams:k,resetPage:w}=Q({fetchFun:G,params:n});return c(),(l,s)=>{const L=A,_=I,T=S,x=q,f=M,D=O,C=R,u=$,N=j,P=K,U=z;return p(),b("div",null,[e(C,{class:"!border-none",shadow:"never"},{default:t(()=>[e(D,{class:"mb-[-16px]",model:a(n),inline:""},{default:t(()=>[e(_,{label:"\u516C\u53F8\u540D\u79F0",prop:"company_name"},{default:t(()=>[e(L,{class:"w-[280px]",modelValue:a(n).company_name,"onUpdate:modelValue":s[0]||(s[0]=o=>a(n).company_name=o),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u516C\u53F8\u540D\u79F0"},null,8,["modelValue"])]),_:1}),e(_,{label:"\u516C\u53F8\u7C7B\u578B",prop:"company_type"},{default:t(()=>[e(x,{modelValue:a(n).company_type,"onUpdate:modelValue":s[1]||(s[1]=o=>a(n).company_type=o),placeholder:"\u516C\u53F8\u7C7B\u578B",clearable:"",onChange:V,style:{width:"100%"}},{default:t(()=>[(p(!0),b(J,null,W(a(y),(o,i)=>(p(),F(T,{key:i,label:o.name,value:o.id},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1}),e(_,null,{default:t(()=>[e(f,{type:"primary",onClick:a(w)},{default:t(()=>[B("\u67E5\u8BE2")]),_:1},8,["onClick"]),e(f,{onClick:a(k)},{default:t(()=>[B("\u91CD\u7F6E")]),_:1},8,["onClick"])]),_:1})]),_:1},8,["model"])]),_:1}),X((p(),F(C,{class:"!border-none",shadow:"never"},{default:t(()=>[d("div",ee,[e(N,{data:a(r).lists,onCellClick:h},{default:t(()=>[e(u,{label:"\u516C\u53F8\u540D\u79F0",property:"company_name"}),e(u,{label:"\u516C\u53F8\u7C7B\u578B",property:"company_type"},{default:t(({row:o})=>[d("span",null,Y(a(y).find(i=>i.id==o.company_type).name),1)]),_:1}),e(u,{label:"\u533A\u53BF",property:"area_name"}),e(u,{label:"\u4E61\u9547",property:"street_name"}),e(u,{label:"\u4E3B\u8054\u7CFB\u4EBA",property:"master_name"}),e(u,{label:"\u8054\u7CFB\u65B9\u5F0F",property:"master_phone"})]),_:1},8,["data"])]),d("div",ae,[e(P,{modelValue:a(r),"onUpdate:modelValue":s[2]||(s[2]=o=>Z(r)?r.value=o:null),onChange:a(c)},null,8,["modelValue","onChange"])])]),_:1})),[[U,a(r).loading]])])}}});export{pe as _}; diff --git a/public/admin/assets/dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.8f34f1b3.js b/public/admin/assets/dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.8f34f1b3.js new file mode 100644 index 000000000..4c99acc8d --- /dev/null +++ b/public/admin/assets/dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.8f34f1b3.js @@ -0,0 +1 @@ +import{B as k,C as x,w as A,D as P,I,O as L,o as U,P as z,Q as N}from"./element-plus.4328d892.js";import{_ as T}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{u as q}from"./usePaging.2ad8e1e6.js";import"./index.aa9bb752.js";import{a as R}from"./admin.1cd61358.js";import{d as C,$ as S,o as m,c,U as e,L as a,u as n,R as i,M as $,K as j,a as y,S as K,k as M}from"./@vue.51d7f2d8.js";const O={class:"mt-4"},Q={key:0,style:{color:"#67c23a"}},G={key:1,style:{color:"#fe0000"}},H={class:"flex mt-4 justify-end"},J=C({name:"companyLists"}),oe=C({...J,emits:["customEvent"],setup(W,{emit:E}){const l=S({level_two:"",level_one:"",company_name:"",organization_code:"",city:"",area:"",street:"",company_type:"",master_name:"",master_position:"",master_phone:"",master_email:"",other_contacts:"",area_manager:"",is_contract:"",account:"",password:"",deposit:"",deposit_time:"",qualification:"",status:""}),b=_=>{E("customEvent",_)},{pager:s,getLists:p,resetParams:h,resetPage:B}=q({fetchFun:R,params:l});return p(),(_,u)=>{const d=k,r=x,F=A,g=P,f=I,t=L,w=U,v=z,D=T,V=N;return m(),c("div",null,[e(f,{class:"!border-none",shadow:"never"},{default:a(()=>[e(g,{class:"mb-[-16px]",model:n(l),inline:""},{default:a(()=>[e(r,{label:"\u516C\u53F8\u540D\u79F0",prop:"company_name"},{default:a(()=>[e(d,{class:"w-[280px]",modelValue:n(l).company_name,"onUpdate:modelValue":u[0]||(u[0]=o=>n(l).company_name=o),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u516C\u53F8\u540D\u79F0"},null,8,["modelValue"])]),_:1}),e(r,{label:"\u516C\u53F8\u7C7B\u578B",prop:"company_type"},{default:a(()=>[e(d,{class:"w-[280px]",modelValue:n(l).company_type,"onUpdate:modelValue":u[1]||(u[1]=o=>n(l).company_type=o),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u516C\u53F8\u7C7B\u578B"},null,8,["modelValue"])]),_:1}),e(r,null,{default:a(()=>[e(F,{type:"primary",onClick:n(B)},{default:a(()=>[i("\u67E5\u8BE2")]),_:1},8,["onClick"]),e(F,{onClick:n(h)},{default:a(()=>[i("\u91CD\u7F6E")]),_:1},8,["onClick"])]),_:1})]),_:1},8,["model"])]),_:1}),$((m(),j(f,{class:"!border-none",shadow:"never"},{default:a(()=>[y("div",O,[e(v,{data:n(s).lists,size:"large",onCellClick:b},{default:a(()=>[e(t,{label:"ID",prop:"id","min-width":"60"}),i("> "),e(t,{label:"\u5934\u50CF","min-width":"100"},{default:a(({row:o})=>[e(w,{size:50,src:o.avatar},null,8,["src"])]),_:1}),e(t,{label:"\u59D3\u540D",prop:"name","min-width":"100"}),e(t,{label:"\u8054\u7CFB\u65B9\u5F0F",prop:"account","min-width":"130"}),e(t,{label:"\u96B6\u5C5E\u516C\u53F8",prop:"company.company_name","min-width":"120",align:"center"},{default:a(({row:o})=>[i(K(o.company.company_name||"/"),1)]),_:1}),e(t,{label:"\u6240\u5728\u4E61\u9547",prop:"street_name","min-width":"120"}),e(t,{label:"\u6388\u6743\u8EAB\u4EFD",prop:"role_name","min-width":"120"}),e(t,{label:"\u662F\u5426\u7B7E\u7EA6",prop:"is_contract",align:"center","min-width":"120"},{default:a(({row:o})=>[o.is_contract==1?(m(),c("span",Q,"\u5DF2\u7B7E\u7EA6")):(m(),c("span",G,"\u672A\u7B7E\u7EA6"))]),_:1}),e(t,{label:"\u6700\u8FD1\u767B\u5F55\u65F6\u95F4",prop:"login_time","min-width":"180"}),e(t,{label:"\u521B\u5EFA\u65F6\u95F4",prop:"create_time","min-width":"180",align:"center"}),e(t,{label:"\u6700\u8FD1\u767B\u5F55IP",prop:"login_ip","min-width":"120"})]),_:1},8,["data"])]),y("div",H,[e(D,{modelValue:n(s),"onUpdate:modelValue":u[2]||(u[2]=o=>M(s)?s.value=o:null),onChange:n(p)},null,8,["modelValue","onChange"])])]),_:1})),[[V,n(s).loading]])])}}});export{oe as _}; diff --git a/public/admin/assets/dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.a896e319.js b/public/admin/assets/dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.a896e319.js new file mode 100644 index 000000000..8129543bb --- /dev/null +++ b/public/admin/assets/dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.a896e319.js @@ -0,0 +1 @@ +import{B as k,C as x,w as A,D as P,I,O as L,o as U,P as z,Q as N}from"./element-plus.4328d892.js";import{_ as T}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{u as q}from"./usePaging.2ad8e1e6.js";import"./index.37f7aea6.js";import{a as R}from"./admin.f0e2c7b9.js";import{d as C,$ as S,o as m,c,U as e,L as a,u as n,R as i,M as $,K as j,a as y,S as K,k as M}from"./@vue.51d7f2d8.js";const O={class:"mt-4"},Q={key:0,style:{color:"#67c23a"}},G={key:1,style:{color:"#fe0000"}},H={class:"flex mt-4 justify-end"},J=C({name:"companyLists"}),oe=C({...J,emits:["customEvent"],setup(W,{emit:E}){const l=S({level_two:"",level_one:"",company_name:"",organization_code:"",city:"",area:"",street:"",company_type:"",master_name:"",master_position:"",master_phone:"",master_email:"",other_contacts:"",area_manager:"",is_contract:"",account:"",password:"",deposit:"",deposit_time:"",qualification:"",status:""}),b=_=>{E("customEvent",_)},{pager:s,getLists:p,resetParams:h,resetPage:B}=q({fetchFun:R,params:l});return p(),(_,u)=>{const d=k,r=x,F=A,g=P,f=I,t=L,w=U,v=z,D=T,V=N;return m(),c("div",null,[e(f,{class:"!border-none",shadow:"never"},{default:a(()=>[e(g,{class:"mb-[-16px]",model:n(l),inline:""},{default:a(()=>[e(r,{label:"\u516C\u53F8\u540D\u79F0",prop:"company_name"},{default:a(()=>[e(d,{class:"w-[280px]",modelValue:n(l).company_name,"onUpdate:modelValue":u[0]||(u[0]=o=>n(l).company_name=o),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u516C\u53F8\u540D\u79F0"},null,8,["modelValue"])]),_:1}),e(r,{label:"\u516C\u53F8\u7C7B\u578B",prop:"company_type"},{default:a(()=>[e(d,{class:"w-[280px]",modelValue:n(l).company_type,"onUpdate:modelValue":u[1]||(u[1]=o=>n(l).company_type=o),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u516C\u53F8\u7C7B\u578B"},null,8,["modelValue"])]),_:1}),e(r,null,{default:a(()=>[e(F,{type:"primary",onClick:n(B)},{default:a(()=>[i("\u67E5\u8BE2")]),_:1},8,["onClick"]),e(F,{onClick:n(h)},{default:a(()=>[i("\u91CD\u7F6E")]),_:1},8,["onClick"])]),_:1})]),_:1},8,["model"])]),_:1}),$((m(),j(f,{class:"!border-none",shadow:"never"},{default:a(()=>[y("div",O,[e(v,{data:n(s).lists,size:"large",onCellClick:b},{default:a(()=>[e(t,{label:"ID",prop:"id","min-width":"60"}),i("> "),e(t,{label:"\u5934\u50CF","min-width":"100"},{default:a(({row:o})=>[e(w,{size:50,src:o.avatar},null,8,["src"])]),_:1}),e(t,{label:"\u59D3\u540D",prop:"name","min-width":"100"}),e(t,{label:"\u8054\u7CFB\u65B9\u5F0F",prop:"account","min-width":"130"}),e(t,{label:"\u96B6\u5C5E\u516C\u53F8",prop:"company.company_name","min-width":"120",align:"center"},{default:a(({row:o})=>[i(K(o.company.company_name||"/"),1)]),_:1}),e(t,{label:"\u6240\u5728\u4E61\u9547",prop:"street_name","min-width":"120"}),e(t,{label:"\u6388\u6743\u8EAB\u4EFD",prop:"role_name","min-width":"120"}),e(t,{label:"\u662F\u5426\u7B7E\u7EA6",prop:"is_contract",align:"center","min-width":"120"},{default:a(({row:o})=>[o.is_contract==1?(m(),c("span",Q,"\u5DF2\u7B7E\u7EA6")):(m(),c("span",G,"\u672A\u7B7E\u7EA6"))]),_:1}),e(t,{label:"\u6700\u8FD1\u767B\u5F55\u65F6\u95F4",prop:"login_time","min-width":"180"}),e(t,{label:"\u521B\u5EFA\u65F6\u95F4",prop:"create_time","min-width":"180",align:"center"}),e(t,{label:"\u6700\u8FD1\u767B\u5F55IP",prop:"login_ip","min-width":"120"})]),_:1},8,["data"])]),y("div",H,[e(D,{modelValue:n(s),"onUpdate:modelValue":u[2]||(u[2]=o=>M(s)?s.value=o:null),onChange:n(p)},null,8,["modelValue","onChange"])])]),_:1})),[[V,n(s).loading]])])}}});export{oe as _}; diff --git a/public/admin/assets/dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.bd8cad2b.js b/public/admin/assets/dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.bd8cad2b.js new file mode 100644 index 000000000..9b4bec59e --- /dev/null +++ b/public/admin/assets/dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.bd8cad2b.js @@ -0,0 +1 @@ +import{B as x,C as D,w as L,D as P,I as N,O as U,P as I,Q as T}from"./element-plus.4328d892.js";import{_ as j}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{u as q}from"./usePaging.2ad8e1e6.js";import"./index.ed71ac09.js";import{j as A}from"./company.8a1c349a.js";import{d as F,$ as R,o as y,c as $,U as e,L as o,u as a,R as f,M as z,K,a as C,k as M}from"./@vue.51d7f2d8.js";const O={class:"mt-4"},Q={class:"flex mt-4 justify-end"},G=F({name:"companyLists"}),Z=F({...G,props:{type:{type:Number,default:0}},emits:["customEvent"],setup(B,{emit:b}){const m=B,t=R({level_two:"",level_one:"",company_name:"",organization_code:"",city:"",area:"",street:"",company_type:"",master_name:"",master_position:"",master_phone:"",master_email:"",other_contacts:"",area_manager:"",is_contract:"",account:"",password:"",deposit:"",deposit_time:"",qualification:"",status:""});m.type&&(t.company_type=m.type);const E=c=>{b("customEvent",c)},{pager:s,getLists:p,resetParams:g,resetPage:v}=q({fetchFun:A,params:t});return p(),(c,n)=>{const _=x,r=D,i=L,V=P,d=N,l=U,h=I,k=j,w=T;return y(),$("div",null,[e(d,{class:"!border-none",shadow:"never"},{default:o(()=>[e(V,{class:"mb-[-16px]",model:a(t),inline:""},{default:o(()=>[e(r,{label:"\u516C\u53F8\u540D\u79F0",prop:"company_name"},{default:o(()=>[e(_,{class:"w-[280px]",modelValue:a(t).company_name,"onUpdate:modelValue":n[0]||(n[0]=u=>a(t).company_name=u),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u516C\u53F8\u540D\u79F0"},null,8,["modelValue"])]),_:1}),e(r,{label:"\u516C\u53F8\u7C7B\u578B",prop:"company_type"},{default:o(()=>[e(_,{class:"w-[280px]",modelValue:a(t).company_type,"onUpdate:modelValue":n[1]||(n[1]=u=>a(t).company_type=u),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u516C\u53F8\u7C7B\u578B"},null,8,["modelValue"])]),_:1}),e(r,null,{default:o(()=>[e(i,{type:"primary",onClick:a(v)},{default:o(()=>[f("\u67E5\u8BE2")]),_:1},8,["onClick"]),e(i,{onClick:a(g)},{default:o(()=>[f("\u91CD\u7F6E")]),_:1},8,["onClick"])]),_:1})]),_:1},8,["model"])]),_:1}),z((y(),K(d,{class:"!border-none",shadow:"never"},{default:o(()=>[C("div",O,[e(h,{data:a(s).lists,onCellClick:E},{default:o(()=>[e(l,{label:"\u516C\u53F8\u540D\u79F0",property:"company_name"}),e(l,{label:"\u516C\u53F8\u7C7B\u578B",property:"company_type"}),e(l,{label:"\u533A\u53BF",property:"area"}),e(l,{label:"\u4E61\u9547",property:"street"}),e(l,{label:"\u4E3B\u8054\u7CFB\u4EBA",property:"master_name"}),e(l,{label:"\u8054\u7CFB\u65B9\u5F0F",property:"master_phone"})]),_:1},8,["data"])]),C("div",Q,[e(k,{modelValue:a(s),"onUpdate:modelValue":n[2]||(n[2]=u=>M(s)?s.value=u:null),onChange:a(p)},null,8,["modelValue","onChange"])])]),_:1})),[[w,a(s).loading]])])}}});export{Z as _}; diff --git a/public/admin/assets/dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.c1d31e4b.js b/public/admin/assets/dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.c1d31e4b.js new file mode 100644 index 000000000..10ad1d14f --- /dev/null +++ b/public/admin/assets/dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.c1d31e4b.js @@ -0,0 +1 @@ +import{B as A,C as I,M as S,N as q,w as M,D as O,I as R,O as $,P as j,Q as z}from"./element-plus.4328d892.js";import{_ as K}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{u as Q}from"./usePaging.2ad8e1e6.js";import"./index.ed71ac09.js";import{c as G}from"./company.8a1c349a.js";import{d as g,$ as H,o as p,c as b,U as e,L as t,u as a,T as J,a7 as W,K as F,R as B,M as X,a as d,S as Y,k as Z}from"./@vue.51d7f2d8.js";const ee={class:"mt-4"},ae={class:"flex mt-4 justify-end"},te=g({name:"companyLists"}),pe=g({...te,props:{type:{type:Number,default:0},companyTypeList:{type:Array,default:()=>[]}},emits:["customEvent"],setup(E,{emit:v}){const m=E,y=m.companyTypeList.filter(l=>l.id==30||l.id==16),n=H({level_two:"",level_one:"",company_name:"",organization_code:"",city:"",area:"",street:"",company_type:"",master_name:"",master_position:"",master_phone:"",master_email:"",other_contacts:"",area_manager:"",is_contract:"",account:"",password:"",deposit:"",deposit_time:"",qualification:"",status:""});m.type&&(n.company_type=m.type);const h=l=>{v("customEvent",l)},V=l=>{c()},{pager:r,getLists:c,resetParams:k,resetPage:w}=Q({fetchFun:G,params:n});return c(),(l,s)=>{const L=A,_=I,T=S,x=q,f=M,D=O,C=R,u=$,N=j,P=K,U=z;return p(),b("div",null,[e(C,{class:"!border-none",shadow:"never"},{default:t(()=>[e(D,{class:"mb-[-16px]",model:a(n),inline:""},{default:t(()=>[e(_,{label:"\u516C\u53F8\u540D\u79F0",prop:"company_name"},{default:t(()=>[e(L,{class:"w-[280px]",modelValue:a(n).company_name,"onUpdate:modelValue":s[0]||(s[0]=o=>a(n).company_name=o),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u516C\u53F8\u540D\u79F0"},null,8,["modelValue"])]),_:1}),e(_,{label:"\u516C\u53F8\u7C7B\u578B",prop:"company_type"},{default:t(()=>[e(x,{modelValue:a(n).company_type,"onUpdate:modelValue":s[1]||(s[1]=o=>a(n).company_type=o),placeholder:"\u516C\u53F8\u7C7B\u578B",clearable:"",onChange:V,style:{width:"100%"}},{default:t(()=>[(p(!0),b(J,null,W(a(y),(o,i)=>(p(),F(T,{key:i,label:o.name,value:o.id},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1}),e(_,null,{default:t(()=>[e(f,{type:"primary",onClick:a(w)},{default:t(()=>[B("\u67E5\u8BE2")]),_:1},8,["onClick"]),e(f,{onClick:a(k)},{default:t(()=>[B("\u91CD\u7F6E")]),_:1},8,["onClick"])]),_:1})]),_:1},8,["model"])]),_:1}),X((p(),F(C,{class:"!border-none",shadow:"never"},{default:t(()=>[d("div",ee,[e(N,{data:a(r).lists,onCellClick:h},{default:t(()=>[e(u,{label:"\u516C\u53F8\u540D\u79F0",property:"company_name"}),e(u,{label:"\u516C\u53F8\u7C7B\u578B",property:"company_type"},{default:t(({row:o})=>[d("span",null,Y(a(y).find(i=>i.id==o.company_type).name),1)]),_:1}),e(u,{label:"\u533A\u53BF",property:"area_name"}),e(u,{label:"\u4E61\u9547",property:"street_name"}),e(u,{label:"\u4E3B\u8054\u7CFB\u4EBA",property:"master_name"}),e(u,{label:"\u8054\u7CFB\u65B9\u5F0F",property:"master_phone"})]),_:1},8,["data"])]),d("div",ae,[e(P,{modelValue:a(r),"onUpdate:modelValue":s[2]||(s[2]=o=>Z(r)?r.value=o:null),onChange:a(c)},null,8,["modelValue","onChange"])])]),_:1})),[[U,a(r).loading]])])}}});export{pe as _}; diff --git a/public/admin/assets/dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.cbb85e35.js b/public/admin/assets/dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.cbb85e35.js new file mode 100644 index 000000000..6d280c847 --- /dev/null +++ b/public/admin/assets/dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.cbb85e35.js @@ -0,0 +1 @@ +import{B as k,C as w,w as x,D as A,I as D,O as L,P,Q as U}from"./element-plus.4328d892.js";import{_ as I}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{u as N}from"./usePaging.2ad8e1e6.js";import"./index.37f7aea6.js";import{k as T}from"./company.d1e8fc82.js";import{d as f,$ as q,o as d,c as R,U as e,L as o,u as a,R as y,M as $,K as j,a as C,k as z}from"./@vue.51d7f2d8.js";const K={class:"mt-4"},M={class:"flex mt-4 justify-end"},O=f({name:"companyLists"}),Y=f({...O,emits:["customEvent"],setup(Q,{emit:B}){const l=q({level_two:"",level_one:"",company_name:"",organization_code:"",city:"",area:"",street:"",company_type:"",master_name:"",master_position:"",master_phone:"",master_email:"",other_contacts:"",area_manager:"",is_contract:"",account:"",password:"",deposit:"",deposit_time:"",qualification:"",status:""}),F=p=>{B("customEvent",p)},{pager:u,getLists:m,resetParams:E,resetPage:b}=N({fetchFun:T,params:l});return m(),(p,n)=>{const _=k,r=w,c=x,g=A,i=D,t=L,v=P,V=I,h=U;return d(),R("div",null,[e(i,{class:"!border-none",shadow:"never"},{default:o(()=>[e(g,{class:"mb-[-16px]",model:a(l),inline:""},{default:o(()=>[e(r,{label:"\u516C\u53F8\u540D\u79F0",prop:"company_name"},{default:o(()=>[e(_,{class:"w-[280px]",modelValue:a(l).company_name,"onUpdate:modelValue":n[0]||(n[0]=s=>a(l).company_name=s),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u516C\u53F8\u540D\u79F0"},null,8,["modelValue"])]),_:1}),e(r,{label:"\u516C\u53F8\u7C7B\u578B",prop:"company_type"},{default:o(()=>[e(_,{class:"w-[280px]",modelValue:a(l).company_type,"onUpdate:modelValue":n[1]||(n[1]=s=>a(l).company_type=s),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u516C\u53F8\u7C7B\u578B"},null,8,["modelValue"])]),_:1}),e(r,null,{default:o(()=>[e(c,{type:"primary",onClick:a(b)},{default:o(()=>[y("\u67E5\u8BE2")]),_:1},8,["onClick"]),e(c,{onClick:a(E)},{default:o(()=>[y("\u91CD\u7F6E")]),_:1},8,["onClick"])]),_:1})]),_:1},8,["model"])]),_:1}),$((d(),j(i,{class:"!border-none",shadow:"never"},{default:o(()=>[C("div",K,[e(v,{data:a(u).lists,onCellClick:F},{default:o(()=>[e(t,{label:"\u7B7E\u7EA6\u516C\u53F8",property:"company_name"}),e(t,{label:"\u516C\u53F8\u7C7B\u578B",property:"company_type"}),e(t,{label:"\u533A\u53BF",property:"area"}),e(t,{label:"\u4E61\u9547",property:"street"}),e(t,{label:"\u4E3B\u8054\u7CFB\u4EBA",property:"master_name"}),e(t,{label:"\u8054\u7CFB\u65B9\u5F0F",property:"master_phone"}),e(t,{label:"\u7247\u533A\u7ECF\u7406",property:"area_manager"}),e(t,{label:"\u662F\u5426\u7B7E\u7EA6",property:"is_contract"})]),_:1},8,["data"])]),C("div",M,[e(V,{modelValue:a(u),"onUpdate:modelValue":n[2]||(n[2]=s=>z(u)?u.value=s:null),onChange:a(m)},null,8,["modelValue","onChange"])])]),_:1})),[[h,a(u).loading]])])}}});export{Y as _}; diff --git a/public/admin/assets/dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.dac25500.js b/public/admin/assets/dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.dac25500.js new file mode 100644 index 000000000..22ec64f81 --- /dev/null +++ b/public/admin/assets/dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.dac25500.js @@ -0,0 +1 @@ +import{B as A,C as I,M as S,N as q,w as M,D as O,I as R,O as $,P as j,Q as z}from"./element-plus.4328d892.js";import{_ as K}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{u as Q}from"./usePaging.2ad8e1e6.js";import"./index.37f7aea6.js";import{c as G}from"./company.d1e8fc82.js";import{d as g,$ as H,o as p,c as b,U as e,L as t,u as a,T as J,a7 as W,K as F,R as B,M as X,a as d,S as Y,k as Z}from"./@vue.51d7f2d8.js";const ee={class:"mt-4"},ae={class:"flex mt-4 justify-end"},te=g({name:"companyLists"}),pe=g({...te,props:{type:{type:Number,default:0},companyTypeList:{type:Array,default:()=>[]}},emits:["customEvent"],setup(E,{emit:v}){const m=E,y=m.companyTypeList.filter(l=>l.id==30||l.id==16),n=H({level_two:"",level_one:"",company_name:"",organization_code:"",city:"",area:"",street:"",company_type:"",master_name:"",master_position:"",master_phone:"",master_email:"",other_contacts:"",area_manager:"",is_contract:"",account:"",password:"",deposit:"",deposit_time:"",qualification:"",status:""});m.type&&(n.company_type=m.type);const h=l=>{v("customEvent",l)},V=l=>{c()},{pager:r,getLists:c,resetParams:k,resetPage:w}=Q({fetchFun:G,params:n});return c(),(l,s)=>{const L=A,_=I,T=S,x=q,f=M,D=O,C=R,u=$,N=j,P=K,U=z;return p(),b("div",null,[e(C,{class:"!border-none",shadow:"never"},{default:t(()=>[e(D,{class:"mb-[-16px]",model:a(n),inline:""},{default:t(()=>[e(_,{label:"\u516C\u53F8\u540D\u79F0",prop:"company_name"},{default:t(()=>[e(L,{class:"w-[280px]",modelValue:a(n).company_name,"onUpdate:modelValue":s[0]||(s[0]=o=>a(n).company_name=o),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u516C\u53F8\u540D\u79F0"},null,8,["modelValue"])]),_:1}),e(_,{label:"\u516C\u53F8\u7C7B\u578B",prop:"company_type"},{default:t(()=>[e(x,{modelValue:a(n).company_type,"onUpdate:modelValue":s[1]||(s[1]=o=>a(n).company_type=o),placeholder:"\u516C\u53F8\u7C7B\u578B",clearable:"",onChange:V,style:{width:"100%"}},{default:t(()=>[(p(!0),b(J,null,W(a(y),(o,i)=>(p(),F(T,{key:i,label:o.name,value:o.id},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1}),e(_,null,{default:t(()=>[e(f,{type:"primary",onClick:a(w)},{default:t(()=>[B("\u67E5\u8BE2")]),_:1},8,["onClick"]),e(f,{onClick:a(k)},{default:t(()=>[B("\u91CD\u7F6E")]),_:1},8,["onClick"])]),_:1})]),_:1},8,["model"])]),_:1}),X((p(),F(C,{class:"!border-none",shadow:"never"},{default:t(()=>[d("div",ee,[e(N,{data:a(r).lists,onCellClick:h},{default:t(()=>[e(u,{label:"\u516C\u53F8\u540D\u79F0",property:"company_name"}),e(u,{label:"\u516C\u53F8\u7C7B\u578B",property:"company_type"},{default:t(({row:o})=>[d("span",null,Y(a(y).find(i=>i.id==o.company_type).name),1)]),_:1}),e(u,{label:"\u533A\u53BF",property:"area_name"}),e(u,{label:"\u4E61\u9547",property:"street_name"}),e(u,{label:"\u4E3B\u8054\u7CFB\u4EBA",property:"master_name"}),e(u,{label:"\u8054\u7CFB\u65B9\u5F0F",property:"master_phone"})]),_:1},8,["data"])]),d("div",ae,[e(P,{modelValue:a(r),"onUpdate:modelValue":s[2]||(s[2]=o=>Z(r)?r.value=o:null),onChange:a(c)},null,8,["modelValue","onChange"])])]),_:1})),[[U,a(r).loading]])])}}});export{pe as _}; diff --git a/public/admin/assets/dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.dac5c88f.js b/public/admin/assets/dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.dac5c88f.js new file mode 100644 index 000000000..250be39f0 --- /dev/null +++ b/public/admin/assets/dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.dac5c88f.js @@ -0,0 +1 @@ +import{B as k,C as w,w as x,D as A,I as D,O as L,P,Q as U}from"./element-plus.4328d892.js";import{_ as I}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{u as N}from"./usePaging.2ad8e1e6.js";import"./index.ed71ac09.js";import{j as T}from"./company.8a1c349a.js";import{d as f,$ as j,o as d,c as q,U as e,L as o,u as a,R as y,M as R,K as $,a as C,k as z}from"./@vue.51d7f2d8.js";const K={class:"mt-4"},M={class:"flex mt-4 justify-end"},O=f({name:"companyLists"}),Y=f({...O,emits:["customEvent"],setup(Q,{emit:B}){const l=j({level_two:"",level_one:"",company_name:"",organization_code:"",city:"",area:"",street:"",company_type:"",master_name:"",master_position:"",master_phone:"",master_email:"",other_contacts:"",area_manager:"",is_contract:"",account:"",password:"",deposit:"",deposit_time:"",qualification:"",status:""}),F=p=>{B("customEvent",p)},{pager:u,getLists:m,resetParams:E,resetPage:b}=N({fetchFun:T,params:l});return m(),(p,n)=>{const _=k,r=w,c=x,g=A,i=D,t=L,v=P,V=I,h=U;return d(),q("div",null,[e(i,{class:"!border-none",shadow:"never"},{default:o(()=>[e(g,{class:"mb-[-16px]",model:a(l),inline:""},{default:o(()=>[e(r,{label:"\u516C\u53F8\u540D\u79F0",prop:"company_name"},{default:o(()=>[e(_,{class:"w-[280px]",modelValue:a(l).company_name,"onUpdate:modelValue":n[0]||(n[0]=s=>a(l).company_name=s),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u516C\u53F8\u540D\u79F0"},null,8,["modelValue"])]),_:1}),e(r,{label:"\u516C\u53F8\u7C7B\u578B",prop:"company_type"},{default:o(()=>[e(_,{class:"w-[280px]",modelValue:a(l).company_type,"onUpdate:modelValue":n[1]||(n[1]=s=>a(l).company_type=s),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u516C\u53F8\u7C7B\u578B"},null,8,["modelValue"])]),_:1}),e(r,null,{default:o(()=>[e(c,{type:"primary",onClick:a(b)},{default:o(()=>[y("\u67E5\u8BE2")]),_:1},8,["onClick"]),e(c,{onClick:a(E)},{default:o(()=>[y("\u91CD\u7F6E")]),_:1},8,["onClick"])]),_:1})]),_:1},8,["model"])]),_:1}),R((d(),$(i,{class:"!border-none",shadow:"never"},{default:o(()=>[C("div",K,[e(v,{data:a(u).lists,onCellClick:F},{default:o(()=>[e(t,{label:"\u7B7E\u7EA6\u516C\u53F8",property:"company_name"}),e(t,{label:"\u516C\u53F8\u7C7B\u578B",property:"company_type"}),e(t,{label:"\u533A\u53BF",property:"area"}),e(t,{label:"\u4E61\u9547",property:"street"}),e(t,{label:"\u4E3B\u8054\u7CFB\u4EBA",property:"master_name"}),e(t,{label:"\u8054\u7CFB\u65B9\u5F0F",property:"master_phone"}),e(t,{label:"\u7247\u533A\u7ECF\u7406",property:"area_manager"}),e(t,{label:"\u662F\u5426\u7B7E\u7EA6",property:"is_contract"})]),_:1},8,["data"])]),C("div",M,[e(V,{modelValue:a(u),"onUpdate:modelValue":n[2]||(n[2]=s=>z(u)?u.value=s:null),onChange:a(m)},null,8,["modelValue","onChange"])])]),_:1})),[[h,a(u).loading]])])}}});export{Y as _}; diff --git a/public/admin/assets/dialog_index_man.50c4d1b5.js b/public/admin/assets/dialog_index_man.50c4d1b5.js new file mode 100644 index 000000000..6a7b820b1 --- /dev/null +++ b/public/admin/assets/dialog_index_man.50c4d1b5.js @@ -0,0 +1 @@ +import"./dialog_index_man.vue_vue_type_script_setup_true_name_companyLists_lang.94e09823.js";import{_ as Q}from"./dialog_index_man.vue_vue_type_script_setup_true_name_companyLists_lang.94e09823.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./usePaging.2ad8e1e6.js";import"./role.41d5883e.js";import"./index.aa9bb752.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./useDictOptions.a61fcf9f.js";import"./admin.1cd61358.js";export{Q as default}; diff --git a/public/admin/assets/dialog_index_man.9bef1feb.js b/public/admin/assets/dialog_index_man.9bef1feb.js new file mode 100644 index 000000000..9fce51713 --- /dev/null +++ b/public/admin/assets/dialog_index_man.9bef1feb.js @@ -0,0 +1 @@ +import"./dialog_index_man.vue_vue_type_script_setup_true_name_companyLists_lang.bd396891.js";import{_ as Q}from"./dialog_index_man.vue_vue_type_script_setup_true_name_companyLists_lang.bd396891.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./usePaging.2ad8e1e6.js";import"./role.8d2a6d5e.js";import"./index.37f7aea6.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./useDictOptions.a45fc8ac.js";import"./admin.f0e2c7b9.js";export{Q as default}; diff --git a/public/admin/assets/dialog_index_man.ec5d66bf.js b/public/admin/assets/dialog_index_man.ec5d66bf.js new file mode 100644 index 000000000..9a19543b6 --- /dev/null +++ b/public/admin/assets/dialog_index_man.ec5d66bf.js @@ -0,0 +1 @@ +import"./dialog_index_man.vue_vue_type_script_setup_true_name_companyLists_lang.be34fc0b.js";import{_ as Q}from"./dialog_index_man.vue_vue_type_script_setup_true_name_companyLists_lang.be34fc0b.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./usePaging.2ad8e1e6.js";import"./role.1c72c4c7.js";import"./index.ed71ac09.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./useDictOptions.8d37e54b.js";import"./admin.f28da7a1.js";export{Q as default}; diff --git a/public/admin/assets/dialog_index_man.vue_vue_type_script_setup_true_name_companyLists_lang.94e09823.js b/public/admin/assets/dialog_index_man.vue_vue_type_script_setup_true_name_companyLists_lang.94e09823.js new file mode 100644 index 000000000..ff4f74992 --- /dev/null +++ b/public/admin/assets/dialog_index_man.vue_vue_type_script_setup_true_name_companyLists_lang.94e09823.js @@ -0,0 +1 @@ +import{B as I,C as T,M as U,N as O,w as M,D as R,I as $,O as j,P as q,Q as K}from"./element-plus.4328d892.js";import{_ as Q}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{u as S}from"./usePaging.2ad8e1e6.js";import{r as z}from"./role.41d5883e.js";import{a as G}from"./useDictOptions.a61fcf9f.js";import{a as H}from"./admin.1cd61358.js";import{d as E,$ as J,o as r,c as f,U as e,L as l,u as o,T as W,a7 as X,K as b,R as F,M as Y,a as w,k as Z}from"./@vue.51d7f2d8.js";const ee={class:"mt-4"},oe={class:"flex mt-4 justify-end"},le=E({name:"companyLists"}),me=E({...le,props:{type:{type:Number,defualt:0}},emits:["customEvent"],setup(h,{emit:v}){const C=h,{optionsData:g}=G({role:{api:z}}),t=J({name:"",role_id:""});C.type==8&&(t.role_id=8);const B=p=>{v("customEvent",p)},{pager:s,getLists:m,resetParams:D,resetPage:V}=S({fetchFun:H,params:t});return m(),(p,u)=>{const k=I,i=T,d=U,y=O,_=M,x=R,c=$,n=j,L=q,P=Q,A=K;return r(),f("div",null,[e(c,{class:"!border-none",shadow:"never"},{default:l(()=>[e(x,{class:"mb-[-16px]",model:o(t),inline:""},{default:l(()=>[e(i,{label:"\u7BA1\u7406\u5458\u540D\u79F0",prop:"name"},{default:l(()=>[e(k,{class:"w-[280px]",modelValue:o(t).name,"onUpdate:modelValue":u[0]||(u[0]=a=>o(t).name=a),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u7BA1\u7406\u5458\u540D\u79F0"},null,8,["modelValue"])]),_:1}),e(i,{label:"\u8BF7\u9009\u62E9\u7BA1\u7406\u5458\u89D2\u8272",prop:"role_id"},{default:l(()=>[e(y,{class:"w-[280px]",modelValue:o(t).role_id,"onUpdate:modelValue":u[1]||(u[1]=a=>o(t).role_id=a)},{default:l(()=>[e(d,{label:"\u5168\u90E8",value:""}),(r(!0),f(W,null,X(o(g).role,(a,N)=>(r(),b(d,{key:N,label:a.name,value:a.id},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1}),e(i,null,{default:l(()=>[e(_,{type:"primary",onClick:o(V)},{default:l(()=>[F("\u67E5\u8BE2")]),_:1},8,["onClick"]),e(_,{onClick:o(D)},{default:l(()=>[F("\u91CD\u7F6E")]),_:1},8,["onClick"])]),_:1})]),_:1},8,["model"])]),_:1}),Y((r(),b(c,{class:"!border-none",shadow:"never"},{default:l(()=>[w("div",ee,[e(L,{data:o(s).lists,onCellClick:B},{default:l(()=>[e(n,{label:"\u8D26\u53F7",prop:"account","min-width":"120"}),e(n,{label:"\u540D\u79F0",prop:"name","min-width":"100"}),e(n,{label:"\u89D2\u8272",prop:"role_name","min-width":"100","show-tooltip-when-overflow":""}),e(n,{label:"\u90E8\u95E8",prop:"dept_name","min-width":"100","show-tooltip-when-overflow":""}),e(n,{label:"\u521B\u5EFA\u65F6\u95F4",prop:"create_time","min-width":"180"}),e(n,{label:"\u6700\u8FD1\u767B\u5F55\u65F6\u95F4",prop:"login_time","min-width":"180"}),e(n,{label:"\u6700\u8FD1\u767B\u5F55IP",prop:"login_ip","min-width":"120"})]),_:1},8,["data"])]),w("div",oe,[e(P,{modelValue:o(s),"onUpdate:modelValue":u[2]||(u[2]=a=>Z(s)?s.value=a:null),onChange:o(m)},null,8,["modelValue","onChange"])])]),_:1})),[[A,o(s).loading]])])}}});export{me as _}; diff --git a/public/admin/assets/dialog_index_man.vue_vue_type_script_setup_true_name_companyLists_lang.bd396891.js b/public/admin/assets/dialog_index_man.vue_vue_type_script_setup_true_name_companyLists_lang.bd396891.js new file mode 100644 index 000000000..b4981d0a8 --- /dev/null +++ b/public/admin/assets/dialog_index_man.vue_vue_type_script_setup_true_name_companyLists_lang.bd396891.js @@ -0,0 +1 @@ +import{B as I,C as T,M as U,N as O,w as M,D as R,I as $,O as j,P as q,Q as K}from"./element-plus.4328d892.js";import{_ as Q}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{u as S}from"./usePaging.2ad8e1e6.js";import{r as z}from"./role.8d2a6d5e.js";import{a as G}from"./useDictOptions.a45fc8ac.js";import{a as H}from"./admin.f0e2c7b9.js";import{d as E,$ as J,o as r,c as f,U as e,L as l,u as o,T as W,a7 as X,K as b,R as F,M as Y,a as w,k as Z}from"./@vue.51d7f2d8.js";const ee={class:"mt-4"},oe={class:"flex mt-4 justify-end"},le=E({name:"companyLists"}),me=E({...le,props:{type:{type:Number,defualt:0}},emits:["customEvent"],setup(h,{emit:v}){const C=h,{optionsData:g}=G({role:{api:z}}),t=J({name:"",role_id:""});C.type==8&&(t.role_id=8);const B=p=>{v("customEvent",p)},{pager:s,getLists:m,resetParams:D,resetPage:V}=S({fetchFun:H,params:t});return m(),(p,u)=>{const k=I,i=T,d=U,y=O,_=M,x=R,c=$,n=j,L=q,P=Q,A=K;return r(),f("div",null,[e(c,{class:"!border-none",shadow:"never"},{default:l(()=>[e(x,{class:"mb-[-16px]",model:o(t),inline:""},{default:l(()=>[e(i,{label:"\u7BA1\u7406\u5458\u540D\u79F0",prop:"name"},{default:l(()=>[e(k,{class:"w-[280px]",modelValue:o(t).name,"onUpdate:modelValue":u[0]||(u[0]=a=>o(t).name=a),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u7BA1\u7406\u5458\u540D\u79F0"},null,8,["modelValue"])]),_:1}),e(i,{label:"\u8BF7\u9009\u62E9\u7BA1\u7406\u5458\u89D2\u8272",prop:"role_id"},{default:l(()=>[e(y,{class:"w-[280px]",modelValue:o(t).role_id,"onUpdate:modelValue":u[1]||(u[1]=a=>o(t).role_id=a)},{default:l(()=>[e(d,{label:"\u5168\u90E8",value:""}),(r(!0),f(W,null,X(o(g).role,(a,N)=>(r(),b(d,{key:N,label:a.name,value:a.id},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1}),e(i,null,{default:l(()=>[e(_,{type:"primary",onClick:o(V)},{default:l(()=>[F("\u67E5\u8BE2")]),_:1},8,["onClick"]),e(_,{onClick:o(D)},{default:l(()=>[F("\u91CD\u7F6E")]),_:1},8,["onClick"])]),_:1})]),_:1},8,["model"])]),_:1}),Y((r(),b(c,{class:"!border-none",shadow:"never"},{default:l(()=>[w("div",ee,[e(L,{data:o(s).lists,onCellClick:B},{default:l(()=>[e(n,{label:"\u8D26\u53F7",prop:"account","min-width":"120"}),e(n,{label:"\u540D\u79F0",prop:"name","min-width":"100"}),e(n,{label:"\u89D2\u8272",prop:"role_name","min-width":"100","show-tooltip-when-overflow":""}),e(n,{label:"\u90E8\u95E8",prop:"dept_name","min-width":"100","show-tooltip-when-overflow":""}),e(n,{label:"\u521B\u5EFA\u65F6\u95F4",prop:"create_time","min-width":"180"}),e(n,{label:"\u6700\u8FD1\u767B\u5F55\u65F6\u95F4",prop:"login_time","min-width":"180"}),e(n,{label:"\u6700\u8FD1\u767B\u5F55IP",prop:"login_ip","min-width":"120"})]),_:1},8,["data"])]),w("div",oe,[e(P,{modelValue:o(s),"onUpdate:modelValue":u[2]||(u[2]=a=>Z(s)?s.value=a:null),onChange:o(m)},null,8,["modelValue","onChange"])])]),_:1})),[[A,o(s).loading]])])}}});export{me as _}; diff --git a/public/admin/assets/dialog_index_man.vue_vue_type_script_setup_true_name_companyLists_lang.be34fc0b.js b/public/admin/assets/dialog_index_man.vue_vue_type_script_setup_true_name_companyLists_lang.be34fc0b.js new file mode 100644 index 000000000..391081891 --- /dev/null +++ b/public/admin/assets/dialog_index_man.vue_vue_type_script_setup_true_name_companyLists_lang.be34fc0b.js @@ -0,0 +1 @@ +import{B as I,C as T,M as U,N as O,w as M,D as R,I as $,O as j,P as q,Q as K}from"./element-plus.4328d892.js";import{_ as Q}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{u as S}from"./usePaging.2ad8e1e6.js";import{r as z}from"./role.1c72c4c7.js";import{a as G}from"./useDictOptions.8d37e54b.js";import{a as H}from"./admin.f28da7a1.js";import{d as E,$ as J,o as r,c as f,U as e,L as l,u as o,T as W,a7 as X,K as b,R as F,M as Y,a as w,k as Z}from"./@vue.51d7f2d8.js";const ee={class:"mt-4"},oe={class:"flex mt-4 justify-end"},le=E({name:"companyLists"}),me=E({...le,props:{type:{type:Number,defualt:0}},emits:["customEvent"],setup(h,{emit:v}){const C=h,{optionsData:g}=G({role:{api:z}}),t=J({name:"",role_id:""});C.type==8&&(t.role_id=8);const B=p=>{v("customEvent",p)},{pager:s,getLists:m,resetParams:D,resetPage:V}=S({fetchFun:H,params:t});return m(),(p,u)=>{const k=I,i=T,d=U,y=O,_=M,x=R,c=$,n=j,L=q,P=Q,A=K;return r(),f("div",null,[e(c,{class:"!border-none",shadow:"never"},{default:l(()=>[e(x,{class:"mb-[-16px]",model:o(t),inline:""},{default:l(()=>[e(i,{label:"\u7BA1\u7406\u5458\u540D\u79F0",prop:"name"},{default:l(()=>[e(k,{class:"w-[280px]",modelValue:o(t).name,"onUpdate:modelValue":u[0]||(u[0]=a=>o(t).name=a),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u7BA1\u7406\u5458\u540D\u79F0"},null,8,["modelValue"])]),_:1}),e(i,{label:"\u8BF7\u9009\u62E9\u7BA1\u7406\u5458\u89D2\u8272",prop:"role_id"},{default:l(()=>[e(y,{class:"w-[280px]",modelValue:o(t).role_id,"onUpdate:modelValue":u[1]||(u[1]=a=>o(t).role_id=a)},{default:l(()=>[e(d,{label:"\u5168\u90E8",value:""}),(r(!0),f(W,null,X(o(g).role,(a,N)=>(r(),b(d,{key:N,label:a.name,value:a.id},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1}),e(i,null,{default:l(()=>[e(_,{type:"primary",onClick:o(V)},{default:l(()=>[F("\u67E5\u8BE2")]),_:1},8,["onClick"]),e(_,{onClick:o(D)},{default:l(()=>[F("\u91CD\u7F6E")]),_:1},8,["onClick"])]),_:1})]),_:1},8,["model"])]),_:1}),Y((r(),b(c,{class:"!border-none",shadow:"never"},{default:l(()=>[w("div",ee,[e(L,{data:o(s).lists,onCellClick:B},{default:l(()=>[e(n,{label:"\u8D26\u53F7",prop:"account","min-width":"120"}),e(n,{label:"\u540D\u79F0",prop:"name","min-width":"100"}),e(n,{label:"\u89D2\u8272",prop:"role_name","min-width":"100","show-tooltip-when-overflow":""}),e(n,{label:"\u90E8\u95E8",prop:"dept_name","min-width":"100","show-tooltip-when-overflow":""}),e(n,{label:"\u521B\u5EFA\u65F6\u95F4",prop:"create_time","min-width":"180"}),e(n,{label:"\u6700\u8FD1\u767B\u5F55\u65F6\u95F4",prop:"login_time","min-width":"180"}),e(n,{label:"\u6700\u8FD1\u767B\u5F55IP",prop:"login_ip","min-width":"120"})]),_:1},8,["data"])]),w("div",oe,[e(P,{modelValue:o(s),"onUpdate:modelValue":u[2]||(u[2]=a=>Z(s)?s.value=a:null),onChange:o(m)},null,8,["modelValue","onChange"])])]),_:1})),[[A,o(s).loading]])])}}});export{me as _}; diff --git a/public/admin/assets/dialog_index_personnel.2289c7e0.js b/public/admin/assets/dialog_index_personnel.2289c7e0.js new file mode 100644 index 000000000..cb98c58d7 --- /dev/null +++ b/public/admin/assets/dialog_index_personnel.2289c7e0.js @@ -0,0 +1 @@ +import"./dialog_index_personnel.vue_vue_type_script_setup_true_name_companyLists_lang.7fc490f9.js";import{_ as Q}from"./dialog_index_personnel.vue_vue_type_script_setup_true_name_companyLists_lang.7fc490f9.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./usePaging.2ad8e1e6.js";import"./role.8d2a6d5e.js";import"./index.37f7aea6.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./useDictOptions.a45fc8ac.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";export{Q as default}; diff --git a/public/admin/assets/dialog_index_personnel.2d243adb.js b/public/admin/assets/dialog_index_personnel.2d243adb.js new file mode 100644 index 000000000..1cad0f4bd --- /dev/null +++ b/public/admin/assets/dialog_index_personnel.2d243adb.js @@ -0,0 +1 @@ +import{B as A,C as I,M as N,N as T,w as U,D as O,I as M,O as R,P as $,Q as j}from"./element-plus.4328d892.js";import{_ as q}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{u as K}from"./usePaging.2ad8e1e6.js";import{r as Q}from"./role.1c72c4c7.js";import{a as S}from"./useDictOptions.8d37e54b.js";import{a as z}from"./admin.f28da7a1.js";import{d as E,$ as G,o as m,c as f,U as e,L as t,u as o,T as H,a7 as J,K as b,R as F,M as W,a as w,k as X}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.ed71ac09.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const Y={class:"mt-4"},Z={class:"flex mt-4 justify-end"},ee=E({name:"companyLists"}),je=E({...ee,emits:["customEvent"],setup(oe,{emit:h}){const{optionsData:v}=S({role:{api:Q}}),n=G({name:"",role_id:""}),C=p=>{h("customEvent",p)},{pager:i,getLists:s,resetParams:g,resetPage:B}=K({fetchFun:z,params:n});return s(),(p,r)=>{const D=A,u=I,d=N,V=T,_=U,k=O,c=M,a=R,x=$,y=q,L=j;return m(),f("div",null,[e(c,{class:"!border-none",shadow:"never"},{default:t(()=>[e(k,{class:"mb-[-16px]",model:o(n),inline:""},{default:t(()=>[e(u,{label:"\u7BA1\u7406\u5458\u540D\u79F0",prop:"name"},{default:t(()=>[e(D,{class:"w-[280px]",modelValue:o(n).name,"onUpdate:modelValue":r[0]||(r[0]=l=>o(n).name=l),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u7BA1\u7406\u5458\u540D\u79F0"},null,8,["modelValue"])]),_:1}),e(u,{label:"\u8BF7\u9009\u62E9\u7BA1\u7406\u5458\u89D2\u8272",prop:"role_id"},{default:t(()=>[e(V,{class:"w-[280px]",modelValue:o(n).role_id,"onUpdate:modelValue":r[1]||(r[1]=l=>o(n).role_id=l)},{default:t(()=>[e(d,{label:"\u5168\u90E8",value:""}),(m(!0),f(H,null,J(o(v).role,(l,P)=>(m(),b(d,{key:P,label:l.name,value:l.id},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1}),e(u,null,{default:t(()=>[e(_,{type:"primary",onClick:o(B)},{default:t(()=>[F("\u67E5\u8BE2")]),_:1},8,["onClick"]),e(_,{onClick:o(g)},{default:t(()=>[F("\u91CD\u7F6E")]),_:1},8,["onClick"])]),_:1})]),_:1},8,["model"])]),_:1}),W((m(),b(c,{class:"!border-none",shadow:"never"},{default:t(()=>[w("div",Y,[e(x,{data:o(i).lists,onCellClick:C},{default:t(()=>[e(a,{label:"\u8D26\u53F7",prop:"account","min-width":"120"}),e(a,{label:"\u540D\u79F0",prop:"name","min-width":"100"}),e(a,{label:"\u89D2\u8272",prop:"role_name","min-width":"100","show-tooltip-when-overflow":""}),e(a,{label:"\u90E8\u95E8",prop:"dept_name","min-width":"100","show-tooltip-when-overflow":""}),e(a,{label:"\u521B\u5EFA\u65F6\u95F4",prop:"create_time","min-width":"180"}),e(a,{label:"\u6700\u8FD1\u767B\u5F55\u65F6\u95F4",prop:"login_time","min-width":"180"}),e(a,{label:"\u6700\u8FD1\u767B\u5F55IP",prop:"login_ip","min-width":"120"})]),_:1},8,["data"])]),w("div",Z,[e(y,{modelValue:o(i),"onUpdate:modelValue":r[2]||(r[2]=l=>X(i)?i.value=l:null),onChange:o(s)},null,8,["modelValue","onChange"])])]),_:1})),[[L,o(i).loading]])])}}});export{je as default}; diff --git a/public/admin/assets/dialog_index_personnel.365a3ede.js b/public/admin/assets/dialog_index_personnel.365a3ede.js new file mode 100644 index 000000000..fcf1c9cc8 --- /dev/null +++ b/public/admin/assets/dialog_index_personnel.365a3ede.js @@ -0,0 +1 @@ +import"./dialog_index_personnel.vue_vue_type_script_setup_true_name_companyLists_lang.e9155591.js";import{_ as Q}from"./dialog_index_personnel.vue_vue_type_script_setup_true_name_companyLists_lang.e9155591.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./usePaging.2ad8e1e6.js";import"./role.1c72c4c7.js";import"./index.ed71ac09.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./useDictOptions.8d37e54b.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";export{Q as default}; diff --git a/public/admin/assets/dialog_index_personnel.3eb4ff01.js b/public/admin/assets/dialog_index_personnel.3eb4ff01.js new file mode 100644 index 000000000..27cc3a526 --- /dev/null +++ b/public/admin/assets/dialog_index_personnel.3eb4ff01.js @@ -0,0 +1 @@ +import"./dialog_index_personnel.vue_vue_type_script_setup_true_name_companyLists_lang.ddb96626.js";import{_ as Q}from"./dialog_index_personnel.vue_vue_type_script_setup_true_name_companyLists_lang.ddb96626.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./usePaging.2ad8e1e6.js";import"./role.41d5883e.js";import"./index.aa9bb752.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./useDictOptions.a61fcf9f.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";export{Q as default}; diff --git a/public/admin/assets/dialog_index_personnel.aa26d421.js b/public/admin/assets/dialog_index_personnel.aa26d421.js new file mode 100644 index 000000000..c85b6aab7 --- /dev/null +++ b/public/admin/assets/dialog_index_personnel.aa26d421.js @@ -0,0 +1 @@ +import{B as A,C as I,M as N,N as T,w as U,D as O,I as M,O as R,P as $,Q as j}from"./element-plus.4328d892.js";import{_ as q}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{u as K}from"./usePaging.2ad8e1e6.js";import{r as Q}from"./role.41d5883e.js";import{a as S}from"./useDictOptions.a61fcf9f.js";import{a as z}from"./admin.1cd61358.js";import{d as E,$ as G,o as m,c as f,U as e,L as t,u as o,T as H,a7 as J,K as b,R as F,M as W,a as w,k as X}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.aa9bb752.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const Y={class:"mt-4"},Z={class:"flex mt-4 justify-end"},ee=E({name:"companyLists"}),je=E({...ee,emits:["customEvent"],setup(oe,{emit:h}){const{optionsData:v}=S({role:{api:Q}}),n=G({name:"",role_id:""}),C=p=>{h("customEvent",p)},{pager:i,getLists:s,resetParams:g,resetPage:B}=K({fetchFun:z,params:n});return s(),(p,r)=>{const D=A,u=I,d=N,V=T,_=U,k=O,c=M,a=R,x=$,y=q,L=j;return m(),f("div",null,[e(c,{class:"!border-none",shadow:"never"},{default:t(()=>[e(k,{class:"mb-[-16px]",model:o(n),inline:""},{default:t(()=>[e(u,{label:"\u7BA1\u7406\u5458\u540D\u79F0",prop:"name"},{default:t(()=>[e(D,{class:"w-[280px]",modelValue:o(n).name,"onUpdate:modelValue":r[0]||(r[0]=l=>o(n).name=l),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u7BA1\u7406\u5458\u540D\u79F0"},null,8,["modelValue"])]),_:1}),e(u,{label:"\u8BF7\u9009\u62E9\u7BA1\u7406\u5458\u89D2\u8272",prop:"role_id"},{default:t(()=>[e(V,{class:"w-[280px]",modelValue:o(n).role_id,"onUpdate:modelValue":r[1]||(r[1]=l=>o(n).role_id=l)},{default:t(()=>[e(d,{label:"\u5168\u90E8",value:""}),(m(!0),f(H,null,J(o(v).role,(l,P)=>(m(),b(d,{key:P,label:l.name,value:l.id},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1}),e(u,null,{default:t(()=>[e(_,{type:"primary",onClick:o(B)},{default:t(()=>[F("\u67E5\u8BE2")]),_:1},8,["onClick"]),e(_,{onClick:o(g)},{default:t(()=>[F("\u91CD\u7F6E")]),_:1},8,["onClick"])]),_:1})]),_:1},8,["model"])]),_:1}),W((m(),b(c,{class:"!border-none",shadow:"never"},{default:t(()=>[w("div",Y,[e(x,{data:o(i).lists,onCellClick:C},{default:t(()=>[e(a,{label:"\u8D26\u53F7",prop:"account","min-width":"120"}),e(a,{label:"\u540D\u79F0",prop:"name","min-width":"100"}),e(a,{label:"\u89D2\u8272",prop:"role_name","min-width":"100","show-tooltip-when-overflow":""}),e(a,{label:"\u90E8\u95E8",prop:"dept_name","min-width":"100","show-tooltip-when-overflow":""}),e(a,{label:"\u521B\u5EFA\u65F6\u95F4",prop:"create_time","min-width":"180"}),e(a,{label:"\u6700\u8FD1\u767B\u5F55\u65F6\u95F4",prop:"login_time","min-width":"180"}),e(a,{label:"\u6700\u8FD1\u767B\u5F55IP",prop:"login_ip","min-width":"120"})]),_:1},8,["data"])]),w("div",Z,[e(y,{modelValue:o(i),"onUpdate:modelValue":r[2]||(r[2]=l=>X(i)?i.value=l:null),onChange:o(s)},null,8,["modelValue","onChange"])])]),_:1})),[[L,o(i).loading]])])}}});export{je as default}; diff --git a/public/admin/assets/dialog_index_personnel.bd885d34.js b/public/admin/assets/dialog_index_personnel.bd885d34.js new file mode 100644 index 000000000..0fb69f233 --- /dev/null +++ b/public/admin/assets/dialog_index_personnel.bd885d34.js @@ -0,0 +1 @@ +import{B as A,C as I,M as N,N as T,w as U,D as O,I as M,O as R,P as $,Q as j}from"./element-plus.4328d892.js";import{_ as q}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{u as K}from"./usePaging.2ad8e1e6.js";import{r as Q}from"./role.8d2a6d5e.js";import{a as S}from"./useDictOptions.a45fc8ac.js";import{a as z}from"./admin.f0e2c7b9.js";import{d as E,$ as G,o as m,c as f,U as e,L as t,u as o,T as H,a7 as J,K as b,R as F,M as W,a as w,k as X}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.37f7aea6.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const Y={class:"mt-4"},Z={class:"flex mt-4 justify-end"},ee=E({name:"companyLists"}),je=E({...ee,emits:["customEvent"],setup(oe,{emit:h}){const{optionsData:v}=S({role:{api:Q}}),n=G({name:"",role_id:""}),C=p=>{h("customEvent",p)},{pager:i,getLists:s,resetParams:g,resetPage:B}=K({fetchFun:z,params:n});return s(),(p,r)=>{const D=A,u=I,d=N,V=T,_=U,k=O,c=M,a=R,x=$,y=q,L=j;return m(),f("div",null,[e(c,{class:"!border-none",shadow:"never"},{default:t(()=>[e(k,{class:"mb-[-16px]",model:o(n),inline:""},{default:t(()=>[e(u,{label:"\u7BA1\u7406\u5458\u540D\u79F0",prop:"name"},{default:t(()=>[e(D,{class:"w-[280px]",modelValue:o(n).name,"onUpdate:modelValue":r[0]||(r[0]=l=>o(n).name=l),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u7BA1\u7406\u5458\u540D\u79F0"},null,8,["modelValue"])]),_:1}),e(u,{label:"\u8BF7\u9009\u62E9\u7BA1\u7406\u5458\u89D2\u8272",prop:"role_id"},{default:t(()=>[e(V,{class:"w-[280px]",modelValue:o(n).role_id,"onUpdate:modelValue":r[1]||(r[1]=l=>o(n).role_id=l)},{default:t(()=>[e(d,{label:"\u5168\u90E8",value:""}),(m(!0),f(H,null,J(o(v).role,(l,P)=>(m(),b(d,{key:P,label:l.name,value:l.id},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1}),e(u,null,{default:t(()=>[e(_,{type:"primary",onClick:o(B)},{default:t(()=>[F("\u67E5\u8BE2")]),_:1},8,["onClick"]),e(_,{onClick:o(g)},{default:t(()=>[F("\u91CD\u7F6E")]),_:1},8,["onClick"])]),_:1})]),_:1},8,["model"])]),_:1}),W((m(),b(c,{class:"!border-none",shadow:"never"},{default:t(()=>[w("div",Y,[e(x,{data:o(i).lists,onCellClick:C},{default:t(()=>[e(a,{label:"\u8D26\u53F7",prop:"account","min-width":"120"}),e(a,{label:"\u540D\u79F0",prop:"name","min-width":"100"}),e(a,{label:"\u89D2\u8272",prop:"role_name","min-width":"100","show-tooltip-when-overflow":""}),e(a,{label:"\u90E8\u95E8",prop:"dept_name","min-width":"100","show-tooltip-when-overflow":""}),e(a,{label:"\u521B\u5EFA\u65F6\u95F4",prop:"create_time","min-width":"180"}),e(a,{label:"\u6700\u8FD1\u767B\u5F55\u65F6\u95F4",prop:"login_time","min-width":"180"}),e(a,{label:"\u6700\u8FD1\u767B\u5F55IP",prop:"login_ip","min-width":"120"})]),_:1},8,["data"])]),w("div",Z,[e(y,{modelValue:o(i),"onUpdate:modelValue":r[2]||(r[2]=l=>X(i)?i.value=l:null),onChange:o(s)},null,8,["modelValue","onChange"])])]),_:1})),[[L,o(i).loading]])])}}});export{je as default}; diff --git a/public/admin/assets/dialog_index_personnel.vue_vue_type_script_setup_true_name_companyLists_lang.7fc490f9.js b/public/admin/assets/dialog_index_personnel.vue_vue_type_script_setup_true_name_companyLists_lang.7fc490f9.js new file mode 100644 index 000000000..219c9ecd3 --- /dev/null +++ b/public/admin/assets/dialog_index_personnel.vue_vue_type_script_setup_true_name_companyLists_lang.7fc490f9.js @@ -0,0 +1 @@ +import{O as C,P as y,I as k,Q as x}from"./element-plus.4328d892.js";import{_ as D}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{u as E}from"./usePaging.2ad8e1e6.js";import{r as B}from"./role.8d2a6d5e.js";import{a as F}from"./useDictOptions.a45fc8ac.js";import{w as L}from"./index.37f7aea6.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import{d,$ as P,o as p,c as V,M as N,u as t,K as U,L as s,a as l,U as e,k as O}from"./@vue.51d7f2d8.js";const T={class:"mt-4"},$=["src"],j={class:"flex mt-4 justify-end"},q=d({name:"companyLists"}),J=d({...q,props:{company_id:{type:String||Number,defaults:0}},emits:["customEvent"],setup(u,{emit:_}){const f=u;F({role:{api:B}});const i=P({company_id:""});i.company_id=f.company_id;const h=m=>{_("customEvent",m)},{pager:o,getLists:r,resetParams:A,resetPage:I}=E({fetchFun:L,params:i});return r(),(m,c)=>{const a=C,g=y,w=D,v=k,b=x;return p(),V("div",null,[N((p(),U(v,{class:"!border-none",shadow:"never"},{default:s(()=>[l("div",T,[e(g,{data:t(o).lists,onCellClick:h},{default:s(()=>[e(a,{label:"\u8D26\u53F7",prop:"account","min-width":"120"}),e(a,{label:"\u5934\u50CF",prop:"avatar","min-width":"80"},{default:s(({row:n})=>[l("img",{style:{width:"50px",height:"50px"},src:n.avatar},null,8,$)]),_:1}),e(a,{label:"\u540D\u79F0",prop:"nickname","min-width":"100"}),e(a,{label:"\u7535\u8BDD",prop:"mobile","min-width":"140","show-tooltip-when-overflow":""}),e(a,{label:"\u516C\u53F8",prop:"company.company_name","min-width":"160","show-tooltip-when-overflow":""})]),_:1},8,["data"])]),l("div",j,[e(w,{modelValue:t(o),"onUpdate:modelValue":c[0]||(c[0]=n=>O(o)?o.value=n:null),onChange:t(r)},null,8,["modelValue","onChange"])])]),_:1})),[[b,t(o).loading]])])}}});export{J as _}; diff --git a/public/admin/assets/dialog_index_personnel.vue_vue_type_script_setup_true_name_companyLists_lang.ddb96626.js b/public/admin/assets/dialog_index_personnel.vue_vue_type_script_setup_true_name_companyLists_lang.ddb96626.js new file mode 100644 index 000000000..1c5ca5945 --- /dev/null +++ b/public/admin/assets/dialog_index_personnel.vue_vue_type_script_setup_true_name_companyLists_lang.ddb96626.js @@ -0,0 +1 @@ +import{O as C,P as y,I as k,Q as x}from"./element-plus.4328d892.js";import{_ as D}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{u as E}from"./usePaging.2ad8e1e6.js";import{r as B}from"./role.41d5883e.js";import{a as F}from"./useDictOptions.a61fcf9f.js";import{w as L}from"./index.aa9bb752.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import{d,$ as P,o as p,c as V,M as N,u as t,K as U,L as s,a as l,U as e,k as O}from"./@vue.51d7f2d8.js";const T={class:"mt-4"},$=["src"],j={class:"flex mt-4 justify-end"},q=d({name:"companyLists"}),J=d({...q,props:{company_id:{type:String||Number,defaults:0}},emits:["customEvent"],setup(u,{emit:_}){const f=u;F({role:{api:B}});const i=P({company_id:""});i.company_id=f.company_id;const h=m=>{_("customEvent",m)},{pager:o,getLists:r,resetParams:A,resetPage:I}=E({fetchFun:L,params:i});return r(),(m,c)=>{const a=C,g=y,w=D,v=k,b=x;return p(),V("div",null,[N((p(),U(v,{class:"!border-none",shadow:"never"},{default:s(()=>[l("div",T,[e(g,{data:t(o).lists,onCellClick:h},{default:s(()=>[e(a,{label:"\u8D26\u53F7",prop:"account","min-width":"120"}),e(a,{label:"\u5934\u50CF",prop:"avatar","min-width":"80"},{default:s(({row:n})=>[l("img",{style:{width:"50px",height:"50px"},src:n.avatar},null,8,$)]),_:1}),e(a,{label:"\u540D\u79F0",prop:"nickname","min-width":"100"}),e(a,{label:"\u7535\u8BDD",prop:"mobile","min-width":"140","show-tooltip-when-overflow":""}),e(a,{label:"\u516C\u53F8",prop:"company.company_name","min-width":"160","show-tooltip-when-overflow":""})]),_:1},8,["data"])]),l("div",j,[e(w,{modelValue:t(o),"onUpdate:modelValue":c[0]||(c[0]=n=>O(o)?o.value=n:null),onChange:t(r)},null,8,["modelValue","onChange"])])]),_:1})),[[b,t(o).loading]])])}}});export{J as _}; diff --git a/public/admin/assets/dialog_index_personnel.vue_vue_type_script_setup_true_name_companyLists_lang.e9155591.js b/public/admin/assets/dialog_index_personnel.vue_vue_type_script_setup_true_name_companyLists_lang.e9155591.js new file mode 100644 index 000000000..356b25cf0 --- /dev/null +++ b/public/admin/assets/dialog_index_personnel.vue_vue_type_script_setup_true_name_companyLists_lang.e9155591.js @@ -0,0 +1 @@ +import{O as C,P as y,I as k,Q as x}from"./element-plus.4328d892.js";import{_ as D}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{u as E}from"./usePaging.2ad8e1e6.js";import{r as B}from"./role.1c72c4c7.js";import{a as F}from"./useDictOptions.8d37e54b.js";import{w as L}from"./index.ed71ac09.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import{d,$ as P,o as p,c as V,M as N,u as t,K as U,L as s,a as l,U as e,k as O}from"./@vue.51d7f2d8.js";const T={class:"mt-4"},$=["src"],j={class:"flex mt-4 justify-end"},q=d({name:"companyLists"}),J=d({...q,props:{company_id:{type:String||Number,defaults:0}},emits:["customEvent"],setup(u,{emit:_}){const f=u;F({role:{api:B}});const i=P({company_id:""});i.company_id=f.company_id;const h=m=>{_("customEvent",m)},{pager:o,getLists:r,resetParams:A,resetPage:I}=E({fetchFun:L,params:i});return r(),(m,c)=>{const a=C,g=y,w=D,v=k,b=x;return p(),V("div",null,[N((p(),U(v,{class:"!border-none",shadow:"never"},{default:s(()=>[l("div",T,[e(g,{data:t(o).lists,onCellClick:h},{default:s(()=>[e(a,{label:"\u8D26\u53F7",prop:"account","min-width":"120"}),e(a,{label:"\u5934\u50CF",prop:"avatar","min-width":"80"},{default:s(({row:n})=>[l("img",{style:{width:"50px",height:"50px"},src:n.avatar},null,8,$)]),_:1}),e(a,{label:"\u540D\u79F0",prop:"nickname","min-width":"100"}),e(a,{label:"\u7535\u8BDD",prop:"mobile","min-width":"140","show-tooltip-when-overflow":""}),e(a,{label:"\u516C\u53F8",prop:"company.company_name","min-width":"160","show-tooltip-when-overflow":""})]),_:1},8,["data"])]),l("div",j,[e(w,{modelValue:t(o),"onUpdate:modelValue":c[0]||(c[0]=n=>O(o)?o.value=n:null),onChange:t(r)},null,8,["modelValue","onChange"])])]),_:1})),[[b,t(o).loading]])])}}});export{J as _}; diff --git a/public/admin/assets/dict.58face92.js b/public/admin/assets/dict.58face92.js new file mode 100644 index 000000000..84c4b9f67 --- /dev/null +++ b/public/admin/assets/dict.58face92.js @@ -0,0 +1 @@ +import{r as i}from"./index.37f7aea6.js";function d(t){return i.get({url:"/setting.dict.dict_type/lists",params:t})}function n(t){return i.get({url:"/setting.dict.dict_type/all",params:t})}function c(t){return i.post({url:"/setting.dict.dict_type/add",params:t})}function r(t){return i.post({url:"/setting.dict.dict_type/edit",params:t})}function s(t){return i.post({url:"/setting.dict.dict_type/delete",params:t})}function a(t){return i.get({url:"/setting.dict.dict_data/lists",params:t},{ignoreCancelToken:!0})}function u(t){return i.post({url:"/setting.dict.dict_data/add",params:t})}function l(t){return i.post({url:"/setting.dict.dict_data/edit",params:t})}function o(t){return i.post({url:"/setting.dict.dict_data/delete",params:t})}export{n as a,l as b,u as c,a as d,o as e,d as f,r as g,c as h,s as i}; diff --git a/public/admin/assets/dict.6c560e38.js b/public/admin/assets/dict.6c560e38.js new file mode 100644 index 000000000..0eee93e20 --- /dev/null +++ b/public/admin/assets/dict.6c560e38.js @@ -0,0 +1 @@ +import{r as i}from"./index.ed71ac09.js";function d(t){return i.get({url:"/setting.dict.dict_type/lists",params:t})}function n(t){return i.get({url:"/setting.dict.dict_type/all",params:t})}function c(t){return i.post({url:"/setting.dict.dict_type/add",params:t})}function r(t){return i.post({url:"/setting.dict.dict_type/edit",params:t})}function s(t){return i.post({url:"/setting.dict.dict_type/delete",params:t})}function a(t){return i.get({url:"/setting.dict.dict_data/lists",params:t},{ignoreCancelToken:!0})}function u(t){return i.post({url:"/setting.dict.dict_data/add",params:t})}function l(t){return i.post({url:"/setting.dict.dict_data/edit",params:t})}function o(t){return i.post({url:"/setting.dict.dict_data/delete",params:t})}export{n as a,l as b,u as c,a as d,o as e,d as f,r as g,c as h,s as i}; diff --git a/public/admin/assets/dict.927f1fc7.js b/public/admin/assets/dict.927f1fc7.js new file mode 100644 index 000000000..9bea48178 --- /dev/null +++ b/public/admin/assets/dict.927f1fc7.js @@ -0,0 +1 @@ +import{r as i}from"./index.aa9bb752.js";function d(t){return i.get({url:"/setting.dict.dict_type/lists",params:t})}function n(t){return i.get({url:"/setting.dict.dict_type/all",params:t})}function c(t){return i.post({url:"/setting.dict.dict_type/add",params:t})}function r(t){return i.post({url:"/setting.dict.dict_type/edit",params:t})}function s(t){return i.post({url:"/setting.dict.dict_type/delete",params:t})}function a(t){return i.get({url:"/setting.dict.dict_data/lists",params:t},{ignoreCancelToken:!0})}function u(t){return i.post({url:"/setting.dict.dict_data/add",params:t})}function l(t){return i.post({url:"/setting.dict.dict_data/edit",params:t})}function o(t){return i.post({url:"/setting.dict.dict_data/delete",params:t})}export{n as a,l as b,u as c,a as d,o as e,d as f,r as g,c as h,s as i}; diff --git a/public/admin/assets/edit copy 2.1ea5071e.js b/public/admin/assets/edit copy 2.1ea5071e.js new file mode 100644 index 000000000..22192a60e --- /dev/null +++ b/public/admin/assets/edit copy 2.1ea5071e.js @@ -0,0 +1 @@ +import{B as K,C as M,a1 as Q,M as $,N as G,a2 as H,t as J,D as W}from"./element-plus.4328d892.js";import{P as X}from"./index.fa872673.js";import{a as Y}from"./useDictOptions.a61fcf9f.js";import{b as Z,c as ee,d as te}from"./admin.1cd61358.js";import{r as ae}from"./role.41d5883e.js";import{e as oe}from"./post.5d32b419.js";import{d as le}from"./department.5076f65d.js";import{b as ue,c as re,d as se}from"./common.86798ce6.js";import{d as ne,s as h,r as ie,e as de,$ as g,o as d,c,U as a,L as u,u as l,T as b,a7 as y,K as _,Q as pe,a as me}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.aa9bb752.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const ce={class:"edit-popup"},_e=me("div",{style:{"font-size":"1.2rem",margin:"10px 0"}},"\u57FA\u672C\u4FE1\u606F\u521B\u5EFA",-1),lt=ne({__name:"edit copy 2",emits:["success","close"],setup(fe,{expose:D,emit:v}){const E=h(),B=h(),w=ie("add"),A=de(()=>w.value=="edit"?"\u7F16\u8F91\u7BA1\u7406\u5458":"\u65B0\u589E\u7BA1\u7406\u5458"),t=g({id:"",account:"",sex:1,id_card:"",name:"",province:"",city:"",area:"",street:"",address:"",phone:"",qualification:{id_card:"",car_card:"",bank_account:""},is_contract:0,dept_id:[],jobs_id:[],role_id:[],avatar:"",password:"",password_confirm:"",disable:0,multipoint_login:1,root:0}),p=g({provinceOptions:[],cityOptions:[],areaOptions:[],streetOptions:[],dictTypeLists:[],contract_type:[]}),C=(r,e,s)=>{t.password&&(e||s(new Error("\u8BF7\u518D\u6B21\u8F93\u5165\u5BC6\u7801")),e!==t.password&&s(new Error("\u4E24\u6B21\u8F93\u5165\u5BC6\u7801\u4E0D\u4E00\u81F4!"))),s()},V=g({account:[{required:!0,message:"\u8BF7\u8F93\u5165\u8D26\u53F7",trigger:["blur"]}],name:[{required:!0,message:"\u8BF7\u8F93\u5165\u540D\u79F0",trigger:["blur"]}],role_id:[{type:"array",required:!0,message:"\u8BF7\u9009\u62E9\u89D2\u8272",trigger:["blur"]}],password:[{required:!0,message:"\u8BF7\u8F93\u5165\u5BC6\u7801",trigger:["blur"]}],password_confirm:[{required:!0,message:"\u8BF7\u8F93\u5165\u786E\u8BA4\u5BC6\u7801",trigger:["blur"]},{validator:C,trigger:"blur"}]});Y({role:{api:ae},jobs:{api:oe},dept:{api:le}});const O=async()=>{var r,e;await((r=E.value)==null?void 0:r.validate()),w.value=="edit"?await Z(t):await ee(t),(e=B.value)==null||e.close(),v("success")},U=(r="add")=>{var e;w.value=r,(e=B.value)==null||e.open()};function k(r){t.province=r,q(r)}function x(r){t.city=r,S(r)}function L(r){t.area=r,N(r)}function R(r){t.street=r}const q=async r=>{const e=await ue({city:r});p.cityOptions=e},S=async r=>{const e=await re({area:r});p.areaOptions=e},N=async r=>{const e=await se({street:r});p.streetOptions=e},j=async r=>{V.password=[],V.password_confirm=[{validator:C,trigger:"blur"}];const e=await te({id:r.id});for(const s in t)e[s]!=null&&e[s]!=null&&(t[s]=e[s])},T=()=>{v("close")};return D({open:U,setFormData:j}),(r,e)=>{const s=K,n=M,i=Q,f=$,F=G,I=H,P=J,z=W;return d(),c("div",ce,[a(X,{ref_key:"popupRef",ref:B,title:l(A),async:!0,width:"80%",onConfirm:O,onClose:T},{default:u(()=>[a(z,{ref_key:"formRef",ref:E,model:l(t),"label-width":"84px",rules:l(V)},{default:u(()=>[_e,a(i,{span:24,class:"pt-6 !border-none"},{default:u(()=>[a(I,null,{default:u(()=>[a(i,{span:12},{default:u(()=>[a(n,{label:"\u59D3\u540D",prop:"name"},{default:u(()=>[a(s,{modelValue:l(t).name,"onUpdate:modelValue":e[0]||(e[0]=o=>l(t).name=o),placeholder:"\u8BF7\u8F93\u5165\u59D3\u540D",clearable:"",style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),a(i,{span:12},{default:u(()=>[a(n,{label:"\u6027\u522B",prop:"sex"},{default:u(()=>[a(s,{modelValue:l(t).sex,"onUpdate:modelValue":e[1]||(e[1]=o=>l(t).sex=o),placeholder:"\u8BF7\u8F93\u5165\u6027\u522B",clearable:"",style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),a(i,{span:12},{default:u(()=>[a(n,{label:"\u8EAB\u4EFD\u8BC1\u53F7",prop:"id_card"},{default:u(()=>[a(s,{modelValue:l(t).id_card,"onUpdate:modelValue":e[2]||(e[2]=o=>l(t).id_card=o),placeholder:"\u8BF7\u8F93\u5165\u8EAB\u4EFD\u8BC1\u53F7",clearable:"",style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),a(i,{span:12},{default:u(()=>[a(n,{label:"\u8054\u7CFB\u7535\u8BDD",prop:"phone"},{default:u(()=>[a(s,{modelValue:l(t).phone,"onUpdate:modelValue":e[3]||(e[3]=o=>l(t).phone=o),placeholder:"\u8BF7\u8F93\u5165\u8054\u7CFB\u7535\u8BDD",clearable:"",style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),a(i,{span:3},{default:u(()=>[a(n,{label:"\u7701",prop:"province"},{default:u(()=>[a(F,{modelValue:l(t).province,"onUpdate:modelValue":e[4]||(e[4]=o=>l(t).province=o),placeholder:"\u8BF7\u9009\u62E9\u7701",clearable:"",onChange:k,style:{width:"100%"}},{default:u(()=>[(d(!0),c(b,null,y(l(p).provinceOptions,(o,m)=>(d(),_(f,{key:m,label:o.province_name,value:o.province_code},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1})]),_:1}),a(i,{span:3},{default:u(()=>[a(n,{label:"\u5E02",prop:"city"},{default:u(()=>[a(F,{modelValue:l(t).city,"onUpdate:modelValue":e[5]||(e[5]=o=>l(t).city=o),placeholder:"\u8BF7\u9009\u62E9\u5E02",clearable:"",onChange:x,style:{width:"100%"}},{default:u(()=>[(d(!0),c(b,null,y(l(p).cityOptions,(o,m)=>(d(),_(f,{key:m,label:o.city_name,value:o.city_code},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1})]),_:1}),a(i,{span:3},{default:u(()=>[a(n,{label:"\u533A",prop:"area"},{default:u(()=>[a(F,{modelValue:l(t).area,"onUpdate:modelValue":e[6]||(e[6]=o=>l(t).area=o),placeholder:"\u8BF7\u9009\u62E9\u533A",clearable:"",onChange:L,style:{width:"100%"}},{default:u(()=>[(d(!0),c(b,null,y(l(p).areaOptions,(o,m)=>(d(),_(f,{key:m,label:o.area_name,value:o.area_code},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1})]),_:1}),a(i,{span:3},{default:u(()=>[a(n,{label:"\u9547",prop:"street"},{default:u(()=>[a(F,{modelValue:l(t).street,"onUpdate:modelValue":e[7]||(e[7]=o=>l(t).street=o),placeholder:"\u8BF7\u9009\u62E9\u9547",clearable:"",onChange:R,style:{width:"100%"}},{default:u(()=>[(d(!0),c(b,null,y(l(p).streetOptions,(o,m)=>(d(),_(f,{key:m,label:o.street_name,value:o.street_code},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1})]),_:1}),a(i,{span:12},{default:u(()=>[a(n,{label:"\u6751\u793E\u5C0F\u961F",prop:"address"},{default:u(()=>[a(s,{modelValue:l(t).address,"onUpdate:modelValue":e[8]||(e[8]=o=>l(t).address=o),placeholder:"\u8BF7\u8F93\u5165\u6751\u793E\u5C0F\u961F",clearable:"",style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1})]),_:1})]),_:1}),l(t).root!=1?(d(),_(n,{key:0,label:"\u7BA1\u7406\u5458\u72B6\u6001"},{default:u(()=>[a(P,{modelValue:l(t).disable,"onUpdate:modelValue":e[9]||(e[9]=o=>l(t).disable=o),"active-value":0,"inactive-value":1},null,8,["modelValue"])]),_:1})):pe("",!0)]),_:1},8,["model","rules"])]),_:1},8,["title"])])}}});export{lt as default}; diff --git a/public/admin/assets/edit copy 2.995f0b09.js b/public/admin/assets/edit copy 2.995f0b09.js new file mode 100644 index 000000000..69d92c948 --- /dev/null +++ b/public/admin/assets/edit copy 2.995f0b09.js @@ -0,0 +1 @@ +import{B as K,C as M,a1 as Q,M as $,N as G,a2 as H,t as J,D as W}from"./element-plus.4328d892.js";import{P as X}from"./index.b940d6e3.js";import{a as Y}from"./useDictOptions.8d37e54b.js";import{b as Z,c as ee,d as te}from"./admin.f28da7a1.js";import{r as ae}from"./role.1c72c4c7.js";import{e as oe}from"./post.53815820.js";import{d as le}from"./department.4e17bcb6.js";import{b as ue,c as re,d as se}from"./common.ac78ede6.js";import{d as ne,s as h,r as ie,e as de,$ as g,o as d,c,U as a,L as u,u as l,T as b,a7 as y,K as _,Q as pe,a as me}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.ed71ac09.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const ce={class:"edit-popup"},_e=me("div",{style:{"font-size":"1.2rem",margin:"10px 0"}},"\u57FA\u672C\u4FE1\u606F\u521B\u5EFA",-1),lt=ne({__name:"edit copy 2",emits:["success","close"],setup(fe,{expose:D,emit:v}){const E=h(),B=h(),w=ie("add"),A=de(()=>w.value=="edit"?"\u7F16\u8F91\u7BA1\u7406\u5458":"\u65B0\u589E\u7BA1\u7406\u5458"),t=g({id:"",account:"",sex:1,id_card:"",name:"",province:"",city:"",area:"",street:"",address:"",phone:"",qualification:{id_card:"",car_card:"",bank_account:""},is_contract:0,dept_id:[],jobs_id:[],role_id:[],avatar:"",password:"",password_confirm:"",disable:0,multipoint_login:1,root:0}),p=g({provinceOptions:[],cityOptions:[],areaOptions:[],streetOptions:[],dictTypeLists:[],contract_type:[]}),C=(r,e,s)=>{t.password&&(e||s(new Error("\u8BF7\u518D\u6B21\u8F93\u5165\u5BC6\u7801")),e!==t.password&&s(new Error("\u4E24\u6B21\u8F93\u5165\u5BC6\u7801\u4E0D\u4E00\u81F4!"))),s()},V=g({account:[{required:!0,message:"\u8BF7\u8F93\u5165\u8D26\u53F7",trigger:["blur"]}],name:[{required:!0,message:"\u8BF7\u8F93\u5165\u540D\u79F0",trigger:["blur"]}],role_id:[{type:"array",required:!0,message:"\u8BF7\u9009\u62E9\u89D2\u8272",trigger:["blur"]}],password:[{required:!0,message:"\u8BF7\u8F93\u5165\u5BC6\u7801",trigger:["blur"]}],password_confirm:[{required:!0,message:"\u8BF7\u8F93\u5165\u786E\u8BA4\u5BC6\u7801",trigger:["blur"]},{validator:C,trigger:"blur"}]});Y({role:{api:ae},jobs:{api:oe},dept:{api:le}});const O=async()=>{var r,e;await((r=E.value)==null?void 0:r.validate()),w.value=="edit"?await Z(t):await ee(t),(e=B.value)==null||e.close(),v("success")},U=(r="add")=>{var e;w.value=r,(e=B.value)==null||e.open()};function k(r){t.province=r,q(r)}function x(r){t.city=r,S(r)}function L(r){t.area=r,N(r)}function R(r){t.street=r}const q=async r=>{const e=await ue({city:r});p.cityOptions=e},S=async r=>{const e=await re({area:r});p.areaOptions=e},N=async r=>{const e=await se({street:r});p.streetOptions=e},j=async r=>{V.password=[],V.password_confirm=[{validator:C,trigger:"blur"}];const e=await te({id:r.id});for(const s in t)e[s]!=null&&e[s]!=null&&(t[s]=e[s])},T=()=>{v("close")};return D({open:U,setFormData:j}),(r,e)=>{const s=K,n=M,i=Q,f=$,F=G,I=H,P=J,z=W;return d(),c("div",ce,[a(X,{ref_key:"popupRef",ref:B,title:l(A),async:!0,width:"80%",onConfirm:O,onClose:T},{default:u(()=>[a(z,{ref_key:"formRef",ref:E,model:l(t),"label-width":"84px",rules:l(V)},{default:u(()=>[_e,a(i,{span:24,class:"pt-6 !border-none"},{default:u(()=>[a(I,null,{default:u(()=>[a(i,{span:12},{default:u(()=>[a(n,{label:"\u59D3\u540D",prop:"name"},{default:u(()=>[a(s,{modelValue:l(t).name,"onUpdate:modelValue":e[0]||(e[0]=o=>l(t).name=o),placeholder:"\u8BF7\u8F93\u5165\u59D3\u540D",clearable:"",style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),a(i,{span:12},{default:u(()=>[a(n,{label:"\u6027\u522B",prop:"sex"},{default:u(()=>[a(s,{modelValue:l(t).sex,"onUpdate:modelValue":e[1]||(e[1]=o=>l(t).sex=o),placeholder:"\u8BF7\u8F93\u5165\u6027\u522B",clearable:"",style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),a(i,{span:12},{default:u(()=>[a(n,{label:"\u8EAB\u4EFD\u8BC1\u53F7",prop:"id_card"},{default:u(()=>[a(s,{modelValue:l(t).id_card,"onUpdate:modelValue":e[2]||(e[2]=o=>l(t).id_card=o),placeholder:"\u8BF7\u8F93\u5165\u8EAB\u4EFD\u8BC1\u53F7",clearable:"",style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),a(i,{span:12},{default:u(()=>[a(n,{label:"\u8054\u7CFB\u7535\u8BDD",prop:"phone"},{default:u(()=>[a(s,{modelValue:l(t).phone,"onUpdate:modelValue":e[3]||(e[3]=o=>l(t).phone=o),placeholder:"\u8BF7\u8F93\u5165\u8054\u7CFB\u7535\u8BDD",clearable:"",style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),a(i,{span:3},{default:u(()=>[a(n,{label:"\u7701",prop:"province"},{default:u(()=>[a(F,{modelValue:l(t).province,"onUpdate:modelValue":e[4]||(e[4]=o=>l(t).province=o),placeholder:"\u8BF7\u9009\u62E9\u7701",clearable:"",onChange:k,style:{width:"100%"}},{default:u(()=>[(d(!0),c(b,null,y(l(p).provinceOptions,(o,m)=>(d(),_(f,{key:m,label:o.province_name,value:o.province_code},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1})]),_:1}),a(i,{span:3},{default:u(()=>[a(n,{label:"\u5E02",prop:"city"},{default:u(()=>[a(F,{modelValue:l(t).city,"onUpdate:modelValue":e[5]||(e[5]=o=>l(t).city=o),placeholder:"\u8BF7\u9009\u62E9\u5E02",clearable:"",onChange:x,style:{width:"100%"}},{default:u(()=>[(d(!0),c(b,null,y(l(p).cityOptions,(o,m)=>(d(),_(f,{key:m,label:o.city_name,value:o.city_code},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1})]),_:1}),a(i,{span:3},{default:u(()=>[a(n,{label:"\u533A",prop:"area"},{default:u(()=>[a(F,{modelValue:l(t).area,"onUpdate:modelValue":e[6]||(e[6]=o=>l(t).area=o),placeholder:"\u8BF7\u9009\u62E9\u533A",clearable:"",onChange:L,style:{width:"100%"}},{default:u(()=>[(d(!0),c(b,null,y(l(p).areaOptions,(o,m)=>(d(),_(f,{key:m,label:o.area_name,value:o.area_code},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1})]),_:1}),a(i,{span:3},{default:u(()=>[a(n,{label:"\u9547",prop:"street"},{default:u(()=>[a(F,{modelValue:l(t).street,"onUpdate:modelValue":e[7]||(e[7]=o=>l(t).street=o),placeholder:"\u8BF7\u9009\u62E9\u9547",clearable:"",onChange:R,style:{width:"100%"}},{default:u(()=>[(d(!0),c(b,null,y(l(p).streetOptions,(o,m)=>(d(),_(f,{key:m,label:o.street_name,value:o.street_code},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1})]),_:1}),a(i,{span:12},{default:u(()=>[a(n,{label:"\u6751\u793E\u5C0F\u961F",prop:"address"},{default:u(()=>[a(s,{modelValue:l(t).address,"onUpdate:modelValue":e[8]||(e[8]=o=>l(t).address=o),placeholder:"\u8BF7\u8F93\u5165\u6751\u793E\u5C0F\u961F",clearable:"",style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1})]),_:1})]),_:1}),l(t).root!=1?(d(),_(n,{key:0,label:"\u7BA1\u7406\u5458\u72B6\u6001"},{default:u(()=>[a(P,{modelValue:l(t).disable,"onUpdate:modelValue":e[9]||(e[9]=o=>l(t).disable=o),"active-value":0,"inactive-value":1},null,8,["modelValue"])]),_:1})):pe("",!0)]),_:1},8,["model","rules"])]),_:1},8,["title"])])}}});export{lt as default}; diff --git a/public/admin/assets/edit copy 2.dd42bef7.js b/public/admin/assets/edit copy 2.dd42bef7.js new file mode 100644 index 000000000..3e807e65d --- /dev/null +++ b/public/admin/assets/edit copy 2.dd42bef7.js @@ -0,0 +1 @@ +import{B as K,C as M,a1 as Q,M as $,N as G,a2 as H,t as J,D as W}from"./element-plus.4328d892.js";import{P as X}from"./index.5759a1a6.js";import{a as Y}from"./useDictOptions.a45fc8ac.js";import{b as Z,c as ee,d as te}from"./admin.f0e2c7b9.js";import{r as ae}from"./role.8d2a6d5e.js";import{e as oe}from"./post.34f40c78.js";import{d as le}from"./department.ea28aaf8.js";import{b as ue,c as re,d as se}from"./common.a58b263a.js";import{d as ne,s as h,r as ie,e as de,$ as g,o as d,c,U as a,L as u,u as l,T as b,a7 as y,K as _,Q as pe,a as me}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.37f7aea6.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const ce={class:"edit-popup"},_e=me("div",{style:{"font-size":"1.2rem",margin:"10px 0"}},"\u57FA\u672C\u4FE1\u606F\u521B\u5EFA",-1),lt=ne({__name:"edit copy 2",emits:["success","close"],setup(fe,{expose:D,emit:v}){const E=h(),B=h(),w=ie("add"),A=de(()=>w.value=="edit"?"\u7F16\u8F91\u7BA1\u7406\u5458":"\u65B0\u589E\u7BA1\u7406\u5458"),t=g({id:"",account:"",sex:1,id_card:"",name:"",province:"",city:"",area:"",street:"",address:"",phone:"",qualification:{id_card:"",car_card:"",bank_account:""},is_contract:0,dept_id:[],jobs_id:[],role_id:[],avatar:"",password:"",password_confirm:"",disable:0,multipoint_login:1,root:0}),p=g({provinceOptions:[],cityOptions:[],areaOptions:[],streetOptions:[],dictTypeLists:[],contract_type:[]}),C=(r,e,s)=>{t.password&&(e||s(new Error("\u8BF7\u518D\u6B21\u8F93\u5165\u5BC6\u7801")),e!==t.password&&s(new Error("\u4E24\u6B21\u8F93\u5165\u5BC6\u7801\u4E0D\u4E00\u81F4!"))),s()},V=g({account:[{required:!0,message:"\u8BF7\u8F93\u5165\u8D26\u53F7",trigger:["blur"]}],name:[{required:!0,message:"\u8BF7\u8F93\u5165\u540D\u79F0",trigger:["blur"]}],role_id:[{type:"array",required:!0,message:"\u8BF7\u9009\u62E9\u89D2\u8272",trigger:["blur"]}],password:[{required:!0,message:"\u8BF7\u8F93\u5165\u5BC6\u7801",trigger:["blur"]}],password_confirm:[{required:!0,message:"\u8BF7\u8F93\u5165\u786E\u8BA4\u5BC6\u7801",trigger:["blur"]},{validator:C,trigger:"blur"}]});Y({role:{api:ae},jobs:{api:oe},dept:{api:le}});const O=async()=>{var r,e;await((r=E.value)==null?void 0:r.validate()),w.value=="edit"?await Z(t):await ee(t),(e=B.value)==null||e.close(),v("success")},U=(r="add")=>{var e;w.value=r,(e=B.value)==null||e.open()};function k(r){t.province=r,q(r)}function x(r){t.city=r,S(r)}function L(r){t.area=r,N(r)}function R(r){t.street=r}const q=async r=>{const e=await ue({city:r});p.cityOptions=e},S=async r=>{const e=await re({area:r});p.areaOptions=e},N=async r=>{const e=await se({street:r});p.streetOptions=e},j=async r=>{V.password=[],V.password_confirm=[{validator:C,trigger:"blur"}];const e=await te({id:r.id});for(const s in t)e[s]!=null&&e[s]!=null&&(t[s]=e[s])},T=()=>{v("close")};return D({open:U,setFormData:j}),(r,e)=>{const s=K,n=M,i=Q,f=$,F=G,I=H,P=J,z=W;return d(),c("div",ce,[a(X,{ref_key:"popupRef",ref:B,title:l(A),async:!0,width:"80%",onConfirm:O,onClose:T},{default:u(()=>[a(z,{ref_key:"formRef",ref:E,model:l(t),"label-width":"84px",rules:l(V)},{default:u(()=>[_e,a(i,{span:24,class:"pt-6 !border-none"},{default:u(()=>[a(I,null,{default:u(()=>[a(i,{span:12},{default:u(()=>[a(n,{label:"\u59D3\u540D",prop:"name"},{default:u(()=>[a(s,{modelValue:l(t).name,"onUpdate:modelValue":e[0]||(e[0]=o=>l(t).name=o),placeholder:"\u8BF7\u8F93\u5165\u59D3\u540D",clearable:"",style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),a(i,{span:12},{default:u(()=>[a(n,{label:"\u6027\u522B",prop:"sex"},{default:u(()=>[a(s,{modelValue:l(t).sex,"onUpdate:modelValue":e[1]||(e[1]=o=>l(t).sex=o),placeholder:"\u8BF7\u8F93\u5165\u6027\u522B",clearable:"",style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),a(i,{span:12},{default:u(()=>[a(n,{label:"\u8EAB\u4EFD\u8BC1\u53F7",prop:"id_card"},{default:u(()=>[a(s,{modelValue:l(t).id_card,"onUpdate:modelValue":e[2]||(e[2]=o=>l(t).id_card=o),placeholder:"\u8BF7\u8F93\u5165\u8EAB\u4EFD\u8BC1\u53F7",clearable:"",style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),a(i,{span:12},{default:u(()=>[a(n,{label:"\u8054\u7CFB\u7535\u8BDD",prop:"phone"},{default:u(()=>[a(s,{modelValue:l(t).phone,"onUpdate:modelValue":e[3]||(e[3]=o=>l(t).phone=o),placeholder:"\u8BF7\u8F93\u5165\u8054\u7CFB\u7535\u8BDD",clearable:"",style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),a(i,{span:3},{default:u(()=>[a(n,{label:"\u7701",prop:"province"},{default:u(()=>[a(F,{modelValue:l(t).province,"onUpdate:modelValue":e[4]||(e[4]=o=>l(t).province=o),placeholder:"\u8BF7\u9009\u62E9\u7701",clearable:"",onChange:k,style:{width:"100%"}},{default:u(()=>[(d(!0),c(b,null,y(l(p).provinceOptions,(o,m)=>(d(),_(f,{key:m,label:o.province_name,value:o.province_code},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1})]),_:1}),a(i,{span:3},{default:u(()=>[a(n,{label:"\u5E02",prop:"city"},{default:u(()=>[a(F,{modelValue:l(t).city,"onUpdate:modelValue":e[5]||(e[5]=o=>l(t).city=o),placeholder:"\u8BF7\u9009\u62E9\u5E02",clearable:"",onChange:x,style:{width:"100%"}},{default:u(()=>[(d(!0),c(b,null,y(l(p).cityOptions,(o,m)=>(d(),_(f,{key:m,label:o.city_name,value:o.city_code},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1})]),_:1}),a(i,{span:3},{default:u(()=>[a(n,{label:"\u533A",prop:"area"},{default:u(()=>[a(F,{modelValue:l(t).area,"onUpdate:modelValue":e[6]||(e[6]=o=>l(t).area=o),placeholder:"\u8BF7\u9009\u62E9\u533A",clearable:"",onChange:L,style:{width:"100%"}},{default:u(()=>[(d(!0),c(b,null,y(l(p).areaOptions,(o,m)=>(d(),_(f,{key:m,label:o.area_name,value:o.area_code},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1})]),_:1}),a(i,{span:3},{default:u(()=>[a(n,{label:"\u9547",prop:"street"},{default:u(()=>[a(F,{modelValue:l(t).street,"onUpdate:modelValue":e[7]||(e[7]=o=>l(t).street=o),placeholder:"\u8BF7\u9009\u62E9\u9547",clearable:"",onChange:R,style:{width:"100%"}},{default:u(()=>[(d(!0),c(b,null,y(l(p).streetOptions,(o,m)=>(d(),_(f,{key:m,label:o.street_name,value:o.street_code},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1})]),_:1}),a(i,{span:12},{default:u(()=>[a(n,{label:"\u6751\u793E\u5C0F\u961F",prop:"address"},{default:u(()=>[a(s,{modelValue:l(t).address,"onUpdate:modelValue":e[8]||(e[8]=o=>l(t).address=o),placeholder:"\u8BF7\u8F93\u5165\u6751\u793E\u5C0F\u961F",clearable:"",style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1})]),_:1})]),_:1}),l(t).root!=1?(d(),_(n,{key:0,label:"\u7BA1\u7406\u5458\u72B6\u6001"},{default:u(()=>[a(P,{modelValue:l(t).disable,"onUpdate:modelValue":e[9]||(e[9]=o=>l(t).disable=o),"active-value":0,"inactive-value":1},null,8,["modelValue"])]),_:1})):pe("",!0)]),_:1},8,["model","rules"])]),_:1},8,["title"])])}}});export{lt as default}; diff --git a/public/admin/assets/edit copy.5bc84b23.js b/public/admin/assets/edit copy.5bc84b23.js new file mode 100644 index 000000000..826ea3a3c --- /dev/null +++ b/public/admin/assets/edit copy.5bc84b23.js @@ -0,0 +1 @@ +import{a3 as I,B as L,C as O,M as P,N as K,t as M,D as Q}from"./element-plus.4328d892.js";import{_ as $}from"./picker.597494a6.js";import{P as z}from"./index.b940d6e3.js";import{a as G}from"./useDictOptions.8d37e54b.js";import{b as H,c as J,d as W}from"./admin.f28da7a1.js";import{r as X}from"./role.1c72c4c7.js";import{e as Y}from"./post.53815820.js";import{d as Z}from"./department.4e17bcb6.js";import{d as ee,s as C,r as oe,e as ue,$ as D,o as d,c as B,U as a,L as t,u,a as p,T as A,a7 as y,K as m,Q as k}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.c38e1dd6.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./index.f2c7f81b.js";import"./index.ed71ac09.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.9c616a0c.js";import"./index.vue_vue_type_script_setup_true_lang.dc835bba.js";import"./usePaging.2ad8e1e6.js";import"./vue3-video-play.b911321b.js";import"./vuedraggable.0cb40d3a.js";import"./vue.5de34049.js";import"./sortablejs.ef73fc5c.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";const le={class:"edit-popup"},ae=p("div",{class:"form-tips"},"\u5EFA\u8BAE\u5C3A\u5BF8\uFF1A100*100px\uFF0C\u652F\u6301jpg\uFF0Cjpeg\uFF0Cpng\u683C\u5F0F",-1),te=p("div",{class:"form-tips"},"\u5141\u8BB8\u591A\u4EBA\u540C\u65F6\u5728\u7EBF\u767B\u5F55",-1),to=ee({__name:"edit copy",emits:["success","close"],setup(re,{expose:x,emit:V}){const v=C(),n=C(),c=oe("add"),U=ue(()=>c.value=="edit"?"\u7F16\u8F91\u7BA1\u7406\u5458":"\u5458"),o=D({id:"",account:"",name:"",dept_id:[],jobs_id:[],role_id:[],avatar:"",password:"",password_confirm:"",disable:0,multipoint_login:1,root:0}),E=(s,e,r)=>{o.password&&(e||r(new Error("\u8BF7\u518D\u6B21\u8F93\u5165\u5BC6\u7801")),e!==o.password&&r(new Error("\u4E24\u6B21\u8F93\u5165\u5BC6\u7801\u4E0D\u4E00\u81F4!"))),r()},_=D({account:[{required:!0,message:"\u8BF7\u8F93\u5165\u8D26\u53F7",trigger:["blur"]}],name:[{required:!0,message:"\u8BF7\u8F93\u5165\u540D\u79F0",trigger:["blur"]}],role_id:[{type:"array",required:!0,message:"\u8BF7\u9009\u62E9\u89D2\u8272",trigger:["blur"]}],password:[{required:!0,message:"\u8BF7\u8F93\u5165\u5BC6\u7801",trigger:["blur"]}],password_confirm:[{required:!0,message:"\u8BF7\u8F93\u5165\u786E\u8BA4\u5BC6\u7801",trigger:["blur"]},{validator:E,trigger:"blur"}]}),{optionsData:f}=G({role:{api:X},jobs:{api:Y},dept:{api:Z}}),j=async()=>{var s,e;await((s=v.value)==null?void 0:s.validate()),c.value=="edit"?await H(o):await J(o),(e=n.value)==null||e.close(),V("success")},R=(s="add")=>{var e;c.value=s,(e=n.value)==null||e.open()},q=async s=>{_.password=[],_.password_confirm=[{validator:E,trigger:"blur"}];const e=await W({id:s.id});for(const r in o)e[r]!=null&&e[r]!=null&&(o[r]=e[r])},N=()=>{V("close")};return x({open:R,setFormData:q}),(s,e)=>{const r=L,i=O,S=$,T=I,F=P,w=K,g=M,h=Q;return d(),B("div",le,[a(z,{ref_key:"popupRef",ref:n,title:u(U),async:!0,width:"550px",onConfirm:j,onClose:N},{default:t(()=>[a(h,{ref_key:"formRef",ref:v,model:u(o),"label-width":"84px",rules:u(_)},{default:t(()=>[a(i,{label:"\u8D26\u53F7",prop:"account"},{default:t(()=>[a(r,{modelValue:u(o).account,"onUpdate:modelValue":e[0]||(e[0]=l=>u(o).account=l),disabled:u(o).root==1,placeholder:"\u8BF7\u8F93\u5165\u8D26\u53F7",clearable:""},null,8,["modelValue","disabled"])]),_:1}),a(i,{label:"\u5934\u50CF"},{default:t(()=>[p("div",null,[p("div",null,[a(S,{modelValue:u(o).avatar,"onUpdate:modelValue":e[1]||(e[1]=l=>u(o).avatar=l),limit:1},null,8,["modelValue"])]),ae])]),_:1}),a(i,{label:"\u540D\u79F0",prop:"name"},{default:t(()=>[a(r,{modelValue:u(o).name,"onUpdate:modelValue":e[2]||(e[2]=l=>u(o).name=l),placeholder:"\u8BF7\u8F93\u5165\u540D\u79F0",clearable:""},null,8,["modelValue"])]),_:1}),a(i,{label:"\u5F52\u5C5E\u90E8\u95E8",prop:"dept_id"},{default:t(()=>[a(T,{class:"flex-1",modelValue:u(o).dept_id,"onUpdate:modelValue":e[3]||(e[3]=l=>u(o).dept_id=l),data:u(f).dept,clearable:"",multiple:"","node-key":"id",props:{value:"id",label:"name",disabled(l){return l.status!==1}},"check-strictly":"","default-expand-all":!0,placeholder:"\u8BF7\u9009\u62E9\u4E0A\u7EA7\u90E8\u95E8"},null,8,["modelValue","data","props"])]),_:1}),a(i,{label:"\u5C97\u4F4D",prop:"jobs_id"},{default:t(()=>[a(w,{class:"flex-1",modelValue:u(o).jobs_id,"onUpdate:modelValue":e[4]||(e[4]=l=>u(o).jobs_id=l),clearable:"",multiple:"",placeholder:"\u8BF7\u9009\u62E9\u5C97\u4F4D"},{default:t(()=>[(d(!0),B(A,null,y(u(f).jobs,(l,b)=>(d(),m(F,{key:b,label:l.name,value:l.id},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1}),a(i,{label:"\u89D2\u8272",prop:"role_id"},{default:t(()=>[a(w,{modelValue:u(o).role_id,"onUpdate:modelValue":e[5]||(e[5]=l=>u(o).role_id=l),disabled:u(o).root==1,class:"flex-1",multiple:"",placeholder:"\u8BF7\u9009\u62E9\u89D2\u8272",clearable:""},{default:t(()=>[u(o).root==1?(d(),m(F,{key:0,label:"\u7CFB\u7EDF\u7BA1\u7406\u5458",value:0})):k("",!0),(d(!0),B(A,null,y(u(f).role,(l,b)=>(d(),m(F,{key:b,label:l.name,value:l.id},null,8,["label","value"]))),128))]),_:1},8,["modelValue","disabled"])]),_:1}),a(i,{label:"\u5BC6\u7801",prop:"password"},{default:t(()=>[a(r,{modelValue:u(o).password,"onUpdate:modelValue":e[6]||(e[6]=l=>u(o).password=l),"show-password":"",clearable:"",placeholder:"\u8BF7\u8F93\u5165\u5BC6\u7801"},null,8,["modelValue"])]),_:1}),a(i,{label:"\u786E\u8BA4\u5BC6\u7801",prop:"password_confirm"},{default:t(()=>[a(r,{modelValue:u(o).password_confirm,"onUpdate:modelValue":e[7]||(e[7]=l=>u(o).password_confirm=l),"show-password":"",clearable:"",placeholder:"\u8BF7\u8F93\u5165\u786E\u8BA4\u5BC6\u7801"},null,8,["modelValue"])]),_:1}),u(o).root!=1?(d(),m(i,{key:0,label:"\u7BA1\u7406\u5458\u72B6\u6001"},{default:t(()=>[a(g,{modelValue:u(o).disable,"onUpdate:modelValue":e[8]||(e[8]=l=>u(o).disable=l),"active-value":0,"inactive-value":1},null,8,["modelValue"])]),_:1})):k("",!0),a(i,{label:"\u591A\u5904\u767B\u5F55"},{default:t(()=>[p("div",null,[a(g,{modelValue:u(o).multipoint_login,"onUpdate:modelValue":e[9]||(e[9]=l=>u(o).multipoint_login=l),"active-value":1,"inactive-value":0},null,8,["modelValue"]),te])]),_:1})]),_:1},8,["model","rules"])]),_:1},8,["title"])])}}});export{to as default}; diff --git a/public/admin/assets/edit copy.9550c3ad.js b/public/admin/assets/edit copy.9550c3ad.js new file mode 100644 index 000000000..bf191d6c3 --- /dev/null +++ b/public/admin/assets/edit copy.9550c3ad.js @@ -0,0 +1 @@ +import{a3 as I,B as L,C as O,M as P,N as K,t as M,D as Q}from"./element-plus.4328d892.js";import{_ as $}from"./picker.3821e495.js";import{P as z}from"./index.5759a1a6.js";import{a as G}from"./useDictOptions.a45fc8ac.js";import{b as H,c as J,d as W}from"./admin.f0e2c7b9.js";import{r as X}from"./role.8d2a6d5e.js";import{e as Y}from"./post.34f40c78.js";import{d as Z}from"./department.ea28aaf8.js";import{d as ee,s as C,r as oe,e as ue,$ as D,o as d,c as B,U as a,L as t,u,a as p,T as A,a7 as y,K as m,Q as k}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.af446662.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./index.fe1d30dd.js";import"./index.37f7aea6.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.5f944d34.js";import"./index.vue_vue_type_script_setup_true_lang.dc835bba.js";import"./usePaging.2ad8e1e6.js";import"./vue3-video-play.b911321b.js";import"./vuedraggable.0cb40d3a.js";import"./vue.5de34049.js";import"./sortablejs.ef73fc5c.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";const le={class:"edit-popup"},ae=p("div",{class:"form-tips"},"\u5EFA\u8BAE\u5C3A\u5BF8\uFF1A100*100px\uFF0C\u652F\u6301jpg\uFF0Cjpeg\uFF0Cpng\u683C\u5F0F",-1),te=p("div",{class:"form-tips"},"\u5141\u8BB8\u591A\u4EBA\u540C\u65F6\u5728\u7EBF\u767B\u5F55",-1),to=ee({__name:"edit copy",emits:["success","close"],setup(re,{expose:x,emit:V}){const v=C(),n=C(),c=oe("add"),U=ue(()=>c.value=="edit"?"\u7F16\u8F91\u7BA1\u7406\u5458":"\u5458"),o=D({id:"",account:"",name:"",dept_id:[],jobs_id:[],role_id:[],avatar:"",password:"",password_confirm:"",disable:0,multipoint_login:1,root:0}),E=(s,e,r)=>{o.password&&(e||r(new Error("\u8BF7\u518D\u6B21\u8F93\u5165\u5BC6\u7801")),e!==o.password&&r(new Error("\u4E24\u6B21\u8F93\u5165\u5BC6\u7801\u4E0D\u4E00\u81F4!"))),r()},_=D({account:[{required:!0,message:"\u8BF7\u8F93\u5165\u8D26\u53F7",trigger:["blur"]}],name:[{required:!0,message:"\u8BF7\u8F93\u5165\u540D\u79F0",trigger:["blur"]}],role_id:[{type:"array",required:!0,message:"\u8BF7\u9009\u62E9\u89D2\u8272",trigger:["blur"]}],password:[{required:!0,message:"\u8BF7\u8F93\u5165\u5BC6\u7801",trigger:["blur"]}],password_confirm:[{required:!0,message:"\u8BF7\u8F93\u5165\u786E\u8BA4\u5BC6\u7801",trigger:["blur"]},{validator:E,trigger:"blur"}]}),{optionsData:f}=G({role:{api:X},jobs:{api:Y},dept:{api:Z}}),j=async()=>{var s,e;await((s=v.value)==null?void 0:s.validate()),c.value=="edit"?await H(o):await J(o),(e=n.value)==null||e.close(),V("success")},R=(s="add")=>{var e;c.value=s,(e=n.value)==null||e.open()},q=async s=>{_.password=[],_.password_confirm=[{validator:E,trigger:"blur"}];const e=await W({id:s.id});for(const r in o)e[r]!=null&&e[r]!=null&&(o[r]=e[r])},N=()=>{V("close")};return x({open:R,setFormData:q}),(s,e)=>{const r=L,i=O,S=$,T=I,F=P,w=K,g=M,h=Q;return d(),B("div",le,[a(z,{ref_key:"popupRef",ref:n,title:u(U),async:!0,width:"550px",onConfirm:j,onClose:N},{default:t(()=>[a(h,{ref_key:"formRef",ref:v,model:u(o),"label-width":"84px",rules:u(_)},{default:t(()=>[a(i,{label:"\u8D26\u53F7",prop:"account"},{default:t(()=>[a(r,{modelValue:u(o).account,"onUpdate:modelValue":e[0]||(e[0]=l=>u(o).account=l),disabled:u(o).root==1,placeholder:"\u8BF7\u8F93\u5165\u8D26\u53F7",clearable:""},null,8,["modelValue","disabled"])]),_:1}),a(i,{label:"\u5934\u50CF"},{default:t(()=>[p("div",null,[p("div",null,[a(S,{modelValue:u(o).avatar,"onUpdate:modelValue":e[1]||(e[1]=l=>u(o).avatar=l),limit:1},null,8,["modelValue"])]),ae])]),_:1}),a(i,{label:"\u540D\u79F0",prop:"name"},{default:t(()=>[a(r,{modelValue:u(o).name,"onUpdate:modelValue":e[2]||(e[2]=l=>u(o).name=l),placeholder:"\u8BF7\u8F93\u5165\u540D\u79F0",clearable:""},null,8,["modelValue"])]),_:1}),a(i,{label:"\u5F52\u5C5E\u90E8\u95E8",prop:"dept_id"},{default:t(()=>[a(T,{class:"flex-1",modelValue:u(o).dept_id,"onUpdate:modelValue":e[3]||(e[3]=l=>u(o).dept_id=l),data:u(f).dept,clearable:"",multiple:"","node-key":"id",props:{value:"id",label:"name",disabled(l){return l.status!==1}},"check-strictly":"","default-expand-all":!0,placeholder:"\u8BF7\u9009\u62E9\u4E0A\u7EA7\u90E8\u95E8"},null,8,["modelValue","data","props"])]),_:1}),a(i,{label:"\u5C97\u4F4D",prop:"jobs_id"},{default:t(()=>[a(w,{class:"flex-1",modelValue:u(o).jobs_id,"onUpdate:modelValue":e[4]||(e[4]=l=>u(o).jobs_id=l),clearable:"",multiple:"",placeholder:"\u8BF7\u9009\u62E9\u5C97\u4F4D"},{default:t(()=>[(d(!0),B(A,null,y(u(f).jobs,(l,b)=>(d(),m(F,{key:b,label:l.name,value:l.id},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1}),a(i,{label:"\u89D2\u8272",prop:"role_id"},{default:t(()=>[a(w,{modelValue:u(o).role_id,"onUpdate:modelValue":e[5]||(e[5]=l=>u(o).role_id=l),disabled:u(o).root==1,class:"flex-1",multiple:"",placeholder:"\u8BF7\u9009\u62E9\u89D2\u8272",clearable:""},{default:t(()=>[u(o).root==1?(d(),m(F,{key:0,label:"\u7CFB\u7EDF\u7BA1\u7406\u5458",value:0})):k("",!0),(d(!0),B(A,null,y(u(f).role,(l,b)=>(d(),m(F,{key:b,label:l.name,value:l.id},null,8,["label","value"]))),128))]),_:1},8,["modelValue","disabled"])]),_:1}),a(i,{label:"\u5BC6\u7801",prop:"password"},{default:t(()=>[a(r,{modelValue:u(o).password,"onUpdate:modelValue":e[6]||(e[6]=l=>u(o).password=l),"show-password":"",clearable:"",placeholder:"\u8BF7\u8F93\u5165\u5BC6\u7801"},null,8,["modelValue"])]),_:1}),a(i,{label:"\u786E\u8BA4\u5BC6\u7801",prop:"password_confirm"},{default:t(()=>[a(r,{modelValue:u(o).password_confirm,"onUpdate:modelValue":e[7]||(e[7]=l=>u(o).password_confirm=l),"show-password":"",clearable:"",placeholder:"\u8BF7\u8F93\u5165\u786E\u8BA4\u5BC6\u7801"},null,8,["modelValue"])]),_:1}),u(o).root!=1?(d(),m(i,{key:0,label:"\u7BA1\u7406\u5458\u72B6\u6001"},{default:t(()=>[a(g,{modelValue:u(o).disable,"onUpdate:modelValue":e[8]||(e[8]=l=>u(o).disable=l),"active-value":0,"inactive-value":1},null,8,["modelValue"])]),_:1})):k("",!0),a(i,{label:"\u591A\u5904\u767B\u5F55"},{default:t(()=>[p("div",null,[a(g,{modelValue:u(o).multipoint_login,"onUpdate:modelValue":e[9]||(e[9]=l=>u(o).multipoint_login=l),"active-value":1,"inactive-value":0},null,8,["modelValue"]),te])]),_:1})]),_:1},8,["model","rules"])]),_:1},8,["title"])])}}});export{to as default}; diff --git a/public/admin/assets/edit copy.cb8a81cc.js b/public/admin/assets/edit copy.cb8a81cc.js new file mode 100644 index 000000000..d0db08086 --- /dev/null +++ b/public/admin/assets/edit copy.cb8a81cc.js @@ -0,0 +1 @@ +import{a3 as I,B as L,C as O,M as P,N as K,t as M,D as Q}from"./element-plus.4328d892.js";import{_ as $}from"./picker.45aea54f.js";import{P as z}from"./index.fa872673.js";import{a as G}from"./useDictOptions.a61fcf9f.js";import{b as H,c as J,d as W}from"./admin.1cd61358.js";import{r as X}from"./role.41d5883e.js";import{e as Y}from"./post.5d32b419.js";import{d as Z}from"./department.5076f65d.js";import{d as ee,s as C,r as oe,e as ue,$ as D,o as d,c as B,U as a,L as t,u,a as p,T as A,a7 as y,K as m,Q as k}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.c47e74f8.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./index.a9a11abe.js";import"./index.aa9bb752.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.a450f1bb.js";import"./index.vue_vue_type_script_setup_true_lang.dc835bba.js";import"./usePaging.2ad8e1e6.js";import"./vue3-video-play.b911321b.js";import"./vuedraggable.0cb40d3a.js";import"./vue.5de34049.js";import"./sortablejs.ef73fc5c.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";const le={class:"edit-popup"},ae=p("div",{class:"form-tips"},"\u5EFA\u8BAE\u5C3A\u5BF8\uFF1A100*100px\uFF0C\u652F\u6301jpg\uFF0Cjpeg\uFF0Cpng\u683C\u5F0F",-1),te=p("div",{class:"form-tips"},"\u5141\u8BB8\u591A\u4EBA\u540C\u65F6\u5728\u7EBF\u767B\u5F55",-1),to=ee({__name:"edit copy",emits:["success","close"],setup(re,{expose:x,emit:V}){const v=C(),n=C(),c=oe("add"),U=ue(()=>c.value=="edit"?"\u7F16\u8F91\u7BA1\u7406\u5458":"\u5458"),o=D({id:"",account:"",name:"",dept_id:[],jobs_id:[],role_id:[],avatar:"",password:"",password_confirm:"",disable:0,multipoint_login:1,root:0}),E=(s,e,r)=>{o.password&&(e||r(new Error("\u8BF7\u518D\u6B21\u8F93\u5165\u5BC6\u7801")),e!==o.password&&r(new Error("\u4E24\u6B21\u8F93\u5165\u5BC6\u7801\u4E0D\u4E00\u81F4!"))),r()},_=D({account:[{required:!0,message:"\u8BF7\u8F93\u5165\u8D26\u53F7",trigger:["blur"]}],name:[{required:!0,message:"\u8BF7\u8F93\u5165\u540D\u79F0",trigger:["blur"]}],role_id:[{type:"array",required:!0,message:"\u8BF7\u9009\u62E9\u89D2\u8272",trigger:["blur"]}],password:[{required:!0,message:"\u8BF7\u8F93\u5165\u5BC6\u7801",trigger:["blur"]}],password_confirm:[{required:!0,message:"\u8BF7\u8F93\u5165\u786E\u8BA4\u5BC6\u7801",trigger:["blur"]},{validator:E,trigger:"blur"}]}),{optionsData:f}=G({role:{api:X},jobs:{api:Y},dept:{api:Z}}),j=async()=>{var s,e;await((s=v.value)==null?void 0:s.validate()),c.value=="edit"?await H(o):await J(o),(e=n.value)==null||e.close(),V("success")},R=(s="add")=>{var e;c.value=s,(e=n.value)==null||e.open()},q=async s=>{_.password=[],_.password_confirm=[{validator:E,trigger:"blur"}];const e=await W({id:s.id});for(const r in o)e[r]!=null&&e[r]!=null&&(o[r]=e[r])},N=()=>{V("close")};return x({open:R,setFormData:q}),(s,e)=>{const r=L,i=O,S=$,T=I,F=P,w=K,g=M,h=Q;return d(),B("div",le,[a(z,{ref_key:"popupRef",ref:n,title:u(U),async:!0,width:"550px",onConfirm:j,onClose:N},{default:t(()=>[a(h,{ref_key:"formRef",ref:v,model:u(o),"label-width":"84px",rules:u(_)},{default:t(()=>[a(i,{label:"\u8D26\u53F7",prop:"account"},{default:t(()=>[a(r,{modelValue:u(o).account,"onUpdate:modelValue":e[0]||(e[0]=l=>u(o).account=l),disabled:u(o).root==1,placeholder:"\u8BF7\u8F93\u5165\u8D26\u53F7",clearable:""},null,8,["modelValue","disabled"])]),_:1}),a(i,{label:"\u5934\u50CF"},{default:t(()=>[p("div",null,[p("div",null,[a(S,{modelValue:u(o).avatar,"onUpdate:modelValue":e[1]||(e[1]=l=>u(o).avatar=l),limit:1},null,8,["modelValue"])]),ae])]),_:1}),a(i,{label:"\u540D\u79F0",prop:"name"},{default:t(()=>[a(r,{modelValue:u(o).name,"onUpdate:modelValue":e[2]||(e[2]=l=>u(o).name=l),placeholder:"\u8BF7\u8F93\u5165\u540D\u79F0",clearable:""},null,8,["modelValue"])]),_:1}),a(i,{label:"\u5F52\u5C5E\u90E8\u95E8",prop:"dept_id"},{default:t(()=>[a(T,{class:"flex-1",modelValue:u(o).dept_id,"onUpdate:modelValue":e[3]||(e[3]=l=>u(o).dept_id=l),data:u(f).dept,clearable:"",multiple:"","node-key":"id",props:{value:"id",label:"name",disabled(l){return l.status!==1}},"check-strictly":"","default-expand-all":!0,placeholder:"\u8BF7\u9009\u62E9\u4E0A\u7EA7\u90E8\u95E8"},null,8,["modelValue","data","props"])]),_:1}),a(i,{label:"\u5C97\u4F4D",prop:"jobs_id"},{default:t(()=>[a(w,{class:"flex-1",modelValue:u(o).jobs_id,"onUpdate:modelValue":e[4]||(e[4]=l=>u(o).jobs_id=l),clearable:"",multiple:"",placeholder:"\u8BF7\u9009\u62E9\u5C97\u4F4D"},{default:t(()=>[(d(!0),B(A,null,y(u(f).jobs,(l,b)=>(d(),m(F,{key:b,label:l.name,value:l.id},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1}),a(i,{label:"\u89D2\u8272",prop:"role_id"},{default:t(()=>[a(w,{modelValue:u(o).role_id,"onUpdate:modelValue":e[5]||(e[5]=l=>u(o).role_id=l),disabled:u(o).root==1,class:"flex-1",multiple:"",placeholder:"\u8BF7\u9009\u62E9\u89D2\u8272",clearable:""},{default:t(()=>[u(o).root==1?(d(),m(F,{key:0,label:"\u7CFB\u7EDF\u7BA1\u7406\u5458",value:0})):k("",!0),(d(!0),B(A,null,y(u(f).role,(l,b)=>(d(),m(F,{key:b,label:l.name,value:l.id},null,8,["label","value"]))),128))]),_:1},8,["modelValue","disabled"])]),_:1}),a(i,{label:"\u5BC6\u7801",prop:"password"},{default:t(()=>[a(r,{modelValue:u(o).password,"onUpdate:modelValue":e[6]||(e[6]=l=>u(o).password=l),"show-password":"",clearable:"",placeholder:"\u8BF7\u8F93\u5165\u5BC6\u7801"},null,8,["modelValue"])]),_:1}),a(i,{label:"\u786E\u8BA4\u5BC6\u7801",prop:"password_confirm"},{default:t(()=>[a(r,{modelValue:u(o).password_confirm,"onUpdate:modelValue":e[7]||(e[7]=l=>u(o).password_confirm=l),"show-password":"",clearable:"",placeholder:"\u8BF7\u8F93\u5165\u786E\u8BA4\u5BC6\u7801"},null,8,["modelValue"])]),_:1}),u(o).root!=1?(d(),m(i,{key:0,label:"\u7BA1\u7406\u5458\u72B6\u6001"},{default:t(()=>[a(g,{modelValue:u(o).disable,"onUpdate:modelValue":e[8]||(e[8]=l=>u(o).disable=l),"active-value":0,"inactive-value":1},null,8,["modelValue"])]),_:1})):k("",!0),a(i,{label:"\u591A\u5904\u767B\u5F55"},{default:t(()=>[p("div",null,[a(g,{modelValue:u(o).multipoint_login,"onUpdate:modelValue":e[9]||(e[9]=l=>u(o).multipoint_login=l),"active-value":1,"inactive-value":0},null,8,["modelValue"]),te])]),_:1})]),_:1},8,["model","rules"])]),_:1},8,["title"])])}}});export{to as default}; diff --git a/public/admin/assets/edit.0074b3e9.js b/public/admin/assets/edit.0074b3e9.js new file mode 100644 index 000000000..3a6ea1b13 --- /dev/null +++ b/public/admin/assets/edit.0074b3e9.js @@ -0,0 +1 @@ +import"./edit.vue_vue_type_script_setup_true_lang.cfc20a70.js";import{_ as O}from"./edit.vue_vue_type_script_setup_true_lang.cfc20a70.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./wx_oa.115c1d98.js";import"./index.37f7aea6.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.5759a1a6.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";export{O as default}; diff --git a/public/admin/assets/edit.025e17b9.js b/public/admin/assets/edit.025e17b9.js new file mode 100644 index 000000000..0e573273a --- /dev/null +++ b/public/admin/assets/edit.025e17b9.js @@ -0,0 +1 @@ +import"./edit.vue_vue_type_script_setup_true_name_companyComplaintFeedbackEdit_lang.bc8f5151.js";import{_ as N}from"./edit.vue_vue_type_script_setup_true_name_companyComplaintFeedbackEdit_lang.bc8f5151.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.b940d6e3.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.ed71ac09.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";export{N as default}; diff --git a/public/admin/assets/edit.071a09c7.js b/public/admin/assets/edit.071a09c7.js new file mode 100644 index 000000000..717988cc8 --- /dev/null +++ b/public/admin/assets/edit.071a09c7.js @@ -0,0 +1 @@ +import{_ as T}from"./index.13ef78d6.js";import{T as q,I as A,B as $,C as I,G as N,H as j,t as G,O as H,P as L,D as M,w as O}from"./element-plus.4328d892.js";import{u as P,a as S}from"./vue-router.9f65afb1.js";import{c as z,d as J,e as K,f as Q}from"./system.02fce13c.js";import{e as W}from"./index.aa9bb752.js";import{d as w,$ as F,s as X,r as Y,j as Z,o as ee,c as oe,U as e,L as l,u as a,a as m,R as b}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const te={class:"article-edit"},ae={class:"w-80"},le={class:"w-80"},ue={class:"w-80"},se={class:"w-80"},re={class:"w-80"},ne=w({name:"scheduledTaskEdit"}),ze=w({...ne,setup(me){const i=P(),E=S(),t=F({id:"",name:"",command:"",expression:"",params:"",remark:"",status:1,type:1}),{removeTab:B}=W(),d=X(),V=F({name:[{required:!0,message:"\u8BF7\u8F93\u5165\u540D\u79F0"}],command:[{required:!0,message:"\u8BF7\u8F93\u5165thankphp\u547D\u4EE4\uFF0C\u5982vresion"}],expression:[{required:!0,message:"\u8BF7\u8F93\u5165crontab\u89C4\u5219\uFF0C\u4F8B\uFF1A5 9 * * *"}]}),v=async()=>{const s=await z({id:i.query.id});Object.keys(t).forEach(o=>{t[o]=s[o]})},p=Y([]),c=async()=>{var o;await((o=d.value)==null?void 0:o.validateField(["expression"]));const s=await J({expression:t.expression});p.value=s},x=async()=>{var s;await((s=d.value)==null?void 0:s.validate()),i.query.id?await K(t):await Q(t),B(),E.back()};return Z(async()=>{!i.query.id||(await v(),await c())}),(s,o)=>{const C=q,_=A,n=$,r=I,h=N,y=j,k=G,f=H,D=L,g=M,R=O,U=T;return ee(),oe("div",te,[e(_,{class:"!border-none",shadow:"never"},{default:l(()=>[e(C,{content:s.$route.meta.title,onBack:o[0]||(o[0]=u=>s.$router.back())},null,8,["content"])]),_:1}),e(_,{class:"mt-4 !border-none",shadow:"never"},{default:l(()=>[e(g,{ref_key:"formRef",ref:d,class:"ls-form",model:a(t),"label-width":"85px",rules:a(V)},{default:l(()=>[e(r,{label:"\u540D\u79F0",prop:"name"},{default:l(()=>[m("div",ae,[e(n,{modelValue:a(t).name,"onUpdate:modelValue":o[1]||(o[1]=u=>a(t).name=u),placeholder:"\u8BF7\u8F93\u5165\u540D\u79F0",maxlength:"30",clearable:""},null,8,["modelValue"])])]),_:1}),e(r,{label:"\u7C7B\u578B",prop:"type"},{default:l(()=>[e(y,{modelValue:a(t).type,"onUpdate:modelValue":o[2]||(o[2]=u=>a(t).type=u)},{default:l(()=>[e(h,{label:1},{default:l(()=>[b("\u5B9A\u65F6\u4EFB\u52A1")]),_:1})]),_:1},8,["modelValue"])]),_:1}),e(r,{label:"\u547D\u4EE4",prop:"command"},{default:l(()=>[m("div",le,[e(n,{modelValue:a(t).command,"onUpdate:modelValue":o[3]||(o[3]=u=>a(t).command=u),placeholder:"\u8BF7\u8F93\u5165thinkphp\u547D\u4EE4\uFF0C\u5982vresion",clearable:""},null,8,["modelValue"])])]),_:1}),e(r,{label:"\u53C2\u6570",prop:"params"},{default:l(()=>[m("div",ue,[e(n,{modelValue:a(t).params,"onUpdate:modelValue":o[4]||(o[4]=u=>a(t).params=u),placeholder:"\u8BF7\u8F93\u5165\u53C2\u6570\uFF0C\u4F8B:--id 8 --name \u6D4B\u8BD5",clearable:""},null,8,["modelValue"])])]),_:1}),e(r,{label:"\u72B6\u6001"},{default:l(()=>[e(k,{modelValue:a(t).status,"onUpdate:modelValue":o[5]||(o[5]=u=>a(t).status=u),"active-value":1,"inactive-value":2},null,8,["modelValue"])]),_:1}),e(r,{label:"\u89C4\u5219",prop:"expression"},{default:l(()=>[m("div",se,[e(n,{onBlur:c,modelValue:a(t).expression,"onUpdate:modelValue":o[6]||(o[6]=u=>a(t).expression=u),placeholder:"\u8BF7\u8F93\u5165crontab\u89C4\u5219\uFF0C\u4F8B\uFF1A5 9 * * *"},null,8,["modelValue"])])]),_:1}),e(r,null,{default:l(()=>[e(D,{data:a(p),style:{"max-width":"320px"}},{default:l(()=>[e(f,{prop:"time",label:"\u5E8F\u53F7","min-width":"80"}),e(f,{prop:"date",label:"\u6267\u884C\u65F6\u95F4","min-width":"240"})]),_:1},8,["data"])]),_:1}),e(r,{label:"\u5907\u6CE8",prop:"remark"},{default:l(()=>[m("div",re,[e(n,{modelValue:a(t).remark,"onUpdate:modelValue":o[7]||(o[7]=u=>a(t).remark=u),type:"textarea",autosize:{minRows:3,maxRows:6},maxlength:200,"show-word-limit":"",clearable:""},null,8,["modelValue"])])]),_:1})]),_:1},8,["model","rules"])]),_:1}),e(U,null,{default:l(()=>[e(R,{type:"primary",onClick:x},{default:l(()=>[b("\u4FDD\u5B58")]),_:1})]),_:1})])}}});export{ze as default}; diff --git a/public/admin/assets/edit.0a787ba3.js b/public/admin/assets/edit.0a787ba3.js new file mode 100644 index 000000000..d0cefc18d --- /dev/null +++ b/public/admin/assets/edit.0a787ba3.js @@ -0,0 +1 @@ +import"./edit.vue_vue_type_script_setup_true_lang.7740595e.js";import{_ as O}from"./edit.vue_vue_type_script_setup_true_lang.7740595e.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./message.f1110fc7.js";import"./index.ed71ac09.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.b940d6e3.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";export{O as default}; diff --git a/public/admin/assets/edit.0c56d24e.js b/public/admin/assets/edit.0c56d24e.js new file mode 100644 index 000000000..9e20566f3 --- /dev/null +++ b/public/admin/assets/edit.0c56d24e.js @@ -0,0 +1 @@ +import"./edit.vue_vue_type_script_setup_true_lang.7728685e.js";import{_ as O}from"./edit.vue_vue_type_script_setup_true_lang.7728685e.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.b940d6e3.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.ed71ac09.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./dict.6c560e38.js";export{O as default}; diff --git a/public/admin/assets/edit.0cd07a8e.js b/public/admin/assets/edit.0cd07a8e.js new file mode 100644 index 000000000..3df291f0a --- /dev/null +++ b/public/admin/assets/edit.0cd07a8e.js @@ -0,0 +1 @@ +import"./edit.vue_vue_type_script_setup_true_lang.c4a9e1a8.js";import{_ as P}from"./edit.vue_vue_type_script_setup_true_lang.c4a9e1a8.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./department.ea28aaf8.js";import"./index.37f7aea6.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.5759a1a6.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./useDictOptions.a45fc8ac.js";export{P as default}; diff --git a/public/admin/assets/edit.11cd1a09.js b/public/admin/assets/edit.11cd1a09.js new file mode 100644 index 000000000..0e59d3750 --- /dev/null +++ b/public/admin/assets/edit.11cd1a09.js @@ -0,0 +1 @@ +import{_ as oe}from"./index.13ef78d6.js";import{T as ne,x as de,a3 as me,y as se,I as re,B as pe,C as ie,O as _e,F as ce,M as Fe,N as be,P as fe,G as Ve,H as Be,w as Ee,D as ve}from"./element-plus.4328d892.js";import{_ as ye}from"./index.vue_vue_type_script_setup_true_lang.17266fa4.js";import{f as S,b as Ae}from"./index.aa9bb752.js";import{u as Ce,a as De}from"./vue-router.9f65afb1.js";import{t as ke,g as ge}from"./code.1f2ae5c5.js";import{a as we}from"./useDictOptions.a61fcf9f.js";import{a as Ue}from"./dict.927f1fc7.js";import{m as he}from"./menu.072eb1d3.js";import{_ as qe}from"./relations-add.vue_vue_type_script_setup_true_lang.c08acc61.js";import{l as L}from"./lodash.08438971.js";import{d as K,r as j,$ as z,s as G,o as i,c as B,U as e,L as u,u as o,k as $e,a as d,T as v,a7 as A,K as E,R as c,Q as $,n as xe,t as H,w as Re}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./axios.105476b3.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.fa872673.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";const Te={class:"code-edit"},Ie={class:"w-80"},Ne={class:"w-80"},Pe={class:"w-80"},Oe={class:"w-80"},Se=d("div",{class:"form-tips"},"\u6307\u5B9A\u6811\u8868\u7684\u4E3B\u8981ID\uFF0C\u4E00\u822C\u4E3A\u4E3B\u952E",-1),Le=d("div",{class:"form-tips"},"\u6307\u5B9A\u6811\u8868\u7684\u7236ID\uFF0C\u6BD4\u5982\uFF1Aparent_id",-1),je={class:"w-80"},ze=d("div",{class:"form-tips"},[d("div",null," \u4F8B\uFF1A\u586B\u5199test,\u751F\u6210\u6587\u4EF6\u63CF\u8FF0\u4E3Atest\u63A7\u5236\u5668(test\u903B\u8F91/test\u6A21\u578B) ")],-1),Ge={class:"w-80"},He=d("div",{class:"form-tips"},"\u751F\u6210\u6587\u4EF6\u6240\u5728\u6A21\u5757",-1),Ke={class:"w-80"},Me=d("div",{class:"form-tips"},[d("div",null," \u4F8B\uFF1A\u586B\u5199test,\u5219\u5728app/\u6A21\u5757\u540D/controller/test\u4E0B\u751F\u6210\u63A7\u5236\u5668 ")],-1),Qe={class:"w-80"},We=d("div",{class:"form-tips"}," \u81EA\u52A8\u6784\u5EFA\uFF1A\u81EA\u52A8\u6267\u884C\u751F\u6210\u83DC\u5355sql\u3002\u624B\u52A8\u6DFB\u52A0\uFF1A\u81EA\u884C\u6DFB\u52A0\u83DC\u5355\u3002 ",-1),Je={class:"mt-4"},Xe=K({name:"tableEdit"}),jl=K({...Xe,setup(Ye){const M=Ce(),Q=De(),g=j("column"),w=j(!1),x=[{name:"\u4E00\u5BF9\u4E00",value:"has_one"},{name:"\u4E00\u5BF9\u591A",value:"has_many"}],t=z({id:"",table_name:"",table_comment:"",author:"",remark:"",template_type:0,generate_type:0,module_name:"",class_dir:"",class_comment:"",table_column:[],menu:{pid:0,name:"",type:0},tree:{tree_id:0,tree_pid:0,tree_name:0},delete:{name:"",type:0},relations:[]});let U=0;const R=G(),h=G(),T=z({table_name:[{required:!0,message:"\u8BF7\u8F93\u5165\u8868\u540D\u79F0"}],table_comment:[{required:!0,message:"\u8BF7\u8F93\u5165\u8868\u63CF\u8FF0"}],module_name:[{required:!0,message:"\u8BF7\u8F93\u5165\u6A21\u5757\u540D"}],generate_type:[{required:!0,trigger:"change"}],template_type:[{required:!0,trigger:"change"}],["menu.pid"]:[{required:!0,message:"\u8BF7\u9009\u62E9\u7236\u7EA7\u83DC\u5355"}],["menu.name"]:[{required:!0,message:"\u8BF7\u8F93\u5165\u83DC\u5355\u540D\u79F0"}],["delete.type"]:[{required:!0,trigger:"change"}],["delete.name"]:[{required:!0,message:"\u8BF7\u9009\u62E9\u5220\u9664\u5B57\u6BB5"}]}),I=async(p,a,f)=>{var F,_;w.value=!0,await xe(),a&&f!==void 0&&((F=h.value)==null||F.setFormData(a),U=f),(_=h.value)==null||_.open(p)},W=p=>{const a=L.exports.cloneDeep(H(p));t.relations.push(a)},J=async p=>{const a=L.exports.cloneDeep(H(p));console.log(U),t.relations.splice(U,1,a)},X=p=>{t.relations.splice(p,1)},Y=async()=>{const p=await ke({id:M.query.id});Object.keys(t).forEach(a=>{t[a]=p[a]}),Re(()=>t.generate_type,a=>{a==1&&S.confirm("\u751F\u6210\u5230\u6A21\u5757\u65B9\u5F0F\u5982\u9047\u540C\u540D\u6587\u4EF6\u4F1A\u8986\u76D6\u65E7\u6587\u4EF6\uFF0C\u786E\u5B9A\u8981\u9009\u62E9\u6B64\u65B9\u5F0F\u5417\uFF1F").catch(()=>{t.generate_type=0})})},{optionsData:N}=we({dict_type:{api:Ue},menu:{api:he,transformData(p){const a={id:0,name:"\u9876\u7EA7",children:[]};return a.children=p,[a]}}}),Z=async()=>{var p,a;try{await((p=R.value)==null?void 0:p.validate()),await ge(t),Q.back()}catch(f){for(const F in f)Object.keys(T).includes(F)&&S.msgError((a=f[F][0])==null?void 0:a.message)}};return Y(),(p,a)=>{const f=ne,F=re,_=pe,s=ie,C=de,r=_e,y=ce,m=Fe,V=be,P=fe,b=Ve,D=Be,ee=me,le=Ae,k=Ee,O=ye,ue=se,ae=ve,te=oe;return i(),B("div",Te,[e(F,{class:"!border-none",shadow:"never"},{default:u(()=>[e(f,{content:"\u7F16\u8F91\u6570\u636E\u8868",onBack:a[0]||(a[0]=l=>p.$router.back())})]),_:1}),e(F,{class:"mt-4 !border-none",shadow:"never"},{default:u(()=>[e(ae,{ref_key:"formRef",ref:R,class:"ls-form",model:o(t),"label-width":"100px",rules:o(T)},{default:u(()=>[e(ue,{modelValue:o(g),"onUpdate:modelValue":a[20]||(a[20]=l=>$e(g)?g.value=l:null)},{default:u(()=>[e(C,{label:"\u57FA\u7840\u4FE1\u606F",name:"base"},{default:u(()=>[e(s,{label:"\u8868\u540D\u79F0",prop:"table_name"},{default:u(()=>[d("div",Ie,[e(_,{modelValue:o(t).table_name,"onUpdate:modelValue":a[1]||(a[1]=l=>o(t).table_name=l),placeholder:"\u8BF7\u8F93\u5165\u8868\u540D\u79F0",clearable:""},null,8,["modelValue"])])]),_:1}),e(s,{label:"\u8868\u63CF\u8FF0",prop:"table_comment"},{default:u(()=>[d("div",Ne,[e(_,{modelValue:o(t).table_comment,"onUpdate:modelValue":a[2]||(a[2]=l=>o(t).table_comment=l),placeholder:"\u8BF7\u8F93\u5165\u8868\u63CF\u8FF0",clearable:""},null,8,["modelValue"])])]),_:1}),e(s,{label:"\u4F5C\u8005"},{default:u(()=>[d("div",Pe,[e(_,{modelValue:o(t).author,"onUpdate:modelValue":a[3]||(a[3]=l=>o(t).author=l),clearable:""},null,8,["modelValue"])])]),_:1}),e(s,{label:"\u5907\u6CE8"},{default:u(()=>[d("div",Oe,[e(_,{modelValue:o(t).remark,"onUpdate:modelValue":a[4]||(a[4]=l=>o(t).remark=l),class:"w-full",type:"textarea",autosize:{minRows:4,maxRows:4},maxlength:"200","show-word-limit":"",clearable:""},null,8,["modelValue"])])]),_:1})]),_:1}),e(C,{label:"\u5B57\u6BB5\u7BA1\u7406",name:"column"},{default:u(()=>[e(P,{data:o(t).table_column},{default:u(()=>[e(r,{label:"\u5B57\u6BB5\u5217\u540D",prop:"column_name"}),e(r,{label:"\u5B57\u6BB5\u63CF\u8FF0",prop:"column_comment","min-width":"120"},{default:u(({row:l})=>[e(_,{modelValue:l.column_comment,"onUpdate:modelValue":n=>l.column_comment=n,clearable:""},null,8,["modelValue","onUpdate:modelValue"])]),_:1}),e(r,{label:"\u7269\u7406\u7C7B\u578B",prop:"column_type"}),e(r,{label:"\u5FC5\u586B",width:"80"},{default:u(({row:l})=>[e(y,{modelValue:l.is_required,"onUpdate:modelValue":n=>l.is_required=n,"true-label":1,"false-label":0},null,8,["modelValue","onUpdate:modelValue"])]),_:1}),e(r,{label:"\u63D2\u5165",width:"80"},{default:u(({row:l})=>[e(y,{modelValue:l.is_insert,"onUpdate:modelValue":n=>l.is_insert=n,"true-label":1,"false-label":0},null,8,["modelValue","onUpdate:modelValue"])]),_:1}),e(r,{label:"\u7F16\u8F91",width:"80"},{default:u(({row:l})=>[e(y,{modelValue:l.is_update,"onUpdate:modelValue":n=>l.is_update=n,"true-label":1,"false-label":0},null,8,["modelValue","onUpdate:modelValue"])]),_:1}),e(r,{label:"\u5217\u8868",width:"80"},{default:u(({row:l})=>[e(y,{modelValue:l.is_lists,"onUpdate:modelValue":n=>l.is_lists=n,"true-label":1,"false-label":0},null,8,["modelValue","onUpdate:modelValue"])]),_:1}),e(r,{label:"\u67E5\u8BE2",width:"80"},{default:u(({row:l})=>[e(y,{modelValue:l.is_query,"onUpdate:modelValue":n=>l.is_query=n,"true-label":1,"false-label":0},null,8,["modelValue","onUpdate:modelValue"])]),_:1}),e(r,{label:"\u67E5\u8BE2\u65B9\u5F0F"},{default:u(({row:l})=>[e(V,{modelValue:l.query_type,"onUpdate:modelValue":n=>l.query_type=n},{default:u(()=>[e(m,{label:"=",value:"="}),e(m,{label:"!=",value:"!="}),e(m,{label:">",value:">"}),e(m,{label:">=",value:">="}),e(m,{label:"<",value:"<"}),e(m,{label:"<=",value:"<="}),e(m,{label:"LIKE",value:"like"}),e(m,{label:"BETWEEN",value:"between"})]),_:2},1032,["modelValue","onUpdate:modelValue"])]),_:1}),e(r,{label:"\u663E\u793A\u7C7B\u578B","min-width":"120"},{default:u(({row:l})=>[e(V,{modelValue:l.view_type,"onUpdate:modelValue":n=>l.view_type=n},{default:u(()=>[e(m,{label:"\u6587\u672C\u6846",value:"input"}),e(m,{label:"\u6587\u672C\u57DF",value:"textarea"}),e(m,{label:"\u4E0B\u62C9\u6846",value:"select"}),e(m,{label:"\u5355\u9009\u6846",value:"radio"}),e(m,{label:"\u590D\u9009\u6846",value:"checkbox"}),e(m,{label:"\u65E5\u671F\u63A7\u4EF6",value:"datetime"}),e(m,{label:"\u56FE\u7247\u9009\u62E9\u63A7\u4EF6",value:"imageSelect"}),e(m,{label:"\u5BCC\u6587\u672C\u63A7\u4EF6",value:"editor"})]),_:2},1032,["modelValue","onUpdate:modelValue"])]),_:1}),e(r,{label:"\u5B57\u5178\u7C7B\u578B","min-width":"120"},{default:u(({row:l})=>[e(V,{modelValue:l.dict_type,"onUpdate:modelValue":n=>l.dict_type=n,clearable:"",disabled:!(l.view_type=="select"||l.view_type=="radio"||l.view_type=="checkbox"),placeholder:"\u5B57\u5178\u7C7B\u578B"},{default:u(()=>[(i(!0),B(v,null,A(o(N).dict_type,(n,q)=>(i(),E(m,{key:q,label:n.name,value:n.type,disabled:!n.status},null,8,["label","value","disabled"]))),128))]),_:2},1032,["modelValue","onUpdate:modelValue","disabled"])]),_:1})]),_:1},8,["data"])]),_:1}),e(C,{label:"\u751F\u6210\u914D\u7F6E",name:"config"},{default:u(()=>[e(s,{label:"\u6A21\u677F\u7C7B\u578B",prop:"template_type"},{default:u(()=>[e(D,{modelValue:o(t).template_type,"onUpdate:modelValue":a[5]||(a[5]=l=>o(t).template_type=l)},{default:u(()=>[e(b,{label:0},{default:u(()=>[c("\u5355\u8868\uFF08curd\uFF09")]),_:1}),e(b,{label:1},{default:u(()=>[c("\u6811\u8868\uFF08curd\uFF09")]),_:1})]),_:1},8,["modelValue"])]),_:1}),e(s,{label:"\u5220\u9664\u7C7B\u578B",prop:"delete.type"},{default:u(()=>[e(D,{modelValue:o(t).delete.type,"onUpdate:modelValue":a[6]||(a[6]=l=>o(t).delete.type=l)},{default:u(()=>[e(b,{label:0},{default:u(()=>[c("\u7269\u7406\u5220\u9664")]),_:1}),e(b,{label:1},{default:u(()=>[c("\u8F6F\u5220\u9664")]),_:1})]),_:1},8,["modelValue"])]),_:1}),o(t).delete.type==1?(i(),E(s,{key:0,label:"\u5220\u9664\u5B57\u6BB5",prop:"delete.name"},{default:u(()=>[e(V,{class:"w-80",modelValue:o(t).delete.name,"onUpdate:modelValue":a[7]||(a[7]=l=>o(t).delete.name=l),clearable:""},{default:u(()=>[(i(!0),B(v,null,A(o(t).table_column,l=>(i(),E(m,{key:l.id,value:l.column_name,label:`${l.column_name}\uFF1A${l.column_comment}`},null,8,["value","label"]))),128))]),_:1},8,["modelValue"])]),_:1})):$("",!0),o(t).template_type==1?(i(),B(v,{key:1},[e(s,{label:"\u6811\u8868ID",prop:"treePrimary"},{default:u(()=>[d("div",null,[e(V,{class:"w-80",modelValue:o(t).tree.tree_id,"onUpdate:modelValue":a[8]||(a[8]=l=>o(t).tree.tree_id=l),clearable:""},{default:u(()=>[(i(!0),B(v,null,A(o(t).table_column,l=>(i(),E(m,{key:l.id,value:l.column_name,label:`${l.column_name}\uFF1A${l.column_comment}`},null,8,["value","label"]))),128))]),_:1},8,["modelValue"]),Se])]),_:1}),e(s,{label:"\u6811\u8868\u7236ID",prop:"treeParent"},{default:u(()=>[d("div",null,[e(V,{class:"w-80",modelValue:o(t).tree.tree_pid,"onUpdate:modelValue":a[9]||(a[9]=l=>o(t).tree.tree_pid=l),clearable:""},{default:u(()=>[(i(!0),B(v,null,A(o(t).table_column,l=>(i(),E(m,{key:l.id,value:l.column_name,label:`${l.column_name}\uFF1A${l.column_comment}`},null,8,["value","label"]))),128))]),_:1},8,["modelValue"]),Le])]),_:1}),e(s,{label:"\u6811\u540D\u79F0",prop:"treeName"},{default:u(()=>[e(V,{class:"w-80",modelValue:o(t).tree.tree_name,"onUpdate:modelValue":a[10]||(a[10]=l=>o(t).tree.tree_name=l),clearable:""},{default:u(()=>[(i(!0),B(v,null,A(o(t).table_column,l=>(i(),E(m,{key:l.id,value:l.column_name,label:`${l.column_name}\uFF1A${l.column_comment}`},null,8,["value","label"]))),128))]),_:1},8,["modelValue"])]),_:1})],64)):$("",!0),e(s,{label:"\u7C7B\u63CF\u8FF0"},{default:u(()=>[d("div",je,[d("div",null,[e(_,{modelValue:o(t).class_comment,"onUpdate:modelValue":a[11]||(a[11]=l=>o(t).class_comment=l),placeholder:"\u8BF7\u8F93\u5165\u6587\u4EF6\u63CF\u8FF0",clearable:""},null,8,["modelValue"])]),ze])]),_:1}),e(s,{label:"\u751F\u6210\u65B9\u5F0F",prop:"generate_type"},{default:u(()=>[e(D,{modelValue:o(t).generate_type,"onUpdate:modelValue":a[12]||(a[12]=l=>o(t).generate_type=l)},{default:u(()=>[e(b,{label:0},{default:u(()=>[c("\u538B\u7F29\u5305\u4E0B\u8F7D")]),_:1}),e(b,{label:1},{default:u(()=>[c("\u751F\u6210\u5230\u6A21\u5757")]),_:1})]),_:1},8,["modelValue"])]),_:1}),e(s,{label:"\u6A21\u5757\u540D",prop:"module_name"},{default:u(()=>[d("div",Ge,[e(_,{modelValue:o(t).module_name,"onUpdate:modelValue":a[13]||(a[13]=l=>o(t).module_name=l),placeholder:"\u8BF7\u8F93\u5165\u6A21\u5757\u540D",clearable:""},null,8,["modelValue"]),He])]),_:1}),e(s,{label:"\u7C7B\u76EE\u5F55"},{default:u(()=>[d("div",Ke,[d("div",null,[e(_,{modelValue:o(t).class_dir,"onUpdate:modelValue":a[14]||(a[14]=l=>o(t).class_dir=l),placeholder:"\u8BF7\u8F93\u5165\u6587\u4EF6\u6240\u5728\u76EE\u5F55",clearable:""},null,8,["modelValue"])]),Me])]),_:1}),e(s,{label:"\u7236\u7EA7\u83DC\u5355",prop:"menu.pid"},{default:u(()=>[e(ee,{class:"w-80",modelValue:o(t).menu.pid,"onUpdate:modelValue":a[15]||(a[15]=l=>o(t).menu.pid=l),data:o(N).menu,clearable:"","node-key":"id",props:{label:"name"},"default-expand-all":"",placeholder:"\u8BF7\u9009\u62E9\u7236\u7EA7\u83DC\u5355","check-strictly":""},null,8,["modelValue","data"])]),_:1}),e(s,{label:"\u83DC\u5355\u540D\u79F0",prop:"menu.name"},{default:u(()=>[d("div",Qe,[e(_,{modelValue:o(t).menu.name,"onUpdate:modelValue":a[16]||(a[16]=l=>o(t).menu.name=l),placeholder:"\u8BF7\u8F93\u5165\u83DC\u5355\u540D\u79F0",clearable:""},null,8,["modelValue"])])]),_:1}),e(s,{label:"\u83DC\u5355\u6784\u5EFA",prop:"menu.type",required:""},{default:u(()=>[d("div",null,[e(D,{modelValue:o(t).menu.type,"onUpdate:modelValue":a[17]||(a[17]=l=>o(t).menu.type=l)},{default:u(()=>[e(b,{label:1},{default:u(()=>[c("\u81EA\u52A8\u6784\u5EFA")]),_:1}),e(b,{label:0},{default:u(()=>[c("\u624B\u52A8\u6DFB\u52A0")]),_:1})]),_:1},8,["modelValue"]),We])]),_:1})]),_:1}),e(C,{label:"\u5173\u8054\u914D\u7F6E",name:"relations"},{default:u(()=>[e(k,{type:"primary",onClick:a[18]||(a[18]=l=>I("add"))},{icon:u(()=>[e(le,{name:"el-icon-Plus"})]),default:u(()=>[c(" \u65B0\u589E\u5173\u8054 ")]),_:1}),d("div",Je,[e(P,{data:o(t).relations,size:"mini"},{default:u(()=>[e(r,{prop:"type",label:"\u5173\u8054\u7C7B\u578B"},{default:u(({row:l})=>[e(O,{value:l.type,options:x},null,8,["value"])]),_:1}),e(r,{prop:"name",label:"\u5173\u8054\u540D\u79F0"}),e(r,{prop:"model",label:"\u5173\u8054\u6A21\u578B"}),e(r,{prop:"local_key",label:"\u5173\u8054\u952E"},{default:u(({row:l})=>[e(O,{value:l.local_key,options:o(t).table_column,config:{label:"column_comment",value:"column_name"}},null,8,["value","options"])]),_:1}),e(r,{prop:"foreign_key",label:"\u5916\u952E"}),e(r,{label:"\u64CD\u4F5C"},{default:u(({row:l,$index:n})=>[e(k,{link:"",type:"primary",onClick:q=>I("edit",l,n)},{default:u(()=>[c(" \u7F16\u8F91 ")]),_:2},1032,["onClick"]),e(k,{link:"",type:"danger",onClick:q=>X(n)},{default:u(()=>[c(" \u5220\u9664 ")]),_:2},1032,["onClick"])]),_:1})]),_:1},8,["data"]),o(w)?(i(),E(qe,{key:0,column:o(t).table_column,types:x,ref_key:"editRef",ref:h,onAdd:W,onEdit:J,onClose:a[19]||(a[19]=l=>w.value=!1)},null,8,["column"])):$("",!0)])]),_:1})]),_:1},8,["modelValue"])]),_:1},8,["model","rules"])]),_:1}),e(te,null,{default:u(()=>[e(k,{type:"primary",onClick:Z},{default:u(()=>[c("\u4FDD\u5B58")]),_:1})]),_:1})])}}});export{jl as default}; diff --git a/public/admin/assets/edit.11eb6a66.js b/public/admin/assets/edit.11eb6a66.js new file mode 100644 index 000000000..6aaba7744 --- /dev/null +++ b/public/admin/assets/edit.11eb6a66.js @@ -0,0 +1 @@ +import"./edit.vue_vue_type_script_setup_true_lang.34775f0d.js";import{_ as N}from"./edit.vue_vue_type_script_setup_true_lang.34775f0d.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.aa9bb752.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.fa872673.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";export{N as default}; diff --git a/public/admin/assets/edit.127b62e5.js b/public/admin/assets/edit.127b62e5.js new file mode 100644 index 000000000..f624b4fae --- /dev/null +++ b/public/admin/assets/edit.127b62e5.js @@ -0,0 +1 @@ +import"./edit.vue_vue_type_script_setup_true_lang.a7690e7b.js";import{_ as Z}from"./edit.vue_vue_type_script_setup_true_lang.a7690e7b.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./picker.45aea54f.js";import"./index.fa872673.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.aa9bb752.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.c47e74f8.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./index.a9a11abe.js";import"./index.a450f1bb.js";import"./index.vue_vue_type_script_setup_true_lang.dc835bba.js";import"./usePaging.2ad8e1e6.js";import"./vue3-video-play.b911321b.js";import"./vuedraggable.0cb40d3a.js";import"./vue.5de34049.js";import"./sortablejs.ef73fc5c.js";import"./pay.63666d5f.js";export{Z as default}; diff --git a/public/admin/assets/edit.13207847.js b/public/admin/assets/edit.13207847.js new file mode 100644 index 000000000..ce2bff9d4 --- /dev/null +++ b/public/admin/assets/edit.13207847.js @@ -0,0 +1 @@ +import"./edit.vue_vue_type_script_setup_true_name_withdrawEdit_lang.d8e42481.js";import{_ as O}from"./edit.vue_vue_type_script_setup_true_name_withdrawEdit_lang.d8e42481.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.b940d6e3.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.ed71ac09.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./withdraw.046913b9.js";export{O as default}; diff --git a/public/admin/assets/edit.14393384.js b/public/admin/assets/edit.14393384.js new file mode 100644 index 000000000..e44a69e2c --- /dev/null +++ b/public/admin/assets/edit.14393384.js @@ -0,0 +1 @@ +import"./edit.vue_vue_type_script_setup_true_name_shopMerchantEdit_lang.ddb23228.js";import{_ as N}from"./edit.vue_vue_type_script_setup_true_name_shopMerchantEdit_lang.ddb23228.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.5759a1a6.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.37f7aea6.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";export{N as default}; diff --git a/public/admin/assets/edit.17451ae3.js b/public/admin/assets/edit.17451ae3.js new file mode 100644 index 000000000..9cc8448e7 --- /dev/null +++ b/public/admin/assets/edit.17451ae3.js @@ -0,0 +1 @@ +import{_ as T}from"./index.be5645df.js";import{T as q,I as A,B as $,C as I,G as N,H as j,t as G,O as H,P as L,D as M,w as O}from"./element-plus.4328d892.js";import{u as P,a as S}from"./vue-router.9f65afb1.js";import{c as z,d as J,e as K,f as Q}from"./system.1f3b2cc7.js";import{e as W}from"./index.ed71ac09.js";import{d as w,$ as F,s as X,r as Y,j as Z,o as ee,c as oe,U as e,L as l,u as a,a as m,R as b}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const te={class:"article-edit"},ae={class:"w-80"},le={class:"w-80"},ue={class:"w-80"},se={class:"w-80"},re={class:"w-80"},ne=w({name:"scheduledTaskEdit"}),ze=w({...ne,setup(me){const i=P(),E=S(),t=F({id:"",name:"",command:"",expression:"",params:"",remark:"",status:1,type:1}),{removeTab:B}=W(),d=X(),V=F({name:[{required:!0,message:"\u8BF7\u8F93\u5165\u540D\u79F0"}],command:[{required:!0,message:"\u8BF7\u8F93\u5165thankphp\u547D\u4EE4\uFF0C\u5982vresion"}],expression:[{required:!0,message:"\u8BF7\u8F93\u5165crontab\u89C4\u5219\uFF0C\u4F8B\uFF1A5 9 * * *"}]}),v=async()=>{const s=await z({id:i.query.id});Object.keys(t).forEach(o=>{t[o]=s[o]})},p=Y([]),c=async()=>{var o;await((o=d.value)==null?void 0:o.validateField(["expression"]));const s=await J({expression:t.expression});p.value=s},x=async()=>{var s;await((s=d.value)==null?void 0:s.validate()),i.query.id?await K(t):await Q(t),B(),E.back()};return Z(async()=>{!i.query.id||(await v(),await c())}),(s,o)=>{const C=q,_=A,n=$,r=I,h=N,y=j,k=G,f=H,D=L,g=M,R=O,U=T;return ee(),oe("div",te,[e(_,{class:"!border-none",shadow:"never"},{default:l(()=>[e(C,{content:s.$route.meta.title,onBack:o[0]||(o[0]=u=>s.$router.back())},null,8,["content"])]),_:1}),e(_,{class:"mt-4 !border-none",shadow:"never"},{default:l(()=>[e(g,{ref_key:"formRef",ref:d,class:"ls-form",model:a(t),"label-width":"85px",rules:a(V)},{default:l(()=>[e(r,{label:"\u540D\u79F0",prop:"name"},{default:l(()=>[m("div",ae,[e(n,{modelValue:a(t).name,"onUpdate:modelValue":o[1]||(o[1]=u=>a(t).name=u),placeholder:"\u8BF7\u8F93\u5165\u540D\u79F0",maxlength:"30",clearable:""},null,8,["modelValue"])])]),_:1}),e(r,{label:"\u7C7B\u578B",prop:"type"},{default:l(()=>[e(y,{modelValue:a(t).type,"onUpdate:modelValue":o[2]||(o[2]=u=>a(t).type=u)},{default:l(()=>[e(h,{label:1},{default:l(()=>[b("\u5B9A\u65F6\u4EFB\u52A1")]),_:1})]),_:1},8,["modelValue"])]),_:1}),e(r,{label:"\u547D\u4EE4",prop:"command"},{default:l(()=>[m("div",le,[e(n,{modelValue:a(t).command,"onUpdate:modelValue":o[3]||(o[3]=u=>a(t).command=u),placeholder:"\u8BF7\u8F93\u5165thinkphp\u547D\u4EE4\uFF0C\u5982vresion",clearable:""},null,8,["modelValue"])])]),_:1}),e(r,{label:"\u53C2\u6570",prop:"params"},{default:l(()=>[m("div",ue,[e(n,{modelValue:a(t).params,"onUpdate:modelValue":o[4]||(o[4]=u=>a(t).params=u),placeholder:"\u8BF7\u8F93\u5165\u53C2\u6570\uFF0C\u4F8B:--id 8 --name \u6D4B\u8BD5",clearable:""},null,8,["modelValue"])])]),_:1}),e(r,{label:"\u72B6\u6001"},{default:l(()=>[e(k,{modelValue:a(t).status,"onUpdate:modelValue":o[5]||(o[5]=u=>a(t).status=u),"active-value":1,"inactive-value":2},null,8,["modelValue"])]),_:1}),e(r,{label:"\u89C4\u5219",prop:"expression"},{default:l(()=>[m("div",se,[e(n,{onBlur:c,modelValue:a(t).expression,"onUpdate:modelValue":o[6]||(o[6]=u=>a(t).expression=u),placeholder:"\u8BF7\u8F93\u5165crontab\u89C4\u5219\uFF0C\u4F8B\uFF1A5 9 * * *"},null,8,["modelValue"])])]),_:1}),e(r,null,{default:l(()=>[e(D,{data:a(p),style:{"max-width":"320px"}},{default:l(()=>[e(f,{prop:"time",label:"\u5E8F\u53F7","min-width":"80"}),e(f,{prop:"date",label:"\u6267\u884C\u65F6\u95F4","min-width":"240"})]),_:1},8,["data"])]),_:1}),e(r,{label:"\u5907\u6CE8",prop:"remark"},{default:l(()=>[m("div",re,[e(n,{modelValue:a(t).remark,"onUpdate:modelValue":o[7]||(o[7]=u=>a(t).remark=u),type:"textarea",autosize:{minRows:3,maxRows:6},maxlength:200,"show-word-limit":"",clearable:""},null,8,["modelValue"])])]),_:1})]),_:1},8,["model","rules"])]),_:1}),e(U,null,{default:l(()=>[e(R,{type:"primary",onClick:x},{default:l(()=>[b("\u4FDD\u5B58")]),_:1})]),_:1})])}}});export{ze as default}; diff --git a/public/admin/assets/edit.17a19981.js b/public/admin/assets/edit.17a19981.js new file mode 100644 index 000000000..0f1df8dc3 --- /dev/null +++ b/public/admin/assets/edit.17a19981.js @@ -0,0 +1 @@ +import"./edit.vue_vue_type_script_setup_true_name_companyComplaintFeedbackEdit_lang.def3fc04.js";import{_ as N}from"./edit.vue_vue_type_script_setup_true_name_companyComplaintFeedbackEdit_lang.def3fc04.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.fa872673.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.aa9bb752.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";export{N as default}; diff --git a/public/admin/assets/edit.19efdec6.js b/public/admin/assets/edit.19efdec6.js new file mode 100644 index 000000000..5ffd8fe93 --- /dev/null +++ b/public/admin/assets/edit.19efdec6.js @@ -0,0 +1 @@ +import{_ as T}from"./index.fd04a214.js";import{T as q,I as A,B as $,C as I,G as N,H as j,t as G,O as H,P as L,D as M,w as O}from"./element-plus.4328d892.js";import{u as P,a as S}from"./vue-router.9f65afb1.js";import{c as z,d as J,e as K,f as Q}from"./system.7bc7010f.js";import{e as W}from"./index.37f7aea6.js";import{d as w,$ as F,s as X,r as Y,j as Z,o as ee,c as oe,U as e,L as l,u as a,a as m,R as b}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const te={class:"article-edit"},ae={class:"w-80"},le={class:"w-80"},ue={class:"w-80"},se={class:"w-80"},re={class:"w-80"},ne=w({name:"scheduledTaskEdit"}),ze=w({...ne,setup(me){const i=P(),E=S(),t=F({id:"",name:"",command:"",expression:"",params:"",remark:"",status:1,type:1}),{removeTab:B}=W(),d=X(),V=F({name:[{required:!0,message:"\u8BF7\u8F93\u5165\u540D\u79F0"}],command:[{required:!0,message:"\u8BF7\u8F93\u5165thankphp\u547D\u4EE4\uFF0C\u5982vresion"}],expression:[{required:!0,message:"\u8BF7\u8F93\u5165crontab\u89C4\u5219\uFF0C\u4F8B\uFF1A5 9 * * *"}]}),v=async()=>{const s=await z({id:i.query.id});Object.keys(t).forEach(o=>{t[o]=s[o]})},p=Y([]),c=async()=>{var o;await((o=d.value)==null?void 0:o.validateField(["expression"]));const s=await J({expression:t.expression});p.value=s},x=async()=>{var s;await((s=d.value)==null?void 0:s.validate()),i.query.id?await K(t):await Q(t),B(),E.back()};return Z(async()=>{!i.query.id||(await v(),await c())}),(s,o)=>{const C=q,_=A,n=$,r=I,h=N,y=j,k=G,f=H,D=L,g=M,R=O,U=T;return ee(),oe("div",te,[e(_,{class:"!border-none",shadow:"never"},{default:l(()=>[e(C,{content:s.$route.meta.title,onBack:o[0]||(o[0]=u=>s.$router.back())},null,8,["content"])]),_:1}),e(_,{class:"mt-4 !border-none",shadow:"never"},{default:l(()=>[e(g,{ref_key:"formRef",ref:d,class:"ls-form",model:a(t),"label-width":"85px",rules:a(V)},{default:l(()=>[e(r,{label:"\u540D\u79F0",prop:"name"},{default:l(()=>[m("div",ae,[e(n,{modelValue:a(t).name,"onUpdate:modelValue":o[1]||(o[1]=u=>a(t).name=u),placeholder:"\u8BF7\u8F93\u5165\u540D\u79F0",maxlength:"30",clearable:""},null,8,["modelValue"])])]),_:1}),e(r,{label:"\u7C7B\u578B",prop:"type"},{default:l(()=>[e(y,{modelValue:a(t).type,"onUpdate:modelValue":o[2]||(o[2]=u=>a(t).type=u)},{default:l(()=>[e(h,{label:1},{default:l(()=>[b("\u5B9A\u65F6\u4EFB\u52A1")]),_:1})]),_:1},8,["modelValue"])]),_:1}),e(r,{label:"\u547D\u4EE4",prop:"command"},{default:l(()=>[m("div",le,[e(n,{modelValue:a(t).command,"onUpdate:modelValue":o[3]||(o[3]=u=>a(t).command=u),placeholder:"\u8BF7\u8F93\u5165thinkphp\u547D\u4EE4\uFF0C\u5982vresion",clearable:""},null,8,["modelValue"])])]),_:1}),e(r,{label:"\u53C2\u6570",prop:"params"},{default:l(()=>[m("div",ue,[e(n,{modelValue:a(t).params,"onUpdate:modelValue":o[4]||(o[4]=u=>a(t).params=u),placeholder:"\u8BF7\u8F93\u5165\u53C2\u6570\uFF0C\u4F8B:--id 8 --name \u6D4B\u8BD5",clearable:""},null,8,["modelValue"])])]),_:1}),e(r,{label:"\u72B6\u6001"},{default:l(()=>[e(k,{modelValue:a(t).status,"onUpdate:modelValue":o[5]||(o[5]=u=>a(t).status=u),"active-value":1,"inactive-value":2},null,8,["modelValue"])]),_:1}),e(r,{label:"\u89C4\u5219",prop:"expression"},{default:l(()=>[m("div",se,[e(n,{onBlur:c,modelValue:a(t).expression,"onUpdate:modelValue":o[6]||(o[6]=u=>a(t).expression=u),placeholder:"\u8BF7\u8F93\u5165crontab\u89C4\u5219\uFF0C\u4F8B\uFF1A5 9 * * *"},null,8,["modelValue"])])]),_:1}),e(r,null,{default:l(()=>[e(D,{data:a(p),style:{"max-width":"320px"}},{default:l(()=>[e(f,{prop:"time",label:"\u5E8F\u53F7","min-width":"80"}),e(f,{prop:"date",label:"\u6267\u884C\u65F6\u95F4","min-width":"240"})]),_:1},8,["data"])]),_:1}),e(r,{label:"\u5907\u6CE8",prop:"remark"},{default:l(()=>[m("div",re,[e(n,{modelValue:a(t).remark,"onUpdate:modelValue":o[7]||(o[7]=u=>a(t).remark=u),type:"textarea",autosize:{minRows:3,maxRows:6},maxlength:200,"show-word-limit":"",clearable:""},null,8,["modelValue"])])]),_:1})]),_:1},8,["model","rules"])]),_:1}),e(U,null,{default:l(()=>[e(R,{type:"primary",onClick:x},{default:l(()=>[b("\u4FDD\u5B58")]),_:1})]),_:1})])}}});export{ze as default}; diff --git a/public/admin/assets/edit.1f44f432.js b/public/admin/assets/edit.1f44f432.js new file mode 100644 index 000000000..a2e8007a0 --- /dev/null +++ b/public/admin/assets/edit.1f44f432.js @@ -0,0 +1 @@ +import"./edit.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.c27438b7.js";import{_ as T}from"./edit.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.c27438b7.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./vue-router.9f65afb1.js";import"./index.b940d6e3.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.ed71ac09.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./map.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.c34becfa.js";import"./dialog_index_personnel.vue_vue_type_script_setup_true_name_companyLists_lang.e9155591.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./usePaging.2ad8e1e6.js";import"./role.1c72c4c7.js";import"./useDictOptions.8d37e54b.js";export{T as default}; diff --git a/public/admin/assets/edit.22884d64.js b/public/admin/assets/edit.22884d64.js new file mode 100644 index 000000000..93596b924 --- /dev/null +++ b/public/admin/assets/edit.22884d64.js @@ -0,0 +1 @@ +import"./edit.vue_vue_type_script_setup_true_lang.f72e570b.js";import{_ as Z}from"./edit.vue_vue_type_script_setup_true_lang.f72e570b.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./picker.3821e495.js";import"./index.5759a1a6.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.37f7aea6.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.af446662.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./index.fe1d30dd.js";import"./index.5f944d34.js";import"./index.vue_vue_type_script_setup_true_lang.dc835bba.js";import"./usePaging.2ad8e1e6.js";import"./vue3-video-play.b911321b.js";import"./vuedraggable.0cb40d3a.js";import"./vue.5de34049.js";import"./sortablejs.ef73fc5c.js";import"./pay.b01bd8e2.js";export{Z as default}; diff --git a/public/admin/assets/edit.24a195ab.js b/public/admin/assets/edit.24a195ab.js new file mode 100644 index 000000000..f988677b1 --- /dev/null +++ b/public/admin/assets/edit.24a195ab.js @@ -0,0 +1 @@ +import"./edit.vue_vue_type_script_setup_true_name_companyFormEdit_lang.0f448649.js";import{_ as N}from"./edit.vue_vue_type_script_setup_true_name_companyFormEdit_lang.0f448649.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.5759a1a6.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.37f7aea6.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";export{N as default}; diff --git a/public/admin/assets/edit.250f8b9a.js b/public/admin/assets/edit.250f8b9a.js new file mode 100644 index 000000000..81bfa892e --- /dev/null +++ b/public/admin/assets/edit.250f8b9a.js @@ -0,0 +1 @@ +import{J as Pe,Z as Ge,_ as Ke,$ as Qe,k as L,B as Ze,C as He,M as We,N as Xe,F as Ye,a0 as ea,a1 as aa,a2 as la,c as ta,w as ua,D as oa,L as sa}from"./element-plus.4328d892.js";import{a as ia,u as na}from"./vue-router.9f65afb1.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import{a as re,b as K,d as ra,e as da}from"./company.d1e8fc82.js";import{a as ca,b as pa,c as ma,d as _a,e as fa,f as ba}from"./common.a58b263a.js";import{d as de}from"./dict.58face92.js";import{d as me,C as ya,r as m,s as ce,$ as Q,w as ga,a4 as va,o as i,c as _,U as t,L as o,u as e,T as g,a7 as E,K as p,Q as h,R as N,S as Ea,a as F,k as Z}from"./@vue.51d7f2d8.js";import"./lodash.08438971.js";import{_ as ha}from"./dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.383436e1.js";import{_ as pe}from"./dialog_index_man.vue_vue_type_script_setup_true_name_companyLists_lang.bd396891.js";import{a as Ba,e as Fa}from"./index.37f7aea6.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./usePaging.2ad8e1e6.js";import"./role.8d2a6d5e.js";import"./useDictOptions.a45fc8ac.js";import"./admin.f0e2c7b9.js";import"./axios.105476b3.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const Va={class:"edit-popup"},Ca=F("div",{class:"tit"},"\u516C\u53F8\u57FA\u672C\u4FE1\u606F\u521B\u5EFA",-1),Aa=F("div",{class:"tit"},"\u4E3B\u8981\u8054\u7CFB\u4EBA",-1),wa=F("span",{style:{color:"#f56c6c","padding-left":"20px"}},"*",-1),ka={class:"headimg",style:{"margin-left":"5px"}},Da=["src"],xa={key:1,class:"avatar-uploader-icon"},qa={style:{display:"flex","justify-content":"left"}},Ua={class:"right",style:{"max-width":"1100px"}},Oa=F("div",{class:"tit"},"\u5176\u4ED6\u8054\u7CFB\u4EBA",-1),La=F("div",{class:"tit"},"\u8D44\u8D28\u4FE1\u606F",-1),Na=["src"],Sa=["src","onClick"],Ta=["src"];const $a=me({name:"companyEdit"}),Ol=me({...$a,props:{dictData:{type:Object,default:()=>({})}},emits:["success","close"],setup(ja,{expose:_e,emit:Ra}){var ie,ne;const S=ya("base_url"),A=Ba(),{removeTab:fe}=Fa(),be=ia(),v=na();m(!0);let H=m(!0),r=m(!1);v.query.flag,v.query.isshow&&(H=!1,r=!0);const T=m(".png, .jpg, .jpeg, image/png, image/jpeg");console.log(r);const J=m(0);let q=m(!1);const W=ce();ce(),m(),v.query.read&&(r=v.query.read),v.query.edit&&(q=v.query.edit);const a=Q({admin_id:"",admin_name:"",area_manager:"",area_manager_name:"",id:"",company_name:"",organization_code:"",province:"",city:"",area:"",street:"",village:"",brigade:"",address:"",responsible_area:[],company_type:"",avatar:"",sex:"1",id_card:"",master_name:"",master_position:"",master_phone:"",master_email:"",other_contacts:[],qualification:{business_license:"",business_licenseB:"",other_qualifications:[],bank_accountB:[],bank_account:[]},contract:{contract_type:"",party_a:0,file:"",contract_no:"\u7CFB\u7EDF\u81EA\u52A8\u751F\u6210",type:1},party_a_name:"",file_image:""});A.userInfo.root==0&&(a.contract.party_a=(ie=A.userInfo.company)==null?void 0:ie.id,a.party_a_name=(ne=A.userInfo.company)==null?void 0:ne.company_name);const f=Q({provinceOptions:[],cityOptions:[],areaOptions:[],streetOptions:[],villageOptions:[],brigadeOptions:[],dictTypeLists:[],contract_type:[],company_list:[]});m([]);const ye=Q({company_name:[{required:!0,message:"\u8BF7\u8F93\u5165\u516C\u53F8\u540D\u79F0",trigger:["blur"]}],organization_code:[{required:!0,message:"\u8BF7\u8F93\u5165\u7EC4\u7EC7\u673A\u6784\u4EE3\u7801",trigger:["blur"]}],master_name:[{required:!0,message:"\u8BF7\u8F93\u5165\u4E3B\u8054\u7CFB\u4EBA\u59D3\u540D",trigger:["blur"]}],master_position:[{required:!0,message:"\u8BF7\u8F93\u5165\u4E3B\u8054\u7CFB\u4EBA\u804C\u52A1",trigger:["blur"]}],master_phone:[{required:!0,message:"\u8BF7\u8F93\u5165\u4E3B\u8054\u7CFB\u4EBA\u624B\u673A",trigger:["blur"]}],avatar:[{required:!0,message:"\u8BF7\u4E0A\u4F20\u7167\u7247",trigger:["blur"]}],account:[{required:!0,message:"\u8BF7\u8F93\u5165\u8D26\u53F7",trigger:["blur"]}],password:[{required:!0,message:"\u8BF7\u8F93\u5165\u5BC6\u7801",trigger:["blur"]}]}),U=m(!1),$=m(!1),j=m(!1),w=m(!1),k=m(!1),D=m(!1),x=m(!1),P=m(!0);function ge(u){U.value=!1,a.contract.party_a=u.id,a.party_a_name=u.company_name}function ve(u){$.value=!1,a.admin_name=u.name,a.admin_id=u.id}function Ee(u){j.value=!1,a.area_manager_name=u.name,a.area_manager=u.id}function za(){U.value=!0}const b=m(""),X=m(0);ga(()=>a[b.value],(u,s)=>{if(X.value==0)return X.value++;a.responsible_area=[],a.responsible_area.push(u+"")});const he=u=>{},Y=async u=>{for(const s in a)u[s]!=null&&u[s]!=null&&(a[s]=u[s])},Be=async u=>{const s=await re({id:u.id});Y(s)},Fe=(u,s)=>{if(u.code==0){L.error(u.msg);return}a.qualification.business_license=u.data.uri},Ve=(u,s)=>{if(u.code==0){L.error(u.msg);return}a.qualification.business_licenseB=u.data.uri},Ce=(u,s)=>{if(u.code==0){L.error(u.msg);return}a.qualification.other_qualifications.push(u.data.uri)};function Ae(){a.other_contacts.push({name:"",position:"",phone:"",email:""})}function we(){a.other_contacts.pop({name:"",position:"",phone:"",email:""})}function ee(u){if([30,14,15].indexOf(u)>-1)return w.value=!0,k.value=!1,D.value=!1,x.value=!1,a.street="",a.village="",a.brigade="",b.value="area",!0;if(u==16)return w.value=!0,k.value=!0,D.value=!1,x.value=!1,a.village="",a.brigade="",a.street="",a.area="",a.responsible_area=[],P.value=!0,J.value=30,b.value="street",!0;if(u!=16&&(P.value=!1),u==41)return w.value=!0,k.value=!0,D.value=!1,x.value=!1,a.village="",a.brigade="",a.street="",a.area="",a.responsible_area=[],b.value="street",!0;if(u==17)return w.value=!0,k.value=!0,D.value=!0,x.value=!1,a.brigade="",b.value="village",!0;if(u==18)return w.value=!0,k.value=!0,D.value=!0,x.value=!0,b.value="brigade",!0}function ke(u){ae()}function De(u){le()}function xe(u){te()}function qe(u){ue()}function Ue(u){oe()}const Oe=async()=>{const u=await ca({});f.provinceOptions=u},ae=async()=>{const u=await pa({city:a.province});f.cityOptions=u},le=async()=>{const u=await ma({area:a.city});f.areaOptions=u},te=async()=>{const u=await _a({street:a.area});if(a.company_type==16||a.company_type==41){const s=await K({key:"area",value:a.area,company_type:a.company_type});u.forEach(d=>{Object.values(s).find(n=>d.street_code==n+"")?d.disabled=!0:d.disabled=!1})}f.streetOptions=u},ue=async()=>{const u=await fa({village:a.street});if(a.company_type==17){const s=await K({key:"street",value:a.street,company_type:a.company_type});u.forEach(d=>{Object.values(s).find(n=>d.village_code==n+"")?d.disabled=!0:d.disabled=!1})}f.villageOptions=u},oe=async()=>{const u=await ba();if(a.company_type==18){const s=await K({key:"village",value:a.village,company_type:a.company_type});u.forEach(d=>{Object.values(s).find(n=>d.id==n+"")?d.disabled=!0:d.disabled=!1})}f.brigadeOptions=u};Oe();const Le=async()=>{const u=await de({type_id:7});f.contract_type=u.lists},Ne=async()=>{const u=await de({type_id:6});f.dictTypeLists=u.lists},Se=async()=>{var s;const u=await re({id:v.query.id});u.company_type==16&&(J.value=30,P.value=!0),Object.keys(a).forEach(d=>{const n=["province","city","area","street","village","brigade"];u[d]!=null&&u[d]!=null&&(a[d]=u[d]),n.includes(d)&&(a[d]=a[d].toString())}),await ae(),await le(),await te(),await ue(),await oe(),a.party_a_name=(s=u.contract)==null?void 0:s.party_a_info.company_name,ee(a.company_type)},Te=u=>{v.query.read||a.qualification.other_qualifications.splice(u,1)};Ne(),Le();const $e=(u,s)=>{if(u.code==0){L.error(u.msg);return}a.avatar=u.data.uri},se=async()=>{var s;if(!a.avatar)return L.error("\u4E3B\u8981\u8054\u7CFB\u4EBA\u5934\u50CF\u4E0D\u53EF\u4E3A\u7A7A");await((s=W.value)==null?void 0:s.validate());const u=JSON.parse(JSON.stringify({...a}));u.qualification.other_qualifications=JSON.stringify(u.qualification.other_qualifications),v.query.id?await ra(u):await da(u),fe(),be.back()};return v.query.id&&Se(),_e({open,setFormData:Y,getDetail:Be}),(u,s)=>{const d=Ze,n=He,B=We,V=Xe,je=Ye,Re=ea,y=aa,O=la,R=va("Plus"),z=ta,M=Pe,ze=Ge,Me=Ke,Ie=Qe,I=ua,Je=oa,G=sa;return i(),_("div",Va,[t(Je,{ref_key:"formRef",ref:W,model:e(a),"label-width":"90px",rules:e(ye)},{default:o(()=>[t(y,{span:24,class:"el-card pt-6"},{default:o(()=>[Ca,t(O,null,{default:o(()=>[t(n,{label:"\u516C\u53F8\u540D\u79F0",prop:"company_name"},{default:o(()=>[t(d,{modelValue:e(a).company_name,"onUpdate:modelValue":s[0]||(s[0]=l=>e(a).company_name=l),placeholder:"\u8BF7\u8F93\u5165\u516C\u53F8\u540D\u79F0",clearable:"",disabled:e(r),style:{width:"300px"}},null,8,["modelValue","disabled"])]),_:1}),t(n,{label:"\u793E\u4F1A\u4EE3\u7801",prop:"organization_code"},{default:o(()=>[t(d,{disabled:e(r),modelValue:e(a).organization_code,"onUpdate:modelValue":s[1]||(s[1]=l=>e(a).organization_code=l),placeholder:"\u8BF7\u8F93\u5165\u793E\u4F1A\u4EE3\u7801",clearable:"",style:{width:"300px"}},null,8,["disabled","modelValue"])]),_:1}),t(n,{label:"\u516C\u53F8\u7C7B\u578B",rules:[{required:!0,message:"\u4E0D\u53EF\u4E3A\u7A7A",trigger:"blur"}],prop:"company_type"},{default:o(()=>[t(V,{disabled:e(r),modelValue:e(a).company_type,"onUpdate:modelValue":s[2]||(s[2]=l=>e(a).company_type=l),placeholder:"\u8BF7\u9009\u62E9\u516C\u53F8\u7C7B\u578B",clearable:"",onChange:ee},{default:o(()=>[(i(!0),_(g,null,E(e(f).dictTypeLists,(l,c)=>(i(),p(B,{key:c,label:l.name,value:l.id},null,8,["label","value"]))),128))]),_:1},8,["disabled","modelValue"])]),_:1}),t(n,{label:"\u7701",rules:[{required:!0,message:"\u4E0D\u53EF\u4E3A\u7A7A",trigger:"blur"}],prop:"province"},{default:o(()=>[t(V,{disabled:e(r),modelValue:e(a).province,"onUpdate:modelValue":s[3]||(s[3]=l=>e(a).province=l),placeholder:"\u8BF7\u9009\u62E9\u7701",clearable:"",onChange:ke,style:{width:"100%"}},{default:o(()=>[(i(!0),_(g,null,E(e(f).provinceOptions,(l,c)=>(i(),p(B,{key:c,label:l.province_name,value:l.province_code},null,8,["label","value"]))),128))]),_:1},8,["disabled","modelValue"])]),_:1}),t(n,{label:"\u5E02",rules:[{required:!0,message:"\u4E0D\u53EF\u4E3A\u7A7A",trigger:"blur"}],prop:"city"},{default:o(()=>[t(V,{disabled:e(r),modelValue:e(a).city,"onUpdate:modelValue":s[4]||(s[4]=l=>e(a).city=l),placeholder:"\u8BF7\u9009\u62E9\u5E02",clearable:"",onChange:De,style:{width:"100%"}},{default:o(()=>[(i(!0),_(g,null,E(e(f).cityOptions,(l,c)=>(i(),p(B,{key:c,label:l.city_name,value:l.city_code},null,8,["label","value"]))),128))]),_:1},8,["disabled","modelValue"])]),_:1}),e(w)?(i(),p(n,{key:0,label:"\u533A",rules:[{required:!0,message:"\u4E0D\u53EF\u4E3A\u7A7A",trigger:"blur"}],prop:"area"},{default:o(()=>[t(V,{disabled:e(r),modelValue:e(a).area,"onUpdate:modelValue":s[5]||(s[5]=l=>e(a).area=l),placeholder:"\u8BF7\u9009\u62E9\u533A",clearable:"",onChange:xe,style:{width:"100%"}},{default:o(()=>[(i(!0),_(g,null,E(e(f).areaOptions,(l,c)=>(i(),p(B,{key:c,label:l.area_name,value:l.area_code,disabled:l.disabled},null,8,["label","value","disabled"]))),128))]),_:1},8,["disabled","modelValue"])]),_:1})):h("",!0),e(k)?(i(),p(n,{key:1,label:"\u9547",rules:[{required:!0,message:"\u4E0D\u53EF\u4E3A\u7A7A",trigger:"blur"}],prop:"street"},{default:o(()=>[t(V,{disabled:e(r),modelValue:e(a).street,"onUpdate:modelValue":s[6]||(s[6]=l=>e(a).street=l),placeholder:"\u8BF7\u9009\u62E9\u9547",clearable:"",onChange:qe,style:{width:"100%"}},{default:o(()=>[(i(!0),_(g,null,E(e(f).streetOptions,(l,c)=>(i(),p(B,{key:c,label:l.street_name,value:l.street_code,disabled:l.disabled},null,8,["label","value","disabled"]))),128))]),_:1},8,["disabled","modelValue"])]),_:1})):h("",!0),e(D)?(i(),p(n,{key:2,label:"\u6751",rules:[{required:!0,message:"\u4E0D\u53EF\u4E3A\u7A7A",trigger:"blur"}],prop:"village"},{default:o(()=>[t(V,{disabled:e(r),modelValue:e(a).village,"onUpdate:modelValue":s[7]||(s[7]=l=>e(a).village=l),placeholder:"\u8BF7\u9009\u62E9\u6751",clearable:"",onChange:Ue,style:{width:"100%"}},{default:o(()=>[(i(!0),_(g,null,E(e(f).villageOptions,(l,c)=>(i(),p(B,{key:c,label:l.village_name,value:l.village_code,disabled:l.disabled},null,8,["label","value","disabled"]))),128))]),_:1},8,["disabled","modelValue"])]),_:1})):h("",!0),e(x)?(i(),p(n,{key:3,label:"\u961F",rules:[{required:!0,message:"\u4E0D\u53EF\u4E3A\u7A7A",trigger:"blur"}],prop:"brigade"},{default:o(()=>[t(V,{disabled:e(r),modelValue:e(a).brigade,"onUpdate:modelValue":s[8]||(s[8]=l=>e(a).brigade=l),placeholder:"\u8BF7\u9009\u62E9\u961F",clearable:"",style:{width:"100%"}},{default:o(()=>[(i(!0),_(g,null,E(e(f).brigadeOptions,(l,c)=>(i(),p(B,{key:c,label:l.brigade_name,value:l.id,disabled:l.disabled},null,8,["label","value","disabled"]))),128))]),_:1},8,["disabled","modelValue"])]),_:1})):h("",!0),t(n,{label:"\u5730\u5740",prop:"address"},{default:o(()=>[t(d,{disabled:e(r),modelValue:e(a).address,"onUpdate:modelValue":s[9]||(s[9]=l=>e(a).address=l),placeholder:"\u8BF7\u8F93\u5165\u5730\u5740",clearable:"",style:{width:"300px"}},null,8,["disabled","modelValue"])]),_:1}),t(y,{span:23},{default:o(()=>[t(n,{label:"\u8D1F\u8D23\u533A\u57DF",prop:"region"},{default:o(()=>[t(Re,{modelValue:e(a).responsible_area,"onUpdate:modelValue":s[10]||(s[10]=l=>e(a).responsible_area=l),onChange:he,disabled:e(r)},{default:o(()=>[(i(!0),_(g,null,E(e(f)[e(b)+"Options"],l=>(i(),p(je,{disabled:e(a)[e(b)]==l[e(b)+"_code"]||e(a)[e(b)]==l.id||l.disabled,key:l[e(b)+"_name"],label:e(b)=="brigade"?l.id+"":l[e(b)+"_code"]+""},{default:o(()=>[N(Ea(l[e(b)+"_name"]),1)]),_:2},1032,["disabled","label"]))),128))]),_:1},8,["modelValue","disabled"])]),_:1})]),_:1})]),_:1})]),_:1}),t(y,{span:24,class:"el-card pt-6"},{default:o(()=>[Aa,t(Ie,null,{default:o(()=>[t(ze,{width:"190px",style:{display:"flex"}},{default:o(()=>[wa,F("div",ka,[t(M,{disabled:e(r),accept:e(T),modelValue:e(a).avatar,"onUpdate:modelValue":s[11]||(s[11]=l=>e(a).avatar=l),class:"avatar-uploader-head",data:{cid:1},headers:{Token:e(A).token},action:e(S)+"/upload/image","show-file-list":!1,"on-success":$e},{default:o(()=>[e(a).avatar?(i(),_("img",{key:0,src:e(a).avatar,class:"avatar"},null,8,Da)):(i(),_("div",xa,[t(z,null,{default:o(()=>[t(R)]),_:1})]))]),_:1},8,["disabled","accept","modelValue","headers","action"])])]),_:1}),t(Me,null,{default:o(()=>[t(O,null,{default:o(()=>[F("div",qa,[F("div",Ua,[t(O,null,{default:o(()=>[t(n,{label:"\u59D3\u540D",prop:"master_name"},{default:o(()=>[t(d,{disabled:e(r),modelValue:e(a).master_name,"onUpdate:modelValue":s[12]||(s[12]=l=>e(a).master_name=l),placeholder:"\u8BF7\u8F93\u5165\u59D3\u540D",clearable:"",style:{width:"450px"}},null,8,["disabled","modelValue"])]),_:1}),t(n,{label:"\u804C\u52A1",prop:"master_position"},{default:o(()=>[t(d,{disabled:e(r),modelValue:e(a).master_position,"onUpdate:modelValue":s[13]||(s[13]=l=>e(a).master_position=l),placeholder:"\u8BF7\u8F93\u5165\u804C\u52A1",clearable:"",style:{width:"450px"}},null,8,["disabled","modelValue"])]),_:1}),t(n,{label:"\u624B\u673A",prop:"master_phone"},{default:o(()=>[t(d,{disabled:e(r),modelValue:e(a).master_phone,"onUpdate:modelValue":s[14]||(s[14]=l=>e(a).master_phone=l),placeholder:"\u8BF7\u8F93\u5165\u624B\u673A",clearable:"",style:{width:"450px"}},null,8,["disabled","modelValue"])]),_:1}),t(n,{label:"\u90AE\u7BB1"},{default:o(()=>[t(d,{disabled:"",modelValue:e(a).master_email,"onUpdate:modelValue":s[15]||(s[15]=l=>e(a).master_email=l),placeholder:"\u90AE\u7BB1\u5C06\u7531\u7CFB\u7EDF\u81EA\u52A8\u751F\u6210",clearable:"",style:{width:"450px"}},null,8,["modelValue"])]),_:1}),t(n,{label:"\u6027\u522B",prop:"sex"},{default:o(()=>[t(V,{disabled:e(r),modelValue:e(a).sex,"onUpdate:modelValue":s[16]||(s[16]=l=>e(a).sex=l),placeholder:"\u8BF7\u9009\u62E9\u6027\u522B",style:{width:"450px"}},{default:o(()=>[t(B,{label:"\u7537",value:"1"}),t(B,{label:"\u5973",value:"2"})]),_:1},8,["disabled","modelValue"])]),_:1}),t(n,{label:"\u8EAB\u4EFD\u8BC1"},{default:o(()=>[t(d,{disabled:e(r),modelValue:e(a).id_card,"onUpdate:modelValue":s[17]||(s[17]=l=>e(a).id_card=l),placeholder:"\u8BF7\u8F93\u5165\u8EAB\u4EFD\u8BC1",clearable:"",style:{width:"450px"}},null,8,["disabled","modelValue"])]),_:1})]),_:1})])])]),_:1})]),_:1})]),_:1})]),_:1}),t(y,{span:24,class:"el-card pt-6"},{default:o(()=>[Oa,t(O,null,{default:o(()=>[(i(!0),_(g,null,E(e(a).other_contacts,(l,c)=>(i(),_(g,{key:c},[t(y,{span:12},{default:o(()=>[t(n,{label:"\u59D3\u540D",prop:"field120"},{default:o(()=>[t(d,{disabled:e(r),modelValue:l.name,"onUpdate:modelValue":C=>l.name=C,placeholder:"\u8BF7\u8F93\u5165\u59D3\u540D",clearable:"",style:{width:"100%"}},null,8,["disabled","modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024),t(y,{span:12},{default:o(()=>[t(n,{label:"\u804C\u52A1",prop:"field121"},{default:o(()=>[t(d,{disabled:e(r),modelValue:l.position,"onUpdate:modelValue":C=>l.position=C,placeholder:"\u8BF7\u8F93\u5165\u804C\u52A1",clearable:"",style:{width:"100%"}},null,8,["disabled","modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024),t(y,{span:12},{default:o(()=>[t(n,{label:"\u624B\u673A",prop:"field122"},{default:o(()=>[t(d,{disabled:e(r),modelValue:l.phone,"onUpdate:modelValue":C=>l.phone=C,placeholder:"\u8BF7\u8F93\u5165\u624B\u673A",clearable:"",style:{width:"100%"}},null,8,["disabled","modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024),t(y,{span:12},{default:o(()=>[t(n,{label:"\u90AE\u7BB1"},{default:o(()=>[t(d,{disabled:e(r),modelValue:l.email,"onUpdate:modelValue":C=>l.email=C,placeholder:"\u8BF7\u8F93\u5165\u90AE\u7BB1",clearable:"",style:{width:"100%"}},null,8,["disabled","modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024)],64))),128)),t(y,{span:24},{default:o(()=>[t(n,{label:"",prop:"field126"},{default:o(()=>[t(I,{type:"primary",disabled:e(r),size:"medium",onClick:Ae},{default:o(()=>[N("\u6DFB\u52A0\u8054\u7CFB\u4EBA")]),_:1},8,["disabled"]),e(a).other_contacts.length?(i(),p(I,{key:0,type:"primary",disabled:e(r),size:"medium",onClick:we},{default:o(()=>[N("\u5220\u9664")]),_:1},8,["disabled"])):h("",!0)]),_:1})]),_:1})]),_:1})]),_:1}),t(y,{span:24,class:"el-card pt-6"},{default:o(()=>[La,t(O,null,{default:o(()=>[t(y,{span:12},{default:o(()=>[t(n,{label:"\u516C\u53F8\u8D44\u8D28",required:""},{default:o(()=>[t(M,{disabled:e(r),accept:e(T),modelValue:e(a).qualification.business_license,"onUpdate:modelValue":s[18]||(s[18]=l=>e(a).qualification.business_license=l),class:"avatar-uploader pl-3",data:{cid:1},headers:{Token:e(A).token},action:e(S)+"/upload/image","show-file-list":!1,"on-success":Fe},{default:o(()=>[e(a).qualification.business_license?(i(),_("img",{key:0,src:e(a).qualification.business_license,class:"avatar"},null,8,Na)):(i(),p(z,{key:1,class:"avatar-uploader-icon"},{default:o(()=>[t(R)]),_:1}))]),_:1},8,["disabled","accept","modelValue","headers","action"])]),_:1}),t(n,{class:"others",label:"\u5176\u4ED6\u8D44\u8D28"},{default:o(()=>[(i(!0),_(g,null,E(e(a).qualification.other_qualifications,(l,c)=>(i(),_("div",{key:c,class:"otherimg"},[F("img",{src:l,onClick:C=>Te(c)},null,8,Sa)]))),128)),e(H)?(i(),p(M,{key:0,accept:e(T),disabled:e(r),class:"avatar-uploader pl-3",data:{cid:1},headers:{Token:e(A).token},action:e(S)+"/upload/image","show-file-list":!1,"on-success":Ce,style:{"margin-bottom":"12px"}},{default:o(()=>[t(z,{class:"avatar-uploader-icon"},{default:o(()=>[t(R)]),_:1})]),_:1},8,["accept","disabled","headers","action"])):h("",!0)]),_:1})]),_:1}),t(y,{span:12},{default:o(()=>[t(n,{"label-width":"120px",label:"\u5F00\u6237\u8BB8\u53EF\u8BC1",required:""},{default:o(()=>[t(M,{disabled:e(r),accept:e(T),modelValue:e(a).qualification.business_licenseB,"onUpdate:modelValue":s[19]||(s[19]=l=>e(a).qualification.business_licenseB=l),class:"avatar-uploader pl-3",data:{cid:1},headers:{Token:e(A).token},action:e(S)+"/upload/image","show-file-list":!1,"on-success":Ve},{default:o(()=>[e(a).qualification.business_licenseB?(i(),_("img",{key:0,src:e(a).qualification.business_licenseB,class:"avatar"},null,8,Ta)):(i(),p(z,{key:1,class:"avatar-uploader-icon"},{default:o(()=>[t(R)]),_:1}))]),_:1},8,["disabled","accept","modelValue","headers","action"])]),_:1})]),_:1})]),_:1})]),_:1}),h("",!0),e(r)==!1&&e(q)==!1||e(q)?(i(),p(y,{key:1,span:24,class:"el-card pt-6"},{default:o(()=>[t(n,{label:"",prop:"field139"},{default:o(()=>[e(q)?(i(),p(I,{key:0,type:"primary",size:"medium",onClick:se},{default:o(()=>[N("\u5B8C\u6210")]),_:1})):h("",!0),e(r)==!1&&e(q)==!1?(i(),p(I,{key:1,type:"primary",disabled:e(r),size:"medium",onClick:se},{default:o(()=>[N("\u521B\u5EFA")]),_:1},8,["disabled"])):h("",!0)]),_:1})]),_:1})):h("",!0)]),_:1},8,["model","rules"]),t(G,{modelValue:e(U),"onUpdate:modelValue":s[24]||(s[24]=l=>Z(U)?U.value=l:null),title:"\u9009\u62E9\u7B7E\u7EA6\u65B9",width:"60%"},{default:o(()=>[t(ha,{onCustomEvent:ge,type:e(J)},null,8,["type"])]),_:1},8,["modelValue"]),t(G,{modelValue:e($),"onUpdate:modelValue":s[25]||(s[25]=l=>Z($)?$.value=l:null),title:"\u9009\u62E9\u7BA1\u7406\u4EBA\u5458",width:"60%"},{default:o(()=>[t(pe,{onCustomEvent:ve})]),_:1},8,["modelValue"]),t(G,{modelValue:e(j),"onUpdate:modelValue":s[26]||(s[26]=l=>Z(j)?j.value=l:null),title:"\u9009\u62E9\u7247\u533A\u7ECF\u7406",width:"60%"},{default:o(()=>[t(pe,{onCustomEvent:Ee,type:8})]),_:1},8,["modelValue"])])}}});export{Ol as default}; diff --git a/public/admin/assets/edit.28e624a1.js b/public/admin/assets/edit.28e624a1.js new file mode 100644 index 000000000..fa3129251 --- /dev/null +++ b/public/admin/assets/edit.28e624a1.js @@ -0,0 +1 @@ +import{_ as T}from"./index.13ef78d6.js";import{T as $,I,B as z,C as L,M as O,N as j,v as G,G as H,H as M,D as S,w as K}from"./element-plus.4328d892.js";import{_ as P}from"./index.vue_vue_type_style_index_0_lang.8e405d58.js";import{_ as J}from"./picker.45aea54f.js";import{u as Q,a as W}from"./vue-router.9f65afb1.js";import{a as X}from"./useDictOptions.a61fcf9f.js";import{g as Y,h as Z,i as ee,j as te}from"./article.188d8b86.js";import{e as oe}from"./index.aa9bb752.js";import{d as w,$ as b,s as le,o as d,c as V,U as e,L as u,u as a,a as r,T as ae,a7 as ue,K as re,R as p}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./@wangeditor.afd76521.js";import"./index.fa872673.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.c47e74f8.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./index.a9a11abe.js";import"./index.a450f1bb.js";import"./index.vue_vue_type_script_setup_true_lang.dc835bba.js";import"./usePaging.2ad8e1e6.js";import"./vue3-video-play.b911321b.js";import"./vuedraggable.0cb40d3a.js";import"./vue.5de34049.js";import"./sortablejs.ef73fc5c.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const ie={class:"article-edit"},se={class:"xl:flex"},ne={class:"w-80"},me={class:"w-80"},de={class:"w-80"},pe=r("div",{class:"form-tips"},"\u5EFA\u8BAE\u5C3A\u5BF8\uFF1A240*180px",-1),_e={class:"w-80"},ce=r("div",{class:"form-tips"},"\u9ED8\u8BA4\u4E3A0\uFF0C \u6570\u503C\u8D8A\u5927\u8D8A\u6392\u524D",-1),fe={class:"xl:ml-20"},Ee=w({name:"articleListsEdit"}),Et=w({...Ee,setup(be){const m=Q(),F=W(),t=b({id:"",title:"",image:"",cid:"",desc:"",author:"",content:"",click_virtual:0,sort:0,is_show:1,abstract:""}),{removeTab:v}=oe(),_=le(),B=b({title:[{required:!0,message:"\u8BF7\u8F93\u5165\u6587\u7AE0\u6807\u9898",trigger:"blur"}],cid:[{required:!0,message:"\u8BF7\u9009\u62E9\u6587\u7AE0\u680F\u76EE",trigger:"blur"}]}),g=async()=>{const s=await Y({id:m.query.id});Object.keys(t).forEach(o=>{t[o]=s[o]})},{optionsData:A}=X({article_cate:{api:Z}}),h=async()=>{var s;await((s=_.value)==null?void 0:s.validate()),m.query.id?await ee(t):await te(t),v(),F.back()};return m.query.id&&g(),(s,o)=>{const C=$,c=I,n=z,i=L,x=O,D=j,k=J,f=G,E=H,R=M,y=P,U=S,q=K,N=T;return d(),V("div",ie,[e(c,{class:"!border-none",shadow:"never"},{default:u(()=>[e(C,{content:s.$route.meta.title,onBack:o[0]||(o[0]=l=>s.$router.back())},null,8,["content"])]),_:1}),e(c,{class:"mt-4 !border-none",shadow:"never"},{default:u(()=>[e(U,{ref_key:"formRef",ref:_,class:"ls-form",model:a(t),"label-width":"85px",rules:a(B)},{default:u(()=>[r("div",se,[r("div",null,[e(i,{label:"\u6587\u7AE0\u6807\u9898",prop:"title"},{default:u(()=>[r("div",ne,[e(n,{modelValue:a(t).title,"onUpdate:modelValue":o[1]||(o[1]=l=>a(t).title=l),placeholder:"\u8BF7\u8F93\u5165\u6587\u7AE0\u6807\u9898",type:"textarea",autosize:{minRows:3,maxRows:3},maxlength:"64","show-word-limit":"",clearable:""},null,8,["modelValue"])])]),_:1}),e(i,{label:"\u6587\u7AE0\u680F\u76EE",prop:"cid"},{default:u(()=>[e(D,{class:"w-80",modelValue:a(t).cid,"onUpdate:modelValue":o[2]||(o[2]=l=>a(t).cid=l),placeholder:"\u8BF7\u9009\u62E9\u6587\u7AE0\u680F\u76EE",clearable:""},{default:u(()=>[(d(!0),V(ae,null,ue(a(A).article_cate,l=>(d(),re(x,{key:l.id,label:l.name,value:l.id},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1}),e(i,{label:"\u6587\u7AE0\u7B80\u4ECB",prop:"desc"},{default:u(()=>[r("div",me,[e(n,{modelValue:a(t).desc,"onUpdate:modelValue":o[3]||(o[3]=l=>a(t).desc=l),placeholder:"\u8BF7\u8F93\u5165\u6587\u7AE0\u7B80\u4ECB",type:"textarea",autosize:{minRows:3,maxRows:6},maxlength:200,"show-word-limit":"",clearable:""},null,8,["modelValue"])])]),_:1}),e(i,{label:"\u6458\u8981",prop:"abstract"},{default:u(()=>[r("div",de,[e(n,{type:"textarea",autosize:{minRows:6,maxRows:6},modelValue:a(t).abstract,"onUpdate:modelValue":o[4]||(o[4]=l=>a(t).abstract=l),maxlength:"200","show-word-limit":"",clearable:""},null,8,["modelValue"])])]),_:1}),e(i,{label:"\u6587\u7AE0\u5C01\u9762",prop:"image"},{default:u(()=>[r("div",null,[r("div",null,[e(k,{modelValue:a(t).image,"onUpdate:modelValue":o[5]||(o[5]=l=>a(t).image=l),limit:1},null,8,["modelValue"])]),pe])]),_:1}),e(i,{label:"\u4F5C\u8005",prop:"author"},{default:u(()=>[r("div",_e,[e(n,{modelValue:a(t).author,"onUpdate:modelValue":o[6]||(o[6]=l=>a(t).author=l),placeholder:"\u8BF7\u8F93\u5165\u4F5C\u8005\u540D\u79F0"},null,8,["modelValue"])])]),_:1}),e(i,{label:"\u6392\u5E8F",prop:"sort"},{default:u(()=>[r("div",null,[e(f,{modelValue:a(t).sort,"onUpdate:modelValue":o[7]||(o[7]=l=>a(t).sort=l),min:0,max:9999},null,8,["modelValue"]),ce])]),_:1}),e(i,{label:"\u521D\u59CB\u6D4F\u89C8\u91CF",prop:"click_virtual"},{default:u(()=>[r("div",null,[e(f,{modelValue:a(t).click_virtual,"onUpdate:modelValue":o[8]||(o[8]=l=>a(t).click_virtual=l),min:0},null,8,["modelValue"])])]),_:1}),e(i,{label:"\u6587\u7AE0\u72B6\u6001",required:"",prop:"is_show"},{default:u(()=>[e(R,{modelValue:a(t).is_show,"onUpdate:modelValue":o[9]||(o[9]=l=>a(t).is_show=l)},{default:u(()=>[e(E,{label:1},{default:u(()=>[p("\u663E\u793A")]),_:1}),e(E,{label:0},{default:u(()=>[p("\u9690\u85CF")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),r("div",fe,[e(i,{label:"\u6587\u7AE0\u5185\u5BB9",prop:"content"},{default:u(()=>[e(y,{modelValue:a(t).content,"onUpdate:modelValue":o[10]||(o[10]=l=>a(t).content=l),height:667,width:375},null,8,["modelValue"])]),_:1})])])]),_:1},8,["model","rules"])]),_:1}),e(N,null,{default:u(()=>[e(q,{type:"primary",onClick:h},{default:u(()=>[p("\u4FDD\u5B58")]),_:1})]),_:1})])}}});export{Et as default}; diff --git a/public/admin/assets/edit.29c3c764.js b/public/admin/assets/edit.29c3c764.js new file mode 100644 index 000000000..1f61368d9 --- /dev/null +++ b/public/admin/assets/edit.29c3c764.js @@ -0,0 +1 @@ +import{J as Pe,Z as Ge,_ as Ke,$ as Qe,k as L,B as Ze,C as He,M as We,N as Xe,F as Ye,a0 as ea,a1 as aa,a2 as la,c as ta,w as ua,D as oa,L as sa}from"./element-plus.4328d892.js";import{a as ia,u as na}from"./vue-router.9f65afb1.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import{a as de,b as K,d as da,e as ra}from"./company.8a1c349a.js";import{a as ca,b as pa,c as ma,d as _a,e as fa,f as ba}from"./common.ac78ede6.js";import{d as re}from"./dict.6c560e38.js";import{d as me,C as ya,r as m,s as ce,$ as Q,w as ga,a4 as va,o as i,c as _,U as t,L as o,u as e,T as g,a7 as E,K as p,Q as h,R as N,S as Ea,a as F,k as Z}from"./@vue.51d7f2d8.js";import"./lodash.08438971.js";import{_ as ha}from"./dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.0b707b28.js";import{_ as pe}from"./dialog_index_man.vue_vue_type_script_setup_true_name_companyLists_lang.be34fc0b.js";import{a as Ba,e as Fa}from"./index.ed71ac09.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./usePaging.2ad8e1e6.js";import"./role.1c72c4c7.js";import"./useDictOptions.8d37e54b.js";import"./admin.f28da7a1.js";import"./axios.105476b3.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const Va={class:"edit-popup"},Ca=F("div",{class:"tit"},"\u516C\u53F8\u57FA\u672C\u4FE1\u606F\u521B\u5EFA",-1),Aa=F("div",{class:"tit"},"\u4E3B\u8981\u8054\u7CFB\u4EBA",-1),wa=F("span",{style:{color:"#f56c6c","padding-left":"20px"}},"*",-1),ka={class:"headimg",style:{"margin-left":"5px"}},Da=["src"],xa={key:1,class:"avatar-uploader-icon"},qa={style:{display:"flex","justify-content":"left"}},Ua={class:"right",style:{"max-width":"1100px"}},Oa=F("div",{class:"tit"},"\u5176\u4ED6\u8054\u7CFB\u4EBA",-1),La=F("div",{class:"tit"},"\u8D44\u8D28\u4FE1\u606F",-1),Na=["src"],Sa=["src","onClick"],Ta=["src"];const $a=me({name:"companyEdit"}),Ol=me({...$a,props:{dictData:{type:Object,default:()=>({})}},emits:["success","close"],setup(ja,{expose:_e,emit:Ra}){var ie,ne;const S=ya("base_url"),A=Ba(),{removeTab:fe}=Fa(),be=ia(),v=na();m(!0);let H=m(!0),d=m(!1);v.query.flag,v.query.isshow&&(H=!1,d=!0);const T=m(".png, .jpg, .jpeg, image/png, image/jpeg");console.log(d);const J=m(0);let q=m(!1);const W=ce();ce(),m(),v.query.read&&(d=v.query.read),v.query.edit&&(q=v.query.edit);const a=Q({admin_id:"",admin_name:"",area_manager:"",area_manager_name:"",id:"",company_name:"",organization_code:"",province:"",city:"",area:"",street:"",village:"",brigade:"",address:"",responsible_area:[],company_type:"",avatar:"",sex:"1",id_card:"",master_name:"",master_position:"",master_phone:"",master_email:"",other_contacts:[],qualification:{business_license:"",business_licenseB:"",other_qualifications:[],bank_accountB:[],bank_account:[]},contract:{contract_type:"",party_a:0,file:"",contract_no:"\u7CFB\u7EDF\u81EA\u52A8\u751F\u6210",type:1},party_a_name:"",file_image:""});A.userInfo.root==0&&(a.contract.party_a=(ie=A.userInfo.company)==null?void 0:ie.id,a.party_a_name=(ne=A.userInfo.company)==null?void 0:ne.company_name);const f=Q({provinceOptions:[],cityOptions:[],areaOptions:[],streetOptions:[],villageOptions:[],brigadeOptions:[],dictTypeLists:[],contract_type:[],company_list:[]});m([]);const ye=Q({company_name:[{required:!0,message:"\u8BF7\u8F93\u5165\u516C\u53F8\u540D\u79F0",trigger:["blur"]}],organization_code:[{required:!0,message:"\u8BF7\u8F93\u5165\u7EC4\u7EC7\u673A\u6784\u4EE3\u7801",trigger:["blur"]}],master_name:[{required:!0,message:"\u8BF7\u8F93\u5165\u4E3B\u8054\u7CFB\u4EBA\u59D3\u540D",trigger:["blur"]}],master_position:[{required:!0,message:"\u8BF7\u8F93\u5165\u4E3B\u8054\u7CFB\u4EBA\u804C\u52A1",trigger:["blur"]}],master_phone:[{required:!0,message:"\u8BF7\u8F93\u5165\u4E3B\u8054\u7CFB\u4EBA\u624B\u673A",trigger:["blur"]}],avatar:[{required:!0,message:"\u8BF7\u4E0A\u4F20\u7167\u7247",trigger:["blur"]}],account:[{required:!0,message:"\u8BF7\u8F93\u5165\u8D26\u53F7",trigger:["blur"]}],password:[{required:!0,message:"\u8BF7\u8F93\u5165\u5BC6\u7801",trigger:["blur"]}]}),U=m(!1),$=m(!1),j=m(!1),w=m(!1),k=m(!1),D=m(!1),x=m(!1),P=m(!0);function ge(u){U.value=!1,a.contract.party_a=u.id,a.party_a_name=u.company_name}function ve(u){$.value=!1,a.admin_name=u.name,a.admin_id=u.id}function Ee(u){j.value=!1,a.area_manager_name=u.name,a.area_manager=u.id}function za(){U.value=!0}const b=m(""),X=m(0);ga(()=>a[b.value],(u,s)=>{if(X.value==0)return X.value++;a.responsible_area=[],a.responsible_area.push(u+"")});const he=u=>{},Y=async u=>{for(const s in a)u[s]!=null&&u[s]!=null&&(a[s]=u[s])},Be=async u=>{const s=await de({id:u.id});Y(s)},Fe=(u,s)=>{if(u.code==0){L.error(u.msg);return}a.qualification.business_license=u.data.uri},Ve=(u,s)=>{if(u.code==0){L.error(u.msg);return}a.qualification.business_licenseB=u.data.uri},Ce=(u,s)=>{if(u.code==0){L.error(u.msg);return}a.qualification.other_qualifications.push(u.data.uri)};function Ae(){a.other_contacts.push({name:"",position:"",phone:"",email:""})}function we(){a.other_contacts.pop({name:"",position:"",phone:"",email:""})}function ee(u){if([30,14,15].indexOf(u)>-1)return w.value=!0,k.value=!1,D.value=!1,x.value=!1,a.street="",a.village="",a.brigade="",b.value="area",!0;if(u==16)return w.value=!0,k.value=!0,D.value=!1,x.value=!1,a.village="",a.brigade="",P.value=!0,J.value=30,b.value="street",!0;if(u!=16&&(P.value=!1),u==41)return w.value=!0,k.value=!0,D.value=!1,x.value=!1,a.village="",a.brigade="",b.value="street",!0;if(u==17)return w.value=!0,k.value=!0,D.value=!0,x.value=!1,a.brigade="",b.value="village",!0;if(u==18)return w.value=!0,k.value=!0,D.value=!0,x.value=!0,b.value="brigade",!0}function ke(u){ae()}function De(u){le()}function xe(u){te()}function qe(u){ue()}function Ue(u){oe()}const Oe=async()=>{const u=await ca({});f.provinceOptions=u},ae=async()=>{const u=await pa({city:a.province});f.cityOptions=u},le=async()=>{const u=await ma({area:a.city});f.areaOptions=u},te=async()=>{const u=await _a({street:a.area});if(a.company_type==16){const s=await K({key:"area",value:a.area});console.log(s),u.forEach(r=>{Object.values(s).find(n=>r.street_code==n+"")?r.disabled=!0:r.disabled=!1})}f.streetOptions=u},ue=async()=>{const u=await fa({village:a.street});if(a.company_type==17){const s=await K({key:"street",value:a.street});u.forEach(r=>{Object.values(s).find(n=>r.village_code==n+"")?r.disabled=!0:r.disabled=!1})}f.villageOptions=u},oe=async()=>{const u=await ba();if(a.company_type==18){const s=await K({key:"village",value:a.village});u.forEach(r=>{Object.values(s).find(n=>r.id==n+"")?r.disabled=!0:r.disabled=!1})}f.brigadeOptions=u};Oe();const Le=async()=>{const u=await re({type_id:7});f.contract_type=u.lists},Ne=async()=>{const u=await re({type_id:6});f.dictTypeLists=u.lists},Se=async()=>{var s;const u=await de({id:v.query.id});u.company_type==16&&(J.value=30,P.value=!0),Object.keys(a).forEach(r=>{const n=["province","city","area","street","village","brigade"];u[r]!=null&&u[r]!=null&&(a[r]=u[r]),n.includes(r)&&(a[r]=a[r].toString())}),await ae(),await le(),await te(),await ue(),await oe(),a.party_a_name=(s=u.contract)==null?void 0:s.party_a_info.company_name,ee(a.company_type)},Te=u=>{v.query.read||a.qualification.other_qualifications.splice(u,1)};Ne(),Le();const $e=(u,s)=>{if(u.code==0){L.error(u.msg);return}a.avatar=u.data.uri},se=async()=>{var s;if(!a.avatar)return L.error("\u4E3B\u8981\u8054\u7CFB\u4EBA\u5934\u50CF\u4E0D\u53EF\u4E3A\u7A7A");await((s=W.value)==null?void 0:s.validate());const u=JSON.parse(JSON.stringify({...a}));u.qualification.other_qualifications=JSON.stringify(u.qualification.other_qualifications),v.query.id?await da(u):await ra(u),fe(),be.back()};return v.query.id&&Se(),_e({open,setFormData:Y,getDetail:Be}),(u,s)=>{const r=Ze,n=He,B=We,V=Xe,je=Ye,Re=ea,y=aa,O=la,R=va("Plus"),z=ta,M=Pe,ze=Ge,Me=Ke,Ie=Qe,I=ua,Je=oa,G=sa;return i(),_("div",Va,[t(Je,{ref_key:"formRef",ref:W,model:e(a),"label-width":"90px",rules:e(ye)},{default:o(()=>[t(y,{span:24,class:"el-card pt-6"},{default:o(()=>[Ca,t(O,null,{default:o(()=>[t(n,{label:"\u516C\u53F8\u540D\u79F0",prop:"company_name"},{default:o(()=>[t(r,{modelValue:e(a).company_name,"onUpdate:modelValue":s[0]||(s[0]=l=>e(a).company_name=l),placeholder:"\u8BF7\u8F93\u5165\u516C\u53F8\u540D\u79F0",clearable:"",disabled:e(d),style:{width:"300px"}},null,8,["modelValue","disabled"])]),_:1}),t(n,{label:"\u793E\u4F1A\u4EE3\u7801",prop:"organization_code"},{default:o(()=>[t(r,{disabled:e(d),modelValue:e(a).organization_code,"onUpdate:modelValue":s[1]||(s[1]=l=>e(a).organization_code=l),placeholder:"\u8BF7\u8F93\u5165\u793E\u4F1A\u4EE3\u7801",clearable:"",style:{width:"300px"}},null,8,["disabled","modelValue"])]),_:1}),t(n,{label:"\u516C\u53F8\u7C7B\u578B",rules:[{required:!0,message:"\u4E0D\u53EF\u4E3A\u7A7A",trigger:"blur"}],prop:"company_type"},{default:o(()=>[t(V,{disabled:e(d),modelValue:e(a).company_type,"onUpdate:modelValue":s[2]||(s[2]=l=>e(a).company_type=l),placeholder:"\u8BF7\u9009\u62E9\u516C\u53F8\u7C7B\u578B",clearable:"",onChange:ee},{default:o(()=>[(i(!0),_(g,null,E(e(f).dictTypeLists,(l,c)=>(i(),p(B,{key:c,label:l.name,value:l.id},null,8,["label","value"]))),128))]),_:1},8,["disabled","modelValue"])]),_:1}),t(n,{label:"\u7701",rules:[{required:!0,message:"\u4E0D\u53EF\u4E3A\u7A7A",trigger:"blur"}],prop:"province"},{default:o(()=>[t(V,{disabled:e(d),modelValue:e(a).province,"onUpdate:modelValue":s[3]||(s[3]=l=>e(a).province=l),placeholder:"\u8BF7\u9009\u62E9\u7701",clearable:"",onChange:ke,style:{width:"100%"}},{default:o(()=>[(i(!0),_(g,null,E(e(f).provinceOptions,(l,c)=>(i(),p(B,{key:c,label:l.province_name,value:l.province_code},null,8,["label","value"]))),128))]),_:1},8,["disabled","modelValue"])]),_:1}),t(n,{label:"\u5E02",rules:[{required:!0,message:"\u4E0D\u53EF\u4E3A\u7A7A",trigger:"blur"}],prop:"city"},{default:o(()=>[t(V,{disabled:e(d),modelValue:e(a).city,"onUpdate:modelValue":s[4]||(s[4]=l=>e(a).city=l),placeholder:"\u8BF7\u9009\u62E9\u5E02",clearable:"",onChange:De,style:{width:"100%"}},{default:o(()=>[(i(!0),_(g,null,E(e(f).cityOptions,(l,c)=>(i(),p(B,{key:c,label:l.city_name,value:l.city_code},null,8,["label","value"]))),128))]),_:1},8,["disabled","modelValue"])]),_:1}),e(w)?(i(),p(n,{key:0,label:"\u533A",rules:[{required:!0,message:"\u4E0D\u53EF\u4E3A\u7A7A",trigger:"blur"}],prop:"area"},{default:o(()=>[t(V,{disabled:e(d),modelValue:e(a).area,"onUpdate:modelValue":s[5]||(s[5]=l=>e(a).area=l),placeholder:"\u8BF7\u9009\u62E9\u533A",clearable:"",onChange:xe,style:{width:"100%"}},{default:o(()=>[(i(!0),_(g,null,E(e(f).areaOptions,(l,c)=>(i(),p(B,{key:c,label:l.area_name,value:l.area_code,disabled:l.disabled},null,8,["label","value","disabled"]))),128))]),_:1},8,["disabled","modelValue"])]),_:1})):h("",!0),e(k)?(i(),p(n,{key:1,label:"\u9547",rules:[{required:!0,message:"\u4E0D\u53EF\u4E3A\u7A7A",trigger:"blur"}],prop:"street"},{default:o(()=>[t(V,{disabled:e(d),modelValue:e(a).street,"onUpdate:modelValue":s[6]||(s[6]=l=>e(a).street=l),placeholder:"\u8BF7\u9009\u62E9\u9547",clearable:"",onChange:qe,style:{width:"100%"}},{default:o(()=>[(i(!0),_(g,null,E(e(f).streetOptions,(l,c)=>(i(),p(B,{key:c,label:l.street_name,value:l.street_code,disabled:l.disabled},null,8,["label","value","disabled"]))),128))]),_:1},8,["disabled","modelValue"])]),_:1})):h("",!0),e(D)?(i(),p(n,{key:2,label:"\u6751",rules:[{required:!0,message:"\u4E0D\u53EF\u4E3A\u7A7A",trigger:"blur"}],prop:"village"},{default:o(()=>[t(V,{disabled:e(d),modelValue:e(a).village,"onUpdate:modelValue":s[7]||(s[7]=l=>e(a).village=l),placeholder:"\u8BF7\u9009\u62E9\u6751",clearable:"",onChange:Ue,style:{width:"100%"}},{default:o(()=>[(i(!0),_(g,null,E(e(f).villageOptions,(l,c)=>(i(),p(B,{key:c,label:l.village_name,value:l.village_code,disabled:l.disabled},null,8,["label","value","disabled"]))),128))]),_:1},8,["disabled","modelValue"])]),_:1})):h("",!0),e(x)?(i(),p(n,{key:3,label:"\u961F",rules:[{required:!0,message:"\u4E0D\u53EF\u4E3A\u7A7A",trigger:"blur"}],prop:"brigade"},{default:o(()=>[t(V,{disabled:e(d),modelValue:e(a).brigade,"onUpdate:modelValue":s[8]||(s[8]=l=>e(a).brigade=l),placeholder:"\u8BF7\u9009\u62E9\u961F",clearable:"",style:{width:"100%"}},{default:o(()=>[(i(!0),_(g,null,E(e(f).brigadeOptions,(l,c)=>(i(),p(B,{key:c,label:l.brigade_name,value:l.id,disabled:l.disabled},null,8,["label","value","disabled"]))),128))]),_:1},8,["disabled","modelValue"])]),_:1})):h("",!0),t(n,{label:"\u5730\u5740",prop:"address"},{default:o(()=>[t(r,{disabled:e(d),modelValue:e(a).address,"onUpdate:modelValue":s[9]||(s[9]=l=>e(a).address=l),placeholder:"\u8BF7\u8F93\u5165\u5730\u5740",clearable:"",style:{width:"300px"}},null,8,["disabled","modelValue"])]),_:1}),t(y,{span:23},{default:o(()=>[t(n,{label:"\u8D1F\u8D23\u533A\u57DF",prop:"region"},{default:o(()=>[t(Re,{modelValue:e(a).responsible_area,"onUpdate:modelValue":s[10]||(s[10]=l=>e(a).responsible_area=l),onChange:he,disabled:e(d)},{default:o(()=>[(i(!0),_(g,null,E(e(f)[e(b)+"Options"],l=>(i(),p(je,{disabled:e(a)[e(b)]==l[e(b)+"_code"]||e(a)[e(b)]==l.id||l.disabled,key:l[e(b)+"_name"],label:e(b)=="brigade"?l.id+"":l[e(b)+"_code"]+""},{default:o(()=>[N(Ea(l[e(b)+"_name"]),1)]),_:2},1032,["disabled","label"]))),128))]),_:1},8,["modelValue","disabled"])]),_:1})]),_:1})]),_:1})]),_:1}),t(y,{span:24,class:"el-card pt-6"},{default:o(()=>[Aa,t(Ie,null,{default:o(()=>[t(ze,{width:"190px",style:{display:"flex"}},{default:o(()=>[wa,F("div",ka,[t(M,{disabled:e(d),accept:e(T),modelValue:e(a).avatar,"onUpdate:modelValue":s[11]||(s[11]=l=>e(a).avatar=l),class:"avatar-uploader-head",data:{cid:1},headers:{Token:e(A).token},action:e(S)+"/upload/image","show-file-list":!1,"on-success":$e},{default:o(()=>[e(a).avatar?(i(),_("img",{key:0,src:e(a).avatar,class:"avatar"},null,8,Da)):(i(),_("div",xa,[t(z,null,{default:o(()=>[t(R)]),_:1})]))]),_:1},8,["disabled","accept","modelValue","headers","action"])])]),_:1}),t(Me,null,{default:o(()=>[t(O,null,{default:o(()=>[F("div",qa,[F("div",Ua,[t(O,null,{default:o(()=>[t(n,{label:"\u59D3\u540D",prop:"master_name"},{default:o(()=>[t(r,{disabled:e(d),modelValue:e(a).master_name,"onUpdate:modelValue":s[12]||(s[12]=l=>e(a).master_name=l),placeholder:"\u8BF7\u8F93\u5165\u59D3\u540D",clearable:"",style:{width:"450px"}},null,8,["disabled","modelValue"])]),_:1}),t(n,{label:"\u804C\u52A1",prop:"master_position"},{default:o(()=>[t(r,{disabled:e(d),modelValue:e(a).master_position,"onUpdate:modelValue":s[13]||(s[13]=l=>e(a).master_position=l),placeholder:"\u8BF7\u8F93\u5165\u804C\u52A1",clearable:"",style:{width:"450px"}},null,8,["disabled","modelValue"])]),_:1}),t(n,{label:"\u624B\u673A",prop:"master_phone"},{default:o(()=>[t(r,{disabled:e(d),modelValue:e(a).master_phone,"onUpdate:modelValue":s[14]||(s[14]=l=>e(a).master_phone=l),placeholder:"\u8BF7\u8F93\u5165\u624B\u673A",clearable:"",style:{width:"450px"}},null,8,["disabled","modelValue"])]),_:1}),t(n,{label:"\u90AE\u7BB1"},{default:o(()=>[t(r,{disabled:"",modelValue:e(a).master_email,"onUpdate:modelValue":s[15]||(s[15]=l=>e(a).master_email=l),placeholder:"\u90AE\u7BB1\u5C06\u7531\u7CFB\u7EDF\u81EA\u52A8\u751F\u6210",clearable:"",style:{width:"450px"}},null,8,["modelValue"])]),_:1}),t(n,{label:"\u6027\u522B",prop:"sex"},{default:o(()=>[t(V,{disabled:e(d),modelValue:e(a).sex,"onUpdate:modelValue":s[16]||(s[16]=l=>e(a).sex=l),placeholder:"\u8BF7\u9009\u62E9\u6027\u522B",style:{width:"450px"}},{default:o(()=>[t(B,{label:"\u7537",value:"1"}),t(B,{label:"\u5973",value:"2"})]),_:1},8,["disabled","modelValue"])]),_:1}),t(n,{label:"\u8EAB\u4EFD\u8BC1"},{default:o(()=>[t(r,{disabled:e(d),modelValue:e(a).id_card,"onUpdate:modelValue":s[17]||(s[17]=l=>e(a).id_card=l),placeholder:"\u8BF7\u8F93\u5165\u8EAB\u4EFD\u8BC1",clearable:"",style:{width:"450px"}},null,8,["disabled","modelValue"])]),_:1})]),_:1})])])]),_:1})]),_:1})]),_:1})]),_:1}),t(y,{span:24,class:"el-card pt-6"},{default:o(()=>[Oa,t(O,null,{default:o(()=>[(i(!0),_(g,null,E(e(a).other_contacts,(l,c)=>(i(),_(g,{key:c},[t(y,{span:12},{default:o(()=>[t(n,{label:"\u59D3\u540D",prop:"field120"},{default:o(()=>[t(r,{disabled:e(d),modelValue:l.name,"onUpdate:modelValue":C=>l.name=C,placeholder:"\u8BF7\u8F93\u5165\u59D3\u540D",clearable:"",style:{width:"100%"}},null,8,["disabled","modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024),t(y,{span:12},{default:o(()=>[t(n,{label:"\u804C\u52A1",prop:"field121"},{default:o(()=>[t(r,{disabled:e(d),modelValue:l.position,"onUpdate:modelValue":C=>l.position=C,placeholder:"\u8BF7\u8F93\u5165\u804C\u52A1",clearable:"",style:{width:"100%"}},null,8,["disabled","modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024),t(y,{span:12},{default:o(()=>[t(n,{label:"\u624B\u673A",prop:"field122"},{default:o(()=>[t(r,{disabled:e(d),modelValue:l.phone,"onUpdate:modelValue":C=>l.phone=C,placeholder:"\u8BF7\u8F93\u5165\u624B\u673A",clearable:"",style:{width:"100%"}},null,8,["disabled","modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024),t(y,{span:12},{default:o(()=>[t(n,{label:"\u90AE\u7BB1"},{default:o(()=>[t(r,{disabled:e(d),modelValue:l.email,"onUpdate:modelValue":C=>l.email=C,placeholder:"\u8BF7\u8F93\u5165\u90AE\u7BB1",clearable:"",style:{width:"100%"}},null,8,["disabled","modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024)],64))),128)),t(y,{span:24},{default:o(()=>[t(n,{label:"",prop:"field126"},{default:o(()=>[t(I,{type:"primary",disabled:e(d),size:"medium",onClick:Ae},{default:o(()=>[N("\u6DFB\u52A0\u8054\u7CFB\u4EBA")]),_:1},8,["disabled"]),e(a).other_contacts.length?(i(),p(I,{key:0,type:"primary",disabled:e(d),size:"medium",onClick:we},{default:o(()=>[N("\u5220\u9664")]),_:1},8,["disabled"])):h("",!0)]),_:1})]),_:1})]),_:1})]),_:1}),t(y,{span:24,class:"el-card pt-6"},{default:o(()=>[La,t(O,null,{default:o(()=>[t(y,{span:12},{default:o(()=>[t(n,{label:"\u516C\u53F8\u8D44\u8D28",required:""},{default:o(()=>[t(M,{disabled:e(d),accept:e(T),modelValue:e(a).qualification.business_license,"onUpdate:modelValue":s[18]||(s[18]=l=>e(a).qualification.business_license=l),class:"avatar-uploader pl-3",data:{cid:1},headers:{Token:e(A).token},action:e(S)+"/upload/image","show-file-list":!1,"on-success":Fe},{default:o(()=>[e(a).qualification.business_license?(i(),_("img",{key:0,src:e(a).qualification.business_license,class:"avatar"},null,8,Na)):(i(),p(z,{key:1,class:"avatar-uploader-icon"},{default:o(()=>[t(R)]),_:1}))]),_:1},8,["disabled","accept","modelValue","headers","action"])]),_:1}),t(n,{class:"others",label:"\u5176\u4ED6\u8D44\u8D28"},{default:o(()=>[(i(!0),_(g,null,E(e(a).qualification.other_qualifications,(l,c)=>(i(),_("div",{key:c,class:"otherimg"},[F("img",{src:l,onClick:C=>Te(c)},null,8,Sa)]))),128)),e(H)?(i(),p(M,{key:0,accept:e(T),disabled:e(d),class:"avatar-uploader pl-3",data:{cid:1},headers:{Token:e(A).token},action:e(S)+"/upload/image","show-file-list":!1,"on-success":Ce,style:{"margin-bottom":"12px"}},{default:o(()=>[t(z,{class:"avatar-uploader-icon"},{default:o(()=>[t(R)]),_:1})]),_:1},8,["accept","disabled","headers","action"])):h("",!0)]),_:1})]),_:1}),t(y,{span:12},{default:o(()=>[t(n,{"label-width":"120px",label:"\u5F00\u6237\u8BB8\u53EF\u8BC1",required:""},{default:o(()=>[t(M,{disabled:e(d),accept:e(T),modelValue:e(a).qualification.business_licenseB,"onUpdate:modelValue":s[19]||(s[19]=l=>e(a).qualification.business_licenseB=l),class:"avatar-uploader pl-3",data:{cid:1},headers:{Token:e(A).token},action:e(S)+"/upload/image","show-file-list":!1,"on-success":Ve},{default:o(()=>[e(a).qualification.business_licenseB?(i(),_("img",{key:0,src:e(a).qualification.business_licenseB,class:"avatar"},null,8,Ta)):(i(),p(z,{key:1,class:"avatar-uploader-icon"},{default:o(()=>[t(R)]),_:1}))]),_:1},8,["disabled","accept","modelValue","headers","action"])]),_:1})]),_:1})]),_:1})]),_:1}),h("",!0),e(d)==!1&&e(q)==!1||e(q)?(i(),p(y,{key:1,span:24,class:"el-card pt-6"},{default:o(()=>[t(n,{label:"",prop:"field139"},{default:o(()=>[e(q)?(i(),p(I,{key:0,type:"primary",size:"medium",onClick:se},{default:o(()=>[N("\u5B8C\u6210")]),_:1})):h("",!0),e(d)==!1&&e(q)==!1?(i(),p(I,{key:1,type:"primary",disabled:e(d),size:"medium",onClick:se},{default:o(()=>[N("\u521B\u5EFA")]),_:1},8,["disabled"])):h("",!0)]),_:1})]),_:1})):h("",!0)]),_:1},8,["model","rules"]),t(G,{modelValue:e(U),"onUpdate:modelValue":s[24]||(s[24]=l=>Z(U)?U.value=l:null),title:"\u9009\u62E9\u7B7E\u7EA6\u65B9",width:"60%"},{default:o(()=>[t(ha,{onCustomEvent:ge,type:e(J)},null,8,["type"])]),_:1},8,["modelValue"]),t(G,{modelValue:e($),"onUpdate:modelValue":s[25]||(s[25]=l=>Z($)?$.value=l:null),title:"\u9009\u62E9\u7BA1\u7406\u4EBA\u5458",width:"60%"},{default:o(()=>[t(pe,{onCustomEvent:ve})]),_:1},8,["modelValue"]),t(G,{modelValue:e(j),"onUpdate:modelValue":s[26]||(s[26]=l=>Z(j)?j.value=l:null),title:"\u9009\u62E9\u7247\u533A\u7ECF\u7406",width:"60%"},{default:o(()=>[t(pe,{onCustomEvent:Ee,type:8})]),_:1},8,["modelValue"])])}}});export{Ol as default}; diff --git a/public/admin/assets/edit.2aec95b8.js b/public/admin/assets/edit.2aec95b8.js new file mode 100644 index 000000000..47c2d8d02 --- /dev/null +++ b/public/admin/assets/edit.2aec95b8.js @@ -0,0 +1 @@ +import"./edit.vue_vue_type_script_setup_true_lang.88cd21d7.js";import{_ as O}from"./edit.vue_vue_type_script_setup_true_lang.88cd21d7.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./role.8d2a6d5e.js";import"./index.37f7aea6.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.5759a1a6.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";export{O as default}; diff --git a/public/admin/assets/edit.2af05a0e.js b/public/admin/assets/edit.2af05a0e.js new file mode 100644 index 000000000..19cf69137 --- /dev/null +++ b/public/admin/assets/edit.2af05a0e.js @@ -0,0 +1 @@ +import"./edit.vue_vue_type_script_setup_true_lang.672caa62.js";import{_ as O}from"./edit.vue_vue_type_script_setup_true_lang.672caa62.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./message.8c449686.js";import"./index.37f7aea6.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.5759a1a6.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";export{O as default}; diff --git a/public/admin/assets/edit.3130a2d8.js b/public/admin/assets/edit.3130a2d8.js new file mode 100644 index 000000000..91f6d1b86 --- /dev/null +++ b/public/admin/assets/edit.3130a2d8.js @@ -0,0 +1 @@ +import"./edit.vue_vue_type_script_setup_true_lang.7913183a.js";import{_ as O}from"./edit.vue_vue_type_script_setup_true_lang.7913183a.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./wx_oa.ec356b57.js";import"./index.ed71ac09.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.b940d6e3.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";export{O as default}; diff --git a/public/admin/assets/edit.348ef66a.js b/public/admin/assets/edit.348ef66a.js new file mode 100644 index 000000000..b41883401 --- /dev/null +++ b/public/admin/assets/edit.348ef66a.js @@ -0,0 +1 @@ +import"./edit.vue_vue_type_style_index_0_lang.c0714a8e.js";import{_ as Y}from"./edit.vue_vue_type_style_index_0_lang.c0714a8e.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.5759a1a6.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.37f7aea6.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./useDictOptions.a45fc8ac.js";import"./admin.f0e2c7b9.js";import"./role.8d2a6d5e.js";import"./post.34f40c78.js";import"./department.ea28aaf8.js";import"./common.a58b263a.js";import"./dict.58face92.js";import"./dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.cbb85e35.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./usePaging.2ad8e1e6.js";import"./company.d1e8fc82.js";export{Y as default}; diff --git a/public/admin/assets/edit.3c2a03db.js b/public/admin/assets/edit.3c2a03db.js new file mode 100644 index 000000000..1fdbc9e75 --- /dev/null +++ b/public/admin/assets/edit.3c2a03db.js @@ -0,0 +1 @@ +import{T as I,I as q,C as T,G as N,H as S,B as U,D as L,w as $,Q as G}from"./element-plus.4328d892.js";import{_ as H}from"./index.be5645df.js";import{u as M,a as j}from"./vue-router.9f65afb1.js";import{e as z,f as K}from"./index.ed71ac09.js";import{n as O,s as P}from"./message.f1110fc7.js";import{l as Q}from"./lodash.08438971.js";import{d as v,r as J,$ as W,s as X,o as m,c as p,U as e,L as t,M as Y,u as a,K as Z,R as r,S as c,a as l,T as ee,a7 as te}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./axios.105476b3.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const oe=l("div",{class:"font-medium mb-7"},"\u901A\u77E5\u540D\u79F0",-1),se=l("div",{class:"font-medium mb-7"},"\u77ED\u4FE1\u901A\u77E5",-1),ae={class:"w-80"},ne={class:"flex-1"},ue={class:"w-full max-w-[320px]"},ie={class:"form-tips"},re=v({name:"noticeEdit"}),Oe=v({...re,setup(le){const f=M(),B=j(),d=J(!1),o=W({id:"",scene_name:"",type:"",scene_desc:"",sms_notice:{status:0,template_id:"",content:"",tips:[]},oa_notice:{},mnp_notice:{},system_notice:{}}),g={"sms_notice.template_id":[{required:!0,message:"\u8BF7\u8F93\u5165\u6A21\u677FID",trigger:"blur"}],"sms_notice.content":[{required:!0,message:"\u8BF7\u8F93\u5165\u77ED\u4FE1\u5185\u5BB9",trigger:"blur"}]},{removeTab:D}=z(),E=X(),w=async()=>{d.value=!0;const u=await O({id:f.query.id});Object.keys(u).forEach(s=>{o[s]=u[s]}),d.value=!1},y=async()=>{var s;await((s=E.value)==null?void 0:s.validate());const u={id:o.id,template:Q.exports.pick(o,["sms_notice","oa_notice","mnp_notice","system_notice"])};await P(u),K.msgSuccess("\u64CD\u4F5C\u6210\u529F"),D(),B.back()};return f.query.id&&w(),(u,s)=>{const V=I,_=q,i=T,F=N,h=S,b=U,k=L,A=$,x=H,R=G;return m(),p("div",null,[e(_,{class:"!border-none",shadow:"never"},{default:t(()=>[e(V,{content:"\u7F16\u8F91\u901A\u77E5\u8BBE\u7F6E",onBack:s[0]||(s[0]=n=>u.$router.back())})]),_:1}),Y((m(),Z(k,{ref_key:"formRef",ref:E,model:a(o),"label-width":"120px",rules:g},{default:t(()=>[e(_,{class:"!border-none mt-4",shadow:"never"},{default:t(()=>[oe,e(i,{label:"\u901A\u77E5\u540D\u79F0"},{default:t(()=>[r(c(a(o).scene_name),1)]),_:1}),e(i,{label:"\u901A\u77E5\u7C7B\u578B"},{default:t(()=>[r(c(a(o).type),1)]),_:1}),e(i,{label:"\u901A\u77E5\u4E1A\u52A1"},{default:t(()=>[r(c(a(o).scene_desc),1)]),_:1})]),_:1}),e(_,{class:"!border-none mt-4",shadow:"never"},{default:t(()=>[se,e(i,{label:"\u5F00\u542F\u72B6\u6001",prop:"sms_notice.status",required:""},{default:t(()=>[e(h,{modelValue:a(o).sms_notice.status,"onUpdate:modelValue":s[1]||(s[1]=n=>a(o).sms_notice.status=n)},{default:t(()=>[e(F,{label:"0"},{default:t(()=>[r("\u5173\u95ED")]),_:1}),e(F,{label:"1"},{default:t(()=>[r("\u5F00\u542F")]),_:1})]),_:1},8,["modelValue"])]),_:1}),e(i,{label:"\u6A21\u677FID",prop:"sms_notice.template_id"},{default:t(()=>[l("div",ae,[e(b,{modelValue:a(o).sms_notice.template_id,"onUpdate:modelValue":s[2]||(s[2]=n=>a(o).sms_notice.template_id=n),placeholder:"\u8BF7\u8F93\u5165\u6A21\u677FID"},null,8,["modelValue"])])]),_:1}),e(i,{label:"\u77ED\u4FE1\u5185\u5BB9",prop:"sms_notice.content"},{default:t(()=>[l("div",ne,[l("div",ue,[e(b,{type:"textarea",autosize:{minRows:6,maxRows:6},modelValue:a(o).sms_notice.content,"onUpdate:modelValue":s[3]||(s[3]=n=>a(o).sms_notice.content=n)},null,8,["modelValue"])]),l("div",ie,[(m(!0),p(ee,null,te(a(o).sms_notice.tips,(n,C)=>(m(),p("div",{key:C},c(n),1))),128))])])]),_:1})]),_:1})]),_:1},8,["model"])),[[R,a(d)]]),e(x,null,{default:t(()=>[e(A,{type:"primary",onClick:y},{default:t(()=>[r("\u4FDD\u5B58")]),_:1})]),_:1})])}}});export{Oe as default}; diff --git a/public/admin/assets/edit.3eb8c3f8.js b/public/admin/assets/edit.3eb8c3f8.js new file mode 100644 index 000000000..c0a16a7e2 --- /dev/null +++ b/public/admin/assets/edit.3eb8c3f8.js @@ -0,0 +1 @@ +import"./edit.vue_vue_type_style_index_0_lang.c20ff989.js";import{_ as Y}from"./edit.vue_vue_type_style_index_0_lang.c20ff989.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.b940d6e3.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.ed71ac09.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./useDictOptions.8d37e54b.js";import"./admin.f28da7a1.js";import"./role.1c72c4c7.js";import"./post.53815820.js";import"./department.4e17bcb6.js";import"./common.ac78ede6.js";import"./dict.6c560e38.js";import"./dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.dac5c88f.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./usePaging.2ad8e1e6.js";import"./company.8a1c349a.js";export{Y as default}; diff --git a/public/admin/assets/edit.49ead2a1.js b/public/admin/assets/edit.49ead2a1.js new file mode 100644 index 000000000..7a7757416 --- /dev/null +++ b/public/admin/assets/edit.49ead2a1.js @@ -0,0 +1 @@ +import{J as Pe,Z as Ge,_ as Ke,$ as Qe,k as L,B as Ze,C as He,M as We,N as Xe,F as Ye,a0 as ea,a1 as aa,a2 as la,c as ta,w as ua,D as oa,L as sa}from"./element-plus.4328d892.js";import{a as ia,u as na}from"./vue-router.9f65afb1.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import{a as re,b as K,d as ra,e as da}from"./company.b7ec1bf9.js";import{a as ca,b as pa,c as ma,d as _a,e as fa,f as ba}from"./common.86798ce6.js";import{d as de}from"./dict.927f1fc7.js";import{d as me,C as ya,r as m,s as ce,$ as Q,w as ga,a4 as va,o as i,c as _,U as t,L as o,u as e,T as g,a7 as E,K as p,Q as h,R as N,S as Ea,a as F,k as Z}from"./@vue.51d7f2d8.js";import"./lodash.08438971.js";import{_ as ha}from"./dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.8b016626.js";import{_ as pe}from"./dialog_index_man.vue_vue_type_script_setup_true_name_companyLists_lang.94e09823.js";import{a as Ba,e as Fa}from"./index.aa9bb752.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./usePaging.2ad8e1e6.js";import"./role.41d5883e.js";import"./useDictOptions.a61fcf9f.js";import"./admin.1cd61358.js";import"./axios.105476b3.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const Va={class:"edit-popup"},Ca=F("div",{class:"tit"},"\u516C\u53F8\u57FA\u672C\u4FE1\u606F\u521B\u5EFA",-1),Aa=F("div",{class:"tit"},"\u4E3B\u8981\u8054\u7CFB\u4EBA",-1),wa=F("span",{style:{color:"#f56c6c","padding-left":"20px"}},"*",-1),ka={class:"headimg",style:{"margin-left":"5px"}},Da=["src"],xa={key:1,class:"avatar-uploader-icon"},qa={style:{display:"flex","justify-content":"left"}},Ua={class:"right",style:{"max-width":"1100px"}},Oa=F("div",{class:"tit"},"\u5176\u4ED6\u8054\u7CFB\u4EBA",-1),La=F("div",{class:"tit"},"\u8D44\u8D28\u4FE1\u606F",-1),Na=["src"],Sa=["src","onClick"],Ta=["src"];const $a=me({name:"companyEdit"}),Ol=me({...$a,props:{dictData:{type:Object,default:()=>({})}},emits:["success","close"],setup(ja,{expose:_e,emit:Ra}){var ie,ne;const S=ya("base_url"),A=Ba(),{removeTab:fe}=Fa(),be=ia(),v=na();m(!0);let H=m(!0),r=m(!1);v.query.flag,v.query.isshow&&(H=!1,r=!0);const T=m(".png, .jpg, .jpeg, image/png, image/jpeg");console.log(r);const J=m(0);let q=m(!1);const W=ce();ce(),m(),v.query.read&&(r=v.query.read),v.query.edit&&(q=v.query.edit);const a=Q({admin_id:"",admin_name:"",area_manager:"",area_manager_name:"",id:"",company_name:"",organization_code:"",province:"",city:"",area:"",street:"",village:"",brigade:"",address:"",responsible_area:[],company_type:"",avatar:"",sex:"1",id_card:"",master_name:"",master_position:"",master_phone:"",master_email:"",other_contacts:[],qualification:{business_license:"",business_licenseB:"",other_qualifications:[],bank_accountB:[],bank_account:[]},contract:{contract_type:"",party_a:0,file:"",contract_no:"\u7CFB\u7EDF\u81EA\u52A8\u751F\u6210",type:1},party_a_name:"",file_image:""});A.userInfo.root==0&&(a.contract.party_a=(ie=A.userInfo.company)==null?void 0:ie.id,a.party_a_name=(ne=A.userInfo.company)==null?void 0:ne.company_name);const f=Q({provinceOptions:[],cityOptions:[],areaOptions:[],streetOptions:[],villageOptions:[],brigadeOptions:[],dictTypeLists:[],contract_type:[],company_list:[]});m([]);const ye=Q({company_name:[{required:!0,message:"\u8BF7\u8F93\u5165\u516C\u53F8\u540D\u79F0",trigger:["blur"]}],organization_code:[{required:!0,message:"\u8BF7\u8F93\u5165\u7EC4\u7EC7\u673A\u6784\u4EE3\u7801",trigger:["blur"]}],master_name:[{required:!0,message:"\u8BF7\u8F93\u5165\u4E3B\u8054\u7CFB\u4EBA\u59D3\u540D",trigger:["blur"]}],master_position:[{required:!0,message:"\u8BF7\u8F93\u5165\u4E3B\u8054\u7CFB\u4EBA\u804C\u52A1",trigger:["blur"]}],master_phone:[{required:!0,message:"\u8BF7\u8F93\u5165\u4E3B\u8054\u7CFB\u4EBA\u624B\u673A",trigger:["blur"]}],avatar:[{required:!0,message:"\u8BF7\u4E0A\u4F20\u7167\u7247",trigger:["blur"]}],account:[{required:!0,message:"\u8BF7\u8F93\u5165\u8D26\u53F7",trigger:["blur"]}],password:[{required:!0,message:"\u8BF7\u8F93\u5165\u5BC6\u7801",trigger:["blur"]}]}),U=m(!1),$=m(!1),j=m(!1),w=m(!1),k=m(!1),D=m(!1),x=m(!1),P=m(!0);function ge(u){U.value=!1,a.contract.party_a=u.id,a.party_a_name=u.company_name}function ve(u){$.value=!1,a.admin_name=u.name,a.admin_id=u.id}function Ee(u){j.value=!1,a.area_manager_name=u.name,a.area_manager=u.id}function za(){U.value=!0}const b=m(""),X=m(0);ga(()=>a[b.value],(u,s)=>{if(X.value==0)return X.value++;a.responsible_area=[],a.responsible_area.push(u+"")});const he=u=>{},Y=async u=>{for(const s in a)u[s]!=null&&u[s]!=null&&(a[s]=u[s])},Be=async u=>{const s=await re({id:u.id});Y(s)},Fe=(u,s)=>{if(u.code==0){L.error(u.msg);return}a.qualification.business_license=u.data.uri},Ve=(u,s)=>{if(u.code==0){L.error(u.msg);return}a.qualification.business_licenseB=u.data.uri},Ce=(u,s)=>{if(u.code==0){L.error(u.msg);return}a.qualification.other_qualifications.push(u.data.uri)};function Ae(){a.other_contacts.push({name:"",position:"",phone:"",email:""})}function we(){a.other_contacts.pop({name:"",position:"",phone:"",email:""})}function ee(u){if([30,14,15].indexOf(u)>-1)return w.value=!0,k.value=!1,D.value=!1,x.value=!1,a.street="",a.village="",a.brigade="",b.value="area",!0;if(u==16)return w.value=!0,k.value=!0,D.value=!1,x.value=!1,a.village="",a.brigade="",a.street="",a.area="",a.responsible_area=[],P.value=!0,J.value=30,b.value="street",!0;if(u!=16&&(P.value=!1),u==41)return w.value=!0,k.value=!0,D.value=!1,x.value=!1,a.village="",a.brigade="",a.street="",a.area="",a.responsible_area=[],b.value="street",!0;if(u==17)return w.value=!0,k.value=!0,D.value=!0,x.value=!1,a.brigade="",b.value="village",!0;if(u==18)return w.value=!0,k.value=!0,D.value=!0,x.value=!0,b.value="brigade",!0}function ke(u){ae()}function De(u){le()}function xe(u){te()}function qe(u){ue()}function Ue(u){oe()}const Oe=async()=>{const u=await ca({});f.provinceOptions=u},ae=async()=>{const u=await pa({city:a.province});f.cityOptions=u},le=async()=>{const u=await ma({area:a.city});f.areaOptions=u},te=async()=>{const u=await _a({street:a.area});if(a.company_type==16||a.company_type==41){const s=await K({key:"area",value:a.area,company_type:a.company_type});u.forEach(d=>{Object.values(s).find(n=>d.street_code==n+"")?d.disabled=!0:d.disabled=!1})}f.streetOptions=u},ue=async()=>{const u=await fa({village:a.street});if(a.company_type==17){const s=await K({key:"street",value:a.street,company_type:a.company_type});u.forEach(d=>{Object.values(s).find(n=>d.village_code==n+"")?d.disabled=!0:d.disabled=!1})}f.villageOptions=u},oe=async()=>{const u=await ba();if(a.company_type==18){const s=await K({key:"village",value:a.village,company_type:a.company_type});u.forEach(d=>{Object.values(s).find(n=>d.id==n+"")?d.disabled=!0:d.disabled=!1})}f.brigadeOptions=u};Oe();const Le=async()=>{const u=await de({type_id:7});f.contract_type=u.lists},Ne=async()=>{const u=await de({type_id:6});f.dictTypeLists=u.lists},Se=async()=>{var s;const u=await re({id:v.query.id});u.company_type==16&&(J.value=30,P.value=!0),Object.keys(a).forEach(d=>{const n=["province","city","area","street","village","brigade"];u[d]!=null&&u[d]!=null&&(a[d]=u[d]),n.includes(d)&&(a[d]=a[d].toString())}),await ae(),await le(),await te(),await ue(),await oe(),a.party_a_name=(s=u.contract)==null?void 0:s.party_a_info.company_name,ee(a.company_type)},Te=u=>{v.query.read||a.qualification.other_qualifications.splice(u,1)};Ne(),Le();const $e=(u,s)=>{if(u.code==0){L.error(u.msg);return}a.avatar=u.data.uri},se=async()=>{var s;if(!a.avatar)return L.error("\u4E3B\u8981\u8054\u7CFB\u4EBA\u5934\u50CF\u4E0D\u53EF\u4E3A\u7A7A");await((s=W.value)==null?void 0:s.validate());const u=JSON.parse(JSON.stringify({...a}));u.qualification.other_qualifications=JSON.stringify(u.qualification.other_qualifications),v.query.id?await ra(u):await da(u),fe(),be.back()};return v.query.id&&Se(),_e({open,setFormData:Y,getDetail:Be}),(u,s)=>{const d=Ze,n=He,B=We,V=Xe,je=Ye,Re=ea,y=aa,O=la,R=va("Plus"),z=ta,M=Pe,ze=Ge,Me=Ke,Ie=Qe,I=ua,Je=oa,G=sa;return i(),_("div",Va,[t(Je,{ref_key:"formRef",ref:W,model:e(a),"label-width":"90px",rules:e(ye)},{default:o(()=>[t(y,{span:24,class:"el-card pt-6"},{default:o(()=>[Ca,t(O,null,{default:o(()=>[t(n,{label:"\u516C\u53F8\u540D\u79F0",prop:"company_name"},{default:o(()=>[t(d,{modelValue:e(a).company_name,"onUpdate:modelValue":s[0]||(s[0]=l=>e(a).company_name=l),placeholder:"\u8BF7\u8F93\u5165\u516C\u53F8\u540D\u79F0",clearable:"",disabled:e(r),style:{width:"300px"}},null,8,["modelValue","disabled"])]),_:1}),t(n,{label:"\u793E\u4F1A\u4EE3\u7801",prop:"organization_code"},{default:o(()=>[t(d,{disabled:e(r),modelValue:e(a).organization_code,"onUpdate:modelValue":s[1]||(s[1]=l=>e(a).organization_code=l),placeholder:"\u8BF7\u8F93\u5165\u793E\u4F1A\u4EE3\u7801",clearable:"",style:{width:"300px"}},null,8,["disabled","modelValue"])]),_:1}),t(n,{label:"\u516C\u53F8\u7C7B\u578B",rules:[{required:!0,message:"\u4E0D\u53EF\u4E3A\u7A7A",trigger:"blur"}],prop:"company_type"},{default:o(()=>[t(V,{disabled:e(r),modelValue:e(a).company_type,"onUpdate:modelValue":s[2]||(s[2]=l=>e(a).company_type=l),placeholder:"\u8BF7\u9009\u62E9\u516C\u53F8\u7C7B\u578B",clearable:"",onChange:ee},{default:o(()=>[(i(!0),_(g,null,E(e(f).dictTypeLists,(l,c)=>(i(),p(B,{key:c,label:l.name,value:l.id},null,8,["label","value"]))),128))]),_:1},8,["disabled","modelValue"])]),_:1}),t(n,{label:"\u7701",rules:[{required:!0,message:"\u4E0D\u53EF\u4E3A\u7A7A",trigger:"blur"}],prop:"province"},{default:o(()=>[t(V,{disabled:e(r),modelValue:e(a).province,"onUpdate:modelValue":s[3]||(s[3]=l=>e(a).province=l),placeholder:"\u8BF7\u9009\u62E9\u7701",clearable:"",onChange:ke,style:{width:"100%"}},{default:o(()=>[(i(!0),_(g,null,E(e(f).provinceOptions,(l,c)=>(i(),p(B,{key:c,label:l.province_name,value:l.province_code},null,8,["label","value"]))),128))]),_:1},8,["disabled","modelValue"])]),_:1}),t(n,{label:"\u5E02",rules:[{required:!0,message:"\u4E0D\u53EF\u4E3A\u7A7A",trigger:"blur"}],prop:"city"},{default:o(()=>[t(V,{disabled:e(r),modelValue:e(a).city,"onUpdate:modelValue":s[4]||(s[4]=l=>e(a).city=l),placeholder:"\u8BF7\u9009\u62E9\u5E02",clearable:"",onChange:De,style:{width:"100%"}},{default:o(()=>[(i(!0),_(g,null,E(e(f).cityOptions,(l,c)=>(i(),p(B,{key:c,label:l.city_name,value:l.city_code},null,8,["label","value"]))),128))]),_:1},8,["disabled","modelValue"])]),_:1}),e(w)?(i(),p(n,{key:0,label:"\u533A",rules:[{required:!0,message:"\u4E0D\u53EF\u4E3A\u7A7A",trigger:"blur"}],prop:"area"},{default:o(()=>[t(V,{disabled:e(r),modelValue:e(a).area,"onUpdate:modelValue":s[5]||(s[5]=l=>e(a).area=l),placeholder:"\u8BF7\u9009\u62E9\u533A",clearable:"",onChange:xe,style:{width:"100%"}},{default:o(()=>[(i(!0),_(g,null,E(e(f).areaOptions,(l,c)=>(i(),p(B,{key:c,label:l.area_name,value:l.area_code,disabled:l.disabled},null,8,["label","value","disabled"]))),128))]),_:1},8,["disabled","modelValue"])]),_:1})):h("",!0),e(k)?(i(),p(n,{key:1,label:"\u9547",rules:[{required:!0,message:"\u4E0D\u53EF\u4E3A\u7A7A",trigger:"blur"}],prop:"street"},{default:o(()=>[t(V,{disabled:e(r),modelValue:e(a).street,"onUpdate:modelValue":s[6]||(s[6]=l=>e(a).street=l),placeholder:"\u8BF7\u9009\u62E9\u9547",clearable:"",onChange:qe,style:{width:"100%"}},{default:o(()=>[(i(!0),_(g,null,E(e(f).streetOptions,(l,c)=>(i(),p(B,{key:c,label:l.street_name,value:l.street_code,disabled:l.disabled},null,8,["label","value","disabled"]))),128))]),_:1},8,["disabled","modelValue"])]),_:1})):h("",!0),e(D)?(i(),p(n,{key:2,label:"\u6751",rules:[{required:!0,message:"\u4E0D\u53EF\u4E3A\u7A7A",trigger:"blur"}],prop:"village"},{default:o(()=>[t(V,{disabled:e(r),modelValue:e(a).village,"onUpdate:modelValue":s[7]||(s[7]=l=>e(a).village=l),placeholder:"\u8BF7\u9009\u62E9\u6751",clearable:"",onChange:Ue,style:{width:"100%"}},{default:o(()=>[(i(!0),_(g,null,E(e(f).villageOptions,(l,c)=>(i(),p(B,{key:c,label:l.village_name,value:l.village_code,disabled:l.disabled},null,8,["label","value","disabled"]))),128))]),_:1},8,["disabled","modelValue"])]),_:1})):h("",!0),e(x)?(i(),p(n,{key:3,label:"\u961F",rules:[{required:!0,message:"\u4E0D\u53EF\u4E3A\u7A7A",trigger:"blur"}],prop:"brigade"},{default:o(()=>[t(V,{disabled:e(r),modelValue:e(a).brigade,"onUpdate:modelValue":s[8]||(s[8]=l=>e(a).brigade=l),placeholder:"\u8BF7\u9009\u62E9\u961F",clearable:"",style:{width:"100%"}},{default:o(()=>[(i(!0),_(g,null,E(e(f).brigadeOptions,(l,c)=>(i(),p(B,{key:c,label:l.brigade_name,value:l.id,disabled:l.disabled},null,8,["label","value","disabled"]))),128))]),_:1},8,["disabled","modelValue"])]),_:1})):h("",!0),t(n,{label:"\u5730\u5740",prop:"address"},{default:o(()=>[t(d,{disabled:e(r),modelValue:e(a).address,"onUpdate:modelValue":s[9]||(s[9]=l=>e(a).address=l),placeholder:"\u8BF7\u8F93\u5165\u5730\u5740",clearable:"",style:{width:"300px"}},null,8,["disabled","modelValue"])]),_:1}),t(y,{span:23},{default:o(()=>[t(n,{label:"\u8D1F\u8D23\u533A\u57DF",prop:"region"},{default:o(()=>[t(Re,{modelValue:e(a).responsible_area,"onUpdate:modelValue":s[10]||(s[10]=l=>e(a).responsible_area=l),onChange:he,disabled:e(r)},{default:o(()=>[(i(!0),_(g,null,E(e(f)[e(b)+"Options"],l=>(i(),p(je,{disabled:e(a)[e(b)]==l[e(b)+"_code"]||e(a)[e(b)]==l.id||l.disabled,key:l[e(b)+"_name"],label:e(b)=="brigade"?l.id+"":l[e(b)+"_code"]+""},{default:o(()=>[N(Ea(l[e(b)+"_name"]),1)]),_:2},1032,["disabled","label"]))),128))]),_:1},8,["modelValue","disabled"])]),_:1})]),_:1})]),_:1})]),_:1}),t(y,{span:24,class:"el-card pt-6"},{default:o(()=>[Aa,t(Ie,null,{default:o(()=>[t(ze,{width:"190px",style:{display:"flex"}},{default:o(()=>[wa,F("div",ka,[t(M,{disabled:e(r),accept:e(T),modelValue:e(a).avatar,"onUpdate:modelValue":s[11]||(s[11]=l=>e(a).avatar=l),class:"avatar-uploader-head",data:{cid:1},headers:{Token:e(A).token},action:e(S)+"/upload/image","show-file-list":!1,"on-success":$e},{default:o(()=>[e(a).avatar?(i(),_("img",{key:0,src:e(a).avatar,class:"avatar"},null,8,Da)):(i(),_("div",xa,[t(z,null,{default:o(()=>[t(R)]),_:1})]))]),_:1},8,["disabled","accept","modelValue","headers","action"])])]),_:1}),t(Me,null,{default:o(()=>[t(O,null,{default:o(()=>[F("div",qa,[F("div",Ua,[t(O,null,{default:o(()=>[t(n,{label:"\u59D3\u540D",prop:"master_name"},{default:o(()=>[t(d,{disabled:e(r),modelValue:e(a).master_name,"onUpdate:modelValue":s[12]||(s[12]=l=>e(a).master_name=l),placeholder:"\u8BF7\u8F93\u5165\u59D3\u540D",clearable:"",style:{width:"450px"}},null,8,["disabled","modelValue"])]),_:1}),t(n,{label:"\u804C\u52A1",prop:"master_position"},{default:o(()=>[t(d,{disabled:e(r),modelValue:e(a).master_position,"onUpdate:modelValue":s[13]||(s[13]=l=>e(a).master_position=l),placeholder:"\u8BF7\u8F93\u5165\u804C\u52A1",clearable:"",style:{width:"450px"}},null,8,["disabled","modelValue"])]),_:1}),t(n,{label:"\u624B\u673A",prop:"master_phone"},{default:o(()=>[t(d,{disabled:e(r),modelValue:e(a).master_phone,"onUpdate:modelValue":s[14]||(s[14]=l=>e(a).master_phone=l),placeholder:"\u8BF7\u8F93\u5165\u624B\u673A",clearable:"",style:{width:"450px"}},null,8,["disabled","modelValue"])]),_:1}),t(n,{label:"\u90AE\u7BB1"},{default:o(()=>[t(d,{disabled:"",modelValue:e(a).master_email,"onUpdate:modelValue":s[15]||(s[15]=l=>e(a).master_email=l),placeholder:"\u90AE\u7BB1\u5C06\u7531\u7CFB\u7EDF\u81EA\u52A8\u751F\u6210",clearable:"",style:{width:"450px"}},null,8,["modelValue"])]),_:1}),t(n,{label:"\u6027\u522B",prop:"sex"},{default:o(()=>[t(V,{disabled:e(r),modelValue:e(a).sex,"onUpdate:modelValue":s[16]||(s[16]=l=>e(a).sex=l),placeholder:"\u8BF7\u9009\u62E9\u6027\u522B",style:{width:"450px"}},{default:o(()=>[t(B,{label:"\u7537",value:"1"}),t(B,{label:"\u5973",value:"2"})]),_:1},8,["disabled","modelValue"])]),_:1}),t(n,{label:"\u8EAB\u4EFD\u8BC1"},{default:o(()=>[t(d,{disabled:e(r),modelValue:e(a).id_card,"onUpdate:modelValue":s[17]||(s[17]=l=>e(a).id_card=l),placeholder:"\u8BF7\u8F93\u5165\u8EAB\u4EFD\u8BC1",clearable:"",style:{width:"450px"}},null,8,["disabled","modelValue"])]),_:1})]),_:1})])])]),_:1})]),_:1})]),_:1})]),_:1}),t(y,{span:24,class:"el-card pt-6"},{default:o(()=>[Oa,t(O,null,{default:o(()=>[(i(!0),_(g,null,E(e(a).other_contacts,(l,c)=>(i(),_(g,{key:c},[t(y,{span:12},{default:o(()=>[t(n,{label:"\u59D3\u540D",prop:"field120"},{default:o(()=>[t(d,{disabled:e(r),modelValue:l.name,"onUpdate:modelValue":C=>l.name=C,placeholder:"\u8BF7\u8F93\u5165\u59D3\u540D",clearable:"",style:{width:"100%"}},null,8,["disabled","modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024),t(y,{span:12},{default:o(()=>[t(n,{label:"\u804C\u52A1",prop:"field121"},{default:o(()=>[t(d,{disabled:e(r),modelValue:l.position,"onUpdate:modelValue":C=>l.position=C,placeholder:"\u8BF7\u8F93\u5165\u804C\u52A1",clearable:"",style:{width:"100%"}},null,8,["disabled","modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024),t(y,{span:12},{default:o(()=>[t(n,{label:"\u624B\u673A",prop:"field122"},{default:o(()=>[t(d,{disabled:e(r),modelValue:l.phone,"onUpdate:modelValue":C=>l.phone=C,placeholder:"\u8BF7\u8F93\u5165\u624B\u673A",clearable:"",style:{width:"100%"}},null,8,["disabled","modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024),t(y,{span:12},{default:o(()=>[t(n,{label:"\u90AE\u7BB1"},{default:o(()=>[t(d,{disabled:e(r),modelValue:l.email,"onUpdate:modelValue":C=>l.email=C,placeholder:"\u8BF7\u8F93\u5165\u90AE\u7BB1",clearable:"",style:{width:"100%"}},null,8,["disabled","modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024)],64))),128)),t(y,{span:24},{default:o(()=>[t(n,{label:"",prop:"field126"},{default:o(()=>[t(I,{type:"primary",disabled:e(r),size:"medium",onClick:Ae},{default:o(()=>[N("\u6DFB\u52A0\u8054\u7CFB\u4EBA")]),_:1},8,["disabled"]),e(a).other_contacts.length?(i(),p(I,{key:0,type:"primary",disabled:e(r),size:"medium",onClick:we},{default:o(()=>[N("\u5220\u9664")]),_:1},8,["disabled"])):h("",!0)]),_:1})]),_:1})]),_:1})]),_:1}),t(y,{span:24,class:"el-card pt-6"},{default:o(()=>[La,t(O,null,{default:o(()=>[t(y,{span:12},{default:o(()=>[t(n,{label:"\u516C\u53F8\u8D44\u8D28",required:""},{default:o(()=>[t(M,{disabled:e(r),accept:e(T),modelValue:e(a).qualification.business_license,"onUpdate:modelValue":s[18]||(s[18]=l=>e(a).qualification.business_license=l),class:"avatar-uploader pl-3",data:{cid:1},headers:{Token:e(A).token},action:e(S)+"/upload/image","show-file-list":!1,"on-success":Fe},{default:o(()=>[e(a).qualification.business_license?(i(),_("img",{key:0,src:e(a).qualification.business_license,class:"avatar"},null,8,Na)):(i(),p(z,{key:1,class:"avatar-uploader-icon"},{default:o(()=>[t(R)]),_:1}))]),_:1},8,["disabled","accept","modelValue","headers","action"])]),_:1}),t(n,{class:"others",label:"\u5176\u4ED6\u8D44\u8D28"},{default:o(()=>[(i(!0),_(g,null,E(e(a).qualification.other_qualifications,(l,c)=>(i(),_("div",{key:c,class:"otherimg"},[F("img",{src:l,onClick:C=>Te(c)},null,8,Sa)]))),128)),e(H)?(i(),p(M,{key:0,accept:e(T),disabled:e(r),class:"avatar-uploader pl-3",data:{cid:1},headers:{Token:e(A).token},action:e(S)+"/upload/image","show-file-list":!1,"on-success":Ce,style:{"margin-bottom":"12px"}},{default:o(()=>[t(z,{class:"avatar-uploader-icon"},{default:o(()=>[t(R)]),_:1})]),_:1},8,["accept","disabled","headers","action"])):h("",!0)]),_:1})]),_:1}),t(y,{span:12},{default:o(()=>[t(n,{"label-width":"120px",label:"\u5F00\u6237\u8BB8\u53EF\u8BC1",required:""},{default:o(()=>[t(M,{disabled:e(r),accept:e(T),modelValue:e(a).qualification.business_licenseB,"onUpdate:modelValue":s[19]||(s[19]=l=>e(a).qualification.business_licenseB=l),class:"avatar-uploader pl-3",data:{cid:1},headers:{Token:e(A).token},action:e(S)+"/upload/image","show-file-list":!1,"on-success":Ve},{default:o(()=>[e(a).qualification.business_licenseB?(i(),_("img",{key:0,src:e(a).qualification.business_licenseB,class:"avatar"},null,8,Ta)):(i(),p(z,{key:1,class:"avatar-uploader-icon"},{default:o(()=>[t(R)]),_:1}))]),_:1},8,["disabled","accept","modelValue","headers","action"])]),_:1})]),_:1})]),_:1})]),_:1}),h("",!0),e(r)==!1&&e(q)==!1||e(q)?(i(),p(y,{key:1,span:24,class:"el-card pt-6"},{default:o(()=>[t(n,{label:"",prop:"field139"},{default:o(()=>[e(q)?(i(),p(I,{key:0,type:"primary",size:"medium",onClick:se},{default:o(()=>[N("\u5B8C\u6210")]),_:1})):h("",!0),e(r)==!1&&e(q)==!1?(i(),p(I,{key:1,type:"primary",disabled:e(r),size:"medium",onClick:se},{default:o(()=>[N("\u521B\u5EFA")]),_:1},8,["disabled"])):h("",!0)]),_:1})]),_:1})):h("",!0)]),_:1},8,["model","rules"]),t(G,{modelValue:e(U),"onUpdate:modelValue":s[24]||(s[24]=l=>Z(U)?U.value=l:null),title:"\u9009\u62E9\u7B7E\u7EA6\u65B9",width:"60%"},{default:o(()=>[t(ha,{onCustomEvent:ge,type:e(J)},null,8,["type"])]),_:1},8,["modelValue"]),t(G,{modelValue:e($),"onUpdate:modelValue":s[25]||(s[25]=l=>Z($)?$.value=l:null),title:"\u9009\u62E9\u7BA1\u7406\u4EBA\u5458",width:"60%"},{default:o(()=>[t(pe,{onCustomEvent:ve})]),_:1},8,["modelValue"]),t(G,{modelValue:e(j),"onUpdate:modelValue":s[26]||(s[26]=l=>Z(j)?j.value=l:null),title:"\u9009\u62E9\u7247\u533A\u7ECF\u7406",width:"60%"},{default:o(()=>[t(pe,{onCustomEvent:Ee,type:8})]),_:1},8,["modelValue"])])}}});export{Ol as default}; diff --git a/public/admin/assets/edit.4f737b07.js b/public/admin/assets/edit.4f737b07.js new file mode 100644 index 000000000..7ae7b9640 --- /dev/null +++ b/public/admin/assets/edit.4f737b07.js @@ -0,0 +1 @@ +import"./edit.vue_vue_type_script_setup_true_lang.fdb9299c.js";import{_ as N}from"./edit.vue_vue_type_script_setup_true_lang.fdb9299c.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.ed71ac09.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.b940d6e3.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";export{N as default}; diff --git a/public/admin/assets/edit.572b3389.js b/public/admin/assets/edit.572b3389.js new file mode 100644 index 000000000..8b49df0a9 --- /dev/null +++ b/public/admin/assets/edit.572b3389.js @@ -0,0 +1 @@ +import"./edit.vue_vue_type_script_setup_true_lang.acc86aef.js";import{_ as O}from"./edit.vue_vue_type_script_setup_true_lang.acc86aef.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./post.34f40c78.js";import"./index.37f7aea6.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.5759a1a6.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";export{O as default}; diff --git a/public/admin/assets/edit.5b381842.js b/public/admin/assets/edit.5b381842.js new file mode 100644 index 000000000..821c1d8a3 --- /dev/null +++ b/public/admin/assets/edit.5b381842.js @@ -0,0 +1 @@ +import"./edit.vue_vue_type_script_setup_true_lang.e6d477e4.js";import{_ as O}from"./edit.vue_vue_type_script_setup_true_lang.e6d477e4.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.fa872673.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.aa9bb752.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./dict.927f1fc7.js";export{O as default}; diff --git a/public/admin/assets/edit.66c6532e.js b/public/admin/assets/edit.66c6532e.js new file mode 100644 index 000000000..499ff9464 --- /dev/null +++ b/public/admin/assets/edit.66c6532e.js @@ -0,0 +1 @@ +import"./edit.vue_vue_type_style_index_0_lang.0c12de95.js";import{_ as Y}from"./edit.vue_vue_type_style_index_0_lang.0c12de95.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.fa872673.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.aa9bb752.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./useDictOptions.a61fcf9f.js";import"./admin.1cd61358.js";import"./role.41d5883e.js";import"./post.5d32b419.js";import"./department.5076f65d.js";import"./common.86798ce6.js";import"./dict.927f1fc7.js";import"./dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.8548f463.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./usePaging.2ad8e1e6.js";import"./company.b7ec1bf9.js";export{Y as default}; diff --git a/public/admin/assets/edit.6cefa6e6.js b/public/admin/assets/edit.6cefa6e6.js new file mode 100644 index 000000000..ad1827241 --- /dev/null +++ b/public/admin/assets/edit.6cefa6e6.js @@ -0,0 +1 @@ +import"./edit.vue_vue_type_script_setup_true_lang.4b359fcf.js";import{_ as O}from"./edit.vue_vue_type_script_setup_true_lang.4b359fcf.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./message.39fcd3de.js";import"./index.aa9bb752.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.fa872673.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";export{O as default}; diff --git a/public/admin/assets/edit.6d490036.js b/public/admin/assets/edit.6d490036.js new file mode 100644 index 000000000..4c7d5cfcf --- /dev/null +++ b/public/admin/assets/edit.6d490036.js @@ -0,0 +1 @@ +import"./edit.vue_vue_type_script_setup_true_name_shopContractEdit_lang.03c8c155.js";import{_ as O}from"./edit.vue_vue_type_script_setup_true_name_shopContractEdit_lang.03c8c155.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.5759a1a6.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.37f7aea6.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./shop_contract.07d6415c.js";export{O as default}; diff --git a/public/admin/assets/edit.6e729f1a.js b/public/admin/assets/edit.6e729f1a.js new file mode 100644 index 000000000..1c70980dd --- /dev/null +++ b/public/admin/assets/edit.6e729f1a.js @@ -0,0 +1 @@ +import"./edit.vue_vue_type_script_setup_true_lang.bb74dbfc.js";import{_ as Z}from"./edit.vue_vue_type_script_setup_true_lang.bb74dbfc.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./picker.597494a6.js";import"./index.b940d6e3.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.ed71ac09.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.c38e1dd6.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./index.f2c7f81b.js";import"./index.9c616a0c.js";import"./index.vue_vue_type_script_setup_true_lang.dc835bba.js";import"./usePaging.2ad8e1e6.js";import"./vue3-video-play.b911321b.js";import"./vuedraggable.0cb40d3a.js";import"./vue.5de34049.js";import"./sortablejs.ef73fc5c.js";import"./pay.28eb6ca6.js";export{Z as default}; diff --git a/public/admin/assets/edit.7205478b.js b/public/admin/assets/edit.7205478b.js new file mode 100644 index 000000000..a2b9b3590 --- /dev/null +++ b/public/admin/assets/edit.7205478b.js @@ -0,0 +1 @@ +import"./edit.vue_vue_type_script_setup_true_lang.c2e27398.js";import{_ as P}from"./edit.vue_vue_type_script_setup_true_lang.c2e27398.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./picker.vue_vue_type_script_setup_true_lang.d458cc42.js";import"./index.aa9bb752.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./menu.072eb1d3.js";import"./index.fa872673.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";export{P as default}; diff --git a/public/admin/assets/edit.758a9910.js b/public/admin/assets/edit.758a9910.js new file mode 100644 index 000000000..45235aa3c --- /dev/null +++ b/public/admin/assets/edit.758a9910.js @@ -0,0 +1 @@ +import"./edit.vue_vue_type_script_setup_true_name_appUpdateEdit_lang.696a9d48.js";import{_ as N}from"./edit.vue_vue_type_script_setup_true_name_appUpdateEdit_lang.696a9d48.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.b940d6e3.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.ed71ac09.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";export{N as default}; diff --git a/public/admin/assets/edit.76525d73.js b/public/admin/assets/edit.76525d73.js new file mode 100644 index 000000000..ecb6cb47b --- /dev/null +++ b/public/admin/assets/edit.76525d73.js @@ -0,0 +1 @@ +import"./edit.vue_vue_type_script_setup_true_name_appUpdateEdit_lang.e5edc10c.js";import{_ as N}from"./edit.vue_vue_type_script_setup_true_name_appUpdateEdit_lang.e5edc10c.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.5759a1a6.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.37f7aea6.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";export{N as default}; diff --git a/public/admin/assets/edit.76c3edd6.js b/public/admin/assets/edit.76c3edd6.js new file mode 100644 index 000000000..654f39384 --- /dev/null +++ b/public/admin/assets/edit.76c3edd6.js @@ -0,0 +1 @@ +import"./edit.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.656c3f7f.js";import{_ as T}from"./edit.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.656c3f7f.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./vue-router.9f65afb1.js";import"./index.fa872673.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.aa9bb752.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./map.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.9d7f531d.js";import"./dialog_index_personnel.vue_vue_type_script_setup_true_name_companyLists_lang.ddb96626.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./usePaging.2ad8e1e6.js";import"./role.41d5883e.js";import"./useDictOptions.a61fcf9f.js";export{T as default}; diff --git a/public/admin/assets/edit.82542331.js b/public/admin/assets/edit.82542331.js new file mode 100644 index 000000000..1c5e1f25b --- /dev/null +++ b/public/admin/assets/edit.82542331.js @@ -0,0 +1 @@ +import"./edit.vue_vue_type_script_setup_true_lang.390417cc.js";import{_ as O}from"./edit.vue_vue_type_script_setup_true_lang.390417cc.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./article.188d8b86.js";import"./index.aa9bb752.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.fa872673.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";export{O as default}; diff --git a/public/admin/assets/edit.8331762b.js b/public/admin/assets/edit.8331762b.js new file mode 100644 index 000000000..8faa8d29f --- /dev/null +++ b/public/admin/assets/edit.8331762b.js @@ -0,0 +1 @@ +import"./edit.vue_vue_type_script_setup_true_lang.d84dd9bf.js";import{_ as P}from"./edit.vue_vue_type_script_setup_true_lang.d84dd9bf.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./department.4e17bcb6.js";import"./index.ed71ac09.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.b940d6e3.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./useDictOptions.8d37e54b.js";export{P as default}; diff --git a/public/admin/assets/edit.87ee49d6.js b/public/admin/assets/edit.87ee49d6.js new file mode 100644 index 000000000..b8dbaf731 --- /dev/null +++ b/public/admin/assets/edit.87ee49d6.js @@ -0,0 +1 @@ +import"./edit.vue_vue_type_script_setup_true_lang.164110e7.js";import{_ as O}from"./edit.vue_vue_type_script_setup_true_lang.164110e7.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./role.41d5883e.js";import"./index.aa9bb752.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.fa872673.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";export{O as default}; diff --git a/public/admin/assets/edit.87fc9eaf.js b/public/admin/assets/edit.87fc9eaf.js new file mode 100644 index 000000000..396cedb3d --- /dev/null +++ b/public/admin/assets/edit.87fc9eaf.js @@ -0,0 +1 @@ +import{_ as oe}from"./index.fd04a214.js";import{T as ne,x as de,a3 as me,y as se,I as re,B as pe,C as ie,O as _e,F as ce,M as Fe,N as be,P as fe,G as Ve,H as Be,w as Ee,D as ve}from"./element-plus.4328d892.js";import{_ as ye}from"./index.vue_vue_type_script_setup_true_lang.17266fa4.js";import{f as S,b as Ae}from"./index.37f7aea6.js";import{u as Ce,a as De}from"./vue-router.9f65afb1.js";import{t as ke,g as ge}from"./code.2b4ea8b1.js";import{a as we}from"./useDictOptions.a45fc8ac.js";import{a as Ue}from"./dict.58face92.js";import{m as he}from"./menu.90f89e87.js";import{_ as qe}from"./relations-add.vue_vue_type_script_setup_true_lang.2c698198.js";import{l as L}from"./lodash.08438971.js";import{d as K,r as j,$ as z,s as G,o as i,c as B,U as e,L as u,u as o,k as $e,a as d,T as v,a7 as A,K as E,R as c,Q as $,n as xe,t as H,w as Re}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./axios.105476b3.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.5759a1a6.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";const Te={class:"code-edit"},Ie={class:"w-80"},Ne={class:"w-80"},Pe={class:"w-80"},Oe={class:"w-80"},Se=d("div",{class:"form-tips"},"\u6307\u5B9A\u6811\u8868\u7684\u4E3B\u8981ID\uFF0C\u4E00\u822C\u4E3A\u4E3B\u952E",-1),Le=d("div",{class:"form-tips"},"\u6307\u5B9A\u6811\u8868\u7684\u7236ID\uFF0C\u6BD4\u5982\uFF1Aparent_id",-1),je={class:"w-80"},ze=d("div",{class:"form-tips"},[d("div",null," \u4F8B\uFF1A\u586B\u5199test,\u751F\u6210\u6587\u4EF6\u63CF\u8FF0\u4E3Atest\u63A7\u5236\u5668(test\u903B\u8F91/test\u6A21\u578B) ")],-1),Ge={class:"w-80"},He=d("div",{class:"form-tips"},"\u751F\u6210\u6587\u4EF6\u6240\u5728\u6A21\u5757",-1),Ke={class:"w-80"},Me=d("div",{class:"form-tips"},[d("div",null," \u4F8B\uFF1A\u586B\u5199test,\u5219\u5728app/\u6A21\u5757\u540D/controller/test\u4E0B\u751F\u6210\u63A7\u5236\u5668 ")],-1),Qe={class:"w-80"},We=d("div",{class:"form-tips"}," \u81EA\u52A8\u6784\u5EFA\uFF1A\u81EA\u52A8\u6267\u884C\u751F\u6210\u83DC\u5355sql\u3002\u624B\u52A8\u6DFB\u52A0\uFF1A\u81EA\u884C\u6DFB\u52A0\u83DC\u5355\u3002 ",-1),Je={class:"mt-4"},Xe=K({name:"tableEdit"}),jl=K({...Xe,setup(Ye){const M=Ce(),Q=De(),g=j("column"),w=j(!1),x=[{name:"\u4E00\u5BF9\u4E00",value:"has_one"},{name:"\u4E00\u5BF9\u591A",value:"has_many"}],t=z({id:"",table_name:"",table_comment:"",author:"",remark:"",template_type:0,generate_type:0,module_name:"",class_dir:"",class_comment:"",table_column:[],menu:{pid:0,name:"",type:0},tree:{tree_id:0,tree_pid:0,tree_name:0},delete:{name:"",type:0},relations:[]});let U=0;const R=G(),h=G(),T=z({table_name:[{required:!0,message:"\u8BF7\u8F93\u5165\u8868\u540D\u79F0"}],table_comment:[{required:!0,message:"\u8BF7\u8F93\u5165\u8868\u63CF\u8FF0"}],module_name:[{required:!0,message:"\u8BF7\u8F93\u5165\u6A21\u5757\u540D"}],generate_type:[{required:!0,trigger:"change"}],template_type:[{required:!0,trigger:"change"}],["menu.pid"]:[{required:!0,message:"\u8BF7\u9009\u62E9\u7236\u7EA7\u83DC\u5355"}],["menu.name"]:[{required:!0,message:"\u8BF7\u8F93\u5165\u83DC\u5355\u540D\u79F0"}],["delete.type"]:[{required:!0,trigger:"change"}],["delete.name"]:[{required:!0,message:"\u8BF7\u9009\u62E9\u5220\u9664\u5B57\u6BB5"}]}),I=async(p,a,f)=>{var F,_;w.value=!0,await xe(),a&&f!==void 0&&((F=h.value)==null||F.setFormData(a),U=f),(_=h.value)==null||_.open(p)},W=p=>{const a=L.exports.cloneDeep(H(p));t.relations.push(a)},J=async p=>{const a=L.exports.cloneDeep(H(p));console.log(U),t.relations.splice(U,1,a)},X=p=>{t.relations.splice(p,1)},Y=async()=>{const p=await ke({id:M.query.id});Object.keys(t).forEach(a=>{t[a]=p[a]}),Re(()=>t.generate_type,a=>{a==1&&S.confirm("\u751F\u6210\u5230\u6A21\u5757\u65B9\u5F0F\u5982\u9047\u540C\u540D\u6587\u4EF6\u4F1A\u8986\u76D6\u65E7\u6587\u4EF6\uFF0C\u786E\u5B9A\u8981\u9009\u62E9\u6B64\u65B9\u5F0F\u5417\uFF1F").catch(()=>{t.generate_type=0})})},{optionsData:N}=we({dict_type:{api:Ue},menu:{api:he,transformData(p){const a={id:0,name:"\u9876\u7EA7",children:[]};return a.children=p,[a]}}}),Z=async()=>{var p,a;try{await((p=R.value)==null?void 0:p.validate()),await ge(t),Q.back()}catch(f){for(const F in f)Object.keys(T).includes(F)&&S.msgError((a=f[F][0])==null?void 0:a.message)}};return Y(),(p,a)=>{const f=ne,F=re,_=pe,s=ie,C=de,r=_e,y=ce,m=Fe,V=be,P=fe,b=Ve,D=Be,ee=me,le=Ae,k=Ee,O=ye,ue=se,ae=ve,te=oe;return i(),B("div",Te,[e(F,{class:"!border-none",shadow:"never"},{default:u(()=>[e(f,{content:"\u7F16\u8F91\u6570\u636E\u8868",onBack:a[0]||(a[0]=l=>p.$router.back())})]),_:1}),e(F,{class:"mt-4 !border-none",shadow:"never"},{default:u(()=>[e(ae,{ref_key:"formRef",ref:R,class:"ls-form",model:o(t),"label-width":"100px",rules:o(T)},{default:u(()=>[e(ue,{modelValue:o(g),"onUpdate:modelValue":a[20]||(a[20]=l=>$e(g)?g.value=l:null)},{default:u(()=>[e(C,{label:"\u57FA\u7840\u4FE1\u606F",name:"base"},{default:u(()=>[e(s,{label:"\u8868\u540D\u79F0",prop:"table_name"},{default:u(()=>[d("div",Ie,[e(_,{modelValue:o(t).table_name,"onUpdate:modelValue":a[1]||(a[1]=l=>o(t).table_name=l),placeholder:"\u8BF7\u8F93\u5165\u8868\u540D\u79F0",clearable:""},null,8,["modelValue"])])]),_:1}),e(s,{label:"\u8868\u63CF\u8FF0",prop:"table_comment"},{default:u(()=>[d("div",Ne,[e(_,{modelValue:o(t).table_comment,"onUpdate:modelValue":a[2]||(a[2]=l=>o(t).table_comment=l),placeholder:"\u8BF7\u8F93\u5165\u8868\u63CF\u8FF0",clearable:""},null,8,["modelValue"])])]),_:1}),e(s,{label:"\u4F5C\u8005"},{default:u(()=>[d("div",Pe,[e(_,{modelValue:o(t).author,"onUpdate:modelValue":a[3]||(a[3]=l=>o(t).author=l),clearable:""},null,8,["modelValue"])])]),_:1}),e(s,{label:"\u5907\u6CE8"},{default:u(()=>[d("div",Oe,[e(_,{modelValue:o(t).remark,"onUpdate:modelValue":a[4]||(a[4]=l=>o(t).remark=l),class:"w-full",type:"textarea",autosize:{minRows:4,maxRows:4},maxlength:"200","show-word-limit":"",clearable:""},null,8,["modelValue"])])]),_:1})]),_:1}),e(C,{label:"\u5B57\u6BB5\u7BA1\u7406",name:"column"},{default:u(()=>[e(P,{data:o(t).table_column},{default:u(()=>[e(r,{label:"\u5B57\u6BB5\u5217\u540D",prop:"column_name"}),e(r,{label:"\u5B57\u6BB5\u63CF\u8FF0",prop:"column_comment","min-width":"120"},{default:u(({row:l})=>[e(_,{modelValue:l.column_comment,"onUpdate:modelValue":n=>l.column_comment=n,clearable:""},null,8,["modelValue","onUpdate:modelValue"])]),_:1}),e(r,{label:"\u7269\u7406\u7C7B\u578B",prop:"column_type"}),e(r,{label:"\u5FC5\u586B",width:"80"},{default:u(({row:l})=>[e(y,{modelValue:l.is_required,"onUpdate:modelValue":n=>l.is_required=n,"true-label":1,"false-label":0},null,8,["modelValue","onUpdate:modelValue"])]),_:1}),e(r,{label:"\u63D2\u5165",width:"80"},{default:u(({row:l})=>[e(y,{modelValue:l.is_insert,"onUpdate:modelValue":n=>l.is_insert=n,"true-label":1,"false-label":0},null,8,["modelValue","onUpdate:modelValue"])]),_:1}),e(r,{label:"\u7F16\u8F91",width:"80"},{default:u(({row:l})=>[e(y,{modelValue:l.is_update,"onUpdate:modelValue":n=>l.is_update=n,"true-label":1,"false-label":0},null,8,["modelValue","onUpdate:modelValue"])]),_:1}),e(r,{label:"\u5217\u8868",width:"80"},{default:u(({row:l})=>[e(y,{modelValue:l.is_lists,"onUpdate:modelValue":n=>l.is_lists=n,"true-label":1,"false-label":0},null,8,["modelValue","onUpdate:modelValue"])]),_:1}),e(r,{label:"\u67E5\u8BE2",width:"80"},{default:u(({row:l})=>[e(y,{modelValue:l.is_query,"onUpdate:modelValue":n=>l.is_query=n,"true-label":1,"false-label":0},null,8,["modelValue","onUpdate:modelValue"])]),_:1}),e(r,{label:"\u67E5\u8BE2\u65B9\u5F0F"},{default:u(({row:l})=>[e(V,{modelValue:l.query_type,"onUpdate:modelValue":n=>l.query_type=n},{default:u(()=>[e(m,{label:"=",value:"="}),e(m,{label:"!=",value:"!="}),e(m,{label:">",value:">"}),e(m,{label:">=",value:">="}),e(m,{label:"<",value:"<"}),e(m,{label:"<=",value:"<="}),e(m,{label:"LIKE",value:"like"}),e(m,{label:"BETWEEN",value:"between"})]),_:2},1032,["modelValue","onUpdate:modelValue"])]),_:1}),e(r,{label:"\u663E\u793A\u7C7B\u578B","min-width":"120"},{default:u(({row:l})=>[e(V,{modelValue:l.view_type,"onUpdate:modelValue":n=>l.view_type=n},{default:u(()=>[e(m,{label:"\u6587\u672C\u6846",value:"input"}),e(m,{label:"\u6587\u672C\u57DF",value:"textarea"}),e(m,{label:"\u4E0B\u62C9\u6846",value:"select"}),e(m,{label:"\u5355\u9009\u6846",value:"radio"}),e(m,{label:"\u590D\u9009\u6846",value:"checkbox"}),e(m,{label:"\u65E5\u671F\u63A7\u4EF6",value:"datetime"}),e(m,{label:"\u56FE\u7247\u9009\u62E9\u63A7\u4EF6",value:"imageSelect"}),e(m,{label:"\u5BCC\u6587\u672C\u63A7\u4EF6",value:"editor"})]),_:2},1032,["modelValue","onUpdate:modelValue"])]),_:1}),e(r,{label:"\u5B57\u5178\u7C7B\u578B","min-width":"120"},{default:u(({row:l})=>[e(V,{modelValue:l.dict_type,"onUpdate:modelValue":n=>l.dict_type=n,clearable:"",disabled:!(l.view_type=="select"||l.view_type=="radio"||l.view_type=="checkbox"),placeholder:"\u5B57\u5178\u7C7B\u578B"},{default:u(()=>[(i(!0),B(v,null,A(o(N).dict_type,(n,q)=>(i(),E(m,{key:q,label:n.name,value:n.type,disabled:!n.status},null,8,["label","value","disabled"]))),128))]),_:2},1032,["modelValue","onUpdate:modelValue","disabled"])]),_:1})]),_:1},8,["data"])]),_:1}),e(C,{label:"\u751F\u6210\u914D\u7F6E",name:"config"},{default:u(()=>[e(s,{label:"\u6A21\u677F\u7C7B\u578B",prop:"template_type"},{default:u(()=>[e(D,{modelValue:o(t).template_type,"onUpdate:modelValue":a[5]||(a[5]=l=>o(t).template_type=l)},{default:u(()=>[e(b,{label:0},{default:u(()=>[c("\u5355\u8868\uFF08curd\uFF09")]),_:1}),e(b,{label:1},{default:u(()=>[c("\u6811\u8868\uFF08curd\uFF09")]),_:1})]),_:1},8,["modelValue"])]),_:1}),e(s,{label:"\u5220\u9664\u7C7B\u578B",prop:"delete.type"},{default:u(()=>[e(D,{modelValue:o(t).delete.type,"onUpdate:modelValue":a[6]||(a[6]=l=>o(t).delete.type=l)},{default:u(()=>[e(b,{label:0},{default:u(()=>[c("\u7269\u7406\u5220\u9664")]),_:1}),e(b,{label:1},{default:u(()=>[c("\u8F6F\u5220\u9664")]),_:1})]),_:1},8,["modelValue"])]),_:1}),o(t).delete.type==1?(i(),E(s,{key:0,label:"\u5220\u9664\u5B57\u6BB5",prop:"delete.name"},{default:u(()=>[e(V,{class:"w-80",modelValue:o(t).delete.name,"onUpdate:modelValue":a[7]||(a[7]=l=>o(t).delete.name=l),clearable:""},{default:u(()=>[(i(!0),B(v,null,A(o(t).table_column,l=>(i(),E(m,{key:l.id,value:l.column_name,label:`${l.column_name}\uFF1A${l.column_comment}`},null,8,["value","label"]))),128))]),_:1},8,["modelValue"])]),_:1})):$("",!0),o(t).template_type==1?(i(),B(v,{key:1},[e(s,{label:"\u6811\u8868ID",prop:"treePrimary"},{default:u(()=>[d("div",null,[e(V,{class:"w-80",modelValue:o(t).tree.tree_id,"onUpdate:modelValue":a[8]||(a[8]=l=>o(t).tree.tree_id=l),clearable:""},{default:u(()=>[(i(!0),B(v,null,A(o(t).table_column,l=>(i(),E(m,{key:l.id,value:l.column_name,label:`${l.column_name}\uFF1A${l.column_comment}`},null,8,["value","label"]))),128))]),_:1},8,["modelValue"]),Se])]),_:1}),e(s,{label:"\u6811\u8868\u7236ID",prop:"treeParent"},{default:u(()=>[d("div",null,[e(V,{class:"w-80",modelValue:o(t).tree.tree_pid,"onUpdate:modelValue":a[9]||(a[9]=l=>o(t).tree.tree_pid=l),clearable:""},{default:u(()=>[(i(!0),B(v,null,A(o(t).table_column,l=>(i(),E(m,{key:l.id,value:l.column_name,label:`${l.column_name}\uFF1A${l.column_comment}`},null,8,["value","label"]))),128))]),_:1},8,["modelValue"]),Le])]),_:1}),e(s,{label:"\u6811\u540D\u79F0",prop:"treeName"},{default:u(()=>[e(V,{class:"w-80",modelValue:o(t).tree.tree_name,"onUpdate:modelValue":a[10]||(a[10]=l=>o(t).tree.tree_name=l),clearable:""},{default:u(()=>[(i(!0),B(v,null,A(o(t).table_column,l=>(i(),E(m,{key:l.id,value:l.column_name,label:`${l.column_name}\uFF1A${l.column_comment}`},null,8,["value","label"]))),128))]),_:1},8,["modelValue"])]),_:1})],64)):$("",!0),e(s,{label:"\u7C7B\u63CF\u8FF0"},{default:u(()=>[d("div",je,[d("div",null,[e(_,{modelValue:o(t).class_comment,"onUpdate:modelValue":a[11]||(a[11]=l=>o(t).class_comment=l),placeholder:"\u8BF7\u8F93\u5165\u6587\u4EF6\u63CF\u8FF0",clearable:""},null,8,["modelValue"])]),ze])]),_:1}),e(s,{label:"\u751F\u6210\u65B9\u5F0F",prop:"generate_type"},{default:u(()=>[e(D,{modelValue:o(t).generate_type,"onUpdate:modelValue":a[12]||(a[12]=l=>o(t).generate_type=l)},{default:u(()=>[e(b,{label:0},{default:u(()=>[c("\u538B\u7F29\u5305\u4E0B\u8F7D")]),_:1}),e(b,{label:1},{default:u(()=>[c("\u751F\u6210\u5230\u6A21\u5757")]),_:1})]),_:1},8,["modelValue"])]),_:1}),e(s,{label:"\u6A21\u5757\u540D",prop:"module_name"},{default:u(()=>[d("div",Ge,[e(_,{modelValue:o(t).module_name,"onUpdate:modelValue":a[13]||(a[13]=l=>o(t).module_name=l),placeholder:"\u8BF7\u8F93\u5165\u6A21\u5757\u540D",clearable:""},null,8,["modelValue"]),He])]),_:1}),e(s,{label:"\u7C7B\u76EE\u5F55"},{default:u(()=>[d("div",Ke,[d("div",null,[e(_,{modelValue:o(t).class_dir,"onUpdate:modelValue":a[14]||(a[14]=l=>o(t).class_dir=l),placeholder:"\u8BF7\u8F93\u5165\u6587\u4EF6\u6240\u5728\u76EE\u5F55",clearable:""},null,8,["modelValue"])]),Me])]),_:1}),e(s,{label:"\u7236\u7EA7\u83DC\u5355",prop:"menu.pid"},{default:u(()=>[e(ee,{class:"w-80",modelValue:o(t).menu.pid,"onUpdate:modelValue":a[15]||(a[15]=l=>o(t).menu.pid=l),data:o(N).menu,clearable:"","node-key":"id",props:{label:"name"},"default-expand-all":"",placeholder:"\u8BF7\u9009\u62E9\u7236\u7EA7\u83DC\u5355","check-strictly":""},null,8,["modelValue","data"])]),_:1}),e(s,{label:"\u83DC\u5355\u540D\u79F0",prop:"menu.name"},{default:u(()=>[d("div",Qe,[e(_,{modelValue:o(t).menu.name,"onUpdate:modelValue":a[16]||(a[16]=l=>o(t).menu.name=l),placeholder:"\u8BF7\u8F93\u5165\u83DC\u5355\u540D\u79F0",clearable:""},null,8,["modelValue"])])]),_:1}),e(s,{label:"\u83DC\u5355\u6784\u5EFA",prop:"menu.type",required:""},{default:u(()=>[d("div",null,[e(D,{modelValue:o(t).menu.type,"onUpdate:modelValue":a[17]||(a[17]=l=>o(t).menu.type=l)},{default:u(()=>[e(b,{label:1},{default:u(()=>[c("\u81EA\u52A8\u6784\u5EFA")]),_:1}),e(b,{label:0},{default:u(()=>[c("\u624B\u52A8\u6DFB\u52A0")]),_:1})]),_:1},8,["modelValue"]),We])]),_:1})]),_:1}),e(C,{label:"\u5173\u8054\u914D\u7F6E",name:"relations"},{default:u(()=>[e(k,{type:"primary",onClick:a[18]||(a[18]=l=>I("add"))},{icon:u(()=>[e(le,{name:"el-icon-Plus"})]),default:u(()=>[c(" \u65B0\u589E\u5173\u8054 ")]),_:1}),d("div",Je,[e(P,{data:o(t).relations,size:"mini"},{default:u(()=>[e(r,{prop:"type",label:"\u5173\u8054\u7C7B\u578B"},{default:u(({row:l})=>[e(O,{value:l.type,options:x},null,8,["value"])]),_:1}),e(r,{prop:"name",label:"\u5173\u8054\u540D\u79F0"}),e(r,{prop:"model",label:"\u5173\u8054\u6A21\u578B"}),e(r,{prop:"local_key",label:"\u5173\u8054\u952E"},{default:u(({row:l})=>[e(O,{value:l.local_key,options:o(t).table_column,config:{label:"column_comment",value:"column_name"}},null,8,["value","options"])]),_:1}),e(r,{prop:"foreign_key",label:"\u5916\u952E"}),e(r,{label:"\u64CD\u4F5C"},{default:u(({row:l,$index:n})=>[e(k,{link:"",type:"primary",onClick:q=>I("edit",l,n)},{default:u(()=>[c(" \u7F16\u8F91 ")]),_:2},1032,["onClick"]),e(k,{link:"",type:"danger",onClick:q=>X(n)},{default:u(()=>[c(" \u5220\u9664 ")]),_:2},1032,["onClick"])]),_:1})]),_:1},8,["data"]),o(w)?(i(),E(qe,{key:0,column:o(t).table_column,types:x,ref_key:"editRef",ref:h,onAdd:W,onEdit:J,onClose:a[19]||(a[19]=l=>w.value=!1)},null,8,["column"])):$("",!0)])]),_:1})]),_:1},8,["modelValue"])]),_:1},8,["model","rules"])]),_:1}),e(te,null,{default:u(()=>[e(k,{type:"primary",onClick:Z},{default:u(()=>[c("\u4FDD\u5B58")]),_:1})]),_:1})])}}});export{jl as default}; diff --git a/public/admin/assets/edit.880142e8.js b/public/admin/assets/edit.880142e8.js new file mode 100644 index 000000000..e04bdbf1a --- /dev/null +++ b/public/admin/assets/edit.880142e8.js @@ -0,0 +1 @@ +import"./edit.vue_vue_type_script_setup_true_lang.a6b599ae.js";import{_ as P}from"./edit.vue_vue_type_script_setup_true_lang.a6b599ae.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./picker.vue_vue_type_script_setup_true_lang.150460d1.js";import"./index.ed71ac09.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./menu.a3f35001.js";import"./index.b940d6e3.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";export{P as default}; diff --git a/public/admin/assets/edit.892b8718.js b/public/admin/assets/edit.892b8718.js new file mode 100644 index 000000000..29b8c26ec --- /dev/null +++ b/public/admin/assets/edit.892b8718.js @@ -0,0 +1 @@ +import"./edit.vue_vue_type_script_setup_true_lang.b594ce58.js";import{_ as O}from"./edit.vue_vue_type_script_setup_true_lang.b594ce58.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.5759a1a6.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.37f7aea6.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./dict.58face92.js";export{O as default}; diff --git a/public/admin/assets/edit.89f435ba.js b/public/admin/assets/edit.89f435ba.js new file mode 100644 index 000000000..97cb97a4c --- /dev/null +++ b/public/admin/assets/edit.89f435ba.js @@ -0,0 +1 @@ +import{_ as T}from"./index.be5645df.js";import{T as $,I,B as z,C as L,M as O,N as j,v as G,G as H,H as M,D as S,w as K}from"./element-plus.4328d892.js";import{_ as P}from"./index.vue_vue_type_style_index_0_lang.2f5b0088.js";import{_ as J}from"./picker.597494a6.js";import{u as Q,a as W}from"./vue-router.9f65afb1.js";import{a as X}from"./useDictOptions.8d37e54b.js";import{g as Y,h as Z,i as ee,j as te}from"./article.a2ac2e4b.js";import{e as oe}from"./index.ed71ac09.js";import{d as w,$ as b,s as le,o as d,c as V,U as e,L as u,u as a,a as r,T as ae,a7 as ue,K as re,R as p}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./@wangeditor.afd76521.js";import"./index.b940d6e3.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.c38e1dd6.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./index.f2c7f81b.js";import"./index.9c616a0c.js";import"./index.vue_vue_type_script_setup_true_lang.dc835bba.js";import"./usePaging.2ad8e1e6.js";import"./vue3-video-play.b911321b.js";import"./vuedraggable.0cb40d3a.js";import"./vue.5de34049.js";import"./sortablejs.ef73fc5c.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const ie={class:"article-edit"},se={class:"xl:flex"},ne={class:"w-80"},me={class:"w-80"},de={class:"w-80"},pe=r("div",{class:"form-tips"},"\u5EFA\u8BAE\u5C3A\u5BF8\uFF1A240*180px",-1),_e={class:"w-80"},ce=r("div",{class:"form-tips"},"\u9ED8\u8BA4\u4E3A0\uFF0C \u6570\u503C\u8D8A\u5927\u8D8A\u6392\u524D",-1),fe={class:"xl:ml-20"},Ee=w({name:"articleListsEdit"}),Et=w({...Ee,setup(be){const m=Q(),F=W(),t=b({id:"",title:"",image:"",cid:"",desc:"",author:"",content:"",click_virtual:0,sort:0,is_show:1,abstract:""}),{removeTab:v}=oe(),_=le(),B=b({title:[{required:!0,message:"\u8BF7\u8F93\u5165\u6587\u7AE0\u6807\u9898",trigger:"blur"}],cid:[{required:!0,message:"\u8BF7\u9009\u62E9\u6587\u7AE0\u680F\u76EE",trigger:"blur"}]}),g=async()=>{const s=await Y({id:m.query.id});Object.keys(t).forEach(o=>{t[o]=s[o]})},{optionsData:A}=X({article_cate:{api:Z}}),h=async()=>{var s;await((s=_.value)==null?void 0:s.validate()),m.query.id?await ee(t):await te(t),v(),F.back()};return m.query.id&&g(),(s,o)=>{const C=$,c=I,n=z,i=L,x=O,D=j,k=J,f=G,E=H,R=M,y=P,U=S,q=K,N=T;return d(),V("div",ie,[e(c,{class:"!border-none",shadow:"never"},{default:u(()=>[e(C,{content:s.$route.meta.title,onBack:o[0]||(o[0]=l=>s.$router.back())},null,8,["content"])]),_:1}),e(c,{class:"mt-4 !border-none",shadow:"never"},{default:u(()=>[e(U,{ref_key:"formRef",ref:_,class:"ls-form",model:a(t),"label-width":"85px",rules:a(B)},{default:u(()=>[r("div",se,[r("div",null,[e(i,{label:"\u6587\u7AE0\u6807\u9898",prop:"title"},{default:u(()=>[r("div",ne,[e(n,{modelValue:a(t).title,"onUpdate:modelValue":o[1]||(o[1]=l=>a(t).title=l),placeholder:"\u8BF7\u8F93\u5165\u6587\u7AE0\u6807\u9898",type:"textarea",autosize:{minRows:3,maxRows:3},maxlength:"64","show-word-limit":"",clearable:""},null,8,["modelValue"])])]),_:1}),e(i,{label:"\u6587\u7AE0\u680F\u76EE",prop:"cid"},{default:u(()=>[e(D,{class:"w-80",modelValue:a(t).cid,"onUpdate:modelValue":o[2]||(o[2]=l=>a(t).cid=l),placeholder:"\u8BF7\u9009\u62E9\u6587\u7AE0\u680F\u76EE",clearable:""},{default:u(()=>[(d(!0),V(ae,null,ue(a(A).article_cate,l=>(d(),re(x,{key:l.id,label:l.name,value:l.id},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1}),e(i,{label:"\u6587\u7AE0\u7B80\u4ECB",prop:"desc"},{default:u(()=>[r("div",me,[e(n,{modelValue:a(t).desc,"onUpdate:modelValue":o[3]||(o[3]=l=>a(t).desc=l),placeholder:"\u8BF7\u8F93\u5165\u6587\u7AE0\u7B80\u4ECB",type:"textarea",autosize:{minRows:3,maxRows:6},maxlength:200,"show-word-limit":"",clearable:""},null,8,["modelValue"])])]),_:1}),e(i,{label:"\u6458\u8981",prop:"abstract"},{default:u(()=>[r("div",de,[e(n,{type:"textarea",autosize:{minRows:6,maxRows:6},modelValue:a(t).abstract,"onUpdate:modelValue":o[4]||(o[4]=l=>a(t).abstract=l),maxlength:"200","show-word-limit":"",clearable:""},null,8,["modelValue"])])]),_:1}),e(i,{label:"\u6587\u7AE0\u5C01\u9762",prop:"image"},{default:u(()=>[r("div",null,[r("div",null,[e(k,{modelValue:a(t).image,"onUpdate:modelValue":o[5]||(o[5]=l=>a(t).image=l),limit:1},null,8,["modelValue"])]),pe])]),_:1}),e(i,{label:"\u4F5C\u8005",prop:"author"},{default:u(()=>[r("div",_e,[e(n,{modelValue:a(t).author,"onUpdate:modelValue":o[6]||(o[6]=l=>a(t).author=l),placeholder:"\u8BF7\u8F93\u5165\u4F5C\u8005\u540D\u79F0"},null,8,["modelValue"])])]),_:1}),e(i,{label:"\u6392\u5E8F",prop:"sort"},{default:u(()=>[r("div",null,[e(f,{modelValue:a(t).sort,"onUpdate:modelValue":o[7]||(o[7]=l=>a(t).sort=l),min:0,max:9999},null,8,["modelValue"]),ce])]),_:1}),e(i,{label:"\u521D\u59CB\u6D4F\u89C8\u91CF",prop:"click_virtual"},{default:u(()=>[r("div",null,[e(f,{modelValue:a(t).click_virtual,"onUpdate:modelValue":o[8]||(o[8]=l=>a(t).click_virtual=l),min:0},null,8,["modelValue"])])]),_:1}),e(i,{label:"\u6587\u7AE0\u72B6\u6001",required:"",prop:"is_show"},{default:u(()=>[e(R,{modelValue:a(t).is_show,"onUpdate:modelValue":o[9]||(o[9]=l=>a(t).is_show=l)},{default:u(()=>[e(E,{label:1},{default:u(()=>[p("\u663E\u793A")]),_:1}),e(E,{label:0},{default:u(()=>[p("\u9690\u85CF")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),r("div",fe,[e(i,{label:"\u6587\u7AE0\u5185\u5BB9",prop:"content"},{default:u(()=>[e(y,{modelValue:a(t).content,"onUpdate:modelValue":o[10]||(o[10]=l=>a(t).content=l),height:667,width:375},null,8,["modelValue"])]),_:1})])])]),_:1},8,["model","rules"])]),_:1}),e(N,null,{default:u(()=>[e(q,{type:"primary",onClick:h},{default:u(()=>[p("\u4FDD\u5B58")]),_:1})]),_:1})])}}});export{Et as default}; diff --git a/public/admin/assets/edit.8a764b8b.js b/public/admin/assets/edit.8a764b8b.js new file mode 100644 index 000000000..febd1ab90 --- /dev/null +++ b/public/admin/assets/edit.8a764b8b.js @@ -0,0 +1 @@ +import"./edit.vue_vue_type_script_setup_true_name_userRoleEdit_lang.4f344c50.js";import{_ as O}from"./edit.vue_vue_type_script_setup_true_name_userRoleEdit_lang.4f344c50.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.5759a1a6.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.37f7aea6.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./user_role.942482ea.js";export{O as default}; diff --git a/public/admin/assets/edit.8a7ffd04.js b/public/admin/assets/edit.8a7ffd04.js new file mode 100644 index 000000000..b686622c0 --- /dev/null +++ b/public/admin/assets/edit.8a7ffd04.js @@ -0,0 +1 @@ +import"./edit.vue_vue_type_script_setup_true_lang.076f3b55.js";import{_ as O}from"./edit.vue_vue_type_script_setup_true_lang.076f3b55.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./post.53815820.js";import"./index.ed71ac09.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.b940d6e3.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";export{O as default}; diff --git a/public/admin/assets/edit.916604cd.js b/public/admin/assets/edit.916604cd.js new file mode 100644 index 000000000..2b8cd41fb --- /dev/null +++ b/public/admin/assets/edit.916604cd.js @@ -0,0 +1 @@ +import{a3 as j,J as G,C as H,B as J,c as K,G as O,H as $,D as z}from"./element-plus.4328d892.js";import{P as Q}from"./index.5759a1a6.js";import{a as W,b as X,c as Y}from"./user_menu.a3635908.js";import"./lodash.08438971.js";import{a as Z,M as ee,d as ue}from"./index.37f7aea6.js";import{d as v,C as oe,s as D,r as _,e as le,$ as V,a4 as ae,o as F,c as B,U as l,L as a,u,K as te,R as n}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const re={class:"edit-popup"},se=["src"],de=v({name:"userMenuEdit"}),ie=v({...de,props:{dictData:{type:Object,default:()=>({})},menuList:{type:Array,default:()=>[]}},emits:["success","close"],setup(y,{expose:h,emit:f}){const U=y,w=Z(),x=oe("base_url"),E=D(),m=D(),c=_("add");_(!1);const A=r=>{o.icon=r.data.uri},b=_([{id:0,name:"\u9876\u7EA7",children:[]}]);(()=>{U.menuList.forEach(r=>{b.value[0].children.push(r)})})();const k=le(()=>c.value=="edit"?"\u7F16\u8F91\u7CFB\u7EDF\u83DC\u5355\u8868":"\u65B0\u589E\u7CFB\u7EDF\u83DC\u5355\u8868"),o=V({id:"",pid:"",type:ee.MENU,name:"",icon:"",sort:0,notes:"",paths:"",params:"",is_show:1,is_disable:0}),M=V({pid:[{required:!0,message:"\u8BF7\u8F93\u5165\u4E0A\u7EA7\u83DC\u5355",trigger:["blur"]}],type:[{required:!0,message:"\u8BF7\u8F93\u5165\u6743\u9650\u7C7B\u578B: M=\u76EE\u5F55\uFF0CC=\u83DC\u5355\uFF0CA=\u6309\u94AE",trigger:["blur"]}],name:[{required:!0,message:"\u8BF7\u8F93\u5165\u83DC\u5355\u540D\u79F0",trigger:["blur"]}],icon:[{required:!0,message:"\u8BF7\u8F93\u5165\u83DC\u5355\u56FE\u6807",trigger:["blur"]}],sort:[{required:!0,message:"\u8BF7\u8F93\u5165\u83DC\u5355\u6392\u5E8F",trigger:["blur"]}],paths:[{required:!0,message:"\u8BF7\u8F93\u5165\u8DEF\u7531\u5730\u5740",trigger:["blur"]}],params:[{required:!1,message:"\u8BF7\u8F93\u5165\u8DEF\u7531\u53C2\u6570",trigger:["blur"]}],is_show:[{required:!0,message:"\u8BF7\u8F93\u5165\u662F\u5426\u663E\u793A",trigger:["blur"]}],is_disable:[{required:!0,message:"\u8BF7\u8F93\u5165\u662F\u5426\u7981\u7528",trigger:["blur"]}]}),C=async r=>{for(const e in o)r[e]!=null&&r[e]!=null&&(o[e]=r[e])},q=async r=>{const e=await W({id:r.id});C(e)},R=async()=>{var e,i;await((e=E.value)==null?void 0:e.validate());const r={...o};c.value=="edit"?await X(r):await Y(r),(i=m.value)==null||i.close(),f("success")},I=(r="add")=>{var e;c.value=r,(e=m.value)==null||e.open()},P=()=>{f("close")};return h({open:I,setFormData:C,getDetail:q}),(r,e)=>{const i=j,s=H,d=J,L=ae("Plus"),S=K,T=G,p=O,g=$,N=z;return F(),B("div",re,[l(Q,{ref_key:"popupRef",ref:m,title:u(k),async:!0,width:"550px",onConfirm:R,onClose:P},{default:a(()=>[l(N,{ref_key:"formRef",ref:E,model:u(o),"label-width":"90px",rules:u(M)},{default:a(()=>[l(s,{label:"\u4E0A\u7EA7\u83DC\u5355",prop:"pid"},{default:a(()=>[l(i,{class:"flex-1",modelValue:u(o).pid,"onUpdate:modelValue":e[0]||(e[0]=t=>u(o).pid=t),data:u(b),clearable:"","node-key":"id",props:{label:"name"},"default-expand-all":!0,placeholder:"\u8BF7\u9009\u62E9\u7236\u7EA7\u83DC\u5355","check-strictly":""},null,8,["modelValue","data"])]),_:1}),l(s,{label:"\u83DC\u5355\u540D\u79F0",prop:"name"},{default:a(()=>[l(d,{modelValue:u(o).name,"onUpdate:modelValue":e[1]||(e[1]=t=>u(o).name=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u83DC\u5355\u540D\u79F0"},null,8,["modelValue"])]),_:1}),l(s,{label:"\u83DC\u5355\u56FE\u6807",prop:"icon"},{default:a(()=>[l(T,{class:"avatar-uploader",style:{border:"1px dashed var(--el-border-color)","border-radius":"6px",overflow:"hidden"},modelValue:u(o).icon,"onUpdate:modelValue":e[2]||(e[2]=t=>u(o).icon=t),headers:{Token:u(w).token},action:u(x)+"/upload/image","show-file-list":!1,data:{cid:1},"on-success":A},{default:a(()=>[u(o).icon?(F(),B("img",{key:0,src:u(o).icon,class:"avatar"},null,8,se)):(F(),te(S,{key:1,class:"avatar-uploader-icon"},{default:a(()=>[l(L)]),_:1}))]),_:1},8,["modelValue","headers","action"])]),_:1}),l(s,{label:"\u83DC\u5355\u5907\u6CE8",prop:"notes"},{default:a(()=>[l(d,{modelValue:u(o).notes,"onUpdate:modelValue":e[3]||(e[3]=t=>u(o).notes=t),clearable:"",maxlength:"20",placeholder:"\u8BF7\u8F93\u5165\u83DC\u5355\u5907\u6CE8(20\u5B57\u4EE5\u5185)"},null,8,["modelValue"])]),_:1}),l(s,{label:"\u83DC\u5355\u6392\u5E8F",prop:"sort"},{default:a(()=>[l(d,{modelValue:u(o).sort,"onUpdate:modelValue":e[4]||(e[4]=t=>u(o).sort=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u83DC\u5355\u6392\u5E8F",type:"number"},null,8,["modelValue"])]),_:1}),l(s,{label:"\u8DEF\u7531\u5730\u5740",prop:"paths"},{default:a(()=>[l(d,{modelValue:u(o).paths,"onUpdate:modelValue":e[5]||(e[5]=t=>u(o).paths=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u8DEF\u7531\u5730\u5740"},null,8,["modelValue"])]),_:1}),l(s,{label:"\u8DEF\u7531\u53C2\u6570",prop:"params"},{default:a(()=>[l(d,{modelValue:u(o).params,"onUpdate:modelValue":e[6]||(e[6]=t=>u(o).params=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u8DEF\u7531\u53C2\u6570"},null,8,["modelValue"])]),_:1}),l(s,{label:"\u662F\u5426\u663E\u793A:",prop:"is_show"},{default:a(()=>[l(g,{modelValue:u(o).is_show,"onUpdate:modelValue":e[7]||(e[7]=t=>u(o).is_show=t)},{default:a(()=>[l(p,{label:1},{default:a(()=>[n("\u663E\u793A")]),_:1}),l(p,{label:0},{default:a(()=>[n("\u9690\u85CF")]),_:1})]),_:1},8,["modelValue"])]),_:1}),l(s,{label:"\u662F\u5426\u7981\u7528:",prop:"is_disable"},{default:a(()=>[l(g,{modelValue:u(o).is_disable,"onUpdate:modelValue":e[8]||(e[8]=t=>u(o).is_disable=t)},{default:a(()=>[l(p,{label:0},{default:a(()=>[n("\u6B63\u5E38")]),_:1}),l(p,{label:1},{default:a(()=>[n("\u505C\u7528")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1},8,["model","rules"])]),_:1},8,["title"])])}}});const ze=ue(ie,[["__scopeId","data-v-7dcd1473"]]);export{ze as default}; diff --git a/public/admin/assets/edit.967f2896.js b/public/admin/assets/edit.967f2896.js new file mode 100644 index 000000000..1e9b523b6 --- /dev/null +++ b/public/admin/assets/edit.967f2896.js @@ -0,0 +1 @@ +import"./edit.vue_vue_type_script_setup_true_name_categoryBusinessEdit_lang.a5ab95cf.js";import{_ as N}from"./edit.vue_vue_type_script_setup_true_name_categoryBusinessEdit_lang.a5ab95cf.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.5759a1a6.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.37f7aea6.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";export{N as default}; diff --git a/public/admin/assets/edit.980b48ee.js b/public/admin/assets/edit.980b48ee.js new file mode 100644 index 000000000..c76855093 --- /dev/null +++ b/public/admin/assets/edit.980b48ee.js @@ -0,0 +1 @@ +import{_ as T}from"./index.fd04a214.js";import{T as $,I,B as z,C as L,M as O,N as j,v as G,G as H,H as M,D as S,w as K}from"./element-plus.4328d892.js";import{_ as P}from"./index.vue_vue_type_style_index_0_lang.60c96350.js";import{_ as J}from"./picker.3821e495.js";import{u as Q,a as W}from"./vue-router.9f65afb1.js";import{a as X}from"./useDictOptions.a45fc8ac.js";import{g as Y,h as Z,i as ee,j as te}from"./article.cb24b6c9.js";import{e as oe}from"./index.37f7aea6.js";import{d as w,$ as b,s as le,o as d,c as V,U as e,L as u,u as a,a as r,T as ae,a7 as ue,K as re,R as p}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./@wangeditor.afd76521.js";import"./index.5759a1a6.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.af446662.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./index.fe1d30dd.js";import"./index.5f944d34.js";import"./index.vue_vue_type_script_setup_true_lang.dc835bba.js";import"./usePaging.2ad8e1e6.js";import"./vue3-video-play.b911321b.js";import"./vuedraggable.0cb40d3a.js";import"./vue.5de34049.js";import"./sortablejs.ef73fc5c.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const ie={class:"article-edit"},se={class:"xl:flex"},ne={class:"w-80"},me={class:"w-80"},de={class:"w-80"},pe=r("div",{class:"form-tips"},"\u5EFA\u8BAE\u5C3A\u5BF8\uFF1A240*180px",-1),_e={class:"w-80"},ce=r("div",{class:"form-tips"},"\u9ED8\u8BA4\u4E3A0\uFF0C \u6570\u503C\u8D8A\u5927\u8D8A\u6392\u524D",-1),fe={class:"xl:ml-20"},Ee=w({name:"articleListsEdit"}),Et=w({...Ee,setup(be){const m=Q(),F=W(),t=b({id:"",title:"",image:"",cid:"",desc:"",author:"",content:"",click_virtual:0,sort:0,is_show:1,abstract:""}),{removeTab:v}=oe(),_=le(),B=b({title:[{required:!0,message:"\u8BF7\u8F93\u5165\u6587\u7AE0\u6807\u9898",trigger:"blur"}],cid:[{required:!0,message:"\u8BF7\u9009\u62E9\u6587\u7AE0\u680F\u76EE",trigger:"blur"}]}),g=async()=>{const s=await Y({id:m.query.id});Object.keys(t).forEach(o=>{t[o]=s[o]})},{optionsData:A}=X({article_cate:{api:Z}}),h=async()=>{var s;await((s=_.value)==null?void 0:s.validate()),m.query.id?await ee(t):await te(t),v(),F.back()};return m.query.id&&g(),(s,o)=>{const C=$,c=I,n=z,i=L,x=O,D=j,k=J,f=G,E=H,R=M,y=P,U=S,q=K,N=T;return d(),V("div",ie,[e(c,{class:"!border-none",shadow:"never"},{default:u(()=>[e(C,{content:s.$route.meta.title,onBack:o[0]||(o[0]=l=>s.$router.back())},null,8,["content"])]),_:1}),e(c,{class:"mt-4 !border-none",shadow:"never"},{default:u(()=>[e(U,{ref_key:"formRef",ref:_,class:"ls-form",model:a(t),"label-width":"85px",rules:a(B)},{default:u(()=>[r("div",se,[r("div",null,[e(i,{label:"\u6587\u7AE0\u6807\u9898",prop:"title"},{default:u(()=>[r("div",ne,[e(n,{modelValue:a(t).title,"onUpdate:modelValue":o[1]||(o[1]=l=>a(t).title=l),placeholder:"\u8BF7\u8F93\u5165\u6587\u7AE0\u6807\u9898",type:"textarea",autosize:{minRows:3,maxRows:3},maxlength:"64","show-word-limit":"",clearable:""},null,8,["modelValue"])])]),_:1}),e(i,{label:"\u6587\u7AE0\u680F\u76EE",prop:"cid"},{default:u(()=>[e(D,{class:"w-80",modelValue:a(t).cid,"onUpdate:modelValue":o[2]||(o[2]=l=>a(t).cid=l),placeholder:"\u8BF7\u9009\u62E9\u6587\u7AE0\u680F\u76EE",clearable:""},{default:u(()=>[(d(!0),V(ae,null,ue(a(A).article_cate,l=>(d(),re(x,{key:l.id,label:l.name,value:l.id},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1}),e(i,{label:"\u6587\u7AE0\u7B80\u4ECB",prop:"desc"},{default:u(()=>[r("div",me,[e(n,{modelValue:a(t).desc,"onUpdate:modelValue":o[3]||(o[3]=l=>a(t).desc=l),placeholder:"\u8BF7\u8F93\u5165\u6587\u7AE0\u7B80\u4ECB",type:"textarea",autosize:{minRows:3,maxRows:6},maxlength:200,"show-word-limit":"",clearable:""},null,8,["modelValue"])])]),_:1}),e(i,{label:"\u6458\u8981",prop:"abstract"},{default:u(()=>[r("div",de,[e(n,{type:"textarea",autosize:{minRows:6,maxRows:6},modelValue:a(t).abstract,"onUpdate:modelValue":o[4]||(o[4]=l=>a(t).abstract=l),maxlength:"200","show-word-limit":"",clearable:""},null,8,["modelValue"])])]),_:1}),e(i,{label:"\u6587\u7AE0\u5C01\u9762",prop:"image"},{default:u(()=>[r("div",null,[r("div",null,[e(k,{modelValue:a(t).image,"onUpdate:modelValue":o[5]||(o[5]=l=>a(t).image=l),limit:1},null,8,["modelValue"])]),pe])]),_:1}),e(i,{label:"\u4F5C\u8005",prop:"author"},{default:u(()=>[r("div",_e,[e(n,{modelValue:a(t).author,"onUpdate:modelValue":o[6]||(o[6]=l=>a(t).author=l),placeholder:"\u8BF7\u8F93\u5165\u4F5C\u8005\u540D\u79F0"},null,8,["modelValue"])])]),_:1}),e(i,{label:"\u6392\u5E8F",prop:"sort"},{default:u(()=>[r("div",null,[e(f,{modelValue:a(t).sort,"onUpdate:modelValue":o[7]||(o[7]=l=>a(t).sort=l),min:0,max:9999},null,8,["modelValue"]),ce])]),_:1}),e(i,{label:"\u521D\u59CB\u6D4F\u89C8\u91CF",prop:"click_virtual"},{default:u(()=>[r("div",null,[e(f,{modelValue:a(t).click_virtual,"onUpdate:modelValue":o[8]||(o[8]=l=>a(t).click_virtual=l),min:0},null,8,["modelValue"])])]),_:1}),e(i,{label:"\u6587\u7AE0\u72B6\u6001",required:"",prop:"is_show"},{default:u(()=>[e(R,{modelValue:a(t).is_show,"onUpdate:modelValue":o[9]||(o[9]=l=>a(t).is_show=l)},{default:u(()=>[e(E,{label:1},{default:u(()=>[p("\u663E\u793A")]),_:1}),e(E,{label:0},{default:u(()=>[p("\u9690\u85CF")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),r("div",fe,[e(i,{label:"\u6587\u7AE0\u5185\u5BB9",prop:"content"},{default:u(()=>[e(y,{modelValue:a(t).content,"onUpdate:modelValue":o[10]||(o[10]=l=>a(t).content=l),height:667,width:375},null,8,["modelValue"])]),_:1})])])]),_:1},8,["model","rules"])]),_:1}),e(N,null,{default:u(()=>[e(q,{type:"primary",onClick:h},{default:u(()=>[p("\u4FDD\u5B58")]),_:1})]),_:1})])}}});export{Et as default}; diff --git a/public/admin/assets/edit.98ea5d25.js b/public/admin/assets/edit.98ea5d25.js new file mode 100644 index 000000000..ba84837fe --- /dev/null +++ b/public/admin/assets/edit.98ea5d25.js @@ -0,0 +1 @@ +import{T as I,I as q,C as T,G as N,H as S,B as U,D as L,w as $,Q as G}from"./element-plus.4328d892.js";import{_ as H}from"./index.13ef78d6.js";import{u as M,a as j}from"./vue-router.9f65afb1.js";import{e as z,f as K}from"./index.aa9bb752.js";import{n as O,s as P}from"./message.39fcd3de.js";import{l as Q}from"./lodash.08438971.js";import{d as v,r as J,$ as W,s as X,o as m,c as p,U as e,L as t,M as Y,u as a,K as Z,R as r,S as c,a as l,T as ee,a7 as te}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./axios.105476b3.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const oe=l("div",{class:"font-medium mb-7"},"\u901A\u77E5\u540D\u79F0",-1),se=l("div",{class:"font-medium mb-7"},"\u77ED\u4FE1\u901A\u77E5",-1),ae={class:"w-80"},ne={class:"flex-1"},ue={class:"w-full max-w-[320px]"},ie={class:"form-tips"},re=v({name:"noticeEdit"}),Oe=v({...re,setup(le){const f=M(),B=j(),d=J(!1),o=W({id:"",scene_name:"",type:"",scene_desc:"",sms_notice:{status:0,template_id:"",content:"",tips:[]},oa_notice:{},mnp_notice:{},system_notice:{}}),g={"sms_notice.template_id":[{required:!0,message:"\u8BF7\u8F93\u5165\u6A21\u677FID",trigger:"blur"}],"sms_notice.content":[{required:!0,message:"\u8BF7\u8F93\u5165\u77ED\u4FE1\u5185\u5BB9",trigger:"blur"}]},{removeTab:D}=z(),E=X(),w=async()=>{d.value=!0;const u=await O({id:f.query.id});Object.keys(u).forEach(s=>{o[s]=u[s]}),d.value=!1},y=async()=>{var s;await((s=E.value)==null?void 0:s.validate());const u={id:o.id,template:Q.exports.pick(o,["sms_notice","oa_notice","mnp_notice","system_notice"])};await P(u),K.msgSuccess("\u64CD\u4F5C\u6210\u529F"),D(),B.back()};return f.query.id&&w(),(u,s)=>{const V=I,_=q,i=T,F=N,h=S,b=U,k=L,A=$,x=H,R=G;return m(),p("div",null,[e(_,{class:"!border-none",shadow:"never"},{default:t(()=>[e(V,{content:"\u7F16\u8F91\u901A\u77E5\u8BBE\u7F6E",onBack:s[0]||(s[0]=n=>u.$router.back())})]),_:1}),Y((m(),Z(k,{ref_key:"formRef",ref:E,model:a(o),"label-width":"120px",rules:g},{default:t(()=>[e(_,{class:"!border-none mt-4",shadow:"never"},{default:t(()=>[oe,e(i,{label:"\u901A\u77E5\u540D\u79F0"},{default:t(()=>[r(c(a(o).scene_name),1)]),_:1}),e(i,{label:"\u901A\u77E5\u7C7B\u578B"},{default:t(()=>[r(c(a(o).type),1)]),_:1}),e(i,{label:"\u901A\u77E5\u4E1A\u52A1"},{default:t(()=>[r(c(a(o).scene_desc),1)]),_:1})]),_:1}),e(_,{class:"!border-none mt-4",shadow:"never"},{default:t(()=>[se,e(i,{label:"\u5F00\u542F\u72B6\u6001",prop:"sms_notice.status",required:""},{default:t(()=>[e(h,{modelValue:a(o).sms_notice.status,"onUpdate:modelValue":s[1]||(s[1]=n=>a(o).sms_notice.status=n)},{default:t(()=>[e(F,{label:"0"},{default:t(()=>[r("\u5173\u95ED")]),_:1}),e(F,{label:"1"},{default:t(()=>[r("\u5F00\u542F")]),_:1})]),_:1},8,["modelValue"])]),_:1}),e(i,{label:"\u6A21\u677FID",prop:"sms_notice.template_id"},{default:t(()=>[l("div",ae,[e(b,{modelValue:a(o).sms_notice.template_id,"onUpdate:modelValue":s[2]||(s[2]=n=>a(o).sms_notice.template_id=n),placeholder:"\u8BF7\u8F93\u5165\u6A21\u677FID"},null,8,["modelValue"])])]),_:1}),e(i,{label:"\u77ED\u4FE1\u5185\u5BB9",prop:"sms_notice.content"},{default:t(()=>[l("div",ne,[l("div",ue,[e(b,{type:"textarea",autosize:{minRows:6,maxRows:6},modelValue:a(o).sms_notice.content,"onUpdate:modelValue":s[3]||(s[3]=n=>a(o).sms_notice.content=n)},null,8,["modelValue"])]),l("div",ie,[(m(!0),p(ee,null,te(a(o).sms_notice.tips,(n,C)=>(m(),p("div",{key:C},c(n),1))),128))])])]),_:1})]),_:1})]),_:1},8,["model"])),[[R,a(d)]]),e(x,null,{default:t(()=>[e(A,{type:"primary",onClick:y},{default:t(()=>[r("\u4FDD\u5B58")]),_:1})]),_:1})])}}});export{Oe as default}; diff --git a/public/admin/assets/edit.991839d7.js b/public/admin/assets/edit.991839d7.js new file mode 100644 index 000000000..6026105c6 --- /dev/null +++ b/public/admin/assets/edit.991839d7.js @@ -0,0 +1 @@ +import{B as k,C as U,D as q}from"./element-plus.4328d892.js";import{P as x}from"./index.b940d6e3.js";import{a as D,b as R,c as A}from"./contract.152e3bc2.js";import"./lodash.08438971.js";import{d as B,s as _,r as h,e as I,$ as f,o as F,c as P,K as j,L as p,U as u,u as a}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.ed71ac09.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const K={class:"edit-popup"},L=B({name:"contractEdit"}),Ee=B({...L,props:{dictData:{type:Object,default:()=>({})}},emits:["success","close"],setup(N,{expose:y,emit:s}){const d=_(),n=_(),i=h("add"),b=I(()=>i.value=="edit"?"\u7F16\u8F91\u5408\u540C":"\u65B0\u589E\u5408\u540C"),t=f({id:"",company_id:"",contract_type:"",contract_type_name:"",contract_no:"",file:"",status:"",party_a:"",party_a_name:"",party_b:"",party_b_name:"",area_manager:"",area_manager_name:""}),g=f({company_id:[{required:!0,message:"\u8BF7\u8F93\u5165\u516C\u53F8",trigger:["blur"]}],contract_type:[{required:!0,message:"\u8BF7\u8F93\u5165\u5408\u540C\u7C7B\u578B",trigger:["blur"]}],contract_no:[{required:!0,message:"\u8BF7\u8F93\u5165\u5408\u540C\u7F16\u53F7",trigger:["blur"]}],file:[{required:!0,message:"\u8BF7\u8F93\u5165\u6587\u4EF6",trigger:["blur"]}],party_a:[{required:!0,message:"\u8BF7\u8F93\u5165\u7532\u65B9",trigger:["blur"]}],party_b:[{required:!0,message:"\u8BF7\u8F93\u5165\u4E59\u65B9",trigger:["blur"]}]}),c=async o=>{for(const e in t)o[e]!=null&&o[e]!=null&&(t[e]=o[e])},C=async o=>{const e=await D({id:o.id});c(e)},V=async()=>{var e,l;await((e=d.value)==null?void 0:e.validate());const o={...t};i.value=="edit"?await R(o):await A(o),(l=n.value)==null||l.close(),s("success")},E=(o="add")=>{var e;i.value=o,(e=n.value)==null||e.open()},v=()=>{s("close")};return y({open:E,setFormData:c,getDetail:C}),(o,e)=>{const l=k,m=U,w=q;return F(),P("div",K,[(F(),j(x,{key:0,ref_key:"popupRef",ref:n,title:a(b),async:!0,width:"550px",onConfirm:V,onClose:v},{default:p(()=>[u(w,{ref_key:"formRef",ref:d,model:a(t),"label-width":"90px",rules:a(g)},{default:p(()=>[u(m,{label:"\u5408\u540C\u7C7B\u578B",prop:"contract_type_name"},{default:p(()=>[u(l,{modelValue:a(t).contract_type_name,"onUpdate:modelValue":e[0]||(e[0]=r=>a(t).contract_type_name=r),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u5408\u540C\u7C7B\u578B"},null,8,["modelValue"])]),_:1}),u(m,{label:"\u5408\u540C\u7F16\u53F7",prop:"contract_no"},{default:p(()=>[u(l,{modelValue:a(t).contract_no,"onUpdate:modelValue":e[1]||(e[1]=r=>a(t).contract_no=r),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u5408\u540C\u7F16\u53F7"},null,8,["modelValue"])]),_:1}),u(m,{label:"\u72B6\u6001",prop:"status"},{default:p(()=>[u(l,{modelValue:a(t).status,"onUpdate:modelValue":e[2]||(e[2]=r=>a(t).status=r),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u72B6\u6001"},null,8,["modelValue"])]),_:1}),u(m,{label:"\u7532\u65B9",prop:"party_a_name"},{default:p(()=>[u(l,{modelValue:a(t).party_a_name,"onUpdate:modelValue":e[3]||(e[3]=r=>a(t).party_a_name=r),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u7532\u65B9"},null,8,["modelValue"])]),_:1}),u(m,{label:"\u4E59\u65B9",prop:"party_b_name"},{default:p(()=>[u(l,{modelValue:a(t).party_b_name,"onUpdate:modelValue":e[4]||(e[4]=r=>a(t).party_b_name=r),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u4E59\u65B9"},null,8,["modelValue"])]),_:1}),u(m,{label:"\u7247\u533A\u7ECF\u7406",prop:"area_manager_name"},{default:p(()=>[u(l,{modelValue:a(t).area_manager_name,"onUpdate:modelValue":e[5]||(e[5]=r=>a(t).area_manager_name=r),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u7247\u533A\u7ECF\u7406"},null,8,["modelValue"])]),_:1})]),_:1},8,["model","rules"])]),_:1},8,["title"]))])}}});export{Ee as default}; diff --git a/public/admin/assets/edit.9a5a2a8b.js b/public/admin/assets/edit.9a5a2a8b.js new file mode 100644 index 000000000..18ab21e5b --- /dev/null +++ b/public/admin/assets/edit.9a5a2a8b.js @@ -0,0 +1 @@ +import"./edit.vue_vue_type_script_setup_true_name_companyFormEdit_lang.95b5864b.js";import{_ as N}from"./edit.vue_vue_type_script_setup_true_name_companyFormEdit_lang.95b5864b.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.fa872673.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.aa9bb752.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";export{N as default}; diff --git a/public/admin/assets/edit.9fd05882.js b/public/admin/assets/edit.9fd05882.js new file mode 100644 index 000000000..e3abf5cbc --- /dev/null +++ b/public/admin/assets/edit.9fd05882.js @@ -0,0 +1 @@ +import"./edit.vue_vue_type_script_setup_true_lang.1f57918e.js";import{_ as O}from"./edit.vue_vue_type_script_setup_true_lang.1f57918e.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.fa872673.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.aa9bb752.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./dict.927f1fc7.js";export{O as default}; diff --git a/public/admin/assets/edit.a4250648.js b/public/admin/assets/edit.a4250648.js new file mode 100644 index 000000000..aa443e9c2 --- /dev/null +++ b/public/admin/assets/edit.a4250648.js @@ -0,0 +1 @@ +import"./edit.vue_vue_type_script_setup_true_lang.7bb39860.js";import{_ as O}from"./edit.vue_vue_type_script_setup_true_lang.7bb39860.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./role.1c72c4c7.js";import"./index.ed71ac09.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.b940d6e3.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";export{O as default}; diff --git a/public/admin/assets/edit.a639f82c.js b/public/admin/assets/edit.a639f82c.js new file mode 100644 index 000000000..0aa4e961c --- /dev/null +++ b/public/admin/assets/edit.a639f82c.js @@ -0,0 +1 @@ +import"./edit.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.43063e2b.js";import{_ as T}from"./edit.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.43063e2b.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./vue-router.9f65afb1.js";import"./index.5759a1a6.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.37f7aea6.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./map.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.0177b6b6.js";import"./dialog_index_personnel.vue_vue_type_script_setup_true_name_companyLists_lang.7fc490f9.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./usePaging.2ad8e1e6.js";import"./role.8d2a6d5e.js";import"./useDictOptions.a45fc8ac.js";export{T as default}; diff --git a/public/admin/assets/edit.ad79be0f.js b/public/admin/assets/edit.ad79be0f.js new file mode 100644 index 000000000..af2a5f9d7 --- /dev/null +++ b/public/admin/assets/edit.ad79be0f.js @@ -0,0 +1 @@ +import{B as k,C as U,D as q}from"./element-plus.4328d892.js";import{P as x}from"./index.5759a1a6.js";import{a as D,b as R,c as A}from"./contract.e9a9dbc8.js";import"./lodash.08438971.js";import{d as B,s as _,r as h,e as I,$ as f,o as F,c as P,K as j,L as p,U as u,u as a}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.37f7aea6.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const K={class:"edit-popup"},L=B({name:"contractEdit"}),Ee=B({...L,props:{dictData:{type:Object,default:()=>({})}},emits:["success","close"],setup(N,{expose:y,emit:s}){const d=_(),n=_(),i=h("add"),b=I(()=>i.value=="edit"?"\u7F16\u8F91\u5408\u540C":"\u65B0\u589E\u5408\u540C"),t=f({id:"",company_id:"",contract_type:"",contract_type_name:"",contract_no:"",file:"",status:"",party_a:"",party_a_name:"",party_b:"",party_b_name:"",area_manager:"",area_manager_name:""}),g=f({company_id:[{required:!0,message:"\u8BF7\u8F93\u5165\u516C\u53F8",trigger:["blur"]}],contract_type:[{required:!0,message:"\u8BF7\u8F93\u5165\u5408\u540C\u7C7B\u578B",trigger:["blur"]}],contract_no:[{required:!0,message:"\u8BF7\u8F93\u5165\u5408\u540C\u7F16\u53F7",trigger:["blur"]}],file:[{required:!0,message:"\u8BF7\u8F93\u5165\u6587\u4EF6",trigger:["blur"]}],party_a:[{required:!0,message:"\u8BF7\u8F93\u5165\u7532\u65B9",trigger:["blur"]}],party_b:[{required:!0,message:"\u8BF7\u8F93\u5165\u4E59\u65B9",trigger:["blur"]}]}),c=async o=>{for(const e in t)o[e]!=null&&o[e]!=null&&(t[e]=o[e])},C=async o=>{const e=await D({id:o.id});c(e)},V=async()=>{var e,l;await((e=d.value)==null?void 0:e.validate());const o={...t};i.value=="edit"?await R(o):await A(o),(l=n.value)==null||l.close(),s("success")},E=(o="add")=>{var e;i.value=o,(e=n.value)==null||e.open()},v=()=>{s("close")};return y({open:E,setFormData:c,getDetail:C}),(o,e)=>{const l=k,m=U,w=q;return F(),P("div",K,[(F(),j(x,{key:0,ref_key:"popupRef",ref:n,title:a(b),async:!0,width:"550px",onConfirm:V,onClose:v},{default:p(()=>[u(w,{ref_key:"formRef",ref:d,model:a(t),"label-width":"90px",rules:a(g)},{default:p(()=>[u(m,{label:"\u5408\u540C\u7C7B\u578B",prop:"contract_type_name"},{default:p(()=>[u(l,{modelValue:a(t).contract_type_name,"onUpdate:modelValue":e[0]||(e[0]=r=>a(t).contract_type_name=r),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u5408\u540C\u7C7B\u578B"},null,8,["modelValue"])]),_:1}),u(m,{label:"\u5408\u540C\u7F16\u53F7",prop:"contract_no"},{default:p(()=>[u(l,{modelValue:a(t).contract_no,"onUpdate:modelValue":e[1]||(e[1]=r=>a(t).contract_no=r),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u5408\u540C\u7F16\u53F7"},null,8,["modelValue"])]),_:1}),u(m,{label:"\u72B6\u6001",prop:"status"},{default:p(()=>[u(l,{modelValue:a(t).status,"onUpdate:modelValue":e[2]||(e[2]=r=>a(t).status=r),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u72B6\u6001"},null,8,["modelValue"])]),_:1}),u(m,{label:"\u7532\u65B9",prop:"party_a_name"},{default:p(()=>[u(l,{modelValue:a(t).party_a_name,"onUpdate:modelValue":e[3]||(e[3]=r=>a(t).party_a_name=r),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u7532\u65B9"},null,8,["modelValue"])]),_:1}),u(m,{label:"\u4E59\u65B9",prop:"party_b_name"},{default:p(()=>[u(l,{modelValue:a(t).party_b_name,"onUpdate:modelValue":e[4]||(e[4]=r=>a(t).party_b_name=r),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u4E59\u65B9"},null,8,["modelValue"])]),_:1}),u(m,{label:"\u7247\u533A\u7ECF\u7406",prop:"area_manager_name"},{default:p(()=>[u(l,{modelValue:a(t).area_manager_name,"onUpdate:modelValue":e[5]||(e[5]=r=>a(t).area_manager_name=r),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u7247\u533A\u7ECF\u7406"},null,8,["modelValue"])]),_:1})]),_:1},8,["model","rules"])]),_:1},8,["title"]))])}}});export{Ee as default}; diff --git a/public/admin/assets/edit.afda18bd.js b/public/admin/assets/edit.afda18bd.js new file mode 100644 index 000000000..06ac80aff --- /dev/null +++ b/public/admin/assets/edit.afda18bd.js @@ -0,0 +1 @@ +import"./edit.vue_vue_type_script_setup_true_name_categoryBusinessEdit_lang.5b1401eb.js";import{_ as N}from"./edit.vue_vue_type_script_setup_true_name_categoryBusinessEdit_lang.5b1401eb.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.b940d6e3.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.ed71ac09.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";export{N as default}; diff --git a/public/admin/assets/edit.b35b03ab.js b/public/admin/assets/edit.b35b03ab.js new file mode 100644 index 000000000..2841809b2 --- /dev/null +++ b/public/admin/assets/edit.b35b03ab.js @@ -0,0 +1 @@ +import{a3 as j,J as G,C as H,B as J,c as K,G as O,H as $,D as z}from"./element-plus.4328d892.js";import{P as Q}from"./index.b940d6e3.js";import{a as W,b as X,c as Y}from"./user_menu.aabbc7a8.js";import"./lodash.08438971.js";import{a as Z,M as ee,d as ue}from"./index.ed71ac09.js";import{d as v,C as oe,s as D,r as _,e as le,$ as V,a4 as ae,o as F,c as B,U as l,L as a,u,K as te,R as n}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const re={class:"edit-popup"},se=["src"],de=v({name:"userMenuEdit"}),ie=v({...de,props:{dictData:{type:Object,default:()=>({})},menuList:{type:Array,default:()=>[]}},emits:["success","close"],setup(y,{expose:h,emit:f}){const U=y,w=Z(),x=oe("base_url"),E=D(),m=D(),c=_("add");_(!1);const A=r=>{o.icon=r.data.uri},b=_([{id:0,name:"\u9876\u7EA7",children:[]}]);(()=>{U.menuList.forEach(r=>{b.value[0].children.push(r)})})();const k=le(()=>c.value=="edit"?"\u7F16\u8F91\u7CFB\u7EDF\u83DC\u5355\u8868":"\u65B0\u589E\u7CFB\u7EDF\u83DC\u5355\u8868"),o=V({id:"",pid:"",type:ee.MENU,name:"",icon:"",sort:0,notes:"",paths:"",params:"",is_show:1,is_disable:0}),M=V({pid:[{required:!0,message:"\u8BF7\u8F93\u5165\u4E0A\u7EA7\u83DC\u5355",trigger:["blur"]}],type:[{required:!0,message:"\u8BF7\u8F93\u5165\u6743\u9650\u7C7B\u578B: M=\u76EE\u5F55\uFF0CC=\u83DC\u5355\uFF0CA=\u6309\u94AE",trigger:["blur"]}],name:[{required:!0,message:"\u8BF7\u8F93\u5165\u83DC\u5355\u540D\u79F0",trigger:["blur"]}],icon:[{required:!0,message:"\u8BF7\u8F93\u5165\u83DC\u5355\u56FE\u6807",trigger:["blur"]}],sort:[{required:!0,message:"\u8BF7\u8F93\u5165\u83DC\u5355\u6392\u5E8F",trigger:["blur"]}],paths:[{required:!0,message:"\u8BF7\u8F93\u5165\u8DEF\u7531\u5730\u5740",trigger:["blur"]}],params:[{required:!1,message:"\u8BF7\u8F93\u5165\u8DEF\u7531\u53C2\u6570",trigger:["blur"]}],is_show:[{required:!0,message:"\u8BF7\u8F93\u5165\u662F\u5426\u663E\u793A",trigger:["blur"]}],is_disable:[{required:!0,message:"\u8BF7\u8F93\u5165\u662F\u5426\u7981\u7528",trigger:["blur"]}]}),C=async r=>{for(const e in o)r[e]!=null&&r[e]!=null&&(o[e]=r[e])},q=async r=>{const e=await W({id:r.id});C(e)},R=async()=>{var e,i;await((e=E.value)==null?void 0:e.validate());const r={...o};c.value=="edit"?await X(r):await Y(r),(i=m.value)==null||i.close(),f("success")},I=(r="add")=>{var e;c.value=r,(e=m.value)==null||e.open()},P=()=>{f("close")};return h({open:I,setFormData:C,getDetail:q}),(r,e)=>{const i=j,s=H,d=J,L=ae("Plus"),S=K,T=G,p=O,g=$,N=z;return F(),B("div",re,[l(Q,{ref_key:"popupRef",ref:m,title:u(k),async:!0,width:"550px",onConfirm:R,onClose:P},{default:a(()=>[l(N,{ref_key:"formRef",ref:E,model:u(o),"label-width":"90px",rules:u(M)},{default:a(()=>[l(s,{label:"\u4E0A\u7EA7\u83DC\u5355",prop:"pid"},{default:a(()=>[l(i,{class:"flex-1",modelValue:u(o).pid,"onUpdate:modelValue":e[0]||(e[0]=t=>u(o).pid=t),data:u(b),clearable:"","node-key":"id",props:{label:"name"},"default-expand-all":!0,placeholder:"\u8BF7\u9009\u62E9\u7236\u7EA7\u83DC\u5355","check-strictly":""},null,8,["modelValue","data"])]),_:1}),l(s,{label:"\u83DC\u5355\u540D\u79F0",prop:"name"},{default:a(()=>[l(d,{modelValue:u(o).name,"onUpdate:modelValue":e[1]||(e[1]=t=>u(o).name=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u83DC\u5355\u540D\u79F0"},null,8,["modelValue"])]),_:1}),l(s,{label:"\u83DC\u5355\u56FE\u6807",prop:"icon"},{default:a(()=>[l(T,{class:"avatar-uploader",style:{border:"1px dashed var(--el-border-color)","border-radius":"6px",overflow:"hidden"},modelValue:u(o).icon,"onUpdate:modelValue":e[2]||(e[2]=t=>u(o).icon=t),headers:{Token:u(w).token},action:u(x)+"/upload/image","show-file-list":!1,data:{cid:1},"on-success":A},{default:a(()=>[u(o).icon?(F(),B("img",{key:0,src:u(o).icon,class:"avatar"},null,8,se)):(F(),te(S,{key:1,class:"avatar-uploader-icon"},{default:a(()=>[l(L)]),_:1}))]),_:1},8,["modelValue","headers","action"])]),_:1}),l(s,{label:"\u83DC\u5355\u5907\u6CE8",prop:"notes"},{default:a(()=>[l(d,{modelValue:u(o).notes,"onUpdate:modelValue":e[3]||(e[3]=t=>u(o).notes=t),clearable:"",maxlength:"20",placeholder:"\u8BF7\u8F93\u5165\u83DC\u5355\u5907\u6CE8(20\u5B57\u4EE5\u5185)"},null,8,["modelValue"])]),_:1}),l(s,{label:"\u83DC\u5355\u6392\u5E8F",prop:"sort"},{default:a(()=>[l(d,{modelValue:u(o).sort,"onUpdate:modelValue":e[4]||(e[4]=t=>u(o).sort=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u83DC\u5355\u6392\u5E8F",type:"number"},null,8,["modelValue"])]),_:1}),l(s,{label:"\u8DEF\u7531\u5730\u5740",prop:"paths"},{default:a(()=>[l(d,{modelValue:u(o).paths,"onUpdate:modelValue":e[5]||(e[5]=t=>u(o).paths=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u8DEF\u7531\u5730\u5740"},null,8,["modelValue"])]),_:1}),l(s,{label:"\u8DEF\u7531\u53C2\u6570",prop:"params"},{default:a(()=>[l(d,{modelValue:u(o).params,"onUpdate:modelValue":e[6]||(e[6]=t=>u(o).params=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u8DEF\u7531\u53C2\u6570"},null,8,["modelValue"])]),_:1}),l(s,{label:"\u662F\u5426\u663E\u793A:",prop:"is_show"},{default:a(()=>[l(g,{modelValue:u(o).is_show,"onUpdate:modelValue":e[7]||(e[7]=t=>u(o).is_show=t)},{default:a(()=>[l(p,{label:1},{default:a(()=>[n("\u663E\u793A")]),_:1}),l(p,{label:0},{default:a(()=>[n("\u9690\u85CF")]),_:1})]),_:1},8,["modelValue"])]),_:1}),l(s,{label:"\u662F\u5426\u7981\u7528:",prop:"is_disable"},{default:a(()=>[l(g,{modelValue:u(o).is_disable,"onUpdate:modelValue":e[8]||(e[8]=t=>u(o).is_disable=t)},{default:a(()=>[l(p,{label:0},{default:a(()=>[n("\u6B63\u5E38")]),_:1}),l(p,{label:1},{default:a(()=>[n("\u505C\u7528")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1},8,["model","rules"])]),_:1},8,["title"])])}}});const ze=ue(ie,[["__scopeId","data-v-7dcd1473"]]);export{ze as default}; diff --git a/public/admin/assets/edit.b417862c.js b/public/admin/assets/edit.b417862c.js new file mode 100644 index 000000000..b04d45a22 --- /dev/null +++ b/public/admin/assets/edit.b417862c.js @@ -0,0 +1 @@ +import"./edit.vue_vue_type_script_setup_true_name_companyComplaintFeedbackEdit_lang.e39d83b5.js";import{_ as N}from"./edit.vue_vue_type_script_setup_true_name_companyComplaintFeedbackEdit_lang.e39d83b5.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.5759a1a6.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.37f7aea6.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";export{N as default}; diff --git a/public/admin/assets/edit.bfa6c0af.js b/public/admin/assets/edit.bfa6c0af.js new file mode 100644 index 000000000..56659608e --- /dev/null +++ b/public/admin/assets/edit.bfa6c0af.js @@ -0,0 +1 @@ +import"./edit.vue_vue_type_script_setup_true_lang.51e254d4.js";import{_ as O}from"./edit.vue_vue_type_script_setup_true_lang.51e254d4.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./article.cb24b6c9.js";import"./index.37f7aea6.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.5759a1a6.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";export{O as default}; diff --git a/public/admin/assets/edit.bffa328a.js b/public/admin/assets/edit.bffa328a.js new file mode 100644 index 000000000..88d2dc003 --- /dev/null +++ b/public/admin/assets/edit.bffa328a.js @@ -0,0 +1 @@ +import"./edit.vue_vue_type_script_setup_true_lang.383f31fa.js";import{_ as O}from"./edit.vue_vue_type_script_setup_true_lang.383f31fa.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.5759a1a6.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.37f7aea6.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./dict.58face92.js";export{O as default}; diff --git a/public/admin/assets/edit.c4857980.js b/public/admin/assets/edit.c4857980.js new file mode 100644 index 000000000..26c1e3b6d --- /dev/null +++ b/public/admin/assets/edit.c4857980.js @@ -0,0 +1 @@ +import{_ as oe}from"./index.be5645df.js";import{T as ne,x as de,a3 as me,y as se,I as re,B as pe,C as ie,O as _e,F as ce,M as Fe,N as be,P as fe,G as Ve,H as Be,w as Ee,D as ve}from"./element-plus.4328d892.js";import{_ as ye}from"./index.vue_vue_type_script_setup_true_lang.17266fa4.js";import{f as S,b as Ae}from"./index.ed71ac09.js";import{u as Ce,a as De}from"./vue-router.9f65afb1.js";import{t as ke,g as ge}from"./code.7deeaac3.js";import{a as we}from"./useDictOptions.8d37e54b.js";import{a as Ue}from"./dict.6c560e38.js";import{m as he}from"./menu.a3f35001.js";import{_ as qe}from"./relations-add.vue_vue_type_script_setup_true_lang.6e9422b0.js";import{l as L}from"./lodash.08438971.js";import{d as K,r as j,$ as z,s as G,o as i,c as B,U as e,L as u,u as o,k as $e,a as d,T as v,a7 as A,K as E,R as c,Q as $,n as xe,t as H,w as Re}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./axios.105476b3.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.b940d6e3.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";const Te={class:"code-edit"},Ie={class:"w-80"},Ne={class:"w-80"},Pe={class:"w-80"},Oe={class:"w-80"},Se=d("div",{class:"form-tips"},"\u6307\u5B9A\u6811\u8868\u7684\u4E3B\u8981ID\uFF0C\u4E00\u822C\u4E3A\u4E3B\u952E",-1),Le=d("div",{class:"form-tips"},"\u6307\u5B9A\u6811\u8868\u7684\u7236ID\uFF0C\u6BD4\u5982\uFF1Aparent_id",-1),je={class:"w-80"},ze=d("div",{class:"form-tips"},[d("div",null," \u4F8B\uFF1A\u586B\u5199test,\u751F\u6210\u6587\u4EF6\u63CF\u8FF0\u4E3Atest\u63A7\u5236\u5668(test\u903B\u8F91/test\u6A21\u578B) ")],-1),Ge={class:"w-80"},He=d("div",{class:"form-tips"},"\u751F\u6210\u6587\u4EF6\u6240\u5728\u6A21\u5757",-1),Ke={class:"w-80"},Me=d("div",{class:"form-tips"},[d("div",null," \u4F8B\uFF1A\u586B\u5199test,\u5219\u5728app/\u6A21\u5757\u540D/controller/test\u4E0B\u751F\u6210\u63A7\u5236\u5668 ")],-1),Qe={class:"w-80"},We=d("div",{class:"form-tips"}," \u81EA\u52A8\u6784\u5EFA\uFF1A\u81EA\u52A8\u6267\u884C\u751F\u6210\u83DC\u5355sql\u3002\u624B\u52A8\u6DFB\u52A0\uFF1A\u81EA\u884C\u6DFB\u52A0\u83DC\u5355\u3002 ",-1),Je={class:"mt-4"},Xe=K({name:"tableEdit"}),jl=K({...Xe,setup(Ye){const M=Ce(),Q=De(),g=j("column"),w=j(!1),x=[{name:"\u4E00\u5BF9\u4E00",value:"has_one"},{name:"\u4E00\u5BF9\u591A",value:"has_many"}],t=z({id:"",table_name:"",table_comment:"",author:"",remark:"",template_type:0,generate_type:0,module_name:"",class_dir:"",class_comment:"",table_column:[],menu:{pid:0,name:"",type:0},tree:{tree_id:0,tree_pid:0,tree_name:0},delete:{name:"",type:0},relations:[]});let U=0;const R=G(),h=G(),T=z({table_name:[{required:!0,message:"\u8BF7\u8F93\u5165\u8868\u540D\u79F0"}],table_comment:[{required:!0,message:"\u8BF7\u8F93\u5165\u8868\u63CF\u8FF0"}],module_name:[{required:!0,message:"\u8BF7\u8F93\u5165\u6A21\u5757\u540D"}],generate_type:[{required:!0,trigger:"change"}],template_type:[{required:!0,trigger:"change"}],["menu.pid"]:[{required:!0,message:"\u8BF7\u9009\u62E9\u7236\u7EA7\u83DC\u5355"}],["menu.name"]:[{required:!0,message:"\u8BF7\u8F93\u5165\u83DC\u5355\u540D\u79F0"}],["delete.type"]:[{required:!0,trigger:"change"}],["delete.name"]:[{required:!0,message:"\u8BF7\u9009\u62E9\u5220\u9664\u5B57\u6BB5"}]}),I=async(p,a,f)=>{var F,_;w.value=!0,await xe(),a&&f!==void 0&&((F=h.value)==null||F.setFormData(a),U=f),(_=h.value)==null||_.open(p)},W=p=>{const a=L.exports.cloneDeep(H(p));t.relations.push(a)},J=async p=>{const a=L.exports.cloneDeep(H(p));console.log(U),t.relations.splice(U,1,a)},X=p=>{t.relations.splice(p,1)},Y=async()=>{const p=await ke({id:M.query.id});Object.keys(t).forEach(a=>{t[a]=p[a]}),Re(()=>t.generate_type,a=>{a==1&&S.confirm("\u751F\u6210\u5230\u6A21\u5757\u65B9\u5F0F\u5982\u9047\u540C\u540D\u6587\u4EF6\u4F1A\u8986\u76D6\u65E7\u6587\u4EF6\uFF0C\u786E\u5B9A\u8981\u9009\u62E9\u6B64\u65B9\u5F0F\u5417\uFF1F").catch(()=>{t.generate_type=0})})},{optionsData:N}=we({dict_type:{api:Ue},menu:{api:he,transformData(p){const a={id:0,name:"\u9876\u7EA7",children:[]};return a.children=p,[a]}}}),Z=async()=>{var p,a;try{await((p=R.value)==null?void 0:p.validate()),await ge(t),Q.back()}catch(f){for(const F in f)Object.keys(T).includes(F)&&S.msgError((a=f[F][0])==null?void 0:a.message)}};return Y(),(p,a)=>{const f=ne,F=re,_=pe,s=ie,C=de,r=_e,y=ce,m=Fe,V=be,P=fe,b=Ve,D=Be,ee=me,le=Ae,k=Ee,O=ye,ue=se,ae=ve,te=oe;return i(),B("div",Te,[e(F,{class:"!border-none",shadow:"never"},{default:u(()=>[e(f,{content:"\u7F16\u8F91\u6570\u636E\u8868",onBack:a[0]||(a[0]=l=>p.$router.back())})]),_:1}),e(F,{class:"mt-4 !border-none",shadow:"never"},{default:u(()=>[e(ae,{ref_key:"formRef",ref:R,class:"ls-form",model:o(t),"label-width":"100px",rules:o(T)},{default:u(()=>[e(ue,{modelValue:o(g),"onUpdate:modelValue":a[20]||(a[20]=l=>$e(g)?g.value=l:null)},{default:u(()=>[e(C,{label:"\u57FA\u7840\u4FE1\u606F",name:"base"},{default:u(()=>[e(s,{label:"\u8868\u540D\u79F0",prop:"table_name"},{default:u(()=>[d("div",Ie,[e(_,{modelValue:o(t).table_name,"onUpdate:modelValue":a[1]||(a[1]=l=>o(t).table_name=l),placeholder:"\u8BF7\u8F93\u5165\u8868\u540D\u79F0",clearable:""},null,8,["modelValue"])])]),_:1}),e(s,{label:"\u8868\u63CF\u8FF0",prop:"table_comment"},{default:u(()=>[d("div",Ne,[e(_,{modelValue:o(t).table_comment,"onUpdate:modelValue":a[2]||(a[2]=l=>o(t).table_comment=l),placeholder:"\u8BF7\u8F93\u5165\u8868\u63CF\u8FF0",clearable:""},null,8,["modelValue"])])]),_:1}),e(s,{label:"\u4F5C\u8005"},{default:u(()=>[d("div",Pe,[e(_,{modelValue:o(t).author,"onUpdate:modelValue":a[3]||(a[3]=l=>o(t).author=l),clearable:""},null,8,["modelValue"])])]),_:1}),e(s,{label:"\u5907\u6CE8"},{default:u(()=>[d("div",Oe,[e(_,{modelValue:o(t).remark,"onUpdate:modelValue":a[4]||(a[4]=l=>o(t).remark=l),class:"w-full",type:"textarea",autosize:{minRows:4,maxRows:4},maxlength:"200","show-word-limit":"",clearable:""},null,8,["modelValue"])])]),_:1})]),_:1}),e(C,{label:"\u5B57\u6BB5\u7BA1\u7406",name:"column"},{default:u(()=>[e(P,{data:o(t).table_column},{default:u(()=>[e(r,{label:"\u5B57\u6BB5\u5217\u540D",prop:"column_name"}),e(r,{label:"\u5B57\u6BB5\u63CF\u8FF0",prop:"column_comment","min-width":"120"},{default:u(({row:l})=>[e(_,{modelValue:l.column_comment,"onUpdate:modelValue":n=>l.column_comment=n,clearable:""},null,8,["modelValue","onUpdate:modelValue"])]),_:1}),e(r,{label:"\u7269\u7406\u7C7B\u578B",prop:"column_type"}),e(r,{label:"\u5FC5\u586B",width:"80"},{default:u(({row:l})=>[e(y,{modelValue:l.is_required,"onUpdate:modelValue":n=>l.is_required=n,"true-label":1,"false-label":0},null,8,["modelValue","onUpdate:modelValue"])]),_:1}),e(r,{label:"\u63D2\u5165",width:"80"},{default:u(({row:l})=>[e(y,{modelValue:l.is_insert,"onUpdate:modelValue":n=>l.is_insert=n,"true-label":1,"false-label":0},null,8,["modelValue","onUpdate:modelValue"])]),_:1}),e(r,{label:"\u7F16\u8F91",width:"80"},{default:u(({row:l})=>[e(y,{modelValue:l.is_update,"onUpdate:modelValue":n=>l.is_update=n,"true-label":1,"false-label":0},null,8,["modelValue","onUpdate:modelValue"])]),_:1}),e(r,{label:"\u5217\u8868",width:"80"},{default:u(({row:l})=>[e(y,{modelValue:l.is_lists,"onUpdate:modelValue":n=>l.is_lists=n,"true-label":1,"false-label":0},null,8,["modelValue","onUpdate:modelValue"])]),_:1}),e(r,{label:"\u67E5\u8BE2",width:"80"},{default:u(({row:l})=>[e(y,{modelValue:l.is_query,"onUpdate:modelValue":n=>l.is_query=n,"true-label":1,"false-label":0},null,8,["modelValue","onUpdate:modelValue"])]),_:1}),e(r,{label:"\u67E5\u8BE2\u65B9\u5F0F"},{default:u(({row:l})=>[e(V,{modelValue:l.query_type,"onUpdate:modelValue":n=>l.query_type=n},{default:u(()=>[e(m,{label:"=",value:"="}),e(m,{label:"!=",value:"!="}),e(m,{label:">",value:">"}),e(m,{label:">=",value:">="}),e(m,{label:"<",value:"<"}),e(m,{label:"<=",value:"<="}),e(m,{label:"LIKE",value:"like"}),e(m,{label:"BETWEEN",value:"between"})]),_:2},1032,["modelValue","onUpdate:modelValue"])]),_:1}),e(r,{label:"\u663E\u793A\u7C7B\u578B","min-width":"120"},{default:u(({row:l})=>[e(V,{modelValue:l.view_type,"onUpdate:modelValue":n=>l.view_type=n},{default:u(()=>[e(m,{label:"\u6587\u672C\u6846",value:"input"}),e(m,{label:"\u6587\u672C\u57DF",value:"textarea"}),e(m,{label:"\u4E0B\u62C9\u6846",value:"select"}),e(m,{label:"\u5355\u9009\u6846",value:"radio"}),e(m,{label:"\u590D\u9009\u6846",value:"checkbox"}),e(m,{label:"\u65E5\u671F\u63A7\u4EF6",value:"datetime"}),e(m,{label:"\u56FE\u7247\u9009\u62E9\u63A7\u4EF6",value:"imageSelect"}),e(m,{label:"\u5BCC\u6587\u672C\u63A7\u4EF6",value:"editor"})]),_:2},1032,["modelValue","onUpdate:modelValue"])]),_:1}),e(r,{label:"\u5B57\u5178\u7C7B\u578B","min-width":"120"},{default:u(({row:l})=>[e(V,{modelValue:l.dict_type,"onUpdate:modelValue":n=>l.dict_type=n,clearable:"",disabled:!(l.view_type=="select"||l.view_type=="radio"||l.view_type=="checkbox"),placeholder:"\u5B57\u5178\u7C7B\u578B"},{default:u(()=>[(i(!0),B(v,null,A(o(N).dict_type,(n,q)=>(i(),E(m,{key:q,label:n.name,value:n.type,disabled:!n.status},null,8,["label","value","disabled"]))),128))]),_:2},1032,["modelValue","onUpdate:modelValue","disabled"])]),_:1})]),_:1},8,["data"])]),_:1}),e(C,{label:"\u751F\u6210\u914D\u7F6E",name:"config"},{default:u(()=>[e(s,{label:"\u6A21\u677F\u7C7B\u578B",prop:"template_type"},{default:u(()=>[e(D,{modelValue:o(t).template_type,"onUpdate:modelValue":a[5]||(a[5]=l=>o(t).template_type=l)},{default:u(()=>[e(b,{label:0},{default:u(()=>[c("\u5355\u8868\uFF08curd\uFF09")]),_:1}),e(b,{label:1},{default:u(()=>[c("\u6811\u8868\uFF08curd\uFF09")]),_:1})]),_:1},8,["modelValue"])]),_:1}),e(s,{label:"\u5220\u9664\u7C7B\u578B",prop:"delete.type"},{default:u(()=>[e(D,{modelValue:o(t).delete.type,"onUpdate:modelValue":a[6]||(a[6]=l=>o(t).delete.type=l)},{default:u(()=>[e(b,{label:0},{default:u(()=>[c("\u7269\u7406\u5220\u9664")]),_:1}),e(b,{label:1},{default:u(()=>[c("\u8F6F\u5220\u9664")]),_:1})]),_:1},8,["modelValue"])]),_:1}),o(t).delete.type==1?(i(),E(s,{key:0,label:"\u5220\u9664\u5B57\u6BB5",prop:"delete.name"},{default:u(()=>[e(V,{class:"w-80",modelValue:o(t).delete.name,"onUpdate:modelValue":a[7]||(a[7]=l=>o(t).delete.name=l),clearable:""},{default:u(()=>[(i(!0),B(v,null,A(o(t).table_column,l=>(i(),E(m,{key:l.id,value:l.column_name,label:`${l.column_name}\uFF1A${l.column_comment}`},null,8,["value","label"]))),128))]),_:1},8,["modelValue"])]),_:1})):$("",!0),o(t).template_type==1?(i(),B(v,{key:1},[e(s,{label:"\u6811\u8868ID",prop:"treePrimary"},{default:u(()=>[d("div",null,[e(V,{class:"w-80",modelValue:o(t).tree.tree_id,"onUpdate:modelValue":a[8]||(a[8]=l=>o(t).tree.tree_id=l),clearable:""},{default:u(()=>[(i(!0),B(v,null,A(o(t).table_column,l=>(i(),E(m,{key:l.id,value:l.column_name,label:`${l.column_name}\uFF1A${l.column_comment}`},null,8,["value","label"]))),128))]),_:1},8,["modelValue"]),Se])]),_:1}),e(s,{label:"\u6811\u8868\u7236ID",prop:"treeParent"},{default:u(()=>[d("div",null,[e(V,{class:"w-80",modelValue:o(t).tree.tree_pid,"onUpdate:modelValue":a[9]||(a[9]=l=>o(t).tree.tree_pid=l),clearable:""},{default:u(()=>[(i(!0),B(v,null,A(o(t).table_column,l=>(i(),E(m,{key:l.id,value:l.column_name,label:`${l.column_name}\uFF1A${l.column_comment}`},null,8,["value","label"]))),128))]),_:1},8,["modelValue"]),Le])]),_:1}),e(s,{label:"\u6811\u540D\u79F0",prop:"treeName"},{default:u(()=>[e(V,{class:"w-80",modelValue:o(t).tree.tree_name,"onUpdate:modelValue":a[10]||(a[10]=l=>o(t).tree.tree_name=l),clearable:""},{default:u(()=>[(i(!0),B(v,null,A(o(t).table_column,l=>(i(),E(m,{key:l.id,value:l.column_name,label:`${l.column_name}\uFF1A${l.column_comment}`},null,8,["value","label"]))),128))]),_:1},8,["modelValue"])]),_:1})],64)):$("",!0),e(s,{label:"\u7C7B\u63CF\u8FF0"},{default:u(()=>[d("div",je,[d("div",null,[e(_,{modelValue:o(t).class_comment,"onUpdate:modelValue":a[11]||(a[11]=l=>o(t).class_comment=l),placeholder:"\u8BF7\u8F93\u5165\u6587\u4EF6\u63CF\u8FF0",clearable:""},null,8,["modelValue"])]),ze])]),_:1}),e(s,{label:"\u751F\u6210\u65B9\u5F0F",prop:"generate_type"},{default:u(()=>[e(D,{modelValue:o(t).generate_type,"onUpdate:modelValue":a[12]||(a[12]=l=>o(t).generate_type=l)},{default:u(()=>[e(b,{label:0},{default:u(()=>[c("\u538B\u7F29\u5305\u4E0B\u8F7D")]),_:1}),e(b,{label:1},{default:u(()=>[c("\u751F\u6210\u5230\u6A21\u5757")]),_:1})]),_:1},8,["modelValue"])]),_:1}),e(s,{label:"\u6A21\u5757\u540D",prop:"module_name"},{default:u(()=>[d("div",Ge,[e(_,{modelValue:o(t).module_name,"onUpdate:modelValue":a[13]||(a[13]=l=>o(t).module_name=l),placeholder:"\u8BF7\u8F93\u5165\u6A21\u5757\u540D",clearable:""},null,8,["modelValue"]),He])]),_:1}),e(s,{label:"\u7C7B\u76EE\u5F55"},{default:u(()=>[d("div",Ke,[d("div",null,[e(_,{modelValue:o(t).class_dir,"onUpdate:modelValue":a[14]||(a[14]=l=>o(t).class_dir=l),placeholder:"\u8BF7\u8F93\u5165\u6587\u4EF6\u6240\u5728\u76EE\u5F55",clearable:""},null,8,["modelValue"])]),Me])]),_:1}),e(s,{label:"\u7236\u7EA7\u83DC\u5355",prop:"menu.pid"},{default:u(()=>[e(ee,{class:"w-80",modelValue:o(t).menu.pid,"onUpdate:modelValue":a[15]||(a[15]=l=>o(t).menu.pid=l),data:o(N).menu,clearable:"","node-key":"id",props:{label:"name"},"default-expand-all":"",placeholder:"\u8BF7\u9009\u62E9\u7236\u7EA7\u83DC\u5355","check-strictly":""},null,8,["modelValue","data"])]),_:1}),e(s,{label:"\u83DC\u5355\u540D\u79F0",prop:"menu.name"},{default:u(()=>[d("div",Qe,[e(_,{modelValue:o(t).menu.name,"onUpdate:modelValue":a[16]||(a[16]=l=>o(t).menu.name=l),placeholder:"\u8BF7\u8F93\u5165\u83DC\u5355\u540D\u79F0",clearable:""},null,8,["modelValue"])])]),_:1}),e(s,{label:"\u83DC\u5355\u6784\u5EFA",prop:"menu.type",required:""},{default:u(()=>[d("div",null,[e(D,{modelValue:o(t).menu.type,"onUpdate:modelValue":a[17]||(a[17]=l=>o(t).menu.type=l)},{default:u(()=>[e(b,{label:1},{default:u(()=>[c("\u81EA\u52A8\u6784\u5EFA")]),_:1}),e(b,{label:0},{default:u(()=>[c("\u624B\u52A8\u6DFB\u52A0")]),_:1})]),_:1},8,["modelValue"]),We])]),_:1})]),_:1}),e(C,{label:"\u5173\u8054\u914D\u7F6E",name:"relations"},{default:u(()=>[e(k,{type:"primary",onClick:a[18]||(a[18]=l=>I("add"))},{icon:u(()=>[e(le,{name:"el-icon-Plus"})]),default:u(()=>[c(" \u65B0\u589E\u5173\u8054 ")]),_:1}),d("div",Je,[e(P,{data:o(t).relations,size:"mini"},{default:u(()=>[e(r,{prop:"type",label:"\u5173\u8054\u7C7B\u578B"},{default:u(({row:l})=>[e(O,{value:l.type,options:x},null,8,["value"])]),_:1}),e(r,{prop:"name",label:"\u5173\u8054\u540D\u79F0"}),e(r,{prop:"model",label:"\u5173\u8054\u6A21\u578B"}),e(r,{prop:"local_key",label:"\u5173\u8054\u952E"},{default:u(({row:l})=>[e(O,{value:l.local_key,options:o(t).table_column,config:{label:"column_comment",value:"column_name"}},null,8,["value","options"])]),_:1}),e(r,{prop:"foreign_key",label:"\u5916\u952E"}),e(r,{label:"\u64CD\u4F5C"},{default:u(({row:l,$index:n})=>[e(k,{link:"",type:"primary",onClick:q=>I("edit",l,n)},{default:u(()=>[c(" \u7F16\u8F91 ")]),_:2},1032,["onClick"]),e(k,{link:"",type:"danger",onClick:q=>X(n)},{default:u(()=>[c(" \u5220\u9664 ")]),_:2},1032,["onClick"])]),_:1})]),_:1},8,["data"]),o(w)?(i(),E(qe,{key:0,column:o(t).table_column,types:x,ref_key:"editRef",ref:h,onAdd:W,onEdit:J,onClose:a[19]||(a[19]=l=>w.value=!1)},null,8,["column"])):$("",!0)])]),_:1})]),_:1},8,["modelValue"])]),_:1},8,["model","rules"])]),_:1}),e(te,null,{default:u(()=>[e(k,{type:"primary",onClick:Z},{default:u(()=>[c("\u4FDD\u5B58")]),_:1})]),_:1})])}}});export{jl as default}; diff --git a/public/admin/assets/edit.c558c850.js b/public/admin/assets/edit.c558c850.js new file mode 100644 index 000000000..2050b25b2 --- /dev/null +++ b/public/admin/assets/edit.c558c850.js @@ -0,0 +1 @@ +import"./edit.vue_vue_type_script_setup_true_name_taskSchedulingEdit_lang.682619c9.js";import{_ as T}from"./edit.vue_vue_type_script_setup_true_name_taskSchedulingEdit_lang.682619c9.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.5759a1a6.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.37f7aea6.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./task_scheduling.7035f2c0.js";import"./dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.26cf5c3d.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./usePaging.2ad8e1e6.js";import"./company.d1e8fc82.js";import"./dict.58face92.js";export{T as default}; diff --git a/public/admin/assets/edit.c5be948e.js b/public/admin/assets/edit.c5be948e.js new file mode 100644 index 000000000..05d37b4d6 --- /dev/null +++ b/public/admin/assets/edit.c5be948e.js @@ -0,0 +1 @@ +import"./edit.vue_vue_type_script_setup_true_lang.84d0829e.js";import{_ as O}from"./edit.vue_vue_type_script_setup_true_lang.84d0829e.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./article.a2ac2e4b.js";import"./index.ed71ac09.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.b940d6e3.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";export{O as default}; diff --git a/public/admin/assets/edit.c60bff58.js b/public/admin/assets/edit.c60bff58.js new file mode 100644 index 000000000..8aec8f3ea --- /dev/null +++ b/public/admin/assets/edit.c60bff58.js @@ -0,0 +1 @@ +import"./edit.vue_vue_type_script_setup_true_lang.9c4c98df.js";import{_ as O}from"./edit.vue_vue_type_script_setup_true_lang.9c4c98df.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.b940d6e3.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.ed71ac09.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./dict.6c560e38.js";export{O as default}; diff --git a/public/admin/assets/edit.ce797638.js b/public/admin/assets/edit.ce797638.js new file mode 100644 index 000000000..69b2f30af --- /dev/null +++ b/public/admin/assets/edit.ce797638.js @@ -0,0 +1 @@ +import"./edit.vue_vue_type_script_setup_true_name_companyFormEdit_lang.1520b33c.js";import{_ as N}from"./edit.vue_vue_type_script_setup_true_name_companyFormEdit_lang.1520b33c.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.b940d6e3.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.ed71ac09.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";export{N as default}; diff --git a/public/admin/assets/edit.cfbdb998.js b/public/admin/assets/edit.cfbdb998.js new file mode 100644 index 000000000..5163f45af --- /dev/null +++ b/public/admin/assets/edit.cfbdb998.js @@ -0,0 +1 @@ +import"./edit.vue_vue_type_script_setup_true_name_taskSchedulingEdit_lang.a231bd22.js";import{_ as T}from"./edit.vue_vue_type_script_setup_true_name_taskSchedulingEdit_lang.a231bd22.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.fa872673.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.aa9bb752.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./task_scheduling.46c64d43.js";import"./dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.6b149d5f.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./usePaging.2ad8e1e6.js";import"./company.b7ec1bf9.js";import"./dict.927f1fc7.js";export{T as default}; diff --git a/public/admin/assets/edit.d51518af.js b/public/admin/assets/edit.d51518af.js new file mode 100644 index 000000000..59f9aad61 --- /dev/null +++ b/public/admin/assets/edit.d51518af.js @@ -0,0 +1 @@ +import"./edit.vue_vue_type_script_setup_true_name_appUpdateEdit_lang.76e851a1.js";import{_ as N}from"./edit.vue_vue_type_script_setup_true_name_appUpdateEdit_lang.76e851a1.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.fa872673.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.aa9bb752.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";export{N as default}; diff --git a/public/admin/assets/edit.d970da7b.js b/public/admin/assets/edit.d970da7b.js new file mode 100644 index 000000000..c0ca85681 --- /dev/null +++ b/public/admin/assets/edit.d970da7b.js @@ -0,0 +1 @@ +import{T as I,I as q,C as T,G as N,H as S,B as U,D as L,w as $,Q as G}from"./element-plus.4328d892.js";import{_ as H}from"./index.fd04a214.js";import{u as M,a as j}from"./vue-router.9f65afb1.js";import{e as z,f as K}from"./index.37f7aea6.js";import{n as O,s as P}from"./message.8c449686.js";import{l as Q}from"./lodash.08438971.js";import{d as v,r as J,$ as W,s as X,o as m,c as p,U as e,L as t,M as Y,u as a,K as Z,R as r,S as c,a as l,T as ee,a7 as te}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./axios.105476b3.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const oe=l("div",{class:"font-medium mb-7"},"\u901A\u77E5\u540D\u79F0",-1),se=l("div",{class:"font-medium mb-7"},"\u77ED\u4FE1\u901A\u77E5",-1),ae={class:"w-80"},ne={class:"flex-1"},ue={class:"w-full max-w-[320px]"},ie={class:"form-tips"},re=v({name:"noticeEdit"}),Oe=v({...re,setup(le){const f=M(),B=j(),d=J(!1),o=W({id:"",scene_name:"",type:"",scene_desc:"",sms_notice:{status:0,template_id:"",content:"",tips:[]},oa_notice:{},mnp_notice:{},system_notice:{}}),g={"sms_notice.template_id":[{required:!0,message:"\u8BF7\u8F93\u5165\u6A21\u677FID",trigger:"blur"}],"sms_notice.content":[{required:!0,message:"\u8BF7\u8F93\u5165\u77ED\u4FE1\u5185\u5BB9",trigger:"blur"}]},{removeTab:D}=z(),E=X(),w=async()=>{d.value=!0;const u=await O({id:f.query.id});Object.keys(u).forEach(s=>{o[s]=u[s]}),d.value=!1},y=async()=>{var s;await((s=E.value)==null?void 0:s.validate());const u={id:o.id,template:Q.exports.pick(o,["sms_notice","oa_notice","mnp_notice","system_notice"])};await P(u),K.msgSuccess("\u64CD\u4F5C\u6210\u529F"),D(),B.back()};return f.query.id&&w(),(u,s)=>{const V=I,_=q,i=T,F=N,h=S,b=U,k=L,A=$,x=H,R=G;return m(),p("div",null,[e(_,{class:"!border-none",shadow:"never"},{default:t(()=>[e(V,{content:"\u7F16\u8F91\u901A\u77E5\u8BBE\u7F6E",onBack:s[0]||(s[0]=n=>u.$router.back())})]),_:1}),Y((m(),Z(k,{ref_key:"formRef",ref:E,model:a(o),"label-width":"120px",rules:g},{default:t(()=>[e(_,{class:"!border-none mt-4",shadow:"never"},{default:t(()=>[oe,e(i,{label:"\u901A\u77E5\u540D\u79F0"},{default:t(()=>[r(c(a(o).scene_name),1)]),_:1}),e(i,{label:"\u901A\u77E5\u7C7B\u578B"},{default:t(()=>[r(c(a(o).type),1)]),_:1}),e(i,{label:"\u901A\u77E5\u4E1A\u52A1"},{default:t(()=>[r(c(a(o).scene_desc),1)]),_:1})]),_:1}),e(_,{class:"!border-none mt-4",shadow:"never"},{default:t(()=>[se,e(i,{label:"\u5F00\u542F\u72B6\u6001",prop:"sms_notice.status",required:""},{default:t(()=>[e(h,{modelValue:a(o).sms_notice.status,"onUpdate:modelValue":s[1]||(s[1]=n=>a(o).sms_notice.status=n)},{default:t(()=>[e(F,{label:"0"},{default:t(()=>[r("\u5173\u95ED")]),_:1}),e(F,{label:"1"},{default:t(()=>[r("\u5F00\u542F")]),_:1})]),_:1},8,["modelValue"])]),_:1}),e(i,{label:"\u6A21\u677FID",prop:"sms_notice.template_id"},{default:t(()=>[l("div",ae,[e(b,{modelValue:a(o).sms_notice.template_id,"onUpdate:modelValue":s[2]||(s[2]=n=>a(o).sms_notice.template_id=n),placeholder:"\u8BF7\u8F93\u5165\u6A21\u677FID"},null,8,["modelValue"])])]),_:1}),e(i,{label:"\u77ED\u4FE1\u5185\u5BB9",prop:"sms_notice.content"},{default:t(()=>[l("div",ne,[l("div",ue,[e(b,{type:"textarea",autosize:{minRows:6,maxRows:6},modelValue:a(o).sms_notice.content,"onUpdate:modelValue":s[3]||(s[3]=n=>a(o).sms_notice.content=n)},null,8,["modelValue"])]),l("div",ie,[(m(!0),p(ee,null,te(a(o).sms_notice.tips,(n,C)=>(m(),p("div",{key:C},c(n),1))),128))])])]),_:1})]),_:1})]),_:1},8,["model"])),[[R,a(d)]]),e(x,null,{default:t(()=>[e(A,{type:"primary",onClick:y},{default:t(()=>[r("\u4FDD\u5B58")]),_:1})]),_:1})])}}});export{Oe as default}; diff --git a/public/admin/assets/edit.da73b172.js b/public/admin/assets/edit.da73b172.js new file mode 100644 index 000000000..001f3d00e --- /dev/null +++ b/public/admin/assets/edit.da73b172.js @@ -0,0 +1 @@ +import{a3 as j,J as G,C as H,B as J,c as K,G as O,H as $,D as z}from"./element-plus.4328d892.js";import{P as Q}from"./index.fa872673.js";import{a as W,b as X,c as Y}from"./user_menu.121458b5.js";import"./lodash.08438971.js";import{a as Z,M as ee,d as ue}from"./index.aa9bb752.js";import{d as v,C as oe,s as D,r as _,e as le,$ as V,a4 as ae,o as F,c as B,U as l,L as a,u,K as te,R as n}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const re={class:"edit-popup"},se=["src"],de=v({name:"userMenuEdit"}),ie=v({...de,props:{dictData:{type:Object,default:()=>({})},menuList:{type:Array,default:()=>[]}},emits:["success","close"],setup(y,{expose:h,emit:f}){const U=y,w=Z(),x=oe("base_url"),E=D(),m=D(),c=_("add");_(!1);const A=r=>{o.icon=r.data.uri},b=_([{id:0,name:"\u9876\u7EA7",children:[]}]);(()=>{U.menuList.forEach(r=>{b.value[0].children.push(r)})})();const k=le(()=>c.value=="edit"?"\u7F16\u8F91\u7CFB\u7EDF\u83DC\u5355\u8868":"\u65B0\u589E\u7CFB\u7EDF\u83DC\u5355\u8868"),o=V({id:"",pid:"",type:ee.MENU,name:"",icon:"",sort:0,notes:"",paths:"",params:"",is_show:1,is_disable:0}),M=V({pid:[{required:!0,message:"\u8BF7\u8F93\u5165\u4E0A\u7EA7\u83DC\u5355",trigger:["blur"]}],type:[{required:!0,message:"\u8BF7\u8F93\u5165\u6743\u9650\u7C7B\u578B: M=\u76EE\u5F55\uFF0CC=\u83DC\u5355\uFF0CA=\u6309\u94AE",trigger:["blur"]}],name:[{required:!0,message:"\u8BF7\u8F93\u5165\u83DC\u5355\u540D\u79F0",trigger:["blur"]}],icon:[{required:!0,message:"\u8BF7\u8F93\u5165\u83DC\u5355\u56FE\u6807",trigger:["blur"]}],sort:[{required:!0,message:"\u8BF7\u8F93\u5165\u83DC\u5355\u6392\u5E8F",trigger:["blur"]}],paths:[{required:!0,message:"\u8BF7\u8F93\u5165\u8DEF\u7531\u5730\u5740",trigger:["blur"]}],params:[{required:!1,message:"\u8BF7\u8F93\u5165\u8DEF\u7531\u53C2\u6570",trigger:["blur"]}],is_show:[{required:!0,message:"\u8BF7\u8F93\u5165\u662F\u5426\u663E\u793A",trigger:["blur"]}],is_disable:[{required:!0,message:"\u8BF7\u8F93\u5165\u662F\u5426\u7981\u7528",trigger:["blur"]}]}),C=async r=>{for(const e in o)r[e]!=null&&r[e]!=null&&(o[e]=r[e])},q=async r=>{const e=await W({id:r.id});C(e)},R=async()=>{var e,i;await((e=E.value)==null?void 0:e.validate());const r={...o};c.value=="edit"?await X(r):await Y(r),(i=m.value)==null||i.close(),f("success")},I=(r="add")=>{var e;c.value=r,(e=m.value)==null||e.open()},P=()=>{f("close")};return h({open:I,setFormData:C,getDetail:q}),(r,e)=>{const i=j,s=H,d=J,L=ae("Plus"),S=K,T=G,p=O,g=$,N=z;return F(),B("div",re,[l(Q,{ref_key:"popupRef",ref:m,title:u(k),async:!0,width:"550px",onConfirm:R,onClose:P},{default:a(()=>[l(N,{ref_key:"formRef",ref:E,model:u(o),"label-width":"90px",rules:u(M)},{default:a(()=>[l(s,{label:"\u4E0A\u7EA7\u83DC\u5355",prop:"pid"},{default:a(()=>[l(i,{class:"flex-1",modelValue:u(o).pid,"onUpdate:modelValue":e[0]||(e[0]=t=>u(o).pid=t),data:u(b),clearable:"","node-key":"id",props:{label:"name"},"default-expand-all":!0,placeholder:"\u8BF7\u9009\u62E9\u7236\u7EA7\u83DC\u5355","check-strictly":""},null,8,["modelValue","data"])]),_:1}),l(s,{label:"\u83DC\u5355\u540D\u79F0",prop:"name"},{default:a(()=>[l(d,{modelValue:u(o).name,"onUpdate:modelValue":e[1]||(e[1]=t=>u(o).name=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u83DC\u5355\u540D\u79F0"},null,8,["modelValue"])]),_:1}),l(s,{label:"\u83DC\u5355\u56FE\u6807",prop:"icon"},{default:a(()=>[l(T,{class:"avatar-uploader",style:{border:"1px dashed var(--el-border-color)","border-radius":"6px",overflow:"hidden"},modelValue:u(o).icon,"onUpdate:modelValue":e[2]||(e[2]=t=>u(o).icon=t),headers:{Token:u(w).token},action:u(x)+"/upload/image","show-file-list":!1,data:{cid:1},"on-success":A},{default:a(()=>[u(o).icon?(F(),B("img",{key:0,src:u(o).icon,class:"avatar"},null,8,se)):(F(),te(S,{key:1,class:"avatar-uploader-icon"},{default:a(()=>[l(L)]),_:1}))]),_:1},8,["modelValue","headers","action"])]),_:1}),l(s,{label:"\u83DC\u5355\u5907\u6CE8",prop:"notes"},{default:a(()=>[l(d,{modelValue:u(o).notes,"onUpdate:modelValue":e[3]||(e[3]=t=>u(o).notes=t),clearable:"",maxlength:"20",placeholder:"\u8BF7\u8F93\u5165\u83DC\u5355\u5907\u6CE8(20\u5B57\u4EE5\u5185)"},null,8,["modelValue"])]),_:1}),l(s,{label:"\u83DC\u5355\u6392\u5E8F",prop:"sort"},{default:a(()=>[l(d,{modelValue:u(o).sort,"onUpdate:modelValue":e[4]||(e[4]=t=>u(o).sort=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u83DC\u5355\u6392\u5E8F",type:"number"},null,8,["modelValue"])]),_:1}),l(s,{label:"\u8DEF\u7531\u5730\u5740",prop:"paths"},{default:a(()=>[l(d,{modelValue:u(o).paths,"onUpdate:modelValue":e[5]||(e[5]=t=>u(o).paths=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u8DEF\u7531\u5730\u5740"},null,8,["modelValue"])]),_:1}),l(s,{label:"\u8DEF\u7531\u53C2\u6570",prop:"params"},{default:a(()=>[l(d,{modelValue:u(o).params,"onUpdate:modelValue":e[6]||(e[6]=t=>u(o).params=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u8DEF\u7531\u53C2\u6570"},null,8,["modelValue"])]),_:1}),l(s,{label:"\u662F\u5426\u663E\u793A:",prop:"is_show"},{default:a(()=>[l(g,{modelValue:u(o).is_show,"onUpdate:modelValue":e[7]||(e[7]=t=>u(o).is_show=t)},{default:a(()=>[l(p,{label:1},{default:a(()=>[n("\u663E\u793A")]),_:1}),l(p,{label:0},{default:a(()=>[n("\u9690\u85CF")]),_:1})]),_:1},8,["modelValue"])]),_:1}),l(s,{label:"\u662F\u5426\u7981\u7528:",prop:"is_disable"},{default:a(()=>[l(g,{modelValue:u(o).is_disable,"onUpdate:modelValue":e[8]||(e[8]=t=>u(o).is_disable=t)},{default:a(()=>[l(p,{label:0},{default:a(()=>[n("\u6B63\u5E38")]),_:1}),l(p,{label:1},{default:a(()=>[n("\u505C\u7528")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1},8,["model","rules"])]),_:1},8,["title"])])}}});const ze=ue(ie,[["__scopeId","data-v-7dcd1473"]]);export{ze as default}; diff --git a/public/admin/assets/edit.db6a43dd.js b/public/admin/assets/edit.db6a43dd.js new file mode 100644 index 000000000..c4372704b --- /dev/null +++ b/public/admin/assets/edit.db6a43dd.js @@ -0,0 +1 @@ +import"./edit.vue_vue_type_script_setup_true_name_taskSchedulingEdit_lang.98340b3b.js";import{_ as T}from"./edit.vue_vue_type_script_setup_true_name_taskSchedulingEdit_lang.98340b3b.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.b940d6e3.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.ed71ac09.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./task_scheduling.1b21dca9.js";import"./dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.bd8cad2b.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./usePaging.2ad8e1e6.js";import"./company.8a1c349a.js";import"./dict.6c560e38.js";export{T as default}; diff --git a/public/admin/assets/edit.dfdf108c.js b/public/admin/assets/edit.dfdf108c.js new file mode 100644 index 000000000..f8e4874b4 --- /dev/null +++ b/public/admin/assets/edit.dfdf108c.js @@ -0,0 +1 @@ +import"./edit.vue_vue_type_script_setup_true_lang.f38e2d62.js";import{_ as N}from"./edit.vue_vue_type_script_setup_true_lang.f38e2d62.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.37f7aea6.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.5759a1a6.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";export{N as default}; diff --git a/public/admin/assets/edit.dfe55c39.js b/public/admin/assets/edit.dfe55c39.js new file mode 100644 index 000000000..3ec74dcc5 --- /dev/null +++ b/public/admin/assets/edit.dfe55c39.js @@ -0,0 +1 @@ +import"./edit.vue_vue_type_script_setup_true_name_userRoleEdit_lang.4568c7f1.js";import{_ as O}from"./edit.vue_vue_type_script_setup_true_name_userRoleEdit_lang.4568c7f1.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.fa872673.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.aa9bb752.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./user_role.cb302517.js";export{O as default}; diff --git a/public/admin/assets/edit.e0346ce5.js b/public/admin/assets/edit.e0346ce5.js new file mode 100644 index 000000000..2a62e1031 --- /dev/null +++ b/public/admin/assets/edit.e0346ce5.js @@ -0,0 +1 @@ +import"./edit.vue_vue_type_script_setup_true_name_shopContractEdit_lang.d9f639bc.js";import{_ as O}from"./edit.vue_vue_type_script_setup_true_name_shopContractEdit_lang.d9f639bc.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.fa872673.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.aa9bb752.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./shop_contract.f4761eae.js";export{O as default}; diff --git a/public/admin/assets/edit.e466218a.js b/public/admin/assets/edit.e466218a.js new file mode 100644 index 000000000..518690a45 --- /dev/null +++ b/public/admin/assets/edit.e466218a.js @@ -0,0 +1 @@ +import"./edit.vue_vue_type_script_setup_true_name_withdrawEdit_lang.724a3d0c.js";import{_ as O}from"./edit.vue_vue_type_script_setup_true_name_withdrawEdit_lang.724a3d0c.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.fa872673.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.aa9bb752.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./withdraw.32706b7e.js";export{O as default}; diff --git a/public/admin/assets/edit.e670769e.js b/public/admin/assets/edit.e670769e.js new file mode 100644 index 000000000..52915258c --- /dev/null +++ b/public/admin/assets/edit.e670769e.js @@ -0,0 +1 @@ +import"./edit.vue_vue_type_script_setup_true_name_withdrawEdit_lang.ea9e65cf.js";import{_ as O}from"./edit.vue_vue_type_script_setup_true_name_withdrawEdit_lang.ea9e65cf.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.5759a1a6.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.37f7aea6.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./withdraw.35c20484.js";export{O as default}; diff --git a/public/admin/assets/edit.e96ad089.js b/public/admin/assets/edit.e96ad089.js new file mode 100644 index 000000000..dd92c23d8 --- /dev/null +++ b/public/admin/assets/edit.e96ad089.js @@ -0,0 +1 @@ +import"./edit.vue_vue_type_script_setup_true_lang.caf54865.js";import{_ as O}from"./edit.vue_vue_type_script_setup_true_lang.caf54865.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./wx_oa.dfa7359b.js";import"./index.aa9bb752.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.fa872673.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";export{O as default}; diff --git a/public/admin/assets/edit.ea528434.js b/public/admin/assets/edit.ea528434.js new file mode 100644 index 000000000..90fb3cba9 --- /dev/null +++ b/public/admin/assets/edit.ea528434.js @@ -0,0 +1 @@ +import"./edit.vue_vue_type_script_setup_true_lang.07156ced.js";import{_ as P}from"./edit.vue_vue_type_script_setup_true_lang.07156ced.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./picker.vue_vue_type_script_setup_true_lang.8519155b.js";import"./index.37f7aea6.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./menu.90f89e87.js";import"./index.5759a1a6.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";export{P as default}; diff --git a/public/admin/assets/edit.efabc4d7.js b/public/admin/assets/edit.efabc4d7.js new file mode 100644 index 000000000..31bb7ccba --- /dev/null +++ b/public/admin/assets/edit.efabc4d7.js @@ -0,0 +1 @@ +import"./edit.vue_vue_type_script_setup_true_name_categoryBusinessEdit_lang.0f542952.js";import{_ as N}from"./edit.vue_vue_type_script_setup_true_name_categoryBusinessEdit_lang.0f542952.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.fa872673.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.aa9bb752.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";export{N as default}; diff --git a/public/admin/assets/edit.f2402a7f.js b/public/admin/assets/edit.f2402a7f.js new file mode 100644 index 000000000..8e817be42 --- /dev/null +++ b/public/admin/assets/edit.f2402a7f.js @@ -0,0 +1 @@ +import"./edit.vue_vue_type_script_setup_true_name_shopMerchantEdit_lang.605ed377.js";import{_ as N}from"./edit.vue_vue_type_script_setup_true_name_shopMerchantEdit_lang.605ed377.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.b940d6e3.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.ed71ac09.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";export{N as default}; diff --git a/public/admin/assets/edit.f2439296.js b/public/admin/assets/edit.f2439296.js new file mode 100644 index 000000000..d9681e087 --- /dev/null +++ b/public/admin/assets/edit.f2439296.js @@ -0,0 +1 @@ +import"./edit.vue_vue_type_script_setup_true_name_shopContractEdit_lang.84a1c3a4.js";import{_ as O}from"./edit.vue_vue_type_script_setup_true_name_shopContractEdit_lang.84a1c3a4.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.b940d6e3.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.ed71ac09.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./shop_contract.c24a8510.js";export{O as default}; diff --git a/public/admin/assets/edit.f27cbc21.js b/public/admin/assets/edit.f27cbc21.js new file mode 100644 index 000000000..89d681311 --- /dev/null +++ b/public/admin/assets/edit.f27cbc21.js @@ -0,0 +1 @@ +import"./edit.vue_vue_type_script_setup_true_name_shopMerchantEdit_lang.73c4b5a4.js";import{_ as N}from"./edit.vue_vue_type_script_setup_true_name_shopMerchantEdit_lang.73c4b5a4.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.fa872673.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.aa9bb752.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";export{N as default}; diff --git a/public/admin/assets/edit.f5d755ab.js b/public/admin/assets/edit.f5d755ab.js new file mode 100644 index 000000000..a27394fac --- /dev/null +++ b/public/admin/assets/edit.f5d755ab.js @@ -0,0 +1 @@ +import{B as k,C as U,D as q}from"./element-plus.4328d892.js";import{P as x}from"./index.fa872673.js";import{a as D,b as R,c as A}from"./contract.35ae5168.js";import"./lodash.08438971.js";import{d as B,s as _,r as h,e as I,$ as f,o as F,c as P,K as j,L as p,U as u,u as a}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.aa9bb752.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const K={class:"edit-popup"},L=B({name:"contractEdit"}),Ee=B({...L,props:{dictData:{type:Object,default:()=>({})}},emits:["success","close"],setup(N,{expose:y,emit:s}){const d=_(),n=_(),i=h("add"),b=I(()=>i.value=="edit"?"\u7F16\u8F91\u5408\u540C":"\u65B0\u589E\u5408\u540C"),t=f({id:"",company_id:"",contract_type:"",contract_type_name:"",contract_no:"",file:"",status:"",party_a:"",party_a_name:"",party_b:"",party_b_name:"",area_manager:"",area_manager_name:""}),g=f({company_id:[{required:!0,message:"\u8BF7\u8F93\u5165\u516C\u53F8",trigger:["blur"]}],contract_type:[{required:!0,message:"\u8BF7\u8F93\u5165\u5408\u540C\u7C7B\u578B",trigger:["blur"]}],contract_no:[{required:!0,message:"\u8BF7\u8F93\u5165\u5408\u540C\u7F16\u53F7",trigger:["blur"]}],file:[{required:!0,message:"\u8BF7\u8F93\u5165\u6587\u4EF6",trigger:["blur"]}],party_a:[{required:!0,message:"\u8BF7\u8F93\u5165\u7532\u65B9",trigger:["blur"]}],party_b:[{required:!0,message:"\u8BF7\u8F93\u5165\u4E59\u65B9",trigger:["blur"]}]}),c=async o=>{for(const e in t)o[e]!=null&&o[e]!=null&&(t[e]=o[e])},C=async o=>{const e=await D({id:o.id});c(e)},V=async()=>{var e,l;await((e=d.value)==null?void 0:e.validate());const o={...t};i.value=="edit"?await R(o):await A(o),(l=n.value)==null||l.close(),s("success")},E=(o="add")=>{var e;i.value=o,(e=n.value)==null||e.open()},v=()=>{s("close")};return y({open:E,setFormData:c,getDetail:C}),(o,e)=>{const l=k,m=U,w=q;return F(),P("div",K,[(F(),j(x,{key:0,ref_key:"popupRef",ref:n,title:a(b),async:!0,width:"550px",onConfirm:V,onClose:v},{default:p(()=>[u(w,{ref_key:"formRef",ref:d,model:a(t),"label-width":"90px",rules:a(g)},{default:p(()=>[u(m,{label:"\u5408\u540C\u7C7B\u578B",prop:"contract_type_name"},{default:p(()=>[u(l,{modelValue:a(t).contract_type_name,"onUpdate:modelValue":e[0]||(e[0]=r=>a(t).contract_type_name=r),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u5408\u540C\u7C7B\u578B"},null,8,["modelValue"])]),_:1}),u(m,{label:"\u5408\u540C\u7F16\u53F7",prop:"contract_no"},{default:p(()=>[u(l,{modelValue:a(t).contract_no,"onUpdate:modelValue":e[1]||(e[1]=r=>a(t).contract_no=r),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u5408\u540C\u7F16\u53F7"},null,8,["modelValue"])]),_:1}),u(m,{label:"\u72B6\u6001",prop:"status"},{default:p(()=>[u(l,{modelValue:a(t).status,"onUpdate:modelValue":e[2]||(e[2]=r=>a(t).status=r),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u72B6\u6001"},null,8,["modelValue"])]),_:1}),u(m,{label:"\u7532\u65B9",prop:"party_a_name"},{default:p(()=>[u(l,{modelValue:a(t).party_a_name,"onUpdate:modelValue":e[3]||(e[3]=r=>a(t).party_a_name=r),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u7532\u65B9"},null,8,["modelValue"])]),_:1}),u(m,{label:"\u4E59\u65B9",prop:"party_b_name"},{default:p(()=>[u(l,{modelValue:a(t).party_b_name,"onUpdate:modelValue":e[4]||(e[4]=r=>a(t).party_b_name=r),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u4E59\u65B9"},null,8,["modelValue"])]),_:1}),u(m,{label:"\u7247\u533A\u7ECF\u7406",prop:"area_manager_name"},{default:p(()=>[u(l,{modelValue:a(t).area_manager_name,"onUpdate:modelValue":e[5]||(e[5]=r=>a(t).area_manager_name=r),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u7247\u533A\u7ECF\u7406"},null,8,["modelValue"])]),_:1})]),_:1},8,["model","rules"])]),_:1},8,["title"]))])}}});export{Ee as default}; diff --git a/public/admin/assets/edit.f8b935d7.js b/public/admin/assets/edit.f8b935d7.js new file mode 100644 index 000000000..8387ad791 --- /dev/null +++ b/public/admin/assets/edit.f8b935d7.js @@ -0,0 +1 @@ +import"./edit.vue_vue_type_script_setup_true_lang.2571bf25.js";import{_ as O}from"./edit.vue_vue_type_script_setup_true_lang.2571bf25.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./post.5d32b419.js";import"./index.aa9bb752.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.fa872673.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";export{O as default}; diff --git a/public/admin/assets/edit.f91652f9.js b/public/admin/assets/edit.f91652f9.js new file mode 100644 index 000000000..1f2265d78 --- /dev/null +++ b/public/admin/assets/edit.f91652f9.js @@ -0,0 +1 @@ +import"./edit.vue_vue_type_script_setup_true_lang.b7d103f8.js";import{_ as P}from"./edit.vue_vue_type_script_setup_true_lang.b7d103f8.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./department.5076f65d.js";import"./index.aa9bb752.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.fa872673.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./useDictOptions.a61fcf9f.js";export{P as default}; diff --git a/public/admin/assets/edit.fd584dc5.js b/public/admin/assets/edit.fd584dc5.js new file mode 100644 index 000000000..f4275a36d --- /dev/null +++ b/public/admin/assets/edit.fd584dc5.js @@ -0,0 +1 @@ +import"./edit.vue_vue_type_script_setup_true_name_userRoleEdit_lang.98d78f95.js";import{_ as O}from"./edit.vue_vue_type_script_setup_true_name_userRoleEdit_lang.98d78f95.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.b940d6e3.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.ed71ac09.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./user_role.813f0de8.js";export{O as default}; diff --git a/public/admin/assets/edit.vue_vue_type_script_setup_true_lang.07156ced.js b/public/admin/assets/edit.vue_vue_type_script_setup_true_lang.07156ced.js new file mode 100644 index 000000000..68a079fc8 --- /dev/null +++ b/public/admin/assets/edit.vue_vue_type_script_setup_true_lang.07156ced.js @@ -0,0 +1 @@ +import{a3 as I,a7 as P,G as K,H as S,C as $,B as H,v as Q,D as j}from"./element-plus.4328d892.js";import{_ as z}from"./picker.vue_vue_type_script_setup_true_lang.8519155b.js";import{a as J,b as W,c as X,d as Y}from"./menu.90f89e87.js";import{o as Z,M as n,p as uu,t as eu}from"./index.37f7aea6.js";import{P as lu}from"./index.5759a1a6.js";import{d as au,s as y,r as C,e as ou,$ as tu,o as i,c as su,U as a,L as o,u,R as m,K as F,Q as E,a as s}from"./@vue.51d7f2d8.js";const du={class:"edit-popup"},nu={class:"flex-1"},ru=s("div",{class:"form-tips"}," \u8BBF\u95EE\u7684\u8DEF\u7531\u5730\u5740\uFF0C\u5982\uFF1A`user`\uFF0C\u5982\u5916\u7F51\u5730\u5740\u9700\u5185\u94FE\u8BBF\u95EE\u5219\u4EE5`http(s)://`\u5F00\u5934 ",-1),pu={class:"flex-1"},iu=s("div",{class:"form-tips"}," \u8BBF\u95EE\u7684\u7EC4\u4EF6\u8DEF\u5F84\uFF0C\u5982\uFF1A`user/setting`\uFF0C\u9ED8\u8BA4\u5728`views`\u76EE\u5F55\u4E0B ",-1),mu={class:"flex-1"},Fu=s("div",{class:"form-tips"}," \u8BBF\u95EE\u8BE6\u60C5\u9875\u9762\uFF0C\u7F16\u8F91\u9875\u9762\u65F6\uFF0C\u83DC\u5355\u9AD8\u4EAE\u663E\u793A\uFF0C\u5982`/consumer/lists` ",-1),Eu={class:"flex-1"},cu=s("div",{class:"form-tips"}," \u5C06\u4F5C\u4E3Aserver\u7AEFAPI\u9A8C\u6743\u4F7F\u7528\uFF0C\u5982`auth.admin/user`\uFF0C\u8BF7\u8C28\u614E\u4FEE\u6539 ",-1),_u={class:"flex-1"},fu=s("div",{class:"form-tips"},' \u8BBF\u95EE\u8DEF\u7531\u7684\u9ED8\u8BA4\u4F20\u9012\u53C2\u6570\uFF0C\u5982\uFF1A`{"id": 1, "name": "admin"}`\u6216`id=1&name=admin` ',-1),Bu=s("div",{class:"form-tips"},"\u9009\u62E9\u7F13\u5B58\u5219\u4F1A\u88AB`keep-alive`\u7F13\u5B58",-1),Cu=s("div",{class:"form-tips"}," \u9009\u62E9\u9690\u85CF\u5219\u8DEF\u7531\u5C06\u4E0D\u4F1A\u51FA\u73B0\u5728\u4FA7\u8FB9\u680F\uFF0C\u4F46\u4ECD\u7136\u53EF\u4EE5\u8BBF\u95EE ",-1),Du=s("div",{class:"form-tips"},"\u9009\u62E9\u505C\u7528\u5219\u8DEF\u7531\u5C06\u4E0D\u4F1A\u51FA\u73B0\u5728\u4FA7\u8FB9\u680F\uFF0C\u4E5F\u4E0D\u80FD\u88AB\u8BBF\u95EE",-1),bu=s("div",{class:"form-tips"},"\u6570\u503C\u8D8A\u5927\u8D8A\u6392\u524D",-1),gu=au({__name:"edit",emits:["success","close"],setup(Vu,{expose:U,emit:D}){const b=y(),f=y(),B=C("add"),h=ou(()=>B.value=="edit"?"\u7F16\u8F91\u83DC\u5355":"\u65B0\u589E\u83DC\u5355"),V=C(Z()),T=(d,e)=>{const r=d?V.value.filter(c=>c.toLowerCase().includes(d.toLowerCase())):V.value;e(r.map(c=>({value:c})))},l=tu({id:"",pid:0,type:n.CATALOGUE,icon:"",name:"",sort:0,paths:"",perms:"",component:"",selected:"",params:"",is_cache:0,is_show:1,is_disable:0}),g={pid:[{required:!0,message:"\u8BF7\u9009\u62E9\u7236\u7EA7\u83DC\u5355",trigger:["blur","change"]}],name:[{required:!0,message:"\u8BF7\u8F93\u5165\u83DC\u5355\u540D\u79F0",trigger:"blur"}],paths:[{required:!0,message:"\u8BF7\u8F93\u5165\u8DEF\u7531\u5730\u5740",trigger:"blur"}],component:[{required:!0,message:"\u8BF7\u8F93\u5165\u7EC4\u4EF6\u5730\u5740",trigger:"blur"}]},A=C([]),k=async()=>{const d=await J({page_type:0}),e={id:0,name:"\u9876\u7EA7",children:[]};e.children=uu(eu(d.lists).filter(r=>r.type!=n.BUTTON)),A.value.push(e)},w=async()=>{var d,e;await((d=b.value)==null?void 0:d.validate()),B.value=="edit"?await W(l):await X(l),(e=f.value)==null||e.close(),D("success")},x=(d="add")=>{var e;B.value=d,(e=f.value)==null||e.open()},v=d=>{for(const e in l)d[e]!=null&&d[e]!=null&&(l[e]=d[e])},N=async d=>{const e=await Y({id:d.id});v(e)},O=()=>{D("close")};return k(),U({open:x,setFormData:v,getDetail:N}),(d,e)=>{const r=K,c=S,p=$,M=I,_=H,R=z,q=P,L=Q,G=j;return i(),su("div",du,[a(lu,{ref_key:"popupRef",ref:f,title:u(h),async:!0,width:"550px",onConfirm:w,onClose:O},{default:o(()=>[a(G,{ref_key:"formRef",ref:b,model:u(l),"label-width":"80px",rules:g},{default:o(()=>[a(p,{label:"\u83DC\u5355\u7C7B\u578B",prop:"type",required:""},{default:o(()=>[a(c,{modelValue:u(l).type,"onUpdate:modelValue":e[0]||(e[0]=t=>u(l).type=t)},{default:o(()=>[a(r,{label:u(n).CATALOGUE},{default:o(()=>[m("\u76EE\u5F55")]),_:1},8,["label"]),a(r,{label:u(n).MENU},{default:o(()=>[m("\u83DC\u5355")]),_:1},8,["label"]),a(r,{label:u(n).BUTTON},{default:o(()=>[m("\u6309\u94AE")]),_:1},8,["label"])]),_:1},8,["modelValue"])]),_:1}),a(p,{label:"\u7236\u7EA7\u83DC\u5355",prop:"pid"},{default:o(()=>[a(M,{class:"flex-1",modelValue:u(l).pid,"onUpdate:modelValue":e[1]||(e[1]=t=>u(l).pid=t),data:u(A),clearable:"","node-key":"id",props:{label:"name"},"default-expand-all":!0,placeholder:"\u8BF7\u9009\u62E9\u7236\u7EA7\u83DC\u5355","check-strictly":""},null,8,["modelValue","data"])]),_:1}),a(p,{label:"\u83DC\u5355\u540D\u79F0",prop:"name"},{default:o(()=>[a(_,{modelValue:u(l).name,"onUpdate:modelValue":e[2]||(e[2]=t=>u(l).name=t),placeholder:"\u8BF7\u8F93\u5165\u83DC\u5355\u540D\u79F0",clearable:""},null,8,["modelValue"])]),_:1}),u(l).type!=u(n).BUTTON?(i(),F(p,{key:0,label:"\u83DC\u5355\u56FE\u6807",prop:"icon"},{default:o(()=>[a(R,{class:"flex-1",modelValue:u(l).icon,"onUpdate:modelValue":e[3]||(e[3]=t=>u(l).icon=t)},null,8,["modelValue"])]),_:1})):E("",!0),u(l).type!=u(n).BUTTON?(i(),F(p,{key:1,label:"\u8DEF\u7531\u8DEF\u5F84",prop:"paths"},{default:o(()=>[s("div",nu,[a(_,{modelValue:u(l).paths,"onUpdate:modelValue":e[4]||(e[4]=t=>u(l).paths=t),placeholder:"\u8BF7\u8F93\u5165\u8DEF\u7531\u8DEF\u5F84",clearable:""},null,8,["modelValue"]),ru])]),_:1})):E("",!0),u(l).type==u(n).MENU?(i(),F(p,{key:2,label:"\u7EC4\u4EF6\u8DEF\u5F84",prop:"component"},{default:o(()=>[s("div",pu,[a(q,{class:"w-full",modelValue:u(l).component,"onUpdate:modelValue":e[5]||(e[5]=t=>u(l).component=t),"fetch-suggestions":T,clearable:"",placeholder:"\u8BF7\u8F93\u5165\u7EC4\u4EF6\u8DEF\u5F84"},null,8,["modelValue"]),iu])]),_:1})):E("",!0),u(l).type==u(n).MENU?(i(),F(p,{key:3,label:"\u9009\u4E2D\u83DC\u5355",prop:"selected"},{default:o(()=>[s("div",mu,[a(_,{modelValue:u(l).selected,"onUpdate:modelValue":e[6]||(e[6]=t=>u(l).selected=t),placeholder:"\u8BF7\u8F93\u5165\u8DEF\u7531\u8DEF\u5F84",clearable:""},null,8,["modelValue"]),Fu])]),_:1})):E("",!0),u(l).type!=u(n).CATALOGUE?(i(),F(p,{key:4,label:"\u6743\u9650\u5B57\u7B26",prop:"perms"},{default:o(()=>[s("div",Eu,[a(_,{modelValue:u(l).perms,"onUpdate:modelValue":e[7]||(e[7]=t=>u(l).perms=t),placeholder:"\u8BF7\u8F93\u5165\u6743\u9650\u5B57\u7B26",clearable:""},null,8,["modelValue"]),cu])]),_:1})):E("",!0),u(l).type==u(n).MENU?(i(),F(p,{key:5,label:"\u8DEF\u7531\u53C2\u6570",prop:"params"},{default:o(()=>[s("div",null,[s("div",_u,[a(_,{modelValue:u(l).params,"onUpdate:modelValue":e[8]||(e[8]=t=>u(l).params=t),placeholder:"\u8BF7\u8F93\u5165\u8DEF\u7531\u53C2\u6570",clearable:""},null,8,["modelValue"])]),fu])]),_:1})):E("",!0),u(l).type==u(n).MENU?(i(),F(p,{key:6,label:"\u662F\u5426\u7F13\u5B58",prop:"is_cache",required:""},{default:o(()=>[s("div",null,[a(c,{modelValue:u(l).is_cache,"onUpdate:modelValue":e[9]||(e[9]=t=>u(l).is_cache=t)},{default:o(()=>[a(r,{label:1},{default:o(()=>[m("\u7F13\u5B58")]),_:1}),a(r,{label:0},{default:o(()=>[m("\u4E0D\u7F13\u5B58")]),_:1})]),_:1},8,["modelValue"]),Bu])]),_:1})):E("",!0),u(l).type!=u(n).BUTTON?(i(),F(p,{key:7,label:"\u662F\u5426\u663E\u793A",prop:"is_show",required:""},{default:o(()=>[s("div",null,[a(c,{modelValue:u(l).is_show,"onUpdate:modelValue":e[10]||(e[10]=t=>u(l).is_show=t)},{default:o(()=>[a(r,{label:1},{default:o(()=>[m("\u663E\u793A")]),_:1}),a(r,{label:0},{default:o(()=>[m("\u9690\u85CF")]),_:1})]),_:1},8,["modelValue"]),Cu])]),_:1})):E("",!0),u(l).type!=u(n).BUTTON?(i(),F(p,{key:8,label:"\u83DC\u5355\u72B6\u6001",prop:"is_disable",required:""},{default:o(()=>[s("div",null,[a(c,{modelValue:u(l).is_disable,"onUpdate:modelValue":e[11]||(e[11]=t=>u(l).is_disable=t)},{default:o(()=>[a(r,{label:0},{default:o(()=>[m("\u6B63\u5E38")]),_:1}),a(r,{label:1},{default:o(()=>[m("\u505C\u7528")]),_:1})]),_:1},8,["modelValue"]),Du])]),_:1})):E("",!0),a(p,{label:"\u83DC\u5355\u6392\u5E8F",prop:"sort"},{default:o(()=>[s("div",null,[a(L,{modelValue:u(l).sort,"onUpdate:modelValue":e[12]||(e[12]=t=>u(l).sort=t),min:0,max:9999},null,8,["modelValue"]),bu])]),_:1})]),_:1},8,["model"])]),_:1},8,["title"])])}}});export{gu as _}; diff --git a/public/admin/assets/edit.vue_vue_type_script_setup_true_lang.076f3b55.js b/public/admin/assets/edit.vue_vue_type_script_setup_true_lang.076f3b55.js new file mode 100644 index 000000000..a3daefff1 --- /dev/null +++ b/public/admin/assets/edit.vue_vue_type_script_setup_true_lang.076f3b55.js @@ -0,0 +1 @@ +import{B as g,C as k,v as R,t as h,D as y}from"./element-plus.4328d892.js";import{j as U,a as A,b as j}from"./post.53815820.js";import{P as q}from"./index.b940d6e3.js";import{d as I,s as f,r as N,e as P,$ as S,o as z,c as L,U as o,L as s,u as l,a as F}from"./@vue.51d7f2d8.js";const T={class:"edit-popup"},$=F("div",{class:"form-tips"},"\u9ED8\u8BA4\u4E3A0\uFF0C \u6570\u503C\u8D8A\u5927\u8D8A\u6392\u524D",-1),O=I({__name:"edit",emits:["success","close"],setup(G,{expose:_,emit:p}){const i=f(),n=f(),d=N("add"),D=P(()=>d.value=="edit"?"\u7F16\u8F91\u5C97\u4F4D":"\u65B0\u589E\u5C97\u4F4D"),u=S({id:"",name:"",code:"",sort:0,remark:"",status:1}),C={code:[{required:!0,message:"\u8BF7\u8F93\u5165\u5C97\u4F4D\u7F16\u7801",trigger:["blur"]}],name:[{required:!0,message:"\u8BF7\u8F93\u5165\u5C97\u4F4D\u540D\u79F0",trigger:["blur"]}]},b=async()=>{var t,e;await((t=i.value)==null?void 0:t.validate()),d.value=="edit"?await U(u):await A(u),(e=n.value)==null||e.close(),p("success")},v=(t="add")=>{var e;d.value=t,(e=n.value)==null||e.open()},c=t=>{for(const e in u)t[e]!=null&&t[e]!=null&&(u[e]=t[e])},V=async t=>{const e=await j({id:t.id});c(e)},w=()=>{p("close")};return _({open:v,setFormData:c,getDetail:V}),(t,e)=>{const m=g,r=k,E=R,B=h,x=y;return z(),L("div",T,[o(q,{ref_key:"popupRef",ref:n,title:l(D),async:!0,width:"550px",onConfirm:b,onClose:w},{default:s(()=>[o(x,{ref_key:"formRef",ref:i,model:l(u),"label-width":"84px",rules:C},{default:s(()=>[o(r,{label:"\u5C97\u4F4D\u540D\u79F0",prop:"name"},{default:s(()=>[o(m,{modelValue:l(u).name,"onUpdate:modelValue":e[0]||(e[0]=a=>l(u).name=a),placeholder:"\u8BF7\u8F93\u5165\u5C97\u4F4D\u540D\u79F0",clearable:"",maxlength:100},null,8,["modelValue"])]),_:1}),o(r,{label:"\u5C97\u4F4D\u7F16\u7801",prop:"code"},{default:s(()=>[o(m,{modelValue:l(u).code,"onUpdate:modelValue":e[1]||(e[1]=a=>l(u).code=a),placeholder:"\u8BF7\u8F93\u5165\u5C97\u4F4D\u7F16\u7801",clearable:""},null,8,["modelValue"])]),_:1}),o(r,{label:"\u6392\u5E8F",prop:"sort"},{default:s(()=>[F("div",null,[o(E,{modelValue:l(u).sort,"onUpdate:modelValue":e[2]||(e[2]=a=>l(u).sort=a),min:0,max:9999},null,8,["modelValue"]),$])]),_:1}),o(r,{label:"\u5907\u6CE8",prop:"remark"},{default:s(()=>[o(m,{modelValue:l(u).remark,"onUpdate:modelValue":e[3]||(e[3]=a=>l(u).remark=a),placeholder:"\u8BF7\u8F93\u5165\u5907\u6CE8",type:"textarea",autosize:{minRows:4,maxRows:6},maxlength:"200","show-word-limit":""},null,8,["modelValue"])]),_:1}),o(r,{label:"\u5C97\u4F4D\u72B6\u6001",required:"",prop:"status"},{default:s(()=>[o(B,{modelValue:l(u).status,"onUpdate:modelValue":e[4]||(e[4]=a=>l(u).status=a),"active-value":1,"inactive-value":0},null,8,["modelValue"])]),_:1})]),_:1},8,["model"])]),_:1},8,["title"])])}}});export{O as _}; diff --git a/public/admin/assets/edit.vue_vue_type_script_setup_true_lang.164110e7.js b/public/admin/assets/edit.vue_vue_type_script_setup_true_lang.164110e7.js new file mode 100644 index 000000000..9cc54873f --- /dev/null +++ b/public/admin/assets/edit.vue_vue_type_script_setup_true_lang.164110e7.js @@ -0,0 +1 @@ +import{B as E,C as V,v as D,D as C}from"./element-plus.4328d892.js";import{a as y,b as B}from"./role.41d5883e.js";import{P as R}from"./index.fa872673.js";import{d as h,s as c,r as k,e as g,$ as U,o as I,c as N,U as t,L as u,u as a}from"./@vue.51d7f2d8.js";const P={class:"edit-popup"},j=h({__name:"edit",emits:["success","close"],setup(q,{expose:f,emit:p}){const d=c(),n=c(),r=k("add"),_=g(()=>r.value=="edit"?"\u7F16\u8F91\u89D2\u8272":"\u65B0\u589E\u89D2\u8272"),o=U({id:"",name:"",desc:"",sort:0,menu_id:[]}),F={name:[{required:!0,message:"\u8BF7\u8F93\u5165\u540D\u79F0",trigger:["blur"]}]},v=async()=>{var l,e;await((l=d.value)==null?void 0:l.validate()),r.value=="edit"?await y(o):await B(o),(e=n.value)==null||e.close(),p("success")},w=()=>{p("close")};return f({open:(l="add")=>{var e;r.value=l,(e=n.value)==null||e.open()},setFormData:async l=>{for(const e in o)l[e]!=null&&l[e]!=null&&(o[e]=l[e])}}),(l,e)=>{const i=E,m=V,b=D,x=C;return I(),N("div",P,[t(R,{ref_key:"popupRef",ref:n,title:a(_),async:!0,width:"550px",onConfirm:v,onClose:w},{default:u(()=>[t(x,{class:"ls-form",ref_key:"formRef",ref:d,rules:F,model:a(o),"label-width":"60px"},{default:u(()=>[t(m,{label:"\u540D\u79F0",prop:"name"},{default:u(()=>[t(i,{class:"ls-input",modelValue:a(o).name,"onUpdate:modelValue":e[0]||(e[0]=s=>a(o).name=s),placeholder:"\u8BF7\u8F93\u5165\u540D\u79F0",clearable:""},null,8,["modelValue"])]),_:1}),t(m,{label:"\u5907\u6CE8",prop:"desc"},{default:u(()=>[t(i,{modelValue:a(o).desc,"onUpdate:modelValue":e[1]||(e[1]=s=>a(o).desc=s),type:"textarea",autosize:{minRows:4,maxRows:6},placeholder:"\u8BF7\u8F93\u5165\u5907\u6CE8",maxlength:"200","show-word-limit":""},null,8,["modelValue"])]),_:1}),t(m,{label:"\u6392\u5E8F",prop:"sort"},{default:u(()=>[t(b,{modelValue:a(o).sort,"onUpdate:modelValue":e[2]||(e[2]=s=>a(o).sort=s),min:0,max:9999},null,8,["modelValue"])]),_:1})]),_:1},8,["model"])]),_:1},8,["title"])])}}});export{j as _}; diff --git a/public/admin/assets/edit.vue_vue_type_script_setup_true_lang.1f57918e.js b/public/admin/assets/edit.vue_vue_type_script_setup_true_lang.1f57918e.js new file mode 100644 index 000000000..e9969391a --- /dev/null +++ b/public/admin/assets/edit.vue_vue_type_script_setup_true_lang.1f57918e.js @@ -0,0 +1 @@ +import{B as v,C as x,G as E,H as R,D as g}from"./element-plus.4328d892.js";import{P as k}from"./index.fa872673.js";import{g as D,h}from"./dict.927f1fc7.js";import{d as U,s as f,r as T,e as q,$ as G,o as I,c as N,U as o,L as t,u as a,R as _}from"./@vue.51d7f2d8.js";const P={class:"edit-popup"},J=U({__name:"edit",emits:["success","close"],setup(z,{expose:B,emit:p}){const i=f(),n=f(),d=T("add"),F=q(()=>d.value=="edit"?"\u7F16\u8F91\u5B57\u5178\u7C7B\u578B":"\u65B0\u589E\u5B57\u5178\u7C7B\u578B"),u=G({id:"",name:"",type:"",status:1,remark:""}),V={name:[{required:!0,message:"\u8BF7\u8F93\u5165\u5B57\u5178\u540D\u79F0",trigger:["blur"]}],type:[{required:!0,message:"\u8BF7\u8F93\u5165\u5B57\u5178\u7C7B\u578B",trigger:["blur"]}]},b=async()=>{var l,e;await((l=i.value)==null?void 0:l.validate()),d.value=="edit"?await D(u):await h(u),(e=n.value)==null||e.close(),p("success")},y=()=>{p("close")};return B({open:(l="add")=>{var e;d.value=l,(e=n.value)==null||e.open()},setFormData:l=>{for(const e in u)l[e]!=null&&l[e]!=null&&(u[e]=l[e])}}),(l,e)=>{const m=v,r=x,c=E,C=R,w=g;return I(),N("div",P,[o(k,{ref_key:"popupRef",ref:n,title:a(F),async:!0,width:"550px",onConfirm:b,onClose:y},{default:t(()=>[o(w,{class:"ls-form",ref_key:"formRef",ref:i,rules:V,model:a(u),"label-width":"84px"},{default:t(()=>[o(r,{label:"\u5B57\u5178\u540D\u79F0",prop:"name"},{default:t(()=>[o(m,{modelValue:a(u).name,"onUpdate:modelValue":e[0]||(e[0]=s=>a(u).name=s),placeholder:"\u8BF7\u8F93\u5165\u5B57\u5178\u540D\u79F0",clearable:""},null,8,["modelValue"])]),_:1}),o(r,{label:"\u5B57\u5178\u7C7B\u578B",prop:"type"},{default:t(()=>[o(m,{modelValue:a(u).type,"onUpdate:modelValue":e[1]||(e[1]=s=>a(u).type=s),placeholder:"\u8BF7\u8F93\u5165\u5B57\u5178\u7C7B\u578B",clearable:""},null,8,["modelValue"])]),_:1}),o(r,{label:"\u5B57\u5178\u72B6\u6001",required:"",prop:"status"},{default:t(()=>[o(C,{modelValue:a(u).status,"onUpdate:modelValue":e[2]||(e[2]=s=>a(u).status=s)},{default:t(()=>[o(c,{label:1},{default:t(()=>[_("\u6B63\u5E38")]),_:1}),o(c,{label:0},{default:t(()=>[_("\u505C\u7528")]),_:1})]),_:1},8,["modelValue"])]),_:1}),o(r,{label:"\u5907\u6CE8",prop:"remark"},{default:t(()=>[o(m,{modelValue:a(u).remark,"onUpdate:modelValue":e[3]||(e[3]=s=>a(u).remark=s),type:"textarea",autosize:{minRows:4,maxRows:6},clearable:"",maxlength:"200","show-word-limit":""},null,8,["modelValue"])]),_:1})]),_:1},8,["model"])]),_:1},8,["title"])])}}});export{J as _}; diff --git a/public/admin/assets/edit.vue_vue_type_script_setup_true_lang.2571bf25.js b/public/admin/assets/edit.vue_vue_type_script_setup_true_lang.2571bf25.js new file mode 100644 index 000000000..232573e18 --- /dev/null +++ b/public/admin/assets/edit.vue_vue_type_script_setup_true_lang.2571bf25.js @@ -0,0 +1 @@ +import{B as g,C as k,v as R,t as h,D as y}from"./element-plus.4328d892.js";import{j as U,a as A,b as j}from"./post.5d32b419.js";import{P as q}from"./index.fa872673.js";import{d as I,s as f,r as N,e as P,$ as S,o as z,c as L,U as o,L as s,u as l,a as F}from"./@vue.51d7f2d8.js";const T={class:"edit-popup"},$=F("div",{class:"form-tips"},"\u9ED8\u8BA4\u4E3A0\uFF0C \u6570\u503C\u8D8A\u5927\u8D8A\u6392\u524D",-1),O=I({__name:"edit",emits:["success","close"],setup(G,{expose:_,emit:p}){const i=f(),n=f(),d=N("add"),D=P(()=>d.value=="edit"?"\u7F16\u8F91\u5C97\u4F4D":"\u65B0\u589E\u5C97\u4F4D"),u=S({id:"",name:"",code:"",sort:0,remark:"",status:1}),C={code:[{required:!0,message:"\u8BF7\u8F93\u5165\u5C97\u4F4D\u7F16\u7801",trigger:["blur"]}],name:[{required:!0,message:"\u8BF7\u8F93\u5165\u5C97\u4F4D\u540D\u79F0",trigger:["blur"]}]},b=async()=>{var t,e;await((t=i.value)==null?void 0:t.validate()),d.value=="edit"?await U(u):await A(u),(e=n.value)==null||e.close(),p("success")},v=(t="add")=>{var e;d.value=t,(e=n.value)==null||e.open()},c=t=>{for(const e in u)t[e]!=null&&t[e]!=null&&(u[e]=t[e])},V=async t=>{const e=await j({id:t.id});c(e)},w=()=>{p("close")};return _({open:v,setFormData:c,getDetail:V}),(t,e)=>{const m=g,r=k,E=R,B=h,x=y;return z(),L("div",T,[o(q,{ref_key:"popupRef",ref:n,title:l(D),async:!0,width:"550px",onConfirm:b,onClose:w},{default:s(()=>[o(x,{ref_key:"formRef",ref:i,model:l(u),"label-width":"84px",rules:C},{default:s(()=>[o(r,{label:"\u5C97\u4F4D\u540D\u79F0",prop:"name"},{default:s(()=>[o(m,{modelValue:l(u).name,"onUpdate:modelValue":e[0]||(e[0]=a=>l(u).name=a),placeholder:"\u8BF7\u8F93\u5165\u5C97\u4F4D\u540D\u79F0",clearable:"",maxlength:100},null,8,["modelValue"])]),_:1}),o(r,{label:"\u5C97\u4F4D\u7F16\u7801",prop:"code"},{default:s(()=>[o(m,{modelValue:l(u).code,"onUpdate:modelValue":e[1]||(e[1]=a=>l(u).code=a),placeholder:"\u8BF7\u8F93\u5165\u5C97\u4F4D\u7F16\u7801",clearable:""},null,8,["modelValue"])]),_:1}),o(r,{label:"\u6392\u5E8F",prop:"sort"},{default:s(()=>[F("div",null,[o(E,{modelValue:l(u).sort,"onUpdate:modelValue":e[2]||(e[2]=a=>l(u).sort=a),min:0,max:9999},null,8,["modelValue"]),$])]),_:1}),o(r,{label:"\u5907\u6CE8",prop:"remark"},{default:s(()=>[o(m,{modelValue:l(u).remark,"onUpdate:modelValue":e[3]||(e[3]=a=>l(u).remark=a),placeholder:"\u8BF7\u8F93\u5165\u5907\u6CE8",type:"textarea",autosize:{minRows:4,maxRows:6},maxlength:"200","show-word-limit":""},null,8,["modelValue"])]),_:1}),o(r,{label:"\u5C97\u4F4D\u72B6\u6001",required:"",prop:"status"},{default:s(()=>[o(B,{modelValue:l(u).status,"onUpdate:modelValue":e[4]||(e[4]=a=>l(u).status=a),"active-value":1,"inactive-value":0},null,8,["modelValue"])]),_:1})]),_:1},8,["model"])]),_:1},8,["title"])])}}});export{O as _}; diff --git a/public/admin/assets/edit.vue_vue_type_script_setup_true_lang.34775f0d.js b/public/admin/assets/edit.vue_vue_type_script_setup_true_lang.34775f0d.js new file mode 100644 index 000000000..bd3009e72 --- /dev/null +++ b/public/admin/assets/edit.vue_vue_type_script_setup_true_lang.34775f0d.js @@ -0,0 +1 @@ +import{G as K,C as O,B as w,H as U,D as N}from"./element-plus.4328d892.js";import{r as E}from"./index.aa9bb752.js";import{P as Y}from"./index.fa872673.js";import{d as I,s as B,$ as G,e as T,o as F,c as A,U as t,L as s,u as l,a as n,R as _,S as C,K as L,Q as S}from"./@vue.51d7f2d8.js";function ue(){return E.get({url:"/setting.storage/lists"})}function P(d){return E.post({url:"/setting.storage/setup",params:d})}function H(d){return E.get({url:"/setting.storage/detail",params:d})}const Q={class:"edit-popup"},$={class:"form-tips"},j={key:0},z={class:"flex-1"},J={class:"flex-1"},M=n("div",{class:"form-tips"}," \u8BF7\u8865\u5168http://\u6216https://\uFF0C\u4F8B\u5982https://static.cloud.com ",-1),te=I({__name:"edit",emits:["success"],setup(d,{expose:b,emit:y}){const p=B(),c=B(),u=G({engine:"",bucket:"",access_key:"",secret_key:"",domain:"",region:"",status:0}),D=[{name:"\u672C\u5730\u5B58\u50A8",type:"local",tips:"\u672C\u5730\u5B58\u50A8\u65B9\u5F0F\u4E0D\u9700\u8981\u914D\u7F6E\u5176\u4ED6\u53C2\u6570"},{name:"\u4E03\u725B\u4E91\u5B58\u50A8",type:"qiniu",tips:"\u5207\u6362\u4E03\u725B\u4E91\u5B58\u50A8\u540E\uFF0C\u7D20\u6750\u5E93\u9700\u8981\u91CD\u65B0\u4E0A\u4F20\u81F3\u4E03\u725B\u4E91"},{name:"\u963F\u91CC\u4E91OSS",type:"aliyun",tips:"\u5207\u6362\u963F\u91CC\u4E91OSS\u540E\uFF0C\u7D20\u6750\u5E93\u9700\u8981\u91CD\u65B0\u4E0A\u4F20\u81F3\u963F\u91CC\u4E91OSS"},{name:"\u817E\u8BAF\u4E91OSS",type:"qcloud",tips:"\u5207\u6362\u817E\u8BAF\u4E91OSS\u540E\uFF0C\u7D20\u6750\u5E93\u9700\u8981\u91CD\u65B0\u4E0A\u4F20\u81F3\u817E\u8BAF\u4E91OSS"}],k={bucket:[{required:!0,message:"\u8BF7\u8F93\u5165\u5B58\u50A8\u7A7A\u95F4\u540D\u79F0",trigger:"blur"}],access_key:[{required:!0,message:"\u8BF7\u8F93\u5165ACCESS_KEY",trigger:"blur"}],secret_key:[{required:!0,message:"\u8BF7\u8F93\u5165SECRET_KEY",trigger:"blur"}],domain:[{required:!0,message:"\u8BF7\u8F93\u5165\u7A7A\u95F4\u57DF\u540D",trigger:"blur"}],region:[{required:!0,message:"\u8BF7\u8F93\u5165REGION",trigger:"blur"}]},f=T(()=>D.find(a=>a.type==u.engine)),V=async()=>{var a,e;await((a=p.value)==null?void 0:a.validate()),await P(u),(e=c.value)==null||e.close(),y("success")},v=async()=>{const a=await H({engine:u.engine});for(const e in a)u[e]=a[e]},R=a=>{var e;u.engine=a,(e=c.value)==null||e.open(),v()},h=()=>{var a;(a=p.value)==null||a.resetFields()};return b({open:R}),(a,e)=>{const m=K,r=O,i=w,q=U,x=N;return F(),A("div",Q,[t(Y,{ref_key:"popupRef",ref:c,title:"\u8BBE\u7F6E\u5B58\u50A8",async:!0,width:"550px",onConfirm:V,onClose:h},{default:s(()=>[t(x,{ref_key:"formRef",ref:p,model:l(u),"label-width":"120px",rules:k},{default:s(()=>[t(r,{label:"\u5B58\u50A8\u65B9\u5F0F",prop:"engine"},{default:s(()=>{var o;return[n("div",null,[t(m,{"model-value":""},{default:s(()=>{var g;return[_(C((g=l(f))==null?void 0:g.name),1)]}),_:1}),n("div",$,C((o=l(f))==null?void 0:o.tips),1)])]}),_:1}),l(u).engine!=="local"?(F(),A("div",j,[t(r,{label:" \u5B58\u50A8\u7A7A\u95F4\u540D\u79F0",prop:"bucket"},{default:s(()=>[n("div",z,[t(i,{modelValue:l(u).bucket,"onUpdate:modelValue":e[0]||(e[0]=o=>l(u).bucket=o),placeholder:"\u8BF7\u8F93\u5165\u5B58\u50A8\u7A7A\u95F4\u540D\u79F0(Bucket)",clearable:""},null,8,["modelValue"])])]),_:1}),t(r,{label:"ACCESS_KEY",prop:"access_key"},{default:s(()=>[t(i,{modelValue:l(u).access_key,"onUpdate:modelValue":e[1]||(e[1]=o=>l(u).access_key=o),placeholder:"\u8BF7\u8F93\u5165ACCESS_KEY(AK)",clearable:""},null,8,["modelValue"])]),_:1}),t(r,{label:"SECRET_KEY",prop:"secret_key"},{default:s(()=>[t(i,{modelValue:l(u).secret_key,"onUpdate:modelValue":e[2]||(e[2]=o=>l(u).secret_key=o),placeholder:"\u8BF7\u8F93\u5165SECRET_KEY(SK)",clearable:""},null,8,["modelValue"])]),_:1}),t(r,{label:"\u7A7A\u95F4\u57DF\u540D",prop:"domain"},{default:s(()=>[n("div",J,[n("div",null,[t(i,{modelValue:l(u).domain,"onUpdate:modelValue":e[3]||(e[3]=o=>l(u).domain=o),placeholder:"\u8BF7\u8F93\u5165\u7A7A\u95F4\u57DF\u540D(Domain)",clearable:""},null,8,["modelValue"])]),M])]),_:1}),l(u).engine=="qcloud"?(F(),L(r,{key:0,label:"REGION",prop:"region"},{default:s(()=>[t(i,{modelValue:l(u).region,"onUpdate:modelValue":e[4]||(e[4]=o=>l(u).region=o),placeholder:"\u8BF7\u8F93\u5165region",clearable:""},null,8,["modelValue"])]),_:1})):S("",!0)])):S("",!0),t(r,{label:"\u72B6\u6001",prop:"status"},{default:s(()=>[t(q,{modelValue:l(u).status,"onUpdate:modelValue":e[5]||(e[5]=o=>l(u).status=o)},{default:s(()=>[t(m,{label:0},{default:s(()=>[_("\u5173\u95ED")]),_:1}),t(m,{label:1},{default:s(()=>[_("\u5F00\u542F")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1},8,["model"])]),_:1},512)])}}});export{te as _,ue as s}; diff --git a/public/admin/assets/edit.vue_vue_type_script_setup_true_lang.383f31fa.js b/public/admin/assets/edit.vue_vue_type_script_setup_true_lang.383f31fa.js new file mode 100644 index 000000000..4cd2328b3 --- /dev/null +++ b/public/admin/assets/edit.vue_vue_type_script_setup_true_lang.383f31fa.js @@ -0,0 +1 @@ +import{B as v,C as x,G as E,H as R,D as g}from"./element-plus.4328d892.js";import{P as k}from"./index.5759a1a6.js";import{g as D,h}from"./dict.58face92.js";import{d as U,s as f,r as T,e as q,$ as G,o as I,c as N,U as o,L as t,u as a,R as _}from"./@vue.51d7f2d8.js";const P={class:"edit-popup"},J=U({__name:"edit",emits:["success","close"],setup(z,{expose:B,emit:p}){const i=f(),n=f(),d=T("add"),F=q(()=>d.value=="edit"?"\u7F16\u8F91\u5B57\u5178\u7C7B\u578B":"\u65B0\u589E\u5B57\u5178\u7C7B\u578B"),u=G({id:"",name:"",type:"",status:1,remark:""}),V={name:[{required:!0,message:"\u8BF7\u8F93\u5165\u5B57\u5178\u540D\u79F0",trigger:["blur"]}],type:[{required:!0,message:"\u8BF7\u8F93\u5165\u5B57\u5178\u7C7B\u578B",trigger:["blur"]}]},b=async()=>{var l,e;await((l=i.value)==null?void 0:l.validate()),d.value=="edit"?await D(u):await h(u),(e=n.value)==null||e.close(),p("success")},y=()=>{p("close")};return B({open:(l="add")=>{var e;d.value=l,(e=n.value)==null||e.open()},setFormData:l=>{for(const e in u)l[e]!=null&&l[e]!=null&&(u[e]=l[e])}}),(l,e)=>{const m=v,r=x,c=E,C=R,w=g;return I(),N("div",P,[o(k,{ref_key:"popupRef",ref:n,title:a(F),async:!0,width:"550px",onConfirm:b,onClose:y},{default:t(()=>[o(w,{class:"ls-form",ref_key:"formRef",ref:i,rules:V,model:a(u),"label-width":"84px"},{default:t(()=>[o(r,{label:"\u5B57\u5178\u540D\u79F0",prop:"name"},{default:t(()=>[o(m,{modelValue:a(u).name,"onUpdate:modelValue":e[0]||(e[0]=s=>a(u).name=s),placeholder:"\u8BF7\u8F93\u5165\u5B57\u5178\u540D\u79F0",clearable:""},null,8,["modelValue"])]),_:1}),o(r,{label:"\u5B57\u5178\u7C7B\u578B",prop:"type"},{default:t(()=>[o(m,{modelValue:a(u).type,"onUpdate:modelValue":e[1]||(e[1]=s=>a(u).type=s),placeholder:"\u8BF7\u8F93\u5165\u5B57\u5178\u7C7B\u578B",clearable:""},null,8,["modelValue"])]),_:1}),o(r,{label:"\u5B57\u5178\u72B6\u6001",required:"",prop:"status"},{default:t(()=>[o(C,{modelValue:a(u).status,"onUpdate:modelValue":e[2]||(e[2]=s=>a(u).status=s)},{default:t(()=>[o(c,{label:1},{default:t(()=>[_("\u6B63\u5E38")]),_:1}),o(c,{label:0},{default:t(()=>[_("\u505C\u7528")]),_:1})]),_:1},8,["modelValue"])]),_:1}),o(r,{label:"\u5907\u6CE8",prop:"remark"},{default:t(()=>[o(m,{modelValue:a(u).remark,"onUpdate:modelValue":e[3]||(e[3]=s=>a(u).remark=s),type:"textarea",autosize:{minRows:4,maxRows:6},clearable:"",maxlength:"200","show-word-limit":""},null,8,["modelValue"])]),_:1})]),_:1},8,["model"])]),_:1},8,["title"])])}}});export{J as _}; diff --git a/public/admin/assets/edit.vue_vue_type_script_setup_true_lang.390417cc.js b/public/admin/assets/edit.vue_vue_type_script_setup_true_lang.390417cc.js new file mode 100644 index 000000000..691865381 --- /dev/null +++ b/public/admin/assets/edit.vue_vue_type_script_setup_true_lang.390417cc.js @@ -0,0 +1 @@ +import{B as x,C as y,v as R,t as k,D as A}from"./element-plus.4328d892.js";import{a as g,b as U,c as I}from"./article.188d8b86.js";import{P as N}from"./index.fa872673.js";import{d as P,s as c,r as S,e as q,$ as L,o as T,c as $,U as a,L as s,u,a as _}from"./@vue.51d7f2d8.js";const j={class:"edit-popup"},z=_("div",{class:"form-tips"},"\u9ED8\u8BA4\u4E3A0\uFF0C \u6570\u503C\u8D8A\u5927\u8D8A\u6392\u524D",-1),O=P({__name:"edit",emits:["success","close"],setup(G,{expose:f,emit:m}){const d=c(),n=c(),r=S("add"),E=q(()=>r.value=="edit"?"\u7F16\u8F91\u680F\u76EE":"\u65B0\u589E\u680F\u76EE"),o=L({id:"",name:"",sort:0,is_show:1}),F={name:[{required:!0,message:"\u8BF7\u8F93\u5165\u680F\u76EE\u540D\u79F0",trigger:["blur"]}]},v=async()=>{var t,e;await((t=d.value)==null?void 0:t.validate()),r.value=="edit"?await g(o):await U(o),(e=n.value)==null||e.close(),m("success")},w=(t="add")=>{var e;r.value=t,(e=n.value)==null||e.open()},p=t=>{for(const e in o)t[e]!=null&&t[e]!=null&&(o[e]=t[e])},D=async t=>{const e=await I({id:t.id});p(e)},C=()=>{m("close")};return f({open:w,setFormData:p,getDetail:D}),(t,e)=>{const V=x,i=y,b=R,h=k,B=A;return T(),$("div",j,[a(N,{ref_key:"popupRef",ref:n,title:u(E),async:!0,width:"550px",onConfirm:v,onClose:C},{default:s(()=>[a(B,{ref_key:"formRef",ref:d,model:u(o),"label-width":"84px",rules:F},{default:s(()=>[a(i,{label:"\u680F\u76EE\u540D\u79F0",prop:"name"},{default:s(()=>[a(V,{modelValue:u(o).name,"onUpdate:modelValue":e[0]||(e[0]=l=>u(o).name=l),placeholder:"\u8BF7\u8F93\u5165\u680F\u76EE\u540D\u79F0",clearable:""},null,8,["modelValue"])]),_:1}),a(i,{label:"\u6392\u5E8F",prop:"sort"},{default:s(()=>[_("div",null,[a(b,{modelValue:u(o).sort,"onUpdate:modelValue":e[1]||(e[1]=l=>u(o).sort=l),min:0,max:9999},null,8,["modelValue"]),z])]),_:1}),a(i,{label:"\u72B6\u6001",prop:"is_show"},{default:s(()=>[a(h,{modelValue:u(o).is_show,"onUpdate:modelValue":e[2]||(e[2]=l=>u(o).is_show=l),"active-value":1,"inactive-value":0},null,8,["modelValue"])]),_:1})]),_:1},8,["model"])]),_:1},8,["title"])])}}});export{O as _}; diff --git a/public/admin/assets/edit.vue_vue_type_script_setup_true_lang.4b359fcf.js b/public/admin/assets/edit.vue_vue_type_script_setup_true_lang.4b359fcf.js new file mode 100644 index 000000000..888b96519 --- /dev/null +++ b/public/admin/assets/edit.vue_vue_type_script_setup_true_lang.4b359fcf.js @@ -0,0 +1 @@ +import{C,B as P,G as S,H as v,D as I}from"./element-plus.4328d892.js";import{b as w,c as x}from"./message.39fcd3de.js";import{P as K}from"./index.fa872673.js";import{d as T,s as c,$ as U,o as d,c as A,U as t,L as a,u as l,a as Y,S as q,K as _,Q as m,R as f}from"./@vue.51d7f2d8.js";const N={class:"edit-popup"},$=T({__name:"edit",emits:["success"],setup(G,{expose:F,emit:y}){const n=c(),i=c(),e=U({name:"",type:"",sign:"",app_key:"",app_id:"",secret_key:"",secret_id:"",status:0}),g={sign:[{required:!0,message:"\u8BF7\u8F93\u5165\u77ED\u4FE1\u7B7E\u540D",trigger:"blur"}],app_id:[{required:!0,message:"\u8BF7\u8F93\u5165APP_ID",trigger:"blur"}],app_key:[{required:!0,message:"\u8BF7\u8F93\u5165APP_KEY",trigger:"blur"}],secret_key:[{required:!0,message:"\u8BF7\u8F93\u5165SECRET_KEY",trigger:"blur"}],secret_id:[{required:!0,message:"\u8BF7\u8F93\u5165SECRET_ID",trigger:"blur"}]},V=async()=>{var o,u;await((o=n.value)==null?void 0:o.validate()),await w(e),(u=i.value)==null||u.close(),y("success")},B=async()=>{const o=await x({type:e.type});for(const u in o)e[u]=o[u]},D=o=>{var u;e.type=o,(u=i.value)==null||u.open(),B()},k=()=>{var o;(o=n.value)==null||o.resetFields()};return F({open:D}),(o,u)=>{const r=C,p=P,E=S,b=v,R=I;return d(),A("div",N,[t(K,{ref_key:"popupRef",ref:i,title:"\u8BBE\u7F6E\u77ED\u4FE1",async:!0,width:"550px",onConfirm:V,onClose:k},{default:a(()=>[t(R,{ref_key:"formRef",ref:n,model:l(e),"label-width":"120px",rules:g},{default:a(()=>[t(r,{label:"\u77ED\u4FE1\u6E20\u9053"},{default:a(()=>[Y("div",null,q(l(e).name),1)]),_:1}),t(r,{label:"\u77ED\u4FE1\u7B7E\u540D",prop:"sign"},{default:a(()=>[t(p,{modelValue:l(e).sign,"onUpdate:modelValue":u[0]||(u[0]=s=>l(e).sign=s),placeholder:"\u8BF7\u8F93\u5165\u77ED\u4FE1\u7B7E\u540D"},null,8,["modelValue"])]),_:1}),l(e).type=="ali"?(d(),_(r,{key:0,label:"APP_KEY",prop:"app_key"},{default:a(()=>[t(p,{modelValue:l(e).app_key,"onUpdate:modelValue":u[1]||(u[1]=s=>l(e).app_key=s),placeholder:"\u8BF7\u8F93\u5165APP_KEY"},null,8,["modelValue"])]),_:1})):m("",!0),l(e).type=="tencent"?(d(),_(r,{key:1,label:"APP_ID",prop:"app_id"},{default:a(()=>[t(p,{modelValue:l(e).app_id,"onUpdate:modelValue":u[2]||(u[2]=s=>l(e).app_id=s),placeholder:"\u8BF7\u8F93\u5165APP_ID"},null,8,["modelValue"])]),_:1})):m("",!0),l(e).type=="tencent"?(d(),_(r,{key:2,label:"SECRET_ID",prop:"secret_id"},{default:a(()=>[t(p,{modelValue:l(e).secret_id,"onUpdate:modelValue":u[3]||(u[3]=s=>l(e).secret_id=s),placeholder:"\u8BF7\u8F93\u5165SECRET_ID"},null,8,["modelValue"])]),_:1})):m("",!0),t(r,{label:"SECRET_KEY",prop:"secret_key"},{default:a(()=>[t(p,{modelValue:l(e).secret_key,"onUpdate:modelValue":u[4]||(u[4]=s=>l(e).secret_key=s),placeholder:"\u8BF7\u8F93\u5165SECRET_KEY"},null,8,["modelValue"])]),_:1}),t(r,{label:"\u72B6\u6001",prop:"status"},{default:a(()=>[t(b,{modelValue:l(e).status,"onUpdate:modelValue":u[5]||(u[5]=s=>l(e).status=s)},{default:a(()=>[t(E,{label:0},{default:a(()=>[f("\u5173\u95ED")]),_:1}),t(E,{label:1},{default:a(()=>[f("\u5F00\u542F")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1},8,["model"])]),_:1},512)])}}});export{$ as _}; diff --git a/public/admin/assets/edit.vue_vue_type_script_setup_true_lang.51e254d4.js b/public/admin/assets/edit.vue_vue_type_script_setup_true_lang.51e254d4.js new file mode 100644 index 000000000..def893c47 --- /dev/null +++ b/public/admin/assets/edit.vue_vue_type_script_setup_true_lang.51e254d4.js @@ -0,0 +1 @@ +import{B as x,C as y,v as R,t as k,D as A}from"./element-plus.4328d892.js";import{a as g,b as U,c as I}from"./article.cb24b6c9.js";import{P as N}from"./index.5759a1a6.js";import{d as P,s as c,r as S,e as q,$ as L,o as T,c as $,U as a,L as s,u,a as _}from"./@vue.51d7f2d8.js";const j={class:"edit-popup"},z=_("div",{class:"form-tips"},"\u9ED8\u8BA4\u4E3A0\uFF0C \u6570\u503C\u8D8A\u5927\u8D8A\u6392\u524D",-1),O=P({__name:"edit",emits:["success","close"],setup(G,{expose:f,emit:m}){const d=c(),n=c(),r=S("add"),E=q(()=>r.value=="edit"?"\u7F16\u8F91\u680F\u76EE":"\u65B0\u589E\u680F\u76EE"),o=L({id:"",name:"",sort:0,is_show:1}),F={name:[{required:!0,message:"\u8BF7\u8F93\u5165\u680F\u76EE\u540D\u79F0",trigger:["blur"]}]},v=async()=>{var t,e;await((t=d.value)==null?void 0:t.validate()),r.value=="edit"?await g(o):await U(o),(e=n.value)==null||e.close(),m("success")},w=(t="add")=>{var e;r.value=t,(e=n.value)==null||e.open()},p=t=>{for(const e in o)t[e]!=null&&t[e]!=null&&(o[e]=t[e])},D=async t=>{const e=await I({id:t.id});p(e)},C=()=>{m("close")};return f({open:w,setFormData:p,getDetail:D}),(t,e)=>{const V=x,i=y,b=R,h=k,B=A;return T(),$("div",j,[a(N,{ref_key:"popupRef",ref:n,title:u(E),async:!0,width:"550px",onConfirm:v,onClose:C},{default:s(()=>[a(B,{ref_key:"formRef",ref:d,model:u(o),"label-width":"84px",rules:F},{default:s(()=>[a(i,{label:"\u680F\u76EE\u540D\u79F0",prop:"name"},{default:s(()=>[a(V,{modelValue:u(o).name,"onUpdate:modelValue":e[0]||(e[0]=l=>u(o).name=l),placeholder:"\u8BF7\u8F93\u5165\u680F\u76EE\u540D\u79F0",clearable:""},null,8,["modelValue"])]),_:1}),a(i,{label:"\u6392\u5E8F",prop:"sort"},{default:s(()=>[_("div",null,[a(b,{modelValue:u(o).sort,"onUpdate:modelValue":e[1]||(e[1]=l=>u(o).sort=l),min:0,max:9999},null,8,["modelValue"]),z])]),_:1}),a(i,{label:"\u72B6\u6001",prop:"is_show"},{default:s(()=>[a(h,{modelValue:u(o).is_show,"onUpdate:modelValue":e[2]||(e[2]=l=>u(o).is_show=l),"active-value":1,"inactive-value":0},null,8,["modelValue"])]),_:1})]),_:1},8,["model"])]),_:1},8,["title"])])}}});export{O as _}; diff --git a/public/admin/assets/edit.vue_vue_type_script_setup_true_lang.672caa62.js b/public/admin/assets/edit.vue_vue_type_script_setup_true_lang.672caa62.js new file mode 100644 index 000000000..34abaa901 --- /dev/null +++ b/public/admin/assets/edit.vue_vue_type_script_setup_true_lang.672caa62.js @@ -0,0 +1 @@ +import{C,B as P,G as S,H as v,D as I}from"./element-plus.4328d892.js";import{b as w,c as x}from"./message.8c449686.js";import{P as K}from"./index.5759a1a6.js";import{d as T,s as c,$ as U,o as d,c as A,U as t,L as a,u as l,a as Y,S as q,K as _,Q as m,R as f}from"./@vue.51d7f2d8.js";const N={class:"edit-popup"},$=T({__name:"edit",emits:["success"],setup(G,{expose:F,emit:y}){const n=c(),i=c(),e=U({name:"",type:"",sign:"",app_key:"",app_id:"",secret_key:"",secret_id:"",status:0}),g={sign:[{required:!0,message:"\u8BF7\u8F93\u5165\u77ED\u4FE1\u7B7E\u540D",trigger:"blur"}],app_id:[{required:!0,message:"\u8BF7\u8F93\u5165APP_ID",trigger:"blur"}],app_key:[{required:!0,message:"\u8BF7\u8F93\u5165APP_KEY",trigger:"blur"}],secret_key:[{required:!0,message:"\u8BF7\u8F93\u5165SECRET_KEY",trigger:"blur"}],secret_id:[{required:!0,message:"\u8BF7\u8F93\u5165SECRET_ID",trigger:"blur"}]},V=async()=>{var o,u;await((o=n.value)==null?void 0:o.validate()),await w(e),(u=i.value)==null||u.close(),y("success")},B=async()=>{const o=await x({type:e.type});for(const u in o)e[u]=o[u]},D=o=>{var u;e.type=o,(u=i.value)==null||u.open(),B()},k=()=>{var o;(o=n.value)==null||o.resetFields()};return F({open:D}),(o,u)=>{const r=C,p=P,E=S,b=v,R=I;return d(),A("div",N,[t(K,{ref_key:"popupRef",ref:i,title:"\u8BBE\u7F6E\u77ED\u4FE1",async:!0,width:"550px",onConfirm:V,onClose:k},{default:a(()=>[t(R,{ref_key:"formRef",ref:n,model:l(e),"label-width":"120px",rules:g},{default:a(()=>[t(r,{label:"\u77ED\u4FE1\u6E20\u9053"},{default:a(()=>[Y("div",null,q(l(e).name),1)]),_:1}),t(r,{label:"\u77ED\u4FE1\u7B7E\u540D",prop:"sign"},{default:a(()=>[t(p,{modelValue:l(e).sign,"onUpdate:modelValue":u[0]||(u[0]=s=>l(e).sign=s),placeholder:"\u8BF7\u8F93\u5165\u77ED\u4FE1\u7B7E\u540D"},null,8,["modelValue"])]),_:1}),l(e).type=="ali"?(d(),_(r,{key:0,label:"APP_KEY",prop:"app_key"},{default:a(()=>[t(p,{modelValue:l(e).app_key,"onUpdate:modelValue":u[1]||(u[1]=s=>l(e).app_key=s),placeholder:"\u8BF7\u8F93\u5165APP_KEY"},null,8,["modelValue"])]),_:1})):m("",!0),l(e).type=="tencent"?(d(),_(r,{key:1,label:"APP_ID",prop:"app_id"},{default:a(()=>[t(p,{modelValue:l(e).app_id,"onUpdate:modelValue":u[2]||(u[2]=s=>l(e).app_id=s),placeholder:"\u8BF7\u8F93\u5165APP_ID"},null,8,["modelValue"])]),_:1})):m("",!0),l(e).type=="tencent"?(d(),_(r,{key:2,label:"SECRET_ID",prop:"secret_id"},{default:a(()=>[t(p,{modelValue:l(e).secret_id,"onUpdate:modelValue":u[3]||(u[3]=s=>l(e).secret_id=s),placeholder:"\u8BF7\u8F93\u5165SECRET_ID"},null,8,["modelValue"])]),_:1})):m("",!0),t(r,{label:"SECRET_KEY",prop:"secret_key"},{default:a(()=>[t(p,{modelValue:l(e).secret_key,"onUpdate:modelValue":u[4]||(u[4]=s=>l(e).secret_key=s),placeholder:"\u8BF7\u8F93\u5165SECRET_KEY"},null,8,["modelValue"])]),_:1}),t(r,{label:"\u72B6\u6001",prop:"status"},{default:a(()=>[t(b,{modelValue:l(e).status,"onUpdate:modelValue":u[5]||(u[5]=s=>l(e).status=s)},{default:a(()=>[t(E,{label:0},{default:a(()=>[f("\u5173\u95ED")]),_:1}),t(E,{label:1},{default:a(()=>[f("\u5F00\u542F")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1},8,["model"])]),_:1},512)])}}});export{$ as _}; diff --git a/public/admin/assets/edit.vue_vue_type_script_setup_true_lang.7728685e.js b/public/admin/assets/edit.vue_vue_type_script_setup_true_lang.7728685e.js new file mode 100644 index 000000000..576106fd4 --- /dev/null +++ b/public/admin/assets/edit.vue_vue_type_script_setup_true_lang.7728685e.js @@ -0,0 +1 @@ +import{B as v,C as x,G as E,H as R,D as g}from"./element-plus.4328d892.js";import{P as k}from"./index.b940d6e3.js";import{g as D,h}from"./dict.6c560e38.js";import{d as U,s as f,r as T,e as q,$ as G,o as I,c as N,U as o,L as t,u as a,R as _}from"./@vue.51d7f2d8.js";const P={class:"edit-popup"},J=U({__name:"edit",emits:["success","close"],setup(z,{expose:B,emit:p}){const i=f(),n=f(),d=T("add"),F=q(()=>d.value=="edit"?"\u7F16\u8F91\u5B57\u5178\u7C7B\u578B":"\u65B0\u589E\u5B57\u5178\u7C7B\u578B"),u=G({id:"",name:"",type:"",status:1,remark:""}),V={name:[{required:!0,message:"\u8BF7\u8F93\u5165\u5B57\u5178\u540D\u79F0",trigger:["blur"]}],type:[{required:!0,message:"\u8BF7\u8F93\u5165\u5B57\u5178\u7C7B\u578B",trigger:["blur"]}]},b=async()=>{var l,e;await((l=i.value)==null?void 0:l.validate()),d.value=="edit"?await D(u):await h(u),(e=n.value)==null||e.close(),p("success")},y=()=>{p("close")};return B({open:(l="add")=>{var e;d.value=l,(e=n.value)==null||e.open()},setFormData:l=>{for(const e in u)l[e]!=null&&l[e]!=null&&(u[e]=l[e])}}),(l,e)=>{const m=v,r=x,c=E,C=R,w=g;return I(),N("div",P,[o(k,{ref_key:"popupRef",ref:n,title:a(F),async:!0,width:"550px",onConfirm:b,onClose:y},{default:t(()=>[o(w,{class:"ls-form",ref_key:"formRef",ref:i,rules:V,model:a(u),"label-width":"84px"},{default:t(()=>[o(r,{label:"\u5B57\u5178\u540D\u79F0",prop:"name"},{default:t(()=>[o(m,{modelValue:a(u).name,"onUpdate:modelValue":e[0]||(e[0]=s=>a(u).name=s),placeholder:"\u8BF7\u8F93\u5165\u5B57\u5178\u540D\u79F0",clearable:""},null,8,["modelValue"])]),_:1}),o(r,{label:"\u5B57\u5178\u7C7B\u578B",prop:"type"},{default:t(()=>[o(m,{modelValue:a(u).type,"onUpdate:modelValue":e[1]||(e[1]=s=>a(u).type=s),placeholder:"\u8BF7\u8F93\u5165\u5B57\u5178\u7C7B\u578B",clearable:""},null,8,["modelValue"])]),_:1}),o(r,{label:"\u5B57\u5178\u72B6\u6001",required:"",prop:"status"},{default:t(()=>[o(C,{modelValue:a(u).status,"onUpdate:modelValue":e[2]||(e[2]=s=>a(u).status=s)},{default:t(()=>[o(c,{label:1},{default:t(()=>[_("\u6B63\u5E38")]),_:1}),o(c,{label:0},{default:t(()=>[_("\u505C\u7528")]),_:1})]),_:1},8,["modelValue"])]),_:1}),o(r,{label:"\u5907\u6CE8",prop:"remark"},{default:t(()=>[o(m,{modelValue:a(u).remark,"onUpdate:modelValue":e[3]||(e[3]=s=>a(u).remark=s),type:"textarea",autosize:{minRows:4,maxRows:6},clearable:"",maxlength:"200","show-word-limit":""},null,8,["modelValue"])]),_:1})]),_:1},8,["model"])]),_:1},8,["title"])])}}});export{J as _}; diff --git a/public/admin/assets/edit.vue_vue_type_script_setup_true_lang.7740595e.js b/public/admin/assets/edit.vue_vue_type_script_setup_true_lang.7740595e.js new file mode 100644 index 000000000..995769173 --- /dev/null +++ b/public/admin/assets/edit.vue_vue_type_script_setup_true_lang.7740595e.js @@ -0,0 +1 @@ +import{C,B as P,G as S,H as v,D as I}from"./element-plus.4328d892.js";import{b as w,c as x}from"./message.f1110fc7.js";import{P as K}from"./index.b940d6e3.js";import{d as T,s as c,$ as U,o as d,c as A,U as t,L as a,u as l,a as Y,S as q,K as _,Q as m,R as f}from"./@vue.51d7f2d8.js";const N={class:"edit-popup"},$=T({__name:"edit",emits:["success"],setup(G,{expose:F,emit:y}){const n=c(),i=c(),e=U({name:"",type:"",sign:"",app_key:"",app_id:"",secret_key:"",secret_id:"",status:0}),g={sign:[{required:!0,message:"\u8BF7\u8F93\u5165\u77ED\u4FE1\u7B7E\u540D",trigger:"blur"}],app_id:[{required:!0,message:"\u8BF7\u8F93\u5165APP_ID",trigger:"blur"}],app_key:[{required:!0,message:"\u8BF7\u8F93\u5165APP_KEY",trigger:"blur"}],secret_key:[{required:!0,message:"\u8BF7\u8F93\u5165SECRET_KEY",trigger:"blur"}],secret_id:[{required:!0,message:"\u8BF7\u8F93\u5165SECRET_ID",trigger:"blur"}]},V=async()=>{var o,u;await((o=n.value)==null?void 0:o.validate()),await w(e),(u=i.value)==null||u.close(),y("success")},B=async()=>{const o=await x({type:e.type});for(const u in o)e[u]=o[u]},D=o=>{var u;e.type=o,(u=i.value)==null||u.open(),B()},k=()=>{var o;(o=n.value)==null||o.resetFields()};return F({open:D}),(o,u)=>{const r=C,p=P,E=S,b=v,R=I;return d(),A("div",N,[t(K,{ref_key:"popupRef",ref:i,title:"\u8BBE\u7F6E\u77ED\u4FE1",async:!0,width:"550px",onConfirm:V,onClose:k},{default:a(()=>[t(R,{ref_key:"formRef",ref:n,model:l(e),"label-width":"120px",rules:g},{default:a(()=>[t(r,{label:"\u77ED\u4FE1\u6E20\u9053"},{default:a(()=>[Y("div",null,q(l(e).name),1)]),_:1}),t(r,{label:"\u77ED\u4FE1\u7B7E\u540D",prop:"sign"},{default:a(()=>[t(p,{modelValue:l(e).sign,"onUpdate:modelValue":u[0]||(u[0]=s=>l(e).sign=s),placeholder:"\u8BF7\u8F93\u5165\u77ED\u4FE1\u7B7E\u540D"},null,8,["modelValue"])]),_:1}),l(e).type=="ali"?(d(),_(r,{key:0,label:"APP_KEY",prop:"app_key"},{default:a(()=>[t(p,{modelValue:l(e).app_key,"onUpdate:modelValue":u[1]||(u[1]=s=>l(e).app_key=s),placeholder:"\u8BF7\u8F93\u5165APP_KEY"},null,8,["modelValue"])]),_:1})):m("",!0),l(e).type=="tencent"?(d(),_(r,{key:1,label:"APP_ID",prop:"app_id"},{default:a(()=>[t(p,{modelValue:l(e).app_id,"onUpdate:modelValue":u[2]||(u[2]=s=>l(e).app_id=s),placeholder:"\u8BF7\u8F93\u5165APP_ID"},null,8,["modelValue"])]),_:1})):m("",!0),l(e).type=="tencent"?(d(),_(r,{key:2,label:"SECRET_ID",prop:"secret_id"},{default:a(()=>[t(p,{modelValue:l(e).secret_id,"onUpdate:modelValue":u[3]||(u[3]=s=>l(e).secret_id=s),placeholder:"\u8BF7\u8F93\u5165SECRET_ID"},null,8,["modelValue"])]),_:1})):m("",!0),t(r,{label:"SECRET_KEY",prop:"secret_key"},{default:a(()=>[t(p,{modelValue:l(e).secret_key,"onUpdate:modelValue":u[4]||(u[4]=s=>l(e).secret_key=s),placeholder:"\u8BF7\u8F93\u5165SECRET_KEY"},null,8,["modelValue"])]),_:1}),t(r,{label:"\u72B6\u6001",prop:"status"},{default:a(()=>[t(b,{modelValue:l(e).status,"onUpdate:modelValue":u[5]||(u[5]=s=>l(e).status=s)},{default:a(()=>[t(E,{label:0},{default:a(()=>[f("\u5173\u95ED")]),_:1}),t(E,{label:1},{default:a(()=>[f("\u5F00\u542F")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1},8,["model"])]),_:1},512)])}}});export{$ as _}; diff --git a/public/admin/assets/edit.vue_vue_type_script_setup_true_lang.7913183a.js b/public/admin/assets/edit.vue_vue_type_script_setup_true_lang.7913183a.js new file mode 100644 index 000000000..effe6ce42 --- /dev/null +++ b/public/admin/assets/edit.vue_vue_type_script_setup_true_lang.7913183a.js @@ -0,0 +1 @@ +import{B as U,C as q,G as N,H as I,v as G,t as P,D as S}from"./element-plus.4328d892.js";import{f as T,h as z,i as H}from"./wx_oa.ec356b57.js";import{P as K}from"./index.b940d6e3.js";import{d as L,s as C,r as O,e as Q,$,o as i,c as j,U as l,L as o,u as t,a as s,K as B,Q as F,R as m}from"./@vue.51d7f2d8.js";const J={class:"edit-popup"},M={class:"flex-1"},W=s("div",{class:"form-tips"},"\u65B9\u4FBF\u901A\u8FC7\u540D\u79F0\u7BA1\u7406\u5173\u6CE8\u56DE\u590D\u5185\u5BB9",-1),X={class:"flex-1"},Y=s("div",{class:"form-tips"},"\u65B9\u4FBF\u901A\u8FC7\u540D\u79F0\u7BA1\u7406\u5173\u6CE8\u56DE\u590D\u5185\u5BB9",-1),Z={class:"flex-1"},ee=s("div",{class:"form-tips"},"\u6A21\u7CCA\u5339\u914D\u65F6\uFF0C\u5173\u952E\u8BCD\u90E8\u5206\u5339\u914D\u7528\u6237\u8F93\u5165\u7684\u5185\u5BB9\u5373\u53EF",-1),ue={class:"flex-1"},te=s("div",{class:"form-tips"},"\u6682\u65F6\u53EA\u652F\u6301\u6587\u672C\u7C7B\u578B",-1),le={class:"flex-1"},oe={class:"flex-1"},ae={class:"flex-1"},se=s("div",{class:"form-tips"}," \u8BBE\u7F6E\u5173\u952E\u8BCD\u5339\u914D\u591A\u6761\u65F6\u56DE\u590D\u7684\u6570\u91CF\uFF0C\u6682\u65F6\u652F\u6301\u56DE\u590D\u4E00\u6761\u5185\u5BB9 ",-1),me=L({__name:"edit",emits:["success","close"],setup(ne,{expose:V,emit:D}){const y=C(),_=C(),c=O("add"),v=Q(()=>c.value=="edit"?"\u7F16\u8F91":"\u65B0\u589E"),u=$({id:"",name:"",reply_type:0,content_type:1,keyword:"",content:"",matching_type:1,status:1,sort:0,reply_num:1}),g={name:[{required:!0,message:"\u8BF7\u8F93\u5165\u89C4\u5219\u540D\u79F0",trigger:["blur"]}],keyword:[{required:!0,message:"\u8BF7\u8F93\u5165\u5173\u952E\u8BCD",trigger:["blur"]}],matching_type:[{required:!0,message:"\u8BF7\u9009\u62E9\u5339\u914D\u65B9\u5F0F",trigger:["blur"]}],content_type:[{required:!0,message:"\u8BF7\u9009\u62E9\u56DE\u590D\u7C7B\u578B",trigger:["blur"]}],content:[{required:!0,message:"\u8BF7\u8F93\u5165\u56DE\u590D\u5185\u5BB9",trigger:["blur"]}]},b=async()=>{var n,e;await((n=y.value)==null?void 0:n.validate()),c.value=="edit"?await T(u):await z(u),(e=_.value)==null||e.close(),D("success")},w=(n="add",e=0)=>{var r;c.value=n,u.reply_type=e,(r=_.value)==null||r.open()},E=n=>{for(const e in u)n[e]!=null&&n[e]!=null&&(u[e]=n[e])},x=async n=>{const e=await H({id:n.id});E(e)},h=()=>{D("close")};return V({open:w,setFormData:E,getDetail:x}),(n,e)=>{const r=U,d=q,p=N,f=I,k=G,R=P,A=S;return i(),j("div",J,[l(K,{ref_key:"popupRef",ref:_,title:t(v),async:!0,width:"500px",onConfirm:b,onClose:h},{default:o(()=>[l(A,{ref_key:"formRef",ref:y,model:t(u),"label-width":"84px",rules:g,class:"pr-10"},{default:o(()=>[l(d,{label:"\u89C4\u5219\u540D\u79F0",prop:"name"},{default:o(()=>[s("div",M,[l(r,{modelValue:t(u).name,"onUpdate:modelValue":e[0]||(e[0]=a=>t(u).name=a),placeholder:"\u8BF7\u8F93\u5165\u89C4\u5219\u540D\u79F0"},null,8,["modelValue"]),W])]),_:1}),t(u).reply_type==2?(i(),B(d,{key:0,label:"\u5173\u952E\u8BCD",prop:"keyword"},{default:o(()=>[s("div",X,[l(r,{modelValue:t(u).keyword,"onUpdate:modelValue":e[1]||(e[1]=a=>t(u).keyword=a),placeholder:"\u8BF7\u8F93\u5165\u5173\u952E\u8BCD"},null,8,["modelValue"]),Y])]),_:1})):F("",!0),t(u).reply_type==2?(i(),B(d,{key:1,label:"\u5339\u914D\u65B9\u5F0F",prop:"matching_type"},{default:o(()=>[s("div",Z,[l(f,{modelValue:t(u).matching_type,"onUpdate:modelValue":e[2]||(e[2]=a=>t(u).matching_type=a)},{default:o(()=>[l(p,{label:1},{default:o(()=>[m("\u5168\u5339\u914D")]),_:1}),l(p,{label:2},{default:o(()=>[m("\u6A21\u7CCA\u5339\u914D")]),_:1})]),_:1},8,["modelValue"]),ee])]),_:1})):F("",!0),l(d,{label:"\u56DE\u590D\u7C7B\u578B",prop:"content_type",min:0},{default:o(()=>[s("div",ue,[l(f,{modelValue:t(u).content_type,"onUpdate:modelValue":e[3]||(e[3]=a=>t(u).content_type=a)},{default:o(()=>[l(p,{label:1},{default:o(()=>[m("\u6587\u672C")]),_:1})]),_:1},8,["modelValue"]),te])]),_:1}),l(d,{label:"\u56DE\u590D\u5185\u5BB9",prop:"content"},{default:o(()=>[s("div",le,[l(r,{modelValue:t(u).content,"onUpdate:modelValue":e[4]||(e[4]=a=>t(u).content=a),autosize:{minRows:4,maxRows:4},type:"textarea",maxlength:"200","show-word-limit":"",placeholder:"\u8BF7\u8F93\u5165\u56DE\u590D\u5185\u5BB9"},null,8,["modelValue"])])]),_:1}),l(d,{label:"\u6392\u5E8F"},{default:o(()=>[s("div",oe,[l(k,{modelValue:t(u).sort,"onUpdate:modelValue":e[5]||(e[5]=a=>t(u).sort=a),min:0,max:9999},null,8,["modelValue"])])]),_:1}),t(u).reply_type==2?(i(),B(d,{key:2,label:"\u56DE\u590D\u6570\u91CF",prop:"reply_num",required:""},{default:o(()=>[s("div",ae,[l(f,{modelValue:t(u).reply_num,"onUpdate:modelValue":e[6]||(e[6]=a=>t(u).reply_num=a)},{default:o(()=>[l(p,{label:1},{default:o(()=>[m("\u56DE\u590D\u5339\u914D\u9996\u8BCD\u6761")]),_:1})]),_:1},8,["modelValue"]),se])]),_:1})):F("",!0),l(d,{label:"\u542F\u7528\u72B6\u6001"},{default:o(()=>[l(R,{modelValue:t(u).status,"onUpdate:modelValue":e[7]||(e[7]=a=>t(u).status=a),"active-value":1,"inactive-value":0},null,8,["modelValue"])]),_:1})]),_:1},8,["model"])]),_:1},8,["title"])])}}});export{me as _}; diff --git a/public/admin/assets/edit.vue_vue_type_script_setup_true_lang.7bb39860.js b/public/admin/assets/edit.vue_vue_type_script_setup_true_lang.7bb39860.js new file mode 100644 index 000000000..cbbb72e0a --- /dev/null +++ b/public/admin/assets/edit.vue_vue_type_script_setup_true_lang.7bb39860.js @@ -0,0 +1 @@ +import{B as E,C as V,v as D,D as C}from"./element-plus.4328d892.js";import{a as y,b as B}from"./role.1c72c4c7.js";import{P as R}from"./index.b940d6e3.js";import{d as h,s as c,r as k,e as g,$ as U,o as I,c as N,U as t,L as u,u as a}from"./@vue.51d7f2d8.js";const P={class:"edit-popup"},j=h({__name:"edit",emits:["success","close"],setup(q,{expose:f,emit:p}){const d=c(),n=c(),r=k("add"),_=g(()=>r.value=="edit"?"\u7F16\u8F91\u89D2\u8272":"\u65B0\u589E\u89D2\u8272"),o=U({id:"",name:"",desc:"",sort:0,menu_id:[]}),F={name:[{required:!0,message:"\u8BF7\u8F93\u5165\u540D\u79F0",trigger:["blur"]}]},v=async()=>{var l,e;await((l=d.value)==null?void 0:l.validate()),r.value=="edit"?await y(o):await B(o),(e=n.value)==null||e.close(),p("success")},w=()=>{p("close")};return f({open:(l="add")=>{var e;r.value=l,(e=n.value)==null||e.open()},setFormData:async l=>{for(const e in o)l[e]!=null&&l[e]!=null&&(o[e]=l[e])}}),(l,e)=>{const i=E,m=V,b=D,x=C;return I(),N("div",P,[t(R,{ref_key:"popupRef",ref:n,title:a(_),async:!0,width:"550px",onConfirm:v,onClose:w},{default:u(()=>[t(x,{class:"ls-form",ref_key:"formRef",ref:d,rules:F,model:a(o),"label-width":"60px"},{default:u(()=>[t(m,{label:"\u540D\u79F0",prop:"name"},{default:u(()=>[t(i,{class:"ls-input",modelValue:a(o).name,"onUpdate:modelValue":e[0]||(e[0]=s=>a(o).name=s),placeholder:"\u8BF7\u8F93\u5165\u540D\u79F0",clearable:""},null,8,["modelValue"])]),_:1}),t(m,{label:"\u5907\u6CE8",prop:"desc"},{default:u(()=>[t(i,{modelValue:a(o).desc,"onUpdate:modelValue":e[1]||(e[1]=s=>a(o).desc=s),type:"textarea",autosize:{minRows:4,maxRows:6},placeholder:"\u8BF7\u8F93\u5165\u5907\u6CE8",maxlength:"200","show-word-limit":""},null,8,["modelValue"])]),_:1}),t(m,{label:"\u6392\u5E8F",prop:"sort"},{default:u(()=>[t(b,{modelValue:a(o).sort,"onUpdate:modelValue":e[2]||(e[2]=s=>a(o).sort=s),min:0,max:9999},null,8,["modelValue"])]),_:1})]),_:1},8,["model"])]),_:1},8,["title"])])}}});export{j as _}; diff --git a/public/admin/assets/edit.vue_vue_type_script_setup_true_lang.84d0829e.js b/public/admin/assets/edit.vue_vue_type_script_setup_true_lang.84d0829e.js new file mode 100644 index 000000000..935487575 --- /dev/null +++ b/public/admin/assets/edit.vue_vue_type_script_setup_true_lang.84d0829e.js @@ -0,0 +1 @@ +import{B as x,C as y,v as R,t as k,D as A}from"./element-plus.4328d892.js";import{a as g,b as U,c as I}from"./article.a2ac2e4b.js";import{P as N}from"./index.b940d6e3.js";import{d as P,s as c,r as S,e as q,$ as L,o as T,c as $,U as a,L as s,u,a as _}from"./@vue.51d7f2d8.js";const j={class:"edit-popup"},z=_("div",{class:"form-tips"},"\u9ED8\u8BA4\u4E3A0\uFF0C \u6570\u503C\u8D8A\u5927\u8D8A\u6392\u524D",-1),O=P({__name:"edit",emits:["success","close"],setup(G,{expose:f,emit:m}){const d=c(),n=c(),r=S("add"),E=q(()=>r.value=="edit"?"\u7F16\u8F91\u680F\u76EE":"\u65B0\u589E\u680F\u76EE"),o=L({id:"",name:"",sort:0,is_show:1}),F={name:[{required:!0,message:"\u8BF7\u8F93\u5165\u680F\u76EE\u540D\u79F0",trigger:["blur"]}]},v=async()=>{var t,e;await((t=d.value)==null?void 0:t.validate()),r.value=="edit"?await g(o):await U(o),(e=n.value)==null||e.close(),m("success")},w=(t="add")=>{var e;r.value=t,(e=n.value)==null||e.open()},p=t=>{for(const e in o)t[e]!=null&&t[e]!=null&&(o[e]=t[e])},D=async t=>{const e=await I({id:t.id});p(e)},C=()=>{m("close")};return f({open:w,setFormData:p,getDetail:D}),(t,e)=>{const V=x,i=y,b=R,h=k,B=A;return T(),$("div",j,[a(N,{ref_key:"popupRef",ref:n,title:u(E),async:!0,width:"550px",onConfirm:v,onClose:C},{default:s(()=>[a(B,{ref_key:"formRef",ref:d,model:u(o),"label-width":"84px",rules:F},{default:s(()=>[a(i,{label:"\u680F\u76EE\u540D\u79F0",prop:"name"},{default:s(()=>[a(V,{modelValue:u(o).name,"onUpdate:modelValue":e[0]||(e[0]=l=>u(o).name=l),placeholder:"\u8BF7\u8F93\u5165\u680F\u76EE\u540D\u79F0",clearable:""},null,8,["modelValue"])]),_:1}),a(i,{label:"\u6392\u5E8F",prop:"sort"},{default:s(()=>[_("div",null,[a(b,{modelValue:u(o).sort,"onUpdate:modelValue":e[1]||(e[1]=l=>u(o).sort=l),min:0,max:9999},null,8,["modelValue"]),z])]),_:1}),a(i,{label:"\u72B6\u6001",prop:"is_show"},{default:s(()=>[a(h,{modelValue:u(o).is_show,"onUpdate:modelValue":e[2]||(e[2]=l=>u(o).is_show=l),"active-value":1,"inactive-value":0},null,8,["modelValue"])]),_:1})]),_:1},8,["model"])]),_:1},8,["title"])])}}});export{O as _}; diff --git a/public/admin/assets/edit.vue_vue_type_script_setup_true_lang.88cd21d7.js b/public/admin/assets/edit.vue_vue_type_script_setup_true_lang.88cd21d7.js new file mode 100644 index 000000000..5c7ab77cd --- /dev/null +++ b/public/admin/assets/edit.vue_vue_type_script_setup_true_lang.88cd21d7.js @@ -0,0 +1 @@ +import{B as E,C as V,v as D,D as C}from"./element-plus.4328d892.js";import{a as y,b as B}from"./role.8d2a6d5e.js";import{P as R}from"./index.5759a1a6.js";import{d as h,s as c,r as k,e as g,$ as U,o as I,c as N,U as t,L as u,u as a}from"./@vue.51d7f2d8.js";const P={class:"edit-popup"},j=h({__name:"edit",emits:["success","close"],setup(q,{expose:f,emit:p}){const d=c(),n=c(),r=k("add"),_=g(()=>r.value=="edit"?"\u7F16\u8F91\u89D2\u8272":"\u65B0\u589E\u89D2\u8272"),o=U({id:"",name:"",desc:"",sort:0,menu_id:[]}),F={name:[{required:!0,message:"\u8BF7\u8F93\u5165\u540D\u79F0",trigger:["blur"]}]},v=async()=>{var l,e;await((l=d.value)==null?void 0:l.validate()),r.value=="edit"?await y(o):await B(o),(e=n.value)==null||e.close(),p("success")},w=()=>{p("close")};return f({open:(l="add")=>{var e;r.value=l,(e=n.value)==null||e.open()},setFormData:async l=>{for(const e in o)l[e]!=null&&l[e]!=null&&(o[e]=l[e])}}),(l,e)=>{const i=E,m=V,b=D,x=C;return I(),N("div",P,[t(R,{ref_key:"popupRef",ref:n,title:a(_),async:!0,width:"550px",onConfirm:v,onClose:w},{default:u(()=>[t(x,{class:"ls-form",ref_key:"formRef",ref:d,rules:F,model:a(o),"label-width":"60px"},{default:u(()=>[t(m,{label:"\u540D\u79F0",prop:"name"},{default:u(()=>[t(i,{class:"ls-input",modelValue:a(o).name,"onUpdate:modelValue":e[0]||(e[0]=s=>a(o).name=s),placeholder:"\u8BF7\u8F93\u5165\u540D\u79F0",clearable:""},null,8,["modelValue"])]),_:1}),t(m,{label:"\u5907\u6CE8",prop:"desc"},{default:u(()=>[t(i,{modelValue:a(o).desc,"onUpdate:modelValue":e[1]||(e[1]=s=>a(o).desc=s),type:"textarea",autosize:{minRows:4,maxRows:6},placeholder:"\u8BF7\u8F93\u5165\u5907\u6CE8",maxlength:"200","show-word-limit":""},null,8,["modelValue"])]),_:1}),t(m,{label:"\u6392\u5E8F",prop:"sort"},{default:u(()=>[t(b,{modelValue:a(o).sort,"onUpdate:modelValue":e[2]||(e[2]=s=>a(o).sort=s),min:0,max:9999},null,8,["modelValue"])]),_:1})]),_:1},8,["model"])]),_:1},8,["title"])])}}});export{j as _}; diff --git a/public/admin/assets/edit.vue_vue_type_script_setup_true_lang.9c4c98df.js b/public/admin/assets/edit.vue_vue_type_script_setup_true_lang.9c4c98df.js new file mode 100644 index 000000000..f77c33515 --- /dev/null +++ b/public/admin/assets/edit.vue_vue_type_script_setup_true_lang.9c4c98df.js @@ -0,0 +1 @@ +import{B as x,C as R,v as k,G as y,H as g,D as U}from"./element-plus.4328d892.js";import{P as h}from"./index.b940d6e3.js";import{b as N,c as q}from"./dict.6c560e38.js";import{d as A,s as _,r as I,e as G,$ as P,o as T,c as z,U as l,L as o,u as a,a as v,R as f}from"./@vue.51d7f2d8.js";const H={class:"edit-popup"},L=v("div",{class:"form-tips"},"\u6570\u503C\u8D8A\u5927\u8D8A\u6392\u524D",-1),Q=A({__name:"edit",emits:["success","close"],setup(S,{expose:B,emit:p}){const i=_(),n=_(),m=I("add"),E=G(()=>m.value=="edit"?"\u7F16\u8F91\u5B57\u5178\u6570\u636E":"\u65B0\u589E\u5B57\u5178\u6570\u636E"),u=P({id:"",type_value:"",name:"",value:"",sort:0,status:1,remark:"",type_id:0}),F={name:[{required:!0,message:"\u8BF7\u8F93\u5165\u6570\u636E\u540D\u79F0",trigger:["blur"]}],value:[{required:!0,message:"\u8BF7\u8F93\u5165\u6570\u636E\u503C",trigger:["blur"]}]},b=async()=>{var t,e;await((t=i.value)==null?void 0:t.validate()),m.value=="edit"?await N(u):await q(u),(e=n.value)==null||e.close(),p("success")},V=()=>{p("close")};return B({open:(t="add")=>{var e;m.value=t,(e=n.value)==null||e.open()},setFormData:t=>{for(const e in u)t[e]!=null&&t[e]!=null&&(u[e]=t[e])}}),(t,e)=>{const d=x,r=R,C=k,c=y,D=g,w=U;return T(),z("div",H,[l(h,{ref_key:"popupRef",ref:n,title:a(E),async:!0,width:"550px",onConfirm:b,onClose:V},{default:o(()=>[l(w,{class:"ls-form",ref_key:"formRef",ref:i,rules:F,model:a(u),"label-width":"84px"},{default:o(()=>[l(r,{label:"\u5B57\u5178\u7C7B\u578B"},{default:o(()=>[l(d,{"model-value":a(u).type_value,placeholder:"\u8BF7\u8F93\u5165\u5B57\u5178\u7C7B\u578B",disabled:""},null,8,["model-value"])]),_:1}),l(r,{label:"\u6570\u636E\u540D\u79F0",prop:"name"},{default:o(()=>[l(d,{modelValue:a(u).name,"onUpdate:modelValue":e[0]||(e[0]=s=>a(u).name=s),placeholder:"\u8BF7\u8F93\u5165\u6570\u636E\u540D\u79F0",clearable:""},null,8,["modelValue"])]),_:1}),l(r,{label:"\u6570\u636E\u503C",prop:"value"},{default:o(()=>[l(d,{modelValue:a(u).value,"onUpdate:modelValue":e[1]||(e[1]=s=>a(u).value=s),placeholder:"\u8BF7\u8F93\u5165\u6570\u636E\u503C",clearable:""},null,8,["modelValue"])]),_:1}),l(r,{label:"\u6392\u5E8F",prop:"sort"},{default:o(()=>[v("div",null,[l(C,{modelValue:a(u).sort,"onUpdate:modelValue":e[2]||(e[2]=s=>a(u).sort=s),min:0,max:9999},null,8,["modelValue"]),L])]),_:1}),l(r,{label:"\u72B6\u6001",required:"",prop:"status"},{default:o(()=>[l(D,{modelValue:a(u).status,"onUpdate:modelValue":e[3]||(e[3]=s=>a(u).status=s)},{default:o(()=>[l(c,{label:1},{default:o(()=>[f("\u6B63\u5E38")]),_:1}),l(c,{label:0},{default:o(()=>[f("\u505C\u7528")]),_:1})]),_:1},8,["modelValue"])]),_:1}),l(r,{label:"\u5907\u6CE8",prop:"remark"},{default:o(()=>[l(d,{modelValue:a(u).remark,"onUpdate:modelValue":e[4]||(e[4]=s=>a(u).remark=s),type:"textarea",autosize:{minRows:4,maxRows:6},clearable:"",maxlength:"200","show-word-limit":""},null,8,["modelValue"])]),_:1})]),_:1},8,["model"])]),_:1},8,["title"])])}}});export{Q as _}; diff --git a/public/admin/assets/edit.vue_vue_type_script_setup_true_lang.a6b599ae.js b/public/admin/assets/edit.vue_vue_type_script_setup_true_lang.a6b599ae.js new file mode 100644 index 000000000..6c4df4804 --- /dev/null +++ b/public/admin/assets/edit.vue_vue_type_script_setup_true_lang.a6b599ae.js @@ -0,0 +1 @@ +import{a3 as I,a7 as P,G as K,H as S,C as $,B as H,v as Q,D as j}from"./element-plus.4328d892.js";import{_ as z}from"./picker.vue_vue_type_script_setup_true_lang.150460d1.js";import{a as J,b as W,c as X,d as Y}from"./menu.a3f35001.js";import{o as Z,M as n,p as uu,t as eu}from"./index.ed71ac09.js";import{P as lu}from"./index.b940d6e3.js";import{d as au,s as y,r as C,e as ou,$ as tu,o as i,c as su,U as a,L as o,u,R as m,K as F,Q as E,a as s}from"./@vue.51d7f2d8.js";const du={class:"edit-popup"},nu={class:"flex-1"},ru=s("div",{class:"form-tips"}," \u8BBF\u95EE\u7684\u8DEF\u7531\u5730\u5740\uFF0C\u5982\uFF1A`user`\uFF0C\u5982\u5916\u7F51\u5730\u5740\u9700\u5185\u94FE\u8BBF\u95EE\u5219\u4EE5`http(s)://`\u5F00\u5934 ",-1),pu={class:"flex-1"},iu=s("div",{class:"form-tips"}," \u8BBF\u95EE\u7684\u7EC4\u4EF6\u8DEF\u5F84\uFF0C\u5982\uFF1A`user/setting`\uFF0C\u9ED8\u8BA4\u5728`views`\u76EE\u5F55\u4E0B ",-1),mu={class:"flex-1"},Fu=s("div",{class:"form-tips"}," \u8BBF\u95EE\u8BE6\u60C5\u9875\u9762\uFF0C\u7F16\u8F91\u9875\u9762\u65F6\uFF0C\u83DC\u5355\u9AD8\u4EAE\u663E\u793A\uFF0C\u5982`/consumer/lists` ",-1),Eu={class:"flex-1"},cu=s("div",{class:"form-tips"}," \u5C06\u4F5C\u4E3Aserver\u7AEFAPI\u9A8C\u6743\u4F7F\u7528\uFF0C\u5982`auth.admin/user`\uFF0C\u8BF7\u8C28\u614E\u4FEE\u6539 ",-1),_u={class:"flex-1"},fu=s("div",{class:"form-tips"},' \u8BBF\u95EE\u8DEF\u7531\u7684\u9ED8\u8BA4\u4F20\u9012\u53C2\u6570\uFF0C\u5982\uFF1A`{"id": 1, "name": "admin"}`\u6216`id=1&name=admin` ',-1),Bu=s("div",{class:"form-tips"},"\u9009\u62E9\u7F13\u5B58\u5219\u4F1A\u88AB`keep-alive`\u7F13\u5B58",-1),Cu=s("div",{class:"form-tips"}," \u9009\u62E9\u9690\u85CF\u5219\u8DEF\u7531\u5C06\u4E0D\u4F1A\u51FA\u73B0\u5728\u4FA7\u8FB9\u680F\uFF0C\u4F46\u4ECD\u7136\u53EF\u4EE5\u8BBF\u95EE ",-1),Du=s("div",{class:"form-tips"},"\u9009\u62E9\u505C\u7528\u5219\u8DEF\u7531\u5C06\u4E0D\u4F1A\u51FA\u73B0\u5728\u4FA7\u8FB9\u680F\uFF0C\u4E5F\u4E0D\u80FD\u88AB\u8BBF\u95EE",-1),bu=s("div",{class:"form-tips"},"\u6570\u503C\u8D8A\u5927\u8D8A\u6392\u524D",-1),gu=au({__name:"edit",emits:["success","close"],setup(Vu,{expose:U,emit:D}){const b=y(),f=y(),B=C("add"),h=ou(()=>B.value=="edit"?"\u7F16\u8F91\u83DC\u5355":"\u65B0\u589E\u83DC\u5355"),V=C(Z()),T=(d,e)=>{const r=d?V.value.filter(c=>c.toLowerCase().includes(d.toLowerCase())):V.value;e(r.map(c=>({value:c})))},l=tu({id:"",pid:0,type:n.CATALOGUE,icon:"",name:"",sort:0,paths:"",perms:"",component:"",selected:"",params:"",is_cache:0,is_show:1,is_disable:0}),g={pid:[{required:!0,message:"\u8BF7\u9009\u62E9\u7236\u7EA7\u83DC\u5355",trigger:["blur","change"]}],name:[{required:!0,message:"\u8BF7\u8F93\u5165\u83DC\u5355\u540D\u79F0",trigger:"blur"}],paths:[{required:!0,message:"\u8BF7\u8F93\u5165\u8DEF\u7531\u5730\u5740",trigger:"blur"}],component:[{required:!0,message:"\u8BF7\u8F93\u5165\u7EC4\u4EF6\u5730\u5740",trigger:"blur"}]},A=C([]),k=async()=>{const d=await J({page_type:0}),e={id:0,name:"\u9876\u7EA7",children:[]};e.children=uu(eu(d.lists).filter(r=>r.type!=n.BUTTON)),A.value.push(e)},w=async()=>{var d,e;await((d=b.value)==null?void 0:d.validate()),B.value=="edit"?await W(l):await X(l),(e=f.value)==null||e.close(),D("success")},x=(d="add")=>{var e;B.value=d,(e=f.value)==null||e.open()},v=d=>{for(const e in l)d[e]!=null&&d[e]!=null&&(l[e]=d[e])},N=async d=>{const e=await Y({id:d.id});v(e)},O=()=>{D("close")};return k(),U({open:x,setFormData:v,getDetail:N}),(d,e)=>{const r=K,c=S,p=$,M=I,_=H,R=z,q=P,L=Q,G=j;return i(),su("div",du,[a(lu,{ref_key:"popupRef",ref:f,title:u(h),async:!0,width:"550px",onConfirm:w,onClose:O},{default:o(()=>[a(G,{ref_key:"formRef",ref:b,model:u(l),"label-width":"80px",rules:g},{default:o(()=>[a(p,{label:"\u83DC\u5355\u7C7B\u578B",prop:"type",required:""},{default:o(()=>[a(c,{modelValue:u(l).type,"onUpdate:modelValue":e[0]||(e[0]=t=>u(l).type=t)},{default:o(()=>[a(r,{label:u(n).CATALOGUE},{default:o(()=>[m("\u76EE\u5F55")]),_:1},8,["label"]),a(r,{label:u(n).MENU},{default:o(()=>[m("\u83DC\u5355")]),_:1},8,["label"]),a(r,{label:u(n).BUTTON},{default:o(()=>[m("\u6309\u94AE")]),_:1},8,["label"])]),_:1},8,["modelValue"])]),_:1}),a(p,{label:"\u7236\u7EA7\u83DC\u5355",prop:"pid"},{default:o(()=>[a(M,{class:"flex-1",modelValue:u(l).pid,"onUpdate:modelValue":e[1]||(e[1]=t=>u(l).pid=t),data:u(A),clearable:"","node-key":"id",props:{label:"name"},"default-expand-all":!0,placeholder:"\u8BF7\u9009\u62E9\u7236\u7EA7\u83DC\u5355","check-strictly":""},null,8,["modelValue","data"])]),_:1}),a(p,{label:"\u83DC\u5355\u540D\u79F0",prop:"name"},{default:o(()=>[a(_,{modelValue:u(l).name,"onUpdate:modelValue":e[2]||(e[2]=t=>u(l).name=t),placeholder:"\u8BF7\u8F93\u5165\u83DC\u5355\u540D\u79F0",clearable:""},null,8,["modelValue"])]),_:1}),u(l).type!=u(n).BUTTON?(i(),F(p,{key:0,label:"\u83DC\u5355\u56FE\u6807",prop:"icon"},{default:o(()=>[a(R,{class:"flex-1",modelValue:u(l).icon,"onUpdate:modelValue":e[3]||(e[3]=t=>u(l).icon=t)},null,8,["modelValue"])]),_:1})):E("",!0),u(l).type!=u(n).BUTTON?(i(),F(p,{key:1,label:"\u8DEF\u7531\u8DEF\u5F84",prop:"paths"},{default:o(()=>[s("div",nu,[a(_,{modelValue:u(l).paths,"onUpdate:modelValue":e[4]||(e[4]=t=>u(l).paths=t),placeholder:"\u8BF7\u8F93\u5165\u8DEF\u7531\u8DEF\u5F84",clearable:""},null,8,["modelValue"]),ru])]),_:1})):E("",!0),u(l).type==u(n).MENU?(i(),F(p,{key:2,label:"\u7EC4\u4EF6\u8DEF\u5F84",prop:"component"},{default:o(()=>[s("div",pu,[a(q,{class:"w-full",modelValue:u(l).component,"onUpdate:modelValue":e[5]||(e[5]=t=>u(l).component=t),"fetch-suggestions":T,clearable:"",placeholder:"\u8BF7\u8F93\u5165\u7EC4\u4EF6\u8DEF\u5F84"},null,8,["modelValue"]),iu])]),_:1})):E("",!0),u(l).type==u(n).MENU?(i(),F(p,{key:3,label:"\u9009\u4E2D\u83DC\u5355",prop:"selected"},{default:o(()=>[s("div",mu,[a(_,{modelValue:u(l).selected,"onUpdate:modelValue":e[6]||(e[6]=t=>u(l).selected=t),placeholder:"\u8BF7\u8F93\u5165\u8DEF\u7531\u8DEF\u5F84",clearable:""},null,8,["modelValue"]),Fu])]),_:1})):E("",!0),u(l).type!=u(n).CATALOGUE?(i(),F(p,{key:4,label:"\u6743\u9650\u5B57\u7B26",prop:"perms"},{default:o(()=>[s("div",Eu,[a(_,{modelValue:u(l).perms,"onUpdate:modelValue":e[7]||(e[7]=t=>u(l).perms=t),placeholder:"\u8BF7\u8F93\u5165\u6743\u9650\u5B57\u7B26",clearable:""},null,8,["modelValue"]),cu])]),_:1})):E("",!0),u(l).type==u(n).MENU?(i(),F(p,{key:5,label:"\u8DEF\u7531\u53C2\u6570",prop:"params"},{default:o(()=>[s("div",null,[s("div",_u,[a(_,{modelValue:u(l).params,"onUpdate:modelValue":e[8]||(e[8]=t=>u(l).params=t),placeholder:"\u8BF7\u8F93\u5165\u8DEF\u7531\u53C2\u6570",clearable:""},null,8,["modelValue"])]),fu])]),_:1})):E("",!0),u(l).type==u(n).MENU?(i(),F(p,{key:6,label:"\u662F\u5426\u7F13\u5B58",prop:"is_cache",required:""},{default:o(()=>[s("div",null,[a(c,{modelValue:u(l).is_cache,"onUpdate:modelValue":e[9]||(e[9]=t=>u(l).is_cache=t)},{default:o(()=>[a(r,{label:1},{default:o(()=>[m("\u7F13\u5B58")]),_:1}),a(r,{label:0},{default:o(()=>[m("\u4E0D\u7F13\u5B58")]),_:1})]),_:1},8,["modelValue"]),Bu])]),_:1})):E("",!0),u(l).type!=u(n).BUTTON?(i(),F(p,{key:7,label:"\u662F\u5426\u663E\u793A",prop:"is_show",required:""},{default:o(()=>[s("div",null,[a(c,{modelValue:u(l).is_show,"onUpdate:modelValue":e[10]||(e[10]=t=>u(l).is_show=t)},{default:o(()=>[a(r,{label:1},{default:o(()=>[m("\u663E\u793A")]),_:1}),a(r,{label:0},{default:o(()=>[m("\u9690\u85CF")]),_:1})]),_:1},8,["modelValue"]),Cu])]),_:1})):E("",!0),u(l).type!=u(n).BUTTON?(i(),F(p,{key:8,label:"\u83DC\u5355\u72B6\u6001",prop:"is_disable",required:""},{default:o(()=>[s("div",null,[a(c,{modelValue:u(l).is_disable,"onUpdate:modelValue":e[11]||(e[11]=t=>u(l).is_disable=t)},{default:o(()=>[a(r,{label:0},{default:o(()=>[m("\u6B63\u5E38")]),_:1}),a(r,{label:1},{default:o(()=>[m("\u505C\u7528")]),_:1})]),_:1},8,["modelValue"]),Du])]),_:1})):E("",!0),a(p,{label:"\u83DC\u5355\u6392\u5E8F",prop:"sort"},{default:o(()=>[s("div",null,[a(L,{modelValue:u(l).sort,"onUpdate:modelValue":e[12]||(e[12]=t=>u(l).sort=t),min:0,max:9999},null,8,["modelValue"]),bu])]),_:1})]),_:1},8,["model"])]),_:1},8,["title"])])}}});export{gu as _}; diff --git a/public/admin/assets/edit.vue_vue_type_script_setup_true_lang.a7690e7b.js b/public/admin/assets/edit.vue_vue_type_script_setup_true_lang.a7690e7b.js new file mode 100644 index 000000000..32fab8922 --- /dev/null +++ b/public/admin/assets/edit.vue_vue_type_script_setup_true_lang.a7690e7b.js @@ -0,0 +1 @@ +import{G as R,C as q,B as N,H as S,w as T,v as G,D as H}from"./element-plus.4328d892.js";import{_ as K}from"./picker.45aea54f.js";import{s as M,g as L}from"./pay.63666d5f.js";import{P as Q}from"./index.fa872673.js";import{d as $,s as A,e as j,$ as z,af as J,o as r,c as E,U as l,L as i,u as o,a as t,T as y,R as _,S as O,M as W,K as X,Q as g}from"./@vue.51d7f2d8.js";const Y={class:"edit-popup"},Z=t("span",{class:"form-tips"},"\u5EFA\u8BAE\u5C3A\u5BF8\uFF1A200*200px",-1),uu=t("div",{class:"form-tips"},"\u6682\u65F6\u53EA\u652F\u6301V3\u7248\u672C",-1),eu=t("div",{class:"form-tips"}," \u6682\u65F6\u53EA\u652F\u6301\u666E\u901A\u5546\u6237\u7C7B\u578B\uFF0C\u670D\u52A1\u5546\u6237\u7C7B\u578B\u6A21\u5F0F\u6682\u4E0D\u652F\u6301 ",-1),lu={class:"flex-1"},ou=t("div",{class:"form-tips"},"\u5FAE\u4FE1\u652F\u4ED8\u5546\u6237\u53F7\uFF08MCHID\uFF09",-1),au=t("span",{class:"form-tips"},"\u5FAE\u4FE1\u652F\u4ED8\u5546\u6237API\u5BC6\u94A5\uFF08paySignKey\uFF09",-1),tu=t("span",{class:"form-tips"}," \u5FAE\u4FE1\u652F\u4ED8\u8BC1\u4E66\uFF08apiclient_cert.pem\uFF09\uFF0C\u524D\u5F80\u5FAE\u4FE1\u5546\u5BB6\u5E73\u53F0\u751F\u6210\u5E76\u9ECF\u8D34\u81F3\u6B64\u5904 ",-1),iu=t("span",{class:"form-tips"}," \u5FAE\u4FE1\u652F\u4ED8\u8BC1\u4E66\u5BC6\u94A5\uFF08apiclient_key.pem\uFF09\uFF0C\u524D\u5F80\u5FAE\u4FE1\u5546\u5BB6\u5E73\u53F0\u751F\u6210\u5E76\u9ECF\u8D34\u81F3\u6B64\u5904 ",-1),nu={class:"mr-[20px]"},su=t("span",{class:"form-tips"}," \u652F\u4ED8\u6388\u6743\u76EE\u5F55\u4EC5\u7528\u4E8E\u53C2\u8003\uFF0C\u590D\u5236\u540E\u524D\u5F80\u5FAE\u4FE1\u5546\u5BB6\u5E73\u53F0\u586B\u5199 ",-1),Fu=t("div",{class:"form-tips"},"\u6682\u65F6\u4EC5\u652F\u6301\u652F\u4ED8\u5B9D\u666E\u901A\u6A21\u5F0F",-1),du=t("div",{class:"form-tips"}," \u6682\u65F6\u53EA\u652F\u6301\u666E\u901A\u5546\u6237\u7C7B\u578B\uFF0C\u670D\u52A1\u5546\u6237\u7C7B\u578B\u6A21\u5F0F\u6682\u4E0D\u652F\u6301 ",-1),pu={class:"flex-1"},ru=t("span",{class:"form-tips"}," \u652F\u4ED8\u5B9D\u5E94\u7528APP_ID ",-1),_u={class:"flex-1"},mu=t("span",{class:"form-tips"},"\u652F\u4ED8\u5B9D\u5E94\u7528\u79C1\u94A5\uFF08private_key\uFF09 ",-1),cu={class:"flex-1"},Eu=t("span",{class:"form-tips"},"\u652F\u4ED8\u5B9D\u516C\u94A5\uFF08ali_public_key\uFF09 ",-1),fu=t("div",{class:"form-tips"},"\u9ED8\u8BA4\u4E3A0\uFF0C \u6570\u503C\u8D8A\u5927\u8D8A\u6392\u524D",-1),Vu=$({__name:"edit",emits:["success","close"],setup(Du,{expose:C,emit:f}){const D=A(),m=A(),c=j(()=>{switch(e.pay_way){case 1:return"\u4F59\u989D\u652F\u4ED8";case 2:return"\u5FAE\u4FE1\u652F\u4ED8";case 3:return"\u652F\u4ED8\u5B9D\u652F\u4ED8"}}),e=z({id:"",pay_way:0,name:"",icon:"",sort:0,remark:"",domain:"",config:{interface_version:"",merchant_type:"",mch_id:"",pay_sign_key:"",apiclient_cert:"",apiclient_key:"",mode:"",app_id:"",private_key:"",ali_public_key:""}}),V={name:[{required:!0,message:"\u8BF7\u8F93\u5165\u663E\u793A\u540D\u79F0"}],"config.mch_id":[{required:!0,message:"\u8BF7\u8F93\u5165\u5FAE\u4FE1\u652F\u4ED8\u5546\u6237\u53F7"}],"config.pay_sign_key":[{required:!0,message:"\u8BF7\u8F93\u5165\u5FAE\u4FE1\u652F\u4ED8\u5546\u6237API\u5BC6\u94A5"}],"config.apiclient_cert":[{required:!0,message:"\u8BF7\u8F93\u5165\u5FAE\u4FE1\u652F\u4ED8\u8BC1\u4E66"}],"config.apiclient_key":[{required:!0,message:"\u8BF7\u8F93\u5165\u5FAE\u4FE1\u652F\u4ED8\u8BC1\u4E66\u5BC6\u94A5"}],"config.app_id":[{required:!0,message:"\u8BF7\u8F93\u5165\u652F\u4ED8\u5B9D\u5E94\u7528ID"}],"config.private_key":[{required:!0,message:"\u8BF7\u8F93\u5165\u652F\u4ED8\u5B9D\u5E94\u7528\u79C1\u94A5"}],"config.ali_public_key":[{required:!0,message:"\u8BF7\u8F93\u5165\u652F\u4ED8\u5B9D\u516C\u94A5"}]},v=async()=>{var s,u;await((s=D.value)==null?void 0:s.validate()),await M(e),(u=m.value)==null||u.close(),f("success")},b=()=>{var s;(s=m.value)==null||s.open()},B=s=>{for(const u in e)s[u]!=null&&s[u]!=null&&(e[u]=s[u])},k=async s=>{const u=await L({id:s.id});B(u)},h=()=>{f("close")};return C({open:b,setFormData:B,getDetail:k}),(s,u)=>{const d=R,n=q,F=N,w=K,p=S,x=T,U=G,I=H,P=J("copy");return r(),E("div",Y,[l(Q,{ref_key:"popupRef",ref:m,title:o(c),async:!0,width:"550px",onConfirm:v,onClose:h},{default:i(()=>[l(I,{ref_key:"formRef",ref:D,model:o(e),"label-width":"84px",rules:V},{default:i(()=>[l(n,{label:"\u652F\u4ED8\u65B9\u5F0F"},{default:i(()=>[l(d,{label:o(c),"model-value":o(c)},null,8,["label","model-value"])]),_:1}),l(n,{label:"\u663E\u793A\u540D\u79F0",prop:"name"},{default:i(()=>[l(F,{modelValue:o(e).name,"onUpdate:modelValue":u[0]||(u[0]=a=>o(e).name=a),placeholder:"\u8BF7\u8F93\u5165\u663E\u793A\u540D\u79F0"},null,8,["modelValue"])]),_:1}),l(n,{label:"\u663E\u793A\u56FE\u6807",prop:"image"},{default:i(()=>[t("div",null,[l(w,{limit:1,disabled:!1,modelValue:o(e).icon,"onUpdate:modelValue":u[1]||(u[1]=a=>o(e).icon=a)},null,8,["modelValue"]),Z])]),_:1}),o(e).pay_way==2?(r(),E(y,{key:0},[l(n,{prop:"config.interface_version",label:"\u5FAE\u4FE1\u652F\u4ED8\u63A5\u53E3\u7248\u672C"},{default:i(()=>[t("div",null,[l(p,{modelValue:o(e).config.interface_version,"onUpdate:modelValue":u[2]||(u[2]=a=>o(e).config.interface_version=a)},{default:i(()=>[l(d,{label:"v3"})]),_:1},8,["modelValue"]),uu])]),_:1}),l(n,{label:"\u5546\u6237\u7C7B\u578B",prop:"config.merchant_type"},{default:i(()=>[t("div",null,[l(p,{modelValue:o(e).config.merchant_type,"onUpdate:modelValue":u[3]||(u[3]=a=>o(e).config.merchant_type=a)},{default:i(()=>[l(d,{label:"ordinary_merchant"},{default:i(()=>[_("\u666E\u901A\u5546\u6237")]),_:1})]),_:1},8,["modelValue"]),eu])]),_:1}),l(n,{label:"\u5FAE\u4FE1\u652F\u4ED8\u5546\u6237\u53F7",prop:"config.mch_id"},{default:i(()=>[t("div",lu,[l(F,{modelValue:o(e).config.mch_id,"onUpdate:modelValue":u[4]||(u[4]=a=>o(e).config.mch_id=a),placeholder:"\u8BF7\u8F93\u5165\u5FAE\u4FE1\u652F\u4ED8\u5546\u6237\u53F7"},null,8,["modelValue"]),ou])]),_:1}),l(n,{label:"\u5546\u6237API\u5BC6\u94A5",prop:"config.pay_sign_key"},{default:i(()=>[l(F,{modelValue:o(e).config.pay_sign_key,"onUpdate:modelValue":u[5]||(u[5]=a=>o(e).config.pay_sign_key=a),placeholder:"\u8BF7\u8F93\u5165\u5FAE\u4FE1\u652F\u4ED8\u5546\u6237API\u5BC6\u94A5"},null,8,["modelValue"]),au]),_:1}),l(n,{label:"\u5FAE\u4FE1\u652F\u4ED8\u8BC1\u4E66",prop:"config.apiclient_cert"},{default:i(()=>[l(F,{type:"textarea",rows:"3",modelValue:o(e).config.apiclient_cert,"onUpdate:modelValue":u[6]||(u[6]=a=>o(e).config.apiclient_cert=a),placeholder:"\u8BF7\u8F93\u5165\u5FAE\u4FE1\u652F\u4ED8\u8BC1\u4E66"},null,8,["modelValue"]),tu]),_:1}),l(n,{label:"\u5FAE\u4FE1\u652F\u4ED8\u8BC1\u4E66\u5BC6\u94A5",prop:"config.apiclient_key"},{default:i(()=>[l(F,{type:"textarea",rows:"3",modelValue:o(e).config.apiclient_key,"onUpdate:modelValue":u[7]||(u[7]=a=>o(e).config.apiclient_key=a),placeholder:"\u8BF7\u8F93\u5165\u5FAE\u4FE1\u652F\u4ED8\u8BC1\u4E66\u5BC6\u94A5"},null,8,["modelValue"]),iu]),_:1}),l(n,{label:"\u652F\u4ED8\u6388\u6743\u76EE\u5F55"},{default:i(()=>[t("div",null,[t("div",null,[t("span",nu,O(o(e).domain),1),W((r(),X(x,{link:"",type:"primary"},{default:i(()=>[_(" \u590D\u5236 ")]),_:1})),[[P,o(e).domain]])]),su])]),_:1})],64)):g("",!0),o(e).pay_way==3?(r(),E(y,{key:1},[l(n,{label:"\u6A21\u5F0F",prop:"config.mode"},{default:i(()=>[t("div",null,[l(p,{modelValue:o(e).config.mode,"onUpdate:modelValue":u[8]||(u[8]=a=>o(e).config.mode=a)},{default:i(()=>[l(d,{label:"normal_mode"},{default:i(()=>[_("\u666E\u901A\u6A21\u5F0F")]),_:1})]),_:1},8,["modelValue"]),Fu])]),_:1}),l(n,{label:"\u5546\u6237\u7C7B\u578B",prop:"config.merchant_type"},{default:i(()=>[t("div",null,[l(p,{modelValue:o(e).config.merchant_type,"onUpdate:modelValue":u[9]||(u[9]=a=>o(e).config.merchant_type=a)},{default:i(()=>[l(d,{label:"ordinary_merchant"},{default:i(()=>[_("\u666E\u901A\u5546\u6237")]),_:1})]),_:1},8,["modelValue"]),du])]),_:1}),l(n,{label:"\u5E94\u7528ID",prop:"config.app_id"},{default:i(()=>[t("div",pu,[l(F,{modelValue:o(e).config.app_id,"onUpdate:modelValue":u[10]||(u[10]=a=>o(e).config.app_id=a),placeholder:"\u8BF7\u8F93\u5165\u652F\u4ED8\u5B9D\u5E94\u7528ID"},null,8,["modelValue"]),ru])]),_:1}),l(n,{label:"\u5E94\u7528\u79C1\u94A5",prop:"config.private_key"},{default:i(()=>[t("div",_u,[l(F,{type:"textarea",rows:"3",modelValue:o(e).config.private_key,"onUpdate:modelValue":u[11]||(u[11]=a=>o(e).config.private_key=a),placeholder:"\u8BF7\u8F93\u5165\u652F\u4ED8\u5B9D\u5E94\u7528\u79C1\u94A5"},null,8,["modelValue"]),mu])]),_:1}),l(n,{label:"\u652F\u4ED8\u5B9D\u516C\u94A5",prop:"config.ali_public_key"},{default:i(()=>[t("div",cu,[l(F,{type:"textarea",rows:"3",modelValue:o(e).config.ali_public_key,"onUpdate:modelValue":u[12]||(u[12]=a=>o(e).config.ali_public_key=a),placeholder:"\u8BF7\u8F93\u5165\u652F\u4ED8\u5B9D\u516C\u94A5"},null,8,["modelValue"]),Eu])]),_:1})],64)):g("",!0),l(n,{label:"\u6392\u5E8F",prop:"sort"},{default:i(()=>[t("div",null,[l(U,{modelValue:o(e).sort,"onUpdate:modelValue":u[13]||(u[13]=a=>o(e).sort=a),min:0,max:9999},null,8,["modelValue"]),fu])]),_:1})]),_:1},8,["model"])]),_:1},8,["title"])])}}});export{Vu as _}; diff --git a/public/admin/assets/edit.vue_vue_type_script_setup_true_lang.acc86aef.js b/public/admin/assets/edit.vue_vue_type_script_setup_true_lang.acc86aef.js new file mode 100644 index 000000000..d1273b5cb --- /dev/null +++ b/public/admin/assets/edit.vue_vue_type_script_setup_true_lang.acc86aef.js @@ -0,0 +1 @@ +import{B as g,C as k,v as R,t as h,D as y}from"./element-plus.4328d892.js";import{j as U,a as A,b as j}from"./post.34f40c78.js";import{P as q}from"./index.5759a1a6.js";import{d as I,s as f,r as N,e as P,$ as S,o as z,c as L,U as o,L as s,u as l,a as F}from"./@vue.51d7f2d8.js";const T={class:"edit-popup"},$=F("div",{class:"form-tips"},"\u9ED8\u8BA4\u4E3A0\uFF0C \u6570\u503C\u8D8A\u5927\u8D8A\u6392\u524D",-1),O=I({__name:"edit",emits:["success","close"],setup(G,{expose:_,emit:p}){const i=f(),n=f(),d=N("add"),D=P(()=>d.value=="edit"?"\u7F16\u8F91\u5C97\u4F4D":"\u65B0\u589E\u5C97\u4F4D"),u=S({id:"",name:"",code:"",sort:0,remark:"",status:1}),C={code:[{required:!0,message:"\u8BF7\u8F93\u5165\u5C97\u4F4D\u7F16\u7801",trigger:["blur"]}],name:[{required:!0,message:"\u8BF7\u8F93\u5165\u5C97\u4F4D\u540D\u79F0",trigger:["blur"]}]},b=async()=>{var t,e;await((t=i.value)==null?void 0:t.validate()),d.value=="edit"?await U(u):await A(u),(e=n.value)==null||e.close(),p("success")},v=(t="add")=>{var e;d.value=t,(e=n.value)==null||e.open()},c=t=>{for(const e in u)t[e]!=null&&t[e]!=null&&(u[e]=t[e])},V=async t=>{const e=await j({id:t.id});c(e)},w=()=>{p("close")};return _({open:v,setFormData:c,getDetail:V}),(t,e)=>{const m=g,r=k,E=R,B=h,x=y;return z(),L("div",T,[o(q,{ref_key:"popupRef",ref:n,title:l(D),async:!0,width:"550px",onConfirm:b,onClose:w},{default:s(()=>[o(x,{ref_key:"formRef",ref:i,model:l(u),"label-width":"84px",rules:C},{default:s(()=>[o(r,{label:"\u5C97\u4F4D\u540D\u79F0",prop:"name"},{default:s(()=>[o(m,{modelValue:l(u).name,"onUpdate:modelValue":e[0]||(e[0]=a=>l(u).name=a),placeholder:"\u8BF7\u8F93\u5165\u5C97\u4F4D\u540D\u79F0",clearable:"",maxlength:100},null,8,["modelValue"])]),_:1}),o(r,{label:"\u5C97\u4F4D\u7F16\u7801",prop:"code"},{default:s(()=>[o(m,{modelValue:l(u).code,"onUpdate:modelValue":e[1]||(e[1]=a=>l(u).code=a),placeholder:"\u8BF7\u8F93\u5165\u5C97\u4F4D\u7F16\u7801",clearable:""},null,8,["modelValue"])]),_:1}),o(r,{label:"\u6392\u5E8F",prop:"sort"},{default:s(()=>[F("div",null,[o(E,{modelValue:l(u).sort,"onUpdate:modelValue":e[2]||(e[2]=a=>l(u).sort=a),min:0,max:9999},null,8,["modelValue"]),$])]),_:1}),o(r,{label:"\u5907\u6CE8",prop:"remark"},{default:s(()=>[o(m,{modelValue:l(u).remark,"onUpdate:modelValue":e[3]||(e[3]=a=>l(u).remark=a),placeholder:"\u8BF7\u8F93\u5165\u5907\u6CE8",type:"textarea",autosize:{minRows:4,maxRows:6},maxlength:"200","show-word-limit":""},null,8,["modelValue"])]),_:1}),o(r,{label:"\u5C97\u4F4D\u72B6\u6001",required:"",prop:"status"},{default:s(()=>[o(B,{modelValue:l(u).status,"onUpdate:modelValue":e[4]||(e[4]=a=>l(u).status=a),"active-value":1,"inactive-value":0},null,8,["modelValue"])]),_:1})]),_:1},8,["model"])]),_:1},8,["title"])])}}});export{O as _}; diff --git a/public/admin/assets/edit.vue_vue_type_script_setup_true_lang.b594ce58.js b/public/admin/assets/edit.vue_vue_type_script_setup_true_lang.b594ce58.js new file mode 100644 index 000000000..c35d271f9 --- /dev/null +++ b/public/admin/assets/edit.vue_vue_type_script_setup_true_lang.b594ce58.js @@ -0,0 +1 @@ +import{B as R,C as k,v as w,G as y,H as g,D as U}from"./element-plus.4328d892.js";import{P as N}from"./index.5759a1a6.js";import{b as q,c as A}from"./dict.58face92.js";import{d as I,s as _,r as h,e as G,$ as P,o as T,c as z,U as l,L as o,u as a,a as v,R as f}from"./@vue.51d7f2d8.js";const H={class:"edit-popup"},L=v("div",{class:"form-tips"},"\u6570\u503C\u8D8A\u5927\u8D8A\u6392\u524D",-1),Q=I({__name:"edit",emits:["success","close"],setup(S,{expose:B,emit:p}){const i=_(),n=_(),m=h("add"),E=G(()=>m.value=="edit"?"\u7F16\u8F91\u5B57\u5178\u6570\u636E":"\u65B0\u589E\u5B57\u5178\u6570\u636E"),u=P({id:"",type_value:"",name:"",value:"",sort:0,status:1,remark:"",type_id:0}),F={name:[{required:!0,message:"\u8BF7\u8F93\u5165\u6570\u636E\u540D\u79F0",trigger:["blur"]}],value:[{required:!0,message:"\u8BF7\u8F93\u5165\u6570\u636E\u503C",trigger:["blur"]}]},b=async()=>{var t,e;await((t=i.value)==null?void 0:t.validate()),m.value=="edit"?await q(u):await A(u),(e=n.value)==null||e.close(),p("success")},V=()=>{p("close")};return B({open:(t="add")=>{var e;m.value=t,(e=n.value)==null||e.open()},setFormData:t=>{for(const e in u)t[e]!=null&&t[e]!=null&&(u[e]=t[e])}}),(t,e)=>{const d=R,r=k,C=w,c=y,D=g,x=U;return T(),z("div",H,[l(N,{ref_key:"popupRef",ref:n,title:a(E),async:!0,width:"550px",onConfirm:b,onClose:V},{default:o(()=>[l(x,{class:"ls-form",ref_key:"formRef",ref:i,rules:F,model:a(u),"label-width":"84px"},{default:o(()=>[l(r,{label:"\u5B57\u5178\u7C7B\u578B"},{default:o(()=>[l(d,{"model-value":a(u).type_value,placeholder:"\u8BF7\u8F93\u5165\u5B57\u5178\u7C7B\u578B",disabled:""},null,8,["model-value"])]),_:1}),l(r,{label:"\u6570\u636E\u540D\u79F0",prop:"name"},{default:o(()=>[l(d,{modelValue:a(u).name,"onUpdate:modelValue":e[0]||(e[0]=s=>a(u).name=s),placeholder:"\u8BF7\u8F93\u5165\u6570\u636E\u540D\u79F0",clearable:""},null,8,["modelValue"])]),_:1}),l(r,{label:"\u6570\u636E\u503C",prop:"value"},{default:o(()=>[l(d,{modelValue:a(u).value,"onUpdate:modelValue":e[1]||(e[1]=s=>a(u).value=s),placeholder:"\u8BF7\u8F93\u5165\u6570\u636E\u503C",clearable:""},null,8,["modelValue"])]),_:1}),l(r,{label:"\u6392\u5E8F",prop:"sort"},{default:o(()=>[v("div",null,[l(C,{modelValue:a(u).sort,"onUpdate:modelValue":e[2]||(e[2]=s=>a(u).sort=s),min:0,max:9999},null,8,["modelValue"]),L])]),_:1}),l(r,{label:"\u72B6\u6001",required:"",prop:"status"},{default:o(()=>[l(D,{modelValue:a(u).status,"onUpdate:modelValue":e[3]||(e[3]=s=>a(u).status=s)},{default:o(()=>[l(c,{label:1},{default:o(()=>[f("\u6B63\u5E38")]),_:1}),l(c,{label:0},{default:o(()=>[f("\u505C\u7528")]),_:1})]),_:1},8,["modelValue"])]),_:1}),l(r,{label:"\u5907\u6CE8",prop:"remark"},{default:o(()=>[l(d,{modelValue:a(u).remark,"onUpdate:modelValue":e[4]||(e[4]=s=>a(u).remark=s),type:"textarea",autosize:{minRows:4,maxRows:6},clearable:""},null,8,["modelValue"])]),_:1})]),_:1},8,["model"])]),_:1},8,["title"])])}}});export{Q as _}; diff --git a/public/admin/assets/edit.vue_vue_type_script_setup_true_lang.b7d103f8.js b/public/admin/assets/edit.vue_vue_type_script_setup_true_lang.b7d103f8.js new file mode 100644 index 000000000..8b43a7618 --- /dev/null +++ b/public/admin/assets/edit.vue_vue_type_script_setup_true_lang.b7d103f8.js @@ -0,0 +1 @@ +import{a3 as k,C as y,B as U,v as R,t as N,D as I}from"./element-plus.4328d892.js";import{d as S,a as q,b as M,c as P}from"./department.5076f65d.js";import{P as T}from"./index.fa872673.js";import{a as $}from"./useDictOptions.a61fcf9f.js";import{d as K,s as f,r as L,e as O,$ as Q,o as _,c as j,U as t,L as s,u as l,K as z,Q as G,a as F}from"./@vue.51d7f2d8.js";const H={class:"edit-popup"},J=F("div",{class:"form-tips"},"\u9ED8\u8BA4\u4E3A0\uFF0C \u6570\u503C\u8D8A\u5927\u8D8A\u6392\u524D",-1),te=K({__name:"edit",emits:["success","close"],setup(W,{expose:D,emit:m}){const c=f(),r=f(),p=L("add"),B=O(()=>p.value=="edit"?"\u7F16\u8F91\u90E8\u95E8":"\u65B0\u589E\u90E8\u95E8"),u=Q({id:"",pid:"",name:"",leader:"",mobile:"",sort:0,status:1}),V={pid:[{required:!0,message:"\u8BF7\u9009\u62E9\u4E0A\u7EA7\u90E8\u95E8",trigger:["change"]}],name:[{required:!0,message:"\u8BF7\u8F93\u5165\u90E8\u95E8\u540D\u79F0",trigger:["blur"]}],mobile:[{validator:(o,e,d)=>{if(e)if(/^[1][3,4,5,6,7,8,9][0-9]{9}$/.test(e))d();else return d(new Error("\u8BF7\u8F93\u5165\u6B63\u786E\u7684\u624B\u673A\u53F7"));else return d()},trigger:["blur"]}]},{optionsData:b}=$({dept:{api:S}}),v=async()=>{var o,e;await((o=c.value)==null?void 0:o.validate()),p.value=="edit"?await q(u):await M(u),(e=r.value)==null||e.close(),m("success")},A=(o="add")=>{var e;p.value=o,(e=r.value)==null||e.open()},E=o=>{for(const e in u)o[e]!=null&&o[e]!=null&&(u[e]=o[e])},g=async o=>{const e=await P({id:o.id});E(e)},w=()=>{m("close")};return D({open:A,setFormData:E,getDetail:g}),(o,e)=>{const d=k,n=y,i=U,x=R,C=N,h=I;return _(),j("div",H,[t(T,{ref_key:"popupRef",ref:r,title:l(B),async:!0,width:"550px",onConfirm:v,onClose:w},{default:s(()=>[t(h,{ref_key:"formRef",ref:c,model:l(u),"label-width":"84px",rules:V},{default:s(()=>[l(u).pid!==0?(_(),z(n,{key:0,label:"\u4E0A\u7EA7\u90E8\u95E8",prop:"pid"},{default:s(()=>[t(d,{class:"flex-1",modelValue:l(u).pid,"onUpdate:modelValue":e[0]||(e[0]=a=>l(u).pid=a),data:l(b).dept,clearable:"","node-key":"id",props:{value:"id",label:"name"},"check-strictly":"","default-expand-all":!0,placeholder:"\u8BF7\u9009\u62E9\u4E0A\u7EA7\u90E8\u95E8"},null,8,["modelValue","data"])]),_:1})):G("",!0),t(n,{label:"\u90E8\u95E8\u540D\u79F0",prop:"name"},{default:s(()=>[t(i,{modelValue:l(u).name,"onUpdate:modelValue":e[1]||(e[1]=a=>l(u).name=a),placeholder:"\u8BF7\u8F93\u5165\u90E8\u95E8\u540D\u79F0",maxlength:100},null,8,["modelValue"])]),_:1}),t(n,{label:"\u8D1F\u8D23\u4EBA",prop:"leader"},{default:s(()=>[t(i,{modelValue:l(u).leader,"onUpdate:modelValue":e[2]||(e[2]=a=>l(u).leader=a),placeholder:"\u8BF7\u8F93\u5165\u8D1F\u8D23\u4EBA\u59D3\u540D",maxlength:30},null,8,["modelValue"])]),_:1}),t(n,{label:"\u8054\u7CFB\u7535\u8BDD",prop:"mobile"},{default:s(()=>[t(i,{modelValue:l(u).mobile,"onUpdate:modelValue":e[3]||(e[3]=a=>l(u).mobile=a),placeholder:"\u8BF7\u8F93\u5165\u8054\u7CFB\u7535\u8BDD"},null,8,["modelValue"])]),_:1}),t(n,{label:"\u6392\u5E8F",prop:"sort"},{default:s(()=>[F("div",null,[t(x,{modelValue:l(u).sort,"onUpdate:modelValue":e[4]||(e[4]=a=>l(u).sort=a),min:0,max:9999},null,8,["modelValue"]),J])]),_:1}),t(n,{label:"\u90E8\u95E8\u72B6\u6001"},{default:s(()=>[t(C,{modelValue:l(u).status,"onUpdate:modelValue":e[5]||(e[5]=a=>l(u).status=a),"active-value":1,"inactive-value":0},null,8,["modelValue"])]),_:1})]),_:1},8,["model"])]),_:1},8,["title"])])}}});export{te as _}; diff --git a/public/admin/assets/edit.vue_vue_type_script_setup_true_lang.bb74dbfc.js b/public/admin/assets/edit.vue_vue_type_script_setup_true_lang.bb74dbfc.js new file mode 100644 index 000000000..81c14465a --- /dev/null +++ b/public/admin/assets/edit.vue_vue_type_script_setup_true_lang.bb74dbfc.js @@ -0,0 +1 @@ +import{G as R,C as q,B as N,H as S,w as T,v as G,D as H}from"./element-plus.4328d892.js";import{_ as K}from"./picker.597494a6.js";import{s as M,g as L}from"./pay.28eb6ca6.js";import{P as Q}from"./index.b940d6e3.js";import{d as $,s as A,e as j,$ as z,af as J,o as r,c as E,U as l,L as i,u as o,a as t,T as y,R as _,S as O,M as W,K as X,Q as g}from"./@vue.51d7f2d8.js";const Y={class:"edit-popup"},Z=t("span",{class:"form-tips"},"\u5EFA\u8BAE\u5C3A\u5BF8\uFF1A200*200px",-1),uu=t("div",{class:"form-tips"},"\u6682\u65F6\u53EA\u652F\u6301V3\u7248\u672C",-1),eu=t("div",{class:"form-tips"}," \u6682\u65F6\u53EA\u652F\u6301\u666E\u901A\u5546\u6237\u7C7B\u578B\uFF0C\u670D\u52A1\u5546\u6237\u7C7B\u578B\u6A21\u5F0F\u6682\u4E0D\u652F\u6301 ",-1),lu={class:"flex-1"},ou=t("div",{class:"form-tips"},"\u5FAE\u4FE1\u652F\u4ED8\u5546\u6237\u53F7\uFF08MCHID\uFF09",-1),au=t("span",{class:"form-tips"},"\u5FAE\u4FE1\u652F\u4ED8\u5546\u6237API\u5BC6\u94A5\uFF08paySignKey\uFF09",-1),tu=t("span",{class:"form-tips"}," \u5FAE\u4FE1\u652F\u4ED8\u8BC1\u4E66\uFF08apiclient_cert.pem\uFF09\uFF0C\u524D\u5F80\u5FAE\u4FE1\u5546\u5BB6\u5E73\u53F0\u751F\u6210\u5E76\u9ECF\u8D34\u81F3\u6B64\u5904 ",-1),iu=t("span",{class:"form-tips"}," \u5FAE\u4FE1\u652F\u4ED8\u8BC1\u4E66\u5BC6\u94A5\uFF08apiclient_key.pem\uFF09\uFF0C\u524D\u5F80\u5FAE\u4FE1\u5546\u5BB6\u5E73\u53F0\u751F\u6210\u5E76\u9ECF\u8D34\u81F3\u6B64\u5904 ",-1),nu={class:"mr-[20px]"},su=t("span",{class:"form-tips"}," \u652F\u4ED8\u6388\u6743\u76EE\u5F55\u4EC5\u7528\u4E8E\u53C2\u8003\uFF0C\u590D\u5236\u540E\u524D\u5F80\u5FAE\u4FE1\u5546\u5BB6\u5E73\u53F0\u586B\u5199 ",-1),Fu=t("div",{class:"form-tips"},"\u6682\u65F6\u4EC5\u652F\u6301\u652F\u4ED8\u5B9D\u666E\u901A\u6A21\u5F0F",-1),du=t("div",{class:"form-tips"}," \u6682\u65F6\u53EA\u652F\u6301\u666E\u901A\u5546\u6237\u7C7B\u578B\uFF0C\u670D\u52A1\u5546\u6237\u7C7B\u578B\u6A21\u5F0F\u6682\u4E0D\u652F\u6301 ",-1),pu={class:"flex-1"},ru=t("span",{class:"form-tips"}," \u652F\u4ED8\u5B9D\u5E94\u7528APP_ID ",-1),_u={class:"flex-1"},mu=t("span",{class:"form-tips"},"\u652F\u4ED8\u5B9D\u5E94\u7528\u79C1\u94A5\uFF08private_key\uFF09 ",-1),cu={class:"flex-1"},Eu=t("span",{class:"form-tips"},"\u652F\u4ED8\u5B9D\u516C\u94A5\uFF08ali_public_key\uFF09 ",-1),fu=t("div",{class:"form-tips"},"\u9ED8\u8BA4\u4E3A0\uFF0C \u6570\u503C\u8D8A\u5927\u8D8A\u6392\u524D",-1),Vu=$({__name:"edit",emits:["success","close"],setup(Du,{expose:C,emit:f}){const D=A(),m=A(),c=j(()=>{switch(e.pay_way){case 1:return"\u4F59\u989D\u652F\u4ED8";case 2:return"\u5FAE\u4FE1\u652F\u4ED8";case 3:return"\u652F\u4ED8\u5B9D\u652F\u4ED8"}}),e=z({id:"",pay_way:0,name:"",icon:"",sort:0,remark:"",domain:"",config:{interface_version:"",merchant_type:"",mch_id:"",pay_sign_key:"",apiclient_cert:"",apiclient_key:"",mode:"",app_id:"",private_key:"",ali_public_key:""}}),V={name:[{required:!0,message:"\u8BF7\u8F93\u5165\u663E\u793A\u540D\u79F0"}],"config.mch_id":[{required:!0,message:"\u8BF7\u8F93\u5165\u5FAE\u4FE1\u652F\u4ED8\u5546\u6237\u53F7"}],"config.pay_sign_key":[{required:!0,message:"\u8BF7\u8F93\u5165\u5FAE\u4FE1\u652F\u4ED8\u5546\u6237API\u5BC6\u94A5"}],"config.apiclient_cert":[{required:!0,message:"\u8BF7\u8F93\u5165\u5FAE\u4FE1\u652F\u4ED8\u8BC1\u4E66"}],"config.apiclient_key":[{required:!0,message:"\u8BF7\u8F93\u5165\u5FAE\u4FE1\u652F\u4ED8\u8BC1\u4E66\u5BC6\u94A5"}],"config.app_id":[{required:!0,message:"\u8BF7\u8F93\u5165\u652F\u4ED8\u5B9D\u5E94\u7528ID"}],"config.private_key":[{required:!0,message:"\u8BF7\u8F93\u5165\u652F\u4ED8\u5B9D\u5E94\u7528\u79C1\u94A5"}],"config.ali_public_key":[{required:!0,message:"\u8BF7\u8F93\u5165\u652F\u4ED8\u5B9D\u516C\u94A5"}]},v=async()=>{var s,u;await((s=D.value)==null?void 0:s.validate()),await M(e),(u=m.value)==null||u.close(),f("success")},b=()=>{var s;(s=m.value)==null||s.open()},B=s=>{for(const u in e)s[u]!=null&&s[u]!=null&&(e[u]=s[u])},k=async s=>{const u=await L({id:s.id});B(u)},h=()=>{f("close")};return C({open:b,setFormData:B,getDetail:k}),(s,u)=>{const d=R,n=q,F=N,w=K,p=S,x=T,U=G,I=H,P=J("copy");return r(),E("div",Y,[l(Q,{ref_key:"popupRef",ref:m,title:o(c),async:!0,width:"550px",onConfirm:v,onClose:h},{default:i(()=>[l(I,{ref_key:"formRef",ref:D,model:o(e),"label-width":"84px",rules:V},{default:i(()=>[l(n,{label:"\u652F\u4ED8\u65B9\u5F0F"},{default:i(()=>[l(d,{label:o(c),"model-value":o(c)},null,8,["label","model-value"])]),_:1}),l(n,{label:"\u663E\u793A\u540D\u79F0",prop:"name"},{default:i(()=>[l(F,{modelValue:o(e).name,"onUpdate:modelValue":u[0]||(u[0]=a=>o(e).name=a),placeholder:"\u8BF7\u8F93\u5165\u663E\u793A\u540D\u79F0"},null,8,["modelValue"])]),_:1}),l(n,{label:"\u663E\u793A\u56FE\u6807",prop:"image"},{default:i(()=>[t("div",null,[l(w,{limit:1,disabled:!1,modelValue:o(e).icon,"onUpdate:modelValue":u[1]||(u[1]=a=>o(e).icon=a)},null,8,["modelValue"]),Z])]),_:1}),o(e).pay_way==2?(r(),E(y,{key:0},[l(n,{prop:"config.interface_version",label:"\u5FAE\u4FE1\u652F\u4ED8\u63A5\u53E3\u7248\u672C"},{default:i(()=>[t("div",null,[l(p,{modelValue:o(e).config.interface_version,"onUpdate:modelValue":u[2]||(u[2]=a=>o(e).config.interface_version=a)},{default:i(()=>[l(d,{label:"v3"})]),_:1},8,["modelValue"]),uu])]),_:1}),l(n,{label:"\u5546\u6237\u7C7B\u578B",prop:"config.merchant_type"},{default:i(()=>[t("div",null,[l(p,{modelValue:o(e).config.merchant_type,"onUpdate:modelValue":u[3]||(u[3]=a=>o(e).config.merchant_type=a)},{default:i(()=>[l(d,{label:"ordinary_merchant"},{default:i(()=>[_("\u666E\u901A\u5546\u6237")]),_:1})]),_:1},8,["modelValue"]),eu])]),_:1}),l(n,{label:"\u5FAE\u4FE1\u652F\u4ED8\u5546\u6237\u53F7",prop:"config.mch_id"},{default:i(()=>[t("div",lu,[l(F,{modelValue:o(e).config.mch_id,"onUpdate:modelValue":u[4]||(u[4]=a=>o(e).config.mch_id=a),placeholder:"\u8BF7\u8F93\u5165\u5FAE\u4FE1\u652F\u4ED8\u5546\u6237\u53F7"},null,8,["modelValue"]),ou])]),_:1}),l(n,{label:"\u5546\u6237API\u5BC6\u94A5",prop:"config.pay_sign_key"},{default:i(()=>[l(F,{modelValue:o(e).config.pay_sign_key,"onUpdate:modelValue":u[5]||(u[5]=a=>o(e).config.pay_sign_key=a),placeholder:"\u8BF7\u8F93\u5165\u5FAE\u4FE1\u652F\u4ED8\u5546\u6237API\u5BC6\u94A5"},null,8,["modelValue"]),au]),_:1}),l(n,{label:"\u5FAE\u4FE1\u652F\u4ED8\u8BC1\u4E66",prop:"config.apiclient_cert"},{default:i(()=>[l(F,{type:"textarea",rows:"3",modelValue:o(e).config.apiclient_cert,"onUpdate:modelValue":u[6]||(u[6]=a=>o(e).config.apiclient_cert=a),placeholder:"\u8BF7\u8F93\u5165\u5FAE\u4FE1\u652F\u4ED8\u8BC1\u4E66"},null,8,["modelValue"]),tu]),_:1}),l(n,{label:"\u5FAE\u4FE1\u652F\u4ED8\u8BC1\u4E66\u5BC6\u94A5",prop:"config.apiclient_key"},{default:i(()=>[l(F,{type:"textarea",rows:"3",modelValue:o(e).config.apiclient_key,"onUpdate:modelValue":u[7]||(u[7]=a=>o(e).config.apiclient_key=a),placeholder:"\u8BF7\u8F93\u5165\u5FAE\u4FE1\u652F\u4ED8\u8BC1\u4E66\u5BC6\u94A5"},null,8,["modelValue"]),iu]),_:1}),l(n,{label:"\u652F\u4ED8\u6388\u6743\u76EE\u5F55"},{default:i(()=>[t("div",null,[t("div",null,[t("span",nu,O(o(e).domain),1),W((r(),X(x,{link:"",type:"primary"},{default:i(()=>[_(" \u590D\u5236 ")]),_:1})),[[P,o(e).domain]])]),su])]),_:1})],64)):g("",!0),o(e).pay_way==3?(r(),E(y,{key:1},[l(n,{label:"\u6A21\u5F0F",prop:"config.mode"},{default:i(()=>[t("div",null,[l(p,{modelValue:o(e).config.mode,"onUpdate:modelValue":u[8]||(u[8]=a=>o(e).config.mode=a)},{default:i(()=>[l(d,{label:"normal_mode"},{default:i(()=>[_("\u666E\u901A\u6A21\u5F0F")]),_:1})]),_:1},8,["modelValue"]),Fu])]),_:1}),l(n,{label:"\u5546\u6237\u7C7B\u578B",prop:"config.merchant_type"},{default:i(()=>[t("div",null,[l(p,{modelValue:o(e).config.merchant_type,"onUpdate:modelValue":u[9]||(u[9]=a=>o(e).config.merchant_type=a)},{default:i(()=>[l(d,{label:"ordinary_merchant"},{default:i(()=>[_("\u666E\u901A\u5546\u6237")]),_:1})]),_:1},8,["modelValue"]),du])]),_:1}),l(n,{label:"\u5E94\u7528ID",prop:"config.app_id"},{default:i(()=>[t("div",pu,[l(F,{modelValue:o(e).config.app_id,"onUpdate:modelValue":u[10]||(u[10]=a=>o(e).config.app_id=a),placeholder:"\u8BF7\u8F93\u5165\u652F\u4ED8\u5B9D\u5E94\u7528ID"},null,8,["modelValue"]),ru])]),_:1}),l(n,{label:"\u5E94\u7528\u79C1\u94A5",prop:"config.private_key"},{default:i(()=>[t("div",_u,[l(F,{type:"textarea",rows:"3",modelValue:o(e).config.private_key,"onUpdate:modelValue":u[11]||(u[11]=a=>o(e).config.private_key=a),placeholder:"\u8BF7\u8F93\u5165\u652F\u4ED8\u5B9D\u5E94\u7528\u79C1\u94A5"},null,8,["modelValue"]),mu])]),_:1}),l(n,{label:"\u652F\u4ED8\u5B9D\u516C\u94A5",prop:"config.ali_public_key"},{default:i(()=>[t("div",cu,[l(F,{type:"textarea",rows:"3",modelValue:o(e).config.ali_public_key,"onUpdate:modelValue":u[12]||(u[12]=a=>o(e).config.ali_public_key=a),placeholder:"\u8BF7\u8F93\u5165\u652F\u4ED8\u5B9D\u516C\u94A5"},null,8,["modelValue"]),Eu])]),_:1})],64)):g("",!0),l(n,{label:"\u6392\u5E8F",prop:"sort"},{default:i(()=>[t("div",null,[l(U,{modelValue:o(e).sort,"onUpdate:modelValue":u[13]||(u[13]=a=>o(e).sort=a),min:0,max:9999},null,8,["modelValue"]),fu])]),_:1})]),_:1},8,["model"])]),_:1},8,["title"])])}}});export{Vu as _}; diff --git a/public/admin/assets/edit.vue_vue_type_script_setup_true_lang.c2e27398.js b/public/admin/assets/edit.vue_vue_type_script_setup_true_lang.c2e27398.js new file mode 100644 index 000000000..20b8c6881 --- /dev/null +++ b/public/admin/assets/edit.vue_vue_type_script_setup_true_lang.c2e27398.js @@ -0,0 +1 @@ +import{a3 as I,a7 as P,G as K,H as S,C as $,B as H,v as Q,D as j}from"./element-plus.4328d892.js";import{_ as z}from"./picker.vue_vue_type_script_setup_true_lang.d458cc42.js";import{a as J,b as W,c as X,d as Y}from"./menu.072eb1d3.js";import{o as Z,M as n,p as uu,t as eu}from"./index.aa9bb752.js";import{P as lu}from"./index.fa872673.js";import{d as au,s as y,r as C,e as ou,$ as tu,o as i,c as su,U as a,L as o,u,R as m,K as F,Q as E,a as s}from"./@vue.51d7f2d8.js";const du={class:"edit-popup"},nu={class:"flex-1"},ru=s("div",{class:"form-tips"}," \u8BBF\u95EE\u7684\u8DEF\u7531\u5730\u5740\uFF0C\u5982\uFF1A`user`\uFF0C\u5982\u5916\u7F51\u5730\u5740\u9700\u5185\u94FE\u8BBF\u95EE\u5219\u4EE5`http(s)://`\u5F00\u5934 ",-1),pu={class:"flex-1"},iu=s("div",{class:"form-tips"}," \u8BBF\u95EE\u7684\u7EC4\u4EF6\u8DEF\u5F84\uFF0C\u5982\uFF1A`user/setting`\uFF0C\u9ED8\u8BA4\u5728`views`\u76EE\u5F55\u4E0B ",-1),mu={class:"flex-1"},Fu=s("div",{class:"form-tips"}," \u8BBF\u95EE\u8BE6\u60C5\u9875\u9762\uFF0C\u7F16\u8F91\u9875\u9762\u65F6\uFF0C\u83DC\u5355\u9AD8\u4EAE\u663E\u793A\uFF0C\u5982`/consumer/lists` ",-1),Eu={class:"flex-1"},cu=s("div",{class:"form-tips"}," \u5C06\u4F5C\u4E3Aserver\u7AEFAPI\u9A8C\u6743\u4F7F\u7528\uFF0C\u5982`auth.admin/user`\uFF0C\u8BF7\u8C28\u614E\u4FEE\u6539 ",-1),_u={class:"flex-1"},fu=s("div",{class:"form-tips"},' \u8BBF\u95EE\u8DEF\u7531\u7684\u9ED8\u8BA4\u4F20\u9012\u53C2\u6570\uFF0C\u5982\uFF1A`{"id": 1, "name": "admin"}`\u6216`id=1&name=admin` ',-1),Bu=s("div",{class:"form-tips"},"\u9009\u62E9\u7F13\u5B58\u5219\u4F1A\u88AB`keep-alive`\u7F13\u5B58",-1),Cu=s("div",{class:"form-tips"}," \u9009\u62E9\u9690\u85CF\u5219\u8DEF\u7531\u5C06\u4E0D\u4F1A\u51FA\u73B0\u5728\u4FA7\u8FB9\u680F\uFF0C\u4F46\u4ECD\u7136\u53EF\u4EE5\u8BBF\u95EE ",-1),Du=s("div",{class:"form-tips"},"\u9009\u62E9\u505C\u7528\u5219\u8DEF\u7531\u5C06\u4E0D\u4F1A\u51FA\u73B0\u5728\u4FA7\u8FB9\u680F\uFF0C\u4E5F\u4E0D\u80FD\u88AB\u8BBF\u95EE",-1),bu=s("div",{class:"form-tips"},"\u6570\u503C\u8D8A\u5927\u8D8A\u6392\u524D",-1),gu=au({__name:"edit",emits:["success","close"],setup(Vu,{expose:U,emit:D}){const b=y(),f=y(),B=C("add"),h=ou(()=>B.value=="edit"?"\u7F16\u8F91\u83DC\u5355":"\u65B0\u589E\u83DC\u5355"),V=C(Z()),T=(d,e)=>{const r=d?V.value.filter(c=>c.toLowerCase().includes(d.toLowerCase())):V.value;e(r.map(c=>({value:c})))},l=tu({id:"",pid:0,type:n.CATALOGUE,icon:"",name:"",sort:0,paths:"",perms:"",component:"",selected:"",params:"",is_cache:0,is_show:1,is_disable:0}),g={pid:[{required:!0,message:"\u8BF7\u9009\u62E9\u7236\u7EA7\u83DC\u5355",trigger:["blur","change"]}],name:[{required:!0,message:"\u8BF7\u8F93\u5165\u83DC\u5355\u540D\u79F0",trigger:"blur"}],paths:[{required:!0,message:"\u8BF7\u8F93\u5165\u8DEF\u7531\u5730\u5740",trigger:"blur"}],component:[{required:!0,message:"\u8BF7\u8F93\u5165\u7EC4\u4EF6\u5730\u5740",trigger:"blur"}]},A=C([]),k=async()=>{const d=await J({page_type:0}),e={id:0,name:"\u9876\u7EA7",children:[]};e.children=uu(eu(d.lists).filter(r=>r.type!=n.BUTTON)),A.value.push(e)},w=async()=>{var d,e;await((d=b.value)==null?void 0:d.validate()),B.value=="edit"?await W(l):await X(l),(e=f.value)==null||e.close(),D("success")},x=(d="add")=>{var e;B.value=d,(e=f.value)==null||e.open()},v=d=>{for(const e in l)d[e]!=null&&d[e]!=null&&(l[e]=d[e])},N=async d=>{const e=await Y({id:d.id});v(e)},O=()=>{D("close")};return k(),U({open:x,setFormData:v,getDetail:N}),(d,e)=>{const r=K,c=S,p=$,M=I,_=H,R=z,q=P,L=Q,G=j;return i(),su("div",du,[a(lu,{ref_key:"popupRef",ref:f,title:u(h),async:!0,width:"550px",onConfirm:w,onClose:O},{default:o(()=>[a(G,{ref_key:"formRef",ref:b,model:u(l),"label-width":"80px",rules:g},{default:o(()=>[a(p,{label:"\u83DC\u5355\u7C7B\u578B",prop:"type",required:""},{default:o(()=>[a(c,{modelValue:u(l).type,"onUpdate:modelValue":e[0]||(e[0]=t=>u(l).type=t)},{default:o(()=>[a(r,{label:u(n).CATALOGUE},{default:o(()=>[m("\u76EE\u5F55")]),_:1},8,["label"]),a(r,{label:u(n).MENU},{default:o(()=>[m("\u83DC\u5355")]),_:1},8,["label"]),a(r,{label:u(n).BUTTON},{default:o(()=>[m("\u6309\u94AE")]),_:1},8,["label"])]),_:1},8,["modelValue"])]),_:1}),a(p,{label:"\u7236\u7EA7\u83DC\u5355",prop:"pid"},{default:o(()=>[a(M,{class:"flex-1",modelValue:u(l).pid,"onUpdate:modelValue":e[1]||(e[1]=t=>u(l).pid=t),data:u(A),clearable:"","node-key":"id",props:{label:"name"},"default-expand-all":!0,placeholder:"\u8BF7\u9009\u62E9\u7236\u7EA7\u83DC\u5355","check-strictly":""},null,8,["modelValue","data"])]),_:1}),a(p,{label:"\u83DC\u5355\u540D\u79F0",prop:"name"},{default:o(()=>[a(_,{modelValue:u(l).name,"onUpdate:modelValue":e[2]||(e[2]=t=>u(l).name=t),placeholder:"\u8BF7\u8F93\u5165\u83DC\u5355\u540D\u79F0",clearable:""},null,8,["modelValue"])]),_:1}),u(l).type!=u(n).BUTTON?(i(),F(p,{key:0,label:"\u83DC\u5355\u56FE\u6807",prop:"icon"},{default:o(()=>[a(R,{class:"flex-1",modelValue:u(l).icon,"onUpdate:modelValue":e[3]||(e[3]=t=>u(l).icon=t)},null,8,["modelValue"])]),_:1})):E("",!0),u(l).type!=u(n).BUTTON?(i(),F(p,{key:1,label:"\u8DEF\u7531\u8DEF\u5F84",prop:"paths"},{default:o(()=>[s("div",nu,[a(_,{modelValue:u(l).paths,"onUpdate:modelValue":e[4]||(e[4]=t=>u(l).paths=t),placeholder:"\u8BF7\u8F93\u5165\u8DEF\u7531\u8DEF\u5F84",clearable:""},null,8,["modelValue"]),ru])]),_:1})):E("",!0),u(l).type==u(n).MENU?(i(),F(p,{key:2,label:"\u7EC4\u4EF6\u8DEF\u5F84",prop:"component"},{default:o(()=>[s("div",pu,[a(q,{class:"w-full",modelValue:u(l).component,"onUpdate:modelValue":e[5]||(e[5]=t=>u(l).component=t),"fetch-suggestions":T,clearable:"",placeholder:"\u8BF7\u8F93\u5165\u7EC4\u4EF6\u8DEF\u5F84"},null,8,["modelValue"]),iu])]),_:1})):E("",!0),u(l).type==u(n).MENU?(i(),F(p,{key:3,label:"\u9009\u4E2D\u83DC\u5355",prop:"selected"},{default:o(()=>[s("div",mu,[a(_,{modelValue:u(l).selected,"onUpdate:modelValue":e[6]||(e[6]=t=>u(l).selected=t),placeholder:"\u8BF7\u8F93\u5165\u8DEF\u7531\u8DEF\u5F84",clearable:""},null,8,["modelValue"]),Fu])]),_:1})):E("",!0),u(l).type!=u(n).CATALOGUE?(i(),F(p,{key:4,label:"\u6743\u9650\u5B57\u7B26",prop:"perms"},{default:o(()=>[s("div",Eu,[a(_,{modelValue:u(l).perms,"onUpdate:modelValue":e[7]||(e[7]=t=>u(l).perms=t),placeholder:"\u8BF7\u8F93\u5165\u6743\u9650\u5B57\u7B26",clearable:""},null,8,["modelValue"]),cu])]),_:1})):E("",!0),u(l).type==u(n).MENU?(i(),F(p,{key:5,label:"\u8DEF\u7531\u53C2\u6570",prop:"params"},{default:o(()=>[s("div",null,[s("div",_u,[a(_,{modelValue:u(l).params,"onUpdate:modelValue":e[8]||(e[8]=t=>u(l).params=t),placeholder:"\u8BF7\u8F93\u5165\u8DEF\u7531\u53C2\u6570",clearable:""},null,8,["modelValue"])]),fu])]),_:1})):E("",!0),u(l).type==u(n).MENU?(i(),F(p,{key:6,label:"\u662F\u5426\u7F13\u5B58",prop:"is_cache",required:""},{default:o(()=>[s("div",null,[a(c,{modelValue:u(l).is_cache,"onUpdate:modelValue":e[9]||(e[9]=t=>u(l).is_cache=t)},{default:o(()=>[a(r,{label:1},{default:o(()=>[m("\u7F13\u5B58")]),_:1}),a(r,{label:0},{default:o(()=>[m("\u4E0D\u7F13\u5B58")]),_:1})]),_:1},8,["modelValue"]),Bu])]),_:1})):E("",!0),u(l).type!=u(n).BUTTON?(i(),F(p,{key:7,label:"\u662F\u5426\u663E\u793A",prop:"is_show",required:""},{default:o(()=>[s("div",null,[a(c,{modelValue:u(l).is_show,"onUpdate:modelValue":e[10]||(e[10]=t=>u(l).is_show=t)},{default:o(()=>[a(r,{label:1},{default:o(()=>[m("\u663E\u793A")]),_:1}),a(r,{label:0},{default:o(()=>[m("\u9690\u85CF")]),_:1})]),_:1},8,["modelValue"]),Cu])]),_:1})):E("",!0),u(l).type!=u(n).BUTTON?(i(),F(p,{key:8,label:"\u83DC\u5355\u72B6\u6001",prop:"is_disable",required:""},{default:o(()=>[s("div",null,[a(c,{modelValue:u(l).is_disable,"onUpdate:modelValue":e[11]||(e[11]=t=>u(l).is_disable=t)},{default:o(()=>[a(r,{label:0},{default:o(()=>[m("\u6B63\u5E38")]),_:1}),a(r,{label:1},{default:o(()=>[m("\u505C\u7528")]),_:1})]),_:1},8,["modelValue"]),Du])]),_:1})):E("",!0),a(p,{label:"\u83DC\u5355\u6392\u5E8F",prop:"sort"},{default:o(()=>[s("div",null,[a(L,{modelValue:u(l).sort,"onUpdate:modelValue":e[12]||(e[12]=t=>u(l).sort=t),min:0,max:9999},null,8,["modelValue"]),bu])]),_:1})]),_:1},8,["model"])]),_:1},8,["title"])])}}});export{gu as _}; diff --git a/public/admin/assets/edit.vue_vue_type_script_setup_true_lang.c4a9e1a8.js b/public/admin/assets/edit.vue_vue_type_script_setup_true_lang.c4a9e1a8.js new file mode 100644 index 000000000..05e7a1e82 --- /dev/null +++ b/public/admin/assets/edit.vue_vue_type_script_setup_true_lang.c4a9e1a8.js @@ -0,0 +1 @@ +import{a3 as k,C as y,B as U,v as R,t as N,D as I}from"./element-plus.4328d892.js";import{d as S,a as q,b as M,c as P}from"./department.ea28aaf8.js";import{P as T}from"./index.5759a1a6.js";import{a as $}from"./useDictOptions.a45fc8ac.js";import{d as K,s as f,r as L,e as O,$ as Q,o as _,c as j,U as t,L as s,u as l,K as z,Q as G,a as F}from"./@vue.51d7f2d8.js";const H={class:"edit-popup"},J=F("div",{class:"form-tips"},"\u9ED8\u8BA4\u4E3A0\uFF0C \u6570\u503C\u8D8A\u5927\u8D8A\u6392\u524D",-1),te=K({__name:"edit",emits:["success","close"],setup(W,{expose:D,emit:m}){const c=f(),r=f(),p=L("add"),B=O(()=>p.value=="edit"?"\u7F16\u8F91\u90E8\u95E8":"\u65B0\u589E\u90E8\u95E8"),u=Q({id:"",pid:"",name:"",leader:"",mobile:"",sort:0,status:1}),V={pid:[{required:!0,message:"\u8BF7\u9009\u62E9\u4E0A\u7EA7\u90E8\u95E8",trigger:["change"]}],name:[{required:!0,message:"\u8BF7\u8F93\u5165\u90E8\u95E8\u540D\u79F0",trigger:["blur"]}],mobile:[{validator:(o,e,d)=>{if(e)if(/^[1][3,4,5,6,7,8,9][0-9]{9}$/.test(e))d();else return d(new Error("\u8BF7\u8F93\u5165\u6B63\u786E\u7684\u624B\u673A\u53F7"));else return d()},trigger:["blur"]}]},{optionsData:b}=$({dept:{api:S}}),v=async()=>{var o,e;await((o=c.value)==null?void 0:o.validate()),p.value=="edit"?await q(u):await M(u),(e=r.value)==null||e.close(),m("success")},A=(o="add")=>{var e;p.value=o,(e=r.value)==null||e.open()},E=o=>{for(const e in u)o[e]!=null&&o[e]!=null&&(u[e]=o[e])},g=async o=>{const e=await P({id:o.id});E(e)},w=()=>{m("close")};return D({open:A,setFormData:E,getDetail:g}),(o,e)=>{const d=k,n=y,i=U,x=R,C=N,h=I;return _(),j("div",H,[t(T,{ref_key:"popupRef",ref:r,title:l(B),async:!0,width:"550px",onConfirm:v,onClose:w},{default:s(()=>[t(h,{ref_key:"formRef",ref:c,model:l(u),"label-width":"84px",rules:V},{default:s(()=>[l(u).pid!==0?(_(),z(n,{key:0,label:"\u4E0A\u7EA7\u90E8\u95E8",prop:"pid"},{default:s(()=>[t(d,{class:"flex-1",modelValue:l(u).pid,"onUpdate:modelValue":e[0]||(e[0]=a=>l(u).pid=a),data:l(b).dept,clearable:"","node-key":"id",props:{value:"id",label:"name"},"check-strictly":"","default-expand-all":!0,placeholder:"\u8BF7\u9009\u62E9\u4E0A\u7EA7\u90E8\u95E8"},null,8,["modelValue","data"])]),_:1})):G("",!0),t(n,{label:"\u90E8\u95E8\u540D\u79F0",prop:"name"},{default:s(()=>[t(i,{modelValue:l(u).name,"onUpdate:modelValue":e[1]||(e[1]=a=>l(u).name=a),placeholder:"\u8BF7\u8F93\u5165\u90E8\u95E8\u540D\u79F0",maxlength:100},null,8,["modelValue"])]),_:1}),t(n,{label:"\u8D1F\u8D23\u4EBA",prop:"leader"},{default:s(()=>[t(i,{modelValue:l(u).leader,"onUpdate:modelValue":e[2]||(e[2]=a=>l(u).leader=a),placeholder:"\u8BF7\u8F93\u5165\u8D1F\u8D23\u4EBA\u59D3\u540D",maxlength:30},null,8,["modelValue"])]),_:1}),t(n,{label:"\u8054\u7CFB\u7535\u8BDD",prop:"mobile"},{default:s(()=>[t(i,{modelValue:l(u).mobile,"onUpdate:modelValue":e[3]||(e[3]=a=>l(u).mobile=a),placeholder:"\u8BF7\u8F93\u5165\u8054\u7CFB\u7535\u8BDD"},null,8,["modelValue"])]),_:1}),t(n,{label:"\u6392\u5E8F",prop:"sort"},{default:s(()=>[F("div",null,[t(x,{modelValue:l(u).sort,"onUpdate:modelValue":e[4]||(e[4]=a=>l(u).sort=a),min:0,max:9999},null,8,["modelValue"]),J])]),_:1}),t(n,{label:"\u90E8\u95E8\u72B6\u6001"},{default:s(()=>[t(C,{modelValue:l(u).status,"onUpdate:modelValue":e[5]||(e[5]=a=>l(u).status=a),"active-value":1,"inactive-value":0},null,8,["modelValue"])]),_:1})]),_:1},8,["model"])]),_:1},8,["title"])])}}});export{te as _}; diff --git a/public/admin/assets/edit.vue_vue_type_script_setup_true_lang.caf54865.js b/public/admin/assets/edit.vue_vue_type_script_setup_true_lang.caf54865.js new file mode 100644 index 000000000..9625393e4 --- /dev/null +++ b/public/admin/assets/edit.vue_vue_type_script_setup_true_lang.caf54865.js @@ -0,0 +1 @@ +import{B as U,C as q,G as N,H as I,v as G,t as P,D as S}from"./element-plus.4328d892.js";import{f as T,h as z,i as H}from"./wx_oa.dfa7359b.js";import{P as K}from"./index.fa872673.js";import{d as L,s as C,r as O,e as Q,$,o as i,c as j,U as l,L as o,u as t,a as s,K as B,Q as F,R as m}from"./@vue.51d7f2d8.js";const J={class:"edit-popup"},M={class:"flex-1"},W=s("div",{class:"form-tips"},"\u65B9\u4FBF\u901A\u8FC7\u540D\u79F0\u7BA1\u7406\u5173\u6CE8\u56DE\u590D\u5185\u5BB9",-1),X={class:"flex-1"},Y=s("div",{class:"form-tips"},"\u65B9\u4FBF\u901A\u8FC7\u540D\u79F0\u7BA1\u7406\u5173\u6CE8\u56DE\u590D\u5185\u5BB9",-1),Z={class:"flex-1"},ee=s("div",{class:"form-tips"},"\u6A21\u7CCA\u5339\u914D\u65F6\uFF0C\u5173\u952E\u8BCD\u90E8\u5206\u5339\u914D\u7528\u6237\u8F93\u5165\u7684\u5185\u5BB9\u5373\u53EF",-1),ue={class:"flex-1"},te=s("div",{class:"form-tips"},"\u6682\u65F6\u53EA\u652F\u6301\u6587\u672C\u7C7B\u578B",-1),le={class:"flex-1"},oe={class:"flex-1"},ae={class:"flex-1"},se=s("div",{class:"form-tips"}," \u8BBE\u7F6E\u5173\u952E\u8BCD\u5339\u914D\u591A\u6761\u65F6\u56DE\u590D\u7684\u6570\u91CF\uFF0C\u6682\u65F6\u652F\u6301\u56DE\u590D\u4E00\u6761\u5185\u5BB9 ",-1),me=L({__name:"edit",emits:["success","close"],setup(ne,{expose:V,emit:D}){const y=C(),_=C(),c=O("add"),v=Q(()=>c.value=="edit"?"\u7F16\u8F91":"\u65B0\u589E"),u=$({id:"",name:"",reply_type:0,content_type:1,keyword:"",content:"",matching_type:1,status:1,sort:0,reply_num:1}),g={name:[{required:!0,message:"\u8BF7\u8F93\u5165\u89C4\u5219\u540D\u79F0",trigger:["blur"]}],keyword:[{required:!0,message:"\u8BF7\u8F93\u5165\u5173\u952E\u8BCD",trigger:["blur"]}],matching_type:[{required:!0,message:"\u8BF7\u9009\u62E9\u5339\u914D\u65B9\u5F0F",trigger:["blur"]}],content_type:[{required:!0,message:"\u8BF7\u9009\u62E9\u56DE\u590D\u7C7B\u578B",trigger:["blur"]}],content:[{required:!0,message:"\u8BF7\u8F93\u5165\u56DE\u590D\u5185\u5BB9",trigger:["blur"]}]},b=async()=>{var n,e;await((n=y.value)==null?void 0:n.validate()),c.value=="edit"?await T(u):await z(u),(e=_.value)==null||e.close(),D("success")},w=(n="add",e=0)=>{var r;c.value=n,u.reply_type=e,(r=_.value)==null||r.open()},E=n=>{for(const e in u)n[e]!=null&&n[e]!=null&&(u[e]=n[e])},x=async n=>{const e=await H({id:n.id});E(e)},h=()=>{D("close")};return V({open:w,setFormData:E,getDetail:x}),(n,e)=>{const r=U,d=q,p=N,f=I,k=G,R=P,A=S;return i(),j("div",J,[l(K,{ref_key:"popupRef",ref:_,title:t(v),async:!0,width:"500px",onConfirm:b,onClose:h},{default:o(()=>[l(A,{ref_key:"formRef",ref:y,model:t(u),"label-width":"84px",rules:g,class:"pr-10"},{default:o(()=>[l(d,{label:"\u89C4\u5219\u540D\u79F0",prop:"name"},{default:o(()=>[s("div",M,[l(r,{modelValue:t(u).name,"onUpdate:modelValue":e[0]||(e[0]=a=>t(u).name=a),placeholder:"\u8BF7\u8F93\u5165\u89C4\u5219\u540D\u79F0"},null,8,["modelValue"]),W])]),_:1}),t(u).reply_type==2?(i(),B(d,{key:0,label:"\u5173\u952E\u8BCD",prop:"keyword"},{default:o(()=>[s("div",X,[l(r,{modelValue:t(u).keyword,"onUpdate:modelValue":e[1]||(e[1]=a=>t(u).keyword=a),placeholder:"\u8BF7\u8F93\u5165\u5173\u952E\u8BCD"},null,8,["modelValue"]),Y])]),_:1})):F("",!0),t(u).reply_type==2?(i(),B(d,{key:1,label:"\u5339\u914D\u65B9\u5F0F",prop:"matching_type"},{default:o(()=>[s("div",Z,[l(f,{modelValue:t(u).matching_type,"onUpdate:modelValue":e[2]||(e[2]=a=>t(u).matching_type=a)},{default:o(()=>[l(p,{label:1},{default:o(()=>[m("\u5168\u5339\u914D")]),_:1}),l(p,{label:2},{default:o(()=>[m("\u6A21\u7CCA\u5339\u914D")]),_:1})]),_:1},8,["modelValue"]),ee])]),_:1})):F("",!0),l(d,{label:"\u56DE\u590D\u7C7B\u578B",prop:"content_type",min:0},{default:o(()=>[s("div",ue,[l(f,{modelValue:t(u).content_type,"onUpdate:modelValue":e[3]||(e[3]=a=>t(u).content_type=a)},{default:o(()=>[l(p,{label:1},{default:o(()=>[m("\u6587\u672C")]),_:1})]),_:1},8,["modelValue"]),te])]),_:1}),l(d,{label:"\u56DE\u590D\u5185\u5BB9",prop:"content"},{default:o(()=>[s("div",le,[l(r,{modelValue:t(u).content,"onUpdate:modelValue":e[4]||(e[4]=a=>t(u).content=a),autosize:{minRows:4,maxRows:4},type:"textarea",maxlength:"200","show-word-limit":"",placeholder:"\u8BF7\u8F93\u5165\u56DE\u590D\u5185\u5BB9"},null,8,["modelValue"])])]),_:1}),l(d,{label:"\u6392\u5E8F"},{default:o(()=>[s("div",oe,[l(k,{modelValue:t(u).sort,"onUpdate:modelValue":e[5]||(e[5]=a=>t(u).sort=a),min:0,max:9999},null,8,["modelValue"])])]),_:1}),t(u).reply_type==2?(i(),B(d,{key:2,label:"\u56DE\u590D\u6570\u91CF",prop:"reply_num",required:""},{default:o(()=>[s("div",ae,[l(f,{modelValue:t(u).reply_num,"onUpdate:modelValue":e[6]||(e[6]=a=>t(u).reply_num=a)},{default:o(()=>[l(p,{label:1},{default:o(()=>[m("\u56DE\u590D\u5339\u914D\u9996\u8BCD\u6761")]),_:1})]),_:1},8,["modelValue"]),se])]),_:1})):F("",!0),l(d,{label:"\u542F\u7528\u72B6\u6001"},{default:o(()=>[l(R,{modelValue:t(u).status,"onUpdate:modelValue":e[7]||(e[7]=a=>t(u).status=a),"active-value":1,"inactive-value":0},null,8,["modelValue"])]),_:1})]),_:1},8,["model"])]),_:1},8,["title"])])}}});export{me as _}; diff --git a/public/admin/assets/edit.vue_vue_type_script_setup_true_lang.cfc20a70.js b/public/admin/assets/edit.vue_vue_type_script_setup_true_lang.cfc20a70.js new file mode 100644 index 000000000..05e340e99 --- /dev/null +++ b/public/admin/assets/edit.vue_vue_type_script_setup_true_lang.cfc20a70.js @@ -0,0 +1 @@ +import{B as U,C as q,G as N,H as I,v as G,t as P,D as S}from"./element-plus.4328d892.js";import{f as T,h as z,i as H}from"./wx_oa.115c1d98.js";import{P as K}from"./index.5759a1a6.js";import{d as L,s as C,r as O,e as Q,$,o as i,c as j,U as l,L as o,u as t,a as s,K as B,Q as F,R as m}from"./@vue.51d7f2d8.js";const J={class:"edit-popup"},M={class:"flex-1"},W=s("div",{class:"form-tips"},"\u65B9\u4FBF\u901A\u8FC7\u540D\u79F0\u7BA1\u7406\u5173\u6CE8\u56DE\u590D\u5185\u5BB9",-1),X={class:"flex-1"},Y=s("div",{class:"form-tips"},"\u65B9\u4FBF\u901A\u8FC7\u540D\u79F0\u7BA1\u7406\u5173\u6CE8\u56DE\u590D\u5185\u5BB9",-1),Z={class:"flex-1"},ee=s("div",{class:"form-tips"},"\u6A21\u7CCA\u5339\u914D\u65F6\uFF0C\u5173\u952E\u8BCD\u90E8\u5206\u5339\u914D\u7528\u6237\u8F93\u5165\u7684\u5185\u5BB9\u5373\u53EF",-1),ue={class:"flex-1"},te=s("div",{class:"form-tips"},"\u6682\u65F6\u53EA\u652F\u6301\u6587\u672C\u7C7B\u578B",-1),le={class:"flex-1"},oe={class:"flex-1"},ae={class:"flex-1"},se=s("div",{class:"form-tips"}," \u8BBE\u7F6E\u5173\u952E\u8BCD\u5339\u914D\u591A\u6761\u65F6\u56DE\u590D\u7684\u6570\u91CF\uFF0C\u6682\u65F6\u652F\u6301\u56DE\u590D\u4E00\u6761\u5185\u5BB9 ",-1),me=L({__name:"edit",emits:["success","close"],setup(ne,{expose:V,emit:D}){const y=C(),_=C(),c=O("add"),v=Q(()=>c.value=="edit"?"\u7F16\u8F91":"\u65B0\u589E"),u=$({id:"",name:"",reply_type:0,content_type:1,keyword:"",content:"",matching_type:1,status:1,sort:0,reply_num:1}),g={name:[{required:!0,message:"\u8BF7\u8F93\u5165\u89C4\u5219\u540D\u79F0",trigger:["blur"]}],keyword:[{required:!0,message:"\u8BF7\u8F93\u5165\u5173\u952E\u8BCD",trigger:["blur"]}],matching_type:[{required:!0,message:"\u8BF7\u9009\u62E9\u5339\u914D\u65B9\u5F0F",trigger:["blur"]}],content_type:[{required:!0,message:"\u8BF7\u9009\u62E9\u56DE\u590D\u7C7B\u578B",trigger:["blur"]}],content:[{required:!0,message:"\u8BF7\u8F93\u5165\u56DE\u590D\u5185\u5BB9",trigger:["blur"]}]},b=async()=>{var n,e;await((n=y.value)==null?void 0:n.validate()),c.value=="edit"?await T(u):await z(u),(e=_.value)==null||e.close(),D("success")},w=(n="add",e=0)=>{var r;c.value=n,u.reply_type=e,(r=_.value)==null||r.open()},E=n=>{for(const e in u)n[e]!=null&&n[e]!=null&&(u[e]=n[e])},x=async n=>{const e=await H({id:n.id});E(e)},h=()=>{D("close")};return V({open:w,setFormData:E,getDetail:x}),(n,e)=>{const r=U,d=q,p=N,f=I,k=G,R=P,A=S;return i(),j("div",J,[l(K,{ref_key:"popupRef",ref:_,title:t(v),async:!0,width:"500px",onConfirm:b,onClose:h},{default:o(()=>[l(A,{ref_key:"formRef",ref:y,model:t(u),"label-width":"84px",rules:g,class:"pr-10"},{default:o(()=>[l(d,{label:"\u89C4\u5219\u540D\u79F0",prop:"name"},{default:o(()=>[s("div",M,[l(r,{modelValue:t(u).name,"onUpdate:modelValue":e[0]||(e[0]=a=>t(u).name=a),placeholder:"\u8BF7\u8F93\u5165\u89C4\u5219\u540D\u79F0"},null,8,["modelValue"]),W])]),_:1}),t(u).reply_type==2?(i(),B(d,{key:0,label:"\u5173\u952E\u8BCD",prop:"keyword"},{default:o(()=>[s("div",X,[l(r,{modelValue:t(u).keyword,"onUpdate:modelValue":e[1]||(e[1]=a=>t(u).keyword=a),placeholder:"\u8BF7\u8F93\u5165\u5173\u952E\u8BCD"},null,8,["modelValue"]),Y])]),_:1})):F("",!0),t(u).reply_type==2?(i(),B(d,{key:1,label:"\u5339\u914D\u65B9\u5F0F",prop:"matching_type"},{default:o(()=>[s("div",Z,[l(f,{modelValue:t(u).matching_type,"onUpdate:modelValue":e[2]||(e[2]=a=>t(u).matching_type=a)},{default:o(()=>[l(p,{label:1},{default:o(()=>[m("\u5168\u5339\u914D")]),_:1}),l(p,{label:2},{default:o(()=>[m("\u6A21\u7CCA\u5339\u914D")]),_:1})]),_:1},8,["modelValue"]),ee])]),_:1})):F("",!0),l(d,{label:"\u56DE\u590D\u7C7B\u578B",prop:"content_type",min:0},{default:o(()=>[s("div",ue,[l(f,{modelValue:t(u).content_type,"onUpdate:modelValue":e[3]||(e[3]=a=>t(u).content_type=a)},{default:o(()=>[l(p,{label:1},{default:o(()=>[m("\u6587\u672C")]),_:1})]),_:1},8,["modelValue"]),te])]),_:1}),l(d,{label:"\u56DE\u590D\u5185\u5BB9",prop:"content"},{default:o(()=>[s("div",le,[l(r,{modelValue:t(u).content,"onUpdate:modelValue":e[4]||(e[4]=a=>t(u).content=a),autosize:{minRows:4,maxRows:4},type:"textarea",maxlength:"200","show-word-limit":"",placeholder:"\u8BF7\u8F93\u5165\u56DE\u590D\u5185\u5BB9"},null,8,["modelValue"])])]),_:1}),l(d,{label:"\u6392\u5E8F"},{default:o(()=>[s("div",oe,[l(k,{modelValue:t(u).sort,"onUpdate:modelValue":e[5]||(e[5]=a=>t(u).sort=a),min:0,max:9999},null,8,["modelValue"])])]),_:1}),t(u).reply_type==2?(i(),B(d,{key:2,label:"\u56DE\u590D\u6570\u91CF",prop:"reply_num",required:""},{default:o(()=>[s("div",ae,[l(f,{modelValue:t(u).reply_num,"onUpdate:modelValue":e[6]||(e[6]=a=>t(u).reply_num=a)},{default:o(()=>[l(p,{label:1},{default:o(()=>[m("\u56DE\u590D\u5339\u914D\u9996\u8BCD\u6761")]),_:1})]),_:1},8,["modelValue"]),se])]),_:1})):F("",!0),l(d,{label:"\u542F\u7528\u72B6\u6001"},{default:o(()=>[l(R,{modelValue:t(u).status,"onUpdate:modelValue":e[7]||(e[7]=a=>t(u).status=a),"active-value":1,"inactive-value":0},null,8,["modelValue"])]),_:1})]),_:1},8,["model"])]),_:1},8,["title"])])}}});export{me as _}; diff --git a/public/admin/assets/edit.vue_vue_type_script_setup_true_lang.d84dd9bf.js b/public/admin/assets/edit.vue_vue_type_script_setup_true_lang.d84dd9bf.js new file mode 100644 index 000000000..9a90f714b --- /dev/null +++ b/public/admin/assets/edit.vue_vue_type_script_setup_true_lang.d84dd9bf.js @@ -0,0 +1 @@ +import{a3 as k,C as y,B as U,v as R,t as N,D as I}from"./element-plus.4328d892.js";import{d as S,a as q,b as M,c as P}from"./department.4e17bcb6.js";import{P as T}from"./index.b940d6e3.js";import{a as $}from"./useDictOptions.8d37e54b.js";import{d as K,s as f,r as L,e as O,$ as Q,o as _,c as j,U as t,L as s,u as l,K as z,Q as G,a as F}from"./@vue.51d7f2d8.js";const H={class:"edit-popup"},J=F("div",{class:"form-tips"},"\u9ED8\u8BA4\u4E3A0\uFF0C \u6570\u503C\u8D8A\u5927\u8D8A\u6392\u524D",-1),te=K({__name:"edit",emits:["success","close"],setup(W,{expose:D,emit:m}){const c=f(),r=f(),p=L("add"),B=O(()=>p.value=="edit"?"\u7F16\u8F91\u90E8\u95E8":"\u65B0\u589E\u90E8\u95E8"),u=Q({id:"",pid:"",name:"",leader:"",mobile:"",sort:0,status:1}),V={pid:[{required:!0,message:"\u8BF7\u9009\u62E9\u4E0A\u7EA7\u90E8\u95E8",trigger:["change"]}],name:[{required:!0,message:"\u8BF7\u8F93\u5165\u90E8\u95E8\u540D\u79F0",trigger:["blur"]}],mobile:[{validator:(o,e,d)=>{if(e)if(/^[1][3,4,5,6,7,8,9][0-9]{9}$/.test(e))d();else return d(new Error("\u8BF7\u8F93\u5165\u6B63\u786E\u7684\u624B\u673A\u53F7"));else return d()},trigger:["blur"]}]},{optionsData:b}=$({dept:{api:S}}),v=async()=>{var o,e;await((o=c.value)==null?void 0:o.validate()),p.value=="edit"?await q(u):await M(u),(e=r.value)==null||e.close(),m("success")},A=(o="add")=>{var e;p.value=o,(e=r.value)==null||e.open()},E=o=>{for(const e in u)o[e]!=null&&o[e]!=null&&(u[e]=o[e])},g=async o=>{const e=await P({id:o.id});E(e)},w=()=>{m("close")};return D({open:A,setFormData:E,getDetail:g}),(o,e)=>{const d=k,n=y,i=U,x=R,C=N,h=I;return _(),j("div",H,[t(T,{ref_key:"popupRef",ref:r,title:l(B),async:!0,width:"550px",onConfirm:v,onClose:w},{default:s(()=>[t(h,{ref_key:"formRef",ref:c,model:l(u),"label-width":"84px",rules:V},{default:s(()=>[l(u).pid!==0?(_(),z(n,{key:0,label:"\u4E0A\u7EA7\u90E8\u95E8",prop:"pid"},{default:s(()=>[t(d,{class:"flex-1",modelValue:l(u).pid,"onUpdate:modelValue":e[0]||(e[0]=a=>l(u).pid=a),data:l(b).dept,clearable:"","node-key":"id",props:{value:"id",label:"name"},"check-strictly":"","default-expand-all":!0,placeholder:"\u8BF7\u9009\u62E9\u4E0A\u7EA7\u90E8\u95E8"},null,8,["modelValue","data"])]),_:1})):G("",!0),t(n,{label:"\u90E8\u95E8\u540D\u79F0",prop:"name"},{default:s(()=>[t(i,{modelValue:l(u).name,"onUpdate:modelValue":e[1]||(e[1]=a=>l(u).name=a),placeholder:"\u8BF7\u8F93\u5165\u90E8\u95E8\u540D\u79F0",maxlength:100},null,8,["modelValue"])]),_:1}),t(n,{label:"\u8D1F\u8D23\u4EBA",prop:"leader"},{default:s(()=>[t(i,{modelValue:l(u).leader,"onUpdate:modelValue":e[2]||(e[2]=a=>l(u).leader=a),placeholder:"\u8BF7\u8F93\u5165\u8D1F\u8D23\u4EBA\u59D3\u540D",maxlength:30},null,8,["modelValue"])]),_:1}),t(n,{label:"\u8054\u7CFB\u7535\u8BDD",prop:"mobile"},{default:s(()=>[t(i,{modelValue:l(u).mobile,"onUpdate:modelValue":e[3]||(e[3]=a=>l(u).mobile=a),placeholder:"\u8BF7\u8F93\u5165\u8054\u7CFB\u7535\u8BDD"},null,8,["modelValue"])]),_:1}),t(n,{label:"\u6392\u5E8F",prop:"sort"},{default:s(()=>[F("div",null,[t(x,{modelValue:l(u).sort,"onUpdate:modelValue":e[4]||(e[4]=a=>l(u).sort=a),min:0,max:9999},null,8,["modelValue"]),J])]),_:1}),t(n,{label:"\u90E8\u95E8\u72B6\u6001"},{default:s(()=>[t(C,{modelValue:l(u).status,"onUpdate:modelValue":e[5]||(e[5]=a=>l(u).status=a),"active-value":1,"inactive-value":0},null,8,["modelValue"])]),_:1})]),_:1},8,["model"])]),_:1},8,["title"])])}}});export{te as _}; diff --git a/public/admin/assets/edit.vue_vue_type_script_setup_true_lang.e6d477e4.js b/public/admin/assets/edit.vue_vue_type_script_setup_true_lang.e6d477e4.js new file mode 100644 index 000000000..4c8338bd8 --- /dev/null +++ b/public/admin/assets/edit.vue_vue_type_script_setup_true_lang.e6d477e4.js @@ -0,0 +1 @@ +import{B as x,C as R,v as k,G as y,H as g,D as U}from"./element-plus.4328d892.js";import{P as h}from"./index.fa872673.js";import{b as N,c as q}from"./dict.927f1fc7.js";import{d as A,s as _,r as I,e as G,$ as P,o as T,c as z,U as l,L as o,u as a,a as v,R as f}from"./@vue.51d7f2d8.js";const H={class:"edit-popup"},L=v("div",{class:"form-tips"},"\u6570\u503C\u8D8A\u5927\u8D8A\u6392\u524D",-1),Q=A({__name:"edit",emits:["success","close"],setup(S,{expose:B,emit:p}){const i=_(),n=_(),m=I("add"),E=G(()=>m.value=="edit"?"\u7F16\u8F91\u5B57\u5178\u6570\u636E":"\u65B0\u589E\u5B57\u5178\u6570\u636E"),u=P({id:"",type_value:"",name:"",value:"",sort:0,status:1,remark:"",type_id:0}),F={name:[{required:!0,message:"\u8BF7\u8F93\u5165\u6570\u636E\u540D\u79F0",trigger:["blur"]}],value:[{required:!0,message:"\u8BF7\u8F93\u5165\u6570\u636E\u503C",trigger:["blur"]}]},b=async()=>{var t,e;await((t=i.value)==null?void 0:t.validate()),m.value=="edit"?await N(u):await q(u),(e=n.value)==null||e.close(),p("success")},V=()=>{p("close")};return B({open:(t="add")=>{var e;m.value=t,(e=n.value)==null||e.open()},setFormData:t=>{for(const e in u)t[e]!=null&&t[e]!=null&&(u[e]=t[e])}}),(t,e)=>{const d=x,r=R,C=k,c=y,D=g,w=U;return T(),z("div",H,[l(h,{ref_key:"popupRef",ref:n,title:a(E),async:!0,width:"550px",onConfirm:b,onClose:V},{default:o(()=>[l(w,{class:"ls-form",ref_key:"formRef",ref:i,rules:F,model:a(u),"label-width":"84px"},{default:o(()=>[l(r,{label:"\u5B57\u5178\u7C7B\u578B"},{default:o(()=>[l(d,{"model-value":a(u).type_value,placeholder:"\u8BF7\u8F93\u5165\u5B57\u5178\u7C7B\u578B",disabled:""},null,8,["model-value"])]),_:1}),l(r,{label:"\u6570\u636E\u540D\u79F0",prop:"name"},{default:o(()=>[l(d,{modelValue:a(u).name,"onUpdate:modelValue":e[0]||(e[0]=s=>a(u).name=s),placeholder:"\u8BF7\u8F93\u5165\u6570\u636E\u540D\u79F0",clearable:""},null,8,["modelValue"])]),_:1}),l(r,{label:"\u6570\u636E\u503C",prop:"value"},{default:o(()=>[l(d,{modelValue:a(u).value,"onUpdate:modelValue":e[1]||(e[1]=s=>a(u).value=s),placeholder:"\u8BF7\u8F93\u5165\u6570\u636E\u503C",clearable:""},null,8,["modelValue"])]),_:1}),l(r,{label:"\u6392\u5E8F",prop:"sort"},{default:o(()=>[v("div",null,[l(C,{modelValue:a(u).sort,"onUpdate:modelValue":e[2]||(e[2]=s=>a(u).sort=s),min:0,max:9999},null,8,["modelValue"]),L])]),_:1}),l(r,{label:"\u72B6\u6001",required:"",prop:"status"},{default:o(()=>[l(D,{modelValue:a(u).status,"onUpdate:modelValue":e[3]||(e[3]=s=>a(u).status=s)},{default:o(()=>[l(c,{label:1},{default:o(()=>[f("\u6B63\u5E38")]),_:1}),l(c,{label:0},{default:o(()=>[f("\u505C\u7528")]),_:1})]),_:1},8,["modelValue"])]),_:1}),l(r,{label:"\u5907\u6CE8",prop:"remark"},{default:o(()=>[l(d,{modelValue:a(u).remark,"onUpdate:modelValue":e[4]||(e[4]=s=>a(u).remark=s),type:"textarea",autosize:{minRows:4,maxRows:6},clearable:"",maxlength:"200","show-word-limit":""},null,8,["modelValue"])]),_:1})]),_:1},8,["model"])]),_:1},8,["title"])])}}});export{Q as _}; diff --git a/public/admin/assets/edit.vue_vue_type_script_setup_true_lang.f38e2d62.js b/public/admin/assets/edit.vue_vue_type_script_setup_true_lang.f38e2d62.js new file mode 100644 index 000000000..c174a882b --- /dev/null +++ b/public/admin/assets/edit.vue_vue_type_script_setup_true_lang.f38e2d62.js @@ -0,0 +1 @@ +import{G as K,C as O,B as w,H as U,D as N}from"./element-plus.4328d892.js";import{r as E}from"./index.37f7aea6.js";import{P as Y}from"./index.5759a1a6.js";import{d as I,s as B,$ as G,e as T,o as F,c as A,U as t,L as s,u as l,a as n,R as _,S as C,K as L,Q as S}from"./@vue.51d7f2d8.js";function ue(){return E.get({url:"/setting.storage/lists"})}function P(d){return E.post({url:"/setting.storage/setup",params:d})}function H(d){return E.get({url:"/setting.storage/detail",params:d})}const Q={class:"edit-popup"},$={class:"form-tips"},j={key:0},z={class:"flex-1"},J={class:"flex-1"},M=n("div",{class:"form-tips"}," \u8BF7\u8865\u5168http://\u6216https://\uFF0C\u4F8B\u5982https://static.cloud.com ",-1),te=I({__name:"edit",emits:["success"],setup(d,{expose:b,emit:y}){const p=B(),c=B(),u=G({engine:"",bucket:"",access_key:"",secret_key:"",domain:"",region:"",status:0}),D=[{name:"\u672C\u5730\u5B58\u50A8",type:"local",tips:"\u672C\u5730\u5B58\u50A8\u65B9\u5F0F\u4E0D\u9700\u8981\u914D\u7F6E\u5176\u4ED6\u53C2\u6570"},{name:"\u4E03\u725B\u4E91\u5B58\u50A8",type:"qiniu",tips:"\u5207\u6362\u4E03\u725B\u4E91\u5B58\u50A8\u540E\uFF0C\u7D20\u6750\u5E93\u9700\u8981\u91CD\u65B0\u4E0A\u4F20\u81F3\u4E03\u725B\u4E91"},{name:"\u963F\u91CC\u4E91OSS",type:"aliyun",tips:"\u5207\u6362\u963F\u91CC\u4E91OSS\u540E\uFF0C\u7D20\u6750\u5E93\u9700\u8981\u91CD\u65B0\u4E0A\u4F20\u81F3\u963F\u91CC\u4E91OSS"},{name:"\u817E\u8BAF\u4E91OSS",type:"qcloud",tips:"\u5207\u6362\u817E\u8BAF\u4E91OSS\u540E\uFF0C\u7D20\u6750\u5E93\u9700\u8981\u91CD\u65B0\u4E0A\u4F20\u81F3\u817E\u8BAF\u4E91OSS"}],k={bucket:[{required:!0,message:"\u8BF7\u8F93\u5165\u5B58\u50A8\u7A7A\u95F4\u540D\u79F0",trigger:"blur"}],access_key:[{required:!0,message:"\u8BF7\u8F93\u5165ACCESS_KEY",trigger:"blur"}],secret_key:[{required:!0,message:"\u8BF7\u8F93\u5165SECRET_KEY",trigger:"blur"}],domain:[{required:!0,message:"\u8BF7\u8F93\u5165\u7A7A\u95F4\u57DF\u540D",trigger:"blur"}],region:[{required:!0,message:"\u8BF7\u8F93\u5165REGION",trigger:"blur"}]},f=T(()=>D.find(a=>a.type==u.engine)),V=async()=>{var a,e;await((a=p.value)==null?void 0:a.validate()),await P(u),(e=c.value)==null||e.close(),y("success")},v=async()=>{const a=await H({engine:u.engine});for(const e in a)u[e]=a[e]},R=a=>{var e;u.engine=a,(e=c.value)==null||e.open(),v()},h=()=>{var a;(a=p.value)==null||a.resetFields()};return b({open:R}),(a,e)=>{const m=K,r=O,i=w,q=U,x=N;return F(),A("div",Q,[t(Y,{ref_key:"popupRef",ref:c,title:"\u8BBE\u7F6E\u5B58\u50A8",async:!0,width:"550px",onConfirm:V,onClose:h},{default:s(()=>[t(x,{ref_key:"formRef",ref:p,model:l(u),"label-width":"120px",rules:k},{default:s(()=>[t(r,{label:"\u5B58\u50A8\u65B9\u5F0F",prop:"engine"},{default:s(()=>{var o;return[n("div",null,[t(m,{"model-value":""},{default:s(()=>{var g;return[_(C((g=l(f))==null?void 0:g.name),1)]}),_:1}),n("div",$,C((o=l(f))==null?void 0:o.tips),1)])]}),_:1}),l(u).engine!=="local"?(F(),A("div",j,[t(r,{label:" \u5B58\u50A8\u7A7A\u95F4\u540D\u79F0",prop:"bucket"},{default:s(()=>[n("div",z,[t(i,{modelValue:l(u).bucket,"onUpdate:modelValue":e[0]||(e[0]=o=>l(u).bucket=o),placeholder:"\u8BF7\u8F93\u5165\u5B58\u50A8\u7A7A\u95F4\u540D\u79F0(Bucket)",clearable:""},null,8,["modelValue"])])]),_:1}),t(r,{label:"ACCESS_KEY",prop:"access_key"},{default:s(()=>[t(i,{modelValue:l(u).access_key,"onUpdate:modelValue":e[1]||(e[1]=o=>l(u).access_key=o),placeholder:"\u8BF7\u8F93\u5165ACCESS_KEY(AK)",clearable:""},null,8,["modelValue"])]),_:1}),t(r,{label:"SECRET_KEY",prop:"secret_key"},{default:s(()=>[t(i,{modelValue:l(u).secret_key,"onUpdate:modelValue":e[2]||(e[2]=o=>l(u).secret_key=o),placeholder:"\u8BF7\u8F93\u5165SECRET_KEY(SK)",clearable:""},null,8,["modelValue"])]),_:1}),t(r,{label:"\u7A7A\u95F4\u57DF\u540D",prop:"domain"},{default:s(()=>[n("div",J,[n("div",null,[t(i,{modelValue:l(u).domain,"onUpdate:modelValue":e[3]||(e[3]=o=>l(u).domain=o),placeholder:"\u8BF7\u8F93\u5165\u7A7A\u95F4\u57DF\u540D(Domain)",clearable:""},null,8,["modelValue"])]),M])]),_:1}),l(u).engine=="qcloud"?(F(),L(r,{key:0,label:"REGION",prop:"region"},{default:s(()=>[t(i,{modelValue:l(u).region,"onUpdate:modelValue":e[4]||(e[4]=o=>l(u).region=o),placeholder:"\u8BF7\u8F93\u5165region",clearable:""},null,8,["modelValue"])]),_:1})):S("",!0)])):S("",!0),t(r,{label:"\u72B6\u6001",prop:"status"},{default:s(()=>[t(q,{modelValue:l(u).status,"onUpdate:modelValue":e[5]||(e[5]=o=>l(u).status=o)},{default:s(()=>[t(m,{label:0},{default:s(()=>[_("\u5173\u95ED")]),_:1}),t(m,{label:1},{default:s(()=>[_("\u5F00\u542F")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1},8,["model"])]),_:1},512)])}}});export{te as _,ue as s}; diff --git a/public/admin/assets/edit.vue_vue_type_script_setup_true_lang.f72e570b.js b/public/admin/assets/edit.vue_vue_type_script_setup_true_lang.f72e570b.js new file mode 100644 index 000000000..29d6639b9 --- /dev/null +++ b/public/admin/assets/edit.vue_vue_type_script_setup_true_lang.f72e570b.js @@ -0,0 +1 @@ +import{G as R,C as q,B as N,H as S,w as T,v as G,D as H}from"./element-plus.4328d892.js";import{_ as K}from"./picker.3821e495.js";import{s as M,g as L}from"./pay.b01bd8e2.js";import{P as Q}from"./index.5759a1a6.js";import{d as $,s as A,e as j,$ as z,af as J,o as r,c as E,U as l,L as i,u as o,a as t,T as y,R as _,S as O,M as W,K as X,Q as g}from"./@vue.51d7f2d8.js";const Y={class:"edit-popup"},Z=t("span",{class:"form-tips"},"\u5EFA\u8BAE\u5C3A\u5BF8\uFF1A200*200px",-1),uu=t("div",{class:"form-tips"},"\u6682\u65F6\u53EA\u652F\u6301V3\u7248\u672C",-1),eu=t("div",{class:"form-tips"}," \u6682\u65F6\u53EA\u652F\u6301\u666E\u901A\u5546\u6237\u7C7B\u578B\uFF0C\u670D\u52A1\u5546\u6237\u7C7B\u578B\u6A21\u5F0F\u6682\u4E0D\u652F\u6301 ",-1),lu={class:"flex-1"},ou=t("div",{class:"form-tips"},"\u5FAE\u4FE1\u652F\u4ED8\u5546\u6237\u53F7\uFF08MCHID\uFF09",-1),au=t("span",{class:"form-tips"},"\u5FAE\u4FE1\u652F\u4ED8\u5546\u6237API\u5BC6\u94A5\uFF08paySignKey\uFF09",-1),tu=t("span",{class:"form-tips"}," \u5FAE\u4FE1\u652F\u4ED8\u8BC1\u4E66\uFF08apiclient_cert.pem\uFF09\uFF0C\u524D\u5F80\u5FAE\u4FE1\u5546\u5BB6\u5E73\u53F0\u751F\u6210\u5E76\u9ECF\u8D34\u81F3\u6B64\u5904 ",-1),iu=t("span",{class:"form-tips"}," \u5FAE\u4FE1\u652F\u4ED8\u8BC1\u4E66\u5BC6\u94A5\uFF08apiclient_key.pem\uFF09\uFF0C\u524D\u5F80\u5FAE\u4FE1\u5546\u5BB6\u5E73\u53F0\u751F\u6210\u5E76\u9ECF\u8D34\u81F3\u6B64\u5904 ",-1),nu={class:"mr-[20px]"},su=t("span",{class:"form-tips"}," \u652F\u4ED8\u6388\u6743\u76EE\u5F55\u4EC5\u7528\u4E8E\u53C2\u8003\uFF0C\u590D\u5236\u540E\u524D\u5F80\u5FAE\u4FE1\u5546\u5BB6\u5E73\u53F0\u586B\u5199 ",-1),Fu=t("div",{class:"form-tips"},"\u6682\u65F6\u4EC5\u652F\u6301\u652F\u4ED8\u5B9D\u666E\u901A\u6A21\u5F0F",-1),du=t("div",{class:"form-tips"}," \u6682\u65F6\u53EA\u652F\u6301\u666E\u901A\u5546\u6237\u7C7B\u578B\uFF0C\u670D\u52A1\u5546\u6237\u7C7B\u578B\u6A21\u5F0F\u6682\u4E0D\u652F\u6301 ",-1),pu={class:"flex-1"},ru=t("span",{class:"form-tips"}," \u652F\u4ED8\u5B9D\u5E94\u7528APP_ID ",-1),_u={class:"flex-1"},mu=t("span",{class:"form-tips"},"\u652F\u4ED8\u5B9D\u5E94\u7528\u79C1\u94A5\uFF08private_key\uFF09 ",-1),cu={class:"flex-1"},Eu=t("span",{class:"form-tips"},"\u652F\u4ED8\u5B9D\u516C\u94A5\uFF08ali_public_key\uFF09 ",-1),fu=t("div",{class:"form-tips"},"\u9ED8\u8BA4\u4E3A0\uFF0C \u6570\u503C\u8D8A\u5927\u8D8A\u6392\u524D",-1),Vu=$({__name:"edit",emits:["success","close"],setup(Du,{expose:C,emit:f}){const D=A(),m=A(),c=j(()=>{switch(e.pay_way){case 1:return"\u4F59\u989D\u652F\u4ED8";case 2:return"\u5FAE\u4FE1\u652F\u4ED8";case 3:return"\u652F\u4ED8\u5B9D\u652F\u4ED8"}}),e=z({id:"",pay_way:0,name:"",icon:"",sort:0,remark:"",domain:"",config:{interface_version:"",merchant_type:"",mch_id:"",pay_sign_key:"",apiclient_cert:"",apiclient_key:"",mode:"",app_id:"",private_key:"",ali_public_key:""}}),V={name:[{required:!0,message:"\u8BF7\u8F93\u5165\u663E\u793A\u540D\u79F0"}],"config.mch_id":[{required:!0,message:"\u8BF7\u8F93\u5165\u5FAE\u4FE1\u652F\u4ED8\u5546\u6237\u53F7"}],"config.pay_sign_key":[{required:!0,message:"\u8BF7\u8F93\u5165\u5FAE\u4FE1\u652F\u4ED8\u5546\u6237API\u5BC6\u94A5"}],"config.apiclient_cert":[{required:!0,message:"\u8BF7\u8F93\u5165\u5FAE\u4FE1\u652F\u4ED8\u8BC1\u4E66"}],"config.apiclient_key":[{required:!0,message:"\u8BF7\u8F93\u5165\u5FAE\u4FE1\u652F\u4ED8\u8BC1\u4E66\u5BC6\u94A5"}],"config.app_id":[{required:!0,message:"\u8BF7\u8F93\u5165\u652F\u4ED8\u5B9D\u5E94\u7528ID"}],"config.private_key":[{required:!0,message:"\u8BF7\u8F93\u5165\u652F\u4ED8\u5B9D\u5E94\u7528\u79C1\u94A5"}],"config.ali_public_key":[{required:!0,message:"\u8BF7\u8F93\u5165\u652F\u4ED8\u5B9D\u516C\u94A5"}]},v=async()=>{var s,u;await((s=D.value)==null?void 0:s.validate()),await M(e),(u=m.value)==null||u.close(),f("success")},b=()=>{var s;(s=m.value)==null||s.open()},B=s=>{for(const u in e)s[u]!=null&&s[u]!=null&&(e[u]=s[u])},k=async s=>{const u=await L({id:s.id});B(u)},h=()=>{f("close")};return C({open:b,setFormData:B,getDetail:k}),(s,u)=>{const d=R,n=q,F=N,w=K,p=S,x=T,U=G,I=H,P=J("copy");return r(),E("div",Y,[l(Q,{ref_key:"popupRef",ref:m,title:o(c),async:!0,width:"550px",onConfirm:v,onClose:h},{default:i(()=>[l(I,{ref_key:"formRef",ref:D,model:o(e),"label-width":"84px",rules:V},{default:i(()=>[l(n,{label:"\u652F\u4ED8\u65B9\u5F0F"},{default:i(()=>[l(d,{label:o(c),"model-value":o(c)},null,8,["label","model-value"])]),_:1}),l(n,{label:"\u663E\u793A\u540D\u79F0",prop:"name"},{default:i(()=>[l(F,{modelValue:o(e).name,"onUpdate:modelValue":u[0]||(u[0]=a=>o(e).name=a),placeholder:"\u8BF7\u8F93\u5165\u663E\u793A\u540D\u79F0"},null,8,["modelValue"])]),_:1}),l(n,{label:"\u663E\u793A\u56FE\u6807",prop:"image"},{default:i(()=>[t("div",null,[l(w,{limit:1,disabled:!1,modelValue:o(e).icon,"onUpdate:modelValue":u[1]||(u[1]=a=>o(e).icon=a)},null,8,["modelValue"]),Z])]),_:1}),o(e).pay_way==2?(r(),E(y,{key:0},[l(n,{prop:"config.interface_version",label:"\u5FAE\u4FE1\u652F\u4ED8\u63A5\u53E3\u7248\u672C"},{default:i(()=>[t("div",null,[l(p,{modelValue:o(e).config.interface_version,"onUpdate:modelValue":u[2]||(u[2]=a=>o(e).config.interface_version=a)},{default:i(()=>[l(d,{label:"v3"})]),_:1},8,["modelValue"]),uu])]),_:1}),l(n,{label:"\u5546\u6237\u7C7B\u578B",prop:"config.merchant_type"},{default:i(()=>[t("div",null,[l(p,{modelValue:o(e).config.merchant_type,"onUpdate:modelValue":u[3]||(u[3]=a=>o(e).config.merchant_type=a)},{default:i(()=>[l(d,{label:"ordinary_merchant"},{default:i(()=>[_("\u666E\u901A\u5546\u6237")]),_:1})]),_:1},8,["modelValue"]),eu])]),_:1}),l(n,{label:"\u5FAE\u4FE1\u652F\u4ED8\u5546\u6237\u53F7",prop:"config.mch_id"},{default:i(()=>[t("div",lu,[l(F,{modelValue:o(e).config.mch_id,"onUpdate:modelValue":u[4]||(u[4]=a=>o(e).config.mch_id=a),placeholder:"\u8BF7\u8F93\u5165\u5FAE\u4FE1\u652F\u4ED8\u5546\u6237\u53F7"},null,8,["modelValue"]),ou])]),_:1}),l(n,{label:"\u5546\u6237API\u5BC6\u94A5",prop:"config.pay_sign_key"},{default:i(()=>[l(F,{modelValue:o(e).config.pay_sign_key,"onUpdate:modelValue":u[5]||(u[5]=a=>o(e).config.pay_sign_key=a),placeholder:"\u8BF7\u8F93\u5165\u5FAE\u4FE1\u652F\u4ED8\u5546\u6237API\u5BC6\u94A5"},null,8,["modelValue"]),au]),_:1}),l(n,{label:"\u5FAE\u4FE1\u652F\u4ED8\u8BC1\u4E66",prop:"config.apiclient_cert"},{default:i(()=>[l(F,{type:"textarea",rows:"3",modelValue:o(e).config.apiclient_cert,"onUpdate:modelValue":u[6]||(u[6]=a=>o(e).config.apiclient_cert=a),placeholder:"\u8BF7\u8F93\u5165\u5FAE\u4FE1\u652F\u4ED8\u8BC1\u4E66"},null,8,["modelValue"]),tu]),_:1}),l(n,{label:"\u5FAE\u4FE1\u652F\u4ED8\u8BC1\u4E66\u5BC6\u94A5",prop:"config.apiclient_key"},{default:i(()=>[l(F,{type:"textarea",rows:"3",modelValue:o(e).config.apiclient_key,"onUpdate:modelValue":u[7]||(u[7]=a=>o(e).config.apiclient_key=a),placeholder:"\u8BF7\u8F93\u5165\u5FAE\u4FE1\u652F\u4ED8\u8BC1\u4E66\u5BC6\u94A5"},null,8,["modelValue"]),iu]),_:1}),l(n,{label:"\u652F\u4ED8\u6388\u6743\u76EE\u5F55"},{default:i(()=>[t("div",null,[t("div",null,[t("span",nu,O(o(e).domain),1),W((r(),X(x,{link:"",type:"primary"},{default:i(()=>[_(" \u590D\u5236 ")]),_:1})),[[P,o(e).domain]])]),su])]),_:1})],64)):g("",!0),o(e).pay_way==3?(r(),E(y,{key:1},[l(n,{label:"\u6A21\u5F0F",prop:"config.mode"},{default:i(()=>[t("div",null,[l(p,{modelValue:o(e).config.mode,"onUpdate:modelValue":u[8]||(u[8]=a=>o(e).config.mode=a)},{default:i(()=>[l(d,{label:"normal_mode"},{default:i(()=>[_("\u666E\u901A\u6A21\u5F0F")]),_:1})]),_:1},8,["modelValue"]),Fu])]),_:1}),l(n,{label:"\u5546\u6237\u7C7B\u578B",prop:"config.merchant_type"},{default:i(()=>[t("div",null,[l(p,{modelValue:o(e).config.merchant_type,"onUpdate:modelValue":u[9]||(u[9]=a=>o(e).config.merchant_type=a)},{default:i(()=>[l(d,{label:"ordinary_merchant"},{default:i(()=>[_("\u666E\u901A\u5546\u6237")]),_:1})]),_:1},8,["modelValue"]),du])]),_:1}),l(n,{label:"\u5E94\u7528ID",prop:"config.app_id"},{default:i(()=>[t("div",pu,[l(F,{modelValue:o(e).config.app_id,"onUpdate:modelValue":u[10]||(u[10]=a=>o(e).config.app_id=a),placeholder:"\u8BF7\u8F93\u5165\u652F\u4ED8\u5B9D\u5E94\u7528ID"},null,8,["modelValue"]),ru])]),_:1}),l(n,{label:"\u5E94\u7528\u79C1\u94A5",prop:"config.private_key"},{default:i(()=>[t("div",_u,[l(F,{type:"textarea",rows:"3",modelValue:o(e).config.private_key,"onUpdate:modelValue":u[11]||(u[11]=a=>o(e).config.private_key=a),placeholder:"\u8BF7\u8F93\u5165\u652F\u4ED8\u5B9D\u5E94\u7528\u79C1\u94A5"},null,8,["modelValue"]),mu])]),_:1}),l(n,{label:"\u652F\u4ED8\u5B9D\u516C\u94A5",prop:"config.ali_public_key"},{default:i(()=>[t("div",cu,[l(F,{type:"textarea",rows:"3",modelValue:o(e).config.ali_public_key,"onUpdate:modelValue":u[12]||(u[12]=a=>o(e).config.ali_public_key=a),placeholder:"\u8BF7\u8F93\u5165\u652F\u4ED8\u5B9D\u516C\u94A5"},null,8,["modelValue"]),Eu])]),_:1})],64)):g("",!0),l(n,{label:"\u6392\u5E8F",prop:"sort"},{default:i(()=>[t("div",null,[l(U,{modelValue:o(e).sort,"onUpdate:modelValue":u[13]||(u[13]=a=>o(e).sort=a),min:0,max:9999},null,8,["modelValue"]),fu])]),_:1})]),_:1},8,["model"])]),_:1},8,["title"])])}}});export{Vu as _}; diff --git a/public/admin/assets/edit.vue_vue_type_script_setup_true_lang.fdb9299c.js b/public/admin/assets/edit.vue_vue_type_script_setup_true_lang.fdb9299c.js new file mode 100644 index 000000000..5a83b38d1 --- /dev/null +++ b/public/admin/assets/edit.vue_vue_type_script_setup_true_lang.fdb9299c.js @@ -0,0 +1 @@ +import{G as K,C as O,B as w,H as U,D as N}from"./element-plus.4328d892.js";import{r as E}from"./index.ed71ac09.js";import{P as Y}from"./index.b940d6e3.js";import{d as I,s as B,$ as G,e as T,o as F,c as A,U as t,L as s,u as l,a as n,R as _,S as C,K as L,Q as S}from"./@vue.51d7f2d8.js";function ue(){return E.get({url:"/setting.storage/lists"})}function P(d){return E.post({url:"/setting.storage/setup",params:d})}function H(d){return E.get({url:"/setting.storage/detail",params:d})}const Q={class:"edit-popup"},$={class:"form-tips"},j={key:0},z={class:"flex-1"},J={class:"flex-1"},M=n("div",{class:"form-tips"}," \u8BF7\u8865\u5168http://\u6216https://\uFF0C\u4F8B\u5982https://static.cloud.com ",-1),te=I({__name:"edit",emits:["success"],setup(d,{expose:b,emit:y}){const p=B(),c=B(),u=G({engine:"",bucket:"",access_key:"",secret_key:"",domain:"",region:"",status:0}),D=[{name:"\u672C\u5730\u5B58\u50A8",type:"local",tips:"\u672C\u5730\u5B58\u50A8\u65B9\u5F0F\u4E0D\u9700\u8981\u914D\u7F6E\u5176\u4ED6\u53C2\u6570"},{name:"\u4E03\u725B\u4E91\u5B58\u50A8",type:"qiniu",tips:"\u5207\u6362\u4E03\u725B\u4E91\u5B58\u50A8\u540E\uFF0C\u7D20\u6750\u5E93\u9700\u8981\u91CD\u65B0\u4E0A\u4F20\u81F3\u4E03\u725B\u4E91"},{name:"\u963F\u91CC\u4E91OSS",type:"aliyun",tips:"\u5207\u6362\u963F\u91CC\u4E91OSS\u540E\uFF0C\u7D20\u6750\u5E93\u9700\u8981\u91CD\u65B0\u4E0A\u4F20\u81F3\u963F\u91CC\u4E91OSS"},{name:"\u817E\u8BAF\u4E91OSS",type:"qcloud",tips:"\u5207\u6362\u817E\u8BAF\u4E91OSS\u540E\uFF0C\u7D20\u6750\u5E93\u9700\u8981\u91CD\u65B0\u4E0A\u4F20\u81F3\u817E\u8BAF\u4E91OSS"}],k={bucket:[{required:!0,message:"\u8BF7\u8F93\u5165\u5B58\u50A8\u7A7A\u95F4\u540D\u79F0",trigger:"blur"}],access_key:[{required:!0,message:"\u8BF7\u8F93\u5165ACCESS_KEY",trigger:"blur"}],secret_key:[{required:!0,message:"\u8BF7\u8F93\u5165SECRET_KEY",trigger:"blur"}],domain:[{required:!0,message:"\u8BF7\u8F93\u5165\u7A7A\u95F4\u57DF\u540D",trigger:"blur"}],region:[{required:!0,message:"\u8BF7\u8F93\u5165REGION",trigger:"blur"}]},f=T(()=>D.find(a=>a.type==u.engine)),V=async()=>{var a,e;await((a=p.value)==null?void 0:a.validate()),await P(u),(e=c.value)==null||e.close(),y("success")},v=async()=>{const a=await H({engine:u.engine});for(const e in a)u[e]=a[e]},R=a=>{var e;u.engine=a,(e=c.value)==null||e.open(),v()},h=()=>{var a;(a=p.value)==null||a.resetFields()};return b({open:R}),(a,e)=>{const m=K,r=O,i=w,q=U,x=N;return F(),A("div",Q,[t(Y,{ref_key:"popupRef",ref:c,title:"\u8BBE\u7F6E\u5B58\u50A8",async:!0,width:"550px",onConfirm:V,onClose:h},{default:s(()=>[t(x,{ref_key:"formRef",ref:p,model:l(u),"label-width":"120px",rules:k},{default:s(()=>[t(r,{label:"\u5B58\u50A8\u65B9\u5F0F",prop:"engine"},{default:s(()=>{var o;return[n("div",null,[t(m,{"model-value":""},{default:s(()=>{var g;return[_(C((g=l(f))==null?void 0:g.name),1)]}),_:1}),n("div",$,C((o=l(f))==null?void 0:o.tips),1)])]}),_:1}),l(u).engine!=="local"?(F(),A("div",j,[t(r,{label:" \u5B58\u50A8\u7A7A\u95F4\u540D\u79F0",prop:"bucket"},{default:s(()=>[n("div",z,[t(i,{modelValue:l(u).bucket,"onUpdate:modelValue":e[0]||(e[0]=o=>l(u).bucket=o),placeholder:"\u8BF7\u8F93\u5165\u5B58\u50A8\u7A7A\u95F4\u540D\u79F0(Bucket)",clearable:""},null,8,["modelValue"])])]),_:1}),t(r,{label:"ACCESS_KEY",prop:"access_key"},{default:s(()=>[t(i,{modelValue:l(u).access_key,"onUpdate:modelValue":e[1]||(e[1]=o=>l(u).access_key=o),placeholder:"\u8BF7\u8F93\u5165ACCESS_KEY(AK)",clearable:""},null,8,["modelValue"])]),_:1}),t(r,{label:"SECRET_KEY",prop:"secret_key"},{default:s(()=>[t(i,{modelValue:l(u).secret_key,"onUpdate:modelValue":e[2]||(e[2]=o=>l(u).secret_key=o),placeholder:"\u8BF7\u8F93\u5165SECRET_KEY(SK)",clearable:""},null,8,["modelValue"])]),_:1}),t(r,{label:"\u7A7A\u95F4\u57DF\u540D",prop:"domain"},{default:s(()=>[n("div",J,[n("div",null,[t(i,{modelValue:l(u).domain,"onUpdate:modelValue":e[3]||(e[3]=o=>l(u).domain=o),placeholder:"\u8BF7\u8F93\u5165\u7A7A\u95F4\u57DF\u540D(Domain)",clearable:""},null,8,["modelValue"])]),M])]),_:1}),l(u).engine=="qcloud"?(F(),L(r,{key:0,label:"REGION",prop:"region"},{default:s(()=>[t(i,{modelValue:l(u).region,"onUpdate:modelValue":e[4]||(e[4]=o=>l(u).region=o),placeholder:"\u8BF7\u8F93\u5165region",clearable:""},null,8,["modelValue"])]),_:1})):S("",!0)])):S("",!0),t(r,{label:"\u72B6\u6001",prop:"status"},{default:s(()=>[t(q,{modelValue:l(u).status,"onUpdate:modelValue":e[5]||(e[5]=o=>l(u).status=o)},{default:s(()=>[t(m,{label:0},{default:s(()=>[_("\u5173\u95ED")]),_:1}),t(m,{label:1},{default:s(()=>[_("\u5F00\u542F")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1},8,["model"])]),_:1},512)])}}});export{te as _,ue as s}; diff --git a/public/admin/assets/edit.vue_vue_type_script_setup_true_name_appUpdateEdit_lang.696a9d48.js b/public/admin/assets/edit.vue_vue_type_script_setup_true_name_appUpdateEdit_lang.696a9d48.js new file mode 100644 index 000000000..5532e340b --- /dev/null +++ b/public/admin/assets/edit.vue_vue_type_script_setup_true_name_appUpdateEdit_lang.696a9d48.js @@ -0,0 +1 @@ +import{J as $,K as Q,k as X,B as Y,C as Z,G as ee,H as ae,c as te,D as ue}from"./element-plus.4328d892.js";import{P as le}from"./index.b940d6e3.js";import{r as c,a as oe}from"./index.ed71ac09.js";import{d as C,C as ne,s as w,r as D,e as pe,$ as h,a4 as se,o as r,c as m,U as u,L as l,u as n,T as b,a7 as v,K as y,R as V,S as A,a as x}from"./@vue.51d7f2d8.js";import"./lodash.08438971.js";function ye(p){return c.get({url:"/app_update/lists",params:p})}function de(p){return c.post({url:"/app_update/add",params:p})}function re(p){return c.post({url:"/app_update/edit",params:p})}function Ve(p){return c.post({url:"/app_update/delete",params:p})}function ie(p){return c.get({url:"/app_update/detail",params:p})}const ce={class:"edit-popup"},fe=x("div",{class:"el-upload__text"},"\u6587\u4EF6\u62D6\u5165\u6216\u70B9\u51FB\u4E0A\u4F20",-1),me=x("div",{class:"el-upload__tip"},"\u8BF7\u4E0A\u4F20APK/IPA/WGT\u6587\u4EF6",-1),_e=C({name:"appUpdateEdit"}),Ae=C({..._e,props:{dictData:{type:Object,default:()=>({})}},emits:["success","close"],setup(p,{expose:P,emit:U}){const I=ne("base_url"),k=w(),_=w(),F=D("add"),R=oe(),q=a=>{o.dow_url=a.data.uri},f=D(null),T=a=>{f.value.clearFiles();const e=a[0];e.uid=Q(),f.value.handleStart(e),f.value.submit()},S=[".apk",".ipa",".wgt"],G=a=>S.find(d=>{var s;return d==((s=a==null?void 0:a.name)==null?void 0:s.substring(a.name.length-4,a.name.length))})?!0:(X.error("\u4EC5\u652F\u6301\u4E0A\u4F20APK/IPA/WGT\u6587\u4EF6"),!1),K=pe(()=>F.value=="edit"?"\u7F16\u8F91app\u66F4\u65B0":"\u65B0\u589Eapp\u66F4\u65B0"),o=h({id:"",title:"",content:"",type:"",version:"",dow_url:"",force:"",quiet:""}),L=h({}),g=async a=>{for(const e in o)a[e]!=null&&a[e]!=null&&(o[e]=a[e])},N=async a=>{const e=await ie({id:a.id});g(e)},j=async()=>{var e,d;await((e=k.value)==null?void 0:e.validate());const a={...o};F.value=="edit"?await re(a):await de(a),(d=_.value)==null||d.close(),U("success")},W=(a="add")=>{var e;F.value=a,(e=_.value)==null||e.open()},z=()=>{U("close")};return P({open:W,setFormData:g,getDetail:N}),(a,e)=>{const d=Y,s=Z,B=ee,E=ae,H=se("upload-filled"),J=te,M=$,O=ue;return r(),m("div",ce,[u(le,{ref_key:"popupRef",ref:_,title:n(K),async:!0,width:"550px",onConfirm:j,onClose:z},{default:l(()=>[u(O,{ref_key:"formRef",ref:k,model:n(o),"label-width":"120px",rules:n(L)},{default:l(()=>[u(s,{label:"\u6807\u9898",prop:"title"},{default:l(()=>[u(d,{modelValue:n(o).title,"onUpdate:modelValue":e[0]||(e[0]=t=>n(o).title=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u6807\u9898"},null,8,["modelValue"])]),_:1}),u(s,{label:"\u5185\u5BB9",prop:"content"},{default:l(()=>[u(d,{modelValue:n(o).content,"onUpdate:modelValue":e[1]||(e[1]=t=>n(o).content=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u5185\u5BB9",type:"textarea",autosize:""},null,8,["modelValue"])]),_:1}),u(s,{label:"APP\u7C7B\u578B",prop:"type"},{default:l(()=>[u(E,{modelValue:n(o).type,"onUpdate:modelValue":e[2]||(e[2]=t=>n(o).type=t),placeholder:"\u8BF7\u9009\u62E9APP\u7C7B\u578B"},{default:l(()=>[(r(!0),m(b,null,v(p.dictData.app_type,(t,i)=>(r(),y(B,{key:i,label:parseInt(t.value)},{default:l(()=>[V(A(t.name),1)]),_:2},1032,["label"]))),128))]),_:1},8,["modelValue"])]),_:1}),u(s,{label:"\u7248\u672C",prop:"version"},{default:l(()=>[u(d,{modelValue:n(o).version,"onUpdate:modelValue":e[3]||(e[3]=t=>n(o).version=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u7248\u672C,\u4F8B\u59821.0.1"},null,8,["modelValue"])]),_:1}),u(s,{label:"\u66F4\u65B0\u5305\u6587\u4EF6",prop:"dow_url"},{default:l(()=>[u(M,{class:"upload-demo",style:{width:"100%"},drag:"",accept:".apk, .ipa, .wgt",headers:{Token:n(R).token},action:n(I)+"/upload/file",limit:1,"on-success":q,"on-exceed":T,"before-upload":G,ref_key:"upload",ref:f},{tip:l(()=>[me]),default:l(()=>[u(J,{class:"el-icon--upload"},{default:l(()=>[u(H)]),_:1}),fe]),_:1},8,["headers","action"])]),_:1}),u(s,{label:"\u662F\u5426\u5F3A\u5236\u66F4\u65B0",prop:"force"},{default:l(()=>[u(E,{modelValue:n(o).force,"onUpdate:modelValue":e[4]||(e[4]=t=>n(o).force=t),placeholder:"\u8BF7\u9009\u62E9\u662F\u5426\u5F3A\u5236\u66F4\u65B0"},{default:l(()=>[(r(!0),m(b,null,v(p.dictData.app_force_quiet,(t,i)=>(r(),y(B,{key:i,label:parseInt(t.value)},{default:l(()=>[V(A(t.name),1)]),_:2},1032,["label"]))),128))]),_:1},8,["modelValue"])]),_:1}),u(s,{label:"\u662F\u5426\u9759\u9ED8\u66F4\u65B0",prop:"quiet"},{default:l(()=>[u(E,{modelValue:n(o).quiet,"onUpdate:modelValue":e[5]||(e[5]=t=>n(o).quiet=t),placeholder:"\u8BF7\u9009\u62E9\u662F\u5426\u9759\u9ED8\u66F4\u65B0"},{default:l(()=>[(r(!0),m(b,null,v(p.dictData.app_force_quiet,(t,i)=>(r(),y(B,{key:i,label:parseInt(t.value)},{default:l(()=>[V(A(t.name),1)]),_:2},1032,["label"]))),128))]),_:1},8,["modelValue"])]),_:1})]),_:1},8,["model","rules"])]),_:1},8,["title"])])}}});export{Ae as _,Ve as a,ye as b}; diff --git a/public/admin/assets/edit.vue_vue_type_script_setup_true_name_appUpdateEdit_lang.76e851a1.js b/public/admin/assets/edit.vue_vue_type_script_setup_true_name_appUpdateEdit_lang.76e851a1.js new file mode 100644 index 000000000..52044bf1e --- /dev/null +++ b/public/admin/assets/edit.vue_vue_type_script_setup_true_name_appUpdateEdit_lang.76e851a1.js @@ -0,0 +1 @@ +import{J as $,K as Q,k as X,B as Y,C as Z,G as ee,H as ae,c as te,D as ue}from"./element-plus.4328d892.js";import{P as le}from"./index.fa872673.js";import{r as c,a as oe}from"./index.aa9bb752.js";import{d as C,C as ne,s as w,r as D,e as pe,$ as h,a4 as se,o as r,c as m,U as u,L as l,u as n,T as b,a7 as v,K as y,R as V,S as A,a as x}from"./@vue.51d7f2d8.js";import"./lodash.08438971.js";function ye(p){return c.get({url:"/app_update/lists",params:p})}function de(p){return c.post({url:"/app_update/add",params:p})}function re(p){return c.post({url:"/app_update/edit",params:p})}function Ve(p){return c.post({url:"/app_update/delete",params:p})}function ie(p){return c.get({url:"/app_update/detail",params:p})}const ce={class:"edit-popup"},fe=x("div",{class:"el-upload__text"},"\u6587\u4EF6\u62D6\u5165\u6216\u70B9\u51FB\u4E0A\u4F20",-1),me=x("div",{class:"el-upload__tip"},"\u8BF7\u4E0A\u4F20APK/IPA/WGT\u6587\u4EF6",-1),_e=C({name:"appUpdateEdit"}),Ae=C({..._e,props:{dictData:{type:Object,default:()=>({})}},emits:["success","close"],setup(p,{expose:P,emit:U}){const I=ne("base_url"),k=w(),_=w(),F=D("add"),R=oe(),q=a=>{o.dow_url=a.data.uri},f=D(null),T=a=>{f.value.clearFiles();const e=a[0];e.uid=Q(),f.value.handleStart(e),f.value.submit()},S=[".apk",".ipa",".wgt"],G=a=>S.find(d=>{var s;return d==((s=a==null?void 0:a.name)==null?void 0:s.substring(a.name.length-4,a.name.length))})?!0:(X.error("\u4EC5\u652F\u6301\u4E0A\u4F20APK/IPA/WGT\u6587\u4EF6"),!1),K=pe(()=>F.value=="edit"?"\u7F16\u8F91app\u66F4\u65B0":"\u65B0\u589Eapp\u66F4\u65B0"),o=h({id:"",title:"",content:"",type:"",version:"",dow_url:"",force:"",quiet:""}),L=h({}),g=async a=>{for(const e in o)a[e]!=null&&a[e]!=null&&(o[e]=a[e])},N=async a=>{const e=await ie({id:a.id});g(e)},j=async()=>{var e,d;await((e=k.value)==null?void 0:e.validate());const a={...o};F.value=="edit"?await re(a):await de(a),(d=_.value)==null||d.close(),U("success")},W=(a="add")=>{var e;F.value=a,(e=_.value)==null||e.open()},z=()=>{U("close")};return P({open:W,setFormData:g,getDetail:N}),(a,e)=>{const d=Y,s=Z,B=ee,E=ae,H=se("upload-filled"),J=te,M=$,O=ue;return r(),m("div",ce,[u(le,{ref_key:"popupRef",ref:_,title:n(K),async:!0,width:"550px",onConfirm:j,onClose:z},{default:l(()=>[u(O,{ref_key:"formRef",ref:k,model:n(o),"label-width":"120px",rules:n(L)},{default:l(()=>[u(s,{label:"\u6807\u9898",prop:"title"},{default:l(()=>[u(d,{modelValue:n(o).title,"onUpdate:modelValue":e[0]||(e[0]=t=>n(o).title=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u6807\u9898"},null,8,["modelValue"])]),_:1}),u(s,{label:"\u5185\u5BB9",prop:"content"},{default:l(()=>[u(d,{modelValue:n(o).content,"onUpdate:modelValue":e[1]||(e[1]=t=>n(o).content=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u5185\u5BB9",type:"textarea",autosize:""},null,8,["modelValue"])]),_:1}),u(s,{label:"APP\u7C7B\u578B",prop:"type"},{default:l(()=>[u(E,{modelValue:n(o).type,"onUpdate:modelValue":e[2]||(e[2]=t=>n(o).type=t),placeholder:"\u8BF7\u9009\u62E9APP\u7C7B\u578B"},{default:l(()=>[(r(!0),m(b,null,v(p.dictData.app_type,(t,i)=>(r(),y(B,{key:i,label:parseInt(t.value)},{default:l(()=>[V(A(t.name),1)]),_:2},1032,["label"]))),128))]),_:1},8,["modelValue"])]),_:1}),u(s,{label:"\u7248\u672C",prop:"version"},{default:l(()=>[u(d,{modelValue:n(o).version,"onUpdate:modelValue":e[3]||(e[3]=t=>n(o).version=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u7248\u672C,\u4F8B\u59821.0.1"},null,8,["modelValue"])]),_:1}),u(s,{label:"\u66F4\u65B0\u5305\u6587\u4EF6",prop:"dow_url"},{default:l(()=>[u(M,{class:"upload-demo",style:{width:"100%"},drag:"",accept:".apk, .ipa, .wgt",headers:{Token:n(R).token},action:n(I)+"/upload/file",limit:1,"on-success":q,"on-exceed":T,"before-upload":G,ref_key:"upload",ref:f},{tip:l(()=>[me]),default:l(()=>[u(J,{class:"el-icon--upload"},{default:l(()=>[u(H)]),_:1}),fe]),_:1},8,["headers","action"])]),_:1}),u(s,{label:"\u662F\u5426\u5F3A\u5236\u66F4\u65B0",prop:"force"},{default:l(()=>[u(E,{modelValue:n(o).force,"onUpdate:modelValue":e[4]||(e[4]=t=>n(o).force=t),placeholder:"\u8BF7\u9009\u62E9\u662F\u5426\u5F3A\u5236\u66F4\u65B0"},{default:l(()=>[(r(!0),m(b,null,v(p.dictData.app_force_quiet,(t,i)=>(r(),y(B,{key:i,label:parseInt(t.value)},{default:l(()=>[V(A(t.name),1)]),_:2},1032,["label"]))),128))]),_:1},8,["modelValue"])]),_:1}),u(s,{label:"\u662F\u5426\u9759\u9ED8\u66F4\u65B0",prop:"quiet"},{default:l(()=>[u(E,{modelValue:n(o).quiet,"onUpdate:modelValue":e[5]||(e[5]=t=>n(o).quiet=t),placeholder:"\u8BF7\u9009\u62E9\u662F\u5426\u9759\u9ED8\u66F4\u65B0"},{default:l(()=>[(r(!0),m(b,null,v(p.dictData.app_force_quiet,(t,i)=>(r(),y(B,{key:i,label:parseInt(t.value)},{default:l(()=>[V(A(t.name),1)]),_:2},1032,["label"]))),128))]),_:1},8,["modelValue"])]),_:1})]),_:1},8,["model","rules"])]),_:1},8,["title"])])}}});export{Ae as _,Ve as a,ye as b}; diff --git a/public/admin/assets/edit.vue_vue_type_script_setup_true_name_appUpdateEdit_lang.e5edc10c.js b/public/admin/assets/edit.vue_vue_type_script_setup_true_name_appUpdateEdit_lang.e5edc10c.js new file mode 100644 index 000000000..60445ac95 --- /dev/null +++ b/public/admin/assets/edit.vue_vue_type_script_setup_true_name_appUpdateEdit_lang.e5edc10c.js @@ -0,0 +1 @@ +import{J as $,K as Q,k as X,B as Y,C as Z,G as ee,H as ae,c as te,D as ue}from"./element-plus.4328d892.js";import{P as le}from"./index.5759a1a6.js";import{r as c,a as oe}from"./index.37f7aea6.js";import{d as C,C as ne,s as w,r as D,e as pe,$ as h,a4 as se,o as r,c as m,U as u,L as l,u as n,T as b,a7 as v,K as y,R as V,S as A,a as x}from"./@vue.51d7f2d8.js";import"./lodash.08438971.js";function ye(p){return c.get({url:"/app_update/lists",params:p})}function de(p){return c.post({url:"/app_update/add",params:p})}function re(p){return c.post({url:"/app_update/edit",params:p})}function Ve(p){return c.post({url:"/app_update/delete",params:p})}function ie(p){return c.get({url:"/app_update/detail",params:p})}const ce={class:"edit-popup"},fe=x("div",{class:"el-upload__text"},"\u6587\u4EF6\u62D6\u5165\u6216\u70B9\u51FB\u4E0A\u4F20",-1),me=x("div",{class:"el-upload__tip"},"\u8BF7\u4E0A\u4F20APK/IPA/WGT\u6587\u4EF6",-1),_e=C({name:"appUpdateEdit"}),Ae=C({..._e,props:{dictData:{type:Object,default:()=>({})}},emits:["success","close"],setup(p,{expose:P,emit:U}){const I=ne("base_url"),k=w(),_=w(),F=D("add"),R=oe(),q=a=>{o.dow_url=a.data.uri},f=D(null),T=a=>{f.value.clearFiles();const e=a[0];e.uid=Q(),f.value.handleStart(e),f.value.submit()},S=[".apk",".ipa",".wgt"],G=a=>S.find(d=>{var s;return d==((s=a==null?void 0:a.name)==null?void 0:s.substring(a.name.length-4,a.name.length))})?!0:(X.error("\u4EC5\u652F\u6301\u4E0A\u4F20APK/IPA/WGT\u6587\u4EF6"),!1),K=pe(()=>F.value=="edit"?"\u7F16\u8F91app\u66F4\u65B0":"\u65B0\u589Eapp\u66F4\u65B0"),o=h({id:"",title:"",content:"",type:"",version:"",dow_url:"",force:"",quiet:""}),L=h({}),g=async a=>{for(const e in o)a[e]!=null&&a[e]!=null&&(o[e]=a[e])},N=async a=>{const e=await ie({id:a.id});g(e)},j=async()=>{var e,d;await((e=k.value)==null?void 0:e.validate());const a={...o};F.value=="edit"?await re(a):await de(a),(d=_.value)==null||d.close(),U("success")},W=(a="add")=>{var e;F.value=a,(e=_.value)==null||e.open()},z=()=>{U("close")};return P({open:W,setFormData:g,getDetail:N}),(a,e)=>{const d=Y,s=Z,B=ee,E=ae,H=se("upload-filled"),J=te,M=$,O=ue;return r(),m("div",ce,[u(le,{ref_key:"popupRef",ref:_,title:n(K),async:!0,width:"550px",onConfirm:j,onClose:z},{default:l(()=>[u(O,{ref_key:"formRef",ref:k,model:n(o),"label-width":"120px",rules:n(L)},{default:l(()=>[u(s,{label:"\u6807\u9898",prop:"title"},{default:l(()=>[u(d,{modelValue:n(o).title,"onUpdate:modelValue":e[0]||(e[0]=t=>n(o).title=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u6807\u9898"},null,8,["modelValue"])]),_:1}),u(s,{label:"\u5185\u5BB9",prop:"content"},{default:l(()=>[u(d,{modelValue:n(o).content,"onUpdate:modelValue":e[1]||(e[1]=t=>n(o).content=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u5185\u5BB9",type:"textarea",autosize:""},null,8,["modelValue"])]),_:1}),u(s,{label:"APP\u7C7B\u578B",prop:"type"},{default:l(()=>[u(E,{modelValue:n(o).type,"onUpdate:modelValue":e[2]||(e[2]=t=>n(o).type=t),placeholder:"\u8BF7\u9009\u62E9APP\u7C7B\u578B"},{default:l(()=>[(r(!0),m(b,null,v(p.dictData.app_type,(t,i)=>(r(),y(B,{key:i,label:parseInt(t.value)},{default:l(()=>[V(A(t.name),1)]),_:2},1032,["label"]))),128))]),_:1},8,["modelValue"])]),_:1}),u(s,{label:"\u7248\u672C",prop:"version"},{default:l(()=>[u(d,{modelValue:n(o).version,"onUpdate:modelValue":e[3]||(e[3]=t=>n(o).version=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u7248\u672C,\u4F8B\u59821.0.1"},null,8,["modelValue"])]),_:1}),u(s,{label:"\u66F4\u65B0\u5305\u6587\u4EF6",prop:"dow_url"},{default:l(()=>[u(M,{class:"upload-demo",style:{width:"100%"},drag:"",accept:".apk, .ipa, .wgt",headers:{Token:n(R).token},action:n(I)+"/upload/file",limit:1,"on-success":q,"on-exceed":T,"before-upload":G,ref_key:"upload",ref:f},{tip:l(()=>[me]),default:l(()=>[u(J,{class:"el-icon--upload"},{default:l(()=>[u(H)]),_:1}),fe]),_:1},8,["headers","action"])]),_:1}),u(s,{label:"\u662F\u5426\u5F3A\u5236\u66F4\u65B0",prop:"force"},{default:l(()=>[u(E,{modelValue:n(o).force,"onUpdate:modelValue":e[4]||(e[4]=t=>n(o).force=t),placeholder:"\u8BF7\u9009\u62E9\u662F\u5426\u5F3A\u5236\u66F4\u65B0"},{default:l(()=>[(r(!0),m(b,null,v(p.dictData.app_force_quiet,(t,i)=>(r(),y(B,{key:i,label:parseInt(t.value)},{default:l(()=>[V(A(t.name),1)]),_:2},1032,["label"]))),128))]),_:1},8,["modelValue"])]),_:1}),u(s,{label:"\u662F\u5426\u9759\u9ED8\u66F4\u65B0",prop:"quiet"},{default:l(()=>[u(E,{modelValue:n(o).quiet,"onUpdate:modelValue":e[5]||(e[5]=t=>n(o).quiet=t),placeholder:"\u8BF7\u9009\u62E9\u662F\u5426\u9759\u9ED8\u66F4\u65B0"},{default:l(()=>[(r(!0),m(b,null,v(p.dictData.app_force_quiet,(t,i)=>(r(),y(B,{key:i,label:parseInt(t.value)},{default:l(()=>[V(A(t.name),1)]),_:2},1032,["label"]))),128))]),_:1},8,["modelValue"])]),_:1})]),_:1},8,["model","rules"])]),_:1},8,["title"])])}}});export{Ae as _,Ve as a,ye as b}; diff --git a/public/admin/assets/edit.vue_vue_type_script_setup_true_name_categoryBusinessEdit_lang.0f542952.js b/public/admin/assets/edit.vue_vue_type_script_setup_true_name_categoryBusinessEdit_lang.0f542952.js new file mode 100644 index 000000000..ca5d3dcba --- /dev/null +++ b/public/admin/assets/edit.vue_vue_type_script_setup_true_name_categoryBusinessEdit_lang.0f542952.js @@ -0,0 +1 @@ +import{B as T,C as G,M as O,N as P,G as j,H,D as K}from"./element-plus.4328d892.js";import{P as M}from"./index.fa872673.js";import{r as i}from"./index.aa9bb752.js";import{d as V,s as F,r as $,e as z,$ as f,o as n,c as g,U as o,L as l,T as E,a7 as v,K as C,R as J,S as Q}from"./@vue.51d7f2d8.js";import"./lodash.08438971.js";function W(a){return i.get({url:"/category_business.category_business/lists",params:a})}function X(a){return i.post({url:"/category_business.category_business/add",params:a})}function Y(a){return i.post({url:"/category_business.category_business/edit",params:a})}function re(a){return i.post({url:"/category_business.category_business/delete",params:a})}function Z(a){return i.get({url:"/category_business.category_business/detail",params:a})}const ee={class:"edit-popup"},ue=V({name:"categoryBusinessEdit"}),ne=V({...ue,props:{dictData:{type:Object,default:()=>({})}},emits:["success","close"],setup(a,{expose:D,emit:b}){const y=F(),c=F(),d=$("add"),w=z(()=>d.value=="edit"?"\u7F16\u8F91\u5546\u673A\u5206\u7C7B\u8868":"\u65B0\u589E\u5546\u673A\u5206\u7C7B\u8868"),s=f({id:"",name:"",pid:"",sort:"99",status:""}),m=f([]),k=f({name:[{required:!0,message:"\u8BF7\u8F93\u5165\u540D\u79F0",trigger:["blur"]}],pid:[{required:!0,message:"\u8BF7\u9009\u62E9\u4E0A\u7EA7id",trigger:["blur"]}],sort:[{required:!0,message:"\u8BF7\u8F93\u5165\u6392\u5E8F",trigger:["blur"]}],status:[{required:!0,message:"\u8BF7\u9009\u62E9\u72B6\u6001\uFF080\u505C\u7528 1\u6B63\u5E38\uFF09",trigger:["blur"]}]}),B=async u=>{for(const e in s)u[e]!=null&&u[e]!=null&&(s[e]=u[e])},A=async u=>{const e=await Z({id:u.id});B(e)},R=async()=>{const u=await W({page:1,limit:1e3,pid:0});m.value=[{id:0,name:"\u9876\u7EA7\u5206\u7C7B"},...u.lists],console.log(m)},x=async()=>{var e,r;await((e=y.value)==null?void 0:e.validate());const u={...s};d.value=="edit"?await Y(u):await X(u),(r=c.value)==null||r.close(),b("success")},h=(u="add")=>{var e;d.value=u,(e=c.value)==null||e.open()},q=()=>{b("close")};return R(),D({open:h,setFormData:B,getDetail:A}),(u,e)=>{const r=T,p=G,L=O,U=P,I=j,S=H,N=K;return n(),g("div",ee,[o(M,{ref_key:"popupRef",ref:c,title:w.value,async:!0,width:"550px",onConfirm:x,onClose:q},{default:l(()=>[o(N,{ref_key:"formRef",ref:y,model:s,"label-width":"90px",disabled:d.value=="check",rules:k},{default:l(()=>[o(p,{label:"\u540D\u79F0",prop:"name"},{default:l(()=>[o(r,{modelValue:s.name,"onUpdate:modelValue":e[0]||(e[0]=t=>s.name=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u540D\u79F0"},null,8,["modelValue"])]),_:1}),o(p,{label:"\u9876\u7EA7\u5206\u7C7B",prop:"pid"},{default:l(()=>[o(U,{class:"flex-1",modelValue:s.pid,"onUpdate:modelValue":e[1]||(e[1]=t=>s.pid=t),clearable:"",placeholder:"\u8BF7\u9009\u62E9\u4E0A\u7EA7\u5206\u7C7B"},{default:l(()=>[(n(!0),g(E,null,v(m.value,(t,_)=>(n(),C(L,{key:_,label:t.name,value:parseInt(t.id)},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1}),o(p,{label:"\u6392\u5E8F",prop:"sort"},{default:l(()=>[o(r,{modelValue:s.sort,"onUpdate:modelValue":e[2]||(e[2]=t=>s.sort=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u6392\u5E8F"},null,8,["modelValue"])]),_:1}),o(p,{label:"\u72B6\u6001",prop:"status"},{default:l(()=>[o(S,{modelValue:s.status,"onUpdate:modelValue":e[3]||(e[3]=t=>s.status=t),placeholder:"\u8BF7\u9009\u62E9\u72B6\u6001"},{default:l(()=>[(n(!0),g(E,null,v(a.dictData.show_status,(t,_)=>(n(),C(I,{key:_,label:parseInt(t.value)},{default:l(()=>[J(Q(t.name),1)]),_:2},1032,["label"]))),128))]),_:1},8,["modelValue"])]),_:1})]),_:1},8,["model","disabled","rules"])]),_:1},8,["title"])])}}});export{ne as _,re as a,W as b}; diff --git a/public/admin/assets/edit.vue_vue_type_script_setup_true_name_categoryBusinessEdit_lang.5b1401eb.js b/public/admin/assets/edit.vue_vue_type_script_setup_true_name_categoryBusinessEdit_lang.5b1401eb.js new file mode 100644 index 000000000..af4130098 --- /dev/null +++ b/public/admin/assets/edit.vue_vue_type_script_setup_true_name_categoryBusinessEdit_lang.5b1401eb.js @@ -0,0 +1 @@ +import{B as T,C as G,M as O,N as P,G as j,H,D as K}from"./element-plus.4328d892.js";import{P as M}from"./index.b940d6e3.js";import{r as i}from"./index.ed71ac09.js";import{d as V,s as F,r as $,e as z,$ as f,o as n,c as g,U as o,L as l,T as E,a7 as v,K as C,R as J,S as Q}from"./@vue.51d7f2d8.js";import"./lodash.08438971.js";function W(a){return i.get({url:"/category_business.category_business/lists",params:a})}function X(a){return i.post({url:"/category_business.category_business/add",params:a})}function Y(a){return i.post({url:"/category_business.category_business/edit",params:a})}function re(a){return i.post({url:"/category_business.category_business/delete",params:a})}function Z(a){return i.get({url:"/category_business.category_business/detail",params:a})}const ee={class:"edit-popup"},ue=V({name:"categoryBusinessEdit"}),ne=V({...ue,props:{dictData:{type:Object,default:()=>({})}},emits:["success","close"],setup(a,{expose:D,emit:b}){const y=F(),c=F(),d=$("add"),w=z(()=>d.value=="edit"?"\u7F16\u8F91\u5546\u673A\u5206\u7C7B\u8868":"\u65B0\u589E\u5546\u673A\u5206\u7C7B\u8868"),s=f({id:"",name:"",pid:"",sort:"99",status:""}),m=f([]),k=f({name:[{required:!0,message:"\u8BF7\u8F93\u5165\u540D\u79F0",trigger:["blur"]}],pid:[{required:!0,message:"\u8BF7\u9009\u62E9\u4E0A\u7EA7id",trigger:["blur"]}],sort:[{required:!0,message:"\u8BF7\u8F93\u5165\u6392\u5E8F",trigger:["blur"]}],status:[{required:!0,message:"\u8BF7\u9009\u62E9\u72B6\u6001\uFF080\u505C\u7528 1\u6B63\u5E38\uFF09",trigger:["blur"]}]}),B=async u=>{for(const e in s)u[e]!=null&&u[e]!=null&&(s[e]=u[e])},A=async u=>{const e=await Z({id:u.id});B(e)},R=async()=>{const u=await W({page:1,limit:1e3,pid:0});m.value=[{id:0,name:"\u9876\u7EA7\u5206\u7C7B"},...u.lists],console.log(m)},x=async()=>{var e,r;await((e=y.value)==null?void 0:e.validate());const u={...s};d.value=="edit"?await Y(u):await X(u),(r=c.value)==null||r.close(),b("success")},h=(u="add")=>{var e;d.value=u,(e=c.value)==null||e.open()},q=()=>{b("close")};return R(),D({open:h,setFormData:B,getDetail:A}),(u,e)=>{const r=T,p=G,L=O,U=P,I=j,S=H,N=K;return n(),g("div",ee,[o(M,{ref_key:"popupRef",ref:c,title:w.value,async:!0,width:"550px",onConfirm:x,onClose:q},{default:l(()=>[o(N,{ref_key:"formRef",ref:y,model:s,"label-width":"90px",disabled:d.value=="check",rules:k},{default:l(()=>[o(p,{label:"\u540D\u79F0",prop:"name"},{default:l(()=>[o(r,{modelValue:s.name,"onUpdate:modelValue":e[0]||(e[0]=t=>s.name=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u540D\u79F0"},null,8,["modelValue"])]),_:1}),o(p,{label:"\u9876\u7EA7\u5206\u7C7B",prop:"pid"},{default:l(()=>[o(U,{class:"flex-1",modelValue:s.pid,"onUpdate:modelValue":e[1]||(e[1]=t=>s.pid=t),clearable:"",placeholder:"\u8BF7\u9009\u62E9\u4E0A\u7EA7\u5206\u7C7B"},{default:l(()=>[(n(!0),g(E,null,v(m.value,(t,_)=>(n(),C(L,{key:_,label:t.name,value:parseInt(t.id)},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1}),o(p,{label:"\u6392\u5E8F",prop:"sort"},{default:l(()=>[o(r,{modelValue:s.sort,"onUpdate:modelValue":e[2]||(e[2]=t=>s.sort=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u6392\u5E8F"},null,8,["modelValue"])]),_:1}),o(p,{label:"\u72B6\u6001",prop:"status"},{default:l(()=>[o(S,{modelValue:s.status,"onUpdate:modelValue":e[3]||(e[3]=t=>s.status=t),placeholder:"\u8BF7\u9009\u62E9\u72B6\u6001"},{default:l(()=>[(n(!0),g(E,null,v(a.dictData.show_status,(t,_)=>(n(),C(I,{key:_,label:parseInt(t.value)},{default:l(()=>[J(Q(t.name),1)]),_:2},1032,["label"]))),128))]),_:1},8,["modelValue"])]),_:1})]),_:1},8,["model","disabled","rules"])]),_:1},8,["title"])])}}});export{ne as _,re as a,W as b}; diff --git a/public/admin/assets/edit.vue_vue_type_script_setup_true_name_categoryBusinessEdit_lang.a5ab95cf.js b/public/admin/assets/edit.vue_vue_type_script_setup_true_name_categoryBusinessEdit_lang.a5ab95cf.js new file mode 100644 index 000000000..f43306d66 --- /dev/null +++ b/public/admin/assets/edit.vue_vue_type_script_setup_true_name_categoryBusinessEdit_lang.a5ab95cf.js @@ -0,0 +1 @@ +import{B as T,C as G,M as O,N as P,G as j,H,D as K}from"./element-plus.4328d892.js";import{P as M}from"./index.5759a1a6.js";import{r as i}from"./index.37f7aea6.js";import{d as V,s as F,r as $,e as z,$ as f,o as n,c as g,U as o,L as l,T as E,a7 as v,K as C,R as J,S as Q}from"./@vue.51d7f2d8.js";import"./lodash.08438971.js";function W(a){return i.get({url:"/category_business.category_business/lists",params:a})}function X(a){return i.post({url:"/category_business.category_business/add",params:a})}function Y(a){return i.post({url:"/category_business.category_business/edit",params:a})}function re(a){return i.post({url:"/category_business.category_business/delete",params:a})}function Z(a){return i.get({url:"/category_business.category_business/detail",params:a})}const ee={class:"edit-popup"},ue=V({name:"categoryBusinessEdit"}),ne=V({...ue,props:{dictData:{type:Object,default:()=>({})}},emits:["success","close"],setup(a,{expose:D,emit:b}){const y=F(),c=F(),d=$("add"),w=z(()=>d.value=="edit"?"\u7F16\u8F91\u5546\u673A\u5206\u7C7B\u8868":"\u65B0\u589E\u5546\u673A\u5206\u7C7B\u8868"),s=f({id:"",name:"",pid:"",sort:"99",status:""}),m=f([]),k=f({name:[{required:!0,message:"\u8BF7\u8F93\u5165\u540D\u79F0",trigger:["blur"]}],pid:[{required:!0,message:"\u8BF7\u9009\u62E9\u4E0A\u7EA7id",trigger:["blur"]}],sort:[{required:!0,message:"\u8BF7\u8F93\u5165\u6392\u5E8F",trigger:["blur"]}],status:[{required:!0,message:"\u8BF7\u9009\u62E9\u72B6\u6001\uFF080\u505C\u7528 1\u6B63\u5E38\uFF09",trigger:["blur"]}]}),B=async u=>{for(const e in s)u[e]!=null&&u[e]!=null&&(s[e]=u[e])},A=async u=>{const e=await Z({id:u.id});B(e)},R=async()=>{const u=await W({page:1,limit:1e3,pid:0});m.value=[{id:0,name:"\u9876\u7EA7\u5206\u7C7B"},...u.lists],console.log(m)},x=async()=>{var e,r;await((e=y.value)==null?void 0:e.validate());const u={...s};d.value=="edit"?await Y(u):await X(u),(r=c.value)==null||r.close(),b("success")},h=(u="add")=>{var e;d.value=u,(e=c.value)==null||e.open()},q=()=>{b("close")};return R(),D({open:h,setFormData:B,getDetail:A}),(u,e)=>{const r=T,p=G,L=O,U=P,I=j,S=H,N=K;return n(),g("div",ee,[o(M,{ref_key:"popupRef",ref:c,title:w.value,async:!0,width:"550px",onConfirm:x,onClose:q},{default:l(()=>[o(N,{ref_key:"formRef",ref:y,model:s,"label-width":"90px",disabled:d.value=="check",rules:k},{default:l(()=>[o(p,{label:"\u540D\u79F0",prop:"name"},{default:l(()=>[o(r,{modelValue:s.name,"onUpdate:modelValue":e[0]||(e[0]=t=>s.name=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u540D\u79F0"},null,8,["modelValue"])]),_:1}),o(p,{label:"\u9876\u7EA7\u5206\u7C7B",prop:"pid"},{default:l(()=>[o(U,{class:"flex-1",modelValue:s.pid,"onUpdate:modelValue":e[1]||(e[1]=t=>s.pid=t),clearable:"",placeholder:"\u8BF7\u9009\u62E9\u4E0A\u7EA7\u5206\u7C7B"},{default:l(()=>[(n(!0),g(E,null,v(m.value,(t,_)=>(n(),C(L,{key:_,label:t.name,value:parseInt(t.id)},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1}),o(p,{label:"\u6392\u5E8F",prop:"sort"},{default:l(()=>[o(r,{modelValue:s.sort,"onUpdate:modelValue":e[2]||(e[2]=t=>s.sort=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u6392\u5E8F"},null,8,["modelValue"])]),_:1}),o(p,{label:"\u72B6\u6001",prop:"status"},{default:l(()=>[o(S,{modelValue:s.status,"onUpdate:modelValue":e[3]||(e[3]=t=>s.status=t),placeholder:"\u8BF7\u9009\u62E9\u72B6\u6001"},{default:l(()=>[(n(!0),g(E,null,v(a.dictData.show_status,(t,_)=>(n(),C(I,{key:_,label:parseInt(t.value)},{default:l(()=>[J(Q(t.name),1)]),_:2},1032,["label"]))),128))]),_:1},8,["modelValue"])]),_:1})]),_:1},8,["model","disabled","rules"])]),_:1},8,["title"])])}}});export{ne as _,re as a,W as b}; diff --git a/public/admin/assets/edit.vue_vue_type_script_setup_true_name_companyComplaintFeedbackEdit_lang.bc8f5151.js b/public/admin/assets/edit.vue_vue_type_script_setup_true_name_companyComplaintFeedbackEdit_lang.bc8f5151.js new file mode 100644 index 000000000..17962d26b --- /dev/null +++ b/public/admin/assets/edit.vue_vue_type_script_setup_true_name_companyComplaintFeedbackEdit_lang.bc8f5151.js @@ -0,0 +1 @@ +import{B as g,C as h,D as x}from"./element-plus.4328d892.js";import{P as R}from"./index.b940d6e3.js";import{r as p}from"./index.ed71ac09.js";import"./lodash.08438971.js";import{d as b,s as y,r as U,e as q,$ as C,o as I,c as L,U as l,L as c,u as n}from"./@vue.51d7f2d8.js";function H(t){return p.get({url:"/company_complaint_feedback/lists",params:t})}function P(t){return p.post({url:"/company_complaint_feedback/add",params:t})}function j(t){return p.post({url:"/company_complaint_feedback/edit",params:t})}function J(t){return p.post({url:"/company_complaint_feedback/delete",params:t})}function A(t){return p.get({url:"/company_complaint_feedback/detail",params:t})}const N={class:"edit-popup"},O=b({name:"companyComplaintFeedbackEdit"}),K=b({...O,props:{dictData:{type:Object,default:()=>({})}},emits:["success","close"],setup(t,{expose:F,emit:d}){const m=y(),s=y(),r=U("add"),k=q(()=>r.value=="edit"?"\u7F16\u8F91\u6295\u8BC9\u53CD\u9988":"\u65B0\u589E\u6295\u8BC9\u53CD\u9988"),a=C({id:"",company_id:"",content:""}),B=C({content:[{required:!0,message:"\u8BF7\u8F93\u5165\u5185\u5BB9",trigger:["blur"]}]}),f=async o=>{for(const e in a)o[e]!=null&&o[e]!=null&&(a[e]=o[e])},v=async o=>{const e=await A({id:o.id});f(e)},D=async()=>{var e,u;await((e=m.value)==null?void 0:e.validate());const o={...a};r.value=="edit"?await j(o):await P(o),(u=s.value)==null||u.close(),d("success")},w=(o="add")=>{var e;r.value=o,(e=s.value)==null||e.open()},E=()=>{d("close")};return F({open:w,setFormData:f,getDetail:v}),(o,e)=>{const u=g,_=h,V=x;return I(),L("div",N,[l(R,{ref_key:"popupRef",ref:s,title:n(k),async:!0,width:"550px",onConfirm:D,onClose:E},{default:c(()=>[l(V,{ref_key:"formRef",ref:m,model:n(a),"label-width":"90px",rules:n(B)},{default:c(()=>[l(_,{label:"\u516C\u53F8",prop:"company_id"},{default:c(()=>[l(u,{modelValue:n(a).company_id,"onUpdate:modelValue":e[0]||(e[0]=i=>n(a).company_id=i),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u516C\u53F8"},null,8,["modelValue"])]),_:1}),l(_,{label:"\u5185\u5BB9",prop:"content"},{default:c(()=>[l(u,{modelValue:n(a).content,"onUpdate:modelValue":e[1]||(e[1]=i=>n(a).content=i),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u5185\u5BB9"},null,8,["modelValue"])]),_:1})]),_:1},8,["model","rules"])]),_:1},8,["title"])])}}});export{K as _,J as a,H as b}; diff --git a/public/admin/assets/edit.vue_vue_type_script_setup_true_name_companyComplaintFeedbackEdit_lang.def3fc04.js b/public/admin/assets/edit.vue_vue_type_script_setup_true_name_companyComplaintFeedbackEdit_lang.def3fc04.js new file mode 100644 index 000000000..27ce92698 --- /dev/null +++ b/public/admin/assets/edit.vue_vue_type_script_setup_true_name_companyComplaintFeedbackEdit_lang.def3fc04.js @@ -0,0 +1 @@ +import{B as g,C as h,D as x}from"./element-plus.4328d892.js";import{P as R}from"./index.fa872673.js";import{r as p}from"./index.aa9bb752.js";import"./lodash.08438971.js";import{d as b,s as y,r as U,e as q,$ as C,o as I,c as L,U as l,L as c,u as n}from"./@vue.51d7f2d8.js";function H(t){return p.get({url:"/company_complaint_feedback/lists",params:t})}function P(t){return p.post({url:"/company_complaint_feedback/add",params:t})}function j(t){return p.post({url:"/company_complaint_feedback/edit",params:t})}function J(t){return p.post({url:"/company_complaint_feedback/delete",params:t})}function A(t){return p.get({url:"/company_complaint_feedback/detail",params:t})}const N={class:"edit-popup"},O=b({name:"companyComplaintFeedbackEdit"}),K=b({...O,props:{dictData:{type:Object,default:()=>({})}},emits:["success","close"],setup(t,{expose:F,emit:d}){const m=y(),s=y(),r=U("add"),k=q(()=>r.value=="edit"?"\u7F16\u8F91\u6295\u8BC9\u53CD\u9988":"\u65B0\u589E\u6295\u8BC9\u53CD\u9988"),a=C({id:"",company_id:"",content:""}),B=C({content:[{required:!0,message:"\u8BF7\u8F93\u5165\u5185\u5BB9",trigger:["blur"]}]}),f=async o=>{for(const e in a)o[e]!=null&&o[e]!=null&&(a[e]=o[e])},v=async o=>{const e=await A({id:o.id});f(e)},D=async()=>{var e,u;await((e=m.value)==null?void 0:e.validate());const o={...a};r.value=="edit"?await j(o):await P(o),(u=s.value)==null||u.close(),d("success")},w=(o="add")=>{var e;r.value=o,(e=s.value)==null||e.open()},E=()=>{d("close")};return F({open:w,setFormData:f,getDetail:v}),(o,e)=>{const u=g,_=h,V=x;return I(),L("div",N,[l(R,{ref_key:"popupRef",ref:s,title:n(k),async:!0,width:"550px",onConfirm:D,onClose:E},{default:c(()=>[l(V,{ref_key:"formRef",ref:m,model:n(a),"label-width":"90px",rules:n(B)},{default:c(()=>[l(_,{label:"\u516C\u53F8",prop:"company_id"},{default:c(()=>[l(u,{modelValue:n(a).company_id,"onUpdate:modelValue":e[0]||(e[0]=i=>n(a).company_id=i),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u516C\u53F8"},null,8,["modelValue"])]),_:1}),l(_,{label:"\u5185\u5BB9",prop:"content"},{default:c(()=>[l(u,{modelValue:n(a).content,"onUpdate:modelValue":e[1]||(e[1]=i=>n(a).content=i),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u5185\u5BB9"},null,8,["modelValue"])]),_:1})]),_:1},8,["model","rules"])]),_:1},8,["title"])])}}});export{K as _,J as a,H as b}; diff --git a/public/admin/assets/edit.vue_vue_type_script_setup_true_name_companyComplaintFeedbackEdit_lang.e39d83b5.js b/public/admin/assets/edit.vue_vue_type_script_setup_true_name_companyComplaintFeedbackEdit_lang.e39d83b5.js new file mode 100644 index 000000000..a3ab3ceae --- /dev/null +++ b/public/admin/assets/edit.vue_vue_type_script_setup_true_name_companyComplaintFeedbackEdit_lang.e39d83b5.js @@ -0,0 +1 @@ +import{B as g,C as h,D as x}from"./element-plus.4328d892.js";import{P as R}from"./index.5759a1a6.js";import{r as p}from"./index.37f7aea6.js";import"./lodash.08438971.js";import{d as b,s as y,r as U,e as q,$ as C,o as I,c as L,U as l,L as c,u as n}from"./@vue.51d7f2d8.js";function H(t){return p.get({url:"/company_complaint_feedback/lists",params:t})}function P(t){return p.post({url:"/company_complaint_feedback/add",params:t})}function j(t){return p.post({url:"/company_complaint_feedback/edit",params:t})}function J(t){return p.post({url:"/company_complaint_feedback/delete",params:t})}function A(t){return p.get({url:"/company_complaint_feedback/detail",params:t})}const N={class:"edit-popup"},O=b({name:"companyComplaintFeedbackEdit"}),K=b({...O,props:{dictData:{type:Object,default:()=>({})}},emits:["success","close"],setup(t,{expose:F,emit:d}){const m=y(),s=y(),r=U("add"),k=q(()=>r.value=="edit"?"\u7F16\u8F91\u6295\u8BC9\u53CD\u9988":"\u65B0\u589E\u6295\u8BC9\u53CD\u9988"),a=C({id:"",company_id:"",content:""}),B=C({content:[{required:!0,message:"\u8BF7\u8F93\u5165\u5185\u5BB9",trigger:["blur"]}]}),f=async o=>{for(const e in a)o[e]!=null&&o[e]!=null&&(a[e]=o[e])},v=async o=>{const e=await A({id:o.id});f(e)},D=async()=>{var e,u;await((e=m.value)==null?void 0:e.validate());const o={...a};r.value=="edit"?await j(o):await P(o),(u=s.value)==null||u.close(),d("success")},w=(o="add")=>{var e;r.value=o,(e=s.value)==null||e.open()},E=()=>{d("close")};return F({open:w,setFormData:f,getDetail:v}),(o,e)=>{const u=g,_=h,V=x;return I(),L("div",N,[l(R,{ref_key:"popupRef",ref:s,title:n(k),async:!0,width:"550px",onConfirm:D,onClose:E},{default:c(()=>[l(V,{ref_key:"formRef",ref:m,model:n(a),"label-width":"90px",rules:n(B)},{default:c(()=>[l(_,{label:"\u516C\u53F8",prop:"company_id"},{default:c(()=>[l(u,{modelValue:n(a).company_id,"onUpdate:modelValue":e[0]||(e[0]=i=>n(a).company_id=i),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u516C\u53F8"},null,8,["modelValue"])]),_:1}),l(_,{label:"\u5185\u5BB9",prop:"content"},{default:c(()=>[l(u,{modelValue:n(a).content,"onUpdate:modelValue":e[1]||(e[1]=i=>n(a).content=i),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u5185\u5BB9"},null,8,["modelValue"])]),_:1})]),_:1},8,["model","rules"])]),_:1},8,["title"])])}}});export{K as _,J as a,H as b}; diff --git a/public/admin/assets/edit.vue_vue_type_script_setup_true_name_companyFormEdit_lang.0f448649.js b/public/admin/assets/edit.vue_vue_type_script_setup_true_name_companyFormEdit_lang.0f448649.js new file mode 100644 index 000000000..17129fd4c --- /dev/null +++ b/public/admin/assets/edit.vue_vue_type_script_setup_true_name_companyFormEdit_lang.0f448649.js @@ -0,0 +1 @@ +import{B as w,C as U,D as x}from"./element-plus.4328d892.js";import{P as R}from"./index.5759a1a6.js";import{r as d}from"./index.37f7aea6.js";import"./lodash.08438971.js";import{d as B,s as _,r as k,e as z,$ as E,o as q,c as h,U as o,L as s,u as a}from"./@vue.51d7f2d8.js";function H(n){return d.get({url:"/company_form/lists",params:n})}function I(n){return d.post({url:"/company_form/add",params:n})}function L(n){return d.post({url:"/company_form/edit",params:n})}function P(n){return d.get({url:"/company_form/detail",params:n})}const j={class:"edit-popup"},N=B({name:"companyFormEdit"}),J=B({...N,props:{dictData:{type:Object,default:()=>({})}},emits:["success","close"],setup(n,{expose:C,emit:c}){const F=_(),p=_(),i=k("add"),y=z(()=>i.value=="edit"?"\u7F16\u8F91\u516C\u53F8\u8BA4\u8BC1\u8868\u683C":"\u65B0\u589E\u516C\u53F8\u8BA4\u8BC1\u8868\u683C"),u=E({id:"",company_name:"",organization_code:"",address:"",master_name:"",type:"",master_email:"",notes:""}),D=E({company_name:[{required:!0,message:"\u8BF7\u8F93\u5165\u5546\u6237\u540D\u79F0",trigger:["blur"]}],organization_code:[{required:!0,message:"\u8BF7\u8F93\u5165\u793E\u4F1A\u4FE1\u7528\u7EDF\u4E00\u4EE3\u7801",trigger:["blur"]}],master_name:[{required:!0,message:"\u8BF7\u8F93\u5165\u6CD5\u4EBA\u540D\u79F0",trigger:["blur"]}]}),f=async l=>{for(const e in u)l[e]!=null&&l[e]!=null&&(u[e]=l[e])},V=async l=>{const e=await P({id:l.id});f(e)},b=async()=>{var e,r;await((e=F.value)==null?void 0:e.validate());const l={...u};i.value=="edit"?await L(l):await I(l),(r=p.value)==null||r.close(),c("success")},g=(l="add")=>{var e;i.value=l,(e=p.value)==null||e.open()},A=()=>{c("close")};return C({open:g,setFormData:f,getDetail:V}),(l,e)=>{const r=w,m=U,v=x;return q(),h("div",j,[o(R,{ref_key:"popupRef",ref:p,title:a(y),async:!0,width:"550px",onConfirm:b,onClose:A},{default:s(()=>[o(v,{ref_key:"formRef",ref:F,model:a(u),"label-width":"90px",rules:a(D)},{default:s(()=>[o(m,{label:"\u5546\u6237\u540D\u79F0",prop:"company_name"},{default:s(()=>[o(r,{modelValue:a(u).company_name,"onUpdate:modelValue":e[0]||(e[0]=t=>a(u).company_name=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u5546\u6237\u540D\u79F0"},null,8,["modelValue"])]),_:1}),o(m,{label:"\u793E\u4F1A\u4FE1\u7528\u7EDF\u4E00\u4EE3\u7801",prop:"organization_code"},{default:s(()=>[o(r,{modelValue:a(u).organization_code,"onUpdate:modelValue":e[1]||(e[1]=t=>a(u).organization_code=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u793E\u4F1A\u4FE1\u7528\u7EDF\u4E00\u4EE3\u7801"},null,8,["modelValue"])]),_:1}),o(m,{label:"\u8BE6\u7EC6\u5730\u5740",prop:"address"},{default:s(()=>[o(r,{modelValue:a(u).address,"onUpdate:modelValue":e[2]||(e[2]=t=>a(u).address=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u8BE6\u7EC6\u5730\u5740"},null,8,["modelValue"])]),_:1}),o(m,{label:"\u6CD5\u4EBA\u540D\u79F0",prop:"master_name"},{default:s(()=>[o(r,{modelValue:a(u).master_name,"onUpdate:modelValue":e[3]||(e[3]=t=>a(u).master_name=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u6CD5\u4EBA\u540D\u79F0"},null,8,["modelValue"])]),_:1}),o(m,{label:"\u6CD5\u4EBA\u90AE\u7BB1",prop:"master_email"},{default:s(()=>[o(r,{modelValue:a(u).master_email,"onUpdate:modelValue":e[4]||(e[4]=t=>a(u).master_email=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u6CD5\u4EBA\u90AE\u7BB1"},null,8,["modelValue"])]),_:1}),o(m,{label:"\u5907\u6CE8",prop:"notes"},{default:s(()=>[o(r,{modelValue:a(u).notes,"onUpdate:modelValue":e[5]||(e[5]=t=>a(u).notes=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165"},null,8,["modelValue"])]),_:1})]),_:1},8,["model","rules"])]),_:1},8,["title"])])}}});export{J as _,H as a}; diff --git a/public/admin/assets/edit.vue_vue_type_script_setup_true_name_companyFormEdit_lang.1520b33c.js b/public/admin/assets/edit.vue_vue_type_script_setup_true_name_companyFormEdit_lang.1520b33c.js new file mode 100644 index 000000000..7f870b024 --- /dev/null +++ b/public/admin/assets/edit.vue_vue_type_script_setup_true_name_companyFormEdit_lang.1520b33c.js @@ -0,0 +1 @@ +import{B as w,C as U,D as x}from"./element-plus.4328d892.js";import{P as R}from"./index.b940d6e3.js";import{r as d}from"./index.ed71ac09.js";import"./lodash.08438971.js";import{d as B,s as _,r as k,e as z,$ as E,o as q,c as h,U as o,L as s,u as a}from"./@vue.51d7f2d8.js";function H(n){return d.get({url:"/company_form/lists",params:n})}function I(n){return d.post({url:"/company_form/add",params:n})}function L(n){return d.post({url:"/company_form/edit",params:n})}function P(n){return d.get({url:"/company_form/detail",params:n})}const j={class:"edit-popup"},N=B({name:"companyFormEdit"}),J=B({...N,props:{dictData:{type:Object,default:()=>({})}},emits:["success","close"],setup(n,{expose:C,emit:c}){const F=_(),p=_(),i=k("add"),y=z(()=>i.value=="edit"?"\u7F16\u8F91\u516C\u53F8\u8BA4\u8BC1\u8868\u683C":"\u65B0\u589E\u516C\u53F8\u8BA4\u8BC1\u8868\u683C"),u=E({id:"",company_name:"",organization_code:"",address:"",master_name:"",type:"",master_email:"",notes:""}),D=E({company_name:[{required:!0,message:"\u8BF7\u8F93\u5165\u5546\u6237\u540D\u79F0",trigger:["blur"]}],organization_code:[{required:!0,message:"\u8BF7\u8F93\u5165\u793E\u4F1A\u4FE1\u7528\u7EDF\u4E00\u4EE3\u7801",trigger:["blur"]}],master_name:[{required:!0,message:"\u8BF7\u8F93\u5165\u6CD5\u4EBA\u540D\u79F0",trigger:["blur"]}]}),f=async l=>{for(const e in u)l[e]!=null&&l[e]!=null&&(u[e]=l[e])},V=async l=>{const e=await P({id:l.id});f(e)},b=async()=>{var e,r;await((e=F.value)==null?void 0:e.validate());const l={...u};i.value=="edit"?await L(l):await I(l),(r=p.value)==null||r.close(),c("success")},g=(l="add")=>{var e;i.value=l,(e=p.value)==null||e.open()},A=()=>{c("close")};return C({open:g,setFormData:f,getDetail:V}),(l,e)=>{const r=w,m=U,v=x;return q(),h("div",j,[o(R,{ref_key:"popupRef",ref:p,title:a(y),async:!0,width:"550px",onConfirm:b,onClose:A},{default:s(()=>[o(v,{ref_key:"formRef",ref:F,model:a(u),"label-width":"90px",rules:a(D)},{default:s(()=>[o(m,{label:"\u5546\u6237\u540D\u79F0",prop:"company_name"},{default:s(()=>[o(r,{modelValue:a(u).company_name,"onUpdate:modelValue":e[0]||(e[0]=t=>a(u).company_name=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u5546\u6237\u540D\u79F0"},null,8,["modelValue"])]),_:1}),o(m,{label:"\u793E\u4F1A\u4FE1\u7528\u7EDF\u4E00\u4EE3\u7801",prop:"organization_code"},{default:s(()=>[o(r,{modelValue:a(u).organization_code,"onUpdate:modelValue":e[1]||(e[1]=t=>a(u).organization_code=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u793E\u4F1A\u4FE1\u7528\u7EDF\u4E00\u4EE3\u7801"},null,8,["modelValue"])]),_:1}),o(m,{label:"\u8BE6\u7EC6\u5730\u5740",prop:"address"},{default:s(()=>[o(r,{modelValue:a(u).address,"onUpdate:modelValue":e[2]||(e[2]=t=>a(u).address=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u8BE6\u7EC6\u5730\u5740"},null,8,["modelValue"])]),_:1}),o(m,{label:"\u6CD5\u4EBA\u540D\u79F0",prop:"master_name"},{default:s(()=>[o(r,{modelValue:a(u).master_name,"onUpdate:modelValue":e[3]||(e[3]=t=>a(u).master_name=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u6CD5\u4EBA\u540D\u79F0"},null,8,["modelValue"])]),_:1}),o(m,{label:"\u6CD5\u4EBA\u90AE\u7BB1",prop:"master_email"},{default:s(()=>[o(r,{modelValue:a(u).master_email,"onUpdate:modelValue":e[4]||(e[4]=t=>a(u).master_email=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u6CD5\u4EBA\u90AE\u7BB1"},null,8,["modelValue"])]),_:1}),o(m,{label:"\u5907\u6CE8",prop:"notes"},{default:s(()=>[o(r,{modelValue:a(u).notes,"onUpdate:modelValue":e[5]||(e[5]=t=>a(u).notes=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165"},null,8,["modelValue"])]),_:1})]),_:1},8,["model","rules"])]),_:1},8,["title"])])}}});export{J as _,H as a}; diff --git a/public/admin/assets/edit.vue_vue_type_script_setup_true_name_companyFormEdit_lang.95b5864b.js b/public/admin/assets/edit.vue_vue_type_script_setup_true_name_companyFormEdit_lang.95b5864b.js new file mode 100644 index 000000000..af9127e1a --- /dev/null +++ b/public/admin/assets/edit.vue_vue_type_script_setup_true_name_companyFormEdit_lang.95b5864b.js @@ -0,0 +1 @@ +import{B as w,C as U,D as x}from"./element-plus.4328d892.js";import{P as R}from"./index.fa872673.js";import{r as d}from"./index.aa9bb752.js";import"./lodash.08438971.js";import{d as B,s as _,r as k,e as z,$ as E,o as q,c as h,U as o,L as s,u as a}from"./@vue.51d7f2d8.js";function H(n){return d.get({url:"/company_form/lists",params:n})}function I(n){return d.post({url:"/company_form/add",params:n})}function L(n){return d.post({url:"/company_form/edit",params:n})}function P(n){return d.get({url:"/company_form/detail",params:n})}const j={class:"edit-popup"},N=B({name:"companyFormEdit"}),J=B({...N,props:{dictData:{type:Object,default:()=>({})}},emits:["success","close"],setup(n,{expose:C,emit:c}){const F=_(),p=_(),i=k("add"),y=z(()=>i.value=="edit"?"\u7F16\u8F91\u516C\u53F8\u8BA4\u8BC1\u8868\u683C":"\u65B0\u589E\u516C\u53F8\u8BA4\u8BC1\u8868\u683C"),u=E({id:"",company_name:"",organization_code:"",address:"",master_name:"",type:"",master_email:"",notes:""}),D=E({company_name:[{required:!0,message:"\u8BF7\u8F93\u5165\u5546\u6237\u540D\u79F0",trigger:["blur"]}],organization_code:[{required:!0,message:"\u8BF7\u8F93\u5165\u793E\u4F1A\u4FE1\u7528\u7EDF\u4E00\u4EE3\u7801",trigger:["blur"]}],master_name:[{required:!0,message:"\u8BF7\u8F93\u5165\u6CD5\u4EBA\u540D\u79F0",trigger:["blur"]}]}),f=async l=>{for(const e in u)l[e]!=null&&l[e]!=null&&(u[e]=l[e])},V=async l=>{const e=await P({id:l.id});f(e)},b=async()=>{var e,r;await((e=F.value)==null?void 0:e.validate());const l={...u};i.value=="edit"?await L(l):await I(l),(r=p.value)==null||r.close(),c("success")},g=(l="add")=>{var e;i.value=l,(e=p.value)==null||e.open()},A=()=>{c("close")};return C({open:g,setFormData:f,getDetail:V}),(l,e)=>{const r=w,m=U,v=x;return q(),h("div",j,[o(R,{ref_key:"popupRef",ref:p,title:a(y),async:!0,width:"550px",onConfirm:b,onClose:A},{default:s(()=>[o(v,{ref_key:"formRef",ref:F,model:a(u),"label-width":"90px",rules:a(D)},{default:s(()=>[o(m,{label:"\u5546\u6237\u540D\u79F0",prop:"company_name"},{default:s(()=>[o(r,{modelValue:a(u).company_name,"onUpdate:modelValue":e[0]||(e[0]=t=>a(u).company_name=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u5546\u6237\u540D\u79F0"},null,8,["modelValue"])]),_:1}),o(m,{label:"\u793E\u4F1A\u4FE1\u7528\u7EDF\u4E00\u4EE3\u7801",prop:"organization_code"},{default:s(()=>[o(r,{modelValue:a(u).organization_code,"onUpdate:modelValue":e[1]||(e[1]=t=>a(u).organization_code=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u793E\u4F1A\u4FE1\u7528\u7EDF\u4E00\u4EE3\u7801"},null,8,["modelValue"])]),_:1}),o(m,{label:"\u8BE6\u7EC6\u5730\u5740",prop:"address"},{default:s(()=>[o(r,{modelValue:a(u).address,"onUpdate:modelValue":e[2]||(e[2]=t=>a(u).address=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u8BE6\u7EC6\u5730\u5740"},null,8,["modelValue"])]),_:1}),o(m,{label:"\u6CD5\u4EBA\u540D\u79F0",prop:"master_name"},{default:s(()=>[o(r,{modelValue:a(u).master_name,"onUpdate:modelValue":e[3]||(e[3]=t=>a(u).master_name=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u6CD5\u4EBA\u540D\u79F0"},null,8,["modelValue"])]),_:1}),o(m,{label:"\u6CD5\u4EBA\u90AE\u7BB1",prop:"master_email"},{default:s(()=>[o(r,{modelValue:a(u).master_email,"onUpdate:modelValue":e[4]||(e[4]=t=>a(u).master_email=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u6CD5\u4EBA\u90AE\u7BB1"},null,8,["modelValue"])]),_:1}),o(m,{label:"\u5907\u6CE8",prop:"notes"},{default:s(()=>[o(r,{modelValue:a(u).notes,"onUpdate:modelValue":e[5]||(e[5]=t=>a(u).notes=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165"},null,8,["modelValue"])]),_:1})]),_:1},8,["model","rules"])]),_:1},8,["title"])])}}});export{J as _,H as a}; diff --git a/public/admin/assets/edit.vue_vue_type_script_setup_true_name_shopContractEdit_lang.03c8c155.js b/public/admin/assets/edit.vue_vue_type_script_setup_true_name_shopContractEdit_lang.03c8c155.js new file mode 100644 index 000000000..fa0d745c5 --- /dev/null +++ b/public/admin/assets/edit.vue_vue_type_script_setup_true_name_shopContractEdit_lang.03c8c155.js @@ -0,0 +1 @@ +import{B as g,C as w,D as U}from"./element-plus.4328d892.js";import{P as h}from"./index.5759a1a6.js";import{a as x,c as D,d as R}from"./shop_contract.07d6415c.js";import"./lodash.08438971.js";import{d as F,s as _,r as k,e as S,$ as f,o as I,c as P,U as o,L as r,u as l}from"./@vue.51d7f2d8.js";const j={class:"edit-popup"},L=F({name:"shopContractEdit"}),G=F({...L,props:{dictData:{type:Object,default:()=>({})}},emits:["success","close"],setup(N,{expose:E,emit:c}){const i=_(),p=_(),s=k("add"),B=S(()=>s.value=="edit"?"\u7F16\u8F91\u5546\u6237\u5408\u540C":"\u65B0\u589E\u5546\u6237\u5408\u540C"),u=f({id:"",contract_no:"",type:"",contract_url:"",evidence_url:"",url:"",signing_timer:""}),C=f({}),m=async t=>{for(const e in u)t[e]!=null&&t[e]!=null&&(u[e]=t[e])},V=async t=>{const e=await x({id:t.id});m(e)},b=async()=>{var e,n;await((e=i.value)==null?void 0:e.validate());const t={...u};s.value=="edit"?await D(t):await R(t),(n=p.value)==null||n.close(),c("success")},A=(t="add")=>{var e;s.value=t,(e=p.value)==null||e.open()},v=()=>{c("close")};return E({open:A,setFormData:m,getDetail:V}),(t,e)=>{const n=g,d=w,y=U;return I(),P("div",j,[o(h,{ref_key:"popupRef",ref:p,title:l(B),async:!0,width:"550px",onConfirm:b,onClose:v},{default:r(()=>[o(y,{ref_key:"formRef",ref:i,model:l(u),"label-width":"90px",rules:l(C)},{default:r(()=>[o(d,{label:"\u5408\u540C\u7F16\u53F7",prop:"contract_no"},{default:r(()=>[o(n,{modelValue:l(u).contract_no,"onUpdate:modelValue":e[0]||(e[0]=a=>l(u).contract_no=a),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u5408\u540C\u7F16\u53F7"},null,8,["modelValue"])]),_:1}),o(d,{label:"1\u516C\u53F82\u4E2A\u4EBA",prop:"type"},{default:r(()=>[o(n,{modelValue:l(u).type,"onUpdate:modelValue":e[1]||(e[1]=a=>l(u).type=a),clearable:"",placeholder:"\u8BF7\u8F93\u51651\u516C\u53F82\u4E2A\u4EBA"},null,8,["modelValue"])]),_:1}),o(d,{label:"\u7B7E\u7EA6\u540E\u7684\u5408\u540C",prop:"contract_url"},{default:r(()=>[o(n,{modelValue:l(u).contract_url,"onUpdate:modelValue":e[2]||(e[2]=a=>l(u).contract_url=a),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u7B7E\u7EA6\u540E\u7684\u5408\u540C"},null,8,["modelValue"])]),_:1}),o(d,{label:"\u8BC1\u636E\u5305",prop:"evidence_url"},{default:r(()=>[o(n,{modelValue:l(u).evidence_url,"onUpdate:modelValue":e[3]||(e[3]=a=>l(u).evidence_url=a),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u8BC1\u636E\u5305"},null,8,["modelValue"])]),_:1}),o(d,{label:"\u5408\u540C\u591A\u65B9\u94FE\u63A5",prop:"url"},{default:r(()=>[o(n,{modelValue:l(u).url,"onUpdate:modelValue":e[4]||(e[4]=a=>l(u).url=a),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u5408\u540C\u591A\u65B9\u94FE\u63A5"},null,8,["modelValue"])]),_:1}),o(d,{label:"\u7B7E\u7EA6\u8BA1\u65F6\u5668",prop:"signing_timer"},{default:r(()=>[o(n,{modelValue:l(u).signing_timer,"onUpdate:modelValue":e[5]||(e[5]=a=>l(u).signing_timer=a),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u7B7E\u7EA6\u8BA1\u65F6\u5668"},null,8,["modelValue"])]),_:1})]),_:1},8,["model","rules"])]),_:1},8,["title"])])}}});export{G as _}; diff --git a/public/admin/assets/edit.vue_vue_type_script_setup_true_name_shopContractEdit_lang.84a1c3a4.js b/public/admin/assets/edit.vue_vue_type_script_setup_true_name_shopContractEdit_lang.84a1c3a4.js new file mode 100644 index 000000000..b8f980917 --- /dev/null +++ b/public/admin/assets/edit.vue_vue_type_script_setup_true_name_shopContractEdit_lang.84a1c3a4.js @@ -0,0 +1 @@ +import{B as g,C as w,D as U}from"./element-plus.4328d892.js";import{P as h}from"./index.b940d6e3.js";import{a as x,c as D,d as R}from"./shop_contract.c24a8510.js";import"./lodash.08438971.js";import{d as F,s as _,r as k,e as S,$ as f,o as I,c as P,U as o,L as r,u as l}from"./@vue.51d7f2d8.js";const j={class:"edit-popup"},L=F({name:"shopContractEdit"}),G=F({...L,props:{dictData:{type:Object,default:()=>({})}},emits:["success","close"],setup(N,{expose:E,emit:c}){const i=_(),p=_(),s=k("add"),B=S(()=>s.value=="edit"?"\u7F16\u8F91\u5546\u6237\u5408\u540C":"\u65B0\u589E\u5546\u6237\u5408\u540C"),u=f({id:"",contract_no:"",type:"",contract_url:"",evidence_url:"",url:"",signing_timer:""}),C=f({}),m=async t=>{for(const e in u)t[e]!=null&&t[e]!=null&&(u[e]=t[e])},V=async t=>{const e=await x({id:t.id});m(e)},b=async()=>{var e,n;await((e=i.value)==null?void 0:e.validate());const t={...u};s.value=="edit"?await D(t):await R(t),(n=p.value)==null||n.close(),c("success")},A=(t="add")=>{var e;s.value=t,(e=p.value)==null||e.open()},v=()=>{c("close")};return E({open:A,setFormData:m,getDetail:V}),(t,e)=>{const n=g,d=w,y=U;return I(),P("div",j,[o(h,{ref_key:"popupRef",ref:p,title:l(B),async:!0,width:"550px",onConfirm:b,onClose:v},{default:r(()=>[o(y,{ref_key:"formRef",ref:i,model:l(u),"label-width":"90px",rules:l(C)},{default:r(()=>[o(d,{label:"\u5408\u540C\u7F16\u53F7",prop:"contract_no"},{default:r(()=>[o(n,{modelValue:l(u).contract_no,"onUpdate:modelValue":e[0]||(e[0]=a=>l(u).contract_no=a),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u5408\u540C\u7F16\u53F7"},null,8,["modelValue"])]),_:1}),o(d,{label:"1\u516C\u53F82\u4E2A\u4EBA",prop:"type"},{default:r(()=>[o(n,{modelValue:l(u).type,"onUpdate:modelValue":e[1]||(e[1]=a=>l(u).type=a),clearable:"",placeholder:"\u8BF7\u8F93\u51651\u516C\u53F82\u4E2A\u4EBA"},null,8,["modelValue"])]),_:1}),o(d,{label:"\u7B7E\u7EA6\u540E\u7684\u5408\u540C",prop:"contract_url"},{default:r(()=>[o(n,{modelValue:l(u).contract_url,"onUpdate:modelValue":e[2]||(e[2]=a=>l(u).contract_url=a),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u7B7E\u7EA6\u540E\u7684\u5408\u540C"},null,8,["modelValue"])]),_:1}),o(d,{label:"\u8BC1\u636E\u5305",prop:"evidence_url"},{default:r(()=>[o(n,{modelValue:l(u).evidence_url,"onUpdate:modelValue":e[3]||(e[3]=a=>l(u).evidence_url=a),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u8BC1\u636E\u5305"},null,8,["modelValue"])]),_:1}),o(d,{label:"\u5408\u540C\u591A\u65B9\u94FE\u63A5",prop:"url"},{default:r(()=>[o(n,{modelValue:l(u).url,"onUpdate:modelValue":e[4]||(e[4]=a=>l(u).url=a),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u5408\u540C\u591A\u65B9\u94FE\u63A5"},null,8,["modelValue"])]),_:1}),o(d,{label:"\u7B7E\u7EA6\u8BA1\u65F6\u5668",prop:"signing_timer"},{default:r(()=>[o(n,{modelValue:l(u).signing_timer,"onUpdate:modelValue":e[5]||(e[5]=a=>l(u).signing_timer=a),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u7B7E\u7EA6\u8BA1\u65F6\u5668"},null,8,["modelValue"])]),_:1})]),_:1},8,["model","rules"])]),_:1},8,["title"])])}}});export{G as _}; diff --git a/public/admin/assets/edit.vue_vue_type_script_setup_true_name_shopContractEdit_lang.d9f639bc.js b/public/admin/assets/edit.vue_vue_type_script_setup_true_name_shopContractEdit_lang.d9f639bc.js new file mode 100644 index 000000000..5e5c37b70 --- /dev/null +++ b/public/admin/assets/edit.vue_vue_type_script_setup_true_name_shopContractEdit_lang.d9f639bc.js @@ -0,0 +1 @@ +import{B as g,C as w,D as U}from"./element-plus.4328d892.js";import{P as h}from"./index.fa872673.js";import{a as x,c as D,d as R}from"./shop_contract.f4761eae.js";import"./lodash.08438971.js";import{d as F,s as _,r as k,e as S,$ as f,o as I,c as P,U as o,L as r,u as l}from"./@vue.51d7f2d8.js";const j={class:"edit-popup"},L=F({name:"shopContractEdit"}),G=F({...L,props:{dictData:{type:Object,default:()=>({})}},emits:["success","close"],setup(N,{expose:E,emit:c}){const i=_(),p=_(),s=k("add"),B=S(()=>s.value=="edit"?"\u7F16\u8F91\u5546\u6237\u5408\u540C":"\u65B0\u589E\u5546\u6237\u5408\u540C"),u=f({id:"",contract_no:"",type:"",contract_url:"",evidence_url:"",url:"",signing_timer:""}),C=f({}),m=async t=>{for(const e in u)t[e]!=null&&t[e]!=null&&(u[e]=t[e])},V=async t=>{const e=await x({id:t.id});m(e)},b=async()=>{var e,n;await((e=i.value)==null?void 0:e.validate());const t={...u};s.value=="edit"?await D(t):await R(t),(n=p.value)==null||n.close(),c("success")},A=(t="add")=>{var e;s.value=t,(e=p.value)==null||e.open()},v=()=>{c("close")};return E({open:A,setFormData:m,getDetail:V}),(t,e)=>{const n=g,d=w,y=U;return I(),P("div",j,[o(h,{ref_key:"popupRef",ref:p,title:l(B),async:!0,width:"550px",onConfirm:b,onClose:v},{default:r(()=>[o(y,{ref_key:"formRef",ref:i,model:l(u),"label-width":"90px",rules:l(C)},{default:r(()=>[o(d,{label:"\u5408\u540C\u7F16\u53F7",prop:"contract_no"},{default:r(()=>[o(n,{modelValue:l(u).contract_no,"onUpdate:modelValue":e[0]||(e[0]=a=>l(u).contract_no=a),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u5408\u540C\u7F16\u53F7"},null,8,["modelValue"])]),_:1}),o(d,{label:"1\u516C\u53F82\u4E2A\u4EBA",prop:"type"},{default:r(()=>[o(n,{modelValue:l(u).type,"onUpdate:modelValue":e[1]||(e[1]=a=>l(u).type=a),clearable:"",placeholder:"\u8BF7\u8F93\u51651\u516C\u53F82\u4E2A\u4EBA"},null,8,["modelValue"])]),_:1}),o(d,{label:"\u7B7E\u7EA6\u540E\u7684\u5408\u540C",prop:"contract_url"},{default:r(()=>[o(n,{modelValue:l(u).contract_url,"onUpdate:modelValue":e[2]||(e[2]=a=>l(u).contract_url=a),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u7B7E\u7EA6\u540E\u7684\u5408\u540C"},null,8,["modelValue"])]),_:1}),o(d,{label:"\u8BC1\u636E\u5305",prop:"evidence_url"},{default:r(()=>[o(n,{modelValue:l(u).evidence_url,"onUpdate:modelValue":e[3]||(e[3]=a=>l(u).evidence_url=a),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u8BC1\u636E\u5305"},null,8,["modelValue"])]),_:1}),o(d,{label:"\u5408\u540C\u591A\u65B9\u94FE\u63A5",prop:"url"},{default:r(()=>[o(n,{modelValue:l(u).url,"onUpdate:modelValue":e[4]||(e[4]=a=>l(u).url=a),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u5408\u540C\u591A\u65B9\u94FE\u63A5"},null,8,["modelValue"])]),_:1}),o(d,{label:"\u7B7E\u7EA6\u8BA1\u65F6\u5668",prop:"signing_timer"},{default:r(()=>[o(n,{modelValue:l(u).signing_timer,"onUpdate:modelValue":e[5]||(e[5]=a=>l(u).signing_timer=a),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u7B7E\u7EA6\u8BA1\u65F6\u5668"},null,8,["modelValue"])]),_:1})]),_:1},8,["model","rules"])]),_:1},8,["title"])])}}});export{G as _}; diff --git a/public/admin/assets/edit.vue_vue_type_script_setup_true_name_shopMerchantEdit_lang.605ed377.js b/public/admin/assets/edit.vue_vue_type_script_setup_true_name_shopMerchantEdit_lang.605ed377.js new file mode 100644 index 000000000..96f1cc056 --- /dev/null +++ b/public/admin/assets/edit.vue_vue_type_script_setup_true_name_shopMerchantEdit_lang.605ed377.js @@ -0,0 +1 @@ +import{D}from"./element-plus.4328d892.js";import{P as R}from"./index.b940d6e3.js";import{r as n}from"./index.ed71ac09.js";import"./lodash.08438971.js";import{d as h,s as d,r as k,e as M,$ as f,o as S,c as F,U as m,L as b,u}from"./@vue.51d7f2d8.js";function U(o){return n.get({url:"/shop_merchant/lists",params:o})}function g(o){return n.post({url:"/shop_merchant/add",params:o})}function B(o){return n.post({url:"/shop_merchant/edit",params:o})}function L(o){return n.get({url:"/shop_merchant/detail",params:o})}const P={class:"edit-popup"},j=h({name:"shopMerchantEdit"}),V=h({...j,props:{dictData:{type:Object,default:()=>({})}},emits:["success","close"],setup(o,{expose:_,emit:p}){const i=d(),r=d(),c=k("add"),v=M(()=>c.value=="edit"?"\u7F16\u8F91\u5546\u57CE\u5546\u6237":"\u65B0\u589E\u5546\u57CE\u5546\u6237"),a=f({id:""}),w=f({}),l=async t=>{for(const e in a)t[e]!=null&&t[e]!=null&&(a[e]=t[e])},y=async t=>{const e=await L({id:t.id});l(e)},C=async()=>{var e,s;await((e=i.value)==null?void 0:e.validate());const t={...a};c.value=="edit"?await B(t):await g(t),(s=r.value)==null||s.close(),p("success")},E=(t="add")=>{var e;c.value=t,(e=r.value)==null||e.open()},x=()=>{p("close")};return _({open:E,setFormData:l,getDetail:y}),(t,e)=>{const s=D;return S(),F("div",P,[m(R,{ref_key:"popupRef",ref:r,title:u(v),async:!0,width:"550px",onConfirm:C,onClose:x},{default:b(()=>[m(s,{ref_key:"formRef",ref:i,model:u(a),"label-width":"90px",rules:u(w)},null,8,["model","rules"])]),_:1},8,["title"])])}}});export{V as _,U as a}; diff --git a/public/admin/assets/edit.vue_vue_type_script_setup_true_name_shopMerchantEdit_lang.73c4b5a4.js b/public/admin/assets/edit.vue_vue_type_script_setup_true_name_shopMerchantEdit_lang.73c4b5a4.js new file mode 100644 index 000000000..37d5201c6 --- /dev/null +++ b/public/admin/assets/edit.vue_vue_type_script_setup_true_name_shopMerchantEdit_lang.73c4b5a4.js @@ -0,0 +1 @@ +import{D}from"./element-plus.4328d892.js";import{P as R}from"./index.fa872673.js";import{r as n}from"./index.aa9bb752.js";import"./lodash.08438971.js";import{d as h,s as d,r as k,e as M,$ as f,o as S,c as F,U as m,L as b,u}from"./@vue.51d7f2d8.js";function U(o){return n.get({url:"/shop_merchant/lists",params:o})}function g(o){return n.post({url:"/shop_merchant/add",params:o})}function B(o){return n.post({url:"/shop_merchant/edit",params:o})}function L(o){return n.get({url:"/shop_merchant/detail",params:o})}const P={class:"edit-popup"},j=h({name:"shopMerchantEdit"}),V=h({...j,props:{dictData:{type:Object,default:()=>({})}},emits:["success","close"],setup(o,{expose:_,emit:p}){const i=d(),r=d(),c=k("add"),v=M(()=>c.value=="edit"?"\u7F16\u8F91\u5546\u57CE\u5546\u6237":"\u65B0\u589E\u5546\u57CE\u5546\u6237"),a=f({id:""}),w=f({}),l=async t=>{for(const e in a)t[e]!=null&&t[e]!=null&&(a[e]=t[e])},y=async t=>{const e=await L({id:t.id});l(e)},C=async()=>{var e,s;await((e=i.value)==null?void 0:e.validate());const t={...a};c.value=="edit"?await B(t):await g(t),(s=r.value)==null||s.close(),p("success")},E=(t="add")=>{var e;c.value=t,(e=r.value)==null||e.open()},x=()=>{p("close")};return _({open:E,setFormData:l,getDetail:y}),(t,e)=>{const s=D;return S(),F("div",P,[m(R,{ref_key:"popupRef",ref:r,title:u(v),async:!0,width:"550px",onConfirm:C,onClose:x},{default:b(()=>[m(s,{ref_key:"formRef",ref:i,model:u(a),"label-width":"90px",rules:u(w)},null,8,["model","rules"])]),_:1},8,["title"])])}}});export{V as _,U as a}; diff --git a/public/admin/assets/edit.vue_vue_type_script_setup_true_name_shopMerchantEdit_lang.ddb23228.js b/public/admin/assets/edit.vue_vue_type_script_setup_true_name_shopMerchantEdit_lang.ddb23228.js new file mode 100644 index 000000000..226e5a060 --- /dev/null +++ b/public/admin/assets/edit.vue_vue_type_script_setup_true_name_shopMerchantEdit_lang.ddb23228.js @@ -0,0 +1 @@ +import{D}from"./element-plus.4328d892.js";import{P as R}from"./index.5759a1a6.js";import{r as n}from"./index.37f7aea6.js";import"./lodash.08438971.js";import{d as h,s as d,r as k,e as M,$ as f,o as S,c as F,U as m,L as b,u}from"./@vue.51d7f2d8.js";function U(o){return n.get({url:"/shop_merchant/lists",params:o})}function g(o){return n.post({url:"/shop_merchant/add",params:o})}function B(o){return n.post({url:"/shop_merchant/edit",params:o})}function L(o){return n.get({url:"/shop_merchant/detail",params:o})}const P={class:"edit-popup"},j=h({name:"shopMerchantEdit"}),V=h({...j,props:{dictData:{type:Object,default:()=>({})}},emits:["success","close"],setup(o,{expose:_,emit:p}){const i=d(),r=d(),c=k("add"),v=M(()=>c.value=="edit"?"\u7F16\u8F91\u5546\u57CE\u5546\u6237":"\u65B0\u589E\u5546\u57CE\u5546\u6237"),a=f({id:""}),w=f({}),l=async t=>{for(const e in a)t[e]!=null&&t[e]!=null&&(a[e]=t[e])},y=async t=>{const e=await L({id:t.id});l(e)},C=async()=>{var e,s;await((e=i.value)==null?void 0:e.validate());const t={...a};c.value=="edit"?await B(t):await g(t),(s=r.value)==null||s.close(),p("success")},E=(t="add")=>{var e;c.value=t,(e=r.value)==null||e.open()},x=()=>{p("close")};return _({open:E,setFormData:l,getDetail:y}),(t,e)=>{const s=D;return S(),F("div",P,[m(R,{ref_key:"popupRef",ref:r,title:u(v),async:!0,width:"550px",onConfirm:C,onClose:x},{default:b(()=>[m(s,{ref_key:"formRef",ref:i,model:u(a),"label-width":"90px",rules:u(w)},null,8,["model","rules"])]),_:1},8,["title"])])}}});export{V as _,U as a}; diff --git a/public/admin/assets/edit.vue_vue_type_script_setup_true_name_taskSchedulingEdit_lang.682619c9.js b/public/admin/assets/edit.vue_vue_type_script_setup_true_name_taskSchedulingEdit_lang.682619c9.js new file mode 100644 index 000000000..34d96e292 --- /dev/null +++ b/public/admin/assets/edit.vue_vue_type_script_setup_true_name_taskSchedulingEdit_lang.682619c9.js @@ -0,0 +1 @@ +import{M as I,N as O,C as P,B as $,G as j,H,D as K,L as M}from"./element-plus.4328d892.js";import{P as q}from"./index.5759a1a6.js";import{a as z,b as J,c as Q}from"./task_scheduling.7035f2c0.js";import"./lodash.08438971.js";import{_ as W}from"./dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.26cf5c3d.js";import{d as X}from"./dict.58face92.js";import{d as k,s as C,r as c,e as Y,$ as v,o as r,c as V,U as o,L as n,u,T as Z,a7 as ee,K as ae,R as b,k as le}from"./@vue.51d7f2d8.js";const oe={class:"edit-popup"},te=k({name:"taskSchedulingEdit"}),re=k({...te,props:{dictData:{type:Object,default:()=>({})}},emits:["success","close"],setup(ue,{expose:D,emit:_}){const f=C(),m=C(),i=c("add"),s=c(!1),y=c([]),R=Y(()=>i.value=="edit"?"\u7F16\u8F91\u4EFB\u52A1\u516C\u53F8\u6392\u671F":"\u65B0\u589E\u4EFB\u52A1\u516C\u53F8\u6392\u671F");function g(){s.value=!0}function w(a){s.value=!1,l.company_id=a.id,l.company_name=a.company_name}X({type_id:10}).then(a=>{y.value=a.lists});const l=v({id:"",template_id:"",company_id:"",company_name:"",type:"",status:""}),h=v({}),F=async a=>{for(const e in l)a[e]!=null&&a[e]!=null&&(l[e]=a[e])},x=async a=>{const e=await z({id:a.id});F(e)},T=async()=>{var e,p;await((e=f.value)==null?void 0:e.validate());const a={...l};i.value=="edit"?await J(a):await Q(a),(p=m.value)==null||p.close(),_("success")},A=(a="add")=>{var e;i.value=a,(e=m.value)==null||e.open()},S=()=>{_("close")};return D({open:A,setFormData:F,getDetail:x}),(a,e)=>{const p=I,U=O,d=P,B=$,E=j,L=H,N=K,G=M;return r(),V("div",oe,[o(q,{ref_key:"popupRef",ref:m,title:u(R),async:!0,width:"500px",onConfirm:T,onClose:S},{default:n(()=>[o(N,{ref_key:"formRef",ref:f,model:u(l),"label-width":"100px",rules:u(h)},{default:n(()=>[o(d,{label:"\u6A21\u677F",prop:"template_id"},{default:n(()=>[o(U,{modelValue:u(l).template_id,"onUpdate:modelValue":e[0]||(e[0]=t=>u(l).template_id=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u4EFB\u52A1\u7C7B\u578B"},{default:n(()=>[(r(!0),V(Z,null,ee(u(y),t=>(r(),ae(p,{key:t.label,value:t.id,label:t.name},null,8,["value","label"]))),128))]),_:1},8,["modelValue"])]),_:1}),o(d,{label:"\u516C\u53F8",prop:"company_id"},{default:n(()=>[o(B,{onClick:g,modelValue:u(l).company_name,"onUpdate:modelValue":e[1]||(e[1]=t=>u(l).company_name=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u516C\u53F8"},null,8,["modelValue"])]),_:1}),o(d,{label:"\u4E0B\u53D1\u516C\u53F8\u7C7B\u578B",prop:"type"},{default:n(()=>[o(B,{modelValue:u(l).type,"onUpdate:modelValue":e[2]||(e[2]=t=>u(l).type=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u4E0B\u53D1\u516C\u53F8\u7C7B\u578B"},null,8,["modelValue"])]),_:1}),o(d,{label:"\u72B6\u6001",prop:"status"},{default:n(()=>[o(L,{modelValue:u(l).status,"onUpdate:modelValue":e[3]||(e[3]=t=>u(l).status=t)},{default:n(()=>[o(E,{label:1},{default:n(()=>[b("\u662F")]),_:1}),o(E,{label:0},{default:n(()=>[b("\u5426")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1},8,["model","rules"])]),_:1},8,["title"]),o(G,{modelValue:u(s),"onUpdate:modelValue":e[4]||(e[4]=t=>le(s)?s.value=t:null),title:"\u9009\u62E9\u7B7E\u7EA6\u65B9",width:"60%"},{default:n(()=>[o(W,{onCustomEvent:w,type:a.indexType},null,8,["type"])]),_:1},8,["modelValue"])])}}});export{re as _}; diff --git a/public/admin/assets/edit.vue_vue_type_script_setup_true_name_taskSchedulingEdit_lang.98340b3b.js b/public/admin/assets/edit.vue_vue_type_script_setup_true_name_taskSchedulingEdit_lang.98340b3b.js new file mode 100644 index 000000000..e7d64df3b --- /dev/null +++ b/public/admin/assets/edit.vue_vue_type_script_setup_true_name_taskSchedulingEdit_lang.98340b3b.js @@ -0,0 +1 @@ +import{M as I,N as O,C as P,B as $,G as j,H,D as K,L as M}from"./element-plus.4328d892.js";import{P as q}from"./index.b940d6e3.js";import{a as z,b as J,c as Q}from"./task_scheduling.1b21dca9.js";import"./lodash.08438971.js";import{_ as W}from"./dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.bd8cad2b.js";import{d as X}from"./dict.6c560e38.js";import{d as k,s as C,r as c,e as Y,$ as v,o as r,c as V,U as o,L as n,u,T as Z,a7 as ee,K as ae,R as b,k as le}from"./@vue.51d7f2d8.js";const oe={class:"edit-popup"},te=k({name:"taskSchedulingEdit"}),re=k({...te,props:{dictData:{type:Object,default:()=>({})}},emits:["success","close"],setup(ue,{expose:D,emit:_}){const f=C(),m=C(),i=c("add"),s=c(!1),y=c([]),R=Y(()=>i.value=="edit"?"\u7F16\u8F91\u4EFB\u52A1\u516C\u53F8\u6392\u671F":"\u65B0\u589E\u4EFB\u52A1\u516C\u53F8\u6392\u671F");function g(){s.value=!0}function w(a){s.value=!1,l.company_id=a.id,l.company_name=a.company_name}X({type_id:10}).then(a=>{y.value=a.lists});const l=v({id:"",template_id:"",company_id:"",company_name:"",type:"",status:""}),h=v({}),F=async a=>{for(const e in l)a[e]!=null&&a[e]!=null&&(l[e]=a[e])},x=async a=>{const e=await z({id:a.id});F(e)},T=async()=>{var e,p;await((e=f.value)==null?void 0:e.validate());const a={...l};i.value=="edit"?await J(a):await Q(a),(p=m.value)==null||p.close(),_("success")},A=(a="add")=>{var e;i.value=a,(e=m.value)==null||e.open()},S=()=>{_("close")};return D({open:A,setFormData:F,getDetail:x}),(a,e)=>{const p=I,U=O,d=P,B=$,E=j,L=H,N=K,G=M;return r(),V("div",oe,[o(q,{ref_key:"popupRef",ref:m,title:u(R),async:!0,width:"500px",onConfirm:T,onClose:S},{default:n(()=>[o(N,{ref_key:"formRef",ref:f,model:u(l),"label-width":"100px",rules:u(h)},{default:n(()=>[o(d,{label:"\u6A21\u677F",prop:"template_id"},{default:n(()=>[o(U,{modelValue:u(l).template_id,"onUpdate:modelValue":e[0]||(e[0]=t=>u(l).template_id=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u4EFB\u52A1\u7C7B\u578B"},{default:n(()=>[(r(!0),V(Z,null,ee(u(y),t=>(r(),ae(p,{key:t.label,value:t.id,label:t.name},null,8,["value","label"]))),128))]),_:1},8,["modelValue"])]),_:1}),o(d,{label:"\u516C\u53F8",prop:"company_id"},{default:n(()=>[o(B,{onClick:g,modelValue:u(l).company_name,"onUpdate:modelValue":e[1]||(e[1]=t=>u(l).company_name=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u516C\u53F8"},null,8,["modelValue"])]),_:1}),o(d,{label:"\u4E0B\u53D1\u516C\u53F8\u7C7B\u578B",prop:"type"},{default:n(()=>[o(B,{modelValue:u(l).type,"onUpdate:modelValue":e[2]||(e[2]=t=>u(l).type=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u4E0B\u53D1\u516C\u53F8\u7C7B\u578B"},null,8,["modelValue"])]),_:1}),o(d,{label:"\u72B6\u6001",prop:"status"},{default:n(()=>[o(L,{modelValue:u(l).status,"onUpdate:modelValue":e[3]||(e[3]=t=>u(l).status=t)},{default:n(()=>[o(E,{label:1},{default:n(()=>[b("\u662F")]),_:1}),o(E,{label:0},{default:n(()=>[b("\u5426")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1},8,["model","rules"])]),_:1},8,["title"]),o(G,{modelValue:u(s),"onUpdate:modelValue":e[4]||(e[4]=t=>le(s)?s.value=t:null),title:"\u9009\u62E9\u7B7E\u7EA6\u65B9",width:"60%"},{default:n(()=>[o(W,{onCustomEvent:w,type:a.indexType},null,8,["type"])]),_:1},8,["modelValue"])])}}});export{re as _}; diff --git a/public/admin/assets/edit.vue_vue_type_script_setup_true_name_taskSchedulingEdit_lang.a231bd22.js b/public/admin/assets/edit.vue_vue_type_script_setup_true_name_taskSchedulingEdit_lang.a231bd22.js new file mode 100644 index 000000000..b3cbf7b0e --- /dev/null +++ b/public/admin/assets/edit.vue_vue_type_script_setup_true_name_taskSchedulingEdit_lang.a231bd22.js @@ -0,0 +1 @@ +import{M as I,N as O,C as P,B as $,G as j,H,D as K,L as M}from"./element-plus.4328d892.js";import{P as q}from"./index.fa872673.js";import{a as z,b as J,c as Q}from"./task_scheduling.46c64d43.js";import"./lodash.08438971.js";import{_ as W}from"./dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.6b149d5f.js";import{d as X}from"./dict.927f1fc7.js";import{d as k,s as C,r as c,e as Y,$ as v,o as r,c as V,U as o,L as n,u,T as Z,a7 as ee,K as ae,R as b,k as le}from"./@vue.51d7f2d8.js";const oe={class:"edit-popup"},te=k({name:"taskSchedulingEdit"}),re=k({...te,props:{dictData:{type:Object,default:()=>({})}},emits:["success","close"],setup(ue,{expose:D,emit:_}){const f=C(),m=C(),i=c("add"),s=c(!1),y=c([]),R=Y(()=>i.value=="edit"?"\u7F16\u8F91\u4EFB\u52A1\u516C\u53F8\u6392\u671F":"\u65B0\u589E\u4EFB\u52A1\u516C\u53F8\u6392\u671F");function g(){s.value=!0}function w(a){s.value=!1,l.company_id=a.id,l.company_name=a.company_name}X({type_id:10}).then(a=>{y.value=a.lists});const l=v({id:"",template_id:"",company_id:"",company_name:"",type:"",status:""}),h=v({}),F=async a=>{for(const e in l)a[e]!=null&&a[e]!=null&&(l[e]=a[e])},x=async a=>{const e=await z({id:a.id});F(e)},T=async()=>{var e,p;await((e=f.value)==null?void 0:e.validate());const a={...l};i.value=="edit"?await J(a):await Q(a),(p=m.value)==null||p.close(),_("success")},A=(a="add")=>{var e;i.value=a,(e=m.value)==null||e.open()},S=()=>{_("close")};return D({open:A,setFormData:F,getDetail:x}),(a,e)=>{const p=I,U=O,d=P,B=$,E=j,L=H,N=K,G=M;return r(),V("div",oe,[o(q,{ref_key:"popupRef",ref:m,title:u(R),async:!0,width:"500px",onConfirm:T,onClose:S},{default:n(()=>[o(N,{ref_key:"formRef",ref:f,model:u(l),"label-width":"100px",rules:u(h)},{default:n(()=>[o(d,{label:"\u6A21\u677F",prop:"template_id"},{default:n(()=>[o(U,{modelValue:u(l).template_id,"onUpdate:modelValue":e[0]||(e[0]=t=>u(l).template_id=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u4EFB\u52A1\u7C7B\u578B"},{default:n(()=>[(r(!0),V(Z,null,ee(u(y),t=>(r(),ae(p,{key:t.label,value:t.id,label:t.name},null,8,["value","label"]))),128))]),_:1},8,["modelValue"])]),_:1}),o(d,{label:"\u516C\u53F8",prop:"company_id"},{default:n(()=>[o(B,{onClick:g,modelValue:u(l).company_name,"onUpdate:modelValue":e[1]||(e[1]=t=>u(l).company_name=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u516C\u53F8"},null,8,["modelValue"])]),_:1}),o(d,{label:"\u4E0B\u53D1\u516C\u53F8\u7C7B\u578B",prop:"type"},{default:n(()=>[o(B,{modelValue:u(l).type,"onUpdate:modelValue":e[2]||(e[2]=t=>u(l).type=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u4E0B\u53D1\u516C\u53F8\u7C7B\u578B"},null,8,["modelValue"])]),_:1}),o(d,{label:"\u72B6\u6001",prop:"status"},{default:n(()=>[o(L,{modelValue:u(l).status,"onUpdate:modelValue":e[3]||(e[3]=t=>u(l).status=t)},{default:n(()=>[o(E,{label:1},{default:n(()=>[b("\u662F")]),_:1}),o(E,{label:0},{default:n(()=>[b("\u5426")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1},8,["model","rules"])]),_:1},8,["title"]),o(G,{modelValue:u(s),"onUpdate:modelValue":e[4]||(e[4]=t=>le(s)?s.value=t:null),title:"\u9009\u62E9\u7B7E\u7EA6\u65B9",width:"60%"},{default:n(()=>[o(W,{onCustomEvent:w,type:a.indexType},null,8,["type"])]),_:1},8,["modelValue"])])}}});export{re as _}; diff --git a/public/admin/assets/edit.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.43063e2b.js b/public/admin/assets/edit.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.43063e2b.js new file mode 100644 index 000000000..88b1785df --- /dev/null +++ b/public/admin/assets/edit.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.43063e2b.js @@ -0,0 +1 @@ +import{M as Y,N as Z,C as ee,B as ue,G as ae,H as le,D as te,L as oe}from"./element-plus.4328d892.js";import{u as se}from"./vue-router.9f65afb1.js";import{P as ne}from"./index.5759a1a6.js";import{b as re,_ as de,c as pe,d as ie,e as me}from"./map.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.0177b6b6.js";import"./lodash.08438971.js";import"./index.37f7aea6.js";import{_ as Be}from"./dialog_index_personnel.vue_vue_type_script_setup_true_name_companyLists_lang.7fc490f9.js";import{d as S,s as D,r as f,e as _e,$ as U,o as r,c as _,U as t,L as s,u as a,T as q,a7 as N,K as m,Q as i,a as C,R as B,k as Fe,n as ye}from"./@vue.51d7f2d8.js";const ce={class:"edit-popup"},fe={key:0,style:{color:"#e6a23c","font-size":"12px"}},Ee={style:{width:"100%"}},De={key:0,style:{color:"#e6a23c","font-size":"12px"}},be={style:{width:"100%"}},ge={key:0,style:{color:"#e6a23c","font-size":"12px"}},ke=S({name:"taskTemplateEdit"}),Ue=S({...ke,props:{dictData:{type:Object,default:()=>({})}},emits:["success","close"],setup(Ce,{expose:$,emit:v}){const V=D(),b=D(),F=f("add"),g=f([]),A=se(),z=_e(()=>F.value=="edit"?"\u7F16\u8F91\u4EFB\u52A1\u5B89\u6392":"\u65B0\u589E\u4EFB\u52A1\u5B89\u6392"),u=U({id:"",task_scheduling:0,company_id:"",title:"",admin_id:"",type:"",status:"",content:"",stage_day_one:0,money:0,stage_day_two:0,money_two:0,money_three:0,types:"",task_admin:"",task_admin_name:"",recharge:"",extend:{transfer:{address:"",lnglat:[]},terminus:{address:"",lnglat:[]}}});A.query.id&&(u.task_scheduling=A.query.id),re({type_value:"task_type"}).then(o=>{g.value=o.lists});const L=U({title:[{required:!0,message:"\u8BF7\u8F93\u5165\u4EFB\u52A1\u540D\u79F0",trigger:["blur"]}],admin_id:[{required:!0,message:"\u8BF7\u8F93\u5165\u521B\u5EFA\u4EBA",trigger:["blur"]}],type:[{required:!0,message:"\u8BF7\u8F93\u5165\u4EFB\u52A1\u7C7B\u578B",trigger:["blur"]}],status:[{required:!0,message:"\u8BF7\u9009\u62E9\u72B6\u6001",trigger:["blur"]}],types:[{required:!0,message:"\u8BF7\u8F93\u5165\u9636\u6BB5\u7C7B\u578B",trigger:["blur"]}],task_admin:[{required:!0,message:"\u8BF7\u9009\u62E9\u8D1F\u8D23\u4EBA",trigger:["blur"]}],recharge:[{required:!0,validator:(o,e,d)=>{e<=0?d(new Error("\u5145\u503C\u91D1\u989D\u4E0D\u80FD\u5C0F\u4E8E0")):d()},trigger:["blur"]}],"extend.origin.address":[{required:!0,message:"\u8BF7\u9009\u62E9\u4E2D\u8F6C\u70B9",trigger:["blur"]}],"extend.transfer.address":[{required:!0,message:"\u8BF7\u9009\u62E9\u4E2D\u8F6C\u70B9",trigger:["blur"]}],"extend.terminus.address":[{required:!0,message:"\u8BF7\u9009\u62E9\u7EC8\u70B9",trigger:["blur"]}]}),w=async o=>{for(const e in u)o[e]!=null&&o[e]!=null&&(u[e]=o[e]);u.type==32&&(k.value=!0)},M=async o=>{const e=await pe({id:o.id});w(e)},k=f(!1),x=D(),P=async o=>{g.value.forEach(e=>{e.id==o&&(u.title=e.name)}),o==32&&(k.value=!0)},E=f(""),h=async o=>{var d;let e="";switch(o){case 0:E.value="origin",e="\u8D77\u70B9";break;case 1:E.value="transfer",e="\u4E2D\u8F6C\u70B9";break;case 2:E.value="terminus",e="\u7EC8\u70B9";break}await ye(),(d=x.value)==null||d.open(e)},G=o=>{u.extend[E.value]=o[0]},y=f(!1),I=D(),O=o=>{u.task_admin=o.id,u.task_admin_name=o.nickname,y.value=!1},j=async()=>{y.value=!0},H=async()=>{var e,d;await((e=V.value)==null?void 0:e.validate());const o={...u};o.type!=32&&(o.extend={}),F.value=="edit"?await ie(o):await me(o),(d=b.value)==null||d.close(),v("success")},K=(o="add")=>{var e;F.value=o,(e=b.value)==null||e.open()},Q=()=>{v("close")};return $({open:K,setFormData:w,getDetail:M}),(o,e)=>{const d=Y,T=Z,n=ee,p=ue,R=ae,J=le,W=te,X=oe;return r(),_("div",ce,[t(ne,{ref_key:"popupRef",ref:b,title:a(z),async:!0,width:"550px",onConfirm:H,onClose:Q},{default:s(()=>[t(W,{ref_key:"formRef",ref:V,model:a(u),"label-width":"120px",rules:a(L)},{default:s(()=>[t(n,{label:"\u4EFB\u52A1\u7C7B\u578B",prop:"type"},{default:s(()=>[t(T,{modelValue:a(u).type,"onUpdate:modelValue":e[0]||(e[0]=l=>a(u).type=l),clearable:"",disabled:a(F)!="add",placeholder:"\u8BF7\u8F93\u5165\u4EFB\u52A1\u7C7B\u578B",onChange:P},{default:s(()=>[(r(!0),_(q,null,N(a(g),l=>(r(),m(d,{key:l.label,value:l.id,label:l.name},null,8,["value","label"]))),128))]),_:1},8,["modelValue","disabled"])]),_:1}),a(u).type==32?(r(),m(n,{key:0,label:"\u4E2D\u8F6C\u70B9",onClick:e[1]||(e[1]=l=>h(1)),prop:"extend.transfer.address"},{default:s(()=>{var l,c;return[t(p,{placeholder:"\u8BF7\u9009\u62E9\u4E2D\u8F6C\u70B9",readonly:"",value:(c=(l=a(u).extend)==null?void 0:l.transfer)==null?void 0:c.address},null,8,["value"])]}),_:1})):i("",!0),a(u).type==32?(r(),m(n,{key:1,label:"\u7EC8\u70B9",onClick:e[2]||(e[2]=l=>h(2)),prop:"extend.terminus.address"},{default:s(()=>{var l,c;return[t(p,{placeholder:"\u8BF7\u9009\u62E9\u7EC8\u70B9",readonly:"",value:(c=(l=a(u).extend)==null?void 0:l.terminus)==null?void 0:c.address},null,8,["value"])]}),_:1})):i("",!0),a(u).type==35?(r(),m(n,{key:2,label:"\u8D1F\u8D23\u4EBA",prop:"task_admin",onClick:j},{default:s(()=>[t(p,{placeholder:"\u8BF7\u9009\u62E9\u8D1F\u8D23\u4EBA",readonly:"",modelValue:a(u).task_admin_name,"onUpdate:modelValue":e[3]||(e[3]=l=>a(u).task_admin_name=l)},null,8,["modelValue"])]),_:1})):i("",!0),t(n,{label:"\u9636\u6BB5\u7C7B\u578B",prop:"types"},{default:s(()=>[C("div",null,[t(T,{modelValue:a(u).types,"onUpdate:modelValue":e[4]||(e[4]=l=>a(u).types=l),clearable:"",disabled:a(F)!="add",placeholder:"\u8BF7\u8F93\u5165\u9636\u6BB5\u7C7B\u578B"},{default:s(()=>[(r(),_(q,null,N([{label:1,name:"\u5FAA\u73AF"},{label:2,name:"\u957F\u671F"},{label:3,name:"\u5355\u6B21"}],l=>t(d,{key:l.label,value:l.label,label:l.name},null,8,["value","label"])),64))]),_:1},8,["modelValue","disabled"]),a(u).types==3?(r(),_("div",fe," \u63D0\u793A : \u5355\u6B21\u4EFB\u52A1\u4E0D\u4F1A\u6BCF\u65E5\u7ED3\u7B97,\u800C\u662F\u6309\u9636\u6BB5\u5408\u8BA1\u5929\u6570\u7ED3\u7B97 ")):i("",!0)])]),_:1}),t(n,{label:"\u4E00\u9636\u6BB5\u5929\u6570"},{default:s(()=>[t(p,{modelValue:a(u).stage_day_one,"onUpdate:modelValue":e[5]||(e[5]=l=>a(u).stage_day_one=l),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u5929\u6570",type:"number"},{append:s(()=>[B("\u5929")]),_:1},8,["modelValue"])]),_:1}),t(n,{label:"\u4E00\u9636\u6BB5\u91D1\u989D"},{default:s(()=>[C("div",Ee,[t(p,{modelValue:a(u).money,"onUpdate:modelValue":e[6]||(e[6]=l=>a(u).money=l),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u91D1\u989D",type:"number"},{append:s(()=>[B("\u5143")]),_:1},8,["modelValue"]),a(u).type==35?(r(),_("div",De," \u63D0\u793A : \u672C\u4EFB\u52A1\u7684\u91D1\u989D\u5C06\u4F1A\u5728\u4EFB\u52A1\u5B8C\u6210\u540E\u6309\u9636\u6BB5\u5929\u6570*\u9636\u6BB5\u91D1\u989D\u7EDF\u4E00\u7ED3\u7B97 ")):i("",!0)])]),_:1}),t(n,{label:"\u4E8C\u9636\u6BB5\u5929\u6570"},{default:s(()=>[t(p,{modelValue:a(u).stage_day_two,"onUpdate:modelValue":e[7]||(e[7]=l=>a(u).stage_day_two=l),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u5929\u6570",type:"number"},{append:s(()=>[B("\u5929")]),_:1},8,["modelValue"])]),_:1}),t(n,{label:"\u4E8C\u9636\u6BB5\u91D1\u989D"},{default:s(()=>[C("div",be,[t(p,{modelValue:a(u).money_two,"onUpdate:modelValue":e[8]||(e[8]=l=>a(u).money_two=l),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u91D1\u989D",type:"number"},{append:s(()=>[B("\u5143")]),_:1},8,["modelValue"]),a(u).type==35?(r(),_("div",ge," \u63D0\u793A : \u672C\u4EFB\u52A1\u7684\u91D1\u989D\u5C06\u4F1A\u5728\u4EFB\u52A1\u5B8C\u6210\u540E\u6309\u9636\u6BB5\u5929\u6570*\u9636\u6BB5\u91D1\u989D\u7EDF\u4E00\u7ED3\u7B97 ")):i("",!0)])]),_:1}),+a(u).types==2?(r(),m(n,{key:3,label:"\u957F\u671F\u91D1\u989D"},{default:s(()=>[t(p,{modelValue:a(u).money_three,"onUpdate:modelValue":e[9]||(e[9]=l=>a(u).money_three=l),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u91D1\u989D",type:"number"},{append:s(()=>[B("\u5143")]),_:1},8,["modelValue"])]),_:1})):i("",!0),a(u).type==35?(r(),m(n,{key:4,label:"\u5145\u503C\u91D1\u989D(\u5143)",prop:"recharge"},{default:s(()=>[t(p,{placeholder:"\u8BF7\u8F93\u5165\u5145\u503C\u91D1\u989D(\u5143)",modelValue:a(u).recharge,"onUpdate:modelValue":e[10]||(e[10]=l=>a(u).recharge=l),type:"number"},null,8,["modelValue"])]),_:1})):i("",!0),t(n,{label:"\u72B6\u6001",prop:"status"},{default:s(()=>[t(J,{modelValue:a(u).status,"onUpdate:modelValue":e[11]||(e[11]=l=>a(u).status=l)},{default:s(()=>[t(R,{label:1},{default:s(()=>[B("\u663E\u793A")]),_:1}),t(R,{label:0},{default:s(()=>[B("\u9690\u85CF")]),_:1})]),_:1},8,["modelValue"])]),_:1}),t(n,{label:"\u4EFB\u52A1\u63CF\u8FF0",prop:"content"},{default:s(()=>[t(p,{modelValue:a(u).content,"onUpdate:modelValue":e[12]||(e[12]=l=>a(u).content=l),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u4EFB\u52A1\u63CF\u8FF0",type:"textarea",autosize:""},null,8,["modelValue"])]),_:1})]),_:1},8,["model","rules"]),a(k)?(r(),m(de,{key:0,ref_key:"mapRef",ref:x,onSuccess:G,onClose:e[13]||(e[13]=()=>{})},null,512)):i("",!0),t(X,{modelValue:a(y),"onUpdate:modelValue":e[14]||(e[14]=l=>Fe(y)?y.value=l:null),ref_key:"personnelRef",ref:I,title:"\u9009\u62E9\u8D1F\u8D23\u4EBA",width:"60%"},{default:s(()=>[t(Be,{onCustomEvent:O,company_id:a(u).company_id},null,8,["company_id"])]),_:1},8,["modelValue"])]),_:1},8,["title"])])}}});export{Ue as _}; diff --git a/public/admin/assets/edit.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.656c3f7f.js b/public/admin/assets/edit.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.656c3f7f.js new file mode 100644 index 000000000..b5d9a4493 --- /dev/null +++ b/public/admin/assets/edit.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.656c3f7f.js @@ -0,0 +1 @@ +import{M as Y,N as Z,C as ee,B as ue,G as ae,H as le,D as te,L as oe}from"./element-plus.4328d892.js";import{u as se}from"./vue-router.9f65afb1.js";import{P as ne}from"./index.fa872673.js";import{b as re,_ as de,c as pe,d as ie,e as me}from"./map.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.9d7f531d.js";import"./lodash.08438971.js";import"./index.aa9bb752.js";import{_ as Be}from"./dialog_index_personnel.vue_vue_type_script_setup_true_name_companyLists_lang.ddb96626.js";import{d as S,s as D,r as f,e as _e,$ as U,o as r,c as _,U as t,L as s,u as a,T as q,a7 as N,K as m,Q as i,a as C,R as B,k as Fe,n as ye}from"./@vue.51d7f2d8.js";const ce={class:"edit-popup"},fe={key:0,style:{color:"#e6a23c","font-size":"12px"}},Ee={style:{width:"100%"}},De={key:0,style:{color:"#e6a23c","font-size":"12px"}},be={style:{width:"100%"}},ge={key:0,style:{color:"#e6a23c","font-size":"12px"}},ke=S({name:"taskTemplateEdit"}),Ue=S({...ke,props:{dictData:{type:Object,default:()=>({})}},emits:["success","close"],setup(Ce,{expose:$,emit:v}){const V=D(),b=D(),F=f("add"),g=f([]),A=se(),z=_e(()=>F.value=="edit"?"\u7F16\u8F91\u4EFB\u52A1\u5B89\u6392":"\u65B0\u589E\u4EFB\u52A1\u5B89\u6392"),u=U({id:"",task_scheduling:0,company_id:"",title:"",admin_id:"",type:"",status:"",content:"",stage_day_one:0,money:0,stage_day_two:0,money_two:0,money_three:0,types:"",task_admin:"",task_admin_name:"",recharge:"",extend:{transfer:{address:"",lnglat:[]},terminus:{address:"",lnglat:[]}}});A.query.id&&(u.task_scheduling=A.query.id),re({type_value:"task_type"}).then(o=>{g.value=o.lists});const L=U({title:[{required:!0,message:"\u8BF7\u8F93\u5165\u4EFB\u52A1\u540D\u79F0",trigger:["blur"]}],admin_id:[{required:!0,message:"\u8BF7\u8F93\u5165\u521B\u5EFA\u4EBA",trigger:["blur"]}],type:[{required:!0,message:"\u8BF7\u8F93\u5165\u4EFB\u52A1\u7C7B\u578B",trigger:["blur"]}],status:[{required:!0,message:"\u8BF7\u9009\u62E9\u72B6\u6001",trigger:["blur"]}],types:[{required:!0,message:"\u8BF7\u8F93\u5165\u9636\u6BB5\u7C7B\u578B",trigger:["blur"]}],task_admin:[{required:!0,message:"\u8BF7\u9009\u62E9\u8D1F\u8D23\u4EBA",trigger:["blur"]}],recharge:[{required:!0,validator:(o,e,d)=>{e<=0?d(new Error("\u5145\u503C\u91D1\u989D\u4E0D\u80FD\u5C0F\u4E8E0")):d()},trigger:["blur"]}],"extend.origin.address":[{required:!0,message:"\u8BF7\u9009\u62E9\u4E2D\u8F6C\u70B9",trigger:["blur"]}],"extend.transfer.address":[{required:!0,message:"\u8BF7\u9009\u62E9\u4E2D\u8F6C\u70B9",trigger:["blur"]}],"extend.terminus.address":[{required:!0,message:"\u8BF7\u9009\u62E9\u7EC8\u70B9",trigger:["blur"]}]}),w=async o=>{for(const e in u)o[e]!=null&&o[e]!=null&&(u[e]=o[e]);u.type==32&&(k.value=!0)},M=async o=>{const e=await pe({id:o.id});w(e)},k=f(!1),x=D(),P=async o=>{g.value.forEach(e=>{e.id==o&&(u.title=e.name)}),o==32&&(k.value=!0)},E=f(""),h=async o=>{var d;let e="";switch(o){case 0:E.value="origin",e="\u8D77\u70B9";break;case 1:E.value="transfer",e="\u4E2D\u8F6C\u70B9";break;case 2:E.value="terminus",e="\u7EC8\u70B9";break}await ye(),(d=x.value)==null||d.open(e)},G=o=>{u.extend[E.value]=o[0]},y=f(!1),I=D(),O=o=>{u.task_admin=o.id,u.task_admin_name=o.nickname,y.value=!1},j=async()=>{y.value=!0},H=async()=>{var e,d;await((e=V.value)==null?void 0:e.validate());const o={...u};o.type!=32&&(o.extend={}),F.value=="edit"?await ie(o):await me(o),(d=b.value)==null||d.close(),v("success")},K=(o="add")=>{var e;F.value=o,(e=b.value)==null||e.open()},Q=()=>{v("close")};return $({open:K,setFormData:w,getDetail:M}),(o,e)=>{const d=Y,T=Z,n=ee,p=ue,R=ae,J=le,W=te,X=oe;return r(),_("div",ce,[t(ne,{ref_key:"popupRef",ref:b,title:a(z),async:!0,width:"550px",onConfirm:H,onClose:Q},{default:s(()=>[t(W,{ref_key:"formRef",ref:V,model:a(u),"label-width":"120px",rules:a(L)},{default:s(()=>[t(n,{label:"\u4EFB\u52A1\u7C7B\u578B",prop:"type"},{default:s(()=>[t(T,{modelValue:a(u).type,"onUpdate:modelValue":e[0]||(e[0]=l=>a(u).type=l),clearable:"",disabled:a(F)!="add",placeholder:"\u8BF7\u8F93\u5165\u4EFB\u52A1\u7C7B\u578B",onChange:P},{default:s(()=>[(r(!0),_(q,null,N(a(g),l=>(r(),m(d,{key:l.label,value:l.id,label:l.name},null,8,["value","label"]))),128))]),_:1},8,["modelValue","disabled"])]),_:1}),a(u).type==32?(r(),m(n,{key:0,label:"\u4E2D\u8F6C\u70B9",onClick:e[1]||(e[1]=l=>h(1)),prop:"extend.transfer.address"},{default:s(()=>{var l,c;return[t(p,{placeholder:"\u8BF7\u9009\u62E9\u4E2D\u8F6C\u70B9",readonly:"",value:(c=(l=a(u).extend)==null?void 0:l.transfer)==null?void 0:c.address},null,8,["value"])]}),_:1})):i("",!0),a(u).type==32?(r(),m(n,{key:1,label:"\u7EC8\u70B9",onClick:e[2]||(e[2]=l=>h(2)),prop:"extend.terminus.address"},{default:s(()=>{var l,c;return[t(p,{placeholder:"\u8BF7\u9009\u62E9\u7EC8\u70B9",readonly:"",value:(c=(l=a(u).extend)==null?void 0:l.terminus)==null?void 0:c.address},null,8,["value"])]}),_:1})):i("",!0),a(u).type==35?(r(),m(n,{key:2,label:"\u8D1F\u8D23\u4EBA",prop:"task_admin",onClick:j},{default:s(()=>[t(p,{placeholder:"\u8BF7\u9009\u62E9\u8D1F\u8D23\u4EBA",readonly:"",modelValue:a(u).task_admin_name,"onUpdate:modelValue":e[3]||(e[3]=l=>a(u).task_admin_name=l)},null,8,["modelValue"])]),_:1})):i("",!0),t(n,{label:"\u9636\u6BB5\u7C7B\u578B",prop:"types"},{default:s(()=>[C("div",null,[t(T,{modelValue:a(u).types,"onUpdate:modelValue":e[4]||(e[4]=l=>a(u).types=l),clearable:"",disabled:a(F)!="add",placeholder:"\u8BF7\u8F93\u5165\u9636\u6BB5\u7C7B\u578B"},{default:s(()=>[(r(),_(q,null,N([{label:1,name:"\u5FAA\u73AF"},{label:2,name:"\u957F\u671F"},{label:3,name:"\u5355\u6B21"}],l=>t(d,{key:l.label,value:l.label,label:l.name},null,8,["value","label"])),64))]),_:1},8,["modelValue","disabled"]),a(u).types==3?(r(),_("div",fe," \u63D0\u793A : \u5355\u6B21\u4EFB\u52A1\u4E0D\u4F1A\u6BCF\u65E5\u7ED3\u7B97,\u800C\u662F\u6309\u9636\u6BB5\u5408\u8BA1\u5929\u6570\u7ED3\u7B97 ")):i("",!0)])]),_:1}),t(n,{label:"\u4E00\u9636\u6BB5\u5929\u6570"},{default:s(()=>[t(p,{modelValue:a(u).stage_day_one,"onUpdate:modelValue":e[5]||(e[5]=l=>a(u).stage_day_one=l),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u5929\u6570",type:"number"},{append:s(()=>[B("\u5929")]),_:1},8,["modelValue"])]),_:1}),t(n,{label:"\u4E00\u9636\u6BB5\u91D1\u989D"},{default:s(()=>[C("div",Ee,[t(p,{modelValue:a(u).money,"onUpdate:modelValue":e[6]||(e[6]=l=>a(u).money=l),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u91D1\u989D",type:"number"},{append:s(()=>[B("\u5143")]),_:1},8,["modelValue"]),a(u).type==35?(r(),_("div",De," \u63D0\u793A : \u672C\u4EFB\u52A1\u7684\u91D1\u989D\u5C06\u4F1A\u5728\u4EFB\u52A1\u5B8C\u6210\u540E\u6309\u9636\u6BB5\u5929\u6570*\u9636\u6BB5\u91D1\u989D\u7EDF\u4E00\u7ED3\u7B97 ")):i("",!0)])]),_:1}),t(n,{label:"\u4E8C\u9636\u6BB5\u5929\u6570"},{default:s(()=>[t(p,{modelValue:a(u).stage_day_two,"onUpdate:modelValue":e[7]||(e[7]=l=>a(u).stage_day_two=l),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u5929\u6570",type:"number"},{append:s(()=>[B("\u5929")]),_:1},8,["modelValue"])]),_:1}),t(n,{label:"\u4E8C\u9636\u6BB5\u91D1\u989D"},{default:s(()=>[C("div",be,[t(p,{modelValue:a(u).money_two,"onUpdate:modelValue":e[8]||(e[8]=l=>a(u).money_two=l),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u91D1\u989D",type:"number"},{append:s(()=>[B("\u5143")]),_:1},8,["modelValue"]),a(u).type==35?(r(),_("div",ge," \u63D0\u793A : \u672C\u4EFB\u52A1\u7684\u91D1\u989D\u5C06\u4F1A\u5728\u4EFB\u52A1\u5B8C\u6210\u540E\u6309\u9636\u6BB5\u5929\u6570*\u9636\u6BB5\u91D1\u989D\u7EDF\u4E00\u7ED3\u7B97 ")):i("",!0)])]),_:1}),+a(u).types==2?(r(),m(n,{key:3,label:"\u957F\u671F\u91D1\u989D"},{default:s(()=>[t(p,{modelValue:a(u).money_three,"onUpdate:modelValue":e[9]||(e[9]=l=>a(u).money_three=l),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u91D1\u989D",type:"number"},{append:s(()=>[B("\u5143")]),_:1},8,["modelValue"])]),_:1})):i("",!0),a(u).type==35?(r(),m(n,{key:4,label:"\u5145\u503C\u91D1\u989D(\u5143)",prop:"recharge"},{default:s(()=>[t(p,{placeholder:"\u8BF7\u8F93\u5165\u5145\u503C\u91D1\u989D(\u5143)",modelValue:a(u).recharge,"onUpdate:modelValue":e[10]||(e[10]=l=>a(u).recharge=l),type:"number"},null,8,["modelValue"])]),_:1})):i("",!0),t(n,{label:"\u72B6\u6001",prop:"status"},{default:s(()=>[t(J,{modelValue:a(u).status,"onUpdate:modelValue":e[11]||(e[11]=l=>a(u).status=l)},{default:s(()=>[t(R,{label:1},{default:s(()=>[B("\u663E\u793A")]),_:1}),t(R,{label:0},{default:s(()=>[B("\u9690\u85CF")]),_:1})]),_:1},8,["modelValue"])]),_:1}),t(n,{label:"\u4EFB\u52A1\u63CF\u8FF0",prop:"content"},{default:s(()=>[t(p,{modelValue:a(u).content,"onUpdate:modelValue":e[12]||(e[12]=l=>a(u).content=l),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u4EFB\u52A1\u63CF\u8FF0",type:"textarea",autosize:""},null,8,["modelValue"])]),_:1})]),_:1},8,["model","rules"]),a(k)?(r(),m(de,{key:0,ref_key:"mapRef",ref:x,onSuccess:G,onClose:e[13]||(e[13]=()=>{})},null,512)):i("",!0),t(X,{modelValue:a(y),"onUpdate:modelValue":e[14]||(e[14]=l=>Fe(y)?y.value=l:null),ref_key:"personnelRef",ref:I,title:"\u9009\u62E9\u8D1F\u8D23\u4EBA",width:"60%"},{default:s(()=>[t(Be,{onCustomEvent:O,company_id:a(u).company_id},null,8,["company_id"])]),_:1},8,["modelValue"])]),_:1},8,["title"])])}}});export{Ue as _}; diff --git a/public/admin/assets/edit.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.c27438b7.js b/public/admin/assets/edit.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.c27438b7.js new file mode 100644 index 000000000..8a5c9a751 --- /dev/null +++ b/public/admin/assets/edit.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.c27438b7.js @@ -0,0 +1 @@ +import{M as Y,N as Z,C as ee,B as ue,G as ae,H as le,D as te,L as oe}from"./element-plus.4328d892.js";import{u as se}from"./vue-router.9f65afb1.js";import{P as ne}from"./index.b940d6e3.js";import{b as re,_ as de,c as pe,d as ie,e as me}from"./map.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.c34becfa.js";import"./lodash.08438971.js";import"./index.ed71ac09.js";import{_ as Be}from"./dialog_index_personnel.vue_vue_type_script_setup_true_name_companyLists_lang.e9155591.js";import{d as S,s as D,r as f,e as _e,$ as U,o as r,c as _,U as t,L as s,u as a,T as q,a7 as N,K as m,Q as i,a as C,R as B,k as Fe,n as ye}from"./@vue.51d7f2d8.js";const ce={class:"edit-popup"},fe={key:0,style:{color:"#e6a23c","font-size":"12px"}},Ee={style:{width:"100%"}},De={key:0,style:{color:"#e6a23c","font-size":"12px"}},be={style:{width:"100%"}},ge={key:0,style:{color:"#e6a23c","font-size":"12px"}},ke=S({name:"taskTemplateEdit"}),Ue=S({...ke,props:{dictData:{type:Object,default:()=>({})}},emits:["success","close"],setup(Ce,{expose:$,emit:v}){const V=D(),b=D(),F=f("add"),g=f([]),A=se(),z=_e(()=>F.value=="edit"?"\u7F16\u8F91\u4EFB\u52A1\u5B89\u6392":"\u65B0\u589E\u4EFB\u52A1\u5B89\u6392"),u=U({id:"",task_scheduling:0,company_id:"",title:"",admin_id:"",type:"",status:"",content:"",stage_day_one:0,money:0,stage_day_two:0,money_two:0,money_three:0,types:"",task_admin:"",task_admin_name:"",recharge:"",extend:{transfer:{address:"",lnglat:[]},terminus:{address:"",lnglat:[]}}});A.query.id&&(u.task_scheduling=A.query.id),re({type_value:"task_type"}).then(o=>{g.value=o.lists});const L=U({title:[{required:!0,message:"\u8BF7\u8F93\u5165\u4EFB\u52A1\u540D\u79F0",trigger:["blur"]}],admin_id:[{required:!0,message:"\u8BF7\u8F93\u5165\u521B\u5EFA\u4EBA",trigger:["blur"]}],type:[{required:!0,message:"\u8BF7\u8F93\u5165\u4EFB\u52A1\u7C7B\u578B",trigger:["blur"]}],status:[{required:!0,message:"\u8BF7\u9009\u62E9\u72B6\u6001",trigger:["blur"]}],types:[{required:!0,message:"\u8BF7\u8F93\u5165\u9636\u6BB5\u7C7B\u578B",trigger:["blur"]}],task_admin:[{required:!0,message:"\u8BF7\u9009\u62E9\u8D1F\u8D23\u4EBA",trigger:["blur"]}],recharge:[{required:!0,validator:(o,e,d)=>{e<=0?d(new Error("\u5145\u503C\u91D1\u989D\u4E0D\u80FD\u5C0F\u4E8E0")):d()},trigger:["blur"]}],"extend.origin.address":[{required:!0,message:"\u8BF7\u9009\u62E9\u4E2D\u8F6C\u70B9",trigger:["blur"]}],"extend.transfer.address":[{required:!0,message:"\u8BF7\u9009\u62E9\u4E2D\u8F6C\u70B9",trigger:["blur"]}],"extend.terminus.address":[{required:!0,message:"\u8BF7\u9009\u62E9\u7EC8\u70B9",trigger:["blur"]}]}),w=async o=>{for(const e in u)o[e]!=null&&o[e]!=null&&(u[e]=o[e]);u.type==32&&(k.value=!0)},M=async o=>{const e=await pe({id:o.id});w(e)},k=f(!1),x=D(),P=async o=>{g.value.forEach(e=>{e.id==o&&(u.title=e.name)}),o==32&&(k.value=!0)},E=f(""),h=async o=>{var d;let e="";switch(o){case 0:E.value="origin",e="\u8D77\u70B9";break;case 1:E.value="transfer",e="\u4E2D\u8F6C\u70B9";break;case 2:E.value="terminus",e="\u7EC8\u70B9";break}await ye(),(d=x.value)==null||d.open(e)},G=o=>{u.extend[E.value]=o[0]},y=f(!1),I=D(),O=o=>{u.task_admin=o.id,u.task_admin_name=o.nickname,y.value=!1},j=async()=>{y.value=!0},H=async()=>{var e,d;await((e=V.value)==null?void 0:e.validate());const o={...u};o.type!=32&&(o.extend={}),F.value=="edit"?await ie(o):await me(o),(d=b.value)==null||d.close(),v("success")},K=(o="add")=>{var e;F.value=o,(e=b.value)==null||e.open()},Q=()=>{v("close")};return $({open:K,setFormData:w,getDetail:M}),(o,e)=>{const d=Y,T=Z,n=ee,p=ue,R=ae,J=le,W=te,X=oe;return r(),_("div",ce,[t(ne,{ref_key:"popupRef",ref:b,title:a(z),async:!0,width:"550px",onConfirm:H,onClose:Q},{default:s(()=>[t(W,{ref_key:"formRef",ref:V,model:a(u),"label-width":"120px",rules:a(L)},{default:s(()=>[t(n,{label:"\u4EFB\u52A1\u7C7B\u578B",prop:"type"},{default:s(()=>[t(T,{modelValue:a(u).type,"onUpdate:modelValue":e[0]||(e[0]=l=>a(u).type=l),clearable:"",disabled:a(F)!="add",placeholder:"\u8BF7\u8F93\u5165\u4EFB\u52A1\u7C7B\u578B",onChange:P},{default:s(()=>[(r(!0),_(q,null,N(a(g),l=>(r(),m(d,{key:l.label,value:l.id,label:l.name},null,8,["value","label"]))),128))]),_:1},8,["modelValue","disabled"])]),_:1}),a(u).type==32?(r(),m(n,{key:0,label:"\u4E2D\u8F6C\u70B9",onClick:e[1]||(e[1]=l=>h(1)),prop:"extend.transfer.address"},{default:s(()=>{var l,c;return[t(p,{placeholder:"\u8BF7\u9009\u62E9\u4E2D\u8F6C\u70B9",readonly:"",value:(c=(l=a(u).extend)==null?void 0:l.transfer)==null?void 0:c.address},null,8,["value"])]}),_:1})):i("",!0),a(u).type==32?(r(),m(n,{key:1,label:"\u7EC8\u70B9",onClick:e[2]||(e[2]=l=>h(2)),prop:"extend.terminus.address"},{default:s(()=>{var l,c;return[t(p,{placeholder:"\u8BF7\u9009\u62E9\u7EC8\u70B9",readonly:"",value:(c=(l=a(u).extend)==null?void 0:l.terminus)==null?void 0:c.address},null,8,["value"])]}),_:1})):i("",!0),a(u).type==35?(r(),m(n,{key:2,label:"\u8D1F\u8D23\u4EBA",prop:"task_admin",onClick:j},{default:s(()=>[t(p,{placeholder:"\u8BF7\u9009\u62E9\u8D1F\u8D23\u4EBA",readonly:"",modelValue:a(u).task_admin_name,"onUpdate:modelValue":e[3]||(e[3]=l=>a(u).task_admin_name=l)},null,8,["modelValue"])]),_:1})):i("",!0),t(n,{label:"\u9636\u6BB5\u7C7B\u578B",prop:"types"},{default:s(()=>[C("div",null,[t(T,{modelValue:a(u).types,"onUpdate:modelValue":e[4]||(e[4]=l=>a(u).types=l),clearable:"",disabled:a(F)!="add",placeholder:"\u8BF7\u8F93\u5165\u9636\u6BB5\u7C7B\u578B"},{default:s(()=>[(r(),_(q,null,N([{label:1,name:"\u5FAA\u73AF"},{label:2,name:"\u957F\u671F"},{label:3,name:"\u5355\u6B21"}],l=>t(d,{key:l.label,value:l.label,label:l.name},null,8,["value","label"])),64))]),_:1},8,["modelValue","disabled"]),a(u).types==3?(r(),_("div",fe," \u63D0\u793A : \u5355\u6B21\u4EFB\u52A1\u4E0D\u4F1A\u6BCF\u65E5\u7ED3\u7B97,\u800C\u662F\u6309\u9636\u6BB5\u5408\u8BA1\u5929\u6570\u7ED3\u7B97 ")):i("",!0)])]),_:1}),t(n,{label:"\u4E00\u9636\u6BB5\u5929\u6570"},{default:s(()=>[t(p,{modelValue:a(u).stage_day_one,"onUpdate:modelValue":e[5]||(e[5]=l=>a(u).stage_day_one=l),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u5929\u6570",type:"number"},{append:s(()=>[B("\u5929")]),_:1},8,["modelValue"])]),_:1}),t(n,{label:"\u4E00\u9636\u6BB5\u91D1\u989D"},{default:s(()=>[C("div",Ee,[t(p,{modelValue:a(u).money,"onUpdate:modelValue":e[6]||(e[6]=l=>a(u).money=l),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u91D1\u989D",type:"number"},{append:s(()=>[B("\u5143")]),_:1},8,["modelValue"]),a(u).type==35?(r(),_("div",De," \u63D0\u793A : \u672C\u4EFB\u52A1\u7684\u91D1\u989D\u5C06\u4F1A\u5728\u4EFB\u52A1\u5B8C\u6210\u540E\u6309\u9636\u6BB5\u5929\u6570*\u9636\u6BB5\u91D1\u989D\u7EDF\u4E00\u7ED3\u7B97 ")):i("",!0)])]),_:1}),t(n,{label:"\u4E8C\u9636\u6BB5\u5929\u6570"},{default:s(()=>[t(p,{modelValue:a(u).stage_day_two,"onUpdate:modelValue":e[7]||(e[7]=l=>a(u).stage_day_two=l),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u5929\u6570",type:"number"},{append:s(()=>[B("\u5929")]),_:1},8,["modelValue"])]),_:1}),t(n,{label:"\u4E8C\u9636\u6BB5\u91D1\u989D"},{default:s(()=>[C("div",be,[t(p,{modelValue:a(u).money_two,"onUpdate:modelValue":e[8]||(e[8]=l=>a(u).money_two=l),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u91D1\u989D",type:"number"},{append:s(()=>[B("\u5143")]),_:1},8,["modelValue"]),a(u).type==35?(r(),_("div",ge," \u63D0\u793A : \u672C\u4EFB\u52A1\u7684\u91D1\u989D\u5C06\u4F1A\u5728\u4EFB\u52A1\u5B8C\u6210\u540E\u6309\u9636\u6BB5\u5929\u6570*\u9636\u6BB5\u91D1\u989D\u7EDF\u4E00\u7ED3\u7B97 ")):i("",!0)])]),_:1}),+a(u).types==2?(r(),m(n,{key:3,label:"\u957F\u671F\u91D1\u989D"},{default:s(()=>[t(p,{modelValue:a(u).money_three,"onUpdate:modelValue":e[9]||(e[9]=l=>a(u).money_three=l),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u91D1\u989D",type:"number"},{append:s(()=>[B("\u5143")]),_:1},8,["modelValue"])]),_:1})):i("",!0),a(u).type==35?(r(),m(n,{key:4,label:"\u5145\u503C\u91D1\u989D(\u5143)",prop:"recharge"},{default:s(()=>[t(p,{placeholder:"\u8BF7\u8F93\u5165\u5145\u503C\u91D1\u989D(\u5143)",modelValue:a(u).recharge,"onUpdate:modelValue":e[10]||(e[10]=l=>a(u).recharge=l),type:"number"},null,8,["modelValue"])]),_:1})):i("",!0),t(n,{label:"\u72B6\u6001",prop:"status"},{default:s(()=>[t(J,{modelValue:a(u).status,"onUpdate:modelValue":e[11]||(e[11]=l=>a(u).status=l)},{default:s(()=>[t(R,{label:1},{default:s(()=>[B("\u663E\u793A")]),_:1}),t(R,{label:0},{default:s(()=>[B("\u9690\u85CF")]),_:1})]),_:1},8,["modelValue"])]),_:1}),t(n,{label:"\u4EFB\u52A1\u63CF\u8FF0",prop:"content"},{default:s(()=>[t(p,{modelValue:a(u).content,"onUpdate:modelValue":e[12]||(e[12]=l=>a(u).content=l),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u4EFB\u52A1\u63CF\u8FF0",type:"textarea",autosize:""},null,8,["modelValue"])]),_:1})]),_:1},8,["model","rules"]),a(k)?(r(),m(de,{key:0,ref_key:"mapRef",ref:x,onSuccess:G,onClose:e[13]||(e[13]=()=>{})},null,512)):i("",!0),t(X,{modelValue:a(y),"onUpdate:modelValue":e[14]||(e[14]=l=>Fe(y)?y.value=l:null),ref_key:"personnelRef",ref:I,title:"\u9009\u62E9\u8D1F\u8D23\u4EBA",width:"60%"},{default:s(()=>[t(Be,{onCustomEvent:O,company_id:a(u).company_id},null,8,["company_id"])]),_:1},8,["modelValue"])]),_:1},8,["title"])])}}});export{Ue as _}; diff --git a/public/admin/assets/edit.vue_vue_type_script_setup_true_name_userRoleEdit_lang.4568c7f1.js b/public/admin/assets/edit.vue_vue_type_script_setup_true_name_userRoleEdit_lang.4568c7f1.js new file mode 100644 index 000000000..94498d86d --- /dev/null +++ b/public/admin/assets/edit.vue_vue_type_script_setup_true_name_userRoleEdit_lang.4568c7f1.js @@ -0,0 +1 @@ +import{B as w,C as y,D as U}from"./element-plus.4328d892.js";import{P as g}from"./index.fa872673.js";import{c as x,b as k,d as h}from"./user_role.cb302517.js";import"./lodash.08438971.js";import{d as _,s as f,r as q,e as I,$ as F,o as P,c as j,U as a,L as r,u as o}from"./@vue.51d7f2d8.js";const A={class:"edit-popup"},L=_({name:"userRoleEdit"}),G=_({...L,props:{dictData:{type:Object,default:()=>({})}},emits:["success","close"],setup(N,{expose:b,emit:m}){const i=f(),d=f(),p=q("add"),V=I(()=>p.value=="edit"?"\u7F16\u8F91\u89D2\u8272\u8868":"\u65B0\u589E\u89D2\u8272\u8868"),u=F({id:"",name:"",desc:"",menu_arr:"",sort:""}),D=F({name:[{required:!0,message:"\u8BF7\u8F93\u5165\u540D\u79F0",trigger:["blur"]}],desc:[{required:!0,message:"\u8BF7\u8F93\u5165\u63CF\u8FF0",trigger:["blur"]}]}),c=async l=>{for(const e in u)l[e]!=null&&l[e]!=null&&(u[e]=l[e])},v=async l=>{const e=await x({id:l.id});c(e)},B=async()=>{var e,t;await((e=i.value)==null?void 0:e.validate());const l={...u};p.value=="edit"?await k(l):await h(l),(t=d.value)==null||t.close(),m("success")},R=(l="add")=>{var e;p.value=l,(e=d.value)==null||e.open()},C=()=>{m("close")};return b({open:R,setFormData:c,getDetail:v}),(l,e)=>{const t=w,n=y,E=U;return P(),j("div",A,[a(g,{ref_key:"popupRef",ref:d,title:o(V),async:!0,width:"550px",onConfirm:B,onClose:C},{default:r(()=>[a(E,{ref_key:"formRef",ref:i,model:o(u),"label-width":"90px",rules:o(D)},{default:r(()=>[a(n,{label:"\u540D\u79F0",prop:"name"},{default:r(()=>[a(t,{modelValue:o(u).name,"onUpdate:modelValue":e[0]||(e[0]=s=>o(u).name=s),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u540D\u79F0"},null,8,["modelValue"])]),_:1}),a(n,{label:"\u63CF\u8FF0",prop:"desc"},{default:r(()=>[a(t,{modelValue:o(u).desc,"onUpdate:modelValue":e[1]||(e[1]=s=>o(u).desc=s),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u63CF\u8FF0"},null,8,["modelValue"])]),_:1}),a(n,{label:"\u6743\u9650id",prop:"menu_arr"},{default:r(()=>[a(t,{modelValue:o(u).menu_arr,"onUpdate:modelValue":e[2]||(e[2]=s=>o(u).menu_arr=s),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u6743\u9650id"},null,8,["modelValue"])]),_:1}),a(n,{label:"\u6392\u5E8F",prop:"sort"},{default:r(()=>[a(t,{modelValue:o(u).sort,"onUpdate:modelValue":e[3]||(e[3]=s=>o(u).sort=s),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u6392\u5E8F"},null,8,["modelValue"])]),_:1})]),_:1},8,["model","rules"])]),_:1},8,["title"])])}}});export{G as _}; diff --git a/public/admin/assets/edit.vue_vue_type_script_setup_true_name_userRoleEdit_lang.4f344c50.js b/public/admin/assets/edit.vue_vue_type_script_setup_true_name_userRoleEdit_lang.4f344c50.js new file mode 100644 index 000000000..3ea868525 --- /dev/null +++ b/public/admin/assets/edit.vue_vue_type_script_setup_true_name_userRoleEdit_lang.4f344c50.js @@ -0,0 +1 @@ +import{B as w,C as y,D as U}from"./element-plus.4328d892.js";import{P as g}from"./index.5759a1a6.js";import{c as x,b as k,d as h}from"./user_role.942482ea.js";import"./lodash.08438971.js";import{d as _,s as f,r as q,e as I,$ as F,o as P,c as j,U as a,L as r,u as o}from"./@vue.51d7f2d8.js";const A={class:"edit-popup"},L=_({name:"userRoleEdit"}),G=_({...L,props:{dictData:{type:Object,default:()=>({})}},emits:["success","close"],setup(N,{expose:b,emit:m}){const i=f(),d=f(),p=q("add"),V=I(()=>p.value=="edit"?"\u7F16\u8F91\u89D2\u8272\u8868":"\u65B0\u589E\u89D2\u8272\u8868"),u=F({id:"",name:"",desc:"",menu_arr:"",sort:""}),D=F({name:[{required:!0,message:"\u8BF7\u8F93\u5165\u540D\u79F0",trigger:["blur"]}],desc:[{required:!0,message:"\u8BF7\u8F93\u5165\u63CF\u8FF0",trigger:["blur"]}]}),c=async l=>{for(const e in u)l[e]!=null&&l[e]!=null&&(u[e]=l[e])},v=async l=>{const e=await x({id:l.id});c(e)},B=async()=>{var e,t;await((e=i.value)==null?void 0:e.validate());const l={...u};p.value=="edit"?await k(l):await h(l),(t=d.value)==null||t.close(),m("success")},R=(l="add")=>{var e;p.value=l,(e=d.value)==null||e.open()},C=()=>{m("close")};return b({open:R,setFormData:c,getDetail:v}),(l,e)=>{const t=w,n=y,E=U;return P(),j("div",A,[a(g,{ref_key:"popupRef",ref:d,title:o(V),async:!0,width:"550px",onConfirm:B,onClose:C},{default:r(()=>[a(E,{ref_key:"formRef",ref:i,model:o(u),"label-width":"90px",rules:o(D)},{default:r(()=>[a(n,{label:"\u540D\u79F0",prop:"name"},{default:r(()=>[a(t,{modelValue:o(u).name,"onUpdate:modelValue":e[0]||(e[0]=s=>o(u).name=s),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u540D\u79F0"},null,8,["modelValue"])]),_:1}),a(n,{label:"\u63CF\u8FF0",prop:"desc"},{default:r(()=>[a(t,{modelValue:o(u).desc,"onUpdate:modelValue":e[1]||(e[1]=s=>o(u).desc=s),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u63CF\u8FF0"},null,8,["modelValue"])]),_:1}),a(n,{label:"\u6743\u9650id",prop:"menu_arr"},{default:r(()=>[a(t,{modelValue:o(u).menu_arr,"onUpdate:modelValue":e[2]||(e[2]=s=>o(u).menu_arr=s),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u6743\u9650id"},null,8,["modelValue"])]),_:1}),a(n,{label:"\u6392\u5E8F",prop:"sort"},{default:r(()=>[a(t,{modelValue:o(u).sort,"onUpdate:modelValue":e[3]||(e[3]=s=>o(u).sort=s),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u6392\u5E8F"},null,8,["modelValue"])]),_:1})]),_:1},8,["model","rules"])]),_:1},8,["title"])])}}});export{G as _}; diff --git a/public/admin/assets/edit.vue_vue_type_script_setup_true_name_userRoleEdit_lang.98d78f95.js b/public/admin/assets/edit.vue_vue_type_script_setup_true_name_userRoleEdit_lang.98d78f95.js new file mode 100644 index 000000000..72bb63358 --- /dev/null +++ b/public/admin/assets/edit.vue_vue_type_script_setup_true_name_userRoleEdit_lang.98d78f95.js @@ -0,0 +1 @@ +import{B as w,C as y,D as U}from"./element-plus.4328d892.js";import{P as g}from"./index.b940d6e3.js";import{c as x,b as k,d as h}from"./user_role.813f0de8.js";import"./lodash.08438971.js";import{d as _,s as f,r as q,e as I,$ as F,o as P,c as j,U as a,L as r,u as o}from"./@vue.51d7f2d8.js";const A={class:"edit-popup"},L=_({name:"userRoleEdit"}),G=_({...L,props:{dictData:{type:Object,default:()=>({})}},emits:["success","close"],setup(N,{expose:b,emit:m}){const i=f(),d=f(),p=q("add"),V=I(()=>p.value=="edit"?"\u7F16\u8F91\u89D2\u8272\u8868":"\u65B0\u589E\u89D2\u8272\u8868"),u=F({id:"",name:"",desc:"",menu_arr:"",sort:""}),D=F({name:[{required:!0,message:"\u8BF7\u8F93\u5165\u540D\u79F0",trigger:["blur"]}],desc:[{required:!0,message:"\u8BF7\u8F93\u5165\u63CF\u8FF0",trigger:["blur"]}]}),c=async l=>{for(const e in u)l[e]!=null&&l[e]!=null&&(u[e]=l[e])},v=async l=>{const e=await x({id:l.id});c(e)},B=async()=>{var e,t;await((e=i.value)==null?void 0:e.validate());const l={...u};p.value=="edit"?await k(l):await h(l),(t=d.value)==null||t.close(),m("success")},R=(l="add")=>{var e;p.value=l,(e=d.value)==null||e.open()},C=()=>{m("close")};return b({open:R,setFormData:c,getDetail:v}),(l,e)=>{const t=w,n=y,E=U;return P(),j("div",A,[a(g,{ref_key:"popupRef",ref:d,title:o(V),async:!0,width:"550px",onConfirm:B,onClose:C},{default:r(()=>[a(E,{ref_key:"formRef",ref:i,model:o(u),"label-width":"90px",rules:o(D)},{default:r(()=>[a(n,{label:"\u540D\u79F0",prop:"name"},{default:r(()=>[a(t,{modelValue:o(u).name,"onUpdate:modelValue":e[0]||(e[0]=s=>o(u).name=s),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u540D\u79F0"},null,8,["modelValue"])]),_:1}),a(n,{label:"\u63CF\u8FF0",prop:"desc"},{default:r(()=>[a(t,{modelValue:o(u).desc,"onUpdate:modelValue":e[1]||(e[1]=s=>o(u).desc=s),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u63CF\u8FF0"},null,8,["modelValue"])]),_:1}),a(n,{label:"\u6743\u9650id",prop:"menu_arr"},{default:r(()=>[a(t,{modelValue:o(u).menu_arr,"onUpdate:modelValue":e[2]||(e[2]=s=>o(u).menu_arr=s),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u6743\u9650id"},null,8,["modelValue"])]),_:1}),a(n,{label:"\u6392\u5E8F",prop:"sort"},{default:r(()=>[a(t,{modelValue:o(u).sort,"onUpdate:modelValue":e[3]||(e[3]=s=>o(u).sort=s),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u6392\u5E8F"},null,8,["modelValue"])]),_:1})]),_:1},8,["model","rules"])]),_:1},8,["title"])])}}});export{G as _}; diff --git a/public/admin/assets/edit.vue_vue_type_script_setup_true_name_withdrawEdit_lang.724a3d0c.js b/public/admin/assets/edit.vue_vue_type_script_setup_true_name_withdrawEdit_lang.724a3d0c.js new file mode 100644 index 000000000..1726f6364 --- /dev/null +++ b/public/admin/assets/edit.vue_vue_type_script_setup_true_name_withdrawEdit_lang.724a3d0c.js @@ -0,0 +1 @@ +import{B as v,C as E,D as y}from"./element-plus.4328d892.js";import{P as h}from"./index.fa872673.js";import{b as x,c as R,d as U}from"./withdraw.32706b7e.js";import"./lodash.08438971.js";import{d as f,s as c,r as k,e as q,$ as _,o as W,c as I,U as l,L as s,u as a}from"./@vue.51d7f2d8.js";const P={class:"edit-popup"},j=f({name:"withdrawEdit"}),z=f({...j,props:{dictData:{type:Object,default:()=>({})}},emits:["success","close"],setup(L,{expose:D,emit:F}){const m=c(),n=c(),i=k("add"),B=q(()=>i.value=="edit"?"\u7F16\u8F91\u63D0\u73B0\u7533\u8BF7":"\u65B0\u589E\u63D0\u73B0\u7533\u8BF7"),e=_({id:"",order_sn:"",user_id:"",admin_id:"",amount:"",status:""}),C=_({order_sn:[{required:!0,message:"\u8BF7\u8F93\u5165\u8BA2\u5355\u7F16\u53F7",trigger:["blur"]}],user_id:[{required:!0,message:"\u8BF7\u8F93\u5165",trigger:["blur"]}],admin_id:[{required:!0,message:"\u8BF7\u8F93\u5165",trigger:["blur"]}],amount:[{required:!0,message:"\u8BF7\u8F93\u5165\u63D0\u73B0\u91D1\u989D",trigger:["blur"]}],status:[{required:!0,message:"\u8BF7\u8F93\u5165\u72B6\u6001\uFF1A0\u5F85\u5BA1\u6838\uFF0C1\u901A\u8FC7\uFF0C2\u62D2\u7EDD\uFF0C3\u5DF2\u8F6C\u8D26",trigger:["blur"]}]}),p=async t=>{for(const u in e)t[u]!=null&&t[u]!=null&&(e[u]=t[u])},b=async t=>{const u=await x({id:t.id});p(u)},g=async()=>{var u,r;await((u=m.value)==null?void 0:u.validate());const t={...e};i.value=="edit"?await R(t):await U(t),(r=n.value)==null||r.close(),F("success")},V=(t="add")=>{var u;i.value=t,(u=n.value)==null||u.open()},w=()=>{F("close")};return D({open:V,setFormData:p,getDetail:b}),(t,u)=>{const r=v,d=E,A=y;return W(),I("div",P,[l(h,{ref_key:"popupRef",ref:n,title:a(B),async:!0,width:"550px",onConfirm:g,onClose:w},{default:s(()=>[l(A,{ref_key:"formRef",ref:m,model:a(e),"label-width":"90px",rules:a(C)},{default:s(()=>[l(d,{label:"\u8BA2\u5355\u7F16\u53F7",prop:"order_sn"},{default:s(()=>[l(r,{modelValue:a(e).order_sn,"onUpdate:modelValue":u[0]||(u[0]=o=>a(e).order_sn=o),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u8BA2\u5355\u7F16\u53F7"},null,8,["modelValue"])]),_:1}),l(d,{label:"",prop:"user_id"},{default:s(()=>[l(r,{modelValue:a(e).user_id,"onUpdate:modelValue":u[1]||(u[1]=o=>a(e).user_id=o),clearable:"",placeholder:"\u8BF7\u8F93\u5165"},null,8,["modelValue"])]),_:1}),l(d,{label:"",prop:"admin_id"},{default:s(()=>[l(r,{modelValue:a(e).admin_id,"onUpdate:modelValue":u[2]||(u[2]=o=>a(e).admin_id=o),clearable:"",placeholder:"\u8BF7\u8F93\u5165"},null,8,["modelValue"])]),_:1}),l(d,{label:"\u63D0\u73B0\u91D1\u989D",prop:"amount"},{default:s(()=>[l(r,{modelValue:a(e).amount,"onUpdate:modelValue":u[3]||(u[3]=o=>a(e).amount=o),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u63D0\u73B0\u91D1\u989D"},null,8,["modelValue"])]),_:1}),l(d,{label:"\u72B6\u6001\uFF1A0\u5F85\u5BA1\u6838\uFF0C1\u901A\u8FC7\uFF0C2\u62D2\u7EDD\uFF0C3\u5DF2\u8F6C\u8D26",prop:"status"},{default:s(()=>[l(r,{modelValue:a(e).status,"onUpdate:modelValue":u[4]||(u[4]=o=>a(e).status=o),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u72B6\u6001\uFF1A0\u5F85\u5BA1\u6838\uFF0C1\u901A\u8FC7\uFF0C2\u62D2\u7EDD\uFF0C3\u5DF2\u8F6C\u8D26"},null,8,["modelValue"])]),_:1})]),_:1},8,["model","rules"])]),_:1},8,["title"])])}}});export{z as _}; diff --git a/public/admin/assets/edit.vue_vue_type_script_setup_true_name_withdrawEdit_lang.d8e42481.js b/public/admin/assets/edit.vue_vue_type_script_setup_true_name_withdrawEdit_lang.d8e42481.js new file mode 100644 index 000000000..76d33ddd3 --- /dev/null +++ b/public/admin/assets/edit.vue_vue_type_script_setup_true_name_withdrawEdit_lang.d8e42481.js @@ -0,0 +1 @@ +import{B as v,C as E,D as y}from"./element-plus.4328d892.js";import{P as h}from"./index.b940d6e3.js";import{b as x,c as R,d as U}from"./withdraw.046913b9.js";import"./lodash.08438971.js";import{d as f,s as c,r as k,e as q,$ as _,o as W,c as I,U as l,L as s,u as a}from"./@vue.51d7f2d8.js";const P={class:"edit-popup"},j=f({name:"withdrawEdit"}),z=f({...j,props:{dictData:{type:Object,default:()=>({})}},emits:["success","close"],setup(L,{expose:D,emit:F}){const m=c(),n=c(),i=k("add"),B=q(()=>i.value=="edit"?"\u7F16\u8F91\u63D0\u73B0\u7533\u8BF7":"\u65B0\u589E\u63D0\u73B0\u7533\u8BF7"),e=_({id:"",order_sn:"",user_id:"",admin_id:"",amount:"",status:""}),C=_({order_sn:[{required:!0,message:"\u8BF7\u8F93\u5165\u8BA2\u5355\u7F16\u53F7",trigger:["blur"]}],user_id:[{required:!0,message:"\u8BF7\u8F93\u5165",trigger:["blur"]}],admin_id:[{required:!0,message:"\u8BF7\u8F93\u5165",trigger:["blur"]}],amount:[{required:!0,message:"\u8BF7\u8F93\u5165\u63D0\u73B0\u91D1\u989D",trigger:["blur"]}],status:[{required:!0,message:"\u8BF7\u8F93\u5165\u72B6\u6001\uFF1A0\u5F85\u5BA1\u6838\uFF0C1\u901A\u8FC7\uFF0C2\u62D2\u7EDD\uFF0C3\u5DF2\u8F6C\u8D26",trigger:["blur"]}]}),p=async t=>{for(const u in e)t[u]!=null&&t[u]!=null&&(e[u]=t[u])},b=async t=>{const u=await x({id:t.id});p(u)},g=async()=>{var u,r;await((u=m.value)==null?void 0:u.validate());const t={...e};i.value=="edit"?await R(t):await U(t),(r=n.value)==null||r.close(),F("success")},V=(t="add")=>{var u;i.value=t,(u=n.value)==null||u.open()},w=()=>{F("close")};return D({open:V,setFormData:p,getDetail:b}),(t,u)=>{const r=v,d=E,A=y;return W(),I("div",P,[l(h,{ref_key:"popupRef",ref:n,title:a(B),async:!0,width:"550px",onConfirm:g,onClose:w},{default:s(()=>[l(A,{ref_key:"formRef",ref:m,model:a(e),"label-width":"90px",rules:a(C)},{default:s(()=>[l(d,{label:"\u8BA2\u5355\u7F16\u53F7",prop:"order_sn"},{default:s(()=>[l(r,{modelValue:a(e).order_sn,"onUpdate:modelValue":u[0]||(u[0]=o=>a(e).order_sn=o),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u8BA2\u5355\u7F16\u53F7"},null,8,["modelValue"])]),_:1}),l(d,{label:"",prop:"user_id"},{default:s(()=>[l(r,{modelValue:a(e).user_id,"onUpdate:modelValue":u[1]||(u[1]=o=>a(e).user_id=o),clearable:"",placeholder:"\u8BF7\u8F93\u5165"},null,8,["modelValue"])]),_:1}),l(d,{label:"",prop:"admin_id"},{default:s(()=>[l(r,{modelValue:a(e).admin_id,"onUpdate:modelValue":u[2]||(u[2]=o=>a(e).admin_id=o),clearable:"",placeholder:"\u8BF7\u8F93\u5165"},null,8,["modelValue"])]),_:1}),l(d,{label:"\u63D0\u73B0\u91D1\u989D",prop:"amount"},{default:s(()=>[l(r,{modelValue:a(e).amount,"onUpdate:modelValue":u[3]||(u[3]=o=>a(e).amount=o),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u63D0\u73B0\u91D1\u989D"},null,8,["modelValue"])]),_:1}),l(d,{label:"\u72B6\u6001\uFF1A0\u5F85\u5BA1\u6838\uFF0C1\u901A\u8FC7\uFF0C2\u62D2\u7EDD\uFF0C3\u5DF2\u8F6C\u8D26",prop:"status"},{default:s(()=>[l(r,{modelValue:a(e).status,"onUpdate:modelValue":u[4]||(u[4]=o=>a(e).status=o),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u72B6\u6001\uFF1A0\u5F85\u5BA1\u6838\uFF0C1\u901A\u8FC7\uFF0C2\u62D2\u7EDD\uFF0C3\u5DF2\u8F6C\u8D26"},null,8,["modelValue"])]),_:1})]),_:1},8,["model","rules"])]),_:1},8,["title"])])}}});export{z as _}; diff --git a/public/admin/assets/edit.vue_vue_type_script_setup_true_name_withdrawEdit_lang.ea9e65cf.js b/public/admin/assets/edit.vue_vue_type_script_setup_true_name_withdrawEdit_lang.ea9e65cf.js new file mode 100644 index 000000000..f55c475ea --- /dev/null +++ b/public/admin/assets/edit.vue_vue_type_script_setup_true_name_withdrawEdit_lang.ea9e65cf.js @@ -0,0 +1 @@ +import{B as v,C as E,D as y}from"./element-plus.4328d892.js";import{P as h}from"./index.5759a1a6.js";import{b as x,c as R,d as U}from"./withdraw.35c20484.js";import"./lodash.08438971.js";import{d as f,s as c,r as k,e as q,$ as _,o as W,c as I,U as l,L as s,u as a}from"./@vue.51d7f2d8.js";const P={class:"edit-popup"},j=f({name:"withdrawEdit"}),z=f({...j,props:{dictData:{type:Object,default:()=>({})}},emits:["success","close"],setup(L,{expose:D,emit:F}){const m=c(),n=c(),i=k("add"),B=q(()=>i.value=="edit"?"\u7F16\u8F91\u63D0\u73B0\u7533\u8BF7":"\u65B0\u589E\u63D0\u73B0\u7533\u8BF7"),e=_({id:"",order_sn:"",user_id:"",admin_id:"",amount:"",status:""}),C=_({order_sn:[{required:!0,message:"\u8BF7\u8F93\u5165\u8BA2\u5355\u7F16\u53F7",trigger:["blur"]}],user_id:[{required:!0,message:"\u8BF7\u8F93\u5165",trigger:["blur"]}],admin_id:[{required:!0,message:"\u8BF7\u8F93\u5165",trigger:["blur"]}],amount:[{required:!0,message:"\u8BF7\u8F93\u5165\u63D0\u73B0\u91D1\u989D",trigger:["blur"]}],status:[{required:!0,message:"\u8BF7\u8F93\u5165\u72B6\u6001\uFF1A0\u5F85\u5BA1\u6838\uFF0C1\u901A\u8FC7\uFF0C2\u62D2\u7EDD\uFF0C3\u5DF2\u8F6C\u8D26",trigger:["blur"]}]}),p=async t=>{for(const u in e)t[u]!=null&&t[u]!=null&&(e[u]=t[u])},b=async t=>{const u=await x({id:t.id});p(u)},g=async()=>{var u,r;await((u=m.value)==null?void 0:u.validate());const t={...e};i.value=="edit"?await R(t):await U(t),(r=n.value)==null||r.close(),F("success")},V=(t="add")=>{var u;i.value=t,(u=n.value)==null||u.open()},w=()=>{F("close")};return D({open:V,setFormData:p,getDetail:b}),(t,u)=>{const r=v,d=E,A=y;return W(),I("div",P,[l(h,{ref_key:"popupRef",ref:n,title:a(B),async:!0,width:"550px",onConfirm:g,onClose:w},{default:s(()=>[l(A,{ref_key:"formRef",ref:m,model:a(e),"label-width":"90px",rules:a(C)},{default:s(()=>[l(d,{label:"\u8BA2\u5355\u7F16\u53F7",prop:"order_sn"},{default:s(()=>[l(r,{modelValue:a(e).order_sn,"onUpdate:modelValue":u[0]||(u[0]=o=>a(e).order_sn=o),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u8BA2\u5355\u7F16\u53F7"},null,8,["modelValue"])]),_:1}),l(d,{label:"",prop:"user_id"},{default:s(()=>[l(r,{modelValue:a(e).user_id,"onUpdate:modelValue":u[1]||(u[1]=o=>a(e).user_id=o),clearable:"",placeholder:"\u8BF7\u8F93\u5165"},null,8,["modelValue"])]),_:1}),l(d,{label:"",prop:"admin_id"},{default:s(()=>[l(r,{modelValue:a(e).admin_id,"onUpdate:modelValue":u[2]||(u[2]=o=>a(e).admin_id=o),clearable:"",placeholder:"\u8BF7\u8F93\u5165"},null,8,["modelValue"])]),_:1}),l(d,{label:"\u63D0\u73B0\u91D1\u989D",prop:"amount"},{default:s(()=>[l(r,{modelValue:a(e).amount,"onUpdate:modelValue":u[3]||(u[3]=o=>a(e).amount=o),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u63D0\u73B0\u91D1\u989D"},null,8,["modelValue"])]),_:1}),l(d,{label:"\u72B6\u6001\uFF1A0\u5F85\u5BA1\u6838\uFF0C1\u901A\u8FC7\uFF0C2\u62D2\u7EDD\uFF0C3\u5DF2\u8F6C\u8D26",prop:"status"},{default:s(()=>[l(r,{modelValue:a(e).status,"onUpdate:modelValue":u[4]||(u[4]=o=>a(e).status=o),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u72B6\u6001\uFF1A0\u5F85\u5BA1\u6838\uFF0C1\u901A\u8FC7\uFF0C2\u62D2\u7EDD\uFF0C3\u5DF2\u8F6C\u8D26"},null,8,["modelValue"])]),_:1})]),_:1},8,["model","rules"])]),_:1},8,["title"])])}}});export{z as _}; diff --git a/public/admin/assets/edit.vue_vue_type_style_index_0_lang.0c12de95.js b/public/admin/assets/edit.vue_vue_type_style_index_0_lang.0c12de95.js new file mode 100644 index 000000000..69363dab2 --- /dev/null +++ b/public/admin/assets/edit.vue_vue_type_style_index_0_lang.0c12de95.js @@ -0,0 +1 @@ +import{J as pe,k as _e,c as me,B as fe,C as ve,a1 as be,M as ye,N as Fe,a2 as ge,D as Be,L as Ee}from"./element-plus.4328d892.js";import{P as Ve}from"./index.fa872673.js";import{a as we}from"./useDictOptions.a61fcf9f.js";import{b as Ce,c as he,d as Ae}from"./admin.1cd61358.js";import{r as De}from"./role.41d5883e.js";import{e as ke}from"./post.5d32b419.js";import{d as xe}from"./department.5076f65d.js";import{a as Ue,b as qe,c as Le,d as Oe}from"./common.86798ce6.js";import{d as Pe}from"./dict.927f1fc7.js";import{_ as Re}from"./dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.8548f463.js";import{a as Se}from"./index.aa9bb752.js";import{d as Ie,C as Ne,r as B,s as R,e as Te,$ as k,a4 as $e,o as d,c as y,U as o,L as r,u as a,a as S,K as f,T as E,a7 as V,Q as x,k as je}from"./@vue.51d7f2d8.js";const Me={class:"edit-popup"},ze=S("div",{style:{"font-size":"1.2rem",margin:"10px 0"}},"\u57FA\u672C\u4FE1\u606F\u521B\u5EFA",-1),Je={class:"headimg"},Ke=["src"],na=Ie({__name:"edit",emits:["success","close"],setup(Qe,{expose:I,emit:U}){const N=Ne("base_url"),g=B(!0),i=B(!1),T=l=>{i.value=l},q=R(),w=R(),D=B("add"),$=Te(()=>D.value=="edit"?"\u7F16\u8F91\u7BA1\u7406\u5458":"\u65B0\u589E\u7BA1\u7406\u5458"),e=k({id:"",sex:"",id_card:"",name:"",province:"",city:"",area:"",street:"",address:"",account:"",is_contract:0,party_a_name:"",party_a:"",qualification:{id_card:"",id_card_b:"",car_card:"",car_card_b:"",bank_account:"",bank_account_b:""},contract_type:"",file:"",role_id:"",avatar:"",multipoint_login:1,root:0,disable:0,contract:{url:""}}),_=k({provinceOptions:[],cityOptions:[],areaOptions:[],streetOptions:[],dictTypeLists:[],contract_type:[],contract:[]}),j=Se();(async()=>{const l=await Pe({type_id:7});_.contract_type=l.lists})();const C=B(!1);function M(l){C.value=!1,e.party_a=l.id,e.party_a_name=l.company_name}const z=(l,t,n)=>{/^(?:(?:\+|00)86)?1[3-9]\d{9}$/.test(e.account)?n():n(new Error("\u8BF7\u8F93\u5165\u6B63\u786E\u7684\u624B\u673A\u53F7"))},J=(l,t,n)=>{/^[1-9]\d{5}(?:18|19|20)\d{2}(?:0[1-9]|10|11|12)(?:0[1-9]|[1-2]\d|30|31)\d{3}[\dXx]$/.test(e.id_card)?n():n(new Error("\u8BF7\u8F93\u5165\u6B63\u786E\u7684\u8EAB\u4EFD\u8BC1\u53F7\u7801"))},K=(l,t,n)=>{e.qualification.car_card?n():n(new Error("\u8BF7\u8F93\u5165\u9A7E\u9A76\u8BC1\u6B63\u9762"))},Q=(l,t,n)=>{e.qualification.car_card_b?n():n(new Error("\u8BF7\u8F93\u5165\u9A7E\u9A76\u8BC1\u53CD\u9762"))},X=(l,t,n)=>{e.qualification.bank_account?n():n(new Error("\u8BF7\u8F93\u5165\u94F6\u884C\u5361\u6B63\u9762"))},G=(l,t,n)=>{e.qualification.bank_account_b?n():n(new Error("\u8BF7\u8F93\u5165\u94F6\u884C\u5361\u53CD\u9762"))};function H(l){l==8?(g.value=!1,e.party_a=""):g.value=!0}const W=k({account:[{required:!0,trigger:["blur"],validator:z}],id_card:[{required:!0,trigger:["blur"],validator:J}],sex:[{required:!0,message:"\u8BF7\u9009\u62E9\u6027\u522B",trigger:["blur"]}],name:[{required:!0,message:"\u8BF7\u8F93\u5165\u540D\u79F0",trigger:["blur"]}],car_card:[{required:!0,trigger:["change"],validator:K}],car_card_b:[{required:!0,trigger:["blur"],validator:Q}],bank_account:[{required:!0,trigger:["change"],validator:X}],bank_account_b:[{required:!0,trigger:["change"],validator:G}],role_id:[{required:!0,message:"\u8BF7\u9009\u62E9\u89D2\u8272",trigger:["blur"]}]}),{optionsData:Y}=we({role:{api:De},jobs:{api:ke},dept:{api:xe}}),Z=async()=>{var l,t,n;if(i.value){(l=w.value)==null||l.close();return}await((t=q.value)==null?void 0:t.validate()),D.value=="edit"?await Ce(e):await he(e).then(v=>console.log(v)),(n=w.value)==null||n.close(),U("success")},ee=(l="add")=>{var t;D.value=l,(t=w.value)==null||t.open(),l=="view"&&(i.value=!0)},ae=B([]),te=(l,t)=>{if(l.code==0){_e.error(l.msg);return}e.avatar=l.data.uri};function le(l){L()}function ue(l){O()}function oe(l){P()}function re(l){e.street=l}const ne=async()=>{const l=await Ue({});_.provinceOptions=l},L=async()=>{const l=await qe({city:e.province});_.cityOptions=l},O=async()=>{const l=await Le({area:e.city});_.areaOptions=l},P=async()=>{const l=await Oe({street:e.area});_.streetOptions=l};ne();const se=async l=>{var n,v,h,b,c;const t=await Ae({id:l.id});for(const s in e){const p=["sex","province","city","area","street"];t[s]!=null&&t[s]!=null&&(s=="role_id"?e[s]=t[s][0]:e[s]=t[s],p.includes(s)&&(e[s]=e[s].toString()))}e.contract_type=(n=t.contract)==null?void 0:n.contract_type,e.party_a_name=(v=t.contract)==null?void 0:v.party_a_name,e.party_a=(h=t.contract)==null?void 0:h.party_a,e.file=(b=t.contract)==null?void 0:b.file,t.role_id[0]==8&&(g.value=!1),ae.value[0]={url:(c=t.contract)==null?void 0:c.file,name:"\u5408\u540C\u6587\u4EF6"},await L(),await O(),await P()},de=()=>{U("close")};return I({open:ee,setFormData:se,isCheckFn:T}),(l,t)=>{const n=$e("Plus"),v=me,h=pe,b=fe,c=ve,s=be,p=ye,F=Fe,A=ge,ie=Be,ce=Ee;return d(),y("div",Me,[o(Ve,{ref_key:"popupRef",ref:w,title:a($),async:!0,width:"80%",onConfirm:Z,onClose:de},{default:r(()=>[o(ie,{ref_key:"formRef",ref:q,model:a(e),"label-width":"84px",rules:a(W)},{default:r(()=>[ze,S("div",Je,[o(h,{disabled:a(i),modelValue:a(e).avatar,"onUpdate:modelValue":t[0]||(t[0]=u=>a(e).avatar=u),class:"avatar-uploader-head",data:{cid:1},headers:{Token:a(j).token},action:a(N)+"/upload/image","show-file-list":!1,"on-success":te},{default:r(()=>[a(e).avatar?(d(),y("img",{key:0,src:a(e).avatar,class:"avatar"},null,8,Ke)):(d(),f(v,{key:1,class:"avatar-uploader-icon"},{default:r(()=>[o(n)]),_:1}))]),_:1},8,["disabled","modelValue","headers","action"])]),o(s,{class:"pt-6 !border-none"},{default:r(()=>[o(A,null,{default:r(()=>[o(s,{span:11},{default:r(()=>[o(c,{label:"\u59D3\u540D",prop:"name"},{default:r(()=>[o(b,{disabled:a(i),modelValue:a(e).name,"onUpdate:modelValue":t[1]||(t[1]=u=>a(e).name=u),placeholder:"\u8BF7\u8F93\u5165\u59D3\u540D",clearable:"",style:{width:"100%"}},null,8,["disabled","modelValue"])]),_:1})]),_:1}),o(s,{span:13},{default:r(()=>[o(c,{label:"\u6027\u522B",prop:"sex"},{default:r(()=>[o(F,{modelValue:a(e).sex,"onUpdate:modelValue":t[2]||(t[2]=u=>a(e).sex=u),placeholder:"\u8BF7\u9009\u62E9\u6027\u522B",disabled:a(i),style:{width:"100%"}},{default:r(()=>[o(p,{label:"\u7537",value:"1"}),o(p,{label:"\u5973",value:"2"})]),_:1},8,["modelValue","disabled"])]),_:1})]),_:1})]),_:1}),o(A,null,{default:r(()=>[o(s,{span:11},{default:r(()=>[o(c,{label:"\u8EAB\u4EFD\u8BC1\u53F7",prop:"id_card"},{default:r(()=>[o(b,{disabled:a(i),modelValue:a(e).id_card,"onUpdate:modelValue":t[3]||(t[3]=u=>a(e).id_card=u),placeholder:"\u8BF7\u8F93\u5165\u8EAB\u4EFD\u8BC1\u53F7",clearable:"",style:{width:"100%"}},null,8,["disabled","modelValue"])]),_:1})]),_:1}),o(s,{span:13},{default:r(()=>[o(c,{label:"\u8054\u7CFB\u7535\u8BDD",prop:"account"},{default:r(()=>[o(b,{disabled:a(i),modelValue:a(e).account,"onUpdate:modelValue":t[4]||(t[4]=u=>a(e).account=u),placeholder:"\u8BF7\u8F93\u5165\u8054\u7CFB\u7535\u8BDD",clearable:"",style:{width:"100%"}},null,8,["disabled","modelValue"])]),_:1})]),_:1})]),_:1}),o(A,null,{default:r(()=>[o(c,{label:"\u7701",prop:"province",style:{flex:"1"}},{default:r(()=>[o(F,{disabled:a(i),modelValue:a(e).province,"onUpdate:modelValue":t[5]||(t[5]=u=>a(e).province=u),placeholder:"\u8BF7\u9009\u62E9\u7701",clearable:"",onChange:le,style:{width:"100%"}},{default:r(()=>[(d(!0),y(E,null,V(a(_).provinceOptions,(u,m)=>(d(),f(p,{key:m,label:u.province_name,value:u.province_code},null,8,["label","value"]))),128))]),_:1},8,["disabled","modelValue"])]),_:1}),o(c,{label:"\u5E02",prop:"city",style:{flex:"1"}},{default:r(()=>[o(F,{disabled:a(i),modelValue:a(e).city,"onUpdate:modelValue":t[6]||(t[6]=u=>a(e).city=u),placeholder:"\u8BF7\u9009\u62E9\u5E02",clearable:"",onChange:ue,style:{width:"100%"}},{default:r(()=>[(d(!0),y(E,null,V(a(_).cityOptions,(u,m)=>(d(),f(p,{key:m,label:u.city_name,value:u.city_code},null,8,["label","value"]))),128))]),_:1},8,["disabled","modelValue"])]),_:1}),o(c,{label:"\u533A",prop:"area",style:{flex:"1"}},{default:r(()=>[o(F,{disabled:a(i),modelValue:a(e).area,"onUpdate:modelValue":t[7]||(t[7]=u=>a(e).area=u),placeholder:"\u8BF7\u9009\u62E9\u533A",clearable:"",onChange:oe,style:{width:"100%"}},{default:r(()=>[(d(!0),y(E,null,V(a(_).areaOptions,(u,m)=>(d(),f(p,{key:m,label:u.area_name,value:u.area_code},null,8,["label","value"]))),128))]),_:1},8,["disabled","modelValue"])]),_:1}),a(g)?(d(),f(c,{key:0,label:"\u9547",prop:"street",style:{flex:"1"}},{default:r(()=>[o(F,{disabled:a(i),modelValue:a(e).street,"onUpdate:modelValue":t[8]||(t[8]=u=>a(e).street=u),placeholder:"\u8BF7\u9009\u62E9\u9547",clearable:"",onChange:re,style:{width:"100%"}},{default:r(()=>[(d(!0),y(E,null,V(a(_).streetOptions,(u,m)=>(d(),f(p,{key:m,label:u.street_name,value:u.street_code},null,8,["label","value"]))),128))]),_:1},8,["disabled","modelValue"])]),_:1})):x("",!0),a(g)?(d(),f(c,{key:1,label:"\u6751\u793E\u5C0F\u961F",prop:"address",style:{flex:"1.5"}},{default:r(()=>[o(b,{disabled:a(i),modelValue:a(e).address,"onUpdate:modelValue":t[9]||(t[9]=u=>a(e).address=u),placeholder:"\u8BF7\u8F93\u5165\u6751\u793E\u5C0F\u961F",clearable:"",style:{width:"100%"}},null,8,["disabled","modelValue"])]),_:1})):x("",!0)]),_:1})]),_:1}),o(s,{span:24,style:{"margin-top":"1vh"}},{default:r(()=>[o(A,null,{default:r(()=>[o(s,{span:12},{default:r(()=>[o(c,{label:"\u6388\u6743\u8EAB\u4EFD",prop:"role_id"},{default:r(()=>[o(F,{modelValue:a(e).role_id,"onUpdate:modelValue":t[10]||(t[10]=u=>a(e).role_id=u),disabled:a(e).root==1||a(i),placeholder:"\u8BF7\u9009\u62E9\u6388\u6743\u8EAB\u4EFD",style:{width:"100%"},onChange:H,clearable:""},{default:r(()=>[a(e).root==1?(d(),f(p,{key:0,label:"\u7CFB\u7EDF\u7BA1\u7406\u5458",value:0})):x("",!0),(d(!0),y(E,null,V(a(Y).role,(u,m)=>(d(),f(p,{key:m,label:u.name,value:u.id},null,8,["label","value"]))),128))]),_:1},8,["modelValue","disabled"])]),_:1})]),_:1})]),_:1})]),_:1})]),_:1},8,["model","rules"])]),_:1},8,["title"]),o(ce,{modelValue:a(C),"onUpdate:modelValue":t[11]||(t[11]=u=>je(C)?C.value=u:null),title:"\u9009\u62E9\u7B7E\u7EA6\u65B9",width:"60%"},{default:r(()=>[o(Re,{onCustomEvent:M})]),_:1},8,["modelValue"])])}}});export{na as _}; diff --git a/public/admin/assets/edit.vue_vue_type_style_index_0_lang.c0714a8e.js b/public/admin/assets/edit.vue_vue_type_style_index_0_lang.c0714a8e.js new file mode 100644 index 000000000..26b3a4c44 --- /dev/null +++ b/public/admin/assets/edit.vue_vue_type_style_index_0_lang.c0714a8e.js @@ -0,0 +1 @@ +import{J as pe,k as _e,c as me,B as fe,C as ve,a1 as be,M as ye,N as Fe,a2 as ge,D as Be,L as Ee}from"./element-plus.4328d892.js";import{P as Ve}from"./index.5759a1a6.js";import{a as we}from"./useDictOptions.a45fc8ac.js";import{b as Ce,c as he,d as Ae}from"./admin.f0e2c7b9.js";import{r as De}from"./role.8d2a6d5e.js";import{e as ke}from"./post.34f40c78.js";import{d as xe}from"./department.ea28aaf8.js";import{a as Ue,b as qe,c as Le,d as Oe}from"./common.a58b263a.js";import{d as Pe}from"./dict.58face92.js";import{_ as Re}from"./dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.cbb85e35.js";import{a as Se}from"./index.37f7aea6.js";import{d as Ie,C as Ne,r as B,s as R,e as Te,$ as k,a4 as $e,o as d,c as y,U as o,L as r,u as a,a as S,K as f,T as E,a7 as V,Q as x,k as je}from"./@vue.51d7f2d8.js";const Me={class:"edit-popup"},ze=S("div",{style:{"font-size":"1.2rem",margin:"10px 0"}},"\u57FA\u672C\u4FE1\u606F\u521B\u5EFA",-1),Je={class:"headimg"},Ke=["src"],na=Ie({__name:"edit",emits:["success","close"],setup(Qe,{expose:I,emit:U}){const N=Ne("base_url"),g=B(!0),i=B(!1),T=l=>{i.value=l},q=R(),w=R(),D=B("add"),$=Te(()=>D.value=="edit"?"\u7F16\u8F91\u7BA1\u7406\u5458":"\u65B0\u589E\u7BA1\u7406\u5458"),e=k({id:"",sex:"",id_card:"",name:"",province:"",city:"",area:"",street:"",address:"",account:"",is_contract:0,party_a_name:"",party_a:"",qualification:{id_card:"",id_card_b:"",car_card:"",car_card_b:"",bank_account:"",bank_account_b:""},contract_type:"",file:"",role_id:"",avatar:"",multipoint_login:1,root:0,disable:0,contract:{url:""}}),_=k({provinceOptions:[],cityOptions:[],areaOptions:[],streetOptions:[],dictTypeLists:[],contract_type:[],contract:[]}),j=Se();(async()=>{const l=await Pe({type_id:7});_.contract_type=l.lists})();const C=B(!1);function M(l){C.value=!1,e.party_a=l.id,e.party_a_name=l.company_name}const z=(l,t,n)=>{/^(?:(?:\+|00)86)?1[3-9]\d{9}$/.test(e.account)?n():n(new Error("\u8BF7\u8F93\u5165\u6B63\u786E\u7684\u624B\u673A\u53F7"))},J=(l,t,n)=>{/^[1-9]\d{5}(?:18|19|20)\d{2}(?:0[1-9]|10|11|12)(?:0[1-9]|[1-2]\d|30|31)\d{3}[\dXx]$/.test(e.id_card)?n():n(new Error("\u8BF7\u8F93\u5165\u6B63\u786E\u7684\u8EAB\u4EFD\u8BC1\u53F7\u7801"))},K=(l,t,n)=>{e.qualification.car_card?n():n(new Error("\u8BF7\u8F93\u5165\u9A7E\u9A76\u8BC1\u6B63\u9762"))},Q=(l,t,n)=>{e.qualification.car_card_b?n():n(new Error("\u8BF7\u8F93\u5165\u9A7E\u9A76\u8BC1\u53CD\u9762"))},X=(l,t,n)=>{e.qualification.bank_account?n():n(new Error("\u8BF7\u8F93\u5165\u94F6\u884C\u5361\u6B63\u9762"))},G=(l,t,n)=>{e.qualification.bank_account_b?n():n(new Error("\u8BF7\u8F93\u5165\u94F6\u884C\u5361\u53CD\u9762"))};function H(l){l==8?(g.value=!1,e.party_a=""):g.value=!0}const W=k({account:[{required:!0,trigger:["blur"],validator:z}],id_card:[{required:!0,trigger:["blur"],validator:J}],sex:[{required:!0,message:"\u8BF7\u9009\u62E9\u6027\u522B",trigger:["blur"]}],name:[{required:!0,message:"\u8BF7\u8F93\u5165\u540D\u79F0",trigger:["blur"]}],car_card:[{required:!0,trigger:["change"],validator:K}],car_card_b:[{required:!0,trigger:["blur"],validator:Q}],bank_account:[{required:!0,trigger:["change"],validator:X}],bank_account_b:[{required:!0,trigger:["change"],validator:G}],role_id:[{required:!0,message:"\u8BF7\u9009\u62E9\u89D2\u8272",trigger:["blur"]}]}),{optionsData:Y}=we({role:{api:De},jobs:{api:ke},dept:{api:xe}}),Z=async()=>{var l,t,n;if(i.value){(l=w.value)==null||l.close();return}await((t=q.value)==null?void 0:t.validate()),D.value=="edit"?await Ce(e):await he(e).then(v=>console.log(v)),(n=w.value)==null||n.close(),U("success")},ee=(l="add")=>{var t;D.value=l,(t=w.value)==null||t.open(),l=="view"&&(i.value=!0)},ae=B([]),te=(l,t)=>{if(l.code==0){_e.error(l.msg);return}e.avatar=l.data.uri};function le(l){L()}function ue(l){O()}function oe(l){P()}function re(l){e.street=l}const ne=async()=>{const l=await Ue({});_.provinceOptions=l},L=async()=>{const l=await qe({city:e.province});_.cityOptions=l},O=async()=>{const l=await Le({area:e.city});_.areaOptions=l},P=async()=>{const l=await Oe({street:e.area});_.streetOptions=l};ne();const se=async l=>{var n,v,h,b,c;const t=await Ae({id:l.id});for(const s in e){const p=["sex","province","city","area","street"];t[s]!=null&&t[s]!=null&&(s=="role_id"?e[s]=t[s][0]:e[s]=t[s],p.includes(s)&&(e[s]=e[s].toString()))}e.contract_type=(n=t.contract)==null?void 0:n.contract_type,e.party_a_name=(v=t.contract)==null?void 0:v.party_a_name,e.party_a=(h=t.contract)==null?void 0:h.party_a,e.file=(b=t.contract)==null?void 0:b.file,t.role_id[0]==8&&(g.value=!1),ae.value[0]={url:(c=t.contract)==null?void 0:c.file,name:"\u5408\u540C\u6587\u4EF6"},await L(),await O(),await P()},de=()=>{U("close")};return I({open:ee,setFormData:se,isCheckFn:T}),(l,t)=>{const n=$e("Plus"),v=me,h=pe,b=fe,c=ve,s=be,p=ye,F=Fe,A=ge,ie=Be,ce=Ee;return d(),y("div",Me,[o(Ve,{ref_key:"popupRef",ref:w,title:a($),async:!0,width:"80%",onConfirm:Z,onClose:de},{default:r(()=>[o(ie,{ref_key:"formRef",ref:q,model:a(e),"label-width":"84px",rules:a(W)},{default:r(()=>[ze,S("div",Je,[o(h,{disabled:a(i),modelValue:a(e).avatar,"onUpdate:modelValue":t[0]||(t[0]=u=>a(e).avatar=u),class:"avatar-uploader-head",data:{cid:1},headers:{Token:a(j).token},action:a(N)+"/upload/image","show-file-list":!1,"on-success":te},{default:r(()=>[a(e).avatar?(d(),y("img",{key:0,src:a(e).avatar,class:"avatar"},null,8,Ke)):(d(),f(v,{key:1,class:"avatar-uploader-icon"},{default:r(()=>[o(n)]),_:1}))]),_:1},8,["disabled","modelValue","headers","action"])]),o(s,{class:"pt-6 !border-none"},{default:r(()=>[o(A,null,{default:r(()=>[o(s,{span:11},{default:r(()=>[o(c,{label:"\u59D3\u540D",prop:"name"},{default:r(()=>[o(b,{disabled:a(i),modelValue:a(e).name,"onUpdate:modelValue":t[1]||(t[1]=u=>a(e).name=u),placeholder:"\u8BF7\u8F93\u5165\u59D3\u540D",clearable:"",style:{width:"100%"}},null,8,["disabled","modelValue"])]),_:1})]),_:1}),o(s,{span:13},{default:r(()=>[o(c,{label:"\u6027\u522B",prop:"sex"},{default:r(()=>[o(F,{modelValue:a(e).sex,"onUpdate:modelValue":t[2]||(t[2]=u=>a(e).sex=u),placeholder:"\u8BF7\u9009\u62E9\u6027\u522B",disabled:a(i),style:{width:"100%"}},{default:r(()=>[o(p,{label:"\u7537",value:"1"}),o(p,{label:"\u5973",value:"2"})]),_:1},8,["modelValue","disabled"])]),_:1})]),_:1})]),_:1}),o(A,null,{default:r(()=>[o(s,{span:11},{default:r(()=>[o(c,{label:"\u8EAB\u4EFD\u8BC1\u53F7",prop:"id_card"},{default:r(()=>[o(b,{disabled:a(i),modelValue:a(e).id_card,"onUpdate:modelValue":t[3]||(t[3]=u=>a(e).id_card=u),placeholder:"\u8BF7\u8F93\u5165\u8EAB\u4EFD\u8BC1\u53F7",clearable:"",style:{width:"100%"}},null,8,["disabled","modelValue"])]),_:1})]),_:1}),o(s,{span:13},{default:r(()=>[o(c,{label:"\u8054\u7CFB\u7535\u8BDD",prop:"account"},{default:r(()=>[o(b,{disabled:a(i),modelValue:a(e).account,"onUpdate:modelValue":t[4]||(t[4]=u=>a(e).account=u),placeholder:"\u8BF7\u8F93\u5165\u8054\u7CFB\u7535\u8BDD",clearable:"",style:{width:"100%"}},null,8,["disabled","modelValue"])]),_:1})]),_:1})]),_:1}),o(A,null,{default:r(()=>[o(c,{label:"\u7701",prop:"province",style:{flex:"1"}},{default:r(()=>[o(F,{disabled:a(i),modelValue:a(e).province,"onUpdate:modelValue":t[5]||(t[5]=u=>a(e).province=u),placeholder:"\u8BF7\u9009\u62E9\u7701",clearable:"",onChange:le,style:{width:"100%"}},{default:r(()=>[(d(!0),y(E,null,V(a(_).provinceOptions,(u,m)=>(d(),f(p,{key:m,label:u.province_name,value:u.province_code},null,8,["label","value"]))),128))]),_:1},8,["disabled","modelValue"])]),_:1}),o(c,{label:"\u5E02",prop:"city",style:{flex:"1"}},{default:r(()=>[o(F,{disabled:a(i),modelValue:a(e).city,"onUpdate:modelValue":t[6]||(t[6]=u=>a(e).city=u),placeholder:"\u8BF7\u9009\u62E9\u5E02",clearable:"",onChange:ue,style:{width:"100%"}},{default:r(()=>[(d(!0),y(E,null,V(a(_).cityOptions,(u,m)=>(d(),f(p,{key:m,label:u.city_name,value:u.city_code},null,8,["label","value"]))),128))]),_:1},8,["disabled","modelValue"])]),_:1}),o(c,{label:"\u533A",prop:"area",style:{flex:"1"}},{default:r(()=>[o(F,{disabled:a(i),modelValue:a(e).area,"onUpdate:modelValue":t[7]||(t[7]=u=>a(e).area=u),placeholder:"\u8BF7\u9009\u62E9\u533A",clearable:"",onChange:oe,style:{width:"100%"}},{default:r(()=>[(d(!0),y(E,null,V(a(_).areaOptions,(u,m)=>(d(),f(p,{key:m,label:u.area_name,value:u.area_code},null,8,["label","value"]))),128))]),_:1},8,["disabled","modelValue"])]),_:1}),a(g)?(d(),f(c,{key:0,label:"\u9547",prop:"street",style:{flex:"1"}},{default:r(()=>[o(F,{disabled:a(i),modelValue:a(e).street,"onUpdate:modelValue":t[8]||(t[8]=u=>a(e).street=u),placeholder:"\u8BF7\u9009\u62E9\u9547",clearable:"",onChange:re,style:{width:"100%"}},{default:r(()=>[(d(!0),y(E,null,V(a(_).streetOptions,(u,m)=>(d(),f(p,{key:m,label:u.street_name,value:u.street_code},null,8,["label","value"]))),128))]),_:1},8,["disabled","modelValue"])]),_:1})):x("",!0),a(g)?(d(),f(c,{key:1,label:"\u6751\u793E\u5C0F\u961F",prop:"address",style:{flex:"1.5"}},{default:r(()=>[o(b,{disabled:a(i),modelValue:a(e).address,"onUpdate:modelValue":t[9]||(t[9]=u=>a(e).address=u),placeholder:"\u8BF7\u8F93\u5165\u6751\u793E\u5C0F\u961F",clearable:"",style:{width:"100%"}},null,8,["disabled","modelValue"])]),_:1})):x("",!0)]),_:1})]),_:1}),o(s,{span:24,style:{"margin-top":"1vh"}},{default:r(()=>[o(A,null,{default:r(()=>[o(s,{span:12},{default:r(()=>[o(c,{label:"\u6388\u6743\u8EAB\u4EFD",prop:"role_id"},{default:r(()=>[o(F,{modelValue:a(e).role_id,"onUpdate:modelValue":t[10]||(t[10]=u=>a(e).role_id=u),disabled:a(e).root==1||a(i),placeholder:"\u8BF7\u9009\u62E9\u6388\u6743\u8EAB\u4EFD",style:{width:"100%"},onChange:H,clearable:""},{default:r(()=>[a(e).root==1?(d(),f(p,{key:0,label:"\u7CFB\u7EDF\u7BA1\u7406\u5458",value:0})):x("",!0),(d(!0),y(E,null,V(a(Y).role,(u,m)=>(d(),f(p,{key:m,label:u.name,value:u.id},null,8,["label","value"]))),128))]),_:1},8,["modelValue","disabled"])]),_:1})]),_:1})]),_:1})]),_:1})]),_:1},8,["model","rules"])]),_:1},8,["title"]),o(ce,{modelValue:a(C),"onUpdate:modelValue":t[11]||(t[11]=u=>je(C)?C.value=u:null),title:"\u9009\u62E9\u7B7E\u7EA6\u65B9",width:"60%"},{default:r(()=>[o(Re,{onCustomEvent:M})]),_:1},8,["modelValue"])])}}});export{na as _}; diff --git a/public/admin/assets/edit.vue_vue_type_style_index_0_lang.c20ff989.js b/public/admin/assets/edit.vue_vue_type_style_index_0_lang.c20ff989.js new file mode 100644 index 000000000..da4f1d4ec --- /dev/null +++ b/public/admin/assets/edit.vue_vue_type_style_index_0_lang.c20ff989.js @@ -0,0 +1 @@ +import{J as pe,k as _e,c as me,B as fe,C as ve,a1 as be,M as ye,N as Fe,a2 as ge,D as Be,L as Ee}from"./element-plus.4328d892.js";import{P as Ve}from"./index.b940d6e3.js";import{a as we}from"./useDictOptions.8d37e54b.js";import{b as Ce,c as he,d as Ae}from"./admin.f28da7a1.js";import{r as De}from"./role.1c72c4c7.js";import{e as ke}from"./post.53815820.js";import{d as xe}from"./department.4e17bcb6.js";import{a as Ue,b as qe,c as Le,d as Oe}from"./common.ac78ede6.js";import{d as Pe}from"./dict.6c560e38.js";import{_ as Re}from"./dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.dac5c88f.js";import{a as Se}from"./index.ed71ac09.js";import{d as Ie,C as Ne,r as B,s as R,e as Te,$ as k,a4 as $e,o as d,c as y,U as o,L as r,u as a,a as S,K as f,T as E,a7 as V,Q as x,k as je}from"./@vue.51d7f2d8.js";const Me={class:"edit-popup"},ze=S("div",{style:{"font-size":"1.2rem",margin:"10px 0"}},"\u57FA\u672C\u4FE1\u606F\u521B\u5EFA",-1),Je={class:"headimg"},Ke=["src"],na=Ie({__name:"edit",emits:["success","close"],setup(Qe,{expose:I,emit:U}){const N=Ne("base_url"),g=B(!0),i=B(!1),T=l=>{i.value=l},q=R(),w=R(),D=B("add"),$=Te(()=>D.value=="edit"?"\u7F16\u8F91\u7BA1\u7406\u5458":"\u65B0\u589E\u7BA1\u7406\u5458"),e=k({id:"",sex:"",id_card:"",name:"",province:"",city:"",area:"",street:"",address:"",account:"",is_contract:0,party_a_name:"",party_a:"",qualification:{id_card:"",id_card_b:"",car_card:"",car_card_b:"",bank_account:"",bank_account_b:""},contract_type:"",file:"",role_id:"",avatar:"",multipoint_login:1,root:0,disable:0,contract:{url:""}}),_=k({provinceOptions:[],cityOptions:[],areaOptions:[],streetOptions:[],dictTypeLists:[],contract_type:[],contract:[]}),j=Se();(async()=>{const l=await Pe({type_id:7});_.contract_type=l.lists})();const C=B(!1);function M(l){C.value=!1,e.party_a=l.id,e.party_a_name=l.company_name}const z=(l,t,n)=>{/^(?:(?:\+|00)86)?1[3-9]\d{9}$/.test(e.account)?n():n(new Error("\u8BF7\u8F93\u5165\u6B63\u786E\u7684\u624B\u673A\u53F7"))},J=(l,t,n)=>{/^[1-9]\d{5}(?:18|19|20)\d{2}(?:0[1-9]|10|11|12)(?:0[1-9]|[1-2]\d|30|31)\d{3}[\dXx]$/.test(e.id_card)?n():n(new Error("\u8BF7\u8F93\u5165\u6B63\u786E\u7684\u8EAB\u4EFD\u8BC1\u53F7\u7801"))},K=(l,t,n)=>{e.qualification.car_card?n():n(new Error("\u8BF7\u8F93\u5165\u9A7E\u9A76\u8BC1\u6B63\u9762"))},Q=(l,t,n)=>{e.qualification.car_card_b?n():n(new Error("\u8BF7\u8F93\u5165\u9A7E\u9A76\u8BC1\u53CD\u9762"))},X=(l,t,n)=>{e.qualification.bank_account?n():n(new Error("\u8BF7\u8F93\u5165\u94F6\u884C\u5361\u6B63\u9762"))},G=(l,t,n)=>{e.qualification.bank_account_b?n():n(new Error("\u8BF7\u8F93\u5165\u94F6\u884C\u5361\u53CD\u9762"))};function H(l){l==8?(g.value=!1,e.party_a=""):g.value=!0}const W=k({account:[{required:!0,trigger:["blur"],validator:z}],id_card:[{required:!0,trigger:["blur"],validator:J}],sex:[{required:!0,message:"\u8BF7\u9009\u62E9\u6027\u522B",trigger:["blur"]}],name:[{required:!0,message:"\u8BF7\u8F93\u5165\u540D\u79F0",trigger:["blur"]}],car_card:[{required:!0,trigger:["change"],validator:K}],car_card_b:[{required:!0,trigger:["blur"],validator:Q}],bank_account:[{required:!0,trigger:["change"],validator:X}],bank_account_b:[{required:!0,trigger:["change"],validator:G}],role_id:[{required:!0,message:"\u8BF7\u9009\u62E9\u89D2\u8272",trigger:["blur"]}]}),{optionsData:Y}=we({role:{api:De},jobs:{api:ke},dept:{api:xe}}),Z=async()=>{var l,t,n;if(i.value){(l=w.value)==null||l.close();return}await((t=q.value)==null?void 0:t.validate()),D.value=="edit"?await Ce(e):await he(e).then(v=>console.log(v)),(n=w.value)==null||n.close(),U("success")},ee=(l="add")=>{var t;D.value=l,(t=w.value)==null||t.open(),l=="view"&&(i.value=!0)},ae=B([]),te=(l,t)=>{if(l.code==0){_e.error(l.msg);return}e.avatar=l.data.uri};function le(l){L()}function ue(l){O()}function oe(l){P()}function re(l){e.street=l}const ne=async()=>{const l=await Ue({});_.provinceOptions=l},L=async()=>{const l=await qe({city:e.province});_.cityOptions=l},O=async()=>{const l=await Le({area:e.city});_.areaOptions=l},P=async()=>{const l=await Oe({street:e.area});_.streetOptions=l};ne();const se=async l=>{var n,v,h,b,c;const t=await Ae({id:l.id});for(const s in e){const p=["sex","province","city","area","street"];t[s]!=null&&t[s]!=null&&(s=="role_id"?e[s]=t[s][0]:e[s]=t[s],p.includes(s)&&(e[s]=e[s].toString()))}e.contract_type=(n=t.contract)==null?void 0:n.contract_type,e.party_a_name=(v=t.contract)==null?void 0:v.party_a_name,e.party_a=(h=t.contract)==null?void 0:h.party_a,e.file=(b=t.contract)==null?void 0:b.file,t.role_id[0]==8&&(g.value=!1),ae.value[0]={url:(c=t.contract)==null?void 0:c.file,name:"\u5408\u540C\u6587\u4EF6"},await L(),await O(),await P()},de=()=>{U("close")};return I({open:ee,setFormData:se,isCheckFn:T}),(l,t)=>{const n=$e("Plus"),v=me,h=pe,b=fe,c=ve,s=be,p=ye,F=Fe,A=ge,ie=Be,ce=Ee;return d(),y("div",Me,[o(Ve,{ref_key:"popupRef",ref:w,title:a($),async:!0,width:"80%",onConfirm:Z,onClose:de},{default:r(()=>[o(ie,{ref_key:"formRef",ref:q,model:a(e),"label-width":"84px",rules:a(W)},{default:r(()=>[ze,S("div",Je,[o(h,{disabled:a(i),modelValue:a(e).avatar,"onUpdate:modelValue":t[0]||(t[0]=u=>a(e).avatar=u),class:"avatar-uploader-head",data:{cid:1},headers:{Token:a(j).token},action:a(N)+"/upload/image","show-file-list":!1,"on-success":te},{default:r(()=>[a(e).avatar?(d(),y("img",{key:0,src:a(e).avatar,class:"avatar"},null,8,Ke)):(d(),f(v,{key:1,class:"avatar-uploader-icon"},{default:r(()=>[o(n)]),_:1}))]),_:1},8,["disabled","modelValue","headers","action"])]),o(s,{class:"pt-6 !border-none"},{default:r(()=>[o(A,null,{default:r(()=>[o(s,{span:11},{default:r(()=>[o(c,{label:"\u59D3\u540D",prop:"name"},{default:r(()=>[o(b,{disabled:a(i),modelValue:a(e).name,"onUpdate:modelValue":t[1]||(t[1]=u=>a(e).name=u),placeholder:"\u8BF7\u8F93\u5165\u59D3\u540D",clearable:"",style:{width:"100%"}},null,8,["disabled","modelValue"])]),_:1})]),_:1}),o(s,{span:13},{default:r(()=>[o(c,{label:"\u6027\u522B",prop:"sex"},{default:r(()=>[o(F,{modelValue:a(e).sex,"onUpdate:modelValue":t[2]||(t[2]=u=>a(e).sex=u),placeholder:"\u8BF7\u9009\u62E9\u6027\u522B",disabled:a(i),style:{width:"100%"}},{default:r(()=>[o(p,{label:"\u7537",value:"1"}),o(p,{label:"\u5973",value:"2"})]),_:1},8,["modelValue","disabled"])]),_:1})]),_:1})]),_:1}),o(A,null,{default:r(()=>[o(s,{span:11},{default:r(()=>[o(c,{label:"\u8EAB\u4EFD\u8BC1\u53F7",prop:"id_card"},{default:r(()=>[o(b,{disabled:a(i),modelValue:a(e).id_card,"onUpdate:modelValue":t[3]||(t[3]=u=>a(e).id_card=u),placeholder:"\u8BF7\u8F93\u5165\u8EAB\u4EFD\u8BC1\u53F7",clearable:"",style:{width:"100%"}},null,8,["disabled","modelValue"])]),_:1})]),_:1}),o(s,{span:13},{default:r(()=>[o(c,{label:"\u8054\u7CFB\u7535\u8BDD",prop:"account"},{default:r(()=>[o(b,{disabled:a(i),modelValue:a(e).account,"onUpdate:modelValue":t[4]||(t[4]=u=>a(e).account=u),placeholder:"\u8BF7\u8F93\u5165\u8054\u7CFB\u7535\u8BDD",clearable:"",style:{width:"100%"}},null,8,["disabled","modelValue"])]),_:1})]),_:1})]),_:1}),o(A,null,{default:r(()=>[o(c,{label:"\u7701",prop:"province",style:{flex:"1"}},{default:r(()=>[o(F,{disabled:a(i),modelValue:a(e).province,"onUpdate:modelValue":t[5]||(t[5]=u=>a(e).province=u),placeholder:"\u8BF7\u9009\u62E9\u7701",clearable:"",onChange:le,style:{width:"100%"}},{default:r(()=>[(d(!0),y(E,null,V(a(_).provinceOptions,(u,m)=>(d(),f(p,{key:m,label:u.province_name,value:u.province_code},null,8,["label","value"]))),128))]),_:1},8,["disabled","modelValue"])]),_:1}),o(c,{label:"\u5E02",prop:"city",style:{flex:"1"}},{default:r(()=>[o(F,{disabled:a(i),modelValue:a(e).city,"onUpdate:modelValue":t[6]||(t[6]=u=>a(e).city=u),placeholder:"\u8BF7\u9009\u62E9\u5E02",clearable:"",onChange:ue,style:{width:"100%"}},{default:r(()=>[(d(!0),y(E,null,V(a(_).cityOptions,(u,m)=>(d(),f(p,{key:m,label:u.city_name,value:u.city_code},null,8,["label","value"]))),128))]),_:1},8,["disabled","modelValue"])]),_:1}),o(c,{label:"\u533A",prop:"area",style:{flex:"1"}},{default:r(()=>[o(F,{disabled:a(i),modelValue:a(e).area,"onUpdate:modelValue":t[7]||(t[7]=u=>a(e).area=u),placeholder:"\u8BF7\u9009\u62E9\u533A",clearable:"",onChange:oe,style:{width:"100%"}},{default:r(()=>[(d(!0),y(E,null,V(a(_).areaOptions,(u,m)=>(d(),f(p,{key:m,label:u.area_name,value:u.area_code},null,8,["label","value"]))),128))]),_:1},8,["disabled","modelValue"])]),_:1}),a(g)?(d(),f(c,{key:0,label:"\u9547",prop:"street",style:{flex:"1"}},{default:r(()=>[o(F,{disabled:a(i),modelValue:a(e).street,"onUpdate:modelValue":t[8]||(t[8]=u=>a(e).street=u),placeholder:"\u8BF7\u9009\u62E9\u9547",clearable:"",onChange:re,style:{width:"100%"}},{default:r(()=>[(d(!0),y(E,null,V(a(_).streetOptions,(u,m)=>(d(),f(p,{key:m,label:u.street_name,value:u.street_code},null,8,["label","value"]))),128))]),_:1},8,["disabled","modelValue"])]),_:1})):x("",!0),a(g)?(d(),f(c,{key:1,label:"\u6751\u793E\u5C0F\u961F",prop:"address",style:{flex:"1.5"}},{default:r(()=>[o(b,{disabled:a(i),modelValue:a(e).address,"onUpdate:modelValue":t[9]||(t[9]=u=>a(e).address=u),placeholder:"\u8BF7\u8F93\u5165\u6751\u793E\u5C0F\u961F",clearable:"",style:{width:"100%"}},null,8,["disabled","modelValue"])]),_:1})):x("",!0)]),_:1})]),_:1}),o(s,{span:24,style:{"margin-top":"1vh"}},{default:r(()=>[o(A,null,{default:r(()=>[o(s,{span:12},{default:r(()=>[o(c,{label:"\u6388\u6743\u8EAB\u4EFD",prop:"role_id"},{default:r(()=>[o(F,{modelValue:a(e).role_id,"onUpdate:modelValue":t[10]||(t[10]=u=>a(e).role_id=u),disabled:a(e).root==1||a(i),placeholder:"\u8BF7\u9009\u62E9\u6388\u6743\u8EAB\u4EFD",style:{width:"100%"},onChange:H,clearable:""},{default:r(()=>[a(e).root==1?(d(),f(p,{key:0,label:"\u7CFB\u7EDF\u7BA1\u7406\u5458",value:0})):x("",!0),(d(!0),y(E,null,V(a(Y).role,(u,m)=>(d(),f(p,{key:m,label:u.name,value:u.id},null,8,["label","value"]))),128))]),_:1},8,["modelValue","disabled"])]),_:1})]),_:1})]),_:1})]),_:1})]),_:1},8,["model","rules"])]),_:1},8,["title"]),o(ce,{modelValue:a(C),"onUpdate:modelValue":t[11]||(t[11]=u=>je(C)?C.value=u:null),title:"\u9009\u62E9\u7B7E\u7EA6\u65B9",width:"60%"},{default:r(()=>[o(Re,{onCustomEvent:M})]),_:1},8,["modelValue"])])}}});export{na as _}; diff --git a/public/admin/assets/editCate.036f4298.js b/public/admin/assets/editCate.036f4298.js new file mode 100644 index 000000000..81417a338 --- /dev/null +++ b/public/admin/assets/editCate.036f4298.js @@ -0,0 +1 @@ +import"./editCate.vue_vue_type_script_setup_true_name_flowTypeEdit_lang.255a785b.js";import{_ as O}from"./editCate.vue_vue_type_script_setup_true_name_flowTypeEdit_lang.255a785b.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.b940d6e3.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.ed71ac09.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./examined.594ad8f6.js";export{O as default}; diff --git a/public/admin/assets/editCate.1ca148cb.js b/public/admin/assets/editCate.1ca148cb.js new file mode 100644 index 000000000..b359e383e --- /dev/null +++ b/public/admin/assets/editCate.1ca148cb.js @@ -0,0 +1 @@ +import"./editCate.vue_vue_type_script_setup_true_name_flowTypeEdit_lang.d4d5c066.js";import{_ as O}from"./editCate.vue_vue_type_script_setup_true_name_flowTypeEdit_lang.d4d5c066.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.5759a1a6.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.37f7aea6.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./examined.28c87019.js";export{O as default}; diff --git a/public/admin/assets/editCate.58b567e8.js b/public/admin/assets/editCate.58b567e8.js new file mode 100644 index 000000000..3b0f7cfe1 --- /dev/null +++ b/public/admin/assets/editCate.58b567e8.js @@ -0,0 +1 @@ +import"./editCate.vue_vue_type_script_setup_true_name_flowTypeEdit_lang.ad421bfe.js";import{_ as O}from"./editCate.vue_vue_type_script_setup_true_name_flowTypeEdit_lang.ad421bfe.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.fa872673.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.aa9bb752.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./examined.fccbde31.js";export{O as default}; diff --git a/public/admin/assets/editCate.8f00cbfa.js b/public/admin/assets/editCate.8f00cbfa.js new file mode 100644 index 000000000..7b336be91 --- /dev/null +++ b/public/admin/assets/editCate.8f00cbfa.js @@ -0,0 +1 @@ +import"./editCate.vue_vue_type_script_setup_true_name_flowTypeEdit_lang.d16d1301.js";import{_ as O}from"./editCate.vue_vue_type_script_setup_true_name_flowTypeEdit_lang.d16d1301.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.fa872673.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.aa9bb752.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./examined.fccbde31.js";export{O as default}; diff --git a/public/admin/assets/editCate.aa91a307.js b/public/admin/assets/editCate.aa91a307.js new file mode 100644 index 000000000..1f5b9902e --- /dev/null +++ b/public/admin/assets/editCate.aa91a307.js @@ -0,0 +1 @@ +import"./editCate.vue_vue_type_script_setup_true_name_flowTypeEdit_lang.50c156e7.js";import{_ as O}from"./editCate.vue_vue_type_script_setup_true_name_flowTypeEdit_lang.50c156e7.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.b940d6e3.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.ed71ac09.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./examined.594ad8f6.js";export{O as default}; diff --git a/public/admin/assets/editCate.be4d1a26.js b/public/admin/assets/editCate.be4d1a26.js new file mode 100644 index 000000000..3856ad5dd --- /dev/null +++ b/public/admin/assets/editCate.be4d1a26.js @@ -0,0 +1 @@ +import"./editCate.vue_vue_type_script_setup_true_name_flowTypeEdit_lang.805edbad.js";import{_ as O}from"./editCate.vue_vue_type_script_setup_true_name_flowTypeEdit_lang.805edbad.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.5759a1a6.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.37f7aea6.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./examined.28c87019.js";export{O as default}; diff --git a/public/admin/assets/editCate.vue_vue_type_script_setup_true_name_flowTypeEdit_lang.255a785b.js b/public/admin/assets/editCate.vue_vue_type_script_setup_true_name_flowTypeEdit_lang.255a785b.js new file mode 100644 index 000000000..4a6a0002d --- /dev/null +++ b/public/admin/assets/editCate.vue_vue_type_script_setup_true_name_flowTypeEdit_lang.255a785b.js @@ -0,0 +1 @@ +import{B as D,C as x,a1 as R,a2 as h,D as k}from"./element-plus.4328d892.js";import{P as A}from"./index.b940d6e3.js";import{a as f}from"./examined.594ad8f6.js";import"./lodash.08438971.js";import"./index.ed71ac09.js";import{d as B,s as _,r as U,e as I,$ as P,o as T,c as g,U as l,L as o,u as a}from"./@vue.51d7f2d8.js";const j={class:"edit-popup"},L=B({name:"flowTypeEdit"}),H=B({...L,props:{dictData:{type:Object,default:()=>({})}},emits:["success","close"],setup(N,{expose:C,emit:i}){const F=_(),p=_(),d=U("add"),b=I(()=>d.value=="edit"?"\u7F16\u8F91\u5BA1\u6279\u7C7B\u578B":"\u65B0\u589E\u5BA1\u6279\u7C7B\u578B"),t=P({id:"",type:"",title:"",name:"",icon:"",department_ids:"",status:""}),E=async u=>{for(const e in t)u[e]!=null&&u[e]!=null&&(t[e]=u[e])},V=async()=>{var e;const u={...t};d.value=="edit"?await f(u):await f(u),(e=p.value)==null||e.close(),i("success")},w=(u="add")=>{var e;d.value=u,(e=p.value)==null||e.open()},y=()=>{i("close")};return C({open:w,setFormData:E,getDetail}),(u,e)=>{const r=D,m=x,s=R,c=h,v=k;return T(),g("div",j,[l(A,{ref_key:"popupRef",ref:p,title:a(b),async:!0,width:"550px",onConfirm:V,onClose:y},{default:o(()=>[l(v,{ref_key:"formRef",ref:F,model:a(t),"label-width":"84px"},{default:o(()=>[l(s,{class:"pt-6 !border-none"},{default:o(()=>[l(c,null,{default:o(()=>[l(s,null,{default:o(()=>[l(m,{label:"\u540D\u79F0",prop:"title"},{default:o(()=>[l(r,{modelValue:a(t).title,"onUpdate:modelValue":e[0]||(e[0]=n=>a(t).title=n),placeholder:"\u8BF7\u8F93\u5165\u540D\u79F0",clearable:""},null,8,["modelValue"])]),_:1})]),_:1})]),_:1}),l(c,null,{default:o(()=>[l(s,null,{default:o(()=>[l(m,{label:"\u6807\u8BC6",prop:"name"},{default:o(()=>[l(r,{modelValue:a(t).name,"onUpdate:modelValue":e[1]||(e[1]=n=>a(t).name=n),placeholder:"\u8BF7\u8F93\u5165\u5BA1\u6279\u7C7B\u578B\u6807\u8BC6",clearable:""},null,8,["modelValue"])]),_:1})]),_:1})]),_:1}),l(c,null,{default:o(()=>[l(s,null,{default:o(()=>[l(m,{label:"\u56FE\u6807",prop:"icon"},{default:o(()=>[l(r,{modelValue:a(t).icon,"onUpdate:modelValue":e[2]||(e[2]=n=>a(t).icon=n),placeholder:"\u8BF7\u8F93\u5165\u5BA1\u6279\u7C7B\u578B\u56FE\u6807",clearable:""},null,8,["modelValue"])]),_:1})]),_:1})]),_:1})]),_:1})]),_:1},8,["model"])]),_:1},8,["title"])])}}});export{H as _}; diff --git a/public/admin/assets/editCate.vue_vue_type_script_setup_true_name_flowTypeEdit_lang.50c156e7.js b/public/admin/assets/editCate.vue_vue_type_script_setup_true_name_flowTypeEdit_lang.50c156e7.js new file mode 100644 index 000000000..c00869e71 --- /dev/null +++ b/public/admin/assets/editCate.vue_vue_type_script_setup_true_name_flowTypeEdit_lang.50c156e7.js @@ -0,0 +1 @@ +import{B as x,C as R,a1 as h,a2 as k,D as A}from"./element-plus.4328d892.js";import{P as U}from"./index.b940d6e3.js";import{a as _}from"./examined.594ad8f6.js";import"./lodash.08438971.js";import{d as F,s as B,r as T,e as I,$ as P,o as g,c as j,U as l,L as o,u}from"./@vue.51d7f2d8.js";const L={class:"edit-popup"},N=F({name:"flowTypeEdit"}),H=F({...N,props:{dictData:{type:Object,default:()=>({})}},emits:["success","close"],setup(O,{expose:C,emit:i}){const w=B(),p=B(),d=T("add"),y=I(()=>d.value=="edit"?"\u7F16\u8F91\u5BA1\u6279\u7C7B\u578B":"\u65B0\u589E\u5BA1\u6279\u7C7B\u578B"),a=P({id:"",type:"",title:"",name:"",icon:"",department_ids:"",status:""}),f=async t=>{for(const e in a)t[e]!=null&&t[e]!=null&&(a[e]=t[e])},b=async t=>{const e=await apiFlowTypeDetail({id:t.id});f(e)},E=async()=>{var e;const t={...a};d.value=="edit"?await _(t):await _(t),(e=p.value)==null||e.close(),i("success")},V=(t="add")=>{var e;d.value=t,(e=p.value)==null||e.open()},v=()=>{i("close")};return C({open:V,setFormData:f,getDetail:b}),(t,e)=>{const r=x,c=R,s=h,m=k,D=A;return g(),j("div",L,[l(U,{ref_key:"popupRef",ref:p,title:u(y),async:!0,width:"550px",onConfirm:E,onClose:v},{default:o(()=>[l(D,{ref_key:"formRef",ref:w,model:u(a),"label-width":"84px"},{default:o(()=>[l(s,{class:"pt-6 !border-none"},{default:o(()=>[l(m,null,{default:o(()=>[l(s,null,{default:o(()=>[l(c,{label:"\u540D\u79F0",prop:"title"},{default:o(()=>[l(r,{modelValue:u(a).title,"onUpdate:modelValue":e[0]||(e[0]=n=>u(a).title=n),placeholder:"\u8BF7\u8F93\u5165\u540D\u79F0",clearable:""},null,8,["modelValue"])]),_:1})]),_:1})]),_:1}),l(m,null,{default:o(()=>[l(s,null,{default:o(()=>[l(c,{label:"\u6807\u8BC6",prop:"name"},{default:o(()=>[l(r,{modelValue:u(a).name,"onUpdate:modelValue":e[1]||(e[1]=n=>u(a).name=n),placeholder:"\u8BF7\u8F93\u5165\u5BA1\u6279\u7C7B\u578B\u6807\u8BC6",clearable:""},null,8,["modelValue"])]),_:1})]),_:1})]),_:1}),l(m,null,{default:o(()=>[l(s,null,{default:o(()=>[l(c,{label:"\u56FE\u6807",prop:"icon"},{default:o(()=>[l(r,{modelValue:u(a).icon,"onUpdate:modelValue":e[2]||(e[2]=n=>u(a).icon=n),placeholder:"\u8BF7\u8F93\u5165\u5BA1\u6279\u7C7B\u578B\u56FE\u6807",clearable:""},null,8,["modelValue"])]),_:1})]),_:1})]),_:1})]),_:1})]),_:1},8,["model"])]),_:1},8,["title"])])}}});export{H as _}; diff --git a/public/admin/assets/editCate.vue_vue_type_script_setup_true_name_flowTypeEdit_lang.805edbad.js b/public/admin/assets/editCate.vue_vue_type_script_setup_true_name_flowTypeEdit_lang.805edbad.js new file mode 100644 index 000000000..4853ae6ff --- /dev/null +++ b/public/admin/assets/editCate.vue_vue_type_script_setup_true_name_flowTypeEdit_lang.805edbad.js @@ -0,0 +1 @@ +import{B as x,C as R,a1 as h,a2 as k,D as A}from"./element-plus.4328d892.js";import{P as U}from"./index.5759a1a6.js";import{a as _}from"./examined.28c87019.js";import"./lodash.08438971.js";import{d as F,s as B,r as T,e as I,$ as P,o as g,c as j,U as l,L as o,u}from"./@vue.51d7f2d8.js";const L={class:"edit-popup"},N=F({name:"flowTypeEdit"}),H=F({...N,props:{dictData:{type:Object,default:()=>({})}},emits:["success","close"],setup(O,{expose:C,emit:i}){const w=B(),p=B(),d=T("add"),y=I(()=>d.value=="edit"?"\u7F16\u8F91\u5BA1\u6279\u7C7B\u578B":"\u65B0\u589E\u5BA1\u6279\u7C7B\u578B"),a=P({id:"",type:"",title:"",name:"",icon:"",department_ids:"",status:""}),f=async t=>{for(const e in a)t[e]!=null&&t[e]!=null&&(a[e]=t[e])},b=async t=>{const e=await apiFlowTypeDetail({id:t.id});f(e)},E=async()=>{var e;const t={...a};d.value=="edit"?await _(t):await _(t),(e=p.value)==null||e.close(),i("success")},V=(t="add")=>{var e;d.value=t,(e=p.value)==null||e.open()},v=()=>{i("close")};return C({open:V,setFormData:f,getDetail:b}),(t,e)=>{const r=x,c=R,s=h,m=k,D=A;return g(),j("div",L,[l(U,{ref_key:"popupRef",ref:p,title:u(y),async:!0,width:"550px",onConfirm:E,onClose:v},{default:o(()=>[l(D,{ref_key:"formRef",ref:w,model:u(a),"label-width":"84px"},{default:o(()=>[l(s,{class:"pt-6 !border-none"},{default:o(()=>[l(m,null,{default:o(()=>[l(s,null,{default:o(()=>[l(c,{label:"\u540D\u79F0",prop:"title"},{default:o(()=>[l(r,{modelValue:u(a).title,"onUpdate:modelValue":e[0]||(e[0]=n=>u(a).title=n),placeholder:"\u8BF7\u8F93\u5165\u540D\u79F0",clearable:""},null,8,["modelValue"])]),_:1})]),_:1})]),_:1}),l(m,null,{default:o(()=>[l(s,null,{default:o(()=>[l(c,{label:"\u6807\u8BC6",prop:"name"},{default:o(()=>[l(r,{modelValue:u(a).name,"onUpdate:modelValue":e[1]||(e[1]=n=>u(a).name=n),placeholder:"\u8BF7\u8F93\u5165\u5BA1\u6279\u7C7B\u578B\u6807\u8BC6",clearable:""},null,8,["modelValue"])]),_:1})]),_:1})]),_:1}),l(m,null,{default:o(()=>[l(s,null,{default:o(()=>[l(c,{label:"\u56FE\u6807",prop:"icon"},{default:o(()=>[l(r,{modelValue:u(a).icon,"onUpdate:modelValue":e[2]||(e[2]=n=>u(a).icon=n),placeholder:"\u8BF7\u8F93\u5165\u5BA1\u6279\u7C7B\u578B\u56FE\u6807",clearable:""},null,8,["modelValue"])]),_:1})]),_:1})]),_:1})]),_:1})]),_:1},8,["model"])]),_:1},8,["title"])])}}});export{H as _}; diff --git a/public/admin/assets/editCate.vue_vue_type_script_setup_true_name_flowTypeEdit_lang.ad421bfe.js b/public/admin/assets/editCate.vue_vue_type_script_setup_true_name_flowTypeEdit_lang.ad421bfe.js new file mode 100644 index 000000000..079b572a9 --- /dev/null +++ b/public/admin/assets/editCate.vue_vue_type_script_setup_true_name_flowTypeEdit_lang.ad421bfe.js @@ -0,0 +1 @@ +import{B as D,C as x,a1 as R,a2 as h,D as k}from"./element-plus.4328d892.js";import{P as A}from"./index.fa872673.js";import{a as f}from"./examined.fccbde31.js";import"./lodash.08438971.js";import"./index.aa9bb752.js";import{d as B,s as _,r as U,e as I,$ as P,o as T,c as g,U as l,L as o,u as a}from"./@vue.51d7f2d8.js";const j={class:"edit-popup"},L=B({name:"flowTypeEdit"}),H=B({...L,props:{dictData:{type:Object,default:()=>({})}},emits:["success","close"],setup(N,{expose:C,emit:i}){const F=_(),p=_(),d=U("add"),b=I(()=>d.value=="edit"?"\u7F16\u8F91\u5BA1\u6279\u7C7B\u578B":"\u65B0\u589E\u5BA1\u6279\u7C7B\u578B"),t=P({id:"",type:"",title:"",name:"",icon:"",department_ids:"",status:""}),E=async u=>{for(const e in t)u[e]!=null&&u[e]!=null&&(t[e]=u[e])},V=async()=>{var e;const u={...t};d.value=="edit"?await f(u):await f(u),(e=p.value)==null||e.close(),i("success")},w=(u="add")=>{var e;d.value=u,(e=p.value)==null||e.open()},y=()=>{i("close")};return C({open:w,setFormData:E,getDetail}),(u,e)=>{const r=D,m=x,s=R,c=h,v=k;return T(),g("div",j,[l(A,{ref_key:"popupRef",ref:p,title:a(b),async:!0,width:"550px",onConfirm:V,onClose:y},{default:o(()=>[l(v,{ref_key:"formRef",ref:F,model:a(t),"label-width":"84px"},{default:o(()=>[l(s,{class:"pt-6 !border-none"},{default:o(()=>[l(c,null,{default:o(()=>[l(s,null,{default:o(()=>[l(m,{label:"\u540D\u79F0",prop:"title"},{default:o(()=>[l(r,{modelValue:a(t).title,"onUpdate:modelValue":e[0]||(e[0]=n=>a(t).title=n),placeholder:"\u8BF7\u8F93\u5165\u540D\u79F0",clearable:""},null,8,["modelValue"])]),_:1})]),_:1})]),_:1}),l(c,null,{default:o(()=>[l(s,null,{default:o(()=>[l(m,{label:"\u6807\u8BC6",prop:"name"},{default:o(()=>[l(r,{modelValue:a(t).name,"onUpdate:modelValue":e[1]||(e[1]=n=>a(t).name=n),placeholder:"\u8BF7\u8F93\u5165\u5BA1\u6279\u7C7B\u578B\u6807\u8BC6",clearable:""},null,8,["modelValue"])]),_:1})]),_:1})]),_:1}),l(c,null,{default:o(()=>[l(s,null,{default:o(()=>[l(m,{label:"\u56FE\u6807",prop:"icon"},{default:o(()=>[l(r,{modelValue:a(t).icon,"onUpdate:modelValue":e[2]||(e[2]=n=>a(t).icon=n),placeholder:"\u8BF7\u8F93\u5165\u5BA1\u6279\u7C7B\u578B\u56FE\u6807",clearable:""},null,8,["modelValue"])]),_:1})]),_:1})]),_:1})]),_:1})]),_:1},8,["model"])]),_:1},8,["title"])])}}});export{H as _}; diff --git a/public/admin/assets/editCate.vue_vue_type_script_setup_true_name_flowTypeEdit_lang.d16d1301.js b/public/admin/assets/editCate.vue_vue_type_script_setup_true_name_flowTypeEdit_lang.d16d1301.js new file mode 100644 index 000000000..acef57279 --- /dev/null +++ b/public/admin/assets/editCate.vue_vue_type_script_setup_true_name_flowTypeEdit_lang.d16d1301.js @@ -0,0 +1 @@ +import{B as x,C as R,a1 as h,a2 as k,D as A}from"./element-plus.4328d892.js";import{P as U}from"./index.fa872673.js";import{a as _}from"./examined.fccbde31.js";import"./lodash.08438971.js";import{d as F,s as B,r as T,e as I,$ as P,o as g,c as j,U as l,L as o,u}from"./@vue.51d7f2d8.js";const L={class:"edit-popup"},N=F({name:"flowTypeEdit"}),H=F({...N,props:{dictData:{type:Object,default:()=>({})}},emits:["success","close"],setup(O,{expose:C,emit:i}){const w=B(),p=B(),d=T("add"),y=I(()=>d.value=="edit"?"\u7F16\u8F91\u5BA1\u6279\u7C7B\u578B":"\u65B0\u589E\u5BA1\u6279\u7C7B\u578B"),a=P({id:"",type:"",title:"",name:"",icon:"",department_ids:"",status:""}),f=async t=>{for(const e in a)t[e]!=null&&t[e]!=null&&(a[e]=t[e])},b=async t=>{const e=await apiFlowTypeDetail({id:t.id});f(e)},E=async()=>{var e;const t={...a};d.value=="edit"?await _(t):await _(t),(e=p.value)==null||e.close(),i("success")},V=(t="add")=>{var e;d.value=t,(e=p.value)==null||e.open()},v=()=>{i("close")};return C({open:V,setFormData:f,getDetail:b}),(t,e)=>{const r=x,c=R,s=h,m=k,D=A;return g(),j("div",L,[l(U,{ref_key:"popupRef",ref:p,title:u(y),async:!0,width:"550px",onConfirm:E,onClose:v},{default:o(()=>[l(D,{ref_key:"formRef",ref:w,model:u(a),"label-width":"84px"},{default:o(()=>[l(s,{class:"pt-6 !border-none"},{default:o(()=>[l(m,null,{default:o(()=>[l(s,null,{default:o(()=>[l(c,{label:"\u540D\u79F0",prop:"title"},{default:o(()=>[l(r,{modelValue:u(a).title,"onUpdate:modelValue":e[0]||(e[0]=n=>u(a).title=n),placeholder:"\u8BF7\u8F93\u5165\u540D\u79F0",clearable:""},null,8,["modelValue"])]),_:1})]),_:1})]),_:1}),l(m,null,{default:o(()=>[l(s,null,{default:o(()=>[l(c,{label:"\u6807\u8BC6",prop:"name"},{default:o(()=>[l(r,{modelValue:u(a).name,"onUpdate:modelValue":e[1]||(e[1]=n=>u(a).name=n),placeholder:"\u8BF7\u8F93\u5165\u5BA1\u6279\u7C7B\u578B\u6807\u8BC6",clearable:""},null,8,["modelValue"])]),_:1})]),_:1})]),_:1}),l(m,null,{default:o(()=>[l(s,null,{default:o(()=>[l(c,{label:"\u56FE\u6807",prop:"icon"},{default:o(()=>[l(r,{modelValue:u(a).icon,"onUpdate:modelValue":e[2]||(e[2]=n=>u(a).icon=n),placeholder:"\u8BF7\u8F93\u5165\u5BA1\u6279\u7C7B\u578B\u56FE\u6807",clearable:""},null,8,["modelValue"])]),_:1})]),_:1})]),_:1})]),_:1})]),_:1},8,["model"])]),_:1},8,["title"])])}}});export{H as _}; diff --git a/public/admin/assets/editCate.vue_vue_type_script_setup_true_name_flowTypeEdit_lang.d4d5c066.js b/public/admin/assets/editCate.vue_vue_type_script_setup_true_name_flowTypeEdit_lang.d4d5c066.js new file mode 100644 index 000000000..fd5a69e35 --- /dev/null +++ b/public/admin/assets/editCate.vue_vue_type_script_setup_true_name_flowTypeEdit_lang.d4d5c066.js @@ -0,0 +1 @@ +import{B as D,C as x,a1 as R,a2 as h,D as k}from"./element-plus.4328d892.js";import{P as A}from"./index.5759a1a6.js";import{a as f}from"./examined.28c87019.js";import"./lodash.08438971.js";import"./index.37f7aea6.js";import{d as B,s as _,r as U,e as I,$ as P,o as T,c as g,U as l,L as o,u as a}from"./@vue.51d7f2d8.js";const j={class:"edit-popup"},L=B({name:"flowTypeEdit"}),H=B({...L,props:{dictData:{type:Object,default:()=>({})}},emits:["success","close"],setup(N,{expose:C,emit:i}){const F=_(),p=_(),d=U("add"),b=I(()=>d.value=="edit"?"\u7F16\u8F91\u5BA1\u6279\u7C7B\u578B":"\u65B0\u589E\u5BA1\u6279\u7C7B\u578B"),t=P({id:"",type:"",title:"",name:"",icon:"",department_ids:"",status:""}),E=async u=>{for(const e in t)u[e]!=null&&u[e]!=null&&(t[e]=u[e])},V=async()=>{var e;const u={...t};d.value=="edit"?await f(u):await f(u),(e=p.value)==null||e.close(),i("success")},w=(u="add")=>{var e;d.value=u,(e=p.value)==null||e.open()},y=()=>{i("close")};return C({open:w,setFormData:E,getDetail}),(u,e)=>{const r=D,m=x,s=R,c=h,v=k;return T(),g("div",j,[l(A,{ref_key:"popupRef",ref:p,title:a(b),async:!0,width:"550px",onConfirm:V,onClose:y},{default:o(()=>[l(v,{ref_key:"formRef",ref:F,model:a(t),"label-width":"84px"},{default:o(()=>[l(s,{class:"pt-6 !border-none"},{default:o(()=>[l(c,null,{default:o(()=>[l(s,null,{default:o(()=>[l(m,{label:"\u540D\u79F0",prop:"title"},{default:o(()=>[l(r,{modelValue:a(t).title,"onUpdate:modelValue":e[0]||(e[0]=n=>a(t).title=n),placeholder:"\u8BF7\u8F93\u5165\u540D\u79F0",clearable:""},null,8,["modelValue"])]),_:1})]),_:1})]),_:1}),l(c,null,{default:o(()=>[l(s,null,{default:o(()=>[l(m,{label:"\u6807\u8BC6",prop:"name"},{default:o(()=>[l(r,{modelValue:a(t).name,"onUpdate:modelValue":e[1]||(e[1]=n=>a(t).name=n),placeholder:"\u8BF7\u8F93\u5165\u5BA1\u6279\u7C7B\u578B\u6807\u8BC6",clearable:""},null,8,["modelValue"])]),_:1})]),_:1})]),_:1}),l(c,null,{default:o(()=>[l(s,null,{default:o(()=>[l(m,{label:"\u56FE\u6807",prop:"icon"},{default:o(()=>[l(r,{modelValue:a(t).icon,"onUpdate:modelValue":e[2]||(e[2]=n=>a(t).icon=n),placeholder:"\u8BF7\u8F93\u5165\u5BA1\u6279\u7C7B\u578B\u56FE\u6807",clearable:""},null,8,["modelValue"])]),_:1})]),_:1})]),_:1})]),_:1})]),_:1},8,["model"])]),_:1},8,["title"])])}}});export{H as _}; diff --git a/public/admin/assets/editFlow.71f5d7c6.js b/public/admin/assets/editFlow.71f5d7c6.js new file mode 100644 index 000000000..65b972fd2 --- /dev/null +++ b/public/admin/assets/editFlow.71f5d7c6.js @@ -0,0 +1 @@ +import"./editFlow.vue_vue_type_script_setup_true_name_flowEdit_lang.15e7008f.js";import{_ as S}from"./editFlow.vue_vue_type_script_setup_true_name_flowEdit_lang.15e7008f.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.5759a1a6.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.37f7aea6.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./examined.28c87019.js";import"./dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.a896e319.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./usePaging.2ad8e1e6.js";import"./admin.f0e2c7b9.js";export{S as default}; diff --git a/public/admin/assets/editFlow.8b92a1b5.js b/public/admin/assets/editFlow.8b92a1b5.js new file mode 100644 index 000000000..21627d3cb --- /dev/null +++ b/public/admin/assets/editFlow.8b92a1b5.js @@ -0,0 +1 @@ +import"./editFlow.vue_vue_type_script_setup_true_name_flowEdit_lang.9c441111.js";import{_ as S}from"./editFlow.vue_vue_type_script_setup_true_name_flowEdit_lang.9c441111.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.fa872673.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.aa9bb752.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./examined.fccbde31.js";import"./dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.8f34f1b3.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./usePaging.2ad8e1e6.js";import"./admin.1cd61358.js";export{S as default}; diff --git a/public/admin/assets/editFlow.ef5f0f64.js b/public/admin/assets/editFlow.ef5f0f64.js new file mode 100644 index 000000000..8cbf9ebaf --- /dev/null +++ b/public/admin/assets/editFlow.ef5f0f64.js @@ -0,0 +1 @@ +import"./editFlow.vue_vue_type_script_setup_true_name_flowEdit_lang.fa903e6a.js";import{_ as S}from"./editFlow.vue_vue_type_script_setup_true_name_flowEdit_lang.fa903e6a.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.b940d6e3.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.ed71ac09.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./examined.594ad8f6.js";import"./dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.67886d67.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./usePaging.2ad8e1e6.js";import"./admin.f28da7a1.js";export{S as default}; diff --git a/public/admin/assets/editFlow.vue_vue_type_script_setup_true_name_flowEdit_lang.15e7008f.js b/public/admin/assets/editFlow.vue_vue_type_script_setup_true_name_flowEdit_lang.15e7008f.js new file mode 100644 index 000000000..42c8c6365 --- /dev/null +++ b/public/admin/assets/editFlow.vue_vue_type_script_setup_true_name_flowEdit_lang.15e7008f.js @@ -0,0 +1 @@ +import{B as J,C as W,a1 as X,M as Y,N as Z,a2 as ee,G as ue,H as le,w as ae,D as te,L as oe}from"./element-plus.4328d892.js";import{P as de}from"./index.5759a1a6.js";import{b as ne,c as U}from"./examined.28c87019.js";import"./lodash.08438971.js";import{_ as se}from"./dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.a896e319.js";import{d as x,r as h,s as R,e as pe,$,o as _,c as A,U as e,L as u,u as o,R as E,T as N,a7 as q,K as y,Q as b,k as re,a as me}from"./@vue.51d7f2d8.js";const _e={class:"edit-popup"},ie={key:0},fe=me("span",null,"\u65E0\u9700\u5BA1\u6279",-1),Be={key:2},ce=x({name:"flowEdit"}),De=x({...ce,props:{dictData:{type:Object,default:()=>({})}},emits:["success","close"],setup(Ae,{expose:T,emit:v}){const i=h(!1),C=R(),F=R(),w=h("add"),I=pe(()=>w.value=="edit"?"\u7F16\u8F91\u5BA1\u6279\u6D41\u7A0B\u8868":"\u65B0\u589E\u5BA1\u6279\u6D41\u7A0B\u8868"),l=$({id:"",name:"",check_type:"",type:"",flow_cate:"",remark:"",flow_detail:{type:1,step:[{type:"",user:[{id:"",name:""}]}]},copy_to:[{id:"",name:""}]}),L=()=>{l.flow_detail.step=[{type:"",user:[{id:"",name:""}]}]},G=$({name:[{required:!0,message:"\u8BF7\u8F93\u5165\u5BA1\u6279\u6D41\u540D\u79F0",trigger:["blur"]}],check_type:[{required:!0,message:"\u8BF7\u8F93\u51651\u56FA\u5B9A\u5BA1\u6279,2\u6388\u6743\u5BA1\u6279\u4EBA",trigger:["blur"]}],type:[{required:!0,message:"\u8BF7\u8F93\u5165\u5E94\u7528\u6A21\u5757,1\u5047\u52E4,2\u884C\u653F,3\u8D22\u52A1,4\u4EBA\u4E8B,5\u5176\u4ED6,6\u62A5\u9500,7\u53D1\u7968,8\u5408\u540C",trigger:["blur"]}],flow_cate:[{required:!0,message:"\u8BF7\u8F93\u5165\u5E94\u7528\u5BA1\u6279\u7C7B\u578Bid",trigger:["blur"]}],remark:[{required:!0,message:"\u8BF7\u8F93\u5165\u6D41\u7A0B\u8BF4\u660E",trigger:["blur"]}]});let f=-1;const k=d=>{i.value=!0,f=d};function O(d){i.value=!1,f==-1?(l.copy_to[0].id=d.id,l.copy_to[0].name=d.name):(l.flow_detail.step[f].user[0].id=d.id,l.flow_detail.step[f].user[0].name=d.name),f=-1}const P=async d=>{let a=await ne(d.id);for(const r in l)d[r]!=null&&d[r]!=null&&(l[r]=a[r]);l.flow_detail.type=Number(l.flow_detail.type)},S=async d=>{},j=async()=>{var d,a;await((d=C.value)==null?void 0:d.validate()),w.value=="edit"?await U(l):await U(l),(a=F.value)==null||a.close(),v("success")},H=(d="add")=>{var a;w.value=d,(a=F.value)==null||a.open()},K=()=>{v("close")};return T({open:H,setFormData:P,getDetail:S}),(d,a)=>{const r=J,s=W,p=X,n=Y,V=Z,B=ee,D=ue,M=le,g=ae,Q=te,z=oe;return _(),A("div",_e,[e(de,{ref_key:"popupRef",ref:F,title:o(I),async:!0,width:"80vw",onConfirm:j,onClose:K},{default:u(()=>[e(Q,{ref_key:"formRef",ref:C,model:o(l),rules:o(G),"label-width":"120px"},{default:u(()=>[e(p,null,{default:u(()=>[e(B,null,{default:u(()=>[e(p,{span:8},{default:u(()=>[e(s,{label:"\u5BA1\u6279\u6D41\u540D\u79F0",prop:"name"},{default:u(()=>[e(r,{modelValue:o(l).name,"onUpdate:modelValue":a[0]||(a[0]=t=>o(l).name=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u5BA1\u6279\u6D41\u540D\u79F0"},null,8,["modelValue"])]),_:1})]),_:1}),e(p,{span:8},{default:u(()=>[e(s,{label:"\u5E94\u7528\u6A21\u5757",prop:"type"},{default:u(()=>[e(V,{modelValue:o(l).type,"onUpdate:modelValue":a[1]||(a[1]=t=>o(l).type=t),clearable:"",style:{width:"100%"}},{default:u(()=>[e(n,{label:"\u5047\u52E4",value:1}),e(n,{label:"\u884C\u653F",value:2}),e(n,{label:"\u8D22\u52A1",value:3}),e(n,{label:"\u4EBA\u4E8B",value:4}),e(n,{label:"\u5176\u4ED6",value:5}),e(n,{label:"\u62A5\u9500",value:6}),e(n,{label:"\u53D1\u7968",value:7}),e(n,{label:"\u5408\u540C",value:8})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(p,{span:8},{default:u(()=>[e(s,{label:"\u5BA1\u6279\u7C7B\u578B",prop:"flow_cate"},{default:u(()=>[e(V,{modelValue:o(l).flow_cate,"onUpdate:modelValue":a[2]||(a[2]=t=>o(l).flow_cate=t),placeholder:"\u5BA1\u6279\u7C7B\u578B",clearable:"",style:{width:"100%"}},{default:u(()=>[e(n,{label:"\u65E5\u5E38\u5BA1\u6279",value:1}),e(n,{label:"\u62A5\u9500\u5BA1\u6279",value:2}),e(n,{label:"\u53D1\u7968\u5BA1\u6279",value:3}),e(n,{label:"\u5408\u540C\u5BA1\u6279",value:4})]),_:1},8,["modelValue"])]),_:1})]),_:1})]),_:1}),e(B,null,{default:u(()=>[e(p,null,{default:u(()=>[e(s,{label:"\u6D41\u7A0B\u8BF4\u660E",prop:"remark"},{default:u(()=>[e(r,{modelValue:o(l).remark,"onUpdate:modelValue":a[3]||(a[3]=t=>o(l).remark=t),clearable:"",type:"textarea",placeholder:"\u8BF7\u8F93\u5165\u6D41\u7A0B\u8BF4\u660E"},null,8,["modelValue"])]),_:1})]),_:1})]),_:1})]),_:1}),e(p,{span:8},{default:u(()=>[e(s,{label:"\u6D41\u7A0B\u7C7B\u578B",prop:"flow_detail.check_type",clearable:"",style:{width:"100%"}},{default:u(()=>[e(M,{modelValue:o(l).flow_detail.type,"onUpdate:modelValue":a[4]||(a[4]=t=>o(l).flow_detail.type=t),onChange:L},{default:u(()=>[e(D,{label:1},{default:u(()=>[E("\u56FA\u5B9A\u5BA1\u6279")]),_:1}),e(D,{label:2},{default:u(()=>[E("\u6388\u6743\u5BA1\u6279\u4EBA")]),_:1}),e(D,{label:3},{default:u(()=>[E("\u53EF\u56DE\u9000\u5BA1\u6279 ")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),o(l).flow_detail.type==1?(_(),A("p",ie,[(_(!0),A(N,null,q(o(l).flow_detail.step,(t,c)=>(_(),y(B,null,{default:u(()=>[e(p,{span:12},{default:u(()=>[e(s,{label:"\u5BA1\u6279\u6D41\u7A0B"},{default:u(()=>[e(V,{modelValue:o(l).flow_detail.step[c].type,"onUpdate:modelValue":m=>o(l).flow_detail.step[c].type=m,placeholder:"\u5BA1\u6279\u7C7B\u578B",clearable:"",style:{width:"100%"}},{default:u(()=>[e(n,{label:"\u5F53\u524D\u90E8\u95E8\u8D1F\u8D23\u4EBA",value:"1"}),e(n,{label:"\u4E0A\u4E00\u7EA7\u90E8\u95E8\u8D1F\u8D23\u4EBA",value:"2"}),e(n,{label:"\u6307\u5B9A\u7528\u6237(\u4EFB\u610F\u4E00\u4EBA)",value:"3"}),e(n,{label:"\u6307\u5B9A\u7528\u6237(\u591A\u4EBA\u4F1A\u7B7E)",value:"4"})]),_:2},1032,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024),t.type=="3"||t.type=="4"?(_(),y(p,{key:0,span:12},{default:u(()=>[e(s,{label:"\u6307\u5B9A\u4EBA\u5458"},{default:u(()=>[e(r,{clearable:"",modelValue:t.user[0].name,"onUpdate:modelValue":m=>t.user[0].name=m,placeholder:"\u6307\u5B9A\u4EBA\u5458",onClick:m=>k(c)},null,8,["modelValue","onUpdate:modelValue","onClick"])]),_:2},1024)]),_:2},1024)):b("",!0)]),_:2},1024))),256)),e(p,{span:24},{default:u(()=>[e(s,{prop:"field126"},{default:u(()=>[e(g,{type:"primary",onClick:a[5]||(a[5]=t=>o(l).flow_detail.step.push({type:"",user:[{id:"",name:""}]}))},{default:u(()=>[E("\u5176\u4ED6\u8054\u7CFB\u4EBA")]),_:1})]),_:1})]),_:1})])):b("",!0),o(l).flow_detail.type==2?(_(),y(B,{key:1},{default:u(()=>[e(p,{span:12},{default:u(()=>[e(s,{label:""},{default:u(()=>[fe]),_:1})]),_:1})]),_:1})):b("",!0),o(l).flow_detail.type==3?(_(),A("p",Be,[(_(!0),A(N,null,q(o(l).flow_detail.step,(t,c)=>(_(),y(B,null,{default:u(()=>[e(p,{span:12},{default:u(()=>[e(s,{label:"\u5BA1\u6279\u6D41\u7A0B",prop:"copy_uids"},{default:u(()=>[e(r,{modelValue:t.type,"onUpdate:modelValue":m=>t.type=m,clearable:"",placeholder:"\u8BF7\u8F93\u5165\u6D41\u7A0B\u540D\u79F0"},null,8,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024),e(p,{span:12},{default:u(()=>[e(s,{label:"\u6307\u5B9A\u4EBA\u5458"},{default:u(()=>[e(r,{modelValue:t.user[0].name,"onUpdate:modelValue":m=>t.user[0].name=m,onClick:m=>k(c),clearable:"",placeholder:"\u6307\u5B9A\u4EBA\u5458"},null,8,["modelValue","onUpdate:modelValue","onClick"])]),_:2},1024)]),_:2},1024)]),_:2},1024))),256)),e(p,{span:24},{default:u(()=>[e(s,{prop:"field126"},{default:u(()=>[e(g,{type:"primary",onClick:a[6]||(a[6]=t=>o(l).flow_detail.step.push({type:"",user:[{id:"",name:""}]}))},{default:u(()=>[E("\u5176\u4ED6\u8054\u7CFB\u4EBA")]),_:1})]),_:1})]),_:1})])):b("",!0),e(s,{label:"\u6284\u9001\u4EBAID",prop:"copy_unames"},{default:u(()=>[e(r,{modelValue:o(l).copy_to[0].name,"onUpdate:modelValue":a[7]||(a[7]=t=>o(l).copy_to[0].name=t),clearable:"",onClick:a[8]||(a[8]=t=>i.value=!0),placeholder:"\u8BF7\u8F93\u5165\u6284\u9001\u4EBA"},null,8,["modelValue"])]),_:1})]),_:1},8,["model","rules"])]),_:1},8,["title"]),e(z,{modelValue:o(i),"onUpdate:modelValue":a[9]||(a[9]=t=>re(i)?i.value=t:null),title:"\u9009\u62E9\u4EBA\u5458",width:"60%"},{default:u(()=>[e(se,{onCustomEvent:O})]),_:1},8,["modelValue"])])}}});export{De as _}; diff --git a/public/admin/assets/editFlow.vue_vue_type_script_setup_true_name_flowEdit_lang.9c441111.js b/public/admin/assets/editFlow.vue_vue_type_script_setup_true_name_flowEdit_lang.9c441111.js new file mode 100644 index 000000000..07adb5071 --- /dev/null +++ b/public/admin/assets/editFlow.vue_vue_type_script_setup_true_name_flowEdit_lang.9c441111.js @@ -0,0 +1 @@ +import{B as J,C as W,a1 as X,M as Y,N as Z,a2 as ee,G as ue,H as le,w as ae,D as te,L as oe}from"./element-plus.4328d892.js";import{P as de}from"./index.fa872673.js";import{b as ne,c as U}from"./examined.fccbde31.js";import"./lodash.08438971.js";import{_ as se}from"./dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.8f34f1b3.js";import{d as x,r as h,s as R,e as pe,$,o as _,c as A,U as e,L as u,u as o,R as E,T as N,a7 as q,K as y,Q as b,k as re,a as me}from"./@vue.51d7f2d8.js";const _e={class:"edit-popup"},ie={key:0},fe=me("span",null,"\u65E0\u9700\u5BA1\u6279",-1),Be={key:2},ce=x({name:"flowEdit"}),De=x({...ce,props:{dictData:{type:Object,default:()=>({})}},emits:["success","close"],setup(Ae,{expose:T,emit:v}){const i=h(!1),C=R(),F=R(),w=h("add"),I=pe(()=>w.value=="edit"?"\u7F16\u8F91\u5BA1\u6279\u6D41\u7A0B\u8868":"\u65B0\u589E\u5BA1\u6279\u6D41\u7A0B\u8868"),l=$({id:"",name:"",check_type:"",type:"",flow_cate:"",remark:"",flow_detail:{type:1,step:[{type:"",user:[{id:"",name:""}]}]},copy_to:[{id:"",name:""}]}),L=()=>{l.flow_detail.step=[{type:"",user:[{id:"",name:""}]}]},G=$({name:[{required:!0,message:"\u8BF7\u8F93\u5165\u5BA1\u6279\u6D41\u540D\u79F0",trigger:["blur"]}],check_type:[{required:!0,message:"\u8BF7\u8F93\u51651\u56FA\u5B9A\u5BA1\u6279,2\u6388\u6743\u5BA1\u6279\u4EBA",trigger:["blur"]}],type:[{required:!0,message:"\u8BF7\u8F93\u5165\u5E94\u7528\u6A21\u5757,1\u5047\u52E4,2\u884C\u653F,3\u8D22\u52A1,4\u4EBA\u4E8B,5\u5176\u4ED6,6\u62A5\u9500,7\u53D1\u7968,8\u5408\u540C",trigger:["blur"]}],flow_cate:[{required:!0,message:"\u8BF7\u8F93\u5165\u5E94\u7528\u5BA1\u6279\u7C7B\u578Bid",trigger:["blur"]}],remark:[{required:!0,message:"\u8BF7\u8F93\u5165\u6D41\u7A0B\u8BF4\u660E",trigger:["blur"]}]});let f=-1;const k=d=>{i.value=!0,f=d};function O(d){i.value=!1,f==-1?(l.copy_to[0].id=d.id,l.copy_to[0].name=d.name):(l.flow_detail.step[f].user[0].id=d.id,l.flow_detail.step[f].user[0].name=d.name),f=-1}const P=async d=>{let a=await ne(d.id);for(const r in l)d[r]!=null&&d[r]!=null&&(l[r]=a[r]);l.flow_detail.type=Number(l.flow_detail.type)},S=async d=>{},j=async()=>{var d,a;await((d=C.value)==null?void 0:d.validate()),w.value=="edit"?await U(l):await U(l),(a=F.value)==null||a.close(),v("success")},H=(d="add")=>{var a;w.value=d,(a=F.value)==null||a.open()},K=()=>{v("close")};return T({open:H,setFormData:P,getDetail:S}),(d,a)=>{const r=J,s=W,p=X,n=Y,V=Z,B=ee,D=ue,M=le,g=ae,Q=te,z=oe;return _(),A("div",_e,[e(de,{ref_key:"popupRef",ref:F,title:o(I),async:!0,width:"80vw",onConfirm:j,onClose:K},{default:u(()=>[e(Q,{ref_key:"formRef",ref:C,model:o(l),rules:o(G),"label-width":"120px"},{default:u(()=>[e(p,null,{default:u(()=>[e(B,null,{default:u(()=>[e(p,{span:8},{default:u(()=>[e(s,{label:"\u5BA1\u6279\u6D41\u540D\u79F0",prop:"name"},{default:u(()=>[e(r,{modelValue:o(l).name,"onUpdate:modelValue":a[0]||(a[0]=t=>o(l).name=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u5BA1\u6279\u6D41\u540D\u79F0"},null,8,["modelValue"])]),_:1})]),_:1}),e(p,{span:8},{default:u(()=>[e(s,{label:"\u5E94\u7528\u6A21\u5757",prop:"type"},{default:u(()=>[e(V,{modelValue:o(l).type,"onUpdate:modelValue":a[1]||(a[1]=t=>o(l).type=t),clearable:"",style:{width:"100%"}},{default:u(()=>[e(n,{label:"\u5047\u52E4",value:1}),e(n,{label:"\u884C\u653F",value:2}),e(n,{label:"\u8D22\u52A1",value:3}),e(n,{label:"\u4EBA\u4E8B",value:4}),e(n,{label:"\u5176\u4ED6",value:5}),e(n,{label:"\u62A5\u9500",value:6}),e(n,{label:"\u53D1\u7968",value:7}),e(n,{label:"\u5408\u540C",value:8})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(p,{span:8},{default:u(()=>[e(s,{label:"\u5BA1\u6279\u7C7B\u578B",prop:"flow_cate"},{default:u(()=>[e(V,{modelValue:o(l).flow_cate,"onUpdate:modelValue":a[2]||(a[2]=t=>o(l).flow_cate=t),placeholder:"\u5BA1\u6279\u7C7B\u578B",clearable:"",style:{width:"100%"}},{default:u(()=>[e(n,{label:"\u65E5\u5E38\u5BA1\u6279",value:1}),e(n,{label:"\u62A5\u9500\u5BA1\u6279",value:2}),e(n,{label:"\u53D1\u7968\u5BA1\u6279",value:3}),e(n,{label:"\u5408\u540C\u5BA1\u6279",value:4})]),_:1},8,["modelValue"])]),_:1})]),_:1})]),_:1}),e(B,null,{default:u(()=>[e(p,null,{default:u(()=>[e(s,{label:"\u6D41\u7A0B\u8BF4\u660E",prop:"remark"},{default:u(()=>[e(r,{modelValue:o(l).remark,"onUpdate:modelValue":a[3]||(a[3]=t=>o(l).remark=t),clearable:"",type:"textarea",placeholder:"\u8BF7\u8F93\u5165\u6D41\u7A0B\u8BF4\u660E"},null,8,["modelValue"])]),_:1})]),_:1})]),_:1})]),_:1}),e(p,{span:8},{default:u(()=>[e(s,{label:"\u6D41\u7A0B\u7C7B\u578B",prop:"flow_detail.check_type",clearable:"",style:{width:"100%"}},{default:u(()=>[e(M,{modelValue:o(l).flow_detail.type,"onUpdate:modelValue":a[4]||(a[4]=t=>o(l).flow_detail.type=t),onChange:L},{default:u(()=>[e(D,{label:1},{default:u(()=>[E("\u56FA\u5B9A\u5BA1\u6279")]),_:1}),e(D,{label:2},{default:u(()=>[E("\u6388\u6743\u5BA1\u6279\u4EBA")]),_:1}),e(D,{label:3},{default:u(()=>[E("\u53EF\u56DE\u9000\u5BA1\u6279 ")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),o(l).flow_detail.type==1?(_(),A("p",ie,[(_(!0),A(N,null,q(o(l).flow_detail.step,(t,c)=>(_(),y(B,null,{default:u(()=>[e(p,{span:12},{default:u(()=>[e(s,{label:"\u5BA1\u6279\u6D41\u7A0B"},{default:u(()=>[e(V,{modelValue:o(l).flow_detail.step[c].type,"onUpdate:modelValue":m=>o(l).flow_detail.step[c].type=m,placeholder:"\u5BA1\u6279\u7C7B\u578B",clearable:"",style:{width:"100%"}},{default:u(()=>[e(n,{label:"\u5F53\u524D\u90E8\u95E8\u8D1F\u8D23\u4EBA",value:"1"}),e(n,{label:"\u4E0A\u4E00\u7EA7\u90E8\u95E8\u8D1F\u8D23\u4EBA",value:"2"}),e(n,{label:"\u6307\u5B9A\u7528\u6237(\u4EFB\u610F\u4E00\u4EBA)",value:"3"}),e(n,{label:"\u6307\u5B9A\u7528\u6237(\u591A\u4EBA\u4F1A\u7B7E)",value:"4"})]),_:2},1032,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024),t.type=="3"||t.type=="4"?(_(),y(p,{key:0,span:12},{default:u(()=>[e(s,{label:"\u6307\u5B9A\u4EBA\u5458"},{default:u(()=>[e(r,{clearable:"",modelValue:t.user[0].name,"onUpdate:modelValue":m=>t.user[0].name=m,placeholder:"\u6307\u5B9A\u4EBA\u5458",onClick:m=>k(c)},null,8,["modelValue","onUpdate:modelValue","onClick"])]),_:2},1024)]),_:2},1024)):b("",!0)]),_:2},1024))),256)),e(p,{span:24},{default:u(()=>[e(s,{prop:"field126"},{default:u(()=>[e(g,{type:"primary",onClick:a[5]||(a[5]=t=>o(l).flow_detail.step.push({type:"",user:[{id:"",name:""}]}))},{default:u(()=>[E("\u5176\u4ED6\u8054\u7CFB\u4EBA")]),_:1})]),_:1})]),_:1})])):b("",!0),o(l).flow_detail.type==2?(_(),y(B,{key:1},{default:u(()=>[e(p,{span:12},{default:u(()=>[e(s,{label:""},{default:u(()=>[fe]),_:1})]),_:1})]),_:1})):b("",!0),o(l).flow_detail.type==3?(_(),A("p",Be,[(_(!0),A(N,null,q(o(l).flow_detail.step,(t,c)=>(_(),y(B,null,{default:u(()=>[e(p,{span:12},{default:u(()=>[e(s,{label:"\u5BA1\u6279\u6D41\u7A0B",prop:"copy_uids"},{default:u(()=>[e(r,{modelValue:t.type,"onUpdate:modelValue":m=>t.type=m,clearable:"",placeholder:"\u8BF7\u8F93\u5165\u6D41\u7A0B\u540D\u79F0"},null,8,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024),e(p,{span:12},{default:u(()=>[e(s,{label:"\u6307\u5B9A\u4EBA\u5458"},{default:u(()=>[e(r,{modelValue:t.user[0].name,"onUpdate:modelValue":m=>t.user[0].name=m,onClick:m=>k(c),clearable:"",placeholder:"\u6307\u5B9A\u4EBA\u5458"},null,8,["modelValue","onUpdate:modelValue","onClick"])]),_:2},1024)]),_:2},1024)]),_:2},1024))),256)),e(p,{span:24},{default:u(()=>[e(s,{prop:"field126"},{default:u(()=>[e(g,{type:"primary",onClick:a[6]||(a[6]=t=>o(l).flow_detail.step.push({type:"",user:[{id:"",name:""}]}))},{default:u(()=>[E("\u5176\u4ED6\u8054\u7CFB\u4EBA")]),_:1})]),_:1})]),_:1})])):b("",!0),e(s,{label:"\u6284\u9001\u4EBAID",prop:"copy_unames"},{default:u(()=>[e(r,{modelValue:o(l).copy_to[0].name,"onUpdate:modelValue":a[7]||(a[7]=t=>o(l).copy_to[0].name=t),clearable:"",onClick:a[8]||(a[8]=t=>i.value=!0),placeholder:"\u8BF7\u8F93\u5165\u6284\u9001\u4EBA"},null,8,["modelValue"])]),_:1})]),_:1},8,["model","rules"])]),_:1},8,["title"]),e(z,{modelValue:o(i),"onUpdate:modelValue":a[9]||(a[9]=t=>re(i)?i.value=t:null),title:"\u9009\u62E9\u4EBA\u5458",width:"60%"},{default:u(()=>[e(se,{onCustomEvent:O})]),_:1},8,["modelValue"])])}}});export{De as _}; diff --git a/public/admin/assets/editFlow.vue_vue_type_script_setup_true_name_flowEdit_lang.fa903e6a.js b/public/admin/assets/editFlow.vue_vue_type_script_setup_true_name_flowEdit_lang.fa903e6a.js new file mode 100644 index 000000000..4f03198ac --- /dev/null +++ b/public/admin/assets/editFlow.vue_vue_type_script_setup_true_name_flowEdit_lang.fa903e6a.js @@ -0,0 +1 @@ +import{B as J,C as W,a1 as X,M as Y,N as Z,a2 as ee,G as ue,H as le,w as ae,D as te,L as oe}from"./element-plus.4328d892.js";import{P as de}from"./index.b940d6e3.js";import{b as ne,c as U}from"./examined.594ad8f6.js";import"./lodash.08438971.js";import{_ as se}from"./dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.67886d67.js";import{d as x,r as h,s as R,e as pe,$,o as _,c as A,U as e,L as u,u as o,R as E,T as N,a7 as q,K as y,Q as b,k as re,a as me}from"./@vue.51d7f2d8.js";const _e={class:"edit-popup"},ie={key:0},fe=me("span",null,"\u65E0\u9700\u5BA1\u6279",-1),Be={key:2},ce=x({name:"flowEdit"}),De=x({...ce,props:{dictData:{type:Object,default:()=>({})}},emits:["success","close"],setup(Ae,{expose:T,emit:v}){const i=h(!1),C=R(),F=R(),w=h("add"),I=pe(()=>w.value=="edit"?"\u7F16\u8F91\u5BA1\u6279\u6D41\u7A0B\u8868":"\u65B0\u589E\u5BA1\u6279\u6D41\u7A0B\u8868"),l=$({id:"",name:"",check_type:"",type:"",flow_cate:"",remark:"",flow_detail:{type:1,step:[{type:"",user:[{id:"",name:""}]}]},copy_to:[{id:"",name:""}]}),L=()=>{l.flow_detail.step=[{type:"",user:[{id:"",name:""}]}]},G=$({name:[{required:!0,message:"\u8BF7\u8F93\u5165\u5BA1\u6279\u6D41\u540D\u79F0",trigger:["blur"]}],check_type:[{required:!0,message:"\u8BF7\u8F93\u51651\u56FA\u5B9A\u5BA1\u6279,2\u6388\u6743\u5BA1\u6279\u4EBA",trigger:["blur"]}],type:[{required:!0,message:"\u8BF7\u8F93\u5165\u5E94\u7528\u6A21\u5757,1\u5047\u52E4,2\u884C\u653F,3\u8D22\u52A1,4\u4EBA\u4E8B,5\u5176\u4ED6,6\u62A5\u9500,7\u53D1\u7968,8\u5408\u540C",trigger:["blur"]}],flow_cate:[{required:!0,message:"\u8BF7\u8F93\u5165\u5E94\u7528\u5BA1\u6279\u7C7B\u578Bid",trigger:["blur"]}],remark:[{required:!0,message:"\u8BF7\u8F93\u5165\u6D41\u7A0B\u8BF4\u660E",trigger:["blur"]}]});let f=-1;const k=d=>{i.value=!0,f=d};function O(d){i.value=!1,f==-1?(l.copy_to[0].id=d.id,l.copy_to[0].name=d.name):(l.flow_detail.step[f].user[0].id=d.id,l.flow_detail.step[f].user[0].name=d.name),f=-1}const P=async d=>{let a=await ne(d.id);for(const r in l)d[r]!=null&&d[r]!=null&&(l[r]=a[r]);l.flow_detail.type=Number(l.flow_detail.type)},S=async d=>{},j=async()=>{var d,a;await((d=C.value)==null?void 0:d.validate()),w.value=="edit"?await U(l):await U(l),(a=F.value)==null||a.close(),v("success")},H=(d="add")=>{var a;w.value=d,(a=F.value)==null||a.open()},K=()=>{v("close")};return T({open:H,setFormData:P,getDetail:S}),(d,a)=>{const r=J,s=W,p=X,n=Y,V=Z,B=ee,D=ue,M=le,g=ae,Q=te,z=oe;return _(),A("div",_e,[e(de,{ref_key:"popupRef",ref:F,title:o(I),async:!0,width:"80vw",onConfirm:j,onClose:K},{default:u(()=>[e(Q,{ref_key:"formRef",ref:C,model:o(l),rules:o(G),"label-width":"120px"},{default:u(()=>[e(p,null,{default:u(()=>[e(B,null,{default:u(()=>[e(p,{span:8},{default:u(()=>[e(s,{label:"\u5BA1\u6279\u6D41\u540D\u79F0",prop:"name"},{default:u(()=>[e(r,{modelValue:o(l).name,"onUpdate:modelValue":a[0]||(a[0]=t=>o(l).name=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u5BA1\u6279\u6D41\u540D\u79F0"},null,8,["modelValue"])]),_:1})]),_:1}),e(p,{span:8},{default:u(()=>[e(s,{label:"\u5E94\u7528\u6A21\u5757",prop:"type"},{default:u(()=>[e(V,{modelValue:o(l).type,"onUpdate:modelValue":a[1]||(a[1]=t=>o(l).type=t),clearable:"",style:{width:"100%"}},{default:u(()=>[e(n,{label:"\u5047\u52E4",value:1}),e(n,{label:"\u884C\u653F",value:2}),e(n,{label:"\u8D22\u52A1",value:3}),e(n,{label:"\u4EBA\u4E8B",value:4}),e(n,{label:"\u5176\u4ED6",value:5}),e(n,{label:"\u62A5\u9500",value:6}),e(n,{label:"\u53D1\u7968",value:7}),e(n,{label:"\u5408\u540C",value:8})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(p,{span:8},{default:u(()=>[e(s,{label:"\u5BA1\u6279\u7C7B\u578B",prop:"flow_cate"},{default:u(()=>[e(V,{modelValue:o(l).flow_cate,"onUpdate:modelValue":a[2]||(a[2]=t=>o(l).flow_cate=t),placeholder:"\u5BA1\u6279\u7C7B\u578B",clearable:"",style:{width:"100%"}},{default:u(()=>[e(n,{label:"\u65E5\u5E38\u5BA1\u6279",value:1}),e(n,{label:"\u62A5\u9500\u5BA1\u6279",value:2}),e(n,{label:"\u53D1\u7968\u5BA1\u6279",value:3}),e(n,{label:"\u5408\u540C\u5BA1\u6279",value:4})]),_:1},8,["modelValue"])]),_:1})]),_:1})]),_:1}),e(B,null,{default:u(()=>[e(p,null,{default:u(()=>[e(s,{label:"\u6D41\u7A0B\u8BF4\u660E",prop:"remark"},{default:u(()=>[e(r,{modelValue:o(l).remark,"onUpdate:modelValue":a[3]||(a[3]=t=>o(l).remark=t),clearable:"",type:"textarea",placeholder:"\u8BF7\u8F93\u5165\u6D41\u7A0B\u8BF4\u660E"},null,8,["modelValue"])]),_:1})]),_:1})]),_:1})]),_:1}),e(p,{span:8},{default:u(()=>[e(s,{label:"\u6D41\u7A0B\u7C7B\u578B",prop:"flow_detail.check_type",clearable:"",style:{width:"100%"}},{default:u(()=>[e(M,{modelValue:o(l).flow_detail.type,"onUpdate:modelValue":a[4]||(a[4]=t=>o(l).flow_detail.type=t),onChange:L},{default:u(()=>[e(D,{label:1},{default:u(()=>[E("\u56FA\u5B9A\u5BA1\u6279")]),_:1}),e(D,{label:2},{default:u(()=>[E("\u6388\u6743\u5BA1\u6279\u4EBA")]),_:1}),e(D,{label:3},{default:u(()=>[E("\u53EF\u56DE\u9000\u5BA1\u6279 ")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),o(l).flow_detail.type==1?(_(),A("p",ie,[(_(!0),A(N,null,q(o(l).flow_detail.step,(t,c)=>(_(),y(B,null,{default:u(()=>[e(p,{span:12},{default:u(()=>[e(s,{label:"\u5BA1\u6279\u6D41\u7A0B"},{default:u(()=>[e(V,{modelValue:o(l).flow_detail.step[c].type,"onUpdate:modelValue":m=>o(l).flow_detail.step[c].type=m,placeholder:"\u5BA1\u6279\u7C7B\u578B",clearable:"",style:{width:"100%"}},{default:u(()=>[e(n,{label:"\u5F53\u524D\u90E8\u95E8\u8D1F\u8D23\u4EBA",value:"1"}),e(n,{label:"\u4E0A\u4E00\u7EA7\u90E8\u95E8\u8D1F\u8D23\u4EBA",value:"2"}),e(n,{label:"\u6307\u5B9A\u7528\u6237(\u4EFB\u610F\u4E00\u4EBA)",value:"3"}),e(n,{label:"\u6307\u5B9A\u7528\u6237(\u591A\u4EBA\u4F1A\u7B7E)",value:"4"})]),_:2},1032,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024),t.type=="3"||t.type=="4"?(_(),y(p,{key:0,span:12},{default:u(()=>[e(s,{label:"\u6307\u5B9A\u4EBA\u5458"},{default:u(()=>[e(r,{clearable:"",modelValue:t.user[0].name,"onUpdate:modelValue":m=>t.user[0].name=m,placeholder:"\u6307\u5B9A\u4EBA\u5458",onClick:m=>k(c)},null,8,["modelValue","onUpdate:modelValue","onClick"])]),_:2},1024)]),_:2},1024)):b("",!0)]),_:2},1024))),256)),e(p,{span:24},{default:u(()=>[e(s,{prop:"field126"},{default:u(()=>[e(g,{type:"primary",onClick:a[5]||(a[5]=t=>o(l).flow_detail.step.push({type:"",user:[{id:"",name:""}]}))},{default:u(()=>[E("\u5176\u4ED6\u8054\u7CFB\u4EBA")]),_:1})]),_:1})]),_:1})])):b("",!0),o(l).flow_detail.type==2?(_(),y(B,{key:1},{default:u(()=>[e(p,{span:12},{default:u(()=>[e(s,{label:""},{default:u(()=>[fe]),_:1})]),_:1})]),_:1})):b("",!0),o(l).flow_detail.type==3?(_(),A("p",Be,[(_(!0),A(N,null,q(o(l).flow_detail.step,(t,c)=>(_(),y(B,null,{default:u(()=>[e(p,{span:12},{default:u(()=>[e(s,{label:"\u5BA1\u6279\u6D41\u7A0B",prop:"copy_uids"},{default:u(()=>[e(r,{modelValue:t.type,"onUpdate:modelValue":m=>t.type=m,clearable:"",placeholder:"\u8BF7\u8F93\u5165\u6D41\u7A0B\u540D\u79F0"},null,8,["modelValue","onUpdate:modelValue"])]),_:2},1024)]),_:2},1024),e(p,{span:12},{default:u(()=>[e(s,{label:"\u6307\u5B9A\u4EBA\u5458"},{default:u(()=>[e(r,{modelValue:t.user[0].name,"onUpdate:modelValue":m=>t.user[0].name=m,onClick:m=>k(c),clearable:"",placeholder:"\u6307\u5B9A\u4EBA\u5458"},null,8,["modelValue","onUpdate:modelValue","onClick"])]),_:2},1024)]),_:2},1024)]),_:2},1024))),256)),e(p,{span:24},{default:u(()=>[e(s,{prop:"field126"},{default:u(()=>[e(g,{type:"primary",onClick:a[6]||(a[6]=t=>o(l).flow_detail.step.push({type:"",user:[{id:"",name:""}]}))},{default:u(()=>[E("\u5176\u4ED6\u8054\u7CFB\u4EBA")]),_:1})]),_:1})]),_:1})])):b("",!0),e(s,{label:"\u6284\u9001\u4EBAID",prop:"copy_unames"},{default:u(()=>[e(r,{modelValue:o(l).copy_to[0].name,"onUpdate:modelValue":a[7]||(a[7]=t=>o(l).copy_to[0].name=t),clearable:"",onClick:a[8]||(a[8]=t=>i.value=!0),placeholder:"\u8BF7\u8F93\u5165\u6284\u9001\u4EBA"},null,8,["modelValue"])]),_:1})]),_:1},8,["model","rules"])]),_:1},8,["title"]),e(z,{modelValue:o(i),"onUpdate:modelValue":a[9]||(a[9]=t=>re(i)?i.value=t:null),title:"\u9009\u62E9\u4EBA\u5458",width:"60%"},{default:u(()=>[e(se,{onCustomEvent:O})]),_:1},8,["modelValue"])])}}});export{De as _}; diff --git a/public/admin/assets/editTow.2f446f2c.js b/public/admin/assets/editTow.2f446f2c.js new file mode 100644 index 000000000..f89d6657e --- /dev/null +++ b/public/admin/assets/editTow.2f446f2c.js @@ -0,0 +1 @@ +import{B as $,C as z,a5 as K,D as Q,L as G}from"./element-plus.4328d892.js";import{u as H}from"./vue-router.9f65afb1.js";import{P as J}from"./index.5759a1a6.js";import{r as I,v as C,d as W}from"./index.37f7aea6.js";import X from"./list_two.0f9732b7.js";import{d as w,s as Y,r as f,$ as g,o as s,c as Z,U as a,L as o,K as r,Q as p,u as c,R as i,k as ee}from"./@vue.51d7f2d8.js";function le(m){return I.post({url:"/task_scheduling_plan.task_scheduling_plan/add",params:m})}function te(m){return I.post({url:"/task_scheduling_plan.task_scheduling_plan/edit",params:m})}function _e(m){return I.get({url:"/task_scheduling_plan.task_scheduling_plan/lists",params:m})}const ue={class:"edit-popup"},ae=w({name:"taskEidt"}),oe=w({...ae,props:{task:{type:Object,defualt:()=>{}},company_id:{type:String,default:""}},emits:["success","close"],setup(m,{expose:A,emit:v}){const U=m,D=H(),B=Y(),_=f("add");f({});const b=f(!1),k=f("\u521B\u5EFA\u65E5\u7A0B\u5B89\u6392"),x=n=>{e.start_time=C(n[0]).split(" ")[0],e.end_time=C(n[1]).split(" ")[0]},e=g({id:"",create_user_id:"",status:"",template_id:"",scheduling_id:"",template_name:"",start_time:"",end_time:"",datetime:"",content:"",templateInfo:{}}),T=g({datetime:{required:!0,message:"\u8BF7\u9009\u62E9\u65F6\u95F4\u8303\u56F4",trigger:"blur"},template_id:{required:!0,message:"\u8BF7\u9009\u62E9\u4EFB\u52A1\u5B89\u6392",trigger:"change"}}),R=g([31,32,33,34,35,45,48,49]),h=n=>!R.includes(n);function S(n){b.value=!1,e.template_id=n.id,e.template_name=n.title}const E=f(null),V=f(!1),j=async(n=null)=>{var l;try{E.value.clearValidate&&((l=E.value)==null||l.clearValidate())}catch(u){console.log(u)}_.value=="show"?(k.value="\u67E5\u770B\u65E5\u7A0B\u5B89\u6392",V.value=!0,Object.keys(e).forEach(u=>{n[u]!=null&&n[u]!=null&&(e[u]=n[u])}),e.datetime=[e.start_time.split(" ")[0],e.end_time.split(" ")[0]]):(V.value=!1,Object.keys(e).forEach(u=>{e[u]=""}))},q=()=>{var n;if(_.value=="show")return(n=B.value)==null?void 0:n.close();E.value.validate(async l=>{var u;if(l){const d={...e};D.query.id&&(d.scheduling_id=D.query.id.toString()),d.start_time=d.start_time.split(" ")[0],d.end_time=d.end_time.split(" ")[0],_.value=="edit"?await te(d):await le(d),(u=B.value)==null||u.close(),v("success")}})},O=(n="add")=>{var l;_.value=n,(l=B.value)==null||l.open()},P=()=>{v("close")};return A({open:O,updatedForm:j}),(n,l)=>{const u=$,d=z,L=K,M=Q,N=G;return s(),Z("div",ue,[a(J,{ref_key:"popupRef",ref:B,title:c(k),async:!0,width:"800px",onConfirm:q,onClose:P,clickModalClose:c(_)=="show",button:c(_)!="show"},{default:o(()=>[a(M,{ref_key:"formRef",ref:E,rules:T,class:"formdata",model:e,"label-width":"120px"},{default:o(()=>[e.id?(s(),r(d,{key:0,label:"\u4EFB\u52A1ID",prop:"id"},{default:o(()=>[a(u,{disabled:!0,modelValue:e.id,"onUpdate:modelValue":l[0]||(l[0]=t=>e.id=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u4EFB\u52A1ID"},null,8,["modelValue"])]),_:1})):p("",!0),a(d,{label:"\u4EFB\u52A1\u65E5\u671F",prop:"datetime"},{default:o(()=>[a(L,{disabled:c(V),modelValue:e.datetime,"onUpdate:modelValue":l[1]||(l[1]=t=>e.datetime=t),name:"datetime",type:"daterange","range-separator":"\u81F3","start-placeholder":"\u5F00\u59CB\u65F6\u95F4","end-placeholder":"\u7ED3\u675F\u65F6\u95F4",onChange:x},null,8,["disabled","modelValue"])]),_:1}),a(d,{label:"\u4EFB\u52A1\u5B89\u6392",prop:"template_id"},{default:o(()=>[a(u,{disabled:c(V),modelValue:e.template_name,"onUpdate:modelValue":l[2]||(l[2]=t=>e.template_name=t),onClick:l[3]||(l[3]=t=>b.value=!0),name:"template_id",clearable:"",placeholder:"\u8BF7\u8F93\u5165\u4EFB\u52A1\u5B89\u6392"},null,8,["disabled","modelValue"])]),_:1}),e.template_name?(s(),r(d,{key:1,label:"\u4EFB\u52A1\u63CF\u8FF0"},{default:o(()=>[a(u,{disabled:"",modelValue:e.templateInfo.content,"onUpdate:modelValue":l[4]||(l[4]=t=>e.templateInfo.content=t),placeholder:"\u6CA1\u6709\u4EFB\u52A1\u63CF\u8FF0"},null,8,["modelValue"])]),_:1})):p("",!0),a(d,{label:"\u4E00\u9636\u6BB5\u5929\u6570"},{default:o(()=>[a(u,{disabled:"",modelValue:e.templateInfo.stage_day_one,"onUpdate:modelValue":l[5]||(l[5]=t=>e.templateInfo.stage_day_one=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u5929\u6570",type:"number"},{append:o(()=>[i("\u5929")]),_:1},8,["modelValue"])]),_:1}),a(d,{label:"\u4E00\u9636\u6BB5\u91D1\u989D"},{default:o(()=>[a(u,{disabled:"",modelValue:e.templateInfo.money,"onUpdate:modelValue":l[6]||(l[6]=t=>e.templateInfo.money=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u91D1\u989D",type:"number"},{append:o(()=>[i("\u5143")]),_:1},8,["modelValue"])]),_:1}),a(d,{label:"\u4E8C\u9636\u6BB5\u5929\u6570"},{default:o(()=>[a(u,{disabled:"",modelValue:e.templateInfo.stage_day_two,"onUpdate:modelValue":l[7]||(l[7]=t=>e.templateInfo.stage_day_two=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u5929\u6570",type:"number"},{append:o(()=>[i("\u5929")]),_:1},8,["modelValue"])]),_:1}),a(d,{label:"\u4E8C\u9636\u6BB5\u91D1\u989D"},{default:o(()=>[a(u,{disabled:"",modelValue:e.templateInfo.money_two,"onUpdate:modelValue":l[8]||(l[8]=t=>e.templateInfo.money_two=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u91D1\u989D",type:"number"},{append:o(()=>[i("\u5143")]),_:1},8,["modelValue"])]),_:1}),h(+e.templateInfo.type)?(s(),r(d,{key:2,label:"\u4E09\u9636\u6BB5\u5929\u6570"},{default:o(()=>[a(u,{disabled:"",modelValue:e.templateInfo.stage_day_three,"onUpdate:modelValue":l[9]||(l[9]=t=>e.templateInfo.stage_day_three=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u5929\u6570",type:"number"},{append:o(()=>[i("\u5929")]),_:1},8,["modelValue"])]),_:1})):p("",!0),h(+e.templateInfo.type)?(s(),r(d,{key:3,label:"\u4E09\u9636\u6BB5\u91D1\u989D"},{default:o(()=>[a(u,{disabled:"",modelValue:e.templateInfo.new_money_three,"onUpdate:modelValue":l[10]||(l[10]=t=>e.templateInfo.new_money_three=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u91D1\u989D",type:"number"},{append:o(()=>[i("\u5143")]),_:1},8,["modelValue"])]),_:1})):p("",!0),+e.templateInfo.types==2?(s(),r(d,{key:4,label:"\u957F\u671F\u91D1\u989D"},{default:o(()=>[a(u,{disabled:"",modelValue:e.templateInfo.money_three,"onUpdate:modelValue":l[11]||(l[11]=t=>e.templateInfo.money_three=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u91D1\u989D",type:"number"},{append:o(()=>[i("\u5143")]),_:1},8,["modelValue"])]),_:1})):p("",!0),e.templateInfo.type==32?(s(),r(d,{key:5,label:"\u4E2D\u8F6C\u70B9"},{default:o(()=>{var t,F,y;return[a(u,{disabled:"",placeholder:"\u8BF7\u9009\u62E9\u4E2D\u8F6C\u70B9",value:(y=(F=(t=e.templateInfo)==null?void 0:t.extend)==null?void 0:F.transfer)==null?void 0:y.address},null,8,["value"])]}),_:1})):p("",!0),e.templateInfo.type==32?(s(),r(d,{key:6,label:"\u7EC8\u70B9"},{default:o(()=>{var t,F,y;return[a(u,{disabled:"",placeholder:"\u8BF7\u9009\u62E9\u7EC8\u70B9",value:(y=(F=(t=e.templateInfo)==null?void 0:t.extend)==null?void 0:F.terminus)==null?void 0:y.address},null,8,["value"])]}),_:1})):p("",!0),e.templateInfo.type==35?(s(),r(d,{key:7,label:"\u5145\u503C\u91D1\u989D(\u5143)",prop:"recharge"},{default:o(()=>[a(u,{disabled:"",placeholder:"\u8BF7\u8F93\u5165\u5145\u503C\u91D1\u989D(\u5143)",modelValue:e.templateInfo.recharge,"onUpdate:modelValue":l[12]||(l[12]=t=>e.templateInfo.recharge=t),type:"number"},null,8,["modelValue"])]),_:1})):p("",!0)]),_:1},8,["rules","model"])]),_:1},8,["title","clickModalClose","button"]),a(N,{modelValue:c(b),"onUpdate:modelValue":l[13]||(l[13]=t=>ee(b)?b.value=t:null),title:"\u9009\u62E9\u4EFB\u52A1\u5B89\u6392",width:"60%"},{default:o(()=>[a(X,{onCustomEvent:S,company_id:U.company_id},null,8,["company_id"])]),_:1},8,["modelValue"])])}}});const de=W(oe,[["__scopeId","data-v-cb07b410"]]),fe=Object.freeze(Object.defineProperty({__proto__:null,default:de},Symbol.toStringTag,{value:"Module"}));export{de as E,_e as a,fe as e}; diff --git a/public/admin/assets/editTow.5182e788.js b/public/admin/assets/editTow.5182e788.js new file mode 100644 index 000000000..fd0813609 --- /dev/null +++ b/public/admin/assets/editTow.5182e788.js @@ -0,0 +1 @@ +import{B as $,C as z,a5 as K,D as Q,L as G}from"./element-plus.4328d892.js";import{u as H}from"./vue-router.9f65afb1.js";import{P as J}from"./index.b940d6e3.js";import{r as I,v as C,d as W}from"./index.ed71ac09.js";import X from"./list_two.e2f85723.js";import{d as w,s as Y,r as f,$ as g,o as s,c as Z,U as a,L as o,K as r,Q as p,u as c,R as i,k as ee}from"./@vue.51d7f2d8.js";function le(m){return I.post({url:"/task_scheduling_plan.task_scheduling_plan/add",params:m})}function te(m){return I.post({url:"/task_scheduling_plan.task_scheduling_plan/edit",params:m})}function _e(m){return I.get({url:"/task_scheduling_plan.task_scheduling_plan/lists",params:m})}const ue={class:"edit-popup"},ae=w({name:"taskEidt"}),oe=w({...ae,props:{task:{type:Object,defualt:()=>{}},company_id:{type:String,default:""}},emits:["success","close"],setup(m,{expose:A,emit:v}){const U=m,D=H(),B=Y(),_=f("add");f({});const b=f(!1),k=f("\u521B\u5EFA\u65E5\u7A0B\u5B89\u6392"),x=n=>{e.start_time=C(n[0]).split(" ")[0],e.end_time=C(n[1]).split(" ")[0]},e=g({id:"",create_user_id:"",status:"",template_id:"",scheduling_id:"",template_name:"",start_time:"",end_time:"",datetime:"",content:"",templateInfo:{}}),T=g({datetime:{required:!0,message:"\u8BF7\u9009\u62E9\u65F6\u95F4\u8303\u56F4",trigger:"blur"},template_id:{required:!0,message:"\u8BF7\u9009\u62E9\u4EFB\u52A1\u5B89\u6392",trigger:"change"}}),R=g([31,32,33,34,35,45,48,49]),h=n=>!R.includes(n);function S(n){b.value=!1,e.template_id=n.id,e.template_name=n.title}const E=f(null),V=f(!1),j=async(n=null)=>{var l;try{E.value.clearValidate&&((l=E.value)==null||l.clearValidate())}catch(u){console.log(u)}_.value=="show"?(k.value="\u67E5\u770B\u65E5\u7A0B\u5B89\u6392",V.value=!0,Object.keys(e).forEach(u=>{n[u]!=null&&n[u]!=null&&(e[u]=n[u])}),e.datetime=[e.start_time.split(" ")[0],e.end_time.split(" ")[0]]):(V.value=!1,Object.keys(e).forEach(u=>{e[u]=""}))},q=()=>{var n;if(_.value=="show")return(n=B.value)==null?void 0:n.close();E.value.validate(async l=>{var u;if(l){const d={...e};D.query.id&&(d.scheduling_id=D.query.id.toString()),d.start_time=d.start_time.split(" ")[0],d.end_time=d.end_time.split(" ")[0],_.value=="edit"?await te(d):await le(d),(u=B.value)==null||u.close(),v("success")}})},O=(n="add")=>{var l;_.value=n,(l=B.value)==null||l.open()},P=()=>{v("close")};return A({open:O,updatedForm:j}),(n,l)=>{const u=$,d=z,L=K,M=Q,N=G;return s(),Z("div",ue,[a(J,{ref_key:"popupRef",ref:B,title:c(k),async:!0,width:"800px",onConfirm:q,onClose:P,clickModalClose:c(_)=="show",button:c(_)!="show"},{default:o(()=>[a(M,{ref_key:"formRef",ref:E,rules:T,class:"formdata",model:e,"label-width":"120px"},{default:o(()=>[e.id?(s(),r(d,{key:0,label:"\u4EFB\u52A1ID",prop:"id"},{default:o(()=>[a(u,{disabled:!0,modelValue:e.id,"onUpdate:modelValue":l[0]||(l[0]=t=>e.id=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u4EFB\u52A1ID"},null,8,["modelValue"])]),_:1})):p("",!0),a(d,{label:"\u4EFB\u52A1\u65E5\u671F",prop:"datetime"},{default:o(()=>[a(L,{disabled:c(V),modelValue:e.datetime,"onUpdate:modelValue":l[1]||(l[1]=t=>e.datetime=t),name:"datetime",type:"daterange","range-separator":"\u81F3","start-placeholder":"\u5F00\u59CB\u65F6\u95F4","end-placeholder":"\u7ED3\u675F\u65F6\u95F4",onChange:x},null,8,["disabled","modelValue"])]),_:1}),a(d,{label:"\u4EFB\u52A1\u5B89\u6392",prop:"template_id"},{default:o(()=>[a(u,{disabled:c(V),modelValue:e.template_name,"onUpdate:modelValue":l[2]||(l[2]=t=>e.template_name=t),onClick:l[3]||(l[3]=t=>b.value=!0),name:"template_id",clearable:"",placeholder:"\u8BF7\u8F93\u5165\u4EFB\u52A1\u5B89\u6392"},null,8,["disabled","modelValue"])]),_:1}),e.template_name?(s(),r(d,{key:1,label:"\u4EFB\u52A1\u63CF\u8FF0"},{default:o(()=>[a(u,{disabled:"",modelValue:e.templateInfo.content,"onUpdate:modelValue":l[4]||(l[4]=t=>e.templateInfo.content=t),placeholder:"\u6CA1\u6709\u4EFB\u52A1\u63CF\u8FF0"},null,8,["modelValue"])]),_:1})):p("",!0),a(d,{label:"\u4E00\u9636\u6BB5\u5929\u6570"},{default:o(()=>[a(u,{disabled:"",modelValue:e.templateInfo.stage_day_one,"onUpdate:modelValue":l[5]||(l[5]=t=>e.templateInfo.stage_day_one=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u5929\u6570",type:"number"},{append:o(()=>[i("\u5929")]),_:1},8,["modelValue"])]),_:1}),a(d,{label:"\u4E00\u9636\u6BB5\u91D1\u989D"},{default:o(()=>[a(u,{disabled:"",modelValue:e.templateInfo.money,"onUpdate:modelValue":l[6]||(l[6]=t=>e.templateInfo.money=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u91D1\u989D",type:"number"},{append:o(()=>[i("\u5143")]),_:1},8,["modelValue"])]),_:1}),a(d,{label:"\u4E8C\u9636\u6BB5\u5929\u6570"},{default:o(()=>[a(u,{disabled:"",modelValue:e.templateInfo.stage_day_two,"onUpdate:modelValue":l[7]||(l[7]=t=>e.templateInfo.stage_day_two=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u5929\u6570",type:"number"},{append:o(()=>[i("\u5929")]),_:1},8,["modelValue"])]),_:1}),a(d,{label:"\u4E8C\u9636\u6BB5\u91D1\u989D"},{default:o(()=>[a(u,{disabled:"",modelValue:e.templateInfo.money_two,"onUpdate:modelValue":l[8]||(l[8]=t=>e.templateInfo.money_two=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u91D1\u989D",type:"number"},{append:o(()=>[i("\u5143")]),_:1},8,["modelValue"])]),_:1}),h(+e.templateInfo.type)?(s(),r(d,{key:2,label:"\u4E09\u9636\u6BB5\u5929\u6570"},{default:o(()=>[a(u,{disabled:"",modelValue:e.templateInfo.stage_day_three,"onUpdate:modelValue":l[9]||(l[9]=t=>e.templateInfo.stage_day_three=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u5929\u6570",type:"number"},{append:o(()=>[i("\u5929")]),_:1},8,["modelValue"])]),_:1})):p("",!0),h(+e.templateInfo.type)?(s(),r(d,{key:3,label:"\u4E09\u9636\u6BB5\u91D1\u989D"},{default:o(()=>[a(u,{disabled:"",modelValue:e.templateInfo.new_money_three,"onUpdate:modelValue":l[10]||(l[10]=t=>e.templateInfo.new_money_three=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u91D1\u989D",type:"number"},{append:o(()=>[i("\u5143")]),_:1},8,["modelValue"])]),_:1})):p("",!0),+e.templateInfo.types==2?(s(),r(d,{key:4,label:"\u957F\u671F\u91D1\u989D"},{default:o(()=>[a(u,{disabled:"",modelValue:e.templateInfo.money_three,"onUpdate:modelValue":l[11]||(l[11]=t=>e.templateInfo.money_three=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u91D1\u989D",type:"number"},{append:o(()=>[i("\u5143")]),_:1},8,["modelValue"])]),_:1})):p("",!0),e.templateInfo.type==32?(s(),r(d,{key:5,label:"\u4E2D\u8F6C\u70B9"},{default:o(()=>{var t,F,y;return[a(u,{disabled:"",placeholder:"\u8BF7\u9009\u62E9\u4E2D\u8F6C\u70B9",value:(y=(F=(t=e.templateInfo)==null?void 0:t.extend)==null?void 0:F.transfer)==null?void 0:y.address},null,8,["value"])]}),_:1})):p("",!0),e.templateInfo.type==32?(s(),r(d,{key:6,label:"\u7EC8\u70B9"},{default:o(()=>{var t,F,y;return[a(u,{disabled:"",placeholder:"\u8BF7\u9009\u62E9\u7EC8\u70B9",value:(y=(F=(t=e.templateInfo)==null?void 0:t.extend)==null?void 0:F.terminus)==null?void 0:y.address},null,8,["value"])]}),_:1})):p("",!0),e.templateInfo.type==35?(s(),r(d,{key:7,label:"\u5145\u503C\u91D1\u989D(\u5143)",prop:"recharge"},{default:o(()=>[a(u,{disabled:"",placeholder:"\u8BF7\u8F93\u5165\u5145\u503C\u91D1\u989D(\u5143)",modelValue:e.templateInfo.recharge,"onUpdate:modelValue":l[12]||(l[12]=t=>e.templateInfo.recharge=t),type:"number"},null,8,["modelValue"])]),_:1})):p("",!0)]),_:1},8,["rules","model"])]),_:1},8,["title","clickModalClose","button"]),a(N,{modelValue:c(b),"onUpdate:modelValue":l[13]||(l[13]=t=>ee(b)?b.value=t:null),title:"\u9009\u62E9\u4EFB\u52A1\u5B89\u6392",width:"60%"},{default:o(()=>[a(X,{onCustomEvent:S,company_id:U.company_id},null,8,["company_id"])]),_:1},8,["modelValue"])])}}});const de=W(oe,[["__scopeId","data-v-cb07b410"]]),fe=Object.freeze(Object.defineProperty({__proto__:null,default:de},Symbol.toStringTag,{value:"Module"}));export{de as E,_e as a,fe as e}; diff --git a/public/admin/assets/editTow.93ca4f73.js b/public/admin/assets/editTow.93ca4f73.js new file mode 100644 index 000000000..c486f260c --- /dev/null +++ b/public/admin/assets/editTow.93ca4f73.js @@ -0,0 +1 @@ +import{B as $,C as z,a5 as K,D as Q,L as G}from"./element-plus.4328d892.js";import{u as H}from"./vue-router.9f65afb1.js";import{P as J}from"./index.fa872673.js";import{r as I,v as C,d as W}from"./index.aa9bb752.js";import X from"./list_two.c6a9842f.js";import{d as w,s as Y,r as f,$ as g,o as s,c as Z,U as a,L as o,K as r,Q as p,u as c,R as i,k as ee}from"./@vue.51d7f2d8.js";function le(m){return I.post({url:"/task_scheduling_plan.task_scheduling_plan/add",params:m})}function te(m){return I.post({url:"/task_scheduling_plan.task_scheduling_plan/edit",params:m})}function _e(m){return I.get({url:"/task_scheduling_plan.task_scheduling_plan/lists",params:m})}const ue={class:"edit-popup"},ae=w({name:"taskEidt"}),oe=w({...ae,props:{task:{type:Object,defualt:()=>{}},company_id:{type:String,default:""}},emits:["success","close"],setup(m,{expose:A,emit:v}){const U=m,D=H(),B=Y(),_=f("add");f({});const b=f(!1),k=f("\u521B\u5EFA\u65E5\u7A0B\u5B89\u6392"),x=n=>{e.start_time=C(n[0]).split(" ")[0],e.end_time=C(n[1]).split(" ")[0]},e=g({id:"",create_user_id:"",status:"",template_id:"",scheduling_id:"",template_name:"",start_time:"",end_time:"",datetime:"",content:"",templateInfo:{}}),T=g({datetime:{required:!0,message:"\u8BF7\u9009\u62E9\u65F6\u95F4\u8303\u56F4",trigger:"blur"},template_id:{required:!0,message:"\u8BF7\u9009\u62E9\u4EFB\u52A1\u5B89\u6392",trigger:"change"}}),R=g([31,32,33,34,35,45,48,49]),h=n=>!R.includes(n);function S(n){b.value=!1,e.template_id=n.id,e.template_name=n.title}const E=f(null),V=f(!1),j=async(n=null)=>{var l;try{E.value.clearValidate&&((l=E.value)==null||l.clearValidate())}catch(u){console.log(u)}_.value=="show"?(k.value="\u67E5\u770B\u65E5\u7A0B\u5B89\u6392",V.value=!0,Object.keys(e).forEach(u=>{n[u]!=null&&n[u]!=null&&(e[u]=n[u])}),e.datetime=[e.start_time.split(" ")[0],e.end_time.split(" ")[0]]):(V.value=!1,Object.keys(e).forEach(u=>{e[u]=""}))},q=()=>{var n;if(_.value=="show")return(n=B.value)==null?void 0:n.close();E.value.validate(async l=>{var u;if(l){const d={...e};D.query.id&&(d.scheduling_id=D.query.id.toString()),d.start_time=d.start_time.split(" ")[0],d.end_time=d.end_time.split(" ")[0],_.value=="edit"?await te(d):await le(d),(u=B.value)==null||u.close(),v("success")}})},O=(n="add")=>{var l;_.value=n,(l=B.value)==null||l.open()},P=()=>{v("close")};return A({open:O,updatedForm:j}),(n,l)=>{const u=$,d=z,L=K,M=Q,N=G;return s(),Z("div",ue,[a(J,{ref_key:"popupRef",ref:B,title:c(k),async:!0,width:"800px",onConfirm:q,onClose:P,clickModalClose:c(_)=="show",button:c(_)!="show"},{default:o(()=>[a(M,{ref_key:"formRef",ref:E,rules:T,class:"formdata",model:e,"label-width":"120px"},{default:o(()=>[e.id?(s(),r(d,{key:0,label:"\u4EFB\u52A1ID",prop:"id"},{default:o(()=>[a(u,{disabled:!0,modelValue:e.id,"onUpdate:modelValue":l[0]||(l[0]=t=>e.id=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u4EFB\u52A1ID"},null,8,["modelValue"])]),_:1})):p("",!0),a(d,{label:"\u4EFB\u52A1\u65E5\u671F",prop:"datetime"},{default:o(()=>[a(L,{disabled:c(V),modelValue:e.datetime,"onUpdate:modelValue":l[1]||(l[1]=t=>e.datetime=t),name:"datetime",type:"daterange","range-separator":"\u81F3","start-placeholder":"\u5F00\u59CB\u65F6\u95F4","end-placeholder":"\u7ED3\u675F\u65F6\u95F4",onChange:x},null,8,["disabled","modelValue"])]),_:1}),a(d,{label:"\u4EFB\u52A1\u5B89\u6392",prop:"template_id"},{default:o(()=>[a(u,{disabled:c(V),modelValue:e.template_name,"onUpdate:modelValue":l[2]||(l[2]=t=>e.template_name=t),onClick:l[3]||(l[3]=t=>b.value=!0),name:"template_id",clearable:"",placeholder:"\u8BF7\u8F93\u5165\u4EFB\u52A1\u5B89\u6392"},null,8,["disabled","modelValue"])]),_:1}),e.template_name?(s(),r(d,{key:1,label:"\u4EFB\u52A1\u63CF\u8FF0"},{default:o(()=>[a(u,{disabled:"",modelValue:e.templateInfo.content,"onUpdate:modelValue":l[4]||(l[4]=t=>e.templateInfo.content=t),placeholder:"\u6CA1\u6709\u4EFB\u52A1\u63CF\u8FF0"},null,8,["modelValue"])]),_:1})):p("",!0),a(d,{label:"\u4E00\u9636\u6BB5\u5929\u6570"},{default:o(()=>[a(u,{disabled:"",modelValue:e.templateInfo.stage_day_one,"onUpdate:modelValue":l[5]||(l[5]=t=>e.templateInfo.stage_day_one=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u5929\u6570",type:"number"},{append:o(()=>[i("\u5929")]),_:1},8,["modelValue"])]),_:1}),a(d,{label:"\u4E00\u9636\u6BB5\u91D1\u989D"},{default:o(()=>[a(u,{disabled:"",modelValue:e.templateInfo.money,"onUpdate:modelValue":l[6]||(l[6]=t=>e.templateInfo.money=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u91D1\u989D",type:"number"},{append:o(()=>[i("\u5143")]),_:1},8,["modelValue"])]),_:1}),a(d,{label:"\u4E8C\u9636\u6BB5\u5929\u6570"},{default:o(()=>[a(u,{disabled:"",modelValue:e.templateInfo.stage_day_two,"onUpdate:modelValue":l[7]||(l[7]=t=>e.templateInfo.stage_day_two=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u5929\u6570",type:"number"},{append:o(()=>[i("\u5929")]),_:1},8,["modelValue"])]),_:1}),a(d,{label:"\u4E8C\u9636\u6BB5\u91D1\u989D"},{default:o(()=>[a(u,{disabled:"",modelValue:e.templateInfo.money_two,"onUpdate:modelValue":l[8]||(l[8]=t=>e.templateInfo.money_two=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u91D1\u989D",type:"number"},{append:o(()=>[i("\u5143")]),_:1},8,["modelValue"])]),_:1}),h(+e.templateInfo.type)?(s(),r(d,{key:2,label:"\u4E09\u9636\u6BB5\u5929\u6570"},{default:o(()=>[a(u,{disabled:"",modelValue:e.templateInfo.stage_day_three,"onUpdate:modelValue":l[9]||(l[9]=t=>e.templateInfo.stage_day_three=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u5929\u6570",type:"number"},{append:o(()=>[i("\u5929")]),_:1},8,["modelValue"])]),_:1})):p("",!0),h(+e.templateInfo.type)?(s(),r(d,{key:3,label:"\u4E09\u9636\u6BB5\u91D1\u989D"},{default:o(()=>[a(u,{disabled:"",modelValue:e.templateInfo.new_money_three,"onUpdate:modelValue":l[10]||(l[10]=t=>e.templateInfo.new_money_three=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u91D1\u989D",type:"number"},{append:o(()=>[i("\u5143")]),_:1},8,["modelValue"])]),_:1})):p("",!0),+e.templateInfo.types==2?(s(),r(d,{key:4,label:"\u957F\u671F\u91D1\u989D"},{default:o(()=>[a(u,{disabled:"",modelValue:e.templateInfo.money_three,"onUpdate:modelValue":l[11]||(l[11]=t=>e.templateInfo.money_three=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u91D1\u989D",type:"number"},{append:o(()=>[i("\u5143")]),_:1},8,["modelValue"])]),_:1})):p("",!0),e.templateInfo.type==32?(s(),r(d,{key:5,label:"\u4E2D\u8F6C\u70B9"},{default:o(()=>{var t,F,y;return[a(u,{disabled:"",placeholder:"\u8BF7\u9009\u62E9\u4E2D\u8F6C\u70B9",value:(y=(F=(t=e.templateInfo)==null?void 0:t.extend)==null?void 0:F.transfer)==null?void 0:y.address},null,8,["value"])]}),_:1})):p("",!0),e.templateInfo.type==32?(s(),r(d,{key:6,label:"\u7EC8\u70B9"},{default:o(()=>{var t,F,y;return[a(u,{disabled:"",placeholder:"\u8BF7\u9009\u62E9\u7EC8\u70B9",value:(y=(F=(t=e.templateInfo)==null?void 0:t.extend)==null?void 0:F.terminus)==null?void 0:y.address},null,8,["value"])]}),_:1})):p("",!0),e.templateInfo.type==35?(s(),r(d,{key:7,label:"\u5145\u503C\u91D1\u989D(\u5143)",prop:"recharge"},{default:o(()=>[a(u,{disabled:"",placeholder:"\u8BF7\u8F93\u5165\u5145\u503C\u91D1\u989D(\u5143)",modelValue:e.templateInfo.recharge,"onUpdate:modelValue":l[12]||(l[12]=t=>e.templateInfo.recharge=t),type:"number"},null,8,["modelValue"])]),_:1})):p("",!0)]),_:1},8,["rules","model"])]),_:1},8,["title","clickModalClose","button"]),a(N,{modelValue:c(b),"onUpdate:modelValue":l[13]||(l[13]=t=>ee(b)?b.value=t:null),title:"\u9009\u62E9\u4EFB\u52A1\u5B89\u6392",width:"60%"},{default:o(()=>[a(X,{onCustomEvent:S,company_id:U.company_id},null,8,["company_id"])]),_:1},8,["modelValue"])])}}});const de=W(oe,[["__scopeId","data-v-cb07b410"]]),fe=Object.freeze(Object.defineProperty({__proto__:null,default:de},Symbol.toStringTag,{value:"Module"}));export{de as E,_e as a,fe as e}; diff --git a/public/admin/assets/edit_admin.27216728.js b/public/admin/assets/edit_admin.27216728.js new file mode 100644 index 000000000..fa61678de --- /dev/null +++ b/public/admin/assets/edit_admin.27216728.js @@ -0,0 +1 @@ +import"./edit_admin.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.1f2345fb.js";import{_ as T}from"./edit_admin.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.1f2345fb.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./vue-router.9f65afb1.js";import"./index.b940d6e3.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.ed71ac09.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./map.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.c34becfa.js";import"./dialog_index_personnel.vue_vue_type_script_setup_true_name_companyLists_lang.e9155591.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./usePaging.2ad8e1e6.js";import"./role.1c72c4c7.js";import"./useDictOptions.8d37e54b.js";export{T as default}; diff --git a/public/admin/assets/edit_admin.6c0611c0.js b/public/admin/assets/edit_admin.6c0611c0.js new file mode 100644 index 000000000..e8ef02deb --- /dev/null +++ b/public/admin/assets/edit_admin.6c0611c0.js @@ -0,0 +1 @@ +import"./edit_admin.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.ef132330.js";import{_ as T}from"./edit_admin.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.ef132330.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./vue-router.9f65afb1.js";import"./index.5759a1a6.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.37f7aea6.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./map.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.0177b6b6.js";import"./dialog_index_personnel.vue_vue_type_script_setup_true_name_companyLists_lang.7fc490f9.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./usePaging.2ad8e1e6.js";import"./role.8d2a6d5e.js";import"./useDictOptions.a45fc8ac.js";export{T as default}; diff --git a/public/admin/assets/edit_admin.d5f35e3e.js b/public/admin/assets/edit_admin.d5f35e3e.js new file mode 100644 index 000000000..733e0601b --- /dev/null +++ b/public/admin/assets/edit_admin.d5f35e3e.js @@ -0,0 +1 @@ +import"./edit_admin.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.46594d68.js";import{_ as T}from"./edit_admin.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.46594d68.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./vue-router.9f65afb1.js";import"./index.fa872673.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.aa9bb752.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./map.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.9d7f531d.js";import"./dialog_index_personnel.vue_vue_type_script_setup_true_name_companyLists_lang.ddb96626.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./usePaging.2ad8e1e6.js";import"./role.41d5883e.js";import"./useDictOptions.a61fcf9f.js";export{T as default}; diff --git a/public/admin/assets/edit_admin.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.1f2345fb.js b/public/admin/assets/edit_admin.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.1f2345fb.js new file mode 100644 index 000000000..24f3a5369 --- /dev/null +++ b/public/admin/assets/edit_admin.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.1f2345fb.js @@ -0,0 +1 @@ +import{M as W,N as X,C as Y,B as Z,G as ee,H as ue,D as le,L as ae}from"./element-plus.4328d892.js";import{u as te}from"./vue-router.9f65afb1.js";import{P as oe}from"./index.b940d6e3.js";import{b as R,c as ne,d as se,e as de}from"./map.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.c34becfa.js";import"./lodash.08438971.js";import"./index.ed71ac09.js";import{_ as re}from"./dialog_index_personnel.vue_vue_type_script_setup_true_name_companyLists_lang.e9155591.js";import{d as U,s as E,r as y,e as pe,$ as V,o as r,c as F,U as o,L as t,u as l,T as D,a7 as v,K as _,a as me,Q as B,R as p,k as _e}from"./@vue.51d7f2d8.js";const ie={class:"edit-popup"},ye={key:0,style:{color:"#e6a23c","font-size":"12px"}},Be=U({name:"taskTemplateEdit"}),ve=U({...Be,props:{dictData:{type:Object,default:()=>({})}},emits:["success","close"],setup(fe,{expose:q,emit:A}){const w=E(),k=E(),i=y("add"),c=y([]),C=te(),f=y("town_task_type"),L=y([{key:1,value:"\u8D1F\u8D23\u4EBA"},{key:2,value:"\u5E02\u573A\u90E8\u957F"},{key:3,value:"\u670D\u52A1\u90E8\u957F"}]),N=pe(()=>i.value=="edit"?"\u7F16\u8F91\u4EFB\u52A1\u5B89\u6392":"\u65B0\u589E\u4EFB\u52A1\u5B89\u6392"),P=V([45,48,49]),h=n=>!P.includes(n),u=V({id:"",task_scheduling:0,company_id:"",title:"",admin_id:"",type:"",type_value:"",status:"",content:"",stage_day_one:0,money:0,stage_day_two:0,money_two:0,stage_day_three:0,new_money_three:0,money_three:0,types:"",task_admin:"",task_admin_name:"",recharge:"",extend:{task_role:""}});C.query.id&&(u.task_scheduling=C.query.id),R({type_value:f.value}).then(n=>{c.value=n.lists});const S=V({title:[{required:!0,message:"\u8BF7\u8F93\u5165\u4EFB\u52A1\u540D\u79F0",trigger:["blur"]}],"extend.task_role":[{required:!0,message:"\u8BF7\u9009\u62E9\u4EFB\u52A1\u89D2\u8272",trigger:["blur"]}],admin_id:[{required:!0,message:"\u8BF7\u8F93\u5165\u521B\u5EFA\u4EBA",trigger:["blur"]}],type:[{required:!0,message:"\u8BF7\u9009\u62E9\u4EFB\u52A1\u7C7B\u578B",trigger:["blur"]}],status:[{required:!0,message:"\u8BF7\u9009\u62E9\u72B6\u6001",trigger:["blur"]}],types:[{required:!0,message:"\u8BF7\u9009\u62E9\u9636\u6BB5\u7C7B\u578B",trigger:["blur"]}],task_admin:[{required:!0,message:"\u8BF7\u9009\u62E9\u8D1F\u8D23\u4EBA",trigger:["blur"]}],recharge:[{required:!0,validator:(n,e,s)=>{e<=0?s(new Error("\u5145\u503C\u91D1\u989D\u4E0D\u80FD\u5C0F\u4E8E0")):s()},trigger:["blur"]}]}),T=async n=>{var e;for(const s in u)n[s]!=null&&n[s]!=null&&(u[s]=n[s]);(e=u.extend)!=null&&e.task_role&&(u.extend.task_role=+u.extend.task_role)},z=async n=>{const e=await ne({id:n.id});T(e)};y(!1),E();const G=async n=>{c.value.forEach(e=>{e.id==n&&(u.title=e.name,u.type_value=e.value)})},I=async n=>{n==1&&(f.value=""),n==2&&(f.value="town_task_type_marketing_director"),n==3&&(f.value="town_task_type"),R({type_value:f.value}).then(e=>{c.value=e.lists})},b=y(!1),O=E(),$=n=>{u.task_admin=n.id,u.task_admin_name=n.nickname,b.value=!1},j=async()=>{var e,s;await((e=w.value)==null?void 0:e.validate());const n={...u};i.value=="edit"?await se(n):await de(n),(s=k.value)==null||s.close(),A("success")},H=(n="add")=>{var e;i.value=n,(e=k.value)==null||e.open()},K=()=>{A("close")};return q({open:H,setFormData:T,getDetail:z}),(n,e)=>{const s=W,g=X,d=Y,m=Z,x=ee,M=ue,Q=le,J=ae;return r(),F("div",ie,[o(oe,{ref_key:"popupRef",ref:k,title:l(N),async:!0,width:"550px",onConfirm:j,onClose:K},{default:t(()=>[o(Q,{ref_key:"formRef",ref:w,model:l(u),"label-width":"120px",rules:l(S)},{default:t(()=>[o(d,{label:"\u4EFB\u52A1\u89D2\u8272",prop:"extend.task_role"},{default:t(()=>[o(g,{modelValue:l(u).extend.task_role,"onUpdate:modelValue":e[0]||(e[0]=a=>l(u).extend.task_role=a),clearable:"",disabled:l(i)!="add",placeholder:"\u8BF7\u9009\u62E9\u4EFB\u52A1\u89D2\u8272",onChange:I},{default:t(()=>[(r(!0),F(D,null,v(l(L),a=>(r(),_(s,{key:a.key,value:a.key,label:a.value},null,8,["value","label"]))),128))]),_:1},8,["modelValue","disabled"])]),_:1}),o(d,{label:"\u4EFB\u52A1\u7C7B\u578B",prop:"type"},{default:t(()=>[o(g,{modelValue:l(u).type,"onUpdate:modelValue":e[1]||(e[1]=a=>l(u).type=a),clearable:"",disabled:l(i)!="add",placeholder:"\u8BF7\u9009\u62E9\u4EFB\u52A1\u7C7B\u578B",onChange:G},{default:t(()=>[(r(!0),F(D,null,v(l(c),a=>(r(),_(s,{key:a.label,value:a.id,label:a.name},null,8,["value","label"]))),128))]),_:1},8,["modelValue","disabled"])]),_:1}),o(d,{label:"\u9636\u6BB5\u7C7B\u578B",prop:"types"},{default:t(()=>[me("div",null,[o(g,{modelValue:l(u).types,"onUpdate:modelValue":e[2]||(e[2]=a=>l(u).types=a),clearable:"",disabled:l(i)!="add",placeholder:"\u8BF7\u9009\u62E9\u9636\u6BB5\u7C7B\u578B"},{default:t(()=>[(r(),F(D,null,v([{label:1,name:"\u5FAA\u73AF"},{label:2,name:"\u957F\u671F"},{label:3,name:"\u5355\u6B21"}],a=>o(s,{key:a.label,value:a.label,label:a.name},null,8,["value","label"])),64))]),_:1},8,["modelValue","disabled"]),l(u).types==3?(r(),F("div",ye," \u63D0\u793A : \u5355\u6B21\u4EFB\u52A1\u4E0D\u4F1A\u6BCF\u65E5\u7ED3\u7B97,\u800C\u662F\u6309\u9636\u6BB5\u5408\u8BA1\u5929\u6570\u7ED3\u7B97 ")):B("",!0)])]),_:1}),o(d,{label:"\u4E00\u9636\u6BB5\u5929\u6570"},{default:t(()=>[o(m,{modelValue:l(u).stage_day_one,"onUpdate:modelValue":e[3]||(e[3]=a=>l(u).stage_day_one=a),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u5929\u6570",type:"number"},{append:t(()=>[p("\u5929")]),_:1},8,["modelValue"])]),_:1}),o(d,{label:"\u4E00\u9636\u6BB5\u91D1\u989D"},{default:t(()=>[o(m,{modelValue:l(u).money,"onUpdate:modelValue":e[4]||(e[4]=a=>l(u).money=a),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u91D1\u989D",type:"number"},{append:t(()=>[p("\u5143")]),_:1},8,["modelValue"])]),_:1}),l(u).type_value!="town_task_type_5"?(r(),_(d,{key:0,label:"\u4E8C\u9636\u6BB5\u5929\u6570"},{default:t(()=>[o(m,{modelValue:l(u).stage_day_two,"onUpdate:modelValue":e[5]||(e[5]=a=>l(u).stage_day_two=a),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u5929\u6570",type:"number"},{append:t(()=>[p("\u5929")]),_:1},8,["modelValue"])]),_:1})):B("",!0),l(u).type_value!="town_task_type_5"?(r(),_(d,{key:1,label:"\u4E8C\u9636\u6BB5\u91D1\u989D"},{default:t(()=>[o(m,{modelValue:l(u).money_two,"onUpdate:modelValue":e[6]||(e[6]=a=>l(u).money_two=a),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u91D1\u989D",type:"number"},{append:t(()=>[p("\u5143")]),_:1},8,["modelValue"])]),_:1})):B("",!0),h(+l(u).type)?(r(),_(d,{key:2,label:"\u4E09\u9636\u6BB5\u5929\u6570"},{default:t(()=>[o(m,{modelValue:l(u).stage_day_three,"onUpdate:modelValue":e[7]||(e[7]=a=>l(u).stage_day_three=a),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u5929\u6570",type:"number"},{append:t(()=>[p("\u5929")]),_:1},8,["modelValue"])]),_:1})):B("",!0),h(+l(u).type)?(r(),_(d,{key:3,label:"\u4E09\u9636\u6BB5\u91D1\u989D"},{default:t(()=>[o(m,{modelValue:l(u).new_money_three,"onUpdate:modelValue":e[8]||(e[8]=a=>l(u).new_money_three=a),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u91D1\u989D",type:"number"},{append:t(()=>[p("\u5143")]),_:1},8,["modelValue"])]),_:1})):B("",!0),+l(u).types==2?(r(),_(d,{key:4,label:"\u957F\u671F\u91D1\u989D"},{default:t(()=>[o(m,{modelValue:l(u).money_three,"onUpdate:modelValue":e[9]||(e[9]=a=>l(u).money_three=a),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u91D1\u989D",type:"number"},{append:t(()=>[p("\u5143")]),_:1},8,["modelValue"])]),_:1})):B("",!0),o(d,{label:"\u72B6\u6001",prop:"status"},{default:t(()=>[o(M,{modelValue:l(u).status,"onUpdate:modelValue":e[10]||(e[10]=a=>l(u).status=a)},{default:t(()=>[o(x,{label:1},{default:t(()=>[p("\u663E\u793A")]),_:1}),o(x,{label:0},{default:t(()=>[p("\u9690\u85CF")]),_:1})]),_:1},8,["modelValue"])]),_:1}),o(d,{label:"\u4EFB\u52A1\u63CF\u8FF0",prop:"content"},{default:t(()=>[o(m,{modelValue:l(u).content,"onUpdate:modelValue":e[11]||(e[11]=a=>l(u).content=a),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u4EFB\u52A1\u63CF\u8FF0",type:"textarea",autosize:""},null,8,["modelValue"])]),_:1})]),_:1},8,["model","rules"]),o(J,{modelValue:l(b),"onUpdate:modelValue":e[12]||(e[12]=a=>_e(b)?b.value=a:null),ref_key:"personnelRef",ref:O,title:"\u9009\u62E9\u8D1F\u8D23\u4EBA",width:"60%"},{default:t(()=>[o(re,{onCustomEvent:$,company_id:l(u).company_id},null,8,["company_id"])]),_:1},8,["modelValue"])]),_:1},8,["title"])])}}});export{ve as _}; diff --git a/public/admin/assets/edit_admin.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.46594d68.js b/public/admin/assets/edit_admin.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.46594d68.js new file mode 100644 index 000000000..3289b9279 --- /dev/null +++ b/public/admin/assets/edit_admin.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.46594d68.js @@ -0,0 +1 @@ +import{M as W,N as X,C as Y,B as Z,G as ee,H as ue,D as le,L as ae}from"./element-plus.4328d892.js";import{u as te}from"./vue-router.9f65afb1.js";import{P as oe}from"./index.fa872673.js";import{b as R,c as ne,d as se,e as de}from"./map.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.9d7f531d.js";import"./lodash.08438971.js";import"./index.aa9bb752.js";import{_ as re}from"./dialog_index_personnel.vue_vue_type_script_setup_true_name_companyLists_lang.ddb96626.js";import{d as U,s as E,r as y,e as pe,$ as V,o as r,c as F,U as o,L as t,u as l,T as D,a7 as v,K as _,a as me,Q as B,R as p,k as _e}from"./@vue.51d7f2d8.js";const ie={class:"edit-popup"},ye={key:0,style:{color:"#e6a23c","font-size":"12px"}},Be=U({name:"taskTemplateEdit"}),ve=U({...Be,props:{dictData:{type:Object,default:()=>({})}},emits:["success","close"],setup(fe,{expose:q,emit:A}){const w=E(),k=E(),i=y("add"),c=y([]),C=te(),f=y("town_task_type"),L=y([{key:1,value:"\u8D1F\u8D23\u4EBA"},{key:2,value:"\u5E02\u573A\u90E8\u957F"},{key:3,value:"\u670D\u52A1\u90E8\u957F"}]),N=pe(()=>i.value=="edit"?"\u7F16\u8F91\u4EFB\u52A1\u5B89\u6392":"\u65B0\u589E\u4EFB\u52A1\u5B89\u6392"),P=V([45,48,49]),h=n=>!P.includes(n),u=V({id:"",task_scheduling:0,company_id:"",title:"",admin_id:"",type:"",type_value:"",status:"",content:"",stage_day_one:0,money:0,stage_day_two:0,money_two:0,stage_day_three:0,new_money_three:0,money_three:0,types:"",task_admin:"",task_admin_name:"",recharge:"",extend:{task_role:""}});C.query.id&&(u.task_scheduling=C.query.id),R({type_value:f.value}).then(n=>{c.value=n.lists});const S=V({title:[{required:!0,message:"\u8BF7\u8F93\u5165\u4EFB\u52A1\u540D\u79F0",trigger:["blur"]}],"extend.task_role":[{required:!0,message:"\u8BF7\u9009\u62E9\u4EFB\u52A1\u89D2\u8272",trigger:["blur"]}],admin_id:[{required:!0,message:"\u8BF7\u8F93\u5165\u521B\u5EFA\u4EBA",trigger:["blur"]}],type:[{required:!0,message:"\u8BF7\u9009\u62E9\u4EFB\u52A1\u7C7B\u578B",trigger:["blur"]}],status:[{required:!0,message:"\u8BF7\u9009\u62E9\u72B6\u6001",trigger:["blur"]}],types:[{required:!0,message:"\u8BF7\u9009\u62E9\u9636\u6BB5\u7C7B\u578B",trigger:["blur"]}],task_admin:[{required:!0,message:"\u8BF7\u9009\u62E9\u8D1F\u8D23\u4EBA",trigger:["blur"]}],recharge:[{required:!0,validator:(n,e,s)=>{e<=0?s(new Error("\u5145\u503C\u91D1\u989D\u4E0D\u80FD\u5C0F\u4E8E0")):s()},trigger:["blur"]}]}),T=async n=>{var e;for(const s in u)n[s]!=null&&n[s]!=null&&(u[s]=n[s]);(e=u.extend)!=null&&e.task_role&&(u.extend.task_role=+u.extend.task_role)},z=async n=>{const e=await ne({id:n.id});T(e)};y(!1),E();const G=async n=>{c.value.forEach(e=>{e.id==n&&(u.title=e.name,u.type_value=e.value)})},I=async n=>{n==1&&(f.value=""),n==2&&(f.value="town_task_type_marketing_director"),n==3&&(f.value="town_task_type"),R({type_value:f.value}).then(e=>{c.value=e.lists})},b=y(!1),O=E(),$=n=>{u.task_admin=n.id,u.task_admin_name=n.nickname,b.value=!1},j=async()=>{var e,s;await((e=w.value)==null?void 0:e.validate());const n={...u};i.value=="edit"?await se(n):await de(n),(s=k.value)==null||s.close(),A("success")},H=(n="add")=>{var e;i.value=n,(e=k.value)==null||e.open()},K=()=>{A("close")};return q({open:H,setFormData:T,getDetail:z}),(n,e)=>{const s=W,g=X,d=Y,m=Z,x=ee,M=ue,Q=le,J=ae;return r(),F("div",ie,[o(oe,{ref_key:"popupRef",ref:k,title:l(N),async:!0,width:"550px",onConfirm:j,onClose:K},{default:t(()=>[o(Q,{ref_key:"formRef",ref:w,model:l(u),"label-width":"120px",rules:l(S)},{default:t(()=>[o(d,{label:"\u4EFB\u52A1\u89D2\u8272",prop:"extend.task_role"},{default:t(()=>[o(g,{modelValue:l(u).extend.task_role,"onUpdate:modelValue":e[0]||(e[0]=a=>l(u).extend.task_role=a),clearable:"",disabled:l(i)!="add",placeholder:"\u8BF7\u9009\u62E9\u4EFB\u52A1\u89D2\u8272",onChange:I},{default:t(()=>[(r(!0),F(D,null,v(l(L),a=>(r(),_(s,{key:a.key,value:a.key,label:a.value},null,8,["value","label"]))),128))]),_:1},8,["modelValue","disabled"])]),_:1}),o(d,{label:"\u4EFB\u52A1\u7C7B\u578B",prop:"type"},{default:t(()=>[o(g,{modelValue:l(u).type,"onUpdate:modelValue":e[1]||(e[1]=a=>l(u).type=a),clearable:"",disabled:l(i)!="add",placeholder:"\u8BF7\u9009\u62E9\u4EFB\u52A1\u7C7B\u578B",onChange:G},{default:t(()=>[(r(!0),F(D,null,v(l(c),a=>(r(),_(s,{key:a.label,value:a.id,label:a.name},null,8,["value","label"]))),128))]),_:1},8,["modelValue","disabled"])]),_:1}),o(d,{label:"\u9636\u6BB5\u7C7B\u578B",prop:"types"},{default:t(()=>[me("div",null,[o(g,{modelValue:l(u).types,"onUpdate:modelValue":e[2]||(e[2]=a=>l(u).types=a),clearable:"",disabled:l(i)!="add",placeholder:"\u8BF7\u9009\u62E9\u9636\u6BB5\u7C7B\u578B"},{default:t(()=>[(r(),F(D,null,v([{label:1,name:"\u5FAA\u73AF"},{label:2,name:"\u957F\u671F"},{label:3,name:"\u5355\u6B21"}],a=>o(s,{key:a.label,value:a.label,label:a.name},null,8,["value","label"])),64))]),_:1},8,["modelValue","disabled"]),l(u).types==3?(r(),F("div",ye," \u63D0\u793A : \u5355\u6B21\u4EFB\u52A1\u4E0D\u4F1A\u6BCF\u65E5\u7ED3\u7B97,\u800C\u662F\u6309\u9636\u6BB5\u5408\u8BA1\u5929\u6570\u7ED3\u7B97 ")):B("",!0)])]),_:1}),o(d,{label:"\u4E00\u9636\u6BB5\u5929\u6570"},{default:t(()=>[o(m,{modelValue:l(u).stage_day_one,"onUpdate:modelValue":e[3]||(e[3]=a=>l(u).stage_day_one=a),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u5929\u6570",type:"number"},{append:t(()=>[p("\u5929")]),_:1},8,["modelValue"])]),_:1}),o(d,{label:"\u4E00\u9636\u6BB5\u91D1\u989D"},{default:t(()=>[o(m,{modelValue:l(u).money,"onUpdate:modelValue":e[4]||(e[4]=a=>l(u).money=a),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u91D1\u989D",type:"number"},{append:t(()=>[p("\u5143")]),_:1},8,["modelValue"])]),_:1}),l(u).type_value!="town_task_type_5"?(r(),_(d,{key:0,label:"\u4E8C\u9636\u6BB5\u5929\u6570"},{default:t(()=>[o(m,{modelValue:l(u).stage_day_two,"onUpdate:modelValue":e[5]||(e[5]=a=>l(u).stage_day_two=a),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u5929\u6570",type:"number"},{append:t(()=>[p("\u5929")]),_:1},8,["modelValue"])]),_:1})):B("",!0),l(u).type_value!="town_task_type_5"?(r(),_(d,{key:1,label:"\u4E8C\u9636\u6BB5\u91D1\u989D"},{default:t(()=>[o(m,{modelValue:l(u).money_two,"onUpdate:modelValue":e[6]||(e[6]=a=>l(u).money_two=a),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u91D1\u989D",type:"number"},{append:t(()=>[p("\u5143")]),_:1},8,["modelValue"])]),_:1})):B("",!0),h(+l(u).type)?(r(),_(d,{key:2,label:"\u4E09\u9636\u6BB5\u5929\u6570"},{default:t(()=>[o(m,{modelValue:l(u).stage_day_three,"onUpdate:modelValue":e[7]||(e[7]=a=>l(u).stage_day_three=a),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u5929\u6570",type:"number"},{append:t(()=>[p("\u5929")]),_:1},8,["modelValue"])]),_:1})):B("",!0),h(+l(u).type)?(r(),_(d,{key:3,label:"\u4E09\u9636\u6BB5\u91D1\u989D"},{default:t(()=>[o(m,{modelValue:l(u).new_money_three,"onUpdate:modelValue":e[8]||(e[8]=a=>l(u).new_money_three=a),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u91D1\u989D",type:"number"},{append:t(()=>[p("\u5143")]),_:1},8,["modelValue"])]),_:1})):B("",!0),+l(u).types==2?(r(),_(d,{key:4,label:"\u957F\u671F\u91D1\u989D"},{default:t(()=>[o(m,{modelValue:l(u).money_three,"onUpdate:modelValue":e[9]||(e[9]=a=>l(u).money_three=a),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u91D1\u989D",type:"number"},{append:t(()=>[p("\u5143")]),_:1},8,["modelValue"])]),_:1})):B("",!0),o(d,{label:"\u72B6\u6001",prop:"status"},{default:t(()=>[o(M,{modelValue:l(u).status,"onUpdate:modelValue":e[10]||(e[10]=a=>l(u).status=a)},{default:t(()=>[o(x,{label:1},{default:t(()=>[p("\u663E\u793A")]),_:1}),o(x,{label:0},{default:t(()=>[p("\u9690\u85CF")]),_:1})]),_:1},8,["modelValue"])]),_:1}),o(d,{label:"\u4EFB\u52A1\u63CF\u8FF0",prop:"content"},{default:t(()=>[o(m,{modelValue:l(u).content,"onUpdate:modelValue":e[11]||(e[11]=a=>l(u).content=a),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u4EFB\u52A1\u63CF\u8FF0",type:"textarea",autosize:""},null,8,["modelValue"])]),_:1})]),_:1},8,["model","rules"]),o(J,{modelValue:l(b),"onUpdate:modelValue":e[12]||(e[12]=a=>_e(b)?b.value=a:null),ref_key:"personnelRef",ref:O,title:"\u9009\u62E9\u8D1F\u8D23\u4EBA",width:"60%"},{default:t(()=>[o(re,{onCustomEvent:$,company_id:l(u).company_id},null,8,["company_id"])]),_:1},8,["modelValue"])]),_:1},8,["title"])])}}});export{ve as _}; diff --git a/public/admin/assets/edit_admin.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.ef132330.js b/public/admin/assets/edit_admin.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.ef132330.js new file mode 100644 index 000000000..e711553d6 --- /dev/null +++ b/public/admin/assets/edit_admin.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.ef132330.js @@ -0,0 +1 @@ +import{M as W,N as X,C as Y,B as Z,G as ee,H as ue,D as le,L as ae}from"./element-plus.4328d892.js";import{u as te}from"./vue-router.9f65afb1.js";import{P as oe}from"./index.5759a1a6.js";import{c as ne,b as R,d as se,e as de}from"./map.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.0177b6b6.js";import"./lodash.08438971.js";import"./index.37f7aea6.js";import{_ as re}from"./dialog_index_personnel.vue_vue_type_script_setup_true_name_companyLists_lang.7fc490f9.js";import{d as U,s as E,r as y,e as pe,$ as V,o as r,c,U as o,L as t,u as l,T as D,a7 as v,K as i,a as me,Q as B,R as p,k as ie}from"./@vue.51d7f2d8.js";const _e={class:"edit-popup"},ye={style:{width:"100%"}},Be={key:0,style:{color:"#e6a23c","font-size":"12px"}},fe=U({name:"taskTemplateEdit"}),we=U({...fe,props:{dictData:{type:Object,default:()=>({})}},emits:["success","close"],setup(ce,{expose:q,emit:w}){const A=E(),k=E(),_=y("add"),F=y([]),C=te(),f=y("town_task_type"),L=y([{key:1,value:"\u8D1F\u8D23\u4EBA"},{key:2,value:"\u5E02\u573A\u90E8\u957F"},{key:3,value:"\u670D\u52A1\u90E8\u957F"}]),N=pe(()=>_.value=="edit"?"\u7F16\u8F91\u4EFB\u52A1\u5B89\u6392":"\u65B0\u589E\u4EFB\u52A1\u5B89\u6392"),P=V([45,48,49]),h=n=>!P.includes(n),u=V({id:"",task_scheduling:0,company_id:"",title:"",admin_id:"",type:"",type_value:"",status:"",content:"",stage_day_one:0,money:0,stage_day_two:0,money_two:0,stage_day_three:0,new_money_three:0,money_three:0,types:"",task_admin:"",task_admin_name:"",recharge:"",extend:{task_role:""}});C.query.id&&(u.task_scheduling=C.query.id);const S=V({title:[{required:!0,message:"\u8BF7\u8F93\u5165\u4EFB\u52A1\u540D\u79F0",trigger:["blur"]}],"extend.task_role":[{required:!0,message:"\u8BF7\u9009\u62E9\u4EFB\u52A1\u89D2\u8272",trigger:["blur"]}],admin_id:[{required:!0,message:"\u8BF7\u8F93\u5165\u521B\u5EFA\u4EBA",trigger:["blur"]}],type:[{required:!0,message:"\u8BF7\u9009\u62E9\u4EFB\u52A1\u7C7B\u578B",trigger:["blur"]}],status:[{required:!0,message:"\u8BF7\u9009\u62E9\u72B6\u6001",trigger:["blur"]}],types:[{required:!0,message:"\u8BF7\u9009\u62E9\u9636\u6BB5\u7C7B\u578B",trigger:["blur"]}],task_admin:[{required:!0,message:"\u8BF7\u9009\u62E9\u8D1F\u8D23\u4EBA",trigger:["blur"]}],recharge:[{required:!0,validator:(n,e,s)=>{e<=0?s(new Error("\u5145\u503C\u91D1\u989D\u4E0D\u80FD\u5C0F\u4E8E0")):s()},trigger:["blur"]}]}),T=async n=>{var e;for(const s in u)n[s]!=null&&n[s]!=null&&(u[s]=n[s]);(e=u.extend)!=null&&e.task_role&&(u.extend.task_role=+u.extend.task_role)},z=async n=>{const e=await ne({id:n.id});T(e)};y(!1),E();const G=async n=>{F.value.forEach(e=>{e.id==n&&(u.title=e.name,u.type_value=e.value)})},I=async n=>{n==1&&(f.value="town_task_type_master"),n==2&&(f.value="town_task_type_marketing_director"),n==3&&(f.value="town_task_type"),R({type_value:f.value}).then(e=>{F.value=e.lists})},b=y(!1),O=E(),$=n=>{u.task_admin=n.id,u.task_admin_name=n.nickname,b.value=!1},j=async()=>{var e,s;await((e=A.value)==null?void 0:e.validate());const n={...u};_.value=="edit"?await se(n):await de(n),(s=k.value)==null||s.close(),w("success")},H=(n="add")=>{var e;_.value=n,(e=k.value)==null||e.open(),n=="edit"&&R({type_value:f.value}).then(s=>{F.value=s.lists})},K=()=>{w("close")};return q({open:H,setFormData:T,getDetail:z}),(n,e)=>{const s=W,g=X,d=Y,m=Z,x=ee,M=ue,Q=le,J=ae;return r(),c("div",_e,[o(oe,{ref_key:"popupRef",ref:k,title:l(N),async:!0,width:"550px",onConfirm:j,onClose:K},{default:t(()=>[o(Q,{ref_key:"formRef",ref:A,model:l(u),"label-width":"120px",rules:l(S)},{default:t(()=>[o(d,{label:"\u4EFB\u52A1\u89D2\u8272",prop:"extend.task_role"},{default:t(()=>[o(g,{modelValue:l(u).extend.task_role,"onUpdate:modelValue":e[0]||(e[0]=a=>l(u).extend.task_role=a),clearable:"",disabled:l(_)!="add",placeholder:"\u8BF7\u9009\u62E9\u4EFB\u52A1\u89D2\u8272",onChange:I,style:{width:"100%"}},{default:t(()=>[(r(!0),c(D,null,v(l(L),a=>(r(),i(s,{key:a.key,value:a.key,label:a.value},null,8,["value","label"]))),128))]),_:1},8,["modelValue","disabled"])]),_:1}),o(d,{label:"\u4EFB\u52A1\u7C7B\u578B",prop:"type"},{default:t(()=>[o(g,{modelValue:l(u).type,"onUpdate:modelValue":e[1]||(e[1]=a=>l(u).type=a),clearable:"",disabled:l(_)!="add",placeholder:"\u8BF7\u9009\u62E9\u4EFB\u52A1\u7C7B\u578B",onChange:G,style:{width:"100%"}},{default:t(()=>[(r(!0),c(D,null,v(l(F),a=>(r(),i(s,{key:a.label,value:a.id,label:a.name},null,8,["value","label"]))),128))]),_:1},8,["modelValue","disabled"])]),_:1}),o(d,{label:"\u9636\u6BB5\u7C7B\u578B",prop:"types"},{default:t(()=>[me("div",ye,[o(g,{modelValue:l(u).types,"onUpdate:modelValue":e[2]||(e[2]=a=>l(u).types=a),clearable:"",disabled:l(_)!="add",placeholder:"\u8BF7\u9009\u62E9\u9636\u6BB5\u7C7B\u578B",style:{width:"100%"}},{default:t(()=>[(r(),c(D,null,v([{label:1,name:"\u5FAA\u73AF"},{label:2,name:"\u957F\u671F"},{label:3,name:"\u5355\u6B21"}],a=>o(s,{key:a.label,value:a.label,label:a.name},null,8,["value","label"])),64))]),_:1},8,["modelValue","disabled"]),l(u).types==3?(r(),c("div",Be," \u63D0\u793A : \u5355\u6B21\u4EFB\u52A1\u4E0D\u4F1A\u6BCF\u65E5\u7ED3\u7B97,\u800C\u662F\u6309\u9636\u6BB5\u5408\u8BA1\u5929\u6570\u7ED3\u7B97 ")):B("",!0)])]),_:1}),o(d,{label:"\u4E00\u9636\u6BB5\u5929\u6570"},{default:t(()=>[o(m,{modelValue:l(u).stage_day_one,"onUpdate:modelValue":e[3]||(e[3]=a=>l(u).stage_day_one=a),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u5929\u6570",type:"number"},{append:t(()=>[p("\u5929")]),_:1},8,["modelValue"])]),_:1}),o(d,{label:"\u4E00\u9636\u6BB5\u91D1\u989D"},{default:t(()=>[o(m,{modelValue:l(u).money,"onUpdate:modelValue":e[4]||(e[4]=a=>l(u).money=a),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u91D1\u989D",type:"number"},{append:t(()=>[p("\u5143")]),_:1},8,["modelValue"])]),_:1}),l(u).type_value!="town_task_type_5"?(r(),i(d,{key:0,label:"\u4E8C\u9636\u6BB5\u5929\u6570"},{default:t(()=>[o(m,{modelValue:l(u).stage_day_two,"onUpdate:modelValue":e[5]||(e[5]=a=>l(u).stage_day_two=a),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u5929\u6570",type:"number"},{append:t(()=>[p("\u5929")]),_:1},8,["modelValue"])]),_:1})):B("",!0),l(u).type_value!="town_task_type_5"?(r(),i(d,{key:1,label:"\u4E8C\u9636\u6BB5\u91D1\u989D"},{default:t(()=>[o(m,{modelValue:l(u).money_two,"onUpdate:modelValue":e[6]||(e[6]=a=>l(u).money_two=a),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u91D1\u989D",type:"number"},{append:t(()=>[p("\u5143")]),_:1},8,["modelValue"])]),_:1})):B("",!0),h(+l(u).type)?(r(),i(d,{key:2,label:"\u4E09\u9636\u6BB5\u5929\u6570"},{default:t(()=>[o(m,{modelValue:l(u).stage_day_three,"onUpdate:modelValue":e[7]||(e[7]=a=>l(u).stage_day_three=a),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u5929\u6570",type:"number"},{append:t(()=>[p("\u5929")]),_:1},8,["modelValue"])]),_:1})):B("",!0),h(+l(u).type)?(r(),i(d,{key:3,label:"\u4E09\u9636\u6BB5\u91D1\u989D"},{default:t(()=>[o(m,{modelValue:l(u).new_money_three,"onUpdate:modelValue":e[8]||(e[8]=a=>l(u).new_money_three=a),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u91D1\u989D",type:"number"},{append:t(()=>[p("\u5143")]),_:1},8,["modelValue"])]),_:1})):B("",!0),+l(u).types==2?(r(),i(d,{key:4,label:"\u957F\u671F\u91D1\u989D"},{default:t(()=>[o(m,{modelValue:l(u).money_three,"onUpdate:modelValue":e[9]||(e[9]=a=>l(u).money_three=a),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u91D1\u989D",type:"number"},{append:t(()=>[p("\u5143")]),_:1},8,["modelValue"])]),_:1})):B("",!0),o(d,{label:"\u72B6\u6001",prop:"status"},{default:t(()=>[o(M,{modelValue:l(u).status,"onUpdate:modelValue":e[10]||(e[10]=a=>l(u).status=a)},{default:t(()=>[o(x,{label:1},{default:t(()=>[p("\u663E\u793A")]),_:1}),o(x,{label:0},{default:t(()=>[p("\u9690\u85CF")]),_:1})]),_:1},8,["modelValue"])]),_:1}),o(d,{label:"\u4EFB\u52A1\u63CF\u8FF0",prop:"content"},{default:t(()=>[o(m,{modelValue:l(u).content,"onUpdate:modelValue":e[11]||(e[11]=a=>l(u).content=a),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u4EFB\u52A1\u63CF\u8FF0",type:"textarea",autosize:""},null,8,["modelValue"])]),_:1})]),_:1},8,["model","rules"]),o(J,{modelValue:l(b),"onUpdate:modelValue":e[12]||(e[12]=a=>ie(b)?b.value=a:null),ref_key:"personnelRef",ref:O,title:"\u9009\u62E9\u8D1F\u8D23\u4EBA",width:"60%"},{default:t(()=>[o(re,{onCustomEvent:$,company_id:l(u).company_id},null,8,["company_id"])]),_:1},8,["modelValue"])]),_:1},8,["title"])])}}});export{we as _}; diff --git a/public/admin/assets/environment.61e8f858.js b/public/admin/assets/environment.61e8f858.js new file mode 100644 index 000000000..2b24a3c1d --- /dev/null +++ b/public/admin/assets/environment.61e8f858.js @@ -0,0 +1 @@ +import{b as v}from"./index.aa9bb752.js";import{O as f,P as b,I as h}from"./element-plus.4328d892.js";import{a as C}from"./system.02fce13c.js";import{d,$ as E,j as B,o as s,c as k,U as e,L as o,a as r,u as c,K as u}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./lodash.08438971.js";import"./@amap.8a62addd.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./@element-plus.a074d1f6.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";const x={class:"system-environment"},y=r("div",null,"\u670D\u52A1\u5668\u4FE1\u606F",-1),w={class:"mt-4"},A=r("div",null,"PHP\u73AF\u5883\u8981\u6C42",-1),F={class:"mt-4"},g=r("div",null,"\u76EE\u5F55\u6743\u9650",-1),I={class:"mt-4"},P=d({name:"environment"}),_e=d({...P,setup(S){const a=E({server:[],env:[],auth:[]}),_=()=>{C().then(n=>{a.server=n.server,a.env=n.env,a.auth=n.auth})};return B(()=>{_()}),(n,q)=>{const t=f,m=b,i=h,l=v;return s(),k("div",x,[e(i,{class:"!border-none",shadow:"never"},{default:o(()=>[y,r("div",w,[e(m,{data:c(a).server},{default:o(()=>[e(t,{prop:"param",label:"\u53C2\u6570"}),e(t,{prop:"value",label:"\u503C"})]),_:1},8,["data"])])]),_:1}),e(i,{shadow:"never",class:"!border-none mt-4"},{default:o(()=>[A,r("div",F,[e(m,{data:c(a).env},{default:o(()=>[e(t,{prop:"option",label:"\u9009\u9879"}),e(t,{prop:"require",label:"\u8981\u6C42"}),e(t,{label:"\u72B6\u6001"},{default:o(p=>[p.row.status?(s(),u(l,{key:0,name:"el-icon-Select",class:"text-success"})):(s(),u(l,{key:1,name:"el-icon-CloseBold",class:"text-danger"}))]),_:1}),e(t,{prop:"remark",label:"\u8BF4\u660E\u53CA\u5E2E\u52A9"})]),_:1},8,["data"])])]),_:1}),e(i,{shadow:"never",class:"!border-none mt-4"},{default:o(()=>[g,r("div",I,[e(m,{data:c(a).auth},{default:o(()=>[e(t,{prop:"dir",label:"\u9009\u9879"}),e(t,{prop:"require",label:"\u8981\u6C42"}),e(t,{label:"\u72B6\u6001"},{default:o(p=>[p.row.status?(s(),u(l,{key:0,name:"el-icon-Select",class:"text-success"})):(s(),u(l,{key:1,name:"el-icon-CloseBold",class:"text-danger"}))]),_:1}),e(t,{prop:"remark",label:"\u8BF4\u660E\u53CA\u5E2E\u52A9"})]),_:1},8,["data"])])]),_:1})])}}});export{_e as default}; diff --git a/public/admin/assets/environment.a003c219.js b/public/admin/assets/environment.a003c219.js new file mode 100644 index 000000000..7aab81dda --- /dev/null +++ b/public/admin/assets/environment.a003c219.js @@ -0,0 +1 @@ +import{b as v}from"./index.ed71ac09.js";import{O as f,P as b,I as h}from"./element-plus.4328d892.js";import{a as C}from"./system.1f3b2cc7.js";import{d,$ as E,j as B,o as s,c as k,U as e,L as o,a as r,u as c,K as u}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./lodash.08438971.js";import"./@amap.8a62addd.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./@element-plus.a074d1f6.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";const x={class:"system-environment"},y=r("div",null,"\u670D\u52A1\u5668\u4FE1\u606F",-1),w={class:"mt-4"},A=r("div",null,"PHP\u73AF\u5883\u8981\u6C42",-1),F={class:"mt-4"},g=r("div",null,"\u76EE\u5F55\u6743\u9650",-1),I={class:"mt-4"},P=d({name:"environment"}),_e=d({...P,setup(S){const a=E({server:[],env:[],auth:[]}),_=()=>{C().then(n=>{a.server=n.server,a.env=n.env,a.auth=n.auth})};return B(()=>{_()}),(n,q)=>{const t=f,m=b,i=h,l=v;return s(),k("div",x,[e(i,{class:"!border-none",shadow:"never"},{default:o(()=>[y,r("div",w,[e(m,{data:c(a).server},{default:o(()=>[e(t,{prop:"param",label:"\u53C2\u6570"}),e(t,{prop:"value",label:"\u503C"})]),_:1},8,["data"])])]),_:1}),e(i,{shadow:"never",class:"!border-none mt-4"},{default:o(()=>[A,r("div",F,[e(m,{data:c(a).env},{default:o(()=>[e(t,{prop:"option",label:"\u9009\u9879"}),e(t,{prop:"require",label:"\u8981\u6C42"}),e(t,{label:"\u72B6\u6001"},{default:o(p=>[p.row.status?(s(),u(l,{key:0,name:"el-icon-Select",class:"text-success"})):(s(),u(l,{key:1,name:"el-icon-CloseBold",class:"text-danger"}))]),_:1}),e(t,{prop:"remark",label:"\u8BF4\u660E\u53CA\u5E2E\u52A9"})]),_:1},8,["data"])])]),_:1}),e(i,{shadow:"never",class:"!border-none mt-4"},{default:o(()=>[g,r("div",I,[e(m,{data:c(a).auth},{default:o(()=>[e(t,{prop:"dir",label:"\u9009\u9879"}),e(t,{prop:"require",label:"\u8981\u6C42"}),e(t,{label:"\u72B6\u6001"},{default:o(p=>[p.row.status?(s(),u(l,{key:0,name:"el-icon-Select",class:"text-success"})):(s(),u(l,{key:1,name:"el-icon-CloseBold",class:"text-danger"}))]),_:1}),e(t,{prop:"remark",label:"\u8BF4\u660E\u53CA\u5E2E\u52A9"})]),_:1},8,["data"])])]),_:1})])}}});export{_e as default}; diff --git a/public/admin/assets/environment.a7ac884e.js b/public/admin/assets/environment.a7ac884e.js new file mode 100644 index 000000000..e9adb6755 --- /dev/null +++ b/public/admin/assets/environment.a7ac884e.js @@ -0,0 +1 @@ +import{b as v}from"./index.37f7aea6.js";import{O as f,P as b,I as h}from"./element-plus.4328d892.js";import{a as C}from"./system.7bc7010f.js";import{d,$ as E,j as B,o as s,c as k,U as e,L as o,a as r,u as c,K as u}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./lodash.08438971.js";import"./@amap.8a62addd.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./@element-plus.a074d1f6.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";const x={class:"system-environment"},y=r("div",null,"\u670D\u52A1\u5668\u4FE1\u606F",-1),w={class:"mt-4"},A=r("div",null,"PHP\u73AF\u5883\u8981\u6C42",-1),F={class:"mt-4"},g=r("div",null,"\u76EE\u5F55\u6743\u9650",-1),I={class:"mt-4"},P=d({name:"environment"}),_e=d({...P,setup(S){const a=E({server:[],env:[],auth:[]}),_=()=>{C().then(n=>{a.server=n.server,a.env=n.env,a.auth=n.auth})};return B(()=>{_()}),(n,q)=>{const t=f,m=b,i=h,l=v;return s(),k("div",x,[e(i,{class:"!border-none",shadow:"never"},{default:o(()=>[y,r("div",w,[e(m,{data:c(a).server},{default:o(()=>[e(t,{prop:"param",label:"\u53C2\u6570"}),e(t,{prop:"value",label:"\u503C"})]),_:1},8,["data"])])]),_:1}),e(i,{shadow:"never",class:"!border-none mt-4"},{default:o(()=>[A,r("div",F,[e(m,{data:c(a).env},{default:o(()=>[e(t,{prop:"option",label:"\u9009\u9879"}),e(t,{prop:"require",label:"\u8981\u6C42"}),e(t,{label:"\u72B6\u6001"},{default:o(p=>[p.row.status?(s(),u(l,{key:0,name:"el-icon-Select",class:"text-success"})):(s(),u(l,{key:1,name:"el-icon-CloseBold",class:"text-danger"}))]),_:1}),e(t,{prop:"remark",label:"\u8BF4\u660E\u53CA\u5E2E\u52A9"})]),_:1},8,["data"])])]),_:1}),e(i,{shadow:"never",class:"!border-none mt-4"},{default:o(()=>[g,r("div",I,[e(m,{data:c(a).auth},{default:o(()=>[e(t,{prop:"dir",label:"\u9009\u9879"}),e(t,{prop:"require",label:"\u8981\u6C42"}),e(t,{label:"\u72B6\u6001"},{default:o(p=>[p.row.status?(s(),u(l,{key:0,name:"el-icon-Select",class:"text-success"})):(s(),u(l,{key:1,name:"el-icon-CloseBold",class:"text-danger"}))]),_:1}),e(t,{prop:"remark",label:"\u8BF4\u660E\u53CA\u5E2E\u52A9"})]),_:1},8,["data"])])]),_:1})])}}});export{_e as default}; diff --git a/public/admin/assets/error.ab90784a.js b/public/admin/assets/error.ab90784a.js new file mode 100644 index 000000000..f749b1684 --- /dev/null +++ b/public/admin/assets/error.ab90784a.js @@ -0,0 +1 @@ +import{w as c}from"./element-plus.4328d892.js";import{a as u}from"./vue-router.9f65afb1.js";import{d,r as _,G as v,o as a,c as f,a as r,H as B,S as i,K as x,L as y,R as g,u as E,Q as h}from"./@vue.51d7f2d8.js";import{d as k}from"./index.ed71ac09.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const w={class:"error"},S={class:"error-code"},C={class:"text-lg text-tx-secondary mt-7 mb-7"},D=d({__name:"error",props:{code:String,title:String,showBtn:{type:Boolean,default:!0}},setup(t){const n=t;let o=null;const e=_(5),s=u();return n.showBtn&&(o=setInterval(()=>{e.value===0?(clearInterval(o),s.go(-1)):e.value--},1e3)),v(()=>{o&&clearInterval(o)}),(p,m)=>{const l=c;return a(),f("div",w,[r("div",null,[B(p.$slots,"content",{},()=>[r("div",S,i(t.code),1)],!0),r("div",C,i(t.title),1),t.showBtn?(a(),x(l,{key:0,type:"primary",onClick:m[0]||(m[0]=I=>E(s).go(-1))},{default:y(()=>[g(i(e.value)+" \u79D2\u540E\u8FD4\u56DE\u4E0A\u4E00\u9875 ",1)]),_:1})):h("",!0)])])}}});const pt=k(D,[["__scopeId","data-v-9a820143"]]);export{pt as default}; diff --git a/public/admin/assets/error.b20a557d.js b/public/admin/assets/error.b20a557d.js new file mode 100644 index 000000000..600463bc6 --- /dev/null +++ b/public/admin/assets/error.b20a557d.js @@ -0,0 +1 @@ +import{w as c}from"./element-plus.4328d892.js";import{a as u}from"./vue-router.9f65afb1.js";import{d,r as _,G as v,o as a,c as f,a as r,H as B,S as i,K as x,L as y,R as g,u as E,Q as h}from"./@vue.51d7f2d8.js";import{d as k}from"./index.aa9bb752.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const w={class:"error"},S={class:"error-code"},C={class:"text-lg text-tx-secondary mt-7 mb-7"},D=d({__name:"error",props:{code:String,title:String,showBtn:{type:Boolean,default:!0}},setup(t){const n=t;let o=null;const e=_(5),s=u();return n.showBtn&&(o=setInterval(()=>{e.value===0?(clearInterval(o),s.go(-1)):e.value--},1e3)),v(()=>{o&&clearInterval(o)}),(p,m)=>{const l=c;return a(),f("div",w,[r("div",null,[B(p.$slots,"content",{},()=>[r("div",S,i(t.code),1)],!0),r("div",C,i(t.title),1),t.showBtn?(a(),x(l,{key:0,type:"primary",onClick:m[0]||(m[0]=I=>E(s).go(-1))},{default:y(()=>[g(i(e.value)+" \u79D2\u540E\u8FD4\u56DE\u4E0A\u4E00\u9875 ",1)]),_:1})):h("",!0)])])}}});const pt=k(D,[["__scopeId","data-v-9a820143"]]);export{pt as default}; diff --git a/public/admin/assets/error.ce387314.js b/public/admin/assets/error.ce387314.js new file mode 100644 index 000000000..471191b2d --- /dev/null +++ b/public/admin/assets/error.ce387314.js @@ -0,0 +1 @@ +import{w as c}from"./element-plus.4328d892.js";import{a as u}from"./vue-router.9f65afb1.js";import{d,r as _,G as v,o as a,c as f,a as r,H as B,S as i,K as x,L as y,R as g,u as E,Q as h}from"./@vue.51d7f2d8.js";import{d as k}from"./index.37f7aea6.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const w={class:"error"},S={class:"error-code"},C={class:"text-lg text-tx-secondary mt-7 mb-7"},D=d({__name:"error",props:{code:String,title:String,showBtn:{type:Boolean,default:!0}},setup(t){const n=t;let o=null;const e=_(5),s=u();return n.showBtn&&(o=setInterval(()=>{e.value===0?(clearInterval(o),s.go(-1)):e.value--},1e3)),v(()=>{o&&clearInterval(o)}),(p,m)=>{const l=c;return a(),f("div",w,[r("div",null,[B(p.$slots,"content",{},()=>[r("div",S,i(t.code),1)],!0),r("div",C,i(t.title),1),t.showBtn?(a(),x(l,{key:0,type:"primary",onClick:m[0]||(m[0]=I=>E(s).go(-1))},{default:y(()=>[g(i(e.value)+" \u79D2\u540E\u8FD4\u56DE\u4E0A\u4E00\u9875 ",1)]),_:1})):h("",!0)])])}}});const pt=k(D,[["__scopeId","data-v-9a820143"]]);export{pt as default}; diff --git a/public/admin/assets/examined.043327c6.js b/public/admin/assets/examined.043327c6.js new file mode 100644 index 000000000..3b06a4191 --- /dev/null +++ b/public/admin/assets/examined.043327c6.js @@ -0,0 +1 @@ +import{w as N,O as U,t as A,P as Q,I as j,Q as q}from"./element-plus.4328d892.js";import{_ as I}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{f as K,b as M}from"./index.aa9bb752.js";import{u as O}from"./usePaging.2ad8e1e6.js";import{u as z}from"./useDictOptions.a61fcf9f.js";import{d as G,e as H}from"./examined.fccbde31.js";import{d as b,s as J,r as C,$ as W,af as X,o as s,c as Y,M as m,u as n,K as p,L as l,U as e,R as h,a as g,S as Z,k as tt,Q as et,n as y}from"./@vue.51d7f2d8.js";import"./lodash.08438971.js";import{_ as ot}from"./editCate.vue_vue_type_script_setup_true_name_flowTypeEdit_lang.d16d1301.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.fa872673.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";const at={class:"mt-4"},it={class:"flex mt-4 justify-end"},nt=b({name:"flowTypeLists"}),Wt=b({...nt,setup(lt){const u=J(),c=C(!1),k=W({type:"",title:"",name:"",icon:"",department_ids:"",status:""}),E=C([]),D=t=>{E.value=t.map(({id:o})=>o)},{dictData:F}=z(""),{pager:r,getLists:d,resetParams:st,resetPage:rt}=O({fetchFun:H,params:k}),V=async()=>{var t;c.value=!0,await y(),(t=u.value)==null||t.open("add")},B=async t=>{var o,_;c.value=!0,await y(),(o=u.value)==null||o.open("edit"),(_=u.value)==null||_.setFormData(t)},S=async t=>{await K.confirm("\u786E\u5B9A\u8981\u5220\u9664\uFF1F"),await apiFlowTypeDelete({id:t}),d()},$=t=>{G({id:t.id,status:t.status})};return d(),(t,o)=>{const _=M,w=N,i=U,x=A,P=Q,T=I,L=j,f=X("perms"),R=q;return s(),Y("div",null,[m((s(),p(L,{class:"!border-none",shadow:"never"},{default:l(()=>[m((s(),p(w,{type:"primary",onClick:V},{icon:l(()=>[e(_,{name:"el-icon-Plus"})]),default:l(()=>[h(" \u65B0\u589E ")]),_:1})),[[f,["flow_type/add"]]]),g("div",at,[e(P,{data:n(r).lists,onSelectionChange:D},{default:l(()=>[h(Z(n(r))+" ",1),e(i,{label:"id",prop:"id","show-overflow-tooltip":"",width:"60"}),e(i,{label:"\u540D\u79F0",prop:"title","show-overflow-tooltip":""}),e(i,{label:"\u5E94\u7528\u90E8\u95E8",prop:"department","show-overflow-tooltip":""}),e(i,{label:"\u6807\u8BC6",prop:"name","show-overflow-tooltip":""}),e(i,{label:"\u56FE\u6807",prop:"icon","show-overflow-tooltip":""}),e(i,{label:"\u6240\u5C5E\u5206\u7C7B",prop:"type_name","show-overflow-tooltip":""}),m((s(),p(i,{label:"\u8D26\u53F7\u72B6\u6001","min-width":"100"},{default:l(({row:a})=>[e(x,{modelValue:a.status,"onUpdate:modelValue":v=>a.status=v,"active-value":1,"inactive-value":0,onChange:v=>$(a)},null,8,["modelValue","onUpdate:modelValue","onChange"])]),_:1})),[[f,["auth.admin/edit"]]]),e(i,{label:"\u64CD\u4F5C",align:"center",width:"auto",fixed:"right"},{default:l(({row:a})=>[m((s(),p(w,{type:"primary",link:"",onClick:v=>B(a)},{default:l(()=>[h(" \u7F16\u8F91 ")]),_:2},1032,["onClick"])),[[f,["flow/edit"]]]),m((s(),p(w,{type:"danger",link:"",onClick:v=>S(a.id)},{default:l(()=>[h(" \u5220\u9664 ")]),_:2},1032,["onClick"])),[[f,["flow/delete"]]])]),_:1})]),_:1},8,["data"])]),g("div",it,[e(T,{modelValue:n(r),"onUpdate:modelValue":o[0]||(o[0]=a=>tt(r)?r.value=a:null),onChange:n(d)},null,8,["modelValue","onChange"])])]),_:1})),[[R,n(r).loading]]),n(c)?(s(),p(ot,{key:0,ref_key:"editRef",ref:u,"dict-data":n(F),onSuccess:n(d),onClose:o[1]||(o[1]=a=>c.value=!1)},null,8,["dict-data","onSuccess"])):et("",!0)])}}});export{Wt as default}; diff --git a/public/admin/assets/examined.28c87019.js b/public/admin/assets/examined.28c87019.js new file mode 100644 index 000000000..2c0a4be9c --- /dev/null +++ b/public/admin/assets/examined.28c87019.js @@ -0,0 +1 @@ +import{r as e}from"./index.37f7aea6.js";function a(t){return e.get({url:"/cate/index",params:t})}function u(t){return e.get({url:"/flow/index",params:t})}function i(t){return e.post({url:"/cate/create",params:t})}function n(t){return e.post({url:"/flow/create",params:t})}function o(t){return e.get({url:"/cate/status",params:t})}function s(t){return e.get({url:"/flow/status",params:t})}function p(t){return e.get({url:"/flow/view",params:t})}function l(t){return e.get({url:"/approve.approve/lists",params:t})}function c(t){return e.get({url:"/approve.approve/audit",params:t})}export{i as a,p as b,n as c,o as d,a as e,s as f,u as g,l as h,c as i}; diff --git a/public/admin/assets/examined.594ad8f6.js b/public/admin/assets/examined.594ad8f6.js new file mode 100644 index 000000000..b78c652c5 --- /dev/null +++ b/public/admin/assets/examined.594ad8f6.js @@ -0,0 +1 @@ +import{r as e}from"./index.ed71ac09.js";function a(t){return e.get({url:"/cate/index",params:t})}function u(t){return e.get({url:"/flow/index",params:t})}function i(t){return e.post({url:"/cate/create",params:t})}function n(t){return e.post({url:"/flow/create",params:t})}function o(t){return e.get({url:"/cate/status",params:t})}function s(t){return e.get({url:"/flow/status",params:t})}function p(t){return e.get({url:"/flow/view",params:t})}function l(t){return e.get({url:"/approve.approve/lists",params:t})}function c(t){return e.get({url:"/approve.approve/audit",params:t})}export{i as a,p as b,n as c,o as d,a as e,s as f,u as g,l as h,c as i}; diff --git a/public/admin/assets/examined.860433be.js b/public/admin/assets/examined.860433be.js new file mode 100644 index 000000000..c347148ca --- /dev/null +++ b/public/admin/assets/examined.860433be.js @@ -0,0 +1 @@ +import{w as N,O as U,t as A,P as Q,I as j,Q as q}from"./element-plus.4328d892.js";import{_ as I}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{f as K,b as M}from"./index.37f7aea6.js";import{u as O}from"./usePaging.2ad8e1e6.js";import{u as z}from"./useDictOptions.a45fc8ac.js";import{d as G,e as H}from"./examined.28c87019.js";import{d as b,s as J,r as C,$ as W,af as X,o as s,c as Y,M as m,u as n,K as p,L as l,U as e,R as h,a as g,S as Z,k as tt,Q as et,n as y}from"./@vue.51d7f2d8.js";import"./lodash.08438971.js";import{_ as ot}from"./editCate.vue_vue_type_script_setup_true_name_flowTypeEdit_lang.805edbad.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.5759a1a6.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";const at={class:"mt-4"},it={class:"flex mt-4 justify-end"},nt=b({name:"flowTypeLists"}),Wt=b({...nt,setup(lt){const u=J(),c=C(!1),k=W({type:"",title:"",name:"",icon:"",department_ids:"",status:""}),E=C([]),D=t=>{E.value=t.map(({id:o})=>o)},{dictData:F}=z(""),{pager:r,getLists:d,resetParams:st,resetPage:rt}=O({fetchFun:H,params:k}),V=async()=>{var t;c.value=!0,await y(),(t=u.value)==null||t.open("add")},B=async t=>{var o,_;c.value=!0,await y(),(o=u.value)==null||o.open("edit"),(_=u.value)==null||_.setFormData(t)},S=async t=>{await K.confirm("\u786E\u5B9A\u8981\u5220\u9664\uFF1F"),await apiFlowTypeDelete({id:t}),d()},$=t=>{G({id:t.id,status:t.status})};return d(),(t,o)=>{const _=M,w=N,i=U,x=A,P=Q,T=I,L=j,f=X("perms"),R=q;return s(),Y("div",null,[m((s(),p(L,{class:"!border-none",shadow:"never"},{default:l(()=>[m((s(),p(w,{type:"primary",onClick:V},{icon:l(()=>[e(_,{name:"el-icon-Plus"})]),default:l(()=>[h(" \u65B0\u589E ")]),_:1})),[[f,["flow_type/add"]]]),g("div",at,[e(P,{data:n(r).lists,onSelectionChange:D},{default:l(()=>[h(Z(n(r))+" ",1),e(i,{label:"id",prop:"id","show-overflow-tooltip":"",width:"60"}),e(i,{label:"\u540D\u79F0",prop:"title","show-overflow-tooltip":""}),e(i,{label:"\u5E94\u7528\u90E8\u95E8",prop:"department","show-overflow-tooltip":""}),e(i,{label:"\u6807\u8BC6",prop:"name","show-overflow-tooltip":""}),e(i,{label:"\u56FE\u6807",prop:"icon","show-overflow-tooltip":""}),e(i,{label:"\u6240\u5C5E\u5206\u7C7B",prop:"type_name","show-overflow-tooltip":""}),m((s(),p(i,{label:"\u8D26\u53F7\u72B6\u6001","min-width":"100"},{default:l(({row:a})=>[e(x,{modelValue:a.status,"onUpdate:modelValue":v=>a.status=v,"active-value":1,"inactive-value":0,onChange:v=>$(a)},null,8,["modelValue","onUpdate:modelValue","onChange"])]),_:1})),[[f,["auth.admin/edit"]]]),e(i,{label:"\u64CD\u4F5C",align:"center",width:"auto",fixed:"right"},{default:l(({row:a})=>[m((s(),p(w,{type:"primary",link:"",onClick:v=>B(a)},{default:l(()=>[h(" \u7F16\u8F91 ")]),_:2},1032,["onClick"])),[[f,["flow/edit"]]]),m((s(),p(w,{type:"danger",link:"",onClick:v=>S(a.id)},{default:l(()=>[h(" \u5220\u9664 ")]),_:2},1032,["onClick"])),[[f,["flow/delete"]]])]),_:1})]),_:1},8,["data"])]),g("div",it,[e(T,{modelValue:n(r),"onUpdate:modelValue":o[0]||(o[0]=a=>tt(r)?r.value=a:null),onChange:n(d)},null,8,["modelValue","onChange"])])]),_:1})),[[R,n(r).loading]]),n(c)?(s(),p(ot,{key:0,ref_key:"editRef",ref:u,"dict-data":n(F),onSuccess:n(d),onClose:o[1]||(o[1]=a=>c.value=!1)},null,8,["dict-data","onSuccess"])):et("",!0)])}}});export{Wt as default}; diff --git a/public/admin/assets/examined.af9b2757.js b/public/admin/assets/examined.af9b2757.js new file mode 100644 index 000000000..475357a49 --- /dev/null +++ b/public/admin/assets/examined.af9b2757.js @@ -0,0 +1 @@ +import{w as N,O as U,t as A,P as Q,I as j,Q as q}from"./element-plus.4328d892.js";import{_ as I}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{f as K,b as M}from"./index.ed71ac09.js";import{u as O}from"./usePaging.2ad8e1e6.js";import{u as z}from"./useDictOptions.8d37e54b.js";import{d as G,e as H}from"./examined.594ad8f6.js";import{d as b,s as J,r as C,$ as W,af as X,o as s,c as Y,M as m,u as n,K as p,L as l,U as e,R as h,a as g,S as Z,k as tt,Q as et,n as y}from"./@vue.51d7f2d8.js";import"./lodash.08438971.js";import{_ as ot}from"./editCate.vue_vue_type_script_setup_true_name_flowTypeEdit_lang.50c156e7.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.b940d6e3.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";const at={class:"mt-4"},it={class:"flex mt-4 justify-end"},nt=b({name:"flowTypeLists"}),Wt=b({...nt,setup(lt){const u=J(),c=C(!1),k=W({type:"",title:"",name:"",icon:"",department_ids:"",status:""}),E=C([]),D=t=>{E.value=t.map(({id:o})=>o)},{dictData:F}=z(""),{pager:r,getLists:d,resetParams:st,resetPage:rt}=O({fetchFun:H,params:k}),V=async()=>{var t;c.value=!0,await y(),(t=u.value)==null||t.open("add")},B=async t=>{var o,_;c.value=!0,await y(),(o=u.value)==null||o.open("edit"),(_=u.value)==null||_.setFormData(t)},S=async t=>{await K.confirm("\u786E\u5B9A\u8981\u5220\u9664\uFF1F"),await apiFlowTypeDelete({id:t}),d()},$=t=>{G({id:t.id,status:t.status})};return d(),(t,o)=>{const _=M,w=N,i=U,x=A,P=Q,T=I,L=j,f=X("perms"),R=q;return s(),Y("div",null,[m((s(),p(L,{class:"!border-none",shadow:"never"},{default:l(()=>[m((s(),p(w,{type:"primary",onClick:V},{icon:l(()=>[e(_,{name:"el-icon-Plus"})]),default:l(()=>[h(" \u65B0\u589E ")]),_:1})),[[f,["flow_type/add"]]]),g("div",at,[e(P,{data:n(r).lists,onSelectionChange:D},{default:l(()=>[h(Z(n(r))+" ",1),e(i,{label:"id",prop:"id","show-overflow-tooltip":"",width:"60"}),e(i,{label:"\u540D\u79F0",prop:"title","show-overflow-tooltip":""}),e(i,{label:"\u5E94\u7528\u90E8\u95E8",prop:"department","show-overflow-tooltip":""}),e(i,{label:"\u6807\u8BC6",prop:"name","show-overflow-tooltip":""}),e(i,{label:"\u56FE\u6807",prop:"icon","show-overflow-tooltip":""}),e(i,{label:"\u6240\u5C5E\u5206\u7C7B",prop:"type_name","show-overflow-tooltip":""}),m((s(),p(i,{label:"\u8D26\u53F7\u72B6\u6001","min-width":"100"},{default:l(({row:a})=>[e(x,{modelValue:a.status,"onUpdate:modelValue":v=>a.status=v,"active-value":1,"inactive-value":0,onChange:v=>$(a)},null,8,["modelValue","onUpdate:modelValue","onChange"])]),_:1})),[[f,["auth.admin/edit"]]]),e(i,{label:"\u64CD\u4F5C",align:"center",width:"auto",fixed:"right"},{default:l(({row:a})=>[m((s(),p(w,{type:"primary",link:"",onClick:v=>B(a)},{default:l(()=>[h(" \u7F16\u8F91 ")]),_:2},1032,["onClick"])),[[f,["flow/edit"]]]),m((s(),p(w,{type:"danger",link:"",onClick:v=>S(a.id)},{default:l(()=>[h(" \u5220\u9664 ")]),_:2},1032,["onClick"])),[[f,["flow/delete"]]])]),_:1})]),_:1},8,["data"])]),g("div",it,[e(T,{modelValue:n(r),"onUpdate:modelValue":o[0]||(o[0]=a=>tt(r)?r.value=a:null),onChange:n(d)},null,8,["modelValue","onChange"])])]),_:1})),[[R,n(r).loading]]),n(c)?(s(),p(ot,{key:0,ref_key:"editRef",ref:u,"dict-data":n(F),onSuccess:n(d),onClose:o[1]||(o[1]=a=>c.value=!1)},null,8,["dict-data","onSuccess"])):et("",!0)])}}});export{Wt as default}; diff --git a/public/admin/assets/examined.fccbde31.js b/public/admin/assets/examined.fccbde31.js new file mode 100644 index 000000000..aabdaee0b --- /dev/null +++ b/public/admin/assets/examined.fccbde31.js @@ -0,0 +1 @@ +import{r as e}from"./index.aa9bb752.js";function a(t){return e.get({url:"/cate/index",params:t})}function u(t){return e.get({url:"/flow/index",params:t})}function i(t){return e.post({url:"/cate/create",params:t})}function n(t){return e.post({url:"/flow/create",params:t})}function o(t){return e.get({url:"/cate/status",params:t})}function s(t){return e.get({url:"/flow/status",params:t})}function p(t){return e.get({url:"/flow/view",params:t})}function l(t){return e.get({url:"/approve.approve/lists",params:t})}function c(t){return e.get({url:"/approve.approve/audit",params:t})}export{i as a,p as b,n as c,o as d,a as e,s as f,u as g,l as h,c as i}; diff --git a/public/admin/assets/examinedFlow.0853126f.js b/public/admin/assets/examinedFlow.0853126f.js new file mode 100644 index 000000000..0565ce26c --- /dev/null +++ b/public/admin/assets/examinedFlow.0853126f.js @@ -0,0 +1 @@ +import{w as N,O as T,t as U,P as Q,I as j,Q as q}from"./element-plus.4328d892.js";import{_ as K}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{b as M}from"./index.ed71ac09.js";import{u as O}from"./usePaging.2ad8e1e6.js";import{u as z}from"./useDictOptions.8d37e54b.js";import{f as G,g as H}from"./examined.594ad8f6.js";import"./lodash.08438971.js";import{_ as J}from"./editFlow.vue_vue_type_script_setup_true_name_flowEdit_lang.fa903e6a.js";import{d as B,s as W,r as E,$ as X,af as Y,o as t,c as n,M as d,u as p,K as r,L as u,U as o,R as k,a as C,Q as l,k as Z,n as g}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.b940d6e3.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.67886d67.js";import"./admin.f28da7a1.js";const ee={class:"mt-4"},te={key:0},oe={key:1},ae={key:2},se={key:3},le={key:4},ie={key:5},ne={key:6},ue={key:7},pe={class:"flex mt-4 justify-end"},re=B({name:"flowLists"}),at=B({...re,setup(me){const c=W(),_=E(!1),D=X({name:"",check_type:"",type:"",flow_cate:"",department_ids:"",copy_uids:"",remark:"",flow_list:"",admin_id:"",status:"",delete_user_id:""}),b=E([]),A=a=>{b.value=a.map(({id:i})=>i)},{dictData:F}=z(""),{pager:m,getLists:y,resetParams:de,resetPage:ce}=O({fetchFun:H,params:D}),V=async()=>{var a;_.value=!0,await g(),(a=c.value)==null||a.open("add")},$=async a=>{var i,f;_.value=!0,await g(),(i=c.value)==null||i.open("edit"),(f=c.value)==null||f.setFormData(a)},S=a=>{console.log(a.status),G({id:a.id,status:a.status})};return y(),(a,i)=>{const f=M,w=N,s=T,x=U,P=Q,L=K,R=j,h=Y("perms"),I=q;return t(),n("div",null,[d((t(),r(R,{class:"!border-none",shadow:"never"},{default:u(()=>[d((t(),r(w,{type:"primary",onClick:V},{icon:u(()=>[o(f,{name:"el-icon-Plus"})]),default:u(()=>[k(" \u65B0\u589E ")]),_:1})),[[h,["flow/add"]]]),C("div",ee,[o(P,{data:p(m).lists,onSelectionChange:A},{default:u(()=>[o(s,{type:"selection",width:"55"}),o(s,{label:"\u5BA1\u6279\u6D41\u540D\u79F0",prop:"name","show-overflow-tooltip":""}),o(s,{label:"\u5E94\u7528\u6A21\u5757",prop:"type","show-overflow-tooltip":""},{default:u(({row:e})=>[e.type==1?(t(),n("span",te,"\u5047\u52E4")):l("",!0),e.type==2?(t(),n("span",oe,"\u884C\u653F")):l("",!0),e.type==3?(t(),n("span",ae,"\u8D22\u52A1")):l("",!0),e.type==4?(t(),n("span",se,"\u4EBA\u4E8B")):l("",!0),e.type==5?(t(),n("span",le,"\u5176\u4ED6")):l("",!0),e.type==6?(t(),n("span",ie,"\u62A5\u9500")):l("",!0),e.type==7?(t(),n("span",ne,"\u53D1\u7968")):l("",!0),e.type==8?(t(),n("span",ue,"\u5408\u540C")):l("",!0)]),_:1}),o(s,{label:"\u5E94\u7528\u5BA1\u6279\u7C7B\u578Bid",prop:"flow_cate","show-overflow-tooltip":""}),o(s,{label:"\u5E94\u7528\u90E8\u95E8",prop:"department","show-overflow-tooltip":""}),o(s,{label:"\u6284\u9001\u4EBAID",prop:"copy_uids","show-overflow-tooltip":""}),o(s,{label:"\u6D41\u7A0B\u8BF4\u660E",prop:"remark","show-overflow-tooltip":""}),o(s,{label:"\u6D41\u7A0B\u6570\u636E\u5E8F\u5217\u5316",prop:"flow_list","show-overflow-tooltip":""}),o(s,{label:"\u521B\u5EFA\u4EBAID",prop:"admin_id","show-overflow-tooltip":""}),d((t(),r(s,{label:"\u8D26\u53F7\u72B6\u6001","min-width":"100"},{default:u(({row:e})=>[e.root!=1?(t(),r(x,{key:0,modelValue:e.status,"onUpdate:modelValue":v=>e.status=v,"active-value":1,"inactive-value":0,onChange:v=>S(e)},null,8,["modelValue","onUpdate:modelValue","onChange"])):l("",!0)]),_:1})),[[h,["auth.admin/edit"]]]),o(s,{label:"\u5220\u9664\u4EBAID",prop:"delete_user_id","show-overflow-tooltip":""}),o(s,{label:"\u64CD\u4F5C",width:"120",fixed:"right"},{default:u(({row:e})=>[d((t(),r(w,{type:"primary",link:"",onClick:v=>$(e)},{default:u(()=>[k(" \u7F16\u8F91 ")]),_:2},1032,["onClick"])),[[h,["flow/edit"]]]),d((t(),r(w,{type:"danger",link:"",onClick:v=>a.handleDelete(e.id)},{default:u(()=>[k(" \u5220\u9664 ")]),_:2},1032,["onClick"])),[[h,["flow/delete"]]])]),_:1})]),_:1},8,["data"])]),C("div",pe,[o(L,{modelValue:p(m),"onUpdate:modelValue":i[0]||(i[0]=e=>Z(m)?m.value=e:null),onChange:p(y)},null,8,["modelValue","onChange"])])]),_:1})),[[I,p(m).loading]]),p(_)?(t(),r(J,{key:0,ref_key:"editRef",ref:c,"dict-data":p(F),onSuccess:p(y),onClose:i[1]||(i[1]=e=>_.value=!1)},null,8,["dict-data","onSuccess"])):l("",!0)])}}});export{at as default}; diff --git a/public/admin/assets/examinedFlow.8be4ec69.js b/public/admin/assets/examinedFlow.8be4ec69.js new file mode 100644 index 000000000..09f0c1f47 --- /dev/null +++ b/public/admin/assets/examinedFlow.8be4ec69.js @@ -0,0 +1 @@ +import{w as N,O as T,t as U,P as Q,I as j,Q as q}from"./element-plus.4328d892.js";import{_ as K}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{b as M}from"./index.aa9bb752.js";import{u as O}from"./usePaging.2ad8e1e6.js";import{u as z}from"./useDictOptions.a61fcf9f.js";import{f as G,g as H}from"./examined.fccbde31.js";import"./lodash.08438971.js";import{_ as J}from"./editFlow.vue_vue_type_script_setup_true_name_flowEdit_lang.9c441111.js";import{d as B,s as W,r as E,$ as X,af as Y,o as t,c as n,M as d,u as p,K as r,L as u,U as o,R as k,a as C,Q as l,k as Z,n as g}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.fa872673.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.8f34f1b3.js";import"./admin.1cd61358.js";const ee={class:"mt-4"},te={key:0},oe={key:1},ae={key:2},se={key:3},le={key:4},ie={key:5},ne={key:6},ue={key:7},pe={class:"flex mt-4 justify-end"},re=B({name:"flowLists"}),at=B({...re,setup(me){const c=W(),_=E(!1),D=X({name:"",check_type:"",type:"",flow_cate:"",department_ids:"",copy_uids:"",remark:"",flow_list:"",admin_id:"",status:"",delete_user_id:""}),b=E([]),A=a=>{b.value=a.map(({id:i})=>i)},{dictData:F}=z(""),{pager:m,getLists:y,resetParams:de,resetPage:ce}=O({fetchFun:H,params:D}),V=async()=>{var a;_.value=!0,await g(),(a=c.value)==null||a.open("add")},$=async a=>{var i,f;_.value=!0,await g(),(i=c.value)==null||i.open("edit"),(f=c.value)==null||f.setFormData(a)},S=a=>{console.log(a.status),G({id:a.id,status:a.status})};return y(),(a,i)=>{const f=M,w=N,s=T,x=U,P=Q,L=K,R=j,h=Y("perms"),I=q;return t(),n("div",null,[d((t(),r(R,{class:"!border-none",shadow:"never"},{default:u(()=>[d((t(),r(w,{type:"primary",onClick:V},{icon:u(()=>[o(f,{name:"el-icon-Plus"})]),default:u(()=>[k(" \u65B0\u589E ")]),_:1})),[[h,["flow/add"]]]),C("div",ee,[o(P,{data:p(m).lists,onSelectionChange:A},{default:u(()=>[o(s,{type:"selection",width:"55"}),o(s,{label:"\u5BA1\u6279\u6D41\u540D\u79F0",prop:"name","show-overflow-tooltip":""}),o(s,{label:"\u5E94\u7528\u6A21\u5757",prop:"type","show-overflow-tooltip":""},{default:u(({row:e})=>[e.type==1?(t(),n("span",te,"\u5047\u52E4")):l("",!0),e.type==2?(t(),n("span",oe,"\u884C\u653F")):l("",!0),e.type==3?(t(),n("span",ae,"\u8D22\u52A1")):l("",!0),e.type==4?(t(),n("span",se,"\u4EBA\u4E8B")):l("",!0),e.type==5?(t(),n("span",le,"\u5176\u4ED6")):l("",!0),e.type==6?(t(),n("span",ie,"\u62A5\u9500")):l("",!0),e.type==7?(t(),n("span",ne,"\u53D1\u7968")):l("",!0),e.type==8?(t(),n("span",ue,"\u5408\u540C")):l("",!0)]),_:1}),o(s,{label:"\u5E94\u7528\u5BA1\u6279\u7C7B\u578Bid",prop:"flow_cate","show-overflow-tooltip":""}),o(s,{label:"\u5E94\u7528\u90E8\u95E8",prop:"department","show-overflow-tooltip":""}),o(s,{label:"\u6284\u9001\u4EBAID",prop:"copy_uids","show-overflow-tooltip":""}),o(s,{label:"\u6D41\u7A0B\u8BF4\u660E",prop:"remark","show-overflow-tooltip":""}),o(s,{label:"\u6D41\u7A0B\u6570\u636E\u5E8F\u5217\u5316",prop:"flow_list","show-overflow-tooltip":""}),o(s,{label:"\u521B\u5EFA\u4EBAID",prop:"admin_id","show-overflow-tooltip":""}),d((t(),r(s,{label:"\u8D26\u53F7\u72B6\u6001","min-width":"100"},{default:u(({row:e})=>[e.root!=1?(t(),r(x,{key:0,modelValue:e.status,"onUpdate:modelValue":v=>e.status=v,"active-value":1,"inactive-value":0,onChange:v=>S(e)},null,8,["modelValue","onUpdate:modelValue","onChange"])):l("",!0)]),_:1})),[[h,["auth.admin/edit"]]]),o(s,{label:"\u5220\u9664\u4EBAID",prop:"delete_user_id","show-overflow-tooltip":""}),o(s,{label:"\u64CD\u4F5C",width:"120",fixed:"right"},{default:u(({row:e})=>[d((t(),r(w,{type:"primary",link:"",onClick:v=>$(e)},{default:u(()=>[k(" \u7F16\u8F91 ")]),_:2},1032,["onClick"])),[[h,["flow/edit"]]]),d((t(),r(w,{type:"danger",link:"",onClick:v=>a.handleDelete(e.id)},{default:u(()=>[k(" \u5220\u9664 ")]),_:2},1032,["onClick"])),[[h,["flow/delete"]]])]),_:1})]),_:1},8,["data"])]),C("div",pe,[o(L,{modelValue:p(m),"onUpdate:modelValue":i[0]||(i[0]=e=>Z(m)?m.value=e:null),onChange:p(y)},null,8,["modelValue","onChange"])])]),_:1})),[[I,p(m).loading]]),p(_)?(t(),r(J,{key:0,ref_key:"editRef",ref:c,"dict-data":p(F),onSuccess:p(y),onClose:i[1]||(i[1]=e=>_.value=!1)},null,8,["dict-data","onSuccess"])):l("",!0)])}}});export{at as default}; diff --git a/public/admin/assets/examinedFlow.c3d4d5da.js b/public/admin/assets/examinedFlow.c3d4d5da.js new file mode 100644 index 000000000..a91079431 --- /dev/null +++ b/public/admin/assets/examinedFlow.c3d4d5da.js @@ -0,0 +1 @@ +import{w as N,O as T,t as U,P as Q,I as j,Q as q}from"./element-plus.4328d892.js";import{_ as K}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{b as M}from"./index.37f7aea6.js";import{u as O}from"./usePaging.2ad8e1e6.js";import{u as z}from"./useDictOptions.a45fc8ac.js";import{f as G,g as H}from"./examined.28c87019.js";import"./lodash.08438971.js";import{_ as J}from"./editFlow.vue_vue_type_script_setup_true_name_flowEdit_lang.15e7008f.js";import{d as B,s as W,r as E,$ as X,af as Y,o as t,c as n,M as d,u as p,K as r,L as u,U as o,R as k,a as C,Q as l,k as Z,n as g}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.5759a1a6.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.a896e319.js";import"./admin.f0e2c7b9.js";const ee={class:"mt-4"},te={key:0},oe={key:1},ae={key:2},se={key:3},le={key:4},ie={key:5},ne={key:6},ue={key:7},pe={class:"flex mt-4 justify-end"},re=B({name:"flowLists"}),at=B({...re,setup(me){const c=W(),_=E(!1),D=X({name:"",check_type:"",type:"",flow_cate:"",department_ids:"",copy_uids:"",remark:"",flow_list:"",admin_id:"",status:"",delete_user_id:""}),b=E([]),A=a=>{b.value=a.map(({id:i})=>i)},{dictData:F}=z(""),{pager:m,getLists:y,resetParams:de,resetPage:ce}=O({fetchFun:H,params:D}),V=async()=>{var a;_.value=!0,await g(),(a=c.value)==null||a.open("add")},$=async a=>{var i,f;_.value=!0,await g(),(i=c.value)==null||i.open("edit"),(f=c.value)==null||f.setFormData(a)},S=a=>{console.log(a.status),G({id:a.id,status:a.status})};return y(),(a,i)=>{const f=M,w=N,s=T,x=U,P=Q,L=K,R=j,h=Y("perms"),I=q;return t(),n("div",null,[d((t(),r(R,{class:"!border-none",shadow:"never"},{default:u(()=>[d((t(),r(w,{type:"primary",onClick:V},{icon:u(()=>[o(f,{name:"el-icon-Plus"})]),default:u(()=>[k(" \u65B0\u589E ")]),_:1})),[[h,["flow/add"]]]),C("div",ee,[o(P,{data:p(m).lists,onSelectionChange:A},{default:u(()=>[o(s,{type:"selection",width:"55"}),o(s,{label:"\u5BA1\u6279\u6D41\u540D\u79F0",prop:"name","show-overflow-tooltip":""}),o(s,{label:"\u5E94\u7528\u6A21\u5757",prop:"type","show-overflow-tooltip":""},{default:u(({row:e})=>[e.type==1?(t(),n("span",te,"\u5047\u52E4")):l("",!0),e.type==2?(t(),n("span",oe,"\u884C\u653F")):l("",!0),e.type==3?(t(),n("span",ae,"\u8D22\u52A1")):l("",!0),e.type==4?(t(),n("span",se,"\u4EBA\u4E8B")):l("",!0),e.type==5?(t(),n("span",le,"\u5176\u4ED6")):l("",!0),e.type==6?(t(),n("span",ie,"\u62A5\u9500")):l("",!0),e.type==7?(t(),n("span",ne,"\u53D1\u7968")):l("",!0),e.type==8?(t(),n("span",ue,"\u5408\u540C")):l("",!0)]),_:1}),o(s,{label:"\u5E94\u7528\u5BA1\u6279\u7C7B\u578Bid",prop:"flow_cate","show-overflow-tooltip":""}),o(s,{label:"\u5E94\u7528\u90E8\u95E8",prop:"department","show-overflow-tooltip":""}),o(s,{label:"\u6284\u9001\u4EBAID",prop:"copy_uids","show-overflow-tooltip":""}),o(s,{label:"\u6D41\u7A0B\u8BF4\u660E",prop:"remark","show-overflow-tooltip":""}),o(s,{label:"\u6D41\u7A0B\u6570\u636E\u5E8F\u5217\u5316",prop:"flow_list","show-overflow-tooltip":""}),o(s,{label:"\u521B\u5EFA\u4EBAID",prop:"admin_id","show-overflow-tooltip":""}),d((t(),r(s,{label:"\u8D26\u53F7\u72B6\u6001","min-width":"100"},{default:u(({row:e})=>[e.root!=1?(t(),r(x,{key:0,modelValue:e.status,"onUpdate:modelValue":v=>e.status=v,"active-value":1,"inactive-value":0,onChange:v=>S(e)},null,8,["modelValue","onUpdate:modelValue","onChange"])):l("",!0)]),_:1})),[[h,["auth.admin/edit"]]]),o(s,{label:"\u5220\u9664\u4EBAID",prop:"delete_user_id","show-overflow-tooltip":""}),o(s,{label:"\u64CD\u4F5C",width:"120",fixed:"right"},{default:u(({row:e})=>[d((t(),r(w,{type:"primary",link:"",onClick:v=>$(e)},{default:u(()=>[k(" \u7F16\u8F91 ")]),_:2},1032,["onClick"])),[[h,["flow/edit"]]]),d((t(),r(w,{type:"danger",link:"",onClick:v=>a.handleDelete(e.id)},{default:u(()=>[k(" \u5220\u9664 ")]),_:2},1032,["onClick"])),[[h,["flow/delete"]]])]),_:1})]),_:1},8,["data"])]),C("div",pe,[o(L,{modelValue:p(m),"onUpdate:modelValue":i[0]||(i[0]=e=>Z(m)?m.value=e:null),onChange:p(y)},null,8,["modelValue","onChange"])])]),_:1})),[[I,p(m).loading]]),p(_)?(t(),r(J,{key:0,ref_key:"editRef",ref:c,"dict-data":p(F),onSuccess:p(y),onClose:i[1]||(i[1]=e=>_.value=!1)},null,8,["dict-data","onSuccess"])):l("",!0)])}}});export{at as default}; diff --git a/public/admin/assets/file.0a761939.js b/public/admin/assets/file.0a761939.js new file mode 100644 index 000000000..e5de61ac7 --- /dev/null +++ b/public/admin/assets/file.0a761939.js @@ -0,0 +1 @@ +import{I as n,w as p,B as _}from"./element-plus.4328d892.js";import{_ as v}from"./picker.597494a6.js";import{d as c,$ as F,o as f,c as x,U as s,L as m,a as e,u as l,R as V}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.b940d6e3.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.ed71ac09.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.c38e1dd6.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./index.f2c7f81b.js";import"./index.9c616a0c.js";import"./index.vue_vue_type_script_setup_true_lang.dc835bba.js";import"./usePaging.2ad8e1e6.js";import"./vue3-video-play.b911321b.js";import"./vuedraggable.0cb40d3a.js";import"./vue.5de34049.js";import"./sortablejs.ef73fc5c.js";const E={class:"flex flex-wrap"},h={class:"flex m-4"},A=e("div",{class:"mr-4"},"\u9009\u62E9\u56FE\u7247\uFF1A",-1),D={class:"flex m-4"},w=e("div",{class:"mr-4"},"\u9009\u62E9\u89C6\u9891\uFF1A",-1),B={class:"flex flex-1 m-4"},U=e("div",{class:"mr-4"},"\u591A\u5F20\u56FE\u7247\uFF1A",-1),C={class:"flex-1"},b={class:"flex flex-wrap"},k={class:"flex m-4"},N=e("div",{class:"mr-4"},"\u81EA\u5B9A\u4E49\u9009\u62E9\u5668\u5927\u5C0F\uFF1A",-1),I={class:"flex m-4"},g=e("div",{class:"mr-4"},"\u4F7F\u7528\u63D2\u69FD\uFF1A",-1),y={class:"flex m-4"},z=e("div",{class:"mr-4"},"\u9009\u51FA\u5730\u5740\u4E0D\u5E26\u57DF\u540D\uFF1A",-1),L={class:"flex m-4 items-center"},R=e("div",{class:"w-20 flex-none"},"\u5E26\u57DF\u540D\uFF1A",-1),T={class:"flex m-4 items-center"},$=e("div",{class:"w-20 flex-none"},"\u4E0D\u5E26\u57DF\u540D\uFF1A",-1),ze=c({__name:"file",setup(j){const o=F({value1:"",value2:[],value3:"",value4:"",value5:"",value6:""});return(q,t)=>{const i=v,a=n,r=p,d=_;return f(),x("div",null,[s(a,{header:"\u57FA\u7840\u4F7F\u7528",shadow:"none",class:"!border-none"},{default:m(()=>[e("div",E,[e("div",h,[A,s(i,{modelValue:l(o).value1,"onUpdate:modelValue":t[0]||(t[0]=u=>l(o).value1=u)},null,8,["modelValue"])]),e("div",D,[w,s(i,{type:"video",modelValue:l(o).value3,"onUpdate:modelValue":t[1]||(t[1]=u=>l(o).value3=u)},null,8,["modelValue"])]),e("div",B,[U,e("div",C,[s(i,{limit:4,modelValue:l(o).value2,"onUpdate:modelValue":t[2]||(t[2]=u=>l(o).value2=u)},null,8,["modelValue"])])])])]),_:1}),s(a,{header:"\u8FDB\u9636\u7528\u6CD5",shadow:"none",class:"!border-none mt-4"},{default:m(()=>[e("div",b,[e("div",k,[N,s(i,{size:"60px",modelValue:l(o).value4,"onUpdate:modelValue":t[3]||(t[3]=u=>l(o).value4=u)},null,8,["modelValue"])]),e("div",I,[g,s(i,{modelValue:l(o).value5,"onUpdate:modelValue":t[4]||(t[4]=u=>l(o).value5=u)},{upload:m(()=>[s(r,null,{default:m(()=>[V("\u9009\u62E9\u6587\u4EF6")]),_:1})]),_:1},8,["modelValue"])]),e("div",y,[z,s(i,{"exclude-domain":!0,modelValue:l(o).value6,"onUpdate:modelValue":t[5]||(t[5]=u=>l(o).value6=u)},null,8,["modelValue"])])]),e("div",null,[e("div",L,[R,s(d,{class:"w-[500px]","model-value":l(o).value5},null,8,["model-value"])]),e("div",T,[$,s(d,{class:"w-[500px]","model-value":l(o).value6},null,8,["model-value"])])])]),_:1})])}}});export{ze as default}; diff --git a/public/admin/assets/file.0fe5ba58.js b/public/admin/assets/file.0fe5ba58.js new file mode 100644 index 000000000..2e7c522cf --- /dev/null +++ b/public/admin/assets/file.0fe5ba58.js @@ -0,0 +1 @@ +import{I as n,w as p,B as _}from"./element-plus.4328d892.js";import{_ as v}from"./picker.45aea54f.js";import{d as c,$ as F,o as f,c as x,U as s,L as m,a as e,u as l,R as V}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.fa872673.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.aa9bb752.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.c47e74f8.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./index.a9a11abe.js";import"./index.a450f1bb.js";import"./index.vue_vue_type_script_setup_true_lang.dc835bba.js";import"./usePaging.2ad8e1e6.js";import"./vue3-video-play.b911321b.js";import"./vuedraggable.0cb40d3a.js";import"./vue.5de34049.js";import"./sortablejs.ef73fc5c.js";const E={class:"flex flex-wrap"},h={class:"flex m-4"},A=e("div",{class:"mr-4"},"\u9009\u62E9\u56FE\u7247\uFF1A",-1),D={class:"flex m-4"},w=e("div",{class:"mr-4"},"\u9009\u62E9\u89C6\u9891\uFF1A",-1),B={class:"flex flex-1 m-4"},U=e("div",{class:"mr-4"},"\u591A\u5F20\u56FE\u7247\uFF1A",-1),C={class:"flex-1"},b={class:"flex flex-wrap"},k={class:"flex m-4"},N=e("div",{class:"mr-4"},"\u81EA\u5B9A\u4E49\u9009\u62E9\u5668\u5927\u5C0F\uFF1A",-1),I={class:"flex m-4"},g=e("div",{class:"mr-4"},"\u4F7F\u7528\u63D2\u69FD\uFF1A",-1),y={class:"flex m-4"},z=e("div",{class:"mr-4"},"\u9009\u51FA\u5730\u5740\u4E0D\u5E26\u57DF\u540D\uFF1A",-1),L={class:"flex m-4 items-center"},R=e("div",{class:"w-20 flex-none"},"\u5E26\u57DF\u540D\uFF1A",-1),T={class:"flex m-4 items-center"},$=e("div",{class:"w-20 flex-none"},"\u4E0D\u5E26\u57DF\u540D\uFF1A",-1),ze=c({__name:"file",setup(j){const o=F({value1:"",value2:[],value3:"",value4:"",value5:"",value6:""});return(q,t)=>{const i=v,a=n,r=p,d=_;return f(),x("div",null,[s(a,{header:"\u57FA\u7840\u4F7F\u7528",shadow:"none",class:"!border-none"},{default:m(()=>[e("div",E,[e("div",h,[A,s(i,{modelValue:l(o).value1,"onUpdate:modelValue":t[0]||(t[0]=u=>l(o).value1=u)},null,8,["modelValue"])]),e("div",D,[w,s(i,{type:"video",modelValue:l(o).value3,"onUpdate:modelValue":t[1]||(t[1]=u=>l(o).value3=u)},null,8,["modelValue"])]),e("div",B,[U,e("div",C,[s(i,{limit:4,modelValue:l(o).value2,"onUpdate:modelValue":t[2]||(t[2]=u=>l(o).value2=u)},null,8,["modelValue"])])])])]),_:1}),s(a,{header:"\u8FDB\u9636\u7528\u6CD5",shadow:"none",class:"!border-none mt-4"},{default:m(()=>[e("div",b,[e("div",k,[N,s(i,{size:"60px",modelValue:l(o).value4,"onUpdate:modelValue":t[3]||(t[3]=u=>l(o).value4=u)},null,8,["modelValue"])]),e("div",I,[g,s(i,{modelValue:l(o).value5,"onUpdate:modelValue":t[4]||(t[4]=u=>l(o).value5=u)},{upload:m(()=>[s(r,null,{default:m(()=>[V("\u9009\u62E9\u6587\u4EF6")]),_:1})]),_:1},8,["modelValue"])]),e("div",y,[z,s(i,{"exclude-domain":!0,modelValue:l(o).value6,"onUpdate:modelValue":t[5]||(t[5]=u=>l(o).value6=u)},null,8,["modelValue"])])]),e("div",null,[e("div",L,[R,s(d,{class:"w-[500px]","model-value":l(o).value5},null,8,["model-value"])]),e("div",T,[$,s(d,{class:"w-[500px]","model-value":l(o).value6},null,8,["model-value"])])])]),_:1})])}}});export{ze as default}; diff --git a/public/admin/assets/file.46693a70.js b/public/admin/assets/file.46693a70.js new file mode 100644 index 000000000..28e6de90e --- /dev/null +++ b/public/admin/assets/file.46693a70.js @@ -0,0 +1 @@ +import{I as n,w as p,B as _}from"./element-plus.4328d892.js";import{_ as v}from"./picker.3821e495.js";import{d as c,$ as F,o as f,c as x,U as s,L as m,a as e,u as l,R as V}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.5759a1a6.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.37f7aea6.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.af446662.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./index.fe1d30dd.js";import"./index.5f944d34.js";import"./index.vue_vue_type_script_setup_true_lang.dc835bba.js";import"./usePaging.2ad8e1e6.js";import"./vue3-video-play.b911321b.js";import"./vuedraggable.0cb40d3a.js";import"./vue.5de34049.js";import"./sortablejs.ef73fc5c.js";const E={class:"flex flex-wrap"},h={class:"flex m-4"},A=e("div",{class:"mr-4"},"\u9009\u62E9\u56FE\u7247\uFF1A",-1),D={class:"flex m-4"},w=e("div",{class:"mr-4"},"\u9009\u62E9\u89C6\u9891\uFF1A",-1),B={class:"flex flex-1 m-4"},U=e("div",{class:"mr-4"},"\u591A\u5F20\u56FE\u7247\uFF1A",-1),C={class:"flex-1"},b={class:"flex flex-wrap"},k={class:"flex m-4"},N=e("div",{class:"mr-4"},"\u81EA\u5B9A\u4E49\u9009\u62E9\u5668\u5927\u5C0F\uFF1A",-1),I={class:"flex m-4"},g=e("div",{class:"mr-4"},"\u4F7F\u7528\u63D2\u69FD\uFF1A",-1),y={class:"flex m-4"},z=e("div",{class:"mr-4"},"\u9009\u51FA\u5730\u5740\u4E0D\u5E26\u57DF\u540D\uFF1A",-1),L={class:"flex m-4 items-center"},R=e("div",{class:"w-20 flex-none"},"\u5E26\u57DF\u540D\uFF1A",-1),T={class:"flex m-4 items-center"},$=e("div",{class:"w-20 flex-none"},"\u4E0D\u5E26\u57DF\u540D\uFF1A",-1),ze=c({__name:"file",setup(j){const o=F({value1:"",value2:[],value3:"",value4:"",value5:"",value6:""});return(q,t)=>{const i=v,a=n,r=p,d=_;return f(),x("div",null,[s(a,{header:"\u57FA\u7840\u4F7F\u7528",shadow:"none",class:"!border-none"},{default:m(()=>[e("div",E,[e("div",h,[A,s(i,{modelValue:l(o).value1,"onUpdate:modelValue":t[0]||(t[0]=u=>l(o).value1=u)},null,8,["modelValue"])]),e("div",D,[w,s(i,{type:"video",modelValue:l(o).value3,"onUpdate:modelValue":t[1]||(t[1]=u=>l(o).value3=u)},null,8,["modelValue"])]),e("div",B,[U,e("div",C,[s(i,{limit:4,modelValue:l(o).value2,"onUpdate:modelValue":t[2]||(t[2]=u=>l(o).value2=u)},null,8,["modelValue"])])])])]),_:1}),s(a,{header:"\u8FDB\u9636\u7528\u6CD5",shadow:"none",class:"!border-none mt-4"},{default:m(()=>[e("div",b,[e("div",k,[N,s(i,{size:"60px",modelValue:l(o).value4,"onUpdate:modelValue":t[3]||(t[3]=u=>l(o).value4=u)},null,8,["modelValue"])]),e("div",I,[g,s(i,{modelValue:l(o).value5,"onUpdate:modelValue":t[4]||(t[4]=u=>l(o).value5=u)},{upload:m(()=>[s(r,null,{default:m(()=>[V("\u9009\u62E9\u6587\u4EF6")]),_:1})]),_:1},8,["modelValue"])]),e("div",y,[z,s(i,{"exclude-domain":!0,modelValue:l(o).value6,"onUpdate:modelValue":t[5]||(t[5]=u=>l(o).value6=u)},null,8,["modelValue"])])]),e("div",null,[e("div",L,[R,s(d,{class:"w-[500px]","model-value":l(o).value5},null,8,["model-value"])]),e("div",T,[$,s(d,{class:"w-[500px]","model-value":l(o).value6},null,8,["model-value"])])])]),_:1})])}}});export{ze as default}; diff --git a/public/admin/assets/filing.047e56b5.js b/public/admin/assets/filing.047e56b5.js new file mode 100644 index 000000000..c44a353fd --- /dev/null +++ b/public/admin/assets/filing.047e56b5.js @@ -0,0 +1 @@ +import{_ as k}from"./index.be5645df.js";import{B as V,C as A,w as U,D as x,I}from"./element-plus.4328d892.js";import{f as N,b as L}from"./index.ed71ac09.js";import{_ as T}from"./index.f2c7f81b.js";import{g as $,s as K}from"./website.3e3234e6.js";import{d as h,r as M,af as P,o as n,c as _,U as e,L as o,T as R,a7 as S,u as d,K as f,a as t,R as F,M as j}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const q={class:"website-filing"},z=t("div",{class:"mb-5"},"\u7AD9\u70B9\u5E95\u90E8\u7248\u6743\u5907\u6848\u4FE1\u606F\u8BBE\u7F6E",-1),G={class:"py-4 bg-fill-lighter"},H={class:"w-80"},J={class:"w-80"},O=t("div",{class:"form-tips"},"\u8DF3\u8F6C\u94FE\u63A5\u4E0D\u8BBE\u7F6E\uFF0C\u5219\u4E0D\u8DF3\u8F6C",-1),Q=h({name:"webFilling"}),Te=h({...Q,setup(W){const l=M([{key:"",value:""}]),r=async()=>{const u=await $();!u.length||(l.value=u)},v=()=>{l.value.push({key:"",value:""})},E=u=>{if(l.value.length<=1)return N.msgError("\u81F3\u5C11\u4FDD\u7559\u4E00\u4E2A");l.value.splice(u,1)},g=async()=>{await K({config:l.value}),r()};return r(),(u,X)=>{const i=V,p=A,w=T,D=L,m=U,b=x,C=I,B=k,y=P("perms");return n(),_("div",q,[e(C,{shadow:"never",class:"!border-none"},{default:o(()=>[z,e(b,{ref:"form",class:"ls-form","label-width":"100px"},{default:o(()=>[(n(!0),_(R,null,S(d(l),(a,c)=>(n(),f(w,{class:"mb-4",key:c,"show-close":d(l).length>1,onClose:s=>E(c)},{default:o(()=>[t("div",G,[e(p,{label:"\u663E\u793A\u540D\u79F0",prop:"icp_link"},{default:o(()=>[t("div",H,[t("div",null,[e(i,{modelValue:a.key,"onUpdate:modelValue":s=>a.key=s,placeholder:"\u8BF7\u8F93\u5165\u540D\u79F0"},null,8,["modelValue","onUpdate:modelValue"])])])]),_:2},1024),e(p,{label:"\u8DF3\u8F6C\u94FE\u63A5",prop:"icp_link"},{default:o(()=>[t("div",J,[t("div",null,[e(i,{modelValue:a.value,"onUpdate:modelValue":s=>a.value=s,placeholder:"\u8BF7\u8F93\u5165\u94FE\u63A5\uFF0C\u4F8B\u5982\uFF1Ahttp://www.beian.gov.cn"},null,8,["modelValue","onUpdate:modelValue"])]),O])]),_:2},1024)])]),_:2},1032,["show-close","onClose"]))),128)),t("div",null,[e(m,{type:"primary",onClick:v},{default:o(()=>[e(D,{name:"el-icon-Plus"}),F(" \u6DFB\u52A0 ")]),_:1})])]),_:1},512)]),_:1}),j((n(),f(B,null,{default:o(()=>[e(m,{type:"primary",onClick:g},{default:o(()=>[F("\u4FDD\u5B58")]),_:1})]),_:1})),[[y,["setting.web.web_setting/setCopyright"]]])])}}});export{Te as default}; diff --git a/public/admin/assets/filing.25b6fb20.js b/public/admin/assets/filing.25b6fb20.js new file mode 100644 index 000000000..e27c8b492 --- /dev/null +++ b/public/admin/assets/filing.25b6fb20.js @@ -0,0 +1 @@ +import{_ as k}from"./index.fd04a214.js";import{B as V,C as A,w as U,D as x,I}from"./element-plus.4328d892.js";import{f as N,b as L}from"./index.37f7aea6.js";import{_ as T}from"./index.fe1d30dd.js";import{g as $,s as K}from"./website.7956cd42.js";import{d as h,r as M,af as P,o as n,c as _,U as e,L as o,T as R,a7 as S,u as d,K as f,a as t,R as F,M as j}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const q={class:"website-filing"},z=t("div",{class:"mb-5"},"\u7AD9\u70B9\u5E95\u90E8\u7248\u6743\u5907\u6848\u4FE1\u606F\u8BBE\u7F6E",-1),G={class:"py-4 bg-fill-lighter"},H={class:"w-80"},J={class:"w-80"},O=t("div",{class:"form-tips"},"\u8DF3\u8F6C\u94FE\u63A5\u4E0D\u8BBE\u7F6E\uFF0C\u5219\u4E0D\u8DF3\u8F6C",-1),Q=h({name:"webFilling"}),Te=h({...Q,setup(W){const l=M([{key:"",value:""}]),r=async()=>{const u=await $();!u.length||(l.value=u)},v=()=>{l.value.push({key:"",value:""})},E=u=>{if(l.value.length<=1)return N.msgError("\u81F3\u5C11\u4FDD\u7559\u4E00\u4E2A");l.value.splice(u,1)},g=async()=>{await K({config:l.value}),r()};return r(),(u,X)=>{const i=V,p=A,w=T,D=L,m=U,b=x,C=I,B=k,y=P("perms");return n(),_("div",q,[e(C,{shadow:"never",class:"!border-none"},{default:o(()=>[z,e(b,{ref:"form",class:"ls-form","label-width":"100px"},{default:o(()=>[(n(!0),_(R,null,S(d(l),(a,c)=>(n(),f(w,{class:"mb-4",key:c,"show-close":d(l).length>1,onClose:s=>E(c)},{default:o(()=>[t("div",G,[e(p,{label:"\u663E\u793A\u540D\u79F0",prop:"icp_link"},{default:o(()=>[t("div",H,[t("div",null,[e(i,{modelValue:a.key,"onUpdate:modelValue":s=>a.key=s,placeholder:"\u8BF7\u8F93\u5165\u540D\u79F0"},null,8,["modelValue","onUpdate:modelValue"])])])]),_:2},1024),e(p,{label:"\u8DF3\u8F6C\u94FE\u63A5",prop:"icp_link"},{default:o(()=>[t("div",J,[t("div",null,[e(i,{modelValue:a.value,"onUpdate:modelValue":s=>a.value=s,placeholder:"\u8BF7\u8F93\u5165\u94FE\u63A5\uFF0C\u4F8B\u5982\uFF1Ahttp://www.beian.gov.cn"},null,8,["modelValue","onUpdate:modelValue"])]),O])]),_:2},1024)])]),_:2},1032,["show-close","onClose"]))),128)),t("div",null,[e(m,{type:"primary",onClick:v},{default:o(()=>[e(D,{name:"el-icon-Plus"}),F(" \u6DFB\u52A0 ")]),_:1})])]),_:1},512)]),_:1}),j((n(),f(B,null,{default:o(()=>[e(m,{type:"primary",onClick:g},{default:o(()=>[F("\u4FDD\u5B58")]),_:1})]),_:1})),[[y,["setting.web.web_setting/setCopyright"]]])])}}});export{Te as default}; diff --git a/public/admin/assets/filing.f822a86f.js b/public/admin/assets/filing.f822a86f.js new file mode 100644 index 000000000..846bf0a11 --- /dev/null +++ b/public/admin/assets/filing.f822a86f.js @@ -0,0 +1 @@ +import{_ as k}from"./index.13ef78d6.js";import{B as V,C as A,w as U,D as x,I}from"./element-plus.4328d892.js";import{f as N,b as L}from"./index.aa9bb752.js";import{_ as T}from"./index.a9a11abe.js";import{g as $,s as K}from"./website.dab3e7a6.js";import{d as h,r as M,af as P,o as n,c as _,U as e,L as o,T as R,a7 as S,u as d,K as f,a as t,R as F,M as j}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const q={class:"website-filing"},z=t("div",{class:"mb-5"},"\u7AD9\u70B9\u5E95\u90E8\u7248\u6743\u5907\u6848\u4FE1\u606F\u8BBE\u7F6E",-1),G={class:"py-4 bg-fill-lighter"},H={class:"w-80"},J={class:"w-80"},O=t("div",{class:"form-tips"},"\u8DF3\u8F6C\u94FE\u63A5\u4E0D\u8BBE\u7F6E\uFF0C\u5219\u4E0D\u8DF3\u8F6C",-1),Q=h({name:"webFilling"}),Te=h({...Q,setup(W){const l=M([{key:"",value:""}]),r=async()=>{const u=await $();!u.length||(l.value=u)},v=()=>{l.value.push({key:"",value:""})},E=u=>{if(l.value.length<=1)return N.msgError("\u81F3\u5C11\u4FDD\u7559\u4E00\u4E2A");l.value.splice(u,1)},g=async()=>{await K({config:l.value}),r()};return r(),(u,X)=>{const i=V,p=A,w=T,D=L,m=U,b=x,C=I,B=k,y=P("perms");return n(),_("div",q,[e(C,{shadow:"never",class:"!border-none"},{default:o(()=>[z,e(b,{ref:"form",class:"ls-form","label-width":"100px"},{default:o(()=>[(n(!0),_(R,null,S(d(l),(a,c)=>(n(),f(w,{class:"mb-4",key:c,"show-close":d(l).length>1,onClose:s=>E(c)},{default:o(()=>[t("div",G,[e(p,{label:"\u663E\u793A\u540D\u79F0",prop:"icp_link"},{default:o(()=>[t("div",H,[t("div",null,[e(i,{modelValue:a.key,"onUpdate:modelValue":s=>a.key=s,placeholder:"\u8BF7\u8F93\u5165\u540D\u79F0"},null,8,["modelValue","onUpdate:modelValue"])])])]),_:2},1024),e(p,{label:"\u8DF3\u8F6C\u94FE\u63A5",prop:"icp_link"},{default:o(()=>[t("div",J,[t("div",null,[e(i,{modelValue:a.value,"onUpdate:modelValue":s=>a.value=s,placeholder:"\u8BF7\u8F93\u5165\u94FE\u63A5\uFF0C\u4F8B\u5982\uFF1Ahttp://www.beian.gov.cn"},null,8,["modelValue","onUpdate:modelValue"])]),O])]),_:2},1024)])]),_:2},1032,["show-close","onClose"]))),128)),t("div",null,[e(m,{type:"primary",onClick:v},{default:o(()=>[e(D,{name:"el-icon-Plus"}),F(" \u6DFB\u52A0 ")]),_:1})])]),_:1},512)]),_:1}),j((n(),f(B,null,{default:o(()=>[e(m,{type:"primary",onClick:g},{default:o(()=>[F("\u4FDD\u5B58")]),_:1})]),_:1})),[[y,["setting.web.web_setting/setCopyright"]]])])}}});export{Te as default}; diff --git a/public/admin/assets/finance.259514c6.js b/public/admin/assets/finance.259514c6.js new file mode 100644 index 000000000..34357f6e0 --- /dev/null +++ b/public/admin/assets/finance.259514c6.js @@ -0,0 +1 @@ +import{r}from"./index.37f7aea6.js";function t(e){return r.get({url:"/finance.account_log/lists",params:e})}function u(e){return r.get({url:"/finance.account_log/getCompanyUserList",params:e})}function a(e){return r.get({url:"/recharge.recharge/lists",params:e},{ignoreCancelToken:!0})}function c(e){return r.get({url:"/finance.account_log/getUmChangeType",params:e})}function g(e){return r.post({url:"/recharge.recharge/refund",params:e})}function o(e){return r.post({url:"/recharge.recharge/refundAgain",params:e})}function f(e){return r.get({url:"/finance.refund/record",params:e})}function i(e){return r.get({url:"/finance.refund/log",params:e})}function s(e){return r.get({url:"/finance.refund/stat",params:e})}export{t as a,c as b,a as c,g as d,o as e,s as f,u as g,f as h,i as r}; diff --git a/public/admin/assets/finance.5215ca02.js b/public/admin/assets/finance.5215ca02.js new file mode 100644 index 000000000..0fd088569 --- /dev/null +++ b/public/admin/assets/finance.5215ca02.js @@ -0,0 +1 @@ +import{r}from"./index.ed71ac09.js";function t(e){return r.get({url:"/finance.account_log/lists",params:e})}function u(e){return r.get({url:"/finance.account_log/getCompanyUserList",params:e})}function a(e){return r.get({url:"/recharge.recharge/lists",params:e},{ignoreCancelToken:!0})}function c(e){return r.get({url:"/finance.account_log/getUmChangeType",params:e})}function g(e){return r.post({url:"/recharge.recharge/refund",params:e})}function o(e){return r.post({url:"/recharge.recharge/refundAgain",params:e})}function f(e){return r.get({url:"/finance.refund/record",params:e})}function i(e){return r.get({url:"/finance.refund/log",params:e})}function s(e){return r.get({url:"/finance.refund/stat",params:e})}export{t as a,c as b,a as c,g as d,o as e,s as f,u as g,f as h,i as r}; diff --git a/public/admin/assets/finance.ec5ac162.js b/public/admin/assets/finance.ec5ac162.js new file mode 100644 index 000000000..1017281b8 --- /dev/null +++ b/public/admin/assets/finance.ec5ac162.js @@ -0,0 +1 @@ +import{r}from"./index.aa9bb752.js";function t(e){return r.get({url:"/finance.account_log/lists",params:e})}function u(e){return r.get({url:"/finance.account_log/getCompanyUserList",params:e})}function a(e){return r.get({url:"/recharge.recharge/lists",params:e},{ignoreCancelToken:!0})}function c(e){return r.get({url:"/finance.account_log/getUmChangeType",params:e})}function g(e){return r.post({url:"/recharge.recharge/refund",params:e})}function o(e){return r.post({url:"/recharge.recharge/refundAgain",params:e})}function f(e){return r.get({url:"/finance.refund/record",params:e})}function i(e){return r.get({url:"/finance.refund/log",params:e})}function s(e){return r.get({url:"/finance.refund/stat",params:e})}export{t as a,c as b,a as c,g as d,o as e,s as f,u as g,f as h,i as r}; diff --git a/public/admin/assets/follow_reply.12c91e0d.js b/public/admin/assets/follow_reply.12c91e0d.js new file mode 100644 index 000000000..9996818c1 --- /dev/null +++ b/public/admin/assets/follow_reply.12c91e0d.js @@ -0,0 +1 @@ +import{S as R,I as S,w as $,O as x,t as T,P as L,Q as N}from"./element-plus.4328d892.js";import{_ as U}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{f as O,b as P}from"./index.aa9bb752.js";import{o as Q,d as j,e as z}from"./wx_oa.dfa7359b.js";import{u as I}from"./usePaging.2ad8e1e6.js";import{_ as K}from"./edit.vue_vue_type_script_setup_true_lang.caf54865.js";import{d as M,s as q,r as G,e as H,o as f,c as J,U as e,L as n,a as E,R as d,M as W,K as h,u,S as X,k as Y,Q as Z,n as v}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.fa872673.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";const ee={class:"flex justify-end mt-4"},ze=M({__name:"follow_reply",setup(te){const r=q(),m=G(!1),y=H(()=>o=>{switch(o){case 1:return"\u6587\u672C"}}),{pager:s,getLists:l}=I({fetchFun:z,params:{reply_type:1}}),F=async()=>{var o;m.value=!0,await v(),(o=r.value)==null||o.open("add",1)},g=async o=>{var a,p;m.value=!0,await v(),(a=r.value)==null||a.open("edit",1),(p=r.value)==null||p.getDetail(o)},w=async o=>{await O.confirm("\u786E\u5B9A\u8981\u5220\u9664\uFF1F"),await Q({id:o}),l()},D=async o=>{try{await j({id:o}),l()}catch{l()}};return l(),(o,a)=>{const p=R,C=S,b=P,_=$,i=x,k=T,B=L,A=U,V=N;return f(),J("div",null,[e(C,{class:"!border-none",shadow:"never"},{default:n(()=>[e(p,{type:"warning",title:"\u6E29\u99A8\u63D0\u793A\uFF1A1.\u7C89\u4E1D\u5173\u6CE8\u516C\u4F17\u53F7\u65F6\uFF0C\u4F1A\u81EA\u52A8\u53D1\u9001\u542F\u7528\u7684\u5173\u6CE8\u56DE\u590D\uFF1B2.\u540C\u65F6\u53EA\u80FD\u542F\u7528\u4E00\u4E2A\u5173\u6CE8\u56DE\u590D\u3002",closable:!1,"show-icon":""})]),_:1}),e(C,{class:"!border-none mt-4",shadow:"never"},{default:n(()=>[E("div",null,[e(_,{class:"mb-4",type:"primary",onClick:a[0]||(a[0]=t=>F())},{icon:n(()=>[e(b,{name:"el-icon-Plus"})]),default:n(()=>[d(" \u65B0\u589E ")]),_:1})]),W((f(),h(B,{size:"large",data:u(s).lists},{default:n(()=>[e(i,{label:"\u89C4\u5219\u540D\u79F0",prop:"name","min-width":"120"}),e(i,{label:"\u56DE\u590D\u7C7B\u578B","min-width":"120"},{default:n(({row:t})=>[d(X(u(y)(t.content_type)),1)]),_:1}),e(i,{label:"\u56DE\u590D\u5185\u5BB9",prop:"content","min-width":"120"}),e(i,{label:"\u72B6\u6001","min-width":"120"},{default:n(({row:t})=>[e(k,{modelValue:t.status,"onUpdate:modelValue":c=>t.status=c,"active-value":1,"inactive-value":0,onChange:c=>D(t.id)},null,8,["modelValue","onUpdate:modelValue","onChange"])]),_:1}),e(i,{label:"\u6392\u5E8F",prop:"sort","min-width":"120"}),e(i,{label:"\u64CD\u4F5C",width:"120",fixed:"right"},{default:n(({row:t})=>[e(_,{type:"primary",link:"",onClick:c=>g(t)},{default:n(()=>[d(" \u7F16\u8F91 ")]),_:2},1032,["onClick"]),e(_,{type:"danger",link:"",onClick:c=>w(t.id)},{default:n(()=>[d(" \u5220\u9664 ")]),_:2},1032,["onClick"])]),_:1})]),_:1},8,["data"])),[[V,u(s).loading]]),E("div",ee,[e(A,{modelValue:u(s),"onUpdate:modelValue":a[1]||(a[1]=t=>Y(s)?s.value=t:null),onChange:u(l)},null,8,["modelValue","onChange"])])]),_:1}),u(m)?(f(),h(K,{key:0,ref_key:"editRef",ref:r,onSuccess:u(l),onClose:a[2]||(a[2]=t=>m.value=!1)},null,8,["onSuccess"])):Z("",!0)])}}});export{ze as default}; diff --git a/public/admin/assets/follow_reply.246b4372.js b/public/admin/assets/follow_reply.246b4372.js new file mode 100644 index 000000000..afbc22f76 --- /dev/null +++ b/public/admin/assets/follow_reply.246b4372.js @@ -0,0 +1 @@ +import{S as R,I as S,w as $,O as x,t as T,P as L,Q as N}from"./element-plus.4328d892.js";import{_ as U}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{f as O,b as P}from"./index.37f7aea6.js";import{o as Q,d as j,e as z}from"./wx_oa.115c1d98.js";import{u as I}from"./usePaging.2ad8e1e6.js";import{_ as K}from"./edit.vue_vue_type_script_setup_true_lang.cfc20a70.js";import{d as M,s as q,r as G,e as H,o as f,c as J,U as e,L as n,a as E,R as d,M as W,K as h,u,S as X,k as Y,Q as Z,n as v}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.5759a1a6.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";const ee={class:"flex justify-end mt-4"},ze=M({__name:"follow_reply",setup(te){const r=q(),m=G(!1),y=H(()=>o=>{switch(o){case 1:return"\u6587\u672C"}}),{pager:s,getLists:l}=I({fetchFun:z,params:{reply_type:1}}),F=async()=>{var o;m.value=!0,await v(),(o=r.value)==null||o.open("add",1)},g=async o=>{var a,p;m.value=!0,await v(),(a=r.value)==null||a.open("edit",1),(p=r.value)==null||p.getDetail(o)},w=async o=>{await O.confirm("\u786E\u5B9A\u8981\u5220\u9664\uFF1F"),await Q({id:o}),l()},D=async o=>{try{await j({id:o}),l()}catch{l()}};return l(),(o,a)=>{const p=R,C=S,b=P,_=$,i=x,k=T,B=L,A=U,V=N;return f(),J("div",null,[e(C,{class:"!border-none",shadow:"never"},{default:n(()=>[e(p,{type:"warning",title:"\u6E29\u99A8\u63D0\u793A\uFF1A1.\u7C89\u4E1D\u5173\u6CE8\u516C\u4F17\u53F7\u65F6\uFF0C\u4F1A\u81EA\u52A8\u53D1\u9001\u542F\u7528\u7684\u5173\u6CE8\u56DE\u590D\uFF1B2.\u540C\u65F6\u53EA\u80FD\u542F\u7528\u4E00\u4E2A\u5173\u6CE8\u56DE\u590D\u3002",closable:!1,"show-icon":""})]),_:1}),e(C,{class:"!border-none mt-4",shadow:"never"},{default:n(()=>[E("div",null,[e(_,{class:"mb-4",type:"primary",onClick:a[0]||(a[0]=t=>F())},{icon:n(()=>[e(b,{name:"el-icon-Plus"})]),default:n(()=>[d(" \u65B0\u589E ")]),_:1})]),W((f(),h(B,{size:"large",data:u(s).lists},{default:n(()=>[e(i,{label:"\u89C4\u5219\u540D\u79F0",prop:"name","min-width":"120"}),e(i,{label:"\u56DE\u590D\u7C7B\u578B","min-width":"120"},{default:n(({row:t})=>[d(X(u(y)(t.content_type)),1)]),_:1}),e(i,{label:"\u56DE\u590D\u5185\u5BB9",prop:"content","min-width":"120"}),e(i,{label:"\u72B6\u6001","min-width":"120"},{default:n(({row:t})=>[e(k,{modelValue:t.status,"onUpdate:modelValue":c=>t.status=c,"active-value":1,"inactive-value":0,onChange:c=>D(t.id)},null,8,["modelValue","onUpdate:modelValue","onChange"])]),_:1}),e(i,{label:"\u6392\u5E8F",prop:"sort","min-width":"120"}),e(i,{label:"\u64CD\u4F5C",width:"120",fixed:"right"},{default:n(({row:t})=>[e(_,{type:"primary",link:"",onClick:c=>g(t)},{default:n(()=>[d(" \u7F16\u8F91 ")]),_:2},1032,["onClick"]),e(_,{type:"danger",link:"",onClick:c=>w(t.id)},{default:n(()=>[d(" \u5220\u9664 ")]),_:2},1032,["onClick"])]),_:1})]),_:1},8,["data"])),[[V,u(s).loading]]),E("div",ee,[e(A,{modelValue:u(s),"onUpdate:modelValue":a[1]||(a[1]=t=>Y(s)?s.value=t:null),onChange:u(l)},null,8,["modelValue","onChange"])])]),_:1}),u(m)?(f(),h(K,{key:0,ref_key:"editRef",ref:r,onSuccess:u(l),onClose:a[2]||(a[2]=t=>m.value=!1)},null,8,["onSuccess"])):Z("",!0)])}}});export{ze as default}; diff --git a/public/admin/assets/follow_reply.38a6c8e9.js b/public/admin/assets/follow_reply.38a6c8e9.js new file mode 100644 index 000000000..6001063d9 --- /dev/null +++ b/public/admin/assets/follow_reply.38a6c8e9.js @@ -0,0 +1 @@ +import{S as R,I as S,w as $,O as x,t as T,P as L,Q as N}from"./element-plus.4328d892.js";import{_ as U}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{f as O,b as P}from"./index.ed71ac09.js";import{o as Q,d as j,e as z}from"./wx_oa.ec356b57.js";import{u as I}from"./usePaging.2ad8e1e6.js";import{_ as K}from"./edit.vue_vue_type_script_setup_true_lang.7913183a.js";import{d as M,s as q,r as G,e as H,o as f,c as J,U as e,L as n,a as E,R as d,M as W,K as h,u,S as X,k as Y,Q as Z,n as v}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.b940d6e3.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";const ee={class:"flex justify-end mt-4"},ze=M({__name:"follow_reply",setup(te){const r=q(),m=G(!1),y=H(()=>o=>{switch(o){case 1:return"\u6587\u672C"}}),{pager:s,getLists:l}=I({fetchFun:z,params:{reply_type:1}}),F=async()=>{var o;m.value=!0,await v(),(o=r.value)==null||o.open("add",1)},g=async o=>{var a,p;m.value=!0,await v(),(a=r.value)==null||a.open("edit",1),(p=r.value)==null||p.getDetail(o)},w=async o=>{await O.confirm("\u786E\u5B9A\u8981\u5220\u9664\uFF1F"),await Q({id:o}),l()},D=async o=>{try{await j({id:o}),l()}catch{l()}};return l(),(o,a)=>{const p=R,C=S,b=P,_=$,i=x,k=T,B=L,A=U,V=N;return f(),J("div",null,[e(C,{class:"!border-none",shadow:"never"},{default:n(()=>[e(p,{type:"warning",title:"\u6E29\u99A8\u63D0\u793A\uFF1A1.\u7C89\u4E1D\u5173\u6CE8\u516C\u4F17\u53F7\u65F6\uFF0C\u4F1A\u81EA\u52A8\u53D1\u9001\u542F\u7528\u7684\u5173\u6CE8\u56DE\u590D\uFF1B2.\u540C\u65F6\u53EA\u80FD\u542F\u7528\u4E00\u4E2A\u5173\u6CE8\u56DE\u590D\u3002",closable:!1,"show-icon":""})]),_:1}),e(C,{class:"!border-none mt-4",shadow:"never"},{default:n(()=>[E("div",null,[e(_,{class:"mb-4",type:"primary",onClick:a[0]||(a[0]=t=>F())},{icon:n(()=>[e(b,{name:"el-icon-Plus"})]),default:n(()=>[d(" \u65B0\u589E ")]),_:1})]),W((f(),h(B,{size:"large",data:u(s).lists},{default:n(()=>[e(i,{label:"\u89C4\u5219\u540D\u79F0",prop:"name","min-width":"120"}),e(i,{label:"\u56DE\u590D\u7C7B\u578B","min-width":"120"},{default:n(({row:t})=>[d(X(u(y)(t.content_type)),1)]),_:1}),e(i,{label:"\u56DE\u590D\u5185\u5BB9",prop:"content","min-width":"120"}),e(i,{label:"\u72B6\u6001","min-width":"120"},{default:n(({row:t})=>[e(k,{modelValue:t.status,"onUpdate:modelValue":c=>t.status=c,"active-value":1,"inactive-value":0,onChange:c=>D(t.id)},null,8,["modelValue","onUpdate:modelValue","onChange"])]),_:1}),e(i,{label:"\u6392\u5E8F",prop:"sort","min-width":"120"}),e(i,{label:"\u64CD\u4F5C",width:"120",fixed:"right"},{default:n(({row:t})=>[e(_,{type:"primary",link:"",onClick:c=>g(t)},{default:n(()=>[d(" \u7F16\u8F91 ")]),_:2},1032,["onClick"]),e(_,{type:"danger",link:"",onClick:c=>w(t.id)},{default:n(()=>[d(" \u5220\u9664 ")]),_:2},1032,["onClick"])]),_:1})]),_:1},8,["data"])),[[V,u(s).loading]]),E("div",ee,[e(A,{modelValue:u(s),"onUpdate:modelValue":a[1]||(a[1]=t=>Y(s)?s.value=t:null),onChange:u(l)},null,8,["modelValue","onChange"])])]),_:1}),u(m)?(f(),h(K,{key:0,ref_key:"editRef",ref:r,onSuccess:u(l),onClose:a[2]||(a[2]=t=>m.value=!1)},null,8,["onSuccess"])):Z("",!0)])}}});export{ze as default}; diff --git a/public/admin/assets/h5.79649a54.js b/public/admin/assets/h5.79649a54.js new file mode 100644 index 000000000..1fbdbac76 --- /dev/null +++ b/public/admin/assets/h5.79649a54.js @@ -0,0 +1 @@ +import{_ as k}from"./index.fd04a214.js";import{S as x,I as H,G as N,H as R,C as S,B as U,w as I,D as q}from"./element-plus.4328d892.js";import{r as C}from"./index.37f7aea6.js";import{d as b,$ as G,af as F,o as i,c as K,U as e,L as t,u,a as p,R as l,K as m,Q as L,S as M,M as B}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";function Q(_){return C.post({url:"/channel.web_page_setting/setConfig",params:_})}function T(){return C.get({url:"/channel.web_page_setting/getConfig"})}const $=p("div",{class:"form-tips"},"\u72B6\u6001\u4E3A\u5173\u95ED\u65F6\uFF0C\u5C06\u4E0D\u5BF9\u5916\u63D0\u4F9B\u670D\u52A1\uFF0C\u8BF7\u8C28\u614E\u64CD\u4F5C",-1),j={class:"w-80"},z={class:"flex-1 min-w-0 break-words"},J=b({name:"h5Config"}),kt=b({...J,setup(_){const o=G({status:0,page_status:0,page_url:"",url:""}),d=async()=>{const c=await T();for(const a in o)o[a]=c[a]},D=async()=>{await Q(o),d()};return d(),(c,a)=>{const w=x,f=H,s=N,g=R,n=S,v=U,E=I,V=q,A=k,h=F("copy"),y=F("perms");return i(),K("div",null,[e(f,{class:"!border-none",shadow:"never"},{default:t(()=>[e(w,{type:"warning",title:"\u6E29\u99A8\u63D0\u793A\uFF1AH5\u8BBE\u7F6E",closable:!1,"show-icon":""})]),_:1}),e(f,{class:"!border-none mt-4",shadow:"never"},{default:t(()=>[e(V,{ref:"formRef",model:u(o),"label-width":"120px"},{default:t(()=>[e(n,{label:"\u6E20\u9053\u72B6\u6001",required:"",prop:"status"},{default:t(()=>[p("div",null,[e(g,{modelValue:u(o).status,"onUpdate:modelValue":a[0]||(a[0]=r=>u(o).status=r)},{default:t(()=>[e(s,{label:1},{default:t(()=>[l("\u5F00\u542F")]),_:1}),e(s,{label:0},{default:t(()=>[l("\u5173\u95ED")]),_:1})]),_:1},8,["modelValue"]),$])]),_:1}),e(n,{label:"\u5173\u95ED\u540E\u8BBF\u95EE\u9875\u9762",prop:"page_status"},{default:t(()=>[e(g,{modelValue:u(o).page_status,"onUpdate:modelValue":a[1]||(a[1]=r=>u(o).page_status=r)},{default:t(()=>[e(s,{label:0},{default:t(()=>[l("\u7A7A\u9875\u9762")]),_:1}),e(s,{label:1},{default:t(()=>[l("\u81EA\u5B9A\u4E49\u94FE\u63A5")]),_:1})]),_:1},8,["modelValue"])]),_:1}),u(o).page_status==1?(i(),m(n,{key:0,label:"",prop:"page_url"},{default:t(()=>[p("div",j,[e(v,{modelValue:u(o).page_url,"onUpdate:modelValue":a[2]||(a[2]=r=>u(o).page_url=r),placeholder:"\u8BF7\u8F93\u5165\u5B8C\u6574\u7684url"},null,8,["modelValue"])])]),_:1})):L("",!0),e(n,{label:"\u8BBF\u95EE\u94FE\u63A5"},{default:t(()=>[p("div",z,[l(M(u(o).url)+" ",1),B((i(),m(E,null,{default:t(()=>[l("\u590D\u5236")]),_:1})),[[h,u(o).url]])])]),_:1})]),_:1},8,["model"])]),_:1}),B((i(),m(A,null,{default:t(()=>[e(E,{type:"primary",onClick:D},{default:t(()=>[l("\u4FDD\u5B58")]),_:1})]),_:1})),[[y,["channel.web_page_setting/setConfig"]]])])}}});export{kt as default}; diff --git a/public/admin/assets/h5.83486a01.js b/public/admin/assets/h5.83486a01.js new file mode 100644 index 000000000..b14997d4f --- /dev/null +++ b/public/admin/assets/h5.83486a01.js @@ -0,0 +1 @@ +import{_ as k}from"./index.13ef78d6.js";import{S as x,I as H,G as N,H as R,C as S,B as U,w as I,D as q}from"./element-plus.4328d892.js";import{r as C}from"./index.aa9bb752.js";import{d as b,$ as G,af as F,o as i,c as K,U as e,L as t,u,a as p,R as l,K as m,Q as L,S as M,M as B}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";function Q(_){return C.post({url:"/channel.web_page_setting/setConfig",params:_})}function T(){return C.get({url:"/channel.web_page_setting/getConfig"})}const $=p("div",{class:"form-tips"},"\u72B6\u6001\u4E3A\u5173\u95ED\u65F6\uFF0C\u5C06\u4E0D\u5BF9\u5916\u63D0\u4F9B\u670D\u52A1\uFF0C\u8BF7\u8C28\u614E\u64CD\u4F5C",-1),j={class:"w-80"},z={class:"flex-1 min-w-0 break-words"},J=b({name:"h5Config"}),kt=b({...J,setup(_){const o=G({status:0,page_status:0,page_url:"",url:""}),d=async()=>{const c=await T();for(const a in o)o[a]=c[a]},D=async()=>{await Q(o),d()};return d(),(c,a)=>{const w=x,f=H,s=N,g=R,n=S,v=U,E=I,V=q,A=k,h=F("copy"),y=F("perms");return i(),K("div",null,[e(f,{class:"!border-none",shadow:"never"},{default:t(()=>[e(w,{type:"warning",title:"\u6E29\u99A8\u63D0\u793A\uFF1AH5\u8BBE\u7F6E",closable:!1,"show-icon":""})]),_:1}),e(f,{class:"!border-none mt-4",shadow:"never"},{default:t(()=>[e(V,{ref:"formRef",model:u(o),"label-width":"120px"},{default:t(()=>[e(n,{label:"\u6E20\u9053\u72B6\u6001",required:"",prop:"status"},{default:t(()=>[p("div",null,[e(g,{modelValue:u(o).status,"onUpdate:modelValue":a[0]||(a[0]=r=>u(o).status=r)},{default:t(()=>[e(s,{label:1},{default:t(()=>[l("\u5F00\u542F")]),_:1}),e(s,{label:0},{default:t(()=>[l("\u5173\u95ED")]),_:1})]),_:1},8,["modelValue"]),$])]),_:1}),e(n,{label:"\u5173\u95ED\u540E\u8BBF\u95EE\u9875\u9762",prop:"page_status"},{default:t(()=>[e(g,{modelValue:u(o).page_status,"onUpdate:modelValue":a[1]||(a[1]=r=>u(o).page_status=r)},{default:t(()=>[e(s,{label:0},{default:t(()=>[l("\u7A7A\u9875\u9762")]),_:1}),e(s,{label:1},{default:t(()=>[l("\u81EA\u5B9A\u4E49\u94FE\u63A5")]),_:1})]),_:1},8,["modelValue"])]),_:1}),u(o).page_status==1?(i(),m(n,{key:0,label:"",prop:"page_url"},{default:t(()=>[p("div",j,[e(v,{modelValue:u(o).page_url,"onUpdate:modelValue":a[2]||(a[2]=r=>u(o).page_url=r),placeholder:"\u8BF7\u8F93\u5165\u5B8C\u6574\u7684url"},null,8,["modelValue"])])]),_:1})):L("",!0),e(n,{label:"\u8BBF\u95EE\u94FE\u63A5"},{default:t(()=>[p("div",z,[l(M(u(o).url)+" ",1),B((i(),m(E,null,{default:t(()=>[l("\u590D\u5236")]),_:1})),[[h,u(o).url]])])]),_:1})]),_:1},8,["model"])]),_:1}),B((i(),m(A,null,{default:t(()=>[e(E,{type:"primary",onClick:D},{default:t(()=>[l("\u4FDD\u5B58")]),_:1})]),_:1})),[[y,["channel.web_page_setting/setConfig"]]])])}}});export{kt as default}; diff --git a/public/admin/assets/h5.ae391178.js b/public/admin/assets/h5.ae391178.js new file mode 100644 index 000000000..4b0325dbd --- /dev/null +++ b/public/admin/assets/h5.ae391178.js @@ -0,0 +1 @@ +import{_ as k}from"./index.be5645df.js";import{S as x,I as H,G as N,H as R,C as S,B as U,w as I,D as q}from"./element-plus.4328d892.js";import{r as C}from"./index.ed71ac09.js";import{d as b,$ as G,af as F,o as i,c as K,U as e,L as t,u,a as p,R as l,K as m,Q as L,S as M,M as B}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";function Q(_){return C.post({url:"/channel.web_page_setting/setConfig",params:_})}function T(){return C.get({url:"/channel.web_page_setting/getConfig"})}const $=p("div",{class:"form-tips"},"\u72B6\u6001\u4E3A\u5173\u95ED\u65F6\uFF0C\u5C06\u4E0D\u5BF9\u5916\u63D0\u4F9B\u670D\u52A1\uFF0C\u8BF7\u8C28\u614E\u64CD\u4F5C",-1),j={class:"w-80"},z={class:"flex-1 min-w-0 break-words"},J=b({name:"h5Config"}),kt=b({...J,setup(_){const o=G({status:0,page_status:0,page_url:"",url:""}),d=async()=>{const c=await T();for(const a in o)o[a]=c[a]},D=async()=>{await Q(o),d()};return d(),(c,a)=>{const w=x,f=H,s=N,g=R,n=S,v=U,E=I,V=q,A=k,h=F("copy"),y=F("perms");return i(),K("div",null,[e(f,{class:"!border-none",shadow:"never"},{default:t(()=>[e(w,{type:"warning",title:"\u6E29\u99A8\u63D0\u793A\uFF1AH5\u8BBE\u7F6E",closable:!1,"show-icon":""})]),_:1}),e(f,{class:"!border-none mt-4",shadow:"never"},{default:t(()=>[e(V,{ref:"formRef",model:u(o),"label-width":"120px"},{default:t(()=>[e(n,{label:"\u6E20\u9053\u72B6\u6001",required:"",prop:"status"},{default:t(()=>[p("div",null,[e(g,{modelValue:u(o).status,"onUpdate:modelValue":a[0]||(a[0]=r=>u(o).status=r)},{default:t(()=>[e(s,{label:1},{default:t(()=>[l("\u5F00\u542F")]),_:1}),e(s,{label:0},{default:t(()=>[l("\u5173\u95ED")]),_:1})]),_:1},8,["modelValue"]),$])]),_:1}),e(n,{label:"\u5173\u95ED\u540E\u8BBF\u95EE\u9875\u9762",prop:"page_status"},{default:t(()=>[e(g,{modelValue:u(o).page_status,"onUpdate:modelValue":a[1]||(a[1]=r=>u(o).page_status=r)},{default:t(()=>[e(s,{label:0},{default:t(()=>[l("\u7A7A\u9875\u9762")]),_:1}),e(s,{label:1},{default:t(()=>[l("\u81EA\u5B9A\u4E49\u94FE\u63A5")]),_:1})]),_:1},8,["modelValue"])]),_:1}),u(o).page_status==1?(i(),m(n,{key:0,label:"",prop:"page_url"},{default:t(()=>[p("div",j,[e(v,{modelValue:u(o).page_url,"onUpdate:modelValue":a[2]||(a[2]=r=>u(o).page_url=r),placeholder:"\u8BF7\u8F93\u5165\u5B8C\u6574\u7684url"},null,8,["modelValue"])])]),_:1})):L("",!0),e(n,{label:"\u8BBF\u95EE\u94FE\u63A5"},{default:t(()=>[p("div",z,[l(M(u(o).url)+" ",1),B((i(),m(E,null,{default:t(()=>[l("\u590D\u5236")]),_:1})),[[h,u(o).url]])])]),_:1})]),_:1},8,["model"])]),_:1}),B((i(),m(A,null,{default:t(()=>[e(E,{type:"primary",onClick:D},{default:t(()=>[l("\u4FDD\u5B58")]),_:1})]),_:1})),[[y,["channel.web_page_setting/setConfig"]]])])}}});export{kt as default}; diff --git a/public/admin/assets/houseDecoration.49a16dce.js b/public/admin/assets/houseDecoration.49a16dce.js new file mode 100644 index 000000000..99acd339c --- /dev/null +++ b/public/admin/assets/houseDecoration.49a16dce.js @@ -0,0 +1 @@ +import{B as b,C as E,a1 as y,G as V,H as C,a2 as B,D as F,I as g}from"./element-plus.4328d892.js";import{d as w,o as x,K as h,L as t,U as e,a as s,R as r,S as D}from"./@vue.51d7f2d8.js";import{d as U}from"./index.37f7aea6.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const v={class:"tit"},I={class:"time"},R=w({__name:"houseDecoration",props:{datas:{type:Object,defualt:function(){return{house_area:"",decoration_style:"",decoration_site:"",budget:"",decoration_type:""}}},update_time:{type:String,defualt:""}},setup(o){return(n,a)=>{const i=b,d=E,u=y,m=V,p=C,_=B,c=F,f=g;return x(),h(f,{style:{"margin-top":"16px"}},{default:t(()=>[e(c,{ref:"elForm",disabled:!0,model:n.formData,size:"mini","label-width":"180px"},{default:t(()=>[s("div",v,[r(" \u88C5\u623F "),s("span",I,"\u66F4\u65B0\u4E8E:"+D(o.update_time),1)]),e(_,null,{default:t(()=>[e(u,{span:8},{default:t(()=>[e(d,{label:"\u623F\u5C4B\u9762\u79EF(m\xB2)",prop:"house_area"},{default:t(()=>[e(i,{modelValue:o.datas.house_area,"onUpdate:modelValue":a[0]||(a[0]=l=>o.datas.house_area=l),clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(u,{span:8},{default:t(()=>[e(d,{label:"\u88C5\u4FEE\u98CE\u683C",prop:"decoration_style"},{default:t(()=>[e(i,{modelValue:o.datas.decoration_style,"onUpdate:modelValue":a[1]||(a[1]=l=>o.datas.decoration_style=l),clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(u,{span:8},{default:t(()=>[e(d,{label:"\u88C5\u4FEE\u5730\u70B9",prop:"decoration_site"},{default:t(()=>[e(i,{modelValue:o.datas.decoration_site,"onUpdate:modelValue":a[2]||(a[2]=l=>o.datas.decoration_site=l),clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(u,{span:8},{default:t(()=>[e(d,{label:"\u88C5\u4FEE\u9884\u7B97",prop:"budget"},{default:t(()=>[e(i,{modelValue:o.datas.budget,"onUpdate:modelValue":a[3]||(a[3]=l=>o.datas.budget=l),clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(u,{span:8},{default:t(()=>[e(d,{label:"\u88C5\u4FEE\u7C7B\u578B",prop:"decoration_type"},{default:t(()=>[e(p,{modelValue:o.datas.decoration_type,"onUpdate:modelValue":a[4]||(a[4]=l=>o.datas.decoration_type=l),size:"medium"},{default:t(()=>[e(m,{label:"1"},{default:t(()=>[r("\u79C1\u4EBA")]),_:1}),e(m,{label:"0"},{default:t(()=>[r("\u516C\u5171\u5EFA\u8BBE")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1})]),_:1})]),_:1},8,["model"])]),_:1})}}});const pe=U(R,[["__scopeId","data-v-62619b69"]]);export{pe as default}; diff --git a/public/admin/assets/houseDecoration.68c056e7.js b/public/admin/assets/houseDecoration.68c056e7.js new file mode 100644 index 000000000..6dbfb3420 --- /dev/null +++ b/public/admin/assets/houseDecoration.68c056e7.js @@ -0,0 +1 @@ +import{B as b,C as E,a1 as y,G as V,H as C,a2 as B,D as F,I as g}from"./element-plus.4328d892.js";import{d as w,o as x,K as h,L as t,U as e,a as s,R as r,S as D}from"./@vue.51d7f2d8.js";import{d as U}from"./index.aa9bb752.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const v={class:"tit"},I={class:"time"},R=w({__name:"houseDecoration",props:{datas:{type:Object,defualt:function(){return{house_area:"",decoration_style:"",decoration_site:"",budget:"",decoration_type:""}}},update_time:{type:String,defualt:""}},setup(o){return(n,a)=>{const i=b,d=E,u=y,m=V,p=C,_=B,c=F,f=g;return x(),h(f,{style:{"margin-top":"16px"}},{default:t(()=>[e(c,{ref:"elForm",disabled:!0,model:n.formData,size:"mini","label-width":"180px"},{default:t(()=>[s("div",v,[r(" \u88C5\u623F "),s("span",I,"\u66F4\u65B0\u4E8E:"+D(o.update_time),1)]),e(_,null,{default:t(()=>[e(u,{span:8},{default:t(()=>[e(d,{label:"\u623F\u5C4B\u9762\u79EF(m\xB2)",prop:"house_area"},{default:t(()=>[e(i,{modelValue:o.datas.house_area,"onUpdate:modelValue":a[0]||(a[0]=l=>o.datas.house_area=l),clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(u,{span:8},{default:t(()=>[e(d,{label:"\u88C5\u4FEE\u98CE\u683C",prop:"decoration_style"},{default:t(()=>[e(i,{modelValue:o.datas.decoration_style,"onUpdate:modelValue":a[1]||(a[1]=l=>o.datas.decoration_style=l),clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(u,{span:8},{default:t(()=>[e(d,{label:"\u88C5\u4FEE\u5730\u70B9",prop:"decoration_site"},{default:t(()=>[e(i,{modelValue:o.datas.decoration_site,"onUpdate:modelValue":a[2]||(a[2]=l=>o.datas.decoration_site=l),clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(u,{span:8},{default:t(()=>[e(d,{label:"\u88C5\u4FEE\u9884\u7B97",prop:"budget"},{default:t(()=>[e(i,{modelValue:o.datas.budget,"onUpdate:modelValue":a[3]||(a[3]=l=>o.datas.budget=l),clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(u,{span:8},{default:t(()=>[e(d,{label:"\u88C5\u4FEE\u7C7B\u578B",prop:"decoration_type"},{default:t(()=>[e(p,{modelValue:o.datas.decoration_type,"onUpdate:modelValue":a[4]||(a[4]=l=>o.datas.decoration_type=l),size:"medium"},{default:t(()=>[e(m,{label:"1"},{default:t(()=>[r("\u79C1\u4EBA")]),_:1}),e(m,{label:"0"},{default:t(()=>[r("\u516C\u5171\u5EFA\u8BBE")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1})]),_:1})]),_:1},8,["model"])]),_:1})}}});const pe=U(R,[["__scopeId","data-v-62619b69"]]);export{pe as default}; diff --git a/public/admin/assets/houseDecoration.d3f002c4.js b/public/admin/assets/houseDecoration.d3f002c4.js new file mode 100644 index 000000000..5ddc0a399 --- /dev/null +++ b/public/admin/assets/houseDecoration.d3f002c4.js @@ -0,0 +1 @@ +import{B as b,C as E,a1 as y,G as V,H as C,a2 as B,D as F,I as g}from"./element-plus.4328d892.js";import{d as w,o as x,K as h,L as t,U as e,a as s,R as r,S as D}from"./@vue.51d7f2d8.js";import{d as U}from"./index.ed71ac09.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const v={class:"tit"},I={class:"time"},R=w({__name:"houseDecoration",props:{datas:{type:Object,defualt:function(){return{house_area:"",decoration_style:"",decoration_site:"",budget:"",decoration_type:""}}},update_time:{type:String,defualt:""}},setup(o){return(n,a)=>{const i=b,d=E,u=y,m=V,p=C,_=B,c=F,f=g;return x(),h(f,{style:{"margin-top":"16px"}},{default:t(()=>[e(c,{ref:"elForm",disabled:!0,model:n.formData,size:"mini","label-width":"180px"},{default:t(()=>[s("div",v,[r(" \u88C5\u623F "),s("span",I,"\u66F4\u65B0\u4E8E:"+D(o.update_time),1)]),e(_,null,{default:t(()=>[e(u,{span:8},{default:t(()=>[e(d,{label:"\u623F\u5C4B\u9762\u79EF(m\xB2)",prop:"house_area"},{default:t(()=>[e(i,{modelValue:o.datas.house_area,"onUpdate:modelValue":a[0]||(a[0]=l=>o.datas.house_area=l),clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(u,{span:8},{default:t(()=>[e(d,{label:"\u88C5\u4FEE\u98CE\u683C",prop:"decoration_style"},{default:t(()=>[e(i,{modelValue:o.datas.decoration_style,"onUpdate:modelValue":a[1]||(a[1]=l=>o.datas.decoration_style=l),clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(u,{span:8},{default:t(()=>[e(d,{label:"\u88C5\u4FEE\u5730\u70B9",prop:"decoration_site"},{default:t(()=>[e(i,{modelValue:o.datas.decoration_site,"onUpdate:modelValue":a[2]||(a[2]=l=>o.datas.decoration_site=l),clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(u,{span:8},{default:t(()=>[e(d,{label:"\u88C5\u4FEE\u9884\u7B97",prop:"budget"},{default:t(()=>[e(i,{modelValue:o.datas.budget,"onUpdate:modelValue":a[3]||(a[3]=l=>o.datas.budget=l),clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(u,{span:8},{default:t(()=>[e(d,{label:"\u88C5\u4FEE\u7C7B\u578B",prop:"decoration_type"},{default:t(()=>[e(p,{modelValue:o.datas.decoration_type,"onUpdate:modelValue":a[4]||(a[4]=l=>o.datas.decoration_type=l),size:"medium"},{default:t(()=>[e(m,{label:"1"},{default:t(()=>[r("\u79C1\u4EBA")]),_:1}),e(m,{label:"0"},{default:t(()=>[r("\u516C\u5171\u5EFA\u8BBE")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1})]),_:1})]),_:1},8,["model"])]),_:1})}}});const pe=U(R,[["__scopeId","data-v-62619b69"]]);export{pe as default}; diff --git a/public/admin/assets/houseRenovate.3481056b.js b/public/admin/assets/houseRenovate.3481056b.js new file mode 100644 index 000000000..98c5055ae --- /dev/null +++ b/public/admin/assets/houseRenovate.3481056b.js @@ -0,0 +1 @@ +import{B as E,C as y,a1 as B,G as b,H as F,a2 as V,D as x,I as v}from"./element-plus.4328d892.js";import{d as C,o as R,K as g,L as t,U as e,a as r,R as m,S as h}from"./@vue.51d7f2d8.js";import{d as w}from"./index.37f7aea6.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const I={class:"tit"},D={class:"time"},N=C({__name:"houseRenovate",props:{datas:{type:Object,defualt:function(){return{maintenance_contents:"",maintenance_type:""}}},update_time:{type:String,defualt:""}},setup(o){return(s,a)=>{const u=E,i=y,l=B,p=b,d=F,_=V,c=x,f=v;return R(),g(f,{style:{"margin-top":"16px"}},{default:t(()=>[e(c,{ref:"elForm",disabled:!0,model:s.formData,size:"mini","label-width":"180px"},{default:t(()=>[r("div",I,[m(" \u7FFB\u65B0\u623F\u5C4B "),r("span",D,"\u66F4\u65B0\u4E8E:"+h(o.update_time),1)]),e(_,null,{default:t(()=>[e(l,{span:8},{default:t(()=>[e(i,{label:"\u7EF4\u62A4\u5185\u5BB9",prop:"maintenance_contents"},{default:t(()=>[e(u,{modelValue:o.datas.maintenance_contents,"onUpdate:modelValue":a[0]||(a[0]=n=>o.datas.maintenance_contents=n),clearable:"",type:"textarea",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(l,{span:8},{default:t(()=>[e(i,{label:"\u7EF4\u62A4\u7C7B\u578B",prop:"maintenance_type"},{default:t(()=>[e(d,{modelValue:o.datas.maintenance_type,"onUpdate:modelValue":a[1]||(a[1]=n=>o.datas.maintenance_type=n),size:"medium"},{default:t(()=>[e(p,{label:"1"},{default:t(()=>[m("\u6362")]),_:1}),e(p,{label:"0"},{default:t(()=>[m("\u4FEE")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1})]),_:1})]),_:1},8,["model"])]),_:1})}}});const dt=w(N,[["__scopeId","data-v-eeefb7fc"]]);export{dt as default}; diff --git a/public/admin/assets/houseRenovate.6deede8a.js b/public/admin/assets/houseRenovate.6deede8a.js new file mode 100644 index 000000000..c53ba1ed8 --- /dev/null +++ b/public/admin/assets/houseRenovate.6deede8a.js @@ -0,0 +1 @@ +import{B as E,C as y,a1 as B,G as b,H as F,a2 as V,D as x,I as v}from"./element-plus.4328d892.js";import{d as C,o as R,K as g,L as t,U as e,a as r,R as m,S as h}from"./@vue.51d7f2d8.js";import{d as w}from"./index.ed71ac09.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const I={class:"tit"},D={class:"time"},N=C({__name:"houseRenovate",props:{datas:{type:Object,defualt:function(){return{maintenance_contents:"",maintenance_type:""}}},update_time:{type:String,defualt:""}},setup(o){return(s,a)=>{const u=E,i=y,l=B,p=b,d=F,_=V,c=x,f=v;return R(),g(f,{style:{"margin-top":"16px"}},{default:t(()=>[e(c,{ref:"elForm",disabled:!0,model:s.formData,size:"mini","label-width":"180px"},{default:t(()=>[r("div",I,[m(" \u7FFB\u65B0\u623F\u5C4B "),r("span",D,"\u66F4\u65B0\u4E8E:"+h(o.update_time),1)]),e(_,null,{default:t(()=>[e(l,{span:8},{default:t(()=>[e(i,{label:"\u7EF4\u62A4\u5185\u5BB9",prop:"maintenance_contents"},{default:t(()=>[e(u,{modelValue:o.datas.maintenance_contents,"onUpdate:modelValue":a[0]||(a[0]=n=>o.datas.maintenance_contents=n),clearable:"",type:"textarea",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(l,{span:8},{default:t(()=>[e(i,{label:"\u7EF4\u62A4\u7C7B\u578B",prop:"maintenance_type"},{default:t(()=>[e(d,{modelValue:o.datas.maintenance_type,"onUpdate:modelValue":a[1]||(a[1]=n=>o.datas.maintenance_type=n),size:"medium"},{default:t(()=>[e(p,{label:"1"},{default:t(()=>[m("\u6362")]),_:1}),e(p,{label:"0"},{default:t(()=>[m("\u4FEE")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1})]),_:1})]),_:1},8,["model"])]),_:1})}}});const dt=w(N,[["__scopeId","data-v-eeefb7fc"]]);export{dt as default}; diff --git a/public/admin/assets/houseRenovate.b7fc426b.js b/public/admin/assets/houseRenovate.b7fc426b.js new file mode 100644 index 000000000..1c72908ec --- /dev/null +++ b/public/admin/assets/houseRenovate.b7fc426b.js @@ -0,0 +1 @@ +import{B as E,C as y,a1 as B,G as b,H as F,a2 as V,D as x,I as v}from"./element-plus.4328d892.js";import{d as C,o as R,K as g,L as t,U as e,a as r,R as m,S as h}from"./@vue.51d7f2d8.js";import{d as w}from"./index.aa9bb752.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const I={class:"tit"},D={class:"time"},N=C({__name:"houseRenovate",props:{datas:{type:Object,defualt:function(){return{maintenance_contents:"",maintenance_type:""}}},update_time:{type:String,defualt:""}},setup(o){return(s,a)=>{const u=E,i=y,l=B,p=b,d=F,_=V,c=x,f=v;return R(),g(f,{style:{"margin-top":"16px"}},{default:t(()=>[e(c,{ref:"elForm",disabled:!0,model:s.formData,size:"mini","label-width":"180px"},{default:t(()=>[r("div",I,[m(" \u7FFB\u65B0\u623F\u5C4B "),r("span",D,"\u66F4\u65B0\u4E8E:"+h(o.update_time),1)]),e(_,null,{default:t(()=>[e(l,{span:8},{default:t(()=>[e(i,{label:"\u7EF4\u62A4\u5185\u5BB9",prop:"maintenance_contents"},{default:t(()=>[e(u,{modelValue:o.datas.maintenance_contents,"onUpdate:modelValue":a[0]||(a[0]=n=>o.datas.maintenance_contents=n),clearable:"",type:"textarea",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(l,{span:8},{default:t(()=>[e(i,{label:"\u7EF4\u62A4\u7C7B\u578B",prop:"maintenance_type"},{default:t(()=>[e(d,{modelValue:o.datas.maintenance_type,"onUpdate:modelValue":a[1]||(a[1]=n=>o.datas.maintenance_type=n),size:"medium"},{default:t(()=>[e(p,{label:"1"},{default:t(()=>[m("\u6362")]),_:1}),e(p,{label:"0"},{default:t(()=>[m("\u4FEE")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1})]),_:1})]),_:1},8,["model"])]),_:1})}}});const dt=w(N,[["__scopeId","data-v-eeefb7fc"]]);export{dt as default}; diff --git a/public/admin/assets/houseRepair.728e0187.js b/public/admin/assets/houseRepair.728e0187.js new file mode 100644 index 000000000..d98437efd --- /dev/null +++ b/public/admin/assets/houseRepair.728e0187.js @@ -0,0 +1 @@ +import{G as b,H as V,C as y,a1 as F,B,b as g,a2 as C,D as w,I as x}from"./element-plus.4328d892.js";import{d as U,o as h,K as v,L as t,U as e,a as r,R as s,S as A}from"./@vue.51d7f2d8.js";import{d as R}from"./index.aa9bb752.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const z={class:"tit"},I={class:"time"},D=U({__name:"houseRepair",props:{datas:{type:Object,defualt:function(){return{construction_type:"",construction_area:"",house_style:"",construction_site:"",budget:"",afforest:"",fitment:"",house_type:"",construction_site_img:""}}},update_time:{type:String,defualt:""}},setup(a){return(p,l)=>{const i=b,n=V,u=y,d=F,m=B,_=g,f=C,c=w,E=x;return h(),v(E,{style:{"margin-top":"16px"}},{default:t(()=>[e(c,{ref:"elForm",disabled:!0,model:p.formData,size:"mini","label-width":"180px"},{default:t(()=>[r("div",z,[s(" \u4FEE\u623F "),r("span",I,"\u66F4\u65B0\u4E8E:"+A(a.update_time),1)]),e(f,null,{default:t(()=>[e(d,{span:8},{default:t(()=>[e(u,{label:"\u4FEE\u623F\u7C7B\u578B",prop:"construction_type"},{default:t(()=>[e(n,{modelValue:a.datas.construction_type,"onUpdate:modelValue":l[0]||(l[0]=o=>a.datas.construction_type=o),size:"medium"},{default:t(()=>[e(i,{label:"1"},{default:t(()=>[s("\u81EA\u5EFA")]),_:1}),e(i,{label:"0"},{default:t(()=>[s("\u5916\u5305")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(d,{span:8},{default:t(()=>[e(u,{label:"\u5EFA\u8BBE\u9762\u79EF(m\xB2)",prop:"construction_area"},{default:t(()=>[e(m,{modelValue:a.datas.construction_area,"onUpdate:modelValue":l[1]||(l[1]=o=>a.datas.construction_area=o),clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(d,{span:8},{default:t(()=>[e(u,{label:"\u623F\u5C4B\u98CE\u683C",prop:"house_style"},{default:t(()=>[e(m,{modelValue:a.datas.house_style,"onUpdate:modelValue":l[2]||(l[2]=o=>a.datas.house_style=o),clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(d,{span:8},{default:t(()=>[e(u,{label:"\u4FEE\u5EFA\u5730\u5740",prop:"construction_site"},{default:t(()=>[e(m,{modelValue:a.datas.construction_site,"onUpdate:modelValue":l[3]||(l[3]=o=>a.datas.construction_site=o),clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(d,{span:8},{default:t(()=>[e(u,{label:"\u9884\u7B97",prop:"budget"},{default:t(()=>[e(m,{modelValue:a.datas.budget,"onUpdate:modelValue":l[4]||(l[4]=o=>a.datas.budget=o),clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(d,{span:8},{default:t(()=>[e(u,{label:"\u6709\u65E0\u7EFF\u5316",prop:"afforest"},{default:t(()=>[e(n,{modelValue:a.datas.afforest,"onUpdate:modelValue":l[5]||(l[5]=o=>a.datas.afforest=o),size:"medium"},{default:t(()=>[e(i,{label:"1"},{default:t(()=>[s("\u6709")]),_:1}),e(i,{label:"0"},{default:t(()=>[s("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(d,{span:8},{default:t(()=>[e(u,{label:"\u6709\u65E0\u88C5\u4FEE",prop:"fitment"},{default:t(()=>[e(n,{modelValue:a.datas.fitment,"onUpdate:modelValue":l[6]||(l[6]=o=>a.datas.fitment=o),size:"medium"},{default:t(()=>[e(i,{label:"1"},{default:t(()=>[s("\u6709")]),_:1}),e(i,{label:"0"},{default:t(()=>[s("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(d,{span:8},{default:t(()=>[e(u,{label:"\u623F\u5C4B\u7C7B\u578B",prop:"house_type"},{default:t(()=>[e(n,{modelValue:a.datas.house_type,"onUpdate:modelValue":l[7]||(l[7]=o=>a.datas.house_type=o),size:"medium"},{default:t(()=>[e(i,{label:"1"},{default:t(()=>[s("\u79C1\u4EBA")]),_:1}),e(i,{label:"0"},{default:t(()=>[s("\u516C\u5171\u5EFA\u8BBE")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(d,{span:24},{default:t(()=>[e(u,{label:"\u4FEE\u5EFA\u5730\u7167\u7247",prop:"construction_site_img"},{default:t(()=>[e(_,{style:{width:"500px",height:"320px"},src:a.datas.construction_site_img,"preview-src-list":[a.datas.construction_site_img],fit:"cover"},null,8,["src","preview-src-list"])]),_:1})]),_:1})]),_:1})]),_:1},8,["model"])]),_:1})}}});const fe=R(D,[["__scopeId","data-v-15e9b991"]]);export{fe as default}; diff --git a/public/admin/assets/houseRepair.73c4668e.js b/public/admin/assets/houseRepair.73c4668e.js new file mode 100644 index 000000000..42fdcf595 --- /dev/null +++ b/public/admin/assets/houseRepair.73c4668e.js @@ -0,0 +1 @@ +import{G as b,H as V,C as y,a1 as F,B,b as g,a2 as C,D as w,I as x}from"./element-plus.4328d892.js";import{d as U,o as h,K as v,L as t,U as e,a as r,R as s,S as A}from"./@vue.51d7f2d8.js";import{d as R}from"./index.37f7aea6.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const z={class:"tit"},I={class:"time"},D=U({__name:"houseRepair",props:{datas:{type:Object,defualt:function(){return{construction_type:"",construction_area:"",house_style:"",construction_site:"",budget:"",afforest:"",fitment:"",house_type:"",construction_site_img:""}}},update_time:{type:String,defualt:""}},setup(a){return(p,l)=>{const i=b,n=V,u=y,d=F,m=B,_=g,f=C,c=w,E=x;return h(),v(E,{style:{"margin-top":"16px"}},{default:t(()=>[e(c,{ref:"elForm",disabled:!0,model:p.formData,size:"mini","label-width":"180px"},{default:t(()=>[r("div",z,[s(" \u4FEE\u623F "),r("span",I,"\u66F4\u65B0\u4E8E:"+A(a.update_time),1)]),e(f,null,{default:t(()=>[e(d,{span:8},{default:t(()=>[e(u,{label:"\u4FEE\u623F\u7C7B\u578B",prop:"construction_type"},{default:t(()=>[e(n,{modelValue:a.datas.construction_type,"onUpdate:modelValue":l[0]||(l[0]=o=>a.datas.construction_type=o),size:"medium"},{default:t(()=>[e(i,{label:"1"},{default:t(()=>[s("\u81EA\u5EFA")]),_:1}),e(i,{label:"0"},{default:t(()=>[s("\u5916\u5305")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(d,{span:8},{default:t(()=>[e(u,{label:"\u5EFA\u8BBE\u9762\u79EF(m\xB2)",prop:"construction_area"},{default:t(()=>[e(m,{modelValue:a.datas.construction_area,"onUpdate:modelValue":l[1]||(l[1]=o=>a.datas.construction_area=o),clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(d,{span:8},{default:t(()=>[e(u,{label:"\u623F\u5C4B\u98CE\u683C",prop:"house_style"},{default:t(()=>[e(m,{modelValue:a.datas.house_style,"onUpdate:modelValue":l[2]||(l[2]=o=>a.datas.house_style=o),clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(d,{span:8},{default:t(()=>[e(u,{label:"\u4FEE\u5EFA\u5730\u5740",prop:"construction_site"},{default:t(()=>[e(m,{modelValue:a.datas.construction_site,"onUpdate:modelValue":l[3]||(l[3]=o=>a.datas.construction_site=o),clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(d,{span:8},{default:t(()=>[e(u,{label:"\u9884\u7B97",prop:"budget"},{default:t(()=>[e(m,{modelValue:a.datas.budget,"onUpdate:modelValue":l[4]||(l[4]=o=>a.datas.budget=o),clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(d,{span:8},{default:t(()=>[e(u,{label:"\u6709\u65E0\u7EFF\u5316",prop:"afforest"},{default:t(()=>[e(n,{modelValue:a.datas.afforest,"onUpdate:modelValue":l[5]||(l[5]=o=>a.datas.afforest=o),size:"medium"},{default:t(()=>[e(i,{label:"1"},{default:t(()=>[s("\u6709")]),_:1}),e(i,{label:"0"},{default:t(()=>[s("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(d,{span:8},{default:t(()=>[e(u,{label:"\u6709\u65E0\u88C5\u4FEE",prop:"fitment"},{default:t(()=>[e(n,{modelValue:a.datas.fitment,"onUpdate:modelValue":l[6]||(l[6]=o=>a.datas.fitment=o),size:"medium"},{default:t(()=>[e(i,{label:"1"},{default:t(()=>[s("\u6709")]),_:1}),e(i,{label:"0"},{default:t(()=>[s("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(d,{span:8},{default:t(()=>[e(u,{label:"\u623F\u5C4B\u7C7B\u578B",prop:"house_type"},{default:t(()=>[e(n,{modelValue:a.datas.house_type,"onUpdate:modelValue":l[7]||(l[7]=o=>a.datas.house_type=o),size:"medium"},{default:t(()=>[e(i,{label:"1"},{default:t(()=>[s("\u79C1\u4EBA")]),_:1}),e(i,{label:"0"},{default:t(()=>[s("\u516C\u5171\u5EFA\u8BBE")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(d,{span:24},{default:t(()=>[e(u,{label:"\u4FEE\u5EFA\u5730\u7167\u7247",prop:"construction_site_img"},{default:t(()=>[e(_,{style:{width:"500px",height:"320px"},src:a.datas.construction_site_img,"preview-src-list":[a.datas.construction_site_img],fit:"cover"},null,8,["src","preview-src-list"])]),_:1})]),_:1})]),_:1})]),_:1},8,["model"])]),_:1})}}});const fe=R(D,[["__scopeId","data-v-15e9b991"]]);export{fe as default}; diff --git a/public/admin/assets/houseRepair.f318223d.js b/public/admin/assets/houseRepair.f318223d.js new file mode 100644 index 000000000..7eb444547 --- /dev/null +++ b/public/admin/assets/houseRepair.f318223d.js @@ -0,0 +1 @@ +import{G as b,H as V,C as y,a1 as F,B,b as g,a2 as C,D as w,I as x}from"./element-plus.4328d892.js";import{d as U,o as h,K as v,L as t,U as e,a as r,R as s,S as A}from"./@vue.51d7f2d8.js";import{d as R}from"./index.ed71ac09.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const z={class:"tit"},I={class:"time"},D=U({__name:"houseRepair",props:{datas:{type:Object,defualt:function(){return{construction_type:"",construction_area:"",house_style:"",construction_site:"",budget:"",afforest:"",fitment:"",house_type:"",construction_site_img:""}}},update_time:{type:String,defualt:""}},setup(a){return(p,l)=>{const i=b,n=V,u=y,d=F,m=B,_=g,f=C,c=w,E=x;return h(),v(E,{style:{"margin-top":"16px"}},{default:t(()=>[e(c,{ref:"elForm",disabled:!0,model:p.formData,size:"mini","label-width":"180px"},{default:t(()=>[r("div",z,[s(" \u4FEE\u623F "),r("span",I,"\u66F4\u65B0\u4E8E:"+A(a.update_time),1)]),e(f,null,{default:t(()=>[e(d,{span:8},{default:t(()=>[e(u,{label:"\u4FEE\u623F\u7C7B\u578B",prop:"construction_type"},{default:t(()=>[e(n,{modelValue:a.datas.construction_type,"onUpdate:modelValue":l[0]||(l[0]=o=>a.datas.construction_type=o),size:"medium"},{default:t(()=>[e(i,{label:"1"},{default:t(()=>[s("\u81EA\u5EFA")]),_:1}),e(i,{label:"0"},{default:t(()=>[s("\u5916\u5305")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(d,{span:8},{default:t(()=>[e(u,{label:"\u5EFA\u8BBE\u9762\u79EF(m\xB2)",prop:"construction_area"},{default:t(()=>[e(m,{modelValue:a.datas.construction_area,"onUpdate:modelValue":l[1]||(l[1]=o=>a.datas.construction_area=o),clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(d,{span:8},{default:t(()=>[e(u,{label:"\u623F\u5C4B\u98CE\u683C",prop:"house_style"},{default:t(()=>[e(m,{modelValue:a.datas.house_style,"onUpdate:modelValue":l[2]||(l[2]=o=>a.datas.house_style=o),clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(d,{span:8},{default:t(()=>[e(u,{label:"\u4FEE\u5EFA\u5730\u5740",prop:"construction_site"},{default:t(()=>[e(m,{modelValue:a.datas.construction_site,"onUpdate:modelValue":l[3]||(l[3]=o=>a.datas.construction_site=o),clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(d,{span:8},{default:t(()=>[e(u,{label:"\u9884\u7B97",prop:"budget"},{default:t(()=>[e(m,{modelValue:a.datas.budget,"onUpdate:modelValue":l[4]||(l[4]=o=>a.datas.budget=o),clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(d,{span:8},{default:t(()=>[e(u,{label:"\u6709\u65E0\u7EFF\u5316",prop:"afforest"},{default:t(()=>[e(n,{modelValue:a.datas.afforest,"onUpdate:modelValue":l[5]||(l[5]=o=>a.datas.afforest=o),size:"medium"},{default:t(()=>[e(i,{label:"1"},{default:t(()=>[s("\u6709")]),_:1}),e(i,{label:"0"},{default:t(()=>[s("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(d,{span:8},{default:t(()=>[e(u,{label:"\u6709\u65E0\u88C5\u4FEE",prop:"fitment"},{default:t(()=>[e(n,{modelValue:a.datas.fitment,"onUpdate:modelValue":l[6]||(l[6]=o=>a.datas.fitment=o),size:"medium"},{default:t(()=>[e(i,{label:"1"},{default:t(()=>[s("\u6709")]),_:1}),e(i,{label:"0"},{default:t(()=>[s("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(d,{span:8},{default:t(()=>[e(u,{label:"\u623F\u5C4B\u7C7B\u578B",prop:"house_type"},{default:t(()=>[e(n,{modelValue:a.datas.house_type,"onUpdate:modelValue":l[7]||(l[7]=o=>a.datas.house_type=o),size:"medium"},{default:t(()=>[e(i,{label:"1"},{default:t(()=>[s("\u79C1\u4EBA")]),_:1}),e(i,{label:"0"},{default:t(()=>[s("\u516C\u5171\u5EFA\u8BBE")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(d,{span:24},{default:t(()=>[e(u,{label:"\u4FEE\u5EFA\u5730\u7167\u7247",prop:"construction_site_img"},{default:t(()=>[e(_,{style:{width:"500px",height:"320px"},src:a.datas.construction_site_img,"preview-src-list":[a.datas.construction_site_img],fit:"cover"},null,8,["src","preview-src-list"])]),_:1})]),_:1})]),_:1})]),_:1},8,["model"])]),_:1})}}});const fe=R(D,[["__scopeId","data-v-15e9b991"]]);export{fe as default}; diff --git a/public/admin/assets/houseTransaction.61f9d2fb.js b/public/admin/assets/houseTransaction.61f9d2fb.js new file mode 100644 index 000000000..a94235321 --- /dev/null +++ b/public/admin/assets/houseTransaction.61f9d2fb.js @@ -0,0 +1 @@ +import{B as V,C as y,a1 as E,G as c,H as B,a2 as C,D,I as w}from"./element-plus.4328d892.js";import{d as F,r as U,o as g,K as x,L as t,U as e,a as r,R as n,S as h}from"./@vue.51d7f2d8.js";import{d as v}from"./index.37f7aea6.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const I={class:"tit"},R={class:"time"},T=F({__name:"houseTransaction",props:{datas:{type:Object,defualt:function(){return{place:"",house_type:"",rooms:"",house_area:"",orientation:"",floor:"",fitment:"",budget:"",payment_type:""}}},update_time:{type:String,defualt:""}},setup(a){return U(["\u8D85\u5E02","\u751F\u9C9C","\u996D\u5E97","\u4E94\u91D1","\u6742\u8D27","\u670D\u88C5","\u6587\u5177","\u5176\u4ED6"]),(p,l)=>{const m=V,u=y,d=E,s=c,i=B,f=C,b=D,_=w;return g(),x(_,{style:{"margin-top":"16px"}},{default:t(()=>[e(b,{ref:"elForm",disabled:!0,model:p.formData,size:"mini","label-width":"180px"},{default:t(()=>[r("div",I,[n(" \u4E70\u5356\u623F\u5C4B "),r("span",R,"\u66F4\u65B0\u4E8E:"+h(a.update_time),1)]),e(f,null,{default:t(()=>[e(d,{span:8},{default:t(()=>[e(u,{label:"\u5730\u70B9",prop:"place"},{default:t(()=>[e(m,{modelValue:a.datas.place,"onUpdate:modelValue":l[0]||(l[0]=o=>a.datas.place=o),clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(d,{span:8},{default:t(()=>[e(u,{label:"\u623F\u578B",prop:"house_type"},{default:t(()=>[e(m,{modelValue:a.datas.house_type,"onUpdate:modelValue":l[1]||(l[1]=o=>a.datas.house_type=o),clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(d,{span:8},{default:t(()=>[e(u,{label:"\u51E0\u623F",prop:"rooms"},{default:t(()=>[e(m,{modelValue:a.datas.rooms,"onUpdate:modelValue":l[2]||(l[2]=o=>a.datas.rooms=o),clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(d,{span:8},{default:t(()=>[e(u,{label:"\u9762\u79EF(m\xB2)",prop:"house_area"},{default:t(()=>[e(m,{modelValue:a.datas.house_area,"onUpdate:modelValue":l[3]||(l[3]=o=>a.datas.house_area=o),clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(d,{span:8},{default:t(()=>[e(u,{label:"\u671D\u5411",prop:"orientation"},{default:t(()=>[e(m,{modelValue:a.datas.orientation,"onUpdate:modelValue":l[4]||(l[4]=o=>a.datas.orientation=o),clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(d,{span:8},{default:t(()=>[e(u,{label:"\u697C\u5C42",prop:"floor"},{default:t(()=>[e(m,{modelValue:a.datas.floor,"onUpdate:modelValue":l[5]||(l[5]=o=>a.datas.floor=o),clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(d,{span:8},{default:t(()=>[e(u,{label:"\u88C5\u4FEE\u7C7B\u578B",prop:"fitment"},{default:t(()=>[e(i,{modelValue:a.datas.fitment,"onUpdate:modelValue":l[6]||(l[6]=o=>a.datas.fitment=o),size:"medium"},{default:t(()=>[e(s,{label:"1"},{default:t(()=>[n("\u7CBE\u88C5")]),_:1}),e(s,{label:"0"},{default:t(()=>[n("\u6E05\u6C34")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(d,{span:8},{default:t(()=>[e(u,{label:"\u9884\u7B97",prop:"budget"},{default:t(()=>[e(m,{modelValue:a.datas.budget,"onUpdate:modelValue":l[7]||(l[7]=o=>a.datas.budget=o),clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(d,{span:8},{default:t(()=>[e(u,{label:"\u4ED8\u6B3E\u7C7B\u578B",prop:"payment_type"},{default:t(()=>[e(i,{modelValue:a.datas.payment_type,"onUpdate:modelValue":l[8]||(l[8]=o=>a.datas.payment_type=o),size:"medium"},{default:t(()=>[e(s,{label:"1"},{default:t(()=>[n("\u6309\u63ED")]),_:1}),e(s,{label:"0"},{default:t(()=>[n("\u5168\u6B3E")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1})]),_:1})]),_:1},8,["model"])]),_:1})}}});const fe=v(T,[["__scopeId","data-v-130011cb"]]);export{fe as default}; diff --git a/public/admin/assets/houseTransaction.8e0d315a.js b/public/admin/assets/houseTransaction.8e0d315a.js new file mode 100644 index 000000000..f05ad3806 --- /dev/null +++ b/public/admin/assets/houseTransaction.8e0d315a.js @@ -0,0 +1 @@ +import{B as V,C as y,a1 as E,G as c,H as B,a2 as C,D,I as w}from"./element-plus.4328d892.js";import{d as F,r as U,o as g,K as x,L as t,U as e,a as r,R as n,S as h}from"./@vue.51d7f2d8.js";import{d as v}from"./index.ed71ac09.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const I={class:"tit"},R={class:"time"},T=F({__name:"houseTransaction",props:{datas:{type:Object,defualt:function(){return{place:"",house_type:"",rooms:"",house_area:"",orientation:"",floor:"",fitment:"",budget:"",payment_type:""}}},update_time:{type:String,defualt:""}},setup(a){return U(["\u8D85\u5E02","\u751F\u9C9C","\u996D\u5E97","\u4E94\u91D1","\u6742\u8D27","\u670D\u88C5","\u6587\u5177","\u5176\u4ED6"]),(p,l)=>{const m=V,u=y,d=E,s=c,i=B,f=C,b=D,_=w;return g(),x(_,{style:{"margin-top":"16px"}},{default:t(()=>[e(b,{ref:"elForm",disabled:!0,model:p.formData,size:"mini","label-width":"180px"},{default:t(()=>[r("div",I,[n(" \u4E70\u5356\u623F\u5C4B "),r("span",R,"\u66F4\u65B0\u4E8E:"+h(a.update_time),1)]),e(f,null,{default:t(()=>[e(d,{span:8},{default:t(()=>[e(u,{label:"\u5730\u70B9",prop:"place"},{default:t(()=>[e(m,{modelValue:a.datas.place,"onUpdate:modelValue":l[0]||(l[0]=o=>a.datas.place=o),clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(d,{span:8},{default:t(()=>[e(u,{label:"\u623F\u578B",prop:"house_type"},{default:t(()=>[e(m,{modelValue:a.datas.house_type,"onUpdate:modelValue":l[1]||(l[1]=o=>a.datas.house_type=o),clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(d,{span:8},{default:t(()=>[e(u,{label:"\u51E0\u623F",prop:"rooms"},{default:t(()=>[e(m,{modelValue:a.datas.rooms,"onUpdate:modelValue":l[2]||(l[2]=o=>a.datas.rooms=o),clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(d,{span:8},{default:t(()=>[e(u,{label:"\u9762\u79EF(m\xB2)",prop:"house_area"},{default:t(()=>[e(m,{modelValue:a.datas.house_area,"onUpdate:modelValue":l[3]||(l[3]=o=>a.datas.house_area=o),clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(d,{span:8},{default:t(()=>[e(u,{label:"\u671D\u5411",prop:"orientation"},{default:t(()=>[e(m,{modelValue:a.datas.orientation,"onUpdate:modelValue":l[4]||(l[4]=o=>a.datas.orientation=o),clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(d,{span:8},{default:t(()=>[e(u,{label:"\u697C\u5C42",prop:"floor"},{default:t(()=>[e(m,{modelValue:a.datas.floor,"onUpdate:modelValue":l[5]||(l[5]=o=>a.datas.floor=o),clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(d,{span:8},{default:t(()=>[e(u,{label:"\u88C5\u4FEE\u7C7B\u578B",prop:"fitment"},{default:t(()=>[e(i,{modelValue:a.datas.fitment,"onUpdate:modelValue":l[6]||(l[6]=o=>a.datas.fitment=o),size:"medium"},{default:t(()=>[e(s,{label:"1"},{default:t(()=>[n("\u7CBE\u88C5")]),_:1}),e(s,{label:"0"},{default:t(()=>[n("\u6E05\u6C34")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(d,{span:8},{default:t(()=>[e(u,{label:"\u9884\u7B97",prop:"budget"},{default:t(()=>[e(m,{modelValue:a.datas.budget,"onUpdate:modelValue":l[7]||(l[7]=o=>a.datas.budget=o),clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(d,{span:8},{default:t(()=>[e(u,{label:"\u4ED8\u6B3E\u7C7B\u578B",prop:"payment_type"},{default:t(()=>[e(i,{modelValue:a.datas.payment_type,"onUpdate:modelValue":l[8]||(l[8]=o=>a.datas.payment_type=o),size:"medium"},{default:t(()=>[e(s,{label:"1"},{default:t(()=>[n("\u6309\u63ED")]),_:1}),e(s,{label:"0"},{default:t(()=>[n("\u5168\u6B3E")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1})]),_:1})]),_:1},8,["model"])]),_:1})}}});const fe=v(T,[["__scopeId","data-v-130011cb"]]);export{fe as default}; diff --git a/public/admin/assets/houseTransaction.cc233a7f.js b/public/admin/assets/houseTransaction.cc233a7f.js new file mode 100644 index 000000000..3425aff49 --- /dev/null +++ b/public/admin/assets/houseTransaction.cc233a7f.js @@ -0,0 +1 @@ +import{B as V,C as y,a1 as E,G as c,H as B,a2 as C,D,I as w}from"./element-plus.4328d892.js";import{d as F,r as U,o as g,K as x,L as t,U as e,a as r,R as n,S as h}from"./@vue.51d7f2d8.js";import{d as v}from"./index.aa9bb752.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const I={class:"tit"},R={class:"time"},T=F({__name:"houseTransaction",props:{datas:{type:Object,defualt:function(){return{place:"",house_type:"",rooms:"",house_area:"",orientation:"",floor:"",fitment:"",budget:"",payment_type:""}}},update_time:{type:String,defualt:""}},setup(a){return U(["\u8D85\u5E02","\u751F\u9C9C","\u996D\u5E97","\u4E94\u91D1","\u6742\u8D27","\u670D\u88C5","\u6587\u5177","\u5176\u4ED6"]),(p,l)=>{const m=V,u=y,d=E,s=c,i=B,f=C,b=D,_=w;return g(),x(_,{style:{"margin-top":"16px"}},{default:t(()=>[e(b,{ref:"elForm",disabled:!0,model:p.formData,size:"mini","label-width":"180px"},{default:t(()=>[r("div",I,[n(" \u4E70\u5356\u623F\u5C4B "),r("span",R,"\u66F4\u65B0\u4E8E:"+h(a.update_time),1)]),e(f,null,{default:t(()=>[e(d,{span:8},{default:t(()=>[e(u,{label:"\u5730\u70B9",prop:"place"},{default:t(()=>[e(m,{modelValue:a.datas.place,"onUpdate:modelValue":l[0]||(l[0]=o=>a.datas.place=o),clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(d,{span:8},{default:t(()=>[e(u,{label:"\u623F\u578B",prop:"house_type"},{default:t(()=>[e(m,{modelValue:a.datas.house_type,"onUpdate:modelValue":l[1]||(l[1]=o=>a.datas.house_type=o),clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(d,{span:8},{default:t(()=>[e(u,{label:"\u51E0\u623F",prop:"rooms"},{default:t(()=>[e(m,{modelValue:a.datas.rooms,"onUpdate:modelValue":l[2]||(l[2]=o=>a.datas.rooms=o),clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(d,{span:8},{default:t(()=>[e(u,{label:"\u9762\u79EF(m\xB2)",prop:"house_area"},{default:t(()=>[e(m,{modelValue:a.datas.house_area,"onUpdate:modelValue":l[3]||(l[3]=o=>a.datas.house_area=o),clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(d,{span:8},{default:t(()=>[e(u,{label:"\u671D\u5411",prop:"orientation"},{default:t(()=>[e(m,{modelValue:a.datas.orientation,"onUpdate:modelValue":l[4]||(l[4]=o=>a.datas.orientation=o),clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(d,{span:8},{default:t(()=>[e(u,{label:"\u697C\u5C42",prop:"floor"},{default:t(()=>[e(m,{modelValue:a.datas.floor,"onUpdate:modelValue":l[5]||(l[5]=o=>a.datas.floor=o),clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(d,{span:8},{default:t(()=>[e(u,{label:"\u88C5\u4FEE\u7C7B\u578B",prop:"fitment"},{default:t(()=>[e(i,{modelValue:a.datas.fitment,"onUpdate:modelValue":l[6]||(l[6]=o=>a.datas.fitment=o),size:"medium"},{default:t(()=>[e(s,{label:"1"},{default:t(()=>[n("\u7CBE\u88C5")]),_:1}),e(s,{label:"0"},{default:t(()=>[n("\u6E05\u6C34")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(d,{span:8},{default:t(()=>[e(u,{label:"\u9884\u7B97",prop:"budget"},{default:t(()=>[e(m,{modelValue:a.datas.budget,"onUpdate:modelValue":l[7]||(l[7]=o=>a.datas.budget=o),clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(d,{span:8},{default:t(()=>[e(u,{label:"\u4ED8\u6B3E\u7C7B\u578B",prop:"payment_type"},{default:t(()=>[e(i,{modelValue:a.datas.payment_type,"onUpdate:modelValue":l[8]||(l[8]=o=>a.datas.payment_type=o),size:"medium"},{default:t(()=>[e(s,{label:"1"},{default:t(()=>[n("\u6309\u63ED")]),_:1}),e(s,{label:"0"},{default:t(()=>[n("\u5168\u6B3E")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1})]),_:1})]),_:1},8,["model"])]),_:1})}}});const fe=v(T,[["__scopeId","data-v-130011cb"]]);export{fe as default}; diff --git a/public/admin/assets/icon.10f15d85.js b/public/admin/assets/icon.10f15d85.js new file mode 100644 index 000000000..07d570a7f --- /dev/null +++ b/public/admin/assets/icon.10f15d85.js @@ -0,0 +1 @@ +import{I as v,w as z}from"./element-plus.4328d892.js";import{_ as E}from"./picker.vue_vue_type_script_setup_true_lang.d458cc42.js";import{b as o,q as x,s as w}from"./index.aa9bb752.js";import{d as B,$ as b,af as y,o as a,c as l,U as e,L as t,a as n,u as r,T as p,a7 as _,M as f,K as h}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const g={class:"flex items-center"},k={class:"flex items-center"},D={class:"flex items-center"},C={class:"flex items-center"},V={class:"flex flex-wrap"},N={class:"flex items-center"},I={class:"flex flex-wrap"},he=B({__name:"icon",setup(L){const m=b({value:""});return(S,c)=>{const i=v,F=E,u=z,d=y("copy");return a(),l("div",null,[e(i,{header:"element-plus\u56FE\u6807",shadow:"none",class:"!border-none"},{default:t(()=>[n("div",g,[e(o,{class:"m-4",size:24,name:"el-icon-Search"}),e(o,{class:"m-4",size:24,name:"el-icon-Plus"}),e(o,{class:"m-4",size:24,name:"el-icon-FullScreen"}),e(o,{class:"m-4",size:24,name:"el-icon-Setting"}),e(o,{class:"m-4",size:24,name:"el-icon-Warning"})])]),_:1}),e(i,{header:"\u672C\u5730\u56FE\u6807",shadow:"none",class:"!border-none mt-4"},{default:t(()=>[n("div",k,[e(o,{class:"m-4",size:24,name:"local-icon-baoxian"}),e(o,{class:"m-4",size:24,name:"local-icon-youhui"}),e(o,{class:"m-4",size:24,name:"local-icon-daiyunying"}),e(o,{class:"m-4",size:24,name:"local-icon-diancanshezhi"}),e(o,{class:"m-4",size:24,name:"local-icon-dianzifapiao"})])]),_:1}),e(i,{header:"\u56FE\u6807\u9009\u62E9\u5668",shadow:"none",class:"!border-none mt-4"},{default:t(()=>[n("div",D,[e(F,{modelValue:r(m).value,"onUpdate:modelValue":c[0]||(c[0]=s=>r(m).value=s)},null,8,["modelValue"])])]),_:1}),e(i,{header:"element-plus\u56FE\u6807\u5E93\u5927\u5168\uFF08\u70B9\u51FB\u590D\u5236\u56FE\u6807\u540D\u79F0\uFF09",shadow:"none",class:"!border-none mt-4"},{default:t(()=>[n("div",C,[n("div",V,[(a(!0),l(p,null,_(r(x)(),s=>(a(),l("div",{key:s,class:"m-1"},[f((a(),h(u,null,{default:t(()=>[e(o,{name:s,size:20},null,8,["name"])]),_:2},1024)),[[d,s]])]))),128))])])]),_:1}),e(i,{header:"\u672C\u5730\u56FE\u6807\u5E93\u5927\u5168\uFF08\u70B9\u51FB\u590D\u5236\u56FE\u6807\u540D\u79F0\uFF09",shadow:"none",class:"!border-none mt-4"},{default:t(()=>[n("div",N,[n("div",I,[(a(!0),l(p,null,_(r(w)(),s=>(a(),l("div",{key:s,class:"m-1"},[f((a(),h(u,null,{default:t(()=>[e(o,{name:s,size:20},null,8,["name"])]),_:2},1024)),[[d,s]])]))),128))])])]),_:1})])}}});export{he as default}; diff --git a/public/admin/assets/icon.2bb8b20a.js b/public/admin/assets/icon.2bb8b20a.js new file mode 100644 index 000000000..f7bfc0b0f --- /dev/null +++ b/public/admin/assets/icon.2bb8b20a.js @@ -0,0 +1 @@ +import{I as v,w as z}from"./element-plus.4328d892.js";import{_ as E}from"./picker.vue_vue_type_script_setup_true_lang.8519155b.js";import{b as o,q as x,s as w}from"./index.37f7aea6.js";import{d as B,$ as b,af as y,o as a,c as l,U as e,L as t,a as n,u as r,T as p,a7 as _,M as f,K as h}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const g={class:"flex items-center"},k={class:"flex items-center"},D={class:"flex items-center"},C={class:"flex items-center"},V={class:"flex flex-wrap"},N={class:"flex items-center"},I={class:"flex flex-wrap"},he=B({__name:"icon",setup(L){const m=b({value:""});return(S,c)=>{const i=v,F=E,u=z,d=y("copy");return a(),l("div",null,[e(i,{header:"element-plus\u56FE\u6807",shadow:"none",class:"!border-none"},{default:t(()=>[n("div",g,[e(o,{class:"m-4",size:24,name:"el-icon-Search"}),e(o,{class:"m-4",size:24,name:"el-icon-Plus"}),e(o,{class:"m-4",size:24,name:"el-icon-FullScreen"}),e(o,{class:"m-4",size:24,name:"el-icon-Setting"}),e(o,{class:"m-4",size:24,name:"el-icon-Warning"})])]),_:1}),e(i,{header:"\u672C\u5730\u56FE\u6807",shadow:"none",class:"!border-none mt-4"},{default:t(()=>[n("div",k,[e(o,{class:"m-4",size:24,name:"local-icon-baoxian"}),e(o,{class:"m-4",size:24,name:"local-icon-youhui"}),e(o,{class:"m-4",size:24,name:"local-icon-daiyunying"}),e(o,{class:"m-4",size:24,name:"local-icon-diancanshezhi"}),e(o,{class:"m-4",size:24,name:"local-icon-dianzifapiao"})])]),_:1}),e(i,{header:"\u56FE\u6807\u9009\u62E9\u5668",shadow:"none",class:"!border-none mt-4"},{default:t(()=>[n("div",D,[e(F,{modelValue:r(m).value,"onUpdate:modelValue":c[0]||(c[0]=s=>r(m).value=s)},null,8,["modelValue"])])]),_:1}),e(i,{header:"element-plus\u56FE\u6807\u5E93\u5927\u5168\uFF08\u70B9\u51FB\u590D\u5236\u56FE\u6807\u540D\u79F0\uFF09",shadow:"none",class:"!border-none mt-4"},{default:t(()=>[n("div",C,[n("div",V,[(a(!0),l(p,null,_(r(x)(),s=>(a(),l("div",{key:s,class:"m-1"},[f((a(),h(u,null,{default:t(()=>[e(o,{name:s,size:20},null,8,["name"])]),_:2},1024)),[[d,s]])]))),128))])])]),_:1}),e(i,{header:"\u672C\u5730\u56FE\u6807\u5E93\u5927\u5168\uFF08\u70B9\u51FB\u590D\u5236\u56FE\u6807\u540D\u79F0\uFF09",shadow:"none",class:"!border-none mt-4"},{default:t(()=>[n("div",N,[n("div",I,[(a(!0),l(p,null,_(r(w)(),s=>(a(),l("div",{key:s,class:"m-1"},[f((a(),h(u,null,{default:t(()=>[e(o,{name:s,size:20},null,8,["name"])]),_:2},1024)),[[d,s]])]))),128))])])]),_:1})])}}});export{he as default}; diff --git a/public/admin/assets/icon.742a9b95.js b/public/admin/assets/icon.742a9b95.js new file mode 100644 index 000000000..87414bda4 --- /dev/null +++ b/public/admin/assets/icon.742a9b95.js @@ -0,0 +1 @@ +import{I as v,w as z}from"./element-plus.4328d892.js";import{_ as E}from"./picker.vue_vue_type_script_setup_true_lang.150460d1.js";import{b as o,q as x,s as w}from"./index.ed71ac09.js";import{d as B,$ as b,af as y,o as a,c as l,U as e,L as t,a as n,u as r,T as p,a7 as _,M as f,K as h}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const g={class:"flex items-center"},k={class:"flex items-center"},D={class:"flex items-center"},C={class:"flex items-center"},V={class:"flex flex-wrap"},N={class:"flex items-center"},I={class:"flex flex-wrap"},he=B({__name:"icon",setup(L){const m=b({value:""});return(S,c)=>{const i=v,F=E,u=z,d=y("copy");return a(),l("div",null,[e(i,{header:"element-plus\u56FE\u6807",shadow:"none",class:"!border-none"},{default:t(()=>[n("div",g,[e(o,{class:"m-4",size:24,name:"el-icon-Search"}),e(o,{class:"m-4",size:24,name:"el-icon-Plus"}),e(o,{class:"m-4",size:24,name:"el-icon-FullScreen"}),e(o,{class:"m-4",size:24,name:"el-icon-Setting"}),e(o,{class:"m-4",size:24,name:"el-icon-Warning"})])]),_:1}),e(i,{header:"\u672C\u5730\u56FE\u6807",shadow:"none",class:"!border-none mt-4"},{default:t(()=>[n("div",k,[e(o,{class:"m-4",size:24,name:"local-icon-baoxian"}),e(o,{class:"m-4",size:24,name:"local-icon-youhui"}),e(o,{class:"m-4",size:24,name:"local-icon-daiyunying"}),e(o,{class:"m-4",size:24,name:"local-icon-diancanshezhi"}),e(o,{class:"m-4",size:24,name:"local-icon-dianzifapiao"})])]),_:1}),e(i,{header:"\u56FE\u6807\u9009\u62E9\u5668",shadow:"none",class:"!border-none mt-4"},{default:t(()=>[n("div",D,[e(F,{modelValue:r(m).value,"onUpdate:modelValue":c[0]||(c[0]=s=>r(m).value=s)},null,8,["modelValue"])])]),_:1}),e(i,{header:"element-plus\u56FE\u6807\u5E93\u5927\u5168\uFF08\u70B9\u51FB\u590D\u5236\u56FE\u6807\u540D\u79F0\uFF09",shadow:"none",class:"!border-none mt-4"},{default:t(()=>[n("div",C,[n("div",V,[(a(!0),l(p,null,_(r(x)(),s=>(a(),l("div",{key:s,class:"m-1"},[f((a(),h(u,null,{default:t(()=>[e(o,{name:s,size:20},null,8,["name"])]),_:2},1024)),[[d,s]])]))),128))])])]),_:1}),e(i,{header:"\u672C\u5730\u56FE\u6807\u5E93\u5927\u5168\uFF08\u70B9\u51FB\u590D\u5236\u56FE\u6807\u540D\u79F0\uFF09",shadow:"none",class:"!border-none mt-4"},{default:t(()=>[n("div",N,[n("div",I,[(a(!0),l(p,null,_(r(w)(),s=>(a(),l("div",{key:s,class:"m-1"},[f((a(),h(u,null,{default:t(()=>[e(o,{name:s,size:20},null,8,["name"])]),_:2},1024)),[[d,s]])]))),128))])])]),_:1})])}}});export{he as default}; diff --git a/public/admin/assets/index.016f3889.js b/public/admin/assets/index.016f3889.js new file mode 100644 index 000000000..eb877ba16 --- /dev/null +++ b/public/admin/assets/index.016f3889.js @@ -0,0 +1 @@ +import{B as q,C as K,M as z,N as G,w as H,D as J,I as W,O as X,P as Y,Q as Z}from"./element-plus.4328d892.js";import{_ as ee}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{_ as te}from"./index.vue_vue_type_script_setup_true_lang.17266fa4.js";import{f as oe,b as ae}from"./index.aa9bb752.js";import{u as se}from"./usePaging.2ad8e1e6.js";import{u as le}from"./useDictOptions.a61fcf9f.js";import{_ as ne,a as ie,b as ue}from"./edit.vue_vue_type_script_setup_true_name_categoryBusinessEdit_lang.0f542952.js";import"./lodash.08438971.js";import{d as $,s as re,r as D,$ as pe,af as me,o as n,c as V,U as e,L as a,u as o,T as ce,a7 as de,K as r,R as m,M as _,a as x,k as _e,Q as fe,n as w}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.fa872673.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";const be={class:"mt-4"},ve={class:"flex mt-4 justify-end"},ge=$({name:"categoryBusinessLists"}),it=$({...ge,setup(ye){const c=re(),f=D(!1),i=pe({name:"",sort:"",status:""}),h=D([]),L=l=>{h.value=l.map(({id:t})=>t)},{dictData:k}=le("show_status"),{pager:b,getLists:g,resetParams:P,resetPage:N}=se({fetchFun:ue,params:i}),R=async()=>{var l;f.value=!0,await w(),(l=c.value)==null||l.open("add")},S=async l=>{var t,u;f.value=!0,await w(),(t=c.value)==null||t.open("check"),(u=c.value)==null||u.setFormData(l)},T=async l=>{var t,u;f.value=!0,await w(),(t=c.value)==null||t.open("edit"),(u=c.value)==null||u.setFormData(l)},E=async l=>{await oe.confirm("\u786E\u5B9A\u8981\u5220\u9664\uFF1F"),await ie({id:l}),g()};return g().then(l=>{console.log(l)}),(l,t)=>{const u=q,y=K,F=z,U=G,p=H,A=J,B=W,I=ae,d=X,M=te,O=Y,Q=ee,v=me("perms"),j=Z;return n(),V("div",null,[e(B,{class:"!border-none mb-4",shadow:"never"},{default:a(()=>[e(A,{class:"mb-[-16px]",model:o(i),inline:""},{default:a(()=>[e(y,{label:"\u540D\u79F0",prop:"name"},{default:a(()=>[e(u,{class:"w-[280px]",modelValue:o(i).name,"onUpdate:modelValue":t[0]||(t[0]=s=>o(i).name=s),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u540D\u79F0"},null,8,["modelValue"])]),_:1}),e(y,{label:"\u6392\u5E8F",prop:"sort"},{default:a(()=>[e(u,{class:"w-[280px]",modelValue:o(i).sort,"onUpdate:modelValue":t[1]||(t[1]=s=>o(i).sort=s),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u6392\u5E8F"},null,8,["modelValue"])]),_:1}),e(y,{label:"\u72B6\u6001",prop:"status"},{default:a(()=>[e(U,{class:"w-[280px]",modelValue:o(i).status,"onUpdate:modelValue":t[2]||(t[2]=s=>o(i).status=s),clearable:"",placeholder:"\u8BF7\u9009\u62E9\u72B6\u6001"},{default:a(()=>[e(F,{label:"\u5168\u90E8",value:""}),(n(!0),V(ce,null,de(o(k).show_status,(s,C)=>(n(),r(F,{key:C,label:s.name,value:s.value},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1}),e(y,null,{default:a(()=>[e(p,{type:"primary",onClick:o(N)},{default:a(()=>[m("\u67E5\u8BE2")]),_:1},8,["onClick"]),e(p,{onClick:o(P)},{default:a(()=>[m("\u91CD\u7F6E")]),_:1},8,["onClick"])]),_:1})]),_:1},8,["model"])]),_:1}),_((n(),r(B,{class:"!border-none",shadow:"never"},{default:a(()=>[_((n(),r(p,{type:"primary",onClick:R},{icon:a(()=>[e(I,{name:"el-icon-Plus"})]),default:a(()=>[m(" \u65B0\u589E ")]),_:1})),[[v,["category_business.category_business/add"]]]),_((n(),r(p,{disabled:!o(h).length,onClick:t[3]||(t[3]=s=>E(o(h)))},{default:a(()=>[m(" \u5220\u9664 ")]),_:1},8,["disabled"])),[[v,["category_business.category_business/delete"]]]),x("div",be,[e(O,{data:o(b).lists,onSelectionChange:L,"row-key":"id","tree-props":{children:"children",hasChildren:"hasChildren"}},{default:a(()=>[e(d,{label:"id",prop:"id","show-overflow-tooltip":""}),e(d,{label:"\u540D\u79F0",prop:"name","show-overflow-tooltip":""}),e(d,{label:"\u4E0A\u7EA7id",prop:"pid","show-overflow-tooltip":""}),e(d,{label:"\u6392\u5E8F",prop:"sort","show-overflow-tooltip":""}),e(d,{label:"\u72B6\u6001",prop:"status"},{default:a(({row:s})=>[e(M,{options:o(k).show_status,value:s.status},null,8,["options","value"])]),_:1}),e(d,{label:"\u64CD\u4F5C",width:"180",align:"center",fixed:"right"},{default:a(({row:s})=>[_((n(),r(p,{type:"primary",link:"",onClick:C=>S(s)},{default:a(()=>[m(" \u8BE6\u60C5 ")]),_:2},1032,["onClick"])),[[v,["category_business.category_business/edit","category_business.category_business/delete","category_business.category_business/edit"]]]),_((n(),r(p,{type:"primary",link:"",onClick:C=>T(s)},{default:a(()=>[m(" \u7F16\u8F91 ")]),_:2},1032,["onClick"])),[[v,["category_business.category_business/edit"]]]),_((n(),r(p,{type:"danger",link:"",onClick:C=>E(s.id)},{default:a(()=>[m(" \u5220\u9664 ")]),_:2},1032,["onClick"])),[[v,["category_business.category_business/delete"]]])]),_:1})]),_:1},8,["data"])]),x("div",ve,[e(Q,{modelValue:o(b),"onUpdate:modelValue":t[4]||(t[4]=s=>_e(b)?b.value=s:null),onChange:o(g)},null,8,["modelValue","onChange"])])]),_:1})),[[j,o(b).loading]]),o(f)?(n(),r(ne,{key:0,ref_key:"editRef",ref:c,"dict-data":o(k),onSuccess:o(g),onClose:t[5]||(t[5]=s=>f.value=!1)},null,8,["dict-data","onSuccess"])):fe("",!0)])}}});export{it as default}; diff --git a/public/admin/assets/index.017d9ee1.js b/public/admin/assets/index.017d9ee1.js new file mode 100644 index 000000000..1b57d07e6 --- /dev/null +++ b/public/admin/assets/index.017d9ee1.js @@ -0,0 +1 @@ +import{_ as s}from"./attr.vue_vue_type_script_setup_true_lang.8394104e.js";import{_}from"./content.vue_vue_type_script_setup_true_lang.84d28a88.js";import{_ as r}from"./attr.vue_vue_type_script_setup_true_lang.be7eaab3.js";import a from"./content.b8657a15.js";import{_ as l}from"./attr.vue_vue_type_script_setup_true_lang.5e1d2ee6.js";import u from"./content.de68a2a6.js";import{_ as c}from"./attr.vue_vue_type_script_setup_true_lang.19311265.js";import{_ as m}from"./content.vue_vue_type_script_setup_true_lang.c8560c8f.js";import{_ as d}from"./attr.vue_vue_type_script_setup_true_lang.d01577b5.js";import f from"./content.54b16038.js";import{_ as p}from"./attr.vue_vue_type_script_setup_true_lang.0fc534ba.js";import b from"./content.fb432a0e.js";import{_ as g}from"./attr.vue_vue_type_script_setup_true_lang.103310f1.js";import{_ as $}from"./content.vue_vue_type_script_setup_true_lang.e9fe6f66.js";import{_ as y}from"./attr.vue_vue_type_script_setup_true_lang.00e826d0.js";import v from"./content.0dcb8921.js";const j=()=>({title:"\u9996\u9875\u8F6E\u64AD\u56FE",name:"banner",content:{enabled:1,data:[{image:"",name:"",link:{}}]},styles:{}}),x={attr:s,content:_,options:j},O=Object.freeze(Object.defineProperty({__proto__:null,default:x},Symbol.toStringTag,{value:"Module"})),F=()=>({title:"\u5BA2\u670D\u8BBE\u7F6E",name:"customer-service",content:{title:"\u6DFB\u52A0\u5BA2\u670D\u4E8C\u7EF4\u7801",time:"",mobile:"",qrcode:""},styles:{}}),S={attr:r,content:a,options:F},A=Object.freeze(Object.defineProperty({__proto__:null,default:S},Symbol.toStringTag,{value:"Module"})),E=()=>({title:"\u6211\u7684\u670D\u52A1",name:"my-service",content:{style:1,title:"\u6211\u7684\u670D\u52A1",data:[{image:"",name:"\u5BFC\u822A\u540D\u79F0",link:{}}]},styles:{}}),D={attr:l,content:u,options:E},B=Object.freeze(Object.defineProperty({__proto__:null,default:D},Symbol.toStringTag,{value:"Module"})),z=()=>({title:"\u5BFC\u822A\u83DC\u5355",name:"nav",content:{enabled:1,data:[{image:"",name:"\u5BFC\u822A\u540D\u79F0",link:{}}]},styles:{}}),M={attr:c,content:m,options:z},P=Object.freeze(Object.defineProperty({__proto__:null,default:M},Symbol.toStringTag,{value:"Module"})),T=()=>({title:"\u8D44\u8BAF",name:"news",disabled:1,content:{},styles:{}}),w={attr:d,content:f,options:T},C=Object.freeze(Object.defineProperty({__proto__:null,default:w},Symbol.toStringTag,{value:"Module"})),k=()=>({title:"\u641C\u7D22",name:"search",disabled:1,content:{},styles:{}}),h={attr:p,content:b,options:k},q=Object.freeze(Object.defineProperty({__proto__:null,default:h},Symbol.toStringTag,{value:"Module"})),N=()=>({title:"\u4E2A\u4EBA\u4E2D\u5FC3\u5E7F\u544A\u56FE",name:"user-banner",content:{enabled:1,data:[{image:"",name:"",link:{}}]},styles:{}}),W={attr:g,content:$,options:N},G=Object.freeze(Object.defineProperty({__proto__:null,default:W},Symbol.toStringTag,{value:"Module"})),H=()=>({title:"\u7528\u6237\u4FE1\u606F",name:"user-info",disabled:1,content:{},styles:{}}),I={attr:y,content:v,options:H},J=Object.freeze(Object.defineProperty({__proto__:null,default:I},Symbol.toStringTag,{value:"Module"})),t=Object.assign({"./banner/index.ts":O,"./customer-service/index.ts":A,"./my-service/index.ts":B,"./nav/index.ts":P,"./news/index.ts":C,"./search/index.ts":q,"./user-banner/index.ts":G,"./user-info/index.ts":J});console.log(t);const n={};Object.keys(t).forEach(e=>{var o;const i=e.replace(/^\.\/([\w-]+).*/gi,"$1");n[i]=(o=t[e])==null?void 0:o.default});const rt=n;export{rt as w}; diff --git a/public/admin/assets/index.01b83b88.js b/public/admin/assets/index.01b83b88.js new file mode 100644 index 000000000..9a95d9e98 --- /dev/null +++ b/public/admin/assets/index.01b83b88.js @@ -0,0 +1 @@ +import{B as L,C as P,w as R,D as S,I as U,O as I,P as N,Q as $}from"./element-plus.4328d892.js";import{_ as M}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{u as T}from"./usePaging.2ad8e1e6.js";import{u as Q}from"./useDictOptions.a61fcf9f.js";import{_ as j,a as q}from"./edit.vue_vue_type_script_setup_true_name_shopMerchantEdit_lang.73c4b5a4.js";import"./lodash.08438971.js";import"./index.aa9bb752.js";import{d as w,s as z,r as B,$ as K,o as i,c as O,U as o,L as a,u as e,R as E,M as G,K as h,a as C,k as H,Q as J}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.fa872673.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const W={class:"mt-4"},X={class:"flex mt-4 justify-end"},Y=w({name:"shopMerchantLists"}),Qo=w({...Y,setup(Z){const b=z(),d=B(!1),l=K({company_name:"",master_name:"",master_phone:""}),F=B([]),v=c=>{F.value=c.map(({id:t})=>t)},{dictData:D}=Q(""),{pager:r,getLists:m,resetParams:V,resetPage:g}=T({fetchFun:q,params:l});return m(),(c,t)=>{const p=L,s=P,_=R,y=S,f=U,u=I,A=N,k=M,x=$;return i(),O("div",null,[o(f,{class:"!border-none mb-4",shadow:"never"},{default:a(()=>[o(y,{class:"mb-[-16px]",model:e(l),inline:""},{default:a(()=>[o(s,{label:"\u5546\u6237\u540D\u79F0",prop:"company_name"},{default:a(()=>[o(p,{class:"w-[280px]",modelValue:e(l).company_name,"onUpdate:modelValue":t[0]||(t[0]=n=>e(l).company_name=n),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u5546\u6237\u540D\u79F0"},null,8,["modelValue"])]),_:1}),o(s,{label:"\u4E3B\u8054\u7CFB\u4EBA\u59D3\u540D",prop:"master_name"},{default:a(()=>[o(p,{class:"w-[280px]",modelValue:e(l).master_name,"onUpdate:modelValue":t[1]||(t[1]=n=>e(l).master_name=n),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u4E3B\u8054\u7CFB\u4EBA\u59D3\u540D"},null,8,["modelValue"])]),_:1}),o(s,{label:"\u4E3B\u8054\u7CFB\u4EBA\u624B\u673A",prop:"master_phone"},{default:a(()=>[o(p,{class:"w-[280px]",modelValue:e(l).master_phone,"onUpdate:modelValue":t[2]||(t[2]=n=>e(l).master_phone=n),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u4E3B\u8054\u7CFB\u4EBA\u624B\u673A"},null,8,["modelValue"])]),_:1}),o(s,null,{default:a(()=>[o(_,{type:"primary",onClick:e(g)},{default:a(()=>[E("\u67E5\u8BE2")]),_:1},8,["onClick"]),o(_,{onClick:e(V)},{default:a(()=>[E("\u91CD\u7F6E")]),_:1},8,["onClick"])]),_:1})]),_:1},8,["model"])]),_:1}),G((i(),h(f,{class:"!border-none",shadow:"never"},{default:a(()=>[C("div",W,[o(A,{data:e(r).lists,onSelectionChange:v},{default:a(()=>[o(u,{label:"ID",width:"100",prop:"id","show-overflow-tooltip":""}),o(u,{label:"\u5546\u6237\u540D\u79F0",prop:"company_name","show-overflow-tooltip":""}),o(u,{label:"\u793E\u4F1A\u4EE3\u7801",prop:"organization_code","show-overflow-tooltip":""}),o(u,{label:"\u4E3B\u8054\u7CFB\u4EBA\u59D3\u540D",prop:"master_name","show-overflow-tooltip":""}),o(u,{label:"\u4E3B\u8054\u7CFB\u4EBA\u624B\u673A",prop:"master_phone","show-overflow-tooltip":""}),o(u,{label:"\u8BA4\u8BC1\u53CD\u9988",prop:"notes","show-overflow-tooltip":""})]),_:1},8,["data"])]),C("div",X,[o(k,{modelValue:e(r),"onUpdate:modelValue":t[3]||(t[3]=n=>H(r)?r.value=n:null),onChange:e(m)},null,8,["modelValue","onChange"])])]),_:1})),[[x,e(r).loading]]),e(d)?(i(),h(j,{key:0,ref_key:"editRef",ref:b,"dict-data":e(D),onSuccess:e(m),onClose:t[4]||(t[4]=n=>d.value=!1)},null,8,["dict-data","onSuccess"])):J("",!0)])}}});export{Qo as default}; diff --git a/public/admin/assets/index.023332c8.js b/public/admin/assets/index.023332c8.js new file mode 100644 index 000000000..11060b01e --- /dev/null +++ b/public/admin/assets/index.023332c8.js @@ -0,0 +1 @@ +import{B as M,C as O,w as z,D as G,I as H,O as J,P as W,Q as X}from"./element-plus.4328d892.js";import{_ as Y}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{f as Z,b as ee}from"./index.aa9bb752.js";import{u as oe}from"./usePaging.2ad8e1e6.js";import{u as te}from"./useDictOptions.a61fcf9f.js";import{e as ae,a as le}from"./user_role.cb302517.js";import"./lodash.08438971.js";import{_ as se}from"./edit.vue_vue_type_script_setup_true_name_userRoleEdit_lang.4568c7f1.js";import{_ as ne}from"./auth.vue_vue_type_script_setup_true_lang.439c758a.js";import{d as R,s as B,r as y,$ as re,af as ie,o as n,c as ue,U as o,L as a,u as t,R as p,M as c,K as i,a as $,k as me,Q as x,n as D}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.fa872673.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./user_menu.121458b5.js";const pe={class:"mt-4"},de={class:"flex mt-4 justify-end"},ce=R({name:"userRoleLists"}),lo=R({...ce,setup(_e){const C=B(),F=y(!1),d=re({name:"",desc:"",menu_arr:"",sort:""}),k=y([]),P=s=>{k.value=s.map(({id:e})=>e)},{dictData:S}=te(""),{pager:_,getLists:f,resetParams:U,resetPage:L}=oe({fetchFun:le,params:d}),A=async()=>{var s;F.value=!0,await D(),(s=C.value)==null||s.open("add")},I=async s=>{var e,r;F.value=!0,await D(),(e=C.value)==null||e.open("edit"),(r=C.value)==null||r.setFormData(s)},w=B(),h=y(!1),N=async s=>{var e,r;h.value=!0,await D(),(e=w.value)==null||e.open(),(r=w.value)==null||r.setFormData(s)},g=async s=>{await Z.confirm("\u786E\u5B9A\u8981\u5220\u9664\uFF1F"),await ae({id:s}),f()};return f(),(s,e)=>{const r=M,b=O,u=z,T=G,E=H,Q=ee,m=J,j=W,q=Y,v=ie("perms"),K=X;return n(),ue("div",null,[o(E,{class:"!border-none mb-4",shadow:"never"},{default:a(()=>[o(T,{class:"mb-[-16px]",model:t(d),inline:""},{default:a(()=>[o(b,{label:"\u540D\u79F0",prop:"name"},{default:a(()=>[o(r,{class:"w-[280px]",modelValue:t(d).name,"onUpdate:modelValue":e[0]||(e[0]=l=>t(d).name=l),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u540D\u79F0"},null,8,["modelValue"])]),_:1}),o(b,{label:"\u63CF\u8FF0",prop:"desc"},{default:a(()=>[o(r,{class:"w-[280px]",modelValue:t(d).desc,"onUpdate:modelValue":e[1]||(e[1]=l=>t(d).desc=l),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u63CF\u8FF0"},null,8,["modelValue"])]),_:1}),o(b,null,{default:a(()=>[o(u,{type:"primary",onClick:t(L)},{default:a(()=>[p("\u67E5\u8BE2")]),_:1},8,["onClick"]),o(u,{onClick:t(U)},{default:a(()=>[p("\u91CD\u7F6E")]),_:1},8,["onClick"])]),_:1})]),_:1},8,["model"])]),_:1}),c((n(),i(E,{class:"!border-none",shadow:"never"},{default:a(()=>[c((n(),i(u,{type:"primary",onClick:A},{icon:a(()=>[o(Q,{name:"el-icon-Plus"})]),default:a(()=>[p(" \u65B0\u589E ")]),_:1})),[[v,["user.user_role/add"]]]),c((n(),i(u,{disabled:!t(k).length,onClick:e[2]||(e[2]=l=>g(t(k)))},{default:a(()=>[p(" \u5220\u9664 ")]),_:1},8,["disabled"])),[[v,["user.user_role/delete"]]]),$("div",pe,[o(j,{data:t(_).lists,onSelectionChange:P},{default:a(()=>[o(m,{type:"selection",width:"55"}),o(m,{label:"ID",prop:"id","show-overflow-tooltip":""}),o(m,{label:"\u540D\u79F0",prop:"name","show-overflow-tooltip":""}),o(m,{label:"\u63CF\u8FF0",prop:"desc","show-overflow-tooltip":""}),o(m,{label:"\u6743\u9650id",prop:"menu_arr","show-overflow-tooltip":""}),o(m,{label:"\u6392\u5E8F",prop:"sort","show-overflow-tooltip":""}),o(m,{label:"\u64CD\u4F5C",width:"210",fixed:"right"},{default:a(({row:l})=>[c((n(),i(u,{type:"primary",link:"",onClick:V=>I(l)},{default:a(()=>[p(" \u7F16\u8F91 ")]),_:2},1032,["onClick"])),[[v,["user.user_role/edit"]]]),c((n(),i(u,{link:"",type:"primary",onClick:V=>N(l)},{default:a(()=>[p(" \u5206\u914D\u6743\u9650 ")]),_:2},1032,["onClick"])),[[v,["auth.role/edit"]]]),c((n(),i(u,{type:"danger",link:"",onClick:V=>g(l.id)},{default:a(()=>[p(" \u5220\u9664 ")]),_:2},1032,["onClick"])),[[v,["user.user_role/delete"]]])]),_:1})]),_:1},8,["data"])]),$("div",de,[o(q,{modelValue:t(_),"onUpdate:modelValue":e[3]||(e[3]=l=>me(_)?_.value=l:null),onChange:t(f)},null,8,["modelValue","onChange"])])]),_:1})),[[K,t(_).loading]]),t(F)?(n(),i(se,{key:0,ref_key:"editRef",ref:C,"dict-data":t(S),onSuccess:t(f),onClose:e[4]||(e[4]=l=>F.value=!1)},null,8,["dict-data","onSuccess"])):x("",!0),t(h)?(n(),i(ne,{key:1,ref_key:"authRef",ref:w,onSuccess:t(f),onClose:e[5]||(e[5]=l=>h.value=!1)},null,8,["onSuccess"])):x("",!0)])}}});export{lo as default}; diff --git a/public/admin/assets/index.025b4b64.js b/public/admin/assets/index.025b4b64.js new file mode 100644 index 000000000..f53d7351c --- /dev/null +++ b/public/admin/assets/index.025b4b64.js @@ -0,0 +1 @@ +import{a6 as I,B as Q,C as j,w as q,D as K,I as O,O as z,P as G,Q as H}from"./element-plus.4328d892.js";import{_ as J}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{f as W,b as X}from"./index.ed71ac09.js";import{u as Y}from"./usePaging.2ad8e1e6.js";import{u as Z}from"./useDictOptions.8d37e54b.js";import{d as ee,e as oe}from"./user_menu.aabbc7a8.js";import"./lodash.08438971.js";import te from"./edit.b35b03ab.js";import{d as F,s as ae,r as y,$ as le,w as se,af as ne,o as n,c as re,U as o,L as e,u as l,R as u,M as v,K as p,a as b,k as ie,Q as ue,n as D}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.b940d6e3.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";const pe={class:"mt-4"},me=["src"],de={class:"flex mt-4 justify-end"},ce=F({name:"userMenuLists"}),to=F({...ce,setup(_e){const _=ae(),f=y(!1),h=le({pid:"",type:"",name:"",icon:"",sort:"",paths:"",params:"",is_show:"",is_disable:""}),g=y([]),x=t=>{g.value=t.map(({id:s})=>s)},{dictData:B}=Z(""),{pager:m,getLists:C,resetParams:L,resetPage:P}=Y({fetchFun:oe,params:h}),V=async()=>{var t;f.value=!0,await D(),(t=_.value)==null||t.open("add")},$=async t=>{var s,r;f.value=!0,await D(),(s=_.value)==null||s.open("edit"),(r=_.value)==null||r.setFormData(t)},N=async t=>{await W.confirm("\u786E\u5B9A\u8981\u5220\u9664\uFF1F"),await ee({id:t}),C()};return C(),se(()=>m.lists,(t,s)=>{t==null||t.forEach(r=>{var c;(c=r==null?void 0:r.children)==null||c.forEach(d=>{d.parentName=r.name})})}),(t,s)=>{const r=Q,c=j,d=q,R=K,k=O,T=X,i=z,w=I,U=G,A=J,E=ne("perms"),M=H;return n(),re("div",null,[o(k,{class:"!border-none mb-4",shadow:"never"},{default:e(()=>[o(R,{class:"mb-[-16px]",model:l(h),inline:""},{default:e(()=>[o(c,{label:"\u83DC\u5355\u540D\u79F0",prop:"name"},{default:e(()=>[o(r,{class:"w-[280px]",modelValue:l(h).name,"onUpdate:modelValue":s[0]||(s[0]=a=>l(h).name=a),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u83DC\u5355\u540D\u79F0"},null,8,["modelValue"])]),_:1}),o(c,null,{default:e(()=>[o(d,{type:"primary",onClick:l(P)},{default:e(()=>[u("\u67E5\u8BE2")]),_:1},8,["onClick"]),o(d,{onClick:l(L)},{default:e(()=>[u("\u91CD\u7F6E")]),_:1},8,["onClick"])]),_:1})]),_:1},8,["model"])]),_:1}),v((n(),p(k,{class:"!border-none",shadow:"never"},{default:e(()=>[v((n(),p(d,{type:"primary",onClick:V},{icon:e(()=>[o(T,{name:"el-icon-Plus"})]),default:e(()=>[u(" \u65B0\u589E ")]),_:1})),[[E,["user.user_menu/add"]]]),b("div",pe,[o(U,{data:l(m).lists,onSelectionChange:x,"row-key":"id","tree-props":{children:"children",hasChildren:"hasChildren"}},{default:e(()=>[o(i,{label:"\u83DC\u5355\u540D\u79F0",prop:"name","show-overflow-tooltip":""}),o(i,{label:"\u83DC\u5355\u56FE\u6807",prop:"icon","show-overflow-tooltip":""},{default:e(({row:a})=>[b("img",{src:a.icon,style:{width:"50px",height:"50px"}},null,8,me)]),_:1}),o(i,{label:"\u83DC\u5355\u5907\u6CE8",prop:"notes","show-overflow-tooltip":""}),o(i,{label:"\u83DC\u5355\u6392\u5E8F",prop:"sort","show-overflow-tooltip":""}),o(i,{label:"\u8DEF\u7531\u5730\u5740",prop:"paths","show-overflow-tooltip":"",width:"320px"}),o(i,{label:"\u8DEF\u7531\u53C2\u6570",prop:"params","show-overflow-tooltip":""}),o(i,{label:"\u662F\u5426\u663E\u793A",prop:"is_show","show-overflow-tooltip":""},{default:e(({row:a})=>[a.is_show==1?(n(),p(w,{key:0},{default:e(()=>[u("\u663E\u793A")]),_:1})):(n(),p(w,{key:1,type:"danger"},{default:e(()=>[u("\u9690\u85CF")]),_:1}))]),_:1}),o(i,{label:"\u662F\u5426\u7981\u7528",prop:"is_disable","show-overflow-tooltip":""},{default:e(({row:a})=>[a.is_disable==0?(n(),p(w,{key:0},{default:e(()=>[u("\u6B63\u5E38")]),_:1})):(n(),p(w,{key:1,type:"danger"},{default:e(()=>[u("\u7981\u7528")]),_:1}))]),_:1}),o(i,{label:"\u64CD\u4F5C",width:"120",fixed:"right"},{default:e(({row:a})=>[v((n(),p(d,{type:"primary",link:"",onClick:S=>$(a)},{default:e(()=>[u(" \u7F16\u8F91 ")]),_:2},1032,["onClick"])),[[E,["user.user_menu/edit"]]]),v((n(),p(d,{type:"danger",link:"",onClick:S=>N(a.id)},{default:e(()=>[u(" \u5220\u9664 ")]),_:2},1032,["onClick"])),[[E,["user.user_menu/delete"]]])]),_:1})]),_:1},8,["data"])]),b("div",de,[o(A,{modelValue:l(m),"onUpdate:modelValue":s[1]||(s[1]=a=>ie(m)?m.value=a:null),onChange:l(C)},null,8,["modelValue","onChange"])])]),_:1})),[[M,l(m).loading]]),l(f)?(n(),p(te,{key:0,ref_key:"editRef",ref:_,"dict-data":l(B),menuList:l(m).lists,onSuccess:l(C),onClose:s[2]||(s[2]=a=>f.value=!1)},null,8,["dict-data","menuList","onSuccess"])):ue("",!0)])}}});export{to as default}; diff --git a/public/admin/assets/index.0544b75a.js b/public/admin/assets/index.0544b75a.js new file mode 100644 index 000000000..c8381c153 --- /dev/null +++ b/public/admin/assets/index.0544b75a.js @@ -0,0 +1 @@ +import{S as L,x as R,y as x,a6 as P,I as V,O as M,w as U,P as O,Q as S}from"./element-plus.4328d892.js";import{a as z}from"./message.f1110fc7.js";import{u as q}from"./usePaging.2ad8e1e6.js";import{k as I}from"./index.ed71ac09.js";import{d as A,r as K,$ as Q,b8 as $,a4 as j,af as G,o as a,c as b,U as t,L as e,u as r,k as H,T as J,a7 as N,M as F,K as l,R as p}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const W=A({name:"notice"}),Vt=A({...W,setup(X){let c;(n=>{n[n.USER=1]="USER",n[n.PLATFORM=2]="PLATFORM"})(c||(c={}));const u=K(1),g=[{name:"\u901A\u77E5\u7528\u6237",type:1},{name:"\u901A\u77E5\u5E73\u53F0",type:2}],h=Q({recipient:u}),{pager:_,getLists:m}=q({fetchFun:z,params:h});return $(()=>{m()}),m(),(n,d)=>{const v=L,f=V,y=R,B=x,i=M,E=P,k=j("router-link"),w=U,C=O,T=G("perms"),D=S;return a(),b("div",null,[t(f,{class:"!border-none",shadow:"never"},{default:e(()=>[t(v,{type:"warning",title:"\u6E29\u99A8\u63D0\u793A\uFF1A\u5E73\u53F0\u914D\u7F6E\u5728\u5404\u4E2A\u573A\u666F\u4E0B\u7684\u901A\u77E5\u53D1\u9001\u65B9\u5F0F\u548C\u5185\u5BB9\u6A21\u677F",closable:!1,"show-icon":""})]),_:1}),t(f,{class:"!border-none mt-4",shadow:"never"},{default:e(()=>[t(B,{modelValue:r(u),"onUpdate:modelValue":d[0]||(d[0]=o=>H(u)?u.value=o:null),onTabChange:r(m)},{default:e(()=>[(a(),b(J,null,N(g,(o,s)=>t(y,{key:s,label:o.name,name:o.type,lazy:""},null,8,["label","name"])),64))]),_:1},8,["modelValue","onTabChange"]),F((a(),l(C,{size:"large",data:r(_).lists},{default:e(()=>[t(i,{label:"\u901A\u77E5\u573A\u666F",prop:"scene_name","min-width":"120"}),t(i,{label:"\u901A\u77E5\u7C7B\u578B",prop:"type_desc","min-width":"160"}),t(i,{label:"\u77ED\u4FE1\u901A\u77E5","min-width":"80"},{default:e(({row:o})=>{var s;return[((s=o.sms_notice)==null?void 0:s.status)==1?(a(),l(E,{key:0},{default:e(()=>[p("\u5F00\u542F")]),_:1})):(a(),l(E,{key:1,type:"danger"},{default:e(()=>[p("\u5173\u95ED")]),_:1}))]}),_:1}),t(i,{label:"\u64CD\u4F5C","min-width":"80",fixed:"right"},{default:e(({row:o})=>[F((a(),l(w,{type:"primary",link:""},{default:e(()=>[t(k,{to:{path:r(I)("notice.notice/set"),query:{id:o.id}}},{default:e(()=>[p(" \u8BBE\u7F6E ")]),_:2},1032,["to"])]),_:2},1024)),[[T,["notice.notice/set"]]])]),_:1})]),_:1},8,["data"])),[[D,r(_).loading]])]),_:1})])}}});export{Vt as default}; diff --git a/public/admin/assets/index.0597a3fd.js b/public/admin/assets/index.0597a3fd.js new file mode 100644 index 000000000..922e8b0d3 --- /dev/null +++ b/public/admin/assets/index.0597a3fd.js @@ -0,0 +1 @@ +import{B as O,C as j,w as z,D as G,I as H,O as J,t as W,P as X,Q as Y}from"./element-plus.4328d892.js";import{_ as Z}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{u as ee}from"./usePaging.2ad8e1e6.js";import{u as te}from"./useDictOptions.a45fc8ac.js";import{b as ae,d as oe}from"./task_scheduling.7035f2c0.js";import"./lodash.08438971.js";import{k as D,d as le}from"./index.37f7aea6.js";import{_ as se}from"./edit.vue_vue_type_script_setup_true_name_taskSchedulingEdit_lang.682619c9.js";import{d as ne}from"./dict.58face92.js";import{_ as ie}from"./money.vue_vue_type_script_setup_true_name_taskSchedulingEdit_lang.bddf61dd.js";import{d as x,r as k,s as w,$ as ue,a4 as me,af as re,o as n,c as pe,U as e,L as o,u as a,R as _,M as f,K as u,a as B,k as de,Q as V,n as ce}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.5759a1a6.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.26cf5c3d.js";import"./company.d1e8fc82.js";const _e={class:"mt-4"},fe={class:"flex mt-4 justify-end"},ye=x({name:"taskSchedulingLists"}),ke=x({...ye,setup(ve){const S=k([]),R=w(),v=w(),F=k(!1),C=k(!1),m=ue({create_user_id:"",template_id:"",company_id:"",type:"",status:""}),$=k([]),A=s=>{$.value=s.map(({id:l})=>l)},{dictData:L}=te(""),{pager:r,getLists:p,resetParams:P,resetPage:T}=ee({fetchFun:oe,params:m}),U=async s=>{var l,d;C.value=!0,await ce(),(l=v.value)==null||l.open(s.money?"edit":"add"),(d=v.value)==null||d.setFormData(s)},I=s=>{ae({id:s.id,status:s.status}).finally(()=>{p()})};return ne({type_id:10}).then(s=>{S.value=s.lists}),p(),(s,l)=>{const d=O,h=j,c=z,N=G,b=H,i=J,q=W,E=me("router-link"),Q=X,K=Z,y=re("perms"),M=Y;return n(),pe("div",null,[e(b,{class:"!border-none mb-4",shadow:"never"},{default:o(()=>[e(N,{class:"mb-[-16px] formtabel",model:a(m),inline:"","label-width":"100px"},{default:o(()=>[e(h,{label:"\u533A\u57DF\u7ECF\u7406",prop:"create_user_id"},{default:o(()=>[e(d,{class:"w-[280px]",modelValue:a(m).create_user_id,"onUpdate:modelValue":l[0]||(l[0]=t=>a(m).create_user_id=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u533A\u57DF\u7ECF\u7406"},null,8,["modelValue"])]),_:1}),e(h,{label:"\u516C\u53F8",prop:"company_id"},{default:o(()=>[e(d,{class:"w-[280px]",modelValue:a(m).company_id,"onUpdate:modelValue":l[1]||(l[1]=t=>a(m).company_id=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u516C\u53F8"},null,8,["modelValue"])]),_:1}),e(h,null,{default:o(()=>[e(c,{class:"el-btn",type:"primary",onClick:a(T)},{default:o(()=>[_("\u67E5\u8BE2")]),_:1},8,["onClick"]),e(c,{onClick:a(P)},{default:o(()=>[_("\u91CD\u7F6E")]),_:1},8,["onClick"])]),_:1})]),_:1},8,["model"])]),_:1}),f((n(),u(b,{class:"!border-none",shadow:"never"},{default:o(()=>[B("div",_e,[e(Q,{data:a(r).lists,onSelectionChange:A},{default:o(()=>[e(i,{type:"selection",width:"55"}),e(i,{label:"\u533A\u57DF\u7ECF\u7406",prop:"admin_name","show-overflow-tooltip":""}),e(i,{label:"\u516C\u53F8",prop:"company_name","show-overflow-tooltip":""}),e(i,{label:"\u6BCF\u65E5\u6700\u5927\u91D1\u989D",prop:"money","show-overflow-tooltip":""}),e(i,{label:"\u516C\u53F8\u7C7B\u578B",prop:"company_type_name","show-overflow-tooltip":""}),f((n(),u(i,{label:"\u72B6\u6001","min-width":"100"},{default:o(({row:t})=>[e(q,{modelValue:t.status,"onUpdate:modelValue":g=>t.status=g,"active-value":1,"inactive-value":0,onChange:g=>I(t)},null,8,["modelValue","onUpdate:modelValue","onChange"])]),_:1})),[[y,["task_scheduling.task_scheduling/edit"]]]),e(i,{label:"\u64CD\u4F5C",fixed:"right"},{default:o(({row:t})=>[f((n(),u(c,{onClick:g=>U(t),type:"primary",link:""},{default:o(()=>[_(" \u91D1\u989D ")]),_:2},1032,["onClick"])),[[y,["task.task_calendar"]]]),f((n(),u(c,{type:"primary",link:""},{default:o(()=>[e(E,{to:{path:a(D)("task_template.task_template/lists"),query:{id:t.id,company_id:t.company_id,company_type:t.dict_company_type}}},{default:o(()=>[_("\u4EFB\u52A1\u5B89\u6392")]),_:2},1032,["to"])]),_:2},1024)),[[y,["task_template.task_template/lists"]]]),f((n(),u(c,{type:"primary",link:""},{default:o(()=>[e(E,{to:{path:a(D)("task.task_calendar"),query:{id:t.id,company_id:t.company_id}}},{default:o(()=>[_("\u4EFB\u52A1\u65E5\u7A0B")]),_:2},1032,["to"])]),_:2},1024)),[[y,["task.task_calendar"]]])]),_:1})]),_:1},8,["data"])]),B("div",fe,[e(K,{modelValue:a(r),"onUpdate:modelValue":l[2]||(l[2]=t=>de(r)?r.value=t:null),onChange:a(p)},null,8,["modelValue","onChange"])])]),_:1})),[[M,a(r).loading]]),a(F)?(n(),u(se,{key:0,ref_key:"editRef",ref:R,"dict-data":a(L),onSuccess:a(p),onClose:l[3]||(l[3]=t=>F.value=!1)},null,8,["dict-data","onSuccess"])):V("",!0),a(C)?(n(),u(ie,{key:1,ref_key:"moneyRef",ref:v,onSuccess:a(p),onClose:l[4]||(l[4]=t=>C.value=!1)},null,8,["onSuccess"])):V("",!0)])}}});const rt=le(ke,[["__scopeId","data-v-1f10c852"]]);export{rt as default}; diff --git a/public/admin/assets/index.05c18161.js b/public/admin/assets/index.05c18161.js new file mode 100644 index 000000000..9b3bcef58 --- /dev/null +++ b/public/admin/assets/index.05c18161.js @@ -0,0 +1 @@ +import{_ as H}from"./index.be5645df.js";import{a6 as I,w as L,b as R,O as G,G as K,t as M,P as O,I as Q}from"./element-plus.4328d892.js";import{b as $,c as j}from"./pay.28eb6ca6.js";import{l as B}from"./lodash.08438971.js";import{d as q,r as x,af as z,o as t,c as u,a as s,M as J,K as i,L as e,R as a,T as C,a7 as X,Q as p,U as m,u as d,S as Y}from"./@vue.51d7f2d8.js";import"./index.ed71ac09.js";import"./@vueuse.ec90c285.js";import"./axios.105476b3.js";import"./@amap.8a62addd.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./@element-plus.a074d1f6.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";const Z={key:0,class:"text-lg mb-[24px]"},tt=s("span",{class:"form-tips ml-[10px]"},"\u5728\u5FAE\u4FE1\u5C0F\u7A0B\u5E8F\u4E2D\u4ED8\u6B3E\u7684\u573A\u666F",-1),et={key:1,class:"text-lg mb-[24px]"},ut=s("span",{class:"form-tips ml-[10px]"}," \u5728\u5FAE\u4FE1\u516C\u4F17\u53F7H5\u9875\u9762\u4E2D\u4ED8\u6B3E\u7684\u573A\u666F\uFF0C\u516C\u4F17\u53F7\u7C7B\u578B\u4E00\u822C\u4E3A\u670D\u52A1\u53F7 ",-1),at={key:2,class:"text-lg mb-[24px]"},ot=s("span",{class:"form-tips ml-[10px]"},"\u5728\u6D4F\u89C8\u5668H5\u9875\u9762\u4E2D\u4ED8\u6B3E\u7684\u573A\u666F",-1),st={key:3,class:"text-lg mb-[24px]"},lt=s("span",{class:"form-tips ml-[10px]"},"\u5728\u6D4F\u89C8\u5668PC\u9875\u9762\u4E2D\u4ED8\u6B3E\u7684\u573A\u666F",-1),nt={key:4,class:"text-lg mb-[24px]"},it=s("span",{class:"form-tips ml-[10px]"},"\u5728APP\u4ED8\u6B3E\u7684\u573A\u666F",-1),pt={key:1},mt={key:1},qt=q({__name:"index",setup(rt){const l=x({}),r=x(!1);let y={};const f=async()=>{l.value=await $(),y=B.exports.cloneDeep(l.value)},g=()=>{r.value=!0},b=(h,E)=>{l.value[E].forEach(_=>{_.is_default=0}),l.value[E][h].is_default=1},k=()=>{l.value=B.exports.cloneDeep(y),r.value=!1},A=async()=>{await j(l.value),r.value=!1,f()};return f(),(h,E)=>{const _=L,P=R,c=G,w=K,V=I,W=M,S=O,T=Q,U=H,N=z("perms");return t(),u("div",null,[s("div",null,[J((t(),i(_,{type:"primary",onClick:g},{default:e(()=>[a(" \u8BBE\u7F6E\u652F\u4ED8\u65B9\u5F0F ")]),_:1})),[[N,["setting.pay.pay_way/setPayWay"]]])]),(t(!0),u(C,null,X(d(l),(D,n)=>(t(),i(T,{shadow:"never",class:"mt-4 !border-none",key:n},{default:e(()=>[s("div",null,[n==1?(t(),u("div",Z,[a(" \u5FAE\u4FE1\u5C0F\u7A0B\u5E8F "),tt])):p("",!0),n==2?(t(),u("div",et,[a(" \u5FAE\u4FE1\u516C\u4F17\u53F7 "),ut])):p("",!0),n==3?(t(),u("div",at,[a(" H5\u652F\u4ED8 "),ot])):p("",!0),n==4?(t(),u("div",st,[a(" PC\u652F\u4ED8 "),lt])):p("",!0),n==5?(t(),u("div",nt,[a(" APP\u652F\u4ED8 "),it])):p("",!0),D.length?(t(),i(S,{key:5,data:D,style:{width:"100%"}},{default:e(()=>[m(c,{label:"\u56FE\u6807","min-width":"150"},{default:e(({row:o})=>[m(P,{src:o.icon,alt:"\u56FE\u6807",style:{width:"34px",height:"34px"}},null,8,["src"])]),_:1}),m(c,{prop:"pay_way_name",label:"\u652F\u4ED8\u65B9\u5F0F","min-width":"150"}),m(c,{label:"\u9ED8\u8BA4\u652F\u4ED8","min-width":"150"},{default:e(({row:o,$index:F})=>[s("div",null,[d(r)?(t(),i(w,{key:0,modelValue:o.is_default,"onUpdate:modelValue":v=>o.is_default=v,label:1,onChange:v=>b(F,n)},{default:e(()=>[a(" \u8BBE\u4E3A\u9ED8\u8BA4 ")]),_:2},1032,["modelValue","onUpdate:modelValue","onChange"])):(t(),u(C,{key:1},[o.is_default==1?(t(),i(V,{key:0},{default:e(()=>[a("\u9ED8\u8BA4")]),_:1})):(t(),u("span",pt,"-"))],64))])]),_:2},1024),m(c,{label:"\u5F00\u542F\u72B6\u6001","min-width":"150"},{default:e(({row:o})=>[d(r)?(t(),i(W,{key:0,modelValue:o.status,"onUpdate:modelValue":F=>o.status=F,"active-value":1,"inactive-value":0},null,8,["modelValue","onUpdate:modelValue"])):(t(),u("span",mt,Y(o.status==1?"\u5F00\u542F":"\u5173\u95ED"),1))]),_:1})]),_:2},1032,["data"])):p("",!0)])]),_:2},1024))),128)),d(r)?(t(),i(U,{key:0},{default:e(()=>[m(_,{onClick:k},{default:e(()=>[a("\u53D6\u6D88")]),_:1}),m(_,{type:"primary",onClick:A},{default:e(()=>[a("\u4FDD\u5B58")]),_:1})]),_:1})):p("",!0)])}}});export{qt as default}; diff --git a/public/admin/assets/index.06391e4e.js b/public/admin/assets/index.06391e4e.js new file mode 100644 index 000000000..7698d2880 --- /dev/null +++ b/public/admin/assets/index.06391e4e.js @@ -0,0 +1 @@ +import{B as j,C as O,w as H,D as J,I as W,O as X,p as Y,q as Z,r as ee,P as te,Q as oe}from"./element-plus.4328d892.js";import{_ as ae}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{k as ne,f as k,b as le}from"./index.aa9bb752.js";import{d as $,$ as A,r as re,a4 as ue,af as se,o as r,c as C,U as e,L as t,u as a,a8 as P,R as s,M as i,K as d,a as b,k as ie,Q as me}from"./@vue.51d7f2d8.js";import{b as de,c as ce,d as pe,e as _e,s as fe}from"./code.1f2ae5c5.js";import{u as Fe}from"./usePaging.2ad8e1e6.js";import{_ as ge}from"./data-table.vue_vue_type_script_setup_true_lang.60c026c1.js";import{_ as Ce}from"./code-preview.vue_vue_type_script_setup_true_lang.c16ace2c.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.fa872673.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";const be={class:"code-generation"},we={class:"flex"},ye={class:"mt-4"},Ee={class:"flex items-center"},he={class:"flex justify-end mt-4"},ke=$({name:"codeGenerate"}),pt=$({...ke,setup(ve){const c=A({table_name:"",table_comment:""}),p=A({show:!1,loading:!1,code:[]}),{pager:f,getLists:g,resetParams:K,resetPage:w}=Fe({fetchFun:_e,params:c}),F=re([]),S=n=>{F.value=n.map(({id:o})=>o)},T=async n=>{await k.confirm("\u786E\u5B9A\u8981\u540C\u6B65\u8868\u7ED3\u6784\uFF1F"),await fe({id:n})},v=async n=>{await k.confirm("\u786E\u5B9A\u8981\u5220\u9664\uFF1F"),await de({id:n}),g()},I=async n=>{const o=await ce({id:n});p.code=o,p.show=!0},U=n=>n.some(o=>o.generate_type==1),B=async n=>{if(U(n))return k.msgError("\u751F\u6210\u65B9\u5F0F\u4E3A\u751F\u6210\u5230\u6A21\u5757\uFF0C\u8BF7\u5728\u524D\u7AEF\u5F00\u53D1\u6A21\u5F0F\u4E0B\u4F7F\u7528\uFF0C\u8BE6\u7EC6\u53C2\u8003\u6587\u6863");const o=await pe({id:n});o.file&&window.open(o.file,"_blank")},N=(n,o)=>{switch(n){case"generate":B([o.id]);break;case"sync":T(o.id);break;case"delete":v(o.id)}};return g(),(n,o)=>{const D=j,y=O,u=H,G=J,V=W,E=le,_=X,L=ue("router-link"),h=Y,M=Z,R=ee,q=te,z=ae,m=se("perms"),Q=oe;return r(),C("div",be,[e(V,{class:"!border-none",shadow:"never"},{default:t(()=>[e(G,{class:"mb-[-16px]",model:a(c),inline:""},{default:t(()=>[e(y,{label:"\u8868\u540D\u79F0"},{default:t(()=>[e(D,{class:"w-[280px]",modelValue:a(c).table_name,"onUpdate:modelValue":o[0]||(o[0]=l=>a(c).table_name=l),clearable:"",onKeyup:P(a(w),["enter"])},null,8,["modelValue","onKeyup"])]),_:1}),e(y,{label:"\u8868\u63CF\u8FF0"},{default:t(()=>[e(D,{class:"w-[280px]",modelValue:a(c).table_comment,"onUpdate:modelValue":o[1]||(o[1]=l=>a(c).table_comment=l),clearable:"",onKeyup:P(a(w),["enter"])},null,8,["modelValue","onKeyup"])]),_:1}),e(y,null,{default:t(()=>[e(u,{type:"primary",onClick:a(w)},{default:t(()=>[s("\u67E5\u8BE2")]),_:1},8,["onClick"]),e(u,{onClick:a(K)},{default:t(()=>[s("\u91CD\u7F6E")]),_:1},8,["onClick"])]),_:1})]),_:1},8,["model"])]),_:1}),i((r(),d(V,{class:"!border-none mt-4",shadow:"never"},{default:t(()=>[b("div",we,[i((r(),d(ge,{class:"inline-block mr-[10px]",onSuccess:a(g)},{default:t(()=>[e(u,{type:"primary"},{icon:t(()=>[e(E,{name:"el-icon-Plus"})]),default:t(()=>[s(" \u5BFC\u5165\u6570\u636E\u8868 ")]),_:1})]),_:1},8,["onSuccess"])),[[m,["tools.generator/selectTable"]]]),i((r(),d(u,{disabled:!a(F).length,onClick:o[2]||(o[2]=l=>v(a(F))),type:"danger"},{icon:t(()=>[e(E,{name:"el-icon-Delete"})]),default:t(()=>[s(" \u5220\u9664 ")]),_:1},8,["disabled"])),[[m,["tools.generator/delete"]]]),i((r(),d(u,{disabled:!a(F).length,onClick:o[3]||(o[3]=l=>B(a(F)))},{default:t(()=>[s(" \u751F\u6210\u4EE3\u7801 ")]),_:1},8,["disabled"])),[[m,["tools.generator/generate"]]])]),b("div",ye,[e(q,{data:a(f).lists,size:"large",onSelectionChange:S},{default:t(()=>[e(_,{type:"selection",width:"55"}),e(_,{label:"\u8868\u540D\u79F0",prop:"table_name","min-width":"180"}),e(_,{label:"\u8868\u63CF\u8FF0",prop:"table_comment","min-width":"180"}),e(_,{label:"\u521B\u5EFA\u65F6\u95F4",prop:"create_time","min-width":"180"}),e(_,{label:"\u66F4\u65B0\u65F6\u95F4",prop:"update_time","min-width":"180"}),e(_,{label:"\u64CD\u4F5C",width:"160",fixed:"right"},{default:t(({row:l})=>[b("div",Ee,[i((r(),d(u,{type:"primary",link:"",onClick:x=>I(l.id)},{default:t(()=>[s(" \u9884\u89C8 ")]),_:2},1032,["onClick"])),[[m,["tools.generator/preview"]]]),e(u,{type:"primary",link:""},{default:t(()=>[i((r(),d(L,{to:{path:a(ne)("tools.generator/edit"),query:{id:l.id}}},{default:t(()=>[s(" \u7F16\u8F91 ")]),_:2},1032,["to"])),[[m,["tools.generator/edit"]]])]),_:2},1024),i((r(),d(R,{class:"ml-2",onCommand:x=>N(x,l)},{dropdown:t(()=>[e(M,null,{default:t(()=>[i((r(),C("div",null,[e(h,{command:"generate"},{default:t(()=>[e(u,{type:"primary",link:""},{default:t(()=>[s(" \u751F\u6210\u4EE3\u7801 ")]),_:1})]),_:1})])),[[m,["tools.generator/generate"]]]),i((r(),C("div",null,[e(h,{command:"sync"},{default:t(()=>[e(u,{type:"primary",link:""},{default:t(()=>[s(" \u540C\u6B65 ")]),_:1})]),_:1})])),[[m,["tools.generator/syncColumn"]]]),i((r(),C("div",null,[e(h,{command:"delete"},{default:t(()=>[e(u,{type:"danger",link:""},{default:t(()=>[s(" \u5220\u9664 ")]),_:1})]),_:1})])),[[m,["tools.generator/delete"]]])]),_:1})]),default:t(()=>[e(u,{type:"primary",link:""},{default:t(()=>[s(" \u66F4\u591A "),e(E,{name:"el-icon-ArrowDown",size:14})]),_:1})]),_:2},1032,["onCommand"])),[[m,["tools.generator/generate","tools.generator/syncColumn","tools.generator/delete"]]])])]),_:1})]),_:1},8,["data"])]),b("div",he,[e(z,{modelValue:a(f),"onUpdate:modelValue":o[4]||(o[4]=l=>ie(f)?f.value=l:null),onChange:a(g)},null,8,["modelValue","onChange"])])]),_:1})),[[Q,a(f).loading]]),a(p).show?(r(),d(Ce,{key:0,modelValue:a(p).show,"onUpdate:modelValue":o[5]||(o[5]=l=>a(p).show=l),code:a(p).code},null,8,["modelValue","code"])):me("",!0)])}}});export{pt as default}; diff --git a/public/admin/assets/index.092e97aa.js b/public/admin/assets/index.092e97aa.js new file mode 100644 index 000000000..1dd480bb3 --- /dev/null +++ b/public/admin/assets/index.092e97aa.js @@ -0,0 +1 @@ +import{S as $,I as R,w as L,O as N,t as T,P as U,Q as P}from"./element-plus.4328d892.js";import{_ as Q}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{f as j,b as z}from"./index.ed71ac09.js";import{d as I,e as K,f as M}from"./article.a2ac2e4b.js";import{u as O}from"./usePaging.2ad8e1e6.js";import{_ as q}from"./edit.vue_vue_type_script_setup_true_lang.84d0829e.js";import{d as F,s as G,r as H,af as J,o as n,c as W,U as t,L as i,M as p,u as r,K as d,a as w,R as h,k as X,Q as Y,n as g}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.b940d6e3.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";const Z={class:"flex justify-end mt-4"},ee=F({name:"articleColumn"}),Ie=F({...ee,setup(te){const _=G(),f=H(!1),{pager:s,getLists:l}=O({fetchFun:M}),b=async()=>{var o;f.value=!0,await g(),(o=_.value)==null||o.open("add")},k=async o=>{var e,u;f.value=!0,await g(),(e=_.value)==null||e.open("edit"),(u=_.value)==null||u.getDetail(o)},y=async o=>{await j.confirm("\u786E\u5B9A\u8981\u5220\u9664\uFF1F"),await I({id:o}),l()},A=async(o,e)=>{try{await K({id:e,is_show:o}),l()}catch{l()}};return l(),(o,e)=>{const u=$,E=R,B=z,v=L,m=N,V=T,D=U,x=Q,C=J("perms"),S=P;return n(),W("div",null,[t(E,{class:"!border-none",shadow:"never"},{default:i(()=>[t(u,{type:"warning",title:"\u6E29\u99A8\u63D0\u793A\uFF1A\u7528\u4E8E\u7BA1\u7406\u7F51\u7AD9\u7684\u5206\u7C7B\uFF0C\u53EA\u53EF\u6DFB\u52A0\u5230\u4E00\u7EA7",closable:!1,"show-icon":""})]),_:1}),p((n(),d(E,{class:"!border-none mt-4",shadow:"never"},{default:i(()=>[w("div",null,[p((n(),d(v,{class:"mb-4",type:"primary",onClick:e[0]||(e[0]=a=>b())},{icon:i(()=>[t(B,{name:"el-icon-Plus"})]),default:i(()=>[h(" \u65B0\u589E ")]),_:1})),[[C,["article.articleCate/add"]]])]),t(D,{size:"large",data:r(s).lists},{default:i(()=>[t(m,{label:"\u680F\u76EE\u540D\u79F0",prop:"name","min-width":"120"}),t(m,{label:"\u6587\u7AE0\u6570",prop:"article_count","min-width":"120"}),t(m,{label:"\u72B6\u6001","min-width":"120"},{default:i(({row:a})=>[p(t(V,{modelValue:a.is_show,"onUpdate:modelValue":c=>a.is_show=c,"active-value":1,"inactive-value":0,onChange:c=>A(c,a.id)},null,8,["modelValue","onUpdate:modelValue","onChange"]),[[C,["article.articleCate/updateStatus"]]])]),_:1}),t(m,{label:"\u6392\u5E8F",prop:"sort","min-width":"120"}),t(m,{label:"\u64CD\u4F5C",width:"120",fixed:"right"},{default:i(({row:a})=>[p((n(),d(v,{type:"primary",link:"",onClick:c=>k(a)},{default:i(()=>[h(" \u7F16\u8F91 ")]),_:2},1032,["onClick"])),[[C,["article.articleCate/edit"]]]),p((n(),d(v,{type:"danger",link:"",onClick:c=>y(a.id)},{default:i(()=>[h(" \u5220\u9664 ")]),_:2},1032,["onClick"])),[[C,["article.articleCate/delete"]]])]),_:1})]),_:1},8,["data"]),w("div",Z,[t(x,{modelValue:r(s),"onUpdate:modelValue":e[1]||(e[1]=a=>X(s)?s.value=a:null),onChange:r(l)},null,8,["modelValue","onChange"])])]),_:1})),[[S,r(s).loading]]),r(f)?(n(),d(q,{key:0,ref_key:"editRef",ref:_,onSuccess:r(l),onClose:e[2]||(e[2]=a=>f.value=!1)},null,8,["onSuccess"])):Y("",!0)])}}});export{Ie as default}; diff --git a/public/admin/assets/index.0b12e07f.js b/public/admin/assets/index.0b12e07f.js new file mode 100644 index 000000000..9eb12986b --- /dev/null +++ b/public/admin/assets/index.0b12e07f.js @@ -0,0 +1 @@ +import{a6 as O,w as V,O as P,P as z,I as Q,Q as S}from"./element-plus.4328d892.js";import{M as h,f as G,b as I}from"./index.ed71ac09.js";import{e as K,a as j}from"./menu.a3f35001.js";import{u as q}from"./usePaging.2ad8e1e6.js";import{_ as H}from"./edit.vue_vue_type_script_setup_true_lang.a6b599ae.js";import{d as N,s as x,r as J,af as W,o as i,c as v,U as n,L as o,a as D,M as c,K as r,R as m,u as p,Q as E,n as T}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./picker.vue_vue_type_script_setup_true_lang.150460d1.js";import"./index.b940d6e3.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";const X={class:"menu-lists"},Y={key:0},Z={key:1},ee={key:2},te={class:"flex"},oe=N({name:"menu"}),Ie=N({...oe,setup(ae){const b=x(),d=x();let y=!1;const _=J(!1),{pager:k,getLists:C}=q({fetchFun:j,params:{page_type:0}}),g=async e=>{var a,s;_.value=!0,await T(),e&&((a=d.value)==null||a.setFormData({pid:e})),(s=d.value)==null||s.open("add")},R=async e=>{var a,s;_.value=!0,await T(),(a=d.value)==null||a.open("edit"),(s=d.value)==null||s.getDetail(e)},$=async e=>{await G.confirm("\u786E\u5B9A\u8981\u5220\u9664\uFF1F"),await K({id:e}),C()},A=()=>{y=!y,w(k.lists,y)},w=(e,a=!0)=>{var s;for(const l in e)(s=b.value)==null||s.toggleRowExpansion(e[l],a),e[l].children&&w(e[l].children,a)};return C().then(e=>{console.log(e)}),(e,a)=>{const s=I,l=V,u=P,B=O,L=z,U=Q,f=W("perms"),M=S;return i(),v("div",X,[n(U,{class:"!border-none",shadow:"never"},{default:o(()=>[D("div",null,[c((i(),r(l,{type:"primary",onClick:a[0]||(a[0]=t=>g())},{icon:o(()=>[n(s,{name:"el-icon-Plus"})]),default:o(()=>[m(" \u65B0\u589E ")]),_:1})),[[f,["auth.menu/add"]]]),n(l,{onClick:A},{default:o(()=>[m(" \u5C55\u5F00/\u6298\u53E0 ")]),_:1})]),c((i(),r(L,{ref_key:"tableRef",ref:b,class:"mt-4",size:"large",data:p(k).lists,"row-key":"id","tree-props":{children:"children",hasChildren:"hasChildren"}},{default:o(()=>[n(u,{label:"\u83DC\u5355\u540D\u79F0",prop:"name","min-width":"150","show-overflow-tooltip":""}),n(u,{label:"\u7C7B\u578B",prop:"type","min-width":"80"},{default:o(({row:t})=>[t.type==p(h).CATALOGUE?(i(),v("div",Y,"\u76EE\u5F55")):t.type==p(h).MENU?(i(),v("div",Z,"\u83DC\u5355")):t.type==p(h).BUTTON?(i(),v("div",ee,"\u6309\u94AE")):E("",!0)]),_:1}),n(u,{label:"\u56FE\u6807",prop:"icon","min-width":"80"},{default:o(({row:t})=>[D("div",te,[n(s,{name:t.icon,size:20},null,8,["name"])])]),_:1}),n(u,{label:"\u6743\u9650\u6807\u8BC6",prop:"perms","min-width":"150","show-overflow-tooltip":""}),n(u,{label:"\u72B6\u6001",prop:"is_disable","min-width":"100"},{default:o(({row:t})=>[t.is_disable==0?(i(),r(B,{key:0},{default:o(()=>[m("\u6B63\u5E38")]),_:1})):(i(),r(B,{key:1,type:"danger"},{default:o(()=>[m("\u505C\u7528")]),_:1}))]),_:1}),n(u,{label:"\u6392\u5E8F",prop:"sort","min-width":"100"}),n(u,{label:"\u66F4\u65B0\u65F6\u95F4",prop:"update_time","min-width":"180"}),n(u,{label:"\u64CD\u4F5C",width:"160",fixed:"right"},{default:o(({row:t})=>[t.type!==p(h).BUTTON?c((i(),r(l,{key:0,type:"primary",link:"",onClick:F=>g(t.id)},{default:o(()=>[m(" \u65B0\u589E ")]),_:2},1032,["onClick"])),[[f,["auth.menu/add"]]]):E("",!0),c((i(),r(l,{type:"primary",link:"",onClick:F=>R(t)},{default:o(()=>[m(" \u7F16\u8F91 ")]),_:2},1032,["onClick"])),[[f,["auth.menu/edit"]]]),c((i(),r(l,{type:"danger",link:"",onClick:F=>$(t.id)},{default:o(()=>[m(" \u5220\u9664 ")]),_:2},1032,["onClick"])),[[f,["auth.menu/delete"]]])]),_:1})]),_:1},8,["data"])),[[M,p(k).loading]])]),_:1}),p(_)?(i(),r(H,{key:0,ref_key:"editRef",ref:d,onSuccess:p(C),onClose:a[1]||(a[1]=t=>_.value=!1)},null,8,["onSuccess"])):E("",!0)])}}});export{Ie as default}; diff --git a/public/admin/assets/index.0f938f8d.js b/public/admin/assets/index.0f938f8d.js new file mode 100644 index 000000000..f33cbbc5b --- /dev/null +++ b/public/admin/assets/index.0f938f8d.js @@ -0,0 +1 @@ +import{w as T,O as P,P as I,I as Q,Q as U}from"./element-plus.4328d892.js";import{_ as j}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{f as z,b as K}from"./index.37f7aea6.js";import{c as M,d as O}from"./role.8d2a6d5e.js";import{u as q}from"./usePaging.2ad8e1e6.js";import{_ as G}from"./edit.vue_vue_type_script_setup_true_lang.88cd21d7.js";import{_ as H}from"./auth.vue_vue_type_script_setup_true_lang.5b6b2619.js";import{d as D,s as F,r as g,af as J,o as a,c as E,U as t,L as i,a as C,M as c,K as u,R as h,u as n,k as W,Q as B,n as y}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.5759a1a6.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./menu.90f89e87.js";const X={class:"role-lists"},Y={class:"mt-4"},Z={class:"flex justify-end mt-4"},ee=D({name:"role"}),Me=D({...ee,setup(te){const d=F(),k=F(),_=g(!1),w=g(!1),{pager:m,getLists:p}=q({fetchFun:O}),$=async()=>{var o;_.value=!0,await y(),(o=d.value)==null||o.open("add")},x=async o=>{var e,l;_.value=!0,await y(),(e=d.value)==null||e.open("edit"),(l=d.value)==null||l.setFormData(o)},A=async o=>{var e,l;w.value=!0,await y(),(e=k.value)==null||e.open(),(l=k.value)==null||l.setFormData(o)},R=async o=>{await z.confirm("\u786E\u5B9A\u8981\u5220\u9664\uFF1F"),await M({id:o}),p()};return p(),(o,e)=>{const l=K,f=T,s=P,V=I,L=j,N=Q,v=J("perms"),S=U;return a(),E("div",X,[t(N,{class:"!border-none",shadow:"never"},{default:i(()=>[C("div",null,[c((a(),u(f,{type:"primary",onClick:$},{icon:i(()=>[t(l,{name:"el-icon-Plus"})]),default:i(()=>[h(" \u65B0\u589E ")]),_:1})),[[v,["auth.role/add"]]])]),c((a(),E("div",Y,[C("div",null,[t(V,{data:n(m).lists,size:"large"},{default:i(()=>[t(s,{prop:"id",label:"ID","min-width":"100"}),t(s,{prop:"name",label:"\u540D\u79F0","min-width":"150"}),t(s,{prop:"desc",label:"\u5907\u6CE8","min-width":"150","show-overflow-tooltip":""}),t(s,{prop:"sort",label:"\u6392\u5E8F","min-width":"100"}),t(s,{prop:"num",label:"\u7BA1\u7406\u5458\u4EBA\u6570","min-width":"100"}),t(s,{prop:"create_time",label:"\u521B\u5EFA\u65F6\u95F4","min-width":"180"}),t(s,{label:"\u64CD\u4F5C",width:"200",fixed:"right"},{default:i(({row:r})=>[c((a(),u(f,{link:"",type:"primary",onClick:b=>x(r)},{default:i(()=>[h(" \u7F16\u8F91 ")]),_:2},1032,["onClick"])),[[v,["auth.role/edit"]]]),c((a(),u(f,{link:"",type:"primary",onClick:b=>A(r)},{default:i(()=>[h(" \u5206\u914D\u6743\u9650 ")]),_:2},1032,["onClick"])),[[v,["auth.role/edit"]]]),c((a(),u(f,{link:"",type:"danger",onClick:b=>R(r.id)},{default:i(()=>[h(" \u5220\u9664 ")]),_:2},1032,["onClick"])),[[v,["auth.role/delete"]]])]),_:1})]),_:1},8,["data"])]),C("div",Z,[t(L,{modelValue:n(m),"onUpdate:modelValue":e[0]||(e[0]=r=>W(m)?m.value=r:null),onChange:n(p)},null,8,["modelValue","onChange"])])])),[[S,n(m).loading]])]),_:1}),n(_)?(a(),u(G,{key:0,ref_key:"editRef",ref:d,onSuccess:n(p),onClose:e[1]||(e[1]=r=>_.value=!1)},null,8,["onSuccess"])):B("",!0),n(w)?(a(),u(H,{key:1,ref_key:"authRef",ref:k,onSuccess:n(p),onClose:e[2]||(e[2]=r=>w.value=!1)},null,8,["onSuccess"])):B("",!0)])}}});export{Me as default}; diff --git a/public/admin/assets/index.10660cf9.js b/public/admin/assets/index.10660cf9.js new file mode 100644 index 000000000..d2e265f39 --- /dev/null +++ b/public/admin/assets/index.10660cf9.js @@ -0,0 +1 @@ +import{B as W,C as X,w as Y,D as Z,I as ee,O as te,o as ue,P as oe,L as ae,Q as ne}from"./element-plus.4328d892.js";import{_ as se}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{_ as le}from"./index.vue_vue_type_script_setup_true_lang.f3cc5114.js";import{u as ie}from"./vue-router.9f65afb1.js";import{d as L,$ as re,r as D,b8 as ce,a4 as pe,af as me,o as a,c as r,U as t,L as u,u as o,a8 as de,R as s,M as f,K as c,S as _e,T as fe,Q as F,k as z,a as g,bf as Ee,be as ye}from"./@vue.51d7f2d8.js";import{u as Fe}from"./usePaging.2ad8e1e6.js";import{k as b,f as S,d as he}from"./index.aa9bb752.js";import{c as q,d as Ce,s as ke}from"./consumer.d25e26af.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.fa872673.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const Be=h=>(Ee("data-v-fb9ba9c3"),h=h(),ye(),h),ve={key:0,style:{color:"#67c23a"}},De={key:1,style:{color:"#fe0000"}},be={key:0,style:{color:"#67c23a"}},ge={key:1,style:{color:"#fe0000"}},Ae=Be(()=>g("h1",null,"\u91CD\u8981\u63D0\u9192",-1)),xe={key:0,class:"content"},Ve={key:1,class:"content"},we={class:"btn_menu"},Ie={class:"flex justify-end mt-4"},Pe=L({name:"consumerLists"}),ze=L({...Pe,setup(h){const A=ie(),p=re({keyword:"",channel:"",create_time_start:"",create_time_end:"",company_id:""});A.query.company_id&&(p.company_id=A.query.company_id);const E=D(0),m=D(!1),C=D(!1),k=()=>{m.value=!1,C.value=!1},R=()=>{console.log(E.value),Ce({id:E.value}).then(()=>{S.msgSuccess("\u53D1\u9001\u6210\u529F")}),k()},U=()=>{ke({id:E.value}).then(K=>{S.msgSuccess("\u53D1\u9001\u6210\u529F")}),k()},{pager:d,getLists:B,resetPage:x,resetParams:$}=Fe({fetchFun:q,params:p});return ce(()=>{B()}),B(),(K,_)=>{const N=W,V=X,l=Y,T=le,M=Z,w=ee,n=te,Q=ue,v=pe("router-link"),j=oe,O=ae,G=se,y=me("perms"),H=ne;return a(),r("div",null,[t(w,{class:"!border-none",shadow:"never"},{default:u(()=>[t(M,{ref:"formRef",class:"mb-[-16px]",model:o(p),inline:!0},{default:u(()=>[t(V,{label:"\u7528\u6237\u4FE1\u606F"},{default:u(()=>[t(N,{class:"w-[280px]",modelValue:o(p).keyword,"onUpdate:modelValue":_[0]||(_[0]=e=>o(p).keyword=e),placeholder:"\u7528\u6237\u7F16\u53F7/\u6635\u79F0/\u624B\u673A\u53F7\u7801",clearable:"",onKeyup:de(o(x),["enter"])},null,8,["modelValue","onKeyup"])]),_:1}),t(V,null,{default:u(()=>[t(l,{type:"primary",onClick:o(x)},{default:u(()=>[s("\u67E5\u8BE2")]),_:1},8,["onClick"]),t(l,{onClick:o($)},{default:u(()=>[s("\u91CD\u7F6E")]),_:1},8,["onClick"]),t(T,{class:"ml-2.5","fetch-fun":o(q),params:o(p),"page-size":o(d).size},null,8,["fetch-fun","params","page-size"])]),_:1})]),_:1},8,["model"])]),_:1}),t(w,{class:"!border-none mt-4",shadow:"never"},{default:u(()=>[f((a(),c(j,{size:"large",data:o(d).lists},{default:u(()=>[t(n,{label:"ID",prop:"id","min-width":"100"}),t(n,{label:"\u7528\u6237\u7F16\u53F7",prop:"sn","min-width":"120"}),t(n,{label:"\u5934\u50CF","min-width":"100"},{default:u(({row:e})=>[t(Q,{src:e.avatar,size:50},null,8,["src"])]),_:1}),t(n,{label:"\u8D26\u53F7",prop:"account","min-width":"120"}),t(n,{label:"\u59D3\u540D",prop:"nickname","min-width":"100"}),t(n,{label:"\u8054\u7CFB\u65B9\u5F0F",prop:"mobile","min-width":"120"}),t(n,{label:"\u96B6\u5C5E\u516C\u53F8",prop:"company_name","min-width":"180",align:"center"},{default:u(({row:e})=>{var i;return[s(_e(((i=e.company)==null?void 0:i.company_name)||"/"),1)]}),_:1}),t(n,{label:"\u6240\u5728\u4E61\u9547",prop:"street_name","min-width":"120"}),t(n,{label:"\u6388\u6743\u8EAB\u4EFD",prop:"role_name","min-width":"120"},{default:u(({row:e})=>{var i;return[e.admin_id==((i=e.company)==null?void 0:i.admin_id)?(a(),r("span",ve,"\u516C\u53F8\u540E\u53F0\u7BA1\u7406\u4EBA\u5458")):(a(),r("span",De,"\u65E0"))]}),_:1}),t(n,{label:"\u662F\u5426\u7B7E\u7EA6",prop:"is_contract",align:"center","min-width":"120"},{default:u(({row:e})=>[e.is_contract==1?(a(),r("span",be,"\u5DF2\u7B7E\u7EA6")):(a(),r("span",ge,"\u672A\u7B7E\u7EA6"))]),_:1}),t(n,{label:"\u64CD\u4F5C","min-width":"300",align:"center",fixed:"right"},{default:u(({row:e})=>{var i,I,P;return[f((a(),c(l,{type:"primary",link:""},{default:u(()=>[t(v,{to:{path:o(b)("user.user/detail"),query:{id:e.id}}},{default:u(()=>[s(" \u8BE6\u60C5 ")]),_:2},1032,["to"])]),_:2},1024)),[[y,["user.user/detail"]]]),e.is_contract==0?(a(),r(fe,{key:0},[e.contract?F("",!0):f((a(),c(l,{key:0,type:"primary",link:""},{default:u(()=>[t(v,{to:{path:o(b)("user.user/detail"),query:{id:e.id,mode:"initiate"}}},{default:u(()=>[s(" \u751F\u6210\u5408\u540C ")]),_:2},1032,["to"])]),_:2},1024)),[[y,["user.user/launch"]]]),((i=e.contract)==null?void 0:i.check_status)==1?f((a(),c(l,{key:1,type:"primary",link:""},{default:u(()=>[t(v,{to:{path:o(b)("user.user/detail"),query:{id:e.id,mode:"uplode",mdoeid:e.contract.id}}},{default:u(()=>[s(" \u4E0A\u4F20\u5408\u540C ")]),_:2},1032,["to"])]),_:2},1024)),[[y,["user.user/uplode"]]]):F("",!0),((I=e.contract)==null?void 0:I.check_status)==2?f((a(),c(l,{key:2,type:"primary",link:"",onClick:J=>(m.value=!0,C.value=!0,E.value=e.id)},{default:u(()=>[s("\u53D1\u9001\u5408\u540C")]),_:2},1032,["onClick"])),[[y,["user.user/launch"]]]):F("",!0),e.is_contract==0&&((P=e.contract)==null?void 0:P.check_status)==3?f((a(),c(l,{key:3,type:"primary",link:"",onClick:J=>(m.value=!0,E.value=e.id)},{default:u(()=>[s("\u91CD\u65B0\u53D1\u9001\u77ED\u4FE1")]),_:2},1032,["onClick"])),[[y,["user.user/launch"]]]):F("",!0)],64)):F("",!0)]}),_:1})]),_:1},8,["data"])),[[H,o(d).loading]]),t(O,{modelValue:o(m),"onUpdate:modelValue":_[1]||(_[1]=e=>z(m)?m.value=e:null),onClose:k},{default:u(()=>[Ae,o(C)?(a(),r("div",xe," \u8BF7\u786E\u8BA4\u4FE1\u606F\u662F\u5426\u6709\u8BEF,\u53D1\u9001\u5408\u540C,\u8BF7\u786E\u8BA4\u4FE1\u606F\u662F\u5426\u6709\u8BEF,\u53D1\u9001\u7535\u5B50\u5408\u540C\u540E\u77ED\u65F6\u95F4\u5185\u5C06\u4E0D\u53EF\u518D\u6B21\u53D1\u9001. ")):(a(),r("div",Ve," \u786E\u8BA4\u7B7E\u7EA6\u77ED\u4FE1\u5C06\u572860\u79D2\u540E\u53D1\u9001,\u8BF7\u6CE8\u610F\u67E5\u6536,\u5E76\u70B9\u51FB\u77ED\u4FE1\u94FE\u63A5\u8FDB\u884C\u7EBF\u4E0A\u5408\u540C\u7B7E\u7EA6 ")),g("p",we,[o(C)?(a(),c(l,{key:0,type:"primary",size:"large",onClick:R},{default:u(()=>[s("\u786E\u8BA4\u521B\u5EFA")]),_:1})):(a(),c(l,{key:1,type:"primary",size:"large",onClick:U},{default:u(()=>[s("\u786E\u8BA4")]),_:1})),t(l,{type:"info",size:"large",onClick:k},{default:u(()=>[s("\u8FD4\u56DE")]),_:1})])]),_:1},8,["modelValue"]),g("div",Ie,[t(G,{modelValue:o(d),"onUpdate:modelValue":_[2]||(_[2]=e=>z(d)?d.value=e:null),onChange:o(B)},null,8,["modelValue","onChange"])])]),_:1})])}}});const Ct=he(ze,[["__scopeId","data-v-fb9ba9c3"]]);export{Ct as default}; diff --git a/public/admin/assets/index.10ee3b4a.js b/public/admin/assets/index.10ee3b4a.js new file mode 100644 index 000000000..7f37a3c75 --- /dev/null +++ b/public/admin/assets/index.10ee3b4a.js @@ -0,0 +1 @@ +import{T as H,a6 as G,M as J,N as W,C as X,B as Y,w as Z,D as ee,I as te,O as ae,P as oe,Q as le}from"./element-plus.4328d892.js";import{_ as ne}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{f as se,b as ie}from"./index.ed71ac09.js";import{u as ue}from"./vue-router.9f65afb1.js";import{d as L,r as T,s as de,$ as P,af as re,o as s,c as w,U as e,L as a,u as o,T as me,a7 as pe,K as d,a8 as ce,R as r,a as D,M as v,k as _e,Q as fe,n as R}from"./@vue.51d7f2d8.js";import{e as ye,f as ve,d as ge}from"./dict.6c560e38.js";import{u as be}from"./usePaging.2ad8e1e6.js";import{_ as Ce}from"./edit.vue_vue_type_script_setup_true_lang.9c4c98df.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.b940d6e3.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";const Ee={class:"dict-type"},ke={class:"mt-4"},we={class:"flex justify-end mt-4"},De=L({name:"dictData"}),pt=L({...De,setup(he){const{query:N}=ue(),g=T(!1),_=de(),i=P({type:"",type_id:Number(N.id),name:"",status:""}),E=P({dict_type:[]}),{pager:f,getLists:y,resetPage:h,resetParams:S}=be({fetchFun:ge,params:i}),k=T([]),U=n=>{k.value=n.map(({id:t})=>t)},A=async()=>{var t,m;g.value=!0,await R();const n=E.dict_type.find(p=>p.id==i.type_id);(t=_.value)==null||t.setFormData({type_value:n==null?void 0:n.type,type_id:n.id}),(m=_.value)==null||m.open("add")},I=async n=>{var t,m;g.value=!0,await R(),(t=_.value)==null||t.open("edit"),(m=_.value)==null||m.setFormData(n)},F=async n=>{await se.confirm("\u786E\u5B9A\u8981\u5220\u9664\uFF1F"),await ye({id:n}),y()},K=async()=>{const n=await ve({page_type:0});E.dict_type=n.lists};return y(),K(),(n,t)=>{const m=H,p=J,B=W,b=X,q=Y,c=Z,M=ee,V=te,x=ie,u=ae,$=G,O=oe,Q=ne,C=re("perms"),j=le;return s(),w("div",Ee,[e(V,{class:"!border-none",shadow:"never"},{default:a(()=>[e(m,{class:"mb-4",content:"\u6570\u636E\u7BA1\u7406",onBack:t[0]||(t[0]=l=>n.$router.back())}),e(M,{ref:"formRef",class:"mb-[-16px]",model:o(i),inline:""},{default:a(()=>[e(b,{label:"\u5B57\u5178\u540D\u79F0"},{default:a(()=>[e(B,{class:"w-[280px]",modelValue:o(i).type_id,"onUpdate:modelValue":t[1]||(t[1]=l=>o(i).type_id=l),onChange:o(y)},{default:a(()=>[(s(!0),w(me,null,pe(o(E).dict_type,l=>(s(),d(p,{label:l.name,value:l.id,key:l.id},null,8,["label","value"]))),128))]),_:1},8,["modelValue","onChange"])]),_:1}),e(b,{label:"\u6570\u636E\u540D\u79F0"},{default:a(()=>[e(q,{class:"w-[280px]",modelValue:o(i).name,"onUpdate:modelValue":t[2]||(t[2]=l=>o(i).name=l),clearable:"",onKeyup:ce(o(h),["enter"])},null,8,["modelValue","onKeyup"])]),_:1}),e(b,{label:"\u6570\u636E\u72B6\u6001"},{default:a(()=>[e(B,{class:"w-[280px]",modelValue:o(i).status,"onUpdate:modelValue":t[3]||(t[3]=l=>o(i).status=l)},{default:a(()=>[e(p,{label:"\u5168\u90E8",value:""}),e(p,{label:"\u6B63\u5E38",value:1}),e(p,{label:"\u505C\u7528",value:0})]),_:1},8,["modelValue"])]),_:1}),e(b,null,{default:a(()=>[e(c,{type:"primary",onClick:o(h)},{default:a(()=>[r("\u67E5\u8BE2")]),_:1},8,["onClick"]),e(c,{onClick:o(S)},{default:a(()=>[r("\u91CD\u7F6E")]),_:1},8,["onClick"])]),_:1})]),_:1},8,["model"])]),_:1}),e(V,{class:"!border-none mt-4",shadow:"never"},{default:a(()=>[D("div",null,[v((s(),d(c,{type:"primary",onClick:A},{icon:a(()=>[e(x,{name:"el-icon-Plus"})]),default:a(()=>[r(" \u6DFB\u52A0\u6570\u636E ")]),_:1})),[[C,["setting.dict.dict_data/add"]]]),v((s(),d(c,{disabled:!o(k).length,type:"danger",onClick:t[4]||(t[4]=l=>F(o(k)))},{icon:a(()=>[e(x,{name:"el-icon-Delete"})]),default:a(()=>[r(" \u5220\u9664 ")]),_:1},8,["disabled"])),[[C,["setting.dict.dict_data/delete"]]])]),v((s(),w("div",ke,[D("div",null,[e(O,{data:o(f).lists,size:"large",onSelectionChange:U},{default:a(()=>[e(u,{type:"selection",width:"55"}),e(u,{label:"ID",prop:"id"}),e(u,{label:"\u6570\u636E\u540D\u79F0",prop:"name","min-width":"120"}),e(u,{label:"\u6570\u636E\u503C",prop:"value","min-width":"120"}),e(u,{label:"\u72B6\u6001"},{default:a(({row:l})=>[l.status==1?(s(),d($,{key:0},{default:a(()=>[r("\u6B63\u5E38")]),_:1})):(s(),d($,{key:1,type:"danger"},{default:a(()=>[r("\u505C\u7528")]),_:1}))]),_:1}),e(u,{label:"\u5907\u6CE8",prop:"remark","min-width":"120","show-tooltip-when-overflow":""}),e(u,{label:"\u6392\u5E8F",prop:"sort"}),e(u,{label:"\u64CD\u4F5C",width:"120",fixed:"right"},{default:a(({row:l})=>[v((s(),d(c,{link:"",type:"primary",onClick:z=>I(l)},{default:a(()=>[r(" \u7F16\u8F91 ")]),_:2},1032,["onClick"])),[[C,["setting.dict.dict_data/edit"]]]),v((s(),d(c,{link:"",type:"danger",onClick:z=>F(l.id)},{default:a(()=>[r(" \u5220\u9664 ")]),_:2},1032,["onClick"])),[[C,["setting.dict.dict_data/delete"]]])]),_:1})]),_:1},8,["data"])]),D("div",we,[e(Q,{modelValue:o(f),"onUpdate:modelValue":t[5]||(t[5]=l=>_e(f)?f.value=l:null),onChange:o(y)},null,8,["modelValue","onChange"])])])),[[j,o(f).loading]])]),_:1}),o(g)?(s(),d(Ce,{key:0,ref_key:"editRef",ref:_,onSuccess:o(y),onClose:t[6]||(t[6]=l=>g.value=!1)},null,8,["onSuccess"])):fe("",!0)])}}});export{pt as default}; diff --git a/public/admin/assets/index.13ef78d6.js b/public/admin/assets/index.13ef78d6.js new file mode 100644 index 000000000..6d7eb9066 --- /dev/null +++ b/public/admin/assets/index.13ef78d6.js @@ -0,0 +1 @@ +import{d as t,o as s,c as n,a as _,H as a,_ as d}from"./@vue.51d7f2d8.js";import{d as r}from"./index.aa9bb752.js";const c={class:"footer-btns"},i=t({__name:"index",props:{fixed:{type:Boolean,default:!0}},setup(e){return(o,l)=>(s(),n("div",c,[_("div",{class:"footer-btns__content",style:d(e.fixed?"position: fixed":"")},[a(o.$slots,"default",{},void 0,!0)],4)]))}});const u=r(i,[["__scopeId","data-v-9f638557"]]);export{u as _}; diff --git a/public/admin/assets/index.1582c042.js b/public/admin/assets/index.1582c042.js new file mode 100644 index 000000000..f9dcb3dfb --- /dev/null +++ b/public/admin/assets/index.1582c042.js @@ -0,0 +1 @@ +import{B as le,C as ie,M as se,N as me,w as re,D as ce,I as pe,O as de,o as _e,t as fe,P as Ee,L as Fe,Q as ve}from"./element-plus.4328d892.js";import{_ as he}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{f as V,b as ye,d as Ce}from"./index.ed71ac09.js";import{_ as ge}from"./index.vue_vue_type_script_setup_true_lang.5c604000.js";import{u as Be}from"./vue-router.9f65afb1.js";import{d as N,s as De,$ as be,r as C,j as ke,af as we,o as n,c as E,U as t,L as a,u as o,a8 as Ae,T as Ve,a7 as xe,K as s,R as m,M as F,a as g,S as Se,Q as x,k as R,n as S,bf as Ie,be as $e}from"./@vue.51d7f2d8.js";import{a as M,g as Pe,s as ze,b as Ue,e as Le}from"./admin.f28da7a1.js";import{r as Re}from"./role.1c72c4c7.js";import{a as Me}from"./useDictOptions.8d37e54b.js";import{u as Ne}from"./usePaging.2ad8e1e6.js";import{_ as Te}from"./edit.vue_vue_type_style_index_0_lang.c20ff989.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.b940d6e3.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./post.53815820.js";import"./department.4e17bcb6.js";import"./common.ac78ede6.js";import"./dict.6c560e38.js";import"./dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.dac5c88f.js";import"./company.8a1c349a.js";const Ke=B=>(Ie("data-v-f5328fb9"),B=B(),$e(),B),Oe={class:"admin"},je={class:"mt-4"},qe={key:0,style:{color:"#67c23a"}},Qe={key:1,style:{color:"#fe0000"}},Ge={style:{display:"flex"}},He={class:"flex mt-4 justify-end"},Je=Ke(()=>g("h1",null,"\u91CD\u8981\u63D0\u9192",-1)),We={key:0,class:"content"},Xe={key:1,class:"content"},Ye={class:"btn_menu"},Ze=N({name:"admin"}),et=N({...Ze,setup(B){var z;const I=Be(),_=De(),p=be({name:"",role_id:"",company_id:""}),$=C("");I.query.company_id&&(p.company_id=(z=I.query.company_id)==null?void 0:z.toString());const D=C(!1),w=C(!1),b=()=>{D.value=!1,w.value=!1},T=()=>{Pe({id:$.value}).then(()=>{V.msgSuccess("\u53D1\u9001\u6210\u529F")}),b()},K=()=>{ze({id:$.value}).then(u=>{V.msgSuccess("\u53D1\u9001\u6210\u529F")}),b()},v=C(!1),{pager:f,getLists:h,resetParams:O,resetPage:P}=Ne({fetchFun:M,params:p}),j=u=>{Ue({id:u.id,account:u.account,name:u.name,role_id:u.role_id,disable:u.disable,multipoint_login:u.multipoint_login}).finally(()=>{h()})},k=C(!1),q=async()=>{var u;k.value=!1,v.value=!0,await S(),(u=_.value)==null||u.open("add")},Q=async u=>{var l,d;k.value=!1,v.value=!0,await S(),(l=_.value)==null||l.open("edit"),(d=_.value)==null||d.setFormData(u)},G=async u=>{var l,d;k.value=!1,v.value=!0,await S(),(l=_.value)==null||l.open("view"),(d=_.value)==null||d.setFormData(u)},H=async u=>{await V.confirm("\u786E\u5B9A\u8981\u5220\u9664\uFF1F"),await Le({id:u}),h()},{optionsData:J}=Me({role:{api:Re}});return ke(()=>{h()}),(u,l)=>{const d=le,A=ie,U=se,W=me,c=re,X=ge,Y=ce,L=pe,Z=ye,i=de,ee=_e,te=fe,ae=Ee,oe=he,ue=Fe,y=we("perms"),ne=ve;return n(),E("div",Oe,[t(L,{class:"!border-none",shadow:"never"},{default:a(()=>[t(Y,{class:"mb-[-16px]",model:o(p),inline:""},{default:a(()=>[t(A,{label:"\u7BA1\u7406\u5458\u540D\u79F0"},{default:a(()=>[t(d,{modelValue:o(p).name,"onUpdate:modelValue":l[0]||(l[0]=e=>o(p).name=e),class:"w-[280px]",clearable:"",onKeyup:Ae(o(P),["enter"])},null,8,["modelValue","onKeyup"])]),_:1}),t(A,{label:"\u7BA1\u7406\u5458\u89D2\u8272"},{default:a(()=>[t(W,{class:"w-[280px]",modelValue:o(p).role_id,"onUpdate:modelValue":l[1]||(l[1]=e=>o(p).role_id=e)},{default:a(()=>[t(U,{label:"\u5168\u90E8",value:""}),(n(!0),E(Ve,null,xe(o(J).role,(e,r)=>(n(),s(U,{key:r,label:e.name,value:e.id},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1}),t(A,null,{default:a(()=>[t(c,{type:"primary",onClick:o(P)},{default:a(()=>[m("\u67E5\u8BE2")]),_:1},8,["onClick"]),t(c,{onClick:o(O)},{default:a(()=>[m("\u91CD\u7F6E")]),_:1},8,["onClick"]),t(X,{class:"ml-2.5","fetch-fun":o(M),params:o(p),"page-size":o(f).size},null,8,["fetch-fun","params","page-size"])]),_:1})]),_:1},8,["model"])]),_:1}),F((n(),s(L,{class:"mt-4 !border-none",shadow:"never"},{default:a(()=>[F((n(),s(c,{type:"primary",onClick:q},{icon:a(()=>[t(Z,{name:"el-icon-Plus"})]),default:a(()=>[m(" \u65B0\u589E ")]),_:1})),[[y,["auth.admin/add"]]]),g("div",je,[t(ae,{data:o(f).lists,size:"large"},{default:a(()=>[t(i,{label:"ID",prop:"id","min-width":"60"}),m("> "),t(i,{label:"\u5934\u50CF","min-width":"100"},{default:a(({row:e})=>[t(ee,{size:50,src:e.avatar},null,8,["src"])]),_:1}),t(i,{label:"\u59D3\u540D",prop:"name","min-width":"100"}),t(i,{label:"\u8054\u7CFB\u65B9\u5F0F",prop:"account","min-width":"130"}),t(i,{label:"\u96B6\u5C5E\u516C\u53F8",prop:"company.company_name","min-width":"120",align:"center"},{default:a(({row:e})=>{var r;return[m(Se(((r=e==null?void 0:e.company)==null?void 0:r.company_name)||"/"),1)]}),_:1}),t(i,{label:"\u6240\u5728\u4E61\u9547",prop:"street_name","min-width":"120"}),t(i,{label:"\u6388\u6743\u8EAB\u4EFD",prop:"role_name","min-width":"120"}),t(i,{label:"\u662F\u5426\u7B7E\u7EA6",prop:"is_contract",align:"center","min-width":"120"},{default:a(({row:e})=>[e.is_contract==1?(n(),E("span",qe,"\u5DF2\u7B7E\u7EA6")):(n(),E("span",Qe,"\u672A\u7B7E\u7EA6"))]),_:1}),t(i,{label:"\u6700\u8FD1\u767B\u5F55\u65F6\u95F4",prop:"login_time","min-width":"180"}),t(i,{label:"\u521B\u5EFA\u65F6\u95F4",prop:"create_time","min-width":"180",align:"center"}),t(i,{label:"\u6700\u8FD1\u767B\u5F55IP",prop:"login_ip","min-width":"120"}),F((n(),s(i,{label:"\u8D26\u53F7\u72B6\u6001","min-width":"100"},{default:a(({row:e})=>[e.root!=1?(n(),s(te,{key:0,modelValue:e.disable,"onUpdate:modelValue":r=>e.disable=r,"active-value":0,"inactive-value":1,onChange:r=>j(e)},null,8,["modelValue","onUpdate:modelValue","onChange"])):x("",!0)]),_:1})),[[y,["auth.admin/edit"]]]),t(i,{label:"\u64CD\u4F5C",width:"230",align:"center",fixed:"right"},{default:a(({row:e})=>[g("div",Ge,[F((n(),s(c,{type:"primary",link:"",onClick:r=>G(e)},{default:a(()=>[m("\u67E5\u770B")]),_:2},1032,["onClick"])),[[y,["auth.admin/view"]]]),F((n(),s(c,{type:"primary",link:"",onClick:r=>Q(e)},{default:a(()=>[m("\u7F16\u8F91")]),_:2},1032,["onClick"])),[[y,["auth.admin/edit"]]]),e.root!=1?F((n(),s(c,{key:0,type:"danger",link:"",onClick:r=>H(e.id)},{default:a(()=>[m("\u5220\u9664")]),_:2},1032,["onClick"])),[[y,["auth.admin/delete"]]]):x("",!0)])]),_:1})]),_:1},8,["data"])]),g("div",He,[t(oe,{modelValue:o(f),"onUpdate:modelValue":l[2]||(l[2]=e=>R(f)?f.value=e:null),onChange:o(h)},null,8,["modelValue","onChange"])])]),_:1})),[[ne,o(f).loading]]),o(v)?(n(),s(Te,{key:0,ref_key:"editRef",ref:_,isCheck:o(k),onSuccess:o(h),onClose:l[3]||(l[3]=e=>v.value=!1)},null,8,["isCheck","onSuccess"])):x("",!0),t(ue,{modelValue:o(D),"onUpdate:modelValue":l[4]||(l[4]=e=>R(D)?D.value=e:null),onClose:b},{default:a(()=>[Je,o(w)?(n(),E("div",We," \u8BF7\u786E\u8BA4\u4FE1\u606F\u662F\u5426\u6709\u8BEF,\u53D1\u9001\u5408\u540C,\u8BF7\u786E\u8BA4\u4FE1\u606F\u662F\u5426\u6709\u8BEF,\u53D1\u9001\u7535\u5B50\u5408\u540C\u540E\u77ED\u65F6\u95F4\u5185\u5C06\u4E0D\u53EF\u518D\u6B21\u53D1\u9001. ")):(n(),E("div",Xe," \u786E\u8BA4\u7B7E\u7EA6\u77ED\u4FE1\u5C06\u572860\u79D2\u540E\u53D1\u9001,\u8BF7\u6CE8\u610F\u67E5\u6536,\u5E76\u70B9\u51FB\u77ED\u4FE1\u94FE\u63A5\u8FDB\u884C\u7EBF\u4E0A\u5408\u540C\u7B7E\u7EA6 ")),g("p",Ye,[o(w)?(n(),s(c,{key:0,type:"primary",size:"large",onClick:T},{default:a(()=>[m("\u786E\u8BA4\u521B\u5EFA")]),_:1})):(n(),s(c,{key:1,type:"primary",size:"large",onClick:K},{default:a(()=>[m("\u786E\u8BA4")]),_:1})),t(c,{type:"info",size:"large",onClick:b},{default:a(()=>[m("\u8FD4\u56DE")]),_:1})])]),_:1},8,["modelValue"])])}}});const Wt=Ce(et,[["__scopeId","data-v-f5328fb9"]]);export{Wt as default}; diff --git a/public/admin/assets/index.169848f5.js b/public/admin/assets/index.169848f5.js new file mode 100644 index 000000000..1dba5d40e --- /dev/null +++ b/public/admin/assets/index.169848f5.js @@ -0,0 +1 @@ +import{_ as b}from"./index.fd04a214.js";import{G as v,H as V,C as x,B as w,D as R,I as k,w as y}from"./element-plus.4328d892.js";import{r as d}from"./index.37f7aea6.js";import{d as I,$ as N,af as U,o as _,c as A,U as o,L as t,u,a as r,R as i,M as G,K as j}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";function q(){return d.get({url:"/recharge.recharge/getConfig"})}function H(s){return d.post({url:"/recharge.recharge/setConfig",params:s})}const K=r("span",{class:"font-extrabold text-lg"},"\u5145\u503C\u8BBE\u7F6E",-1),L=r("div",{class:"form-tips"},"\u5173\u95ED\u6216\u5F00\u542F\u5145\u503C\u529F\u80FD\uFF0C\u5173\u95ED\u540E\u5C06\u4E0D\u663E\u793A\u5145\u503C\u5165\u53E3",-1),M=r("div",{class:"form-tips"}," \u6700\u4F4E\u5145\u503C\u91D1\u989D\u8981\u6C42\uFF0C\u4E0D\u586B\u6216\u586B0\u8868\u793A\u4E0D\u9650\u5236\u6700\u4F4E\u5145\u503C\u91D1\u989D ",-1),bt=I({__name:"index",setup(s){const e=N({status:1,min_amount:""}),l=async()=>{const m=await q();Object.assign(e,m)},f=async()=>{await H(e),l()};return l(),(m,a)=>{const p=v,E=V,c=x,g=w,C=R,D=k,F=y,h=b,B=U("perms");return _(),A("div",null,[o(D,{shadow:"never",class:"!border-none"},{header:t(()=>[K]),default:t(()=>[o(C,{model:u(e),"label-width":"120px"},{default:t(()=>[o(c,{label:"\u72B6\u6001"},{default:t(()=>[r("div",null,[o(E,{modelValue:u(e).status,"onUpdate:modelValue":a[0]||(a[0]=n=>u(e).status=n),class:"ml-4"},{default:t(()=>[o(p,{label:1},{default:t(()=>[i("\u5F00\u542F")]),_:1}),o(p,{label:0},{default:t(()=>[i("\u5173\u95ED")]),_:1})]),_:1},8,["modelValue"]),L])]),_:1}),o(c,{label:"\u6700\u4F4E\u5145\u503C\u91D1\u989D"},{default:t(()=>[r("div",null,[o(g,{modelValue:u(e).min_amount,"onUpdate:modelValue":a[1]||(a[1]=n=>u(e).min_amount=n),placeholder:"\u8BF7\u8F93\u5165\u6700\u4F4E\u5145\u503C\u91D1\u989D",clearable:""},null,8,["modelValue"]),M])]),_:1})]),_:1},8,["model"])]),_:1}),G((_(),j(h,null,{default:t(()=>[o(F,{type:"primary",onClick:f},{default:t(()=>[i("\u4FDD\u5B58")]),_:1})]),_:1})),[[B,["recharge.recharge/setConfig"]]])])}}});export{bt as default}; diff --git a/public/admin/assets/index.1af29d6e.js b/public/admin/assets/index.1af29d6e.js new file mode 100644 index 000000000..6f9019e99 --- /dev/null +++ b/public/admin/assets/index.1af29d6e.js @@ -0,0 +1 @@ +import{B as z,C as K,M as G,N as H,w as J,D as W,I as X,O as Y,P as Z,Q as ee}from"./element-plus.4328d892.js";import{_ as le}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{_ as te}from"./index.vue_vue_type_script_setup_true_lang.17266fa4.js";import{f as oe,b as ae}from"./index.ed71ac09.js";import{u as ue}from"./usePaging.2ad8e1e6.js";import{u as ne}from"./useDictOptions.8d37e54b.js";import{_ as pe,a as re,b as ie}from"./edit.vue_vue_type_script_setup_true_name_appUpdateEdit_lang.696a9d48.js";import"./lodash.08438971.js";import{d as $,s as se,r as P,$ as de,af as me,o as n,c as E,U as e,L as o,u as t,T as h,a7 as x,K as i,R as v,M as F,a as A,k as ce,Q as _e,n as U}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.b940d6e3.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";const fe={class:"mt-4"},ve={class:"flex mt-4 justify-end"},be=$({name:"appUpdateLists"}),nl=$({...be,setup(Fe){const B=se(),w=P(!1),u=de({title:"",content:"",type:"",version:"",dow_url:"",force:"",quiet:""}),V=P([]),L=r=>{V.value=r.map(({id:a})=>a)},{dictData:s}=ne("app_type,app_force_quiet"),{pager:b,getLists:C,resetParams:N,resetPage:R}=ue({fetchFun:ie,params:u}),S=async()=>{var r;w.value=!0,await U(),(r=B.value)==null||r.open("add")},T=async r=>{var a,c;w.value=!0,await U(),(a=B.value)==null||a.open("edit"),(c=B.value)==null||c.setFormData(r)},D=async r=>{await oe.confirm("\u786E\u5B9A\u8981\u5220\u9664\uFF1F"),await re({id:r}),C()};return C(),(r,a)=>{const c=z,d=K,_=G,k=H,f=J,I=W,q=X,M=ae,p=Y,g=te,O=Z,Q=le,y=me("perms"),j=ee;return n(),E("div",null,[e(q,{class:"!border-none mb-4",shadow:"never"},{default:o(()=>[e(I,{class:"mb-[-16px]",model:t(u),inline:""},{default:o(()=>[e(d,{label:"\u6807\u9898",prop:"title"},{default:o(()=>[e(c,{class:"w-[280px]",modelValue:t(u).title,"onUpdate:modelValue":a[0]||(a[0]=l=>t(u).title=l),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u6807\u9898"},null,8,["modelValue"])]),_:1}),e(d,{label:"\u5185\u5BB9",prop:"content"},{default:o(()=>[e(c,{class:"w-[280px]",modelValue:t(u).content,"onUpdate:modelValue":a[1]||(a[1]=l=>t(u).content=l),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u5185\u5BB9",type:"textarea",autosize:""},null,8,["modelValue"])]),_:1}),e(d,{label:"APP\u7C7B\u578B",prop:"type"},{default:o(()=>[e(k,{class:"w-[280px]",modelValue:t(u).type,"onUpdate:modelValue":a[2]||(a[2]=l=>t(u).type=l),clearable:"",placeholder:"\u8BF7\u9009\u62E9APP\u7C7B\u578B"},{default:o(()=>[e(_,{label:"\u5168\u90E8",value:""}),(n(!0),E(h,null,x(t(s).app_type,(l,m)=>(n(),i(_,{key:m,label:l.name,value:l.value},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1}),e(d,{label:"\u7248\u672C",prop:"version"},{default:o(()=>[e(c,{class:"w-[280px]",modelValue:t(u).version,"onUpdate:modelValue":a[3]||(a[3]=l=>t(u).version=l),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u7248\u672C"},null,8,["modelValue"])]),_:1}),e(d,{label:"\u662F\u5426\u5F3A\u5236\u66F4\u65B0",prop:"force"},{default:o(()=>[e(k,{class:"w-[280px]",modelValue:t(u).force,"onUpdate:modelValue":a[4]||(a[4]=l=>t(u).force=l),clearable:"",placeholder:"\u8BF7\u9009\u62E9\u662F\u5426\u5F3A\u5236\u66F4\u65B0"},{default:o(()=>[e(_,{label:"\u5168\u90E8",value:""}),(n(!0),E(h,null,x(t(s).app_force_quiet,(l,m)=>(n(),i(_,{key:m,label:l.name,value:l.value},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1}),e(d,{label:"\u662F\u5426\u9759\u9ED8\u66F4\u65B0",prop:"quiet"},{default:o(()=>[e(k,{class:"w-[280px]",modelValue:t(u).quiet,"onUpdate:modelValue":a[5]||(a[5]=l=>t(u).quiet=l),clearable:"",placeholder:"\u8BF7\u9009\u62E9\u662F\u5426\u9759\u9ED8\u66F4\u65B0"},{default:o(()=>[e(_,{label:"\u5168\u90E8",value:""}),(n(!0),E(h,null,x(t(s).app_force_quiet,(l,m)=>(n(),i(_,{key:m,label:l.name,value:l.value},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1}),e(d,null,{default:o(()=>[e(f,{type:"primary",onClick:t(R)},{default:o(()=>[v("\u67E5\u8BE2")]),_:1},8,["onClick"]),e(f,{onClick:t(N)},{default:o(()=>[v("\u91CD\u7F6E")]),_:1},8,["onClick"])]),_:1})]),_:1},8,["model"])]),_:1}),F((n(),i(q,{class:"!border-none",shadow:"never"},{default:o(()=>[F((n(),i(f,{type:"primary",onClick:S},{icon:o(()=>[e(M,{name:"el-icon-Plus"})]),default:o(()=>[v(" \u65B0\u589E ")]),_:1})),[[y,["app_update/add"]]]),F((n(),i(f,{disabled:!t(V).length,onClick:a[6]||(a[6]=l=>D(t(V)))},{default:o(()=>[v(" \u5220\u9664 ")]),_:1},8,["disabled"])),[[y,["app_update/delete"]]]),A("div",fe,[e(O,{data:t(b).lists,onSelectionChange:L},{default:o(()=>[e(p,{type:"selection",width:"55"}),e(p,{label:"\u6807\u9898",prop:"title","show-overflow-tooltip":""}),e(p,{label:"\u5185\u5BB9",prop:"content","show-overflow-tooltip":""}),e(p,{label:"APP\u7C7B\u578B",prop:"type"},{default:o(({row:l})=>[e(g,{options:t(s).app_type,value:l.type},null,8,["options","value"])]),_:1}),e(p,{label:"\u7248\u672C",prop:"version","show-overflow-tooltip":""}),e(p,{label:"app\u94FE\u63A5",prop:"dow_url","show-overflow-tooltip":""}),e(p,{label:"\u662F\u5426\u5F3A\u5236\u66F4\u65B0",prop:"force"},{default:o(({row:l})=>[e(g,{options:t(s).app_force_quiet,value:l.force},null,8,["options","value"])]),_:1}),e(p,{label:"\u662F\u5426\u9759\u9ED8\u66F4\u65B0",prop:"quiet"},{default:o(({row:l})=>[e(g,{options:t(s).app_force_quiet,value:l.quiet},null,8,["options","value"])]),_:1}),e(p,{label:"\u66F4\u65B0\u65F6\u95F4",prop:"update_time","show-overflow-tooltip":""}),e(p,{label:"\u64CD\u4F5C",width:"120",fixed:"right"},{default:o(({row:l})=>[F((n(),i(f,{type:"primary",link:"",onClick:m=>T(l)},{default:o(()=>[v(" \u7F16\u8F91 ")]),_:2},1032,["onClick"])),[[y,["app_update/edit"]]]),F((n(),i(f,{type:"danger",link:"",onClick:m=>D(l.id)},{default:o(()=>[v(" \u5220\u9664 ")]),_:2},1032,["onClick"])),[[y,["app_update/delete"]]])]),_:1})]),_:1},8,["data"])]),A("div",ve,[e(Q,{modelValue:t(b),"onUpdate:modelValue":a[7]||(a[7]=l=>ce(b)?b.value=l:null),onChange:t(C)},null,8,["modelValue","onChange"])])]),_:1})),[[j,t(b).loading]]),t(w)?(n(),i(pe,{key:0,ref_key:"editRef",ref:B,"dict-data":t(s),onSuccess:t(C),onClose:a[8]||(a[8]=l=>w.value=!1)},null,8,["dict-data","onSuccess"])):_e("",!0)])}}});export{nl as default}; diff --git a/public/admin/assets/index.1b771a99.js b/public/admin/assets/index.1b771a99.js new file mode 100644 index 000000000..226346fa9 --- /dev/null +++ b/public/admin/assets/index.1b771a99.js @@ -0,0 +1 @@ +import{B as T,C as $,M as O,N as q,w as M,D as Q,I as j,O as z,t as G,P as H,Q as J}from"./element-plus.4328d892.js";import{_ as W}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{k,f as X,b as Y,_ as Z}from"./index.ed71ac09.js";import{d as D,$ as ee,b8 as te,a4 as ae,af as le,o as r,c as V,U as e,L as a,u as l,a8 as oe,T as ie,a7 as ne,K as u,R as p,a as y,M as _,Q as re,k as se}from"./@vue.51d7f2d8.js";import{h as ue,k as me,l as ce,m as de}from"./article.a2ac2e4b.js";import{a as pe}from"./useDictOptions.8d37e54b.js";import{u as _e}from"./usePaging.2ad8e1e6.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const fe={class:"article-lists"},he={class:"flex justify-end mt-4"},be=D({name:"articleLists"}),lt=D({...be,setup(we){const n=ee({title:"",cid:"",is_show:""}),{pager:m,getLists:s,resetPage:v,resetParams:x}=_e({fetchFun:de,params:n}),{optionsData:B}=pe({article_cate:{api:ue}}),A=async(f,o)=>{try{await me({id:o,is_show:f}),s()}catch{s()}},P=async f=>{await X.confirm("\u786E\u5B9A\u8981\u5220\u9664\uFF1F"),await ce({id:f}),s()};return te(()=>{s()}),s(),(f,o)=>{const E=T,h=$,c=O,C=q,d=M,U=Q,g=j,L=Y,F=ae("router-link"),i=z,N=Z,S=G,I=H,K=W,b=le("perms"),R=J;return r(),V("div",fe,[e(g,{class:"!border-none",shadow:"never"},{default:a(()=>[e(U,{ref:"formRef",class:"mb-[-16px]",model:l(n),inline:!0},{default:a(()=>[e(h,{label:"\u6587\u7AE0\u6807\u9898"},{default:a(()=>[e(E,{class:"w-[280px]",modelValue:l(n).title,"onUpdate:modelValue":o[0]||(o[0]=t=>l(n).title=t),clearable:"",onKeyup:oe(l(v),["enter"])},null,8,["modelValue","onKeyup"])]),_:1}),e(h,{label:"\u680F\u76EE\u540D\u79F0"},{default:a(()=>[e(C,{class:"w-[280px]",modelValue:l(n).cid,"onUpdate:modelValue":o[1]||(o[1]=t=>l(n).cid=t)},{default:a(()=>[e(c,{label:"\u5168\u90E8",value:""}),(r(!0),V(ie,null,ne(l(B).article_cate,t=>(r(),u(c,{key:t.id,label:t.name,value:t.id},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1}),e(h,{label:"\u6587\u7AE0\u72B6\u6001"},{default:a(()=>[e(C,{class:"w-[280px]",modelValue:l(n).is_show,"onUpdate:modelValue":o[2]||(o[2]=t=>l(n).is_show=t)},{default:a(()=>[e(c,{label:"\u5168\u90E8",value:""}),e(c,{label:"\u663E\u793A",value:1}),e(c,{label:"\u9690\u85CF",value:0})]),_:1},8,["modelValue"])]),_:1}),e(h,null,{default:a(()=>[e(d,{type:"primary",onClick:l(v)},{default:a(()=>[p("\u67E5\u8BE2")]),_:1},8,["onClick"]),e(d,{onClick:l(x)},{default:a(()=>[p("\u91CD\u7F6E")]),_:1},8,["onClick"])]),_:1})]),_:1},8,["model"])]),_:1}),e(g,{class:"!border-none mt-4",shadow:"never"},{default:a(()=>[y("div",null,[_((r(),u(F,{to:{path:l(k)("article.article/add:edit")}},{default:a(()=>[e(d,{type:"primary",class:"mb-4"},{icon:a(()=>[e(L,{name:"el-icon-Plus"})]),default:a(()=>[p(" \u53D1\u5E03\u6587\u7AE0 ")]),_:1})]),_:1},8,["to"])),[[b,["article.article/add","article.article/add:edit"]]])]),_((r(),u(I,{size:"large",data:l(m).lists},{default:a(()=>[e(i,{label:"ID",prop:"id","min-width":"80"}),e(i,{label:"\u5C01\u9762","min-width":"100"},{default:a(({row:t})=>[t.image?(r(),u(N,{key:0,src:t.image,width:60,height:45,"preview-src-list":[t.image],"preview-teleported":"",fit:"contain"},null,8,["src","preview-src-list"])):re("",!0)]),_:1}),e(i,{label:"\u6807\u9898",prop:"title","min-width":"160","show-tooltip-when-overflow":""}),e(i,{label:"\u680F\u76EE",prop:"cate_name","min-width":"100"}),e(i,{label:"\u4F5C\u8005",prop:"author","min-width":"120"}),e(i,{label:"\u6D4F\u89C8\u91CF",prop:"click","min-width":"100"}),e(i,{label:"\u72B6\u6001","min-width":"100"},{default:a(({row:t})=>[_(e(S,{modelValue:t.is_show,"onUpdate:modelValue":w=>t.is_show=w,"active-value":1,"inactive-value":0,onChange:w=>A(w,t.id)},null,8,["modelValue","onUpdate:modelValue","onChange"]),[[b,["article.article/updateStatus"]]])]),_:1}),e(i,{label:"\u6392\u5E8F",prop:"sort","min-width":"100"}),e(i,{label:"\u53D1\u5E03\u65F6\u95F4",prop:"create_time","min-width":"120"}),e(i,{label:"\u64CD\u4F5C",width:"120",fixed:"right"},{default:a(({row:t})=>[_((r(),u(d,{type:"primary",link:""},{default:a(()=>[e(F,{to:{path:l(k)("article.article/add:edit"),query:{id:t.id}}},{default:a(()=>[p(" \u7F16\u8F91 ")]),_:2},1032,["to"])]),_:2},1024)),[[b,["article.article/edit","article.article/add:edit"]]]),_((r(),u(d,{type:"danger",link:"",onClick:w=>P(t.id)},{default:a(()=>[p(" \u5220\u9664 ")]),_:2},1032,["onClick"])),[[b,["article.article/delete"]]])]),_:1})]),_:1},8,["data"])),[[R,l(m).loading]]),y("div",he,[e(K,{modelValue:l(m),"onUpdate:modelValue":o[3]||(o[3]=t=>se(m)?m.value=t:null),onChange:l(s)},null,8,["modelValue","onChange"])])]),_:1})])}}});export{lt as default}; diff --git a/public/admin/assets/index.1b7f31fc.js b/public/admin/assets/index.1b7f31fc.js new file mode 100644 index 000000000..532311848 --- /dev/null +++ b/public/admin/assets/index.1b7f31fc.js @@ -0,0 +1 @@ +import{B as z,C as K,M as G,N as H,w as J,D as W,I as X,O as Y,P as Z,Q as ee}from"./element-plus.4328d892.js";import{_ as le}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{_ as te}from"./index.vue_vue_type_script_setup_true_lang.17266fa4.js";import{f as oe,b as ae}from"./index.37f7aea6.js";import{u as ue}from"./usePaging.2ad8e1e6.js";import{u as ne}from"./useDictOptions.a45fc8ac.js";import{_ as pe,a as re,b as ie}from"./edit.vue_vue_type_script_setup_true_name_appUpdateEdit_lang.e5edc10c.js";import"./lodash.08438971.js";import{d as $,s as se,r as P,$ as de,af as me,o as n,c as E,U as e,L as o,u as t,T as h,a7 as x,K as i,R as v,M as F,a as A,k as ce,Q as _e,n as U}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.5759a1a6.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";const fe={class:"mt-4"},ve={class:"flex mt-4 justify-end"},be=$({name:"appUpdateLists"}),nl=$({...be,setup(Fe){const B=se(),w=P(!1),u=de({title:"",content:"",type:"",version:"",dow_url:"",force:"",quiet:""}),V=P([]),L=r=>{V.value=r.map(({id:a})=>a)},{dictData:s}=ne("app_type,app_force_quiet"),{pager:b,getLists:C,resetParams:N,resetPage:R}=ue({fetchFun:ie,params:u}),S=async()=>{var r;w.value=!0,await U(),(r=B.value)==null||r.open("add")},T=async r=>{var a,c;w.value=!0,await U(),(a=B.value)==null||a.open("edit"),(c=B.value)==null||c.setFormData(r)},D=async r=>{await oe.confirm("\u786E\u5B9A\u8981\u5220\u9664\uFF1F"),await re({id:r}),C()};return C(),(r,a)=>{const c=z,d=K,_=G,k=H,f=J,I=W,q=X,M=ae,p=Y,g=te,O=Z,Q=le,y=me("perms"),j=ee;return n(),E("div",null,[e(q,{class:"!border-none mb-4",shadow:"never"},{default:o(()=>[e(I,{class:"mb-[-16px]",model:t(u),inline:""},{default:o(()=>[e(d,{label:"\u6807\u9898",prop:"title"},{default:o(()=>[e(c,{class:"w-[280px]",modelValue:t(u).title,"onUpdate:modelValue":a[0]||(a[0]=l=>t(u).title=l),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u6807\u9898"},null,8,["modelValue"])]),_:1}),e(d,{label:"\u5185\u5BB9",prop:"content"},{default:o(()=>[e(c,{class:"w-[280px]",modelValue:t(u).content,"onUpdate:modelValue":a[1]||(a[1]=l=>t(u).content=l),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u5185\u5BB9",type:"textarea",autosize:""},null,8,["modelValue"])]),_:1}),e(d,{label:"APP\u7C7B\u578B",prop:"type"},{default:o(()=>[e(k,{class:"w-[280px]",modelValue:t(u).type,"onUpdate:modelValue":a[2]||(a[2]=l=>t(u).type=l),clearable:"",placeholder:"\u8BF7\u9009\u62E9APP\u7C7B\u578B"},{default:o(()=>[e(_,{label:"\u5168\u90E8",value:""}),(n(!0),E(h,null,x(t(s).app_type,(l,m)=>(n(),i(_,{key:m,label:l.name,value:l.value},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1}),e(d,{label:"\u7248\u672C",prop:"version"},{default:o(()=>[e(c,{class:"w-[280px]",modelValue:t(u).version,"onUpdate:modelValue":a[3]||(a[3]=l=>t(u).version=l),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u7248\u672C"},null,8,["modelValue"])]),_:1}),e(d,{label:"\u662F\u5426\u5F3A\u5236\u66F4\u65B0",prop:"force"},{default:o(()=>[e(k,{class:"w-[280px]",modelValue:t(u).force,"onUpdate:modelValue":a[4]||(a[4]=l=>t(u).force=l),clearable:"",placeholder:"\u8BF7\u9009\u62E9\u662F\u5426\u5F3A\u5236\u66F4\u65B0"},{default:o(()=>[e(_,{label:"\u5168\u90E8",value:""}),(n(!0),E(h,null,x(t(s).app_force_quiet,(l,m)=>(n(),i(_,{key:m,label:l.name,value:l.value},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1}),e(d,{label:"\u662F\u5426\u9759\u9ED8\u66F4\u65B0",prop:"quiet"},{default:o(()=>[e(k,{class:"w-[280px]",modelValue:t(u).quiet,"onUpdate:modelValue":a[5]||(a[5]=l=>t(u).quiet=l),clearable:"",placeholder:"\u8BF7\u9009\u62E9\u662F\u5426\u9759\u9ED8\u66F4\u65B0"},{default:o(()=>[e(_,{label:"\u5168\u90E8",value:""}),(n(!0),E(h,null,x(t(s).app_force_quiet,(l,m)=>(n(),i(_,{key:m,label:l.name,value:l.value},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1}),e(d,null,{default:o(()=>[e(f,{type:"primary",onClick:t(R)},{default:o(()=>[v("\u67E5\u8BE2")]),_:1},8,["onClick"]),e(f,{onClick:t(N)},{default:o(()=>[v("\u91CD\u7F6E")]),_:1},8,["onClick"])]),_:1})]),_:1},8,["model"])]),_:1}),F((n(),i(q,{class:"!border-none",shadow:"never"},{default:o(()=>[F((n(),i(f,{type:"primary",onClick:S},{icon:o(()=>[e(M,{name:"el-icon-Plus"})]),default:o(()=>[v(" \u65B0\u589E ")]),_:1})),[[y,["app_update/add"]]]),F((n(),i(f,{disabled:!t(V).length,onClick:a[6]||(a[6]=l=>D(t(V)))},{default:o(()=>[v(" \u5220\u9664 ")]),_:1},8,["disabled"])),[[y,["app_update/delete"]]]),A("div",fe,[e(O,{data:t(b).lists,onSelectionChange:L},{default:o(()=>[e(p,{type:"selection",width:"55"}),e(p,{label:"\u6807\u9898",prop:"title","show-overflow-tooltip":""}),e(p,{label:"\u5185\u5BB9",prop:"content","show-overflow-tooltip":""}),e(p,{label:"APP\u7C7B\u578B",prop:"type"},{default:o(({row:l})=>[e(g,{options:t(s).app_type,value:l.type},null,8,["options","value"])]),_:1}),e(p,{label:"\u7248\u672C",prop:"version","show-overflow-tooltip":""}),e(p,{label:"app\u94FE\u63A5",prop:"dow_url","show-overflow-tooltip":""}),e(p,{label:"\u662F\u5426\u5F3A\u5236\u66F4\u65B0",prop:"force"},{default:o(({row:l})=>[e(g,{options:t(s).app_force_quiet,value:l.force},null,8,["options","value"])]),_:1}),e(p,{label:"\u662F\u5426\u9759\u9ED8\u66F4\u65B0",prop:"quiet"},{default:o(({row:l})=>[e(g,{options:t(s).app_force_quiet,value:l.quiet},null,8,["options","value"])]),_:1}),e(p,{label:"\u66F4\u65B0\u65F6\u95F4",prop:"update_time","show-overflow-tooltip":""}),e(p,{label:"\u64CD\u4F5C",width:"120",fixed:"right"},{default:o(({row:l})=>[F((n(),i(f,{type:"primary",link:"",onClick:m=>T(l)},{default:o(()=>[v(" \u7F16\u8F91 ")]),_:2},1032,["onClick"])),[[y,["app_update/edit"]]]),F((n(),i(f,{type:"danger",link:"",onClick:m=>D(l.id)},{default:o(()=>[v(" \u5220\u9664 ")]),_:2},1032,["onClick"])),[[y,["app_update/delete"]]])]),_:1})]),_:1},8,["data"])]),A("div",ve,[e(Q,{modelValue:t(b),"onUpdate:modelValue":a[7]||(a[7]=l=>ce(b)?b.value=l:null),onChange:t(C)},null,8,["modelValue","onChange"])])]),_:1})),[[j,t(b).loading]]),t(w)?(n(),i(pe,{key:0,ref_key:"editRef",ref:B,"dict-data":t(s),onSuccess:t(C),onClose:a[8]||(a[8]=l=>w.value=!1)},null,8,["dict-data","onSuccess"])):_e("",!0)])}}});export{nl as default}; diff --git a/public/admin/assets/index.1e3d7806.js b/public/admin/assets/index.1e3d7806.js new file mode 100644 index 000000000..39c0fc4ce --- /dev/null +++ b/public/admin/assets/index.1e3d7806.js @@ -0,0 +1 @@ +import{T as H,a6 as G,M as J,N as W,C as X,B as Y,w as Z,D as ee,I as te,O as ae,P as oe,Q as le}from"./element-plus.4328d892.js";import{_ as ne}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{f as se,b as ie}from"./index.aa9bb752.js";import{u as ue}from"./vue-router.9f65afb1.js";import{d as L,r as T,s as de,$ as P,af as re,o as s,c as w,U as e,L as a,u as o,T as me,a7 as pe,K as d,a8 as ce,R as r,a as D,M as v,k as _e,Q as fe,n as R}from"./@vue.51d7f2d8.js";import{e as ye,f as ve,d as ge}from"./dict.927f1fc7.js";import{u as be}from"./usePaging.2ad8e1e6.js";import{_ as Ce}from"./edit.vue_vue_type_script_setup_true_lang.e6d477e4.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.fa872673.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";const Ee={class:"dict-type"},ke={class:"mt-4"},we={class:"flex justify-end mt-4"},De=L({name:"dictData"}),pt=L({...De,setup(he){const{query:N}=ue(),g=T(!1),_=de(),i=P({type:"",type_id:Number(N.id),name:"",status:""}),E=P({dict_type:[]}),{pager:f,getLists:y,resetPage:h,resetParams:S}=be({fetchFun:ge,params:i}),k=T([]),U=n=>{k.value=n.map(({id:t})=>t)},A=async()=>{var t,m;g.value=!0,await R();const n=E.dict_type.find(p=>p.id==i.type_id);(t=_.value)==null||t.setFormData({type_value:n==null?void 0:n.type,type_id:n.id}),(m=_.value)==null||m.open("add")},I=async n=>{var t,m;g.value=!0,await R(),(t=_.value)==null||t.open("edit"),(m=_.value)==null||m.setFormData(n)},F=async n=>{await se.confirm("\u786E\u5B9A\u8981\u5220\u9664\uFF1F"),await ye({id:n}),y()},K=async()=>{const n=await ve({page_type:0});E.dict_type=n.lists};return y(),K(),(n,t)=>{const m=H,p=J,B=W,b=X,q=Y,c=Z,M=ee,V=te,x=ie,u=ae,$=G,O=oe,Q=ne,C=re("perms"),j=le;return s(),w("div",Ee,[e(V,{class:"!border-none",shadow:"never"},{default:a(()=>[e(m,{class:"mb-4",content:"\u6570\u636E\u7BA1\u7406",onBack:t[0]||(t[0]=l=>n.$router.back())}),e(M,{ref:"formRef",class:"mb-[-16px]",model:o(i),inline:""},{default:a(()=>[e(b,{label:"\u5B57\u5178\u540D\u79F0"},{default:a(()=>[e(B,{class:"w-[280px]",modelValue:o(i).type_id,"onUpdate:modelValue":t[1]||(t[1]=l=>o(i).type_id=l),onChange:o(y)},{default:a(()=>[(s(!0),w(me,null,pe(o(E).dict_type,l=>(s(),d(p,{label:l.name,value:l.id,key:l.id},null,8,["label","value"]))),128))]),_:1},8,["modelValue","onChange"])]),_:1}),e(b,{label:"\u6570\u636E\u540D\u79F0"},{default:a(()=>[e(q,{class:"w-[280px]",modelValue:o(i).name,"onUpdate:modelValue":t[2]||(t[2]=l=>o(i).name=l),clearable:"",onKeyup:ce(o(h),["enter"])},null,8,["modelValue","onKeyup"])]),_:1}),e(b,{label:"\u6570\u636E\u72B6\u6001"},{default:a(()=>[e(B,{class:"w-[280px]",modelValue:o(i).status,"onUpdate:modelValue":t[3]||(t[3]=l=>o(i).status=l)},{default:a(()=>[e(p,{label:"\u5168\u90E8",value:""}),e(p,{label:"\u6B63\u5E38",value:1}),e(p,{label:"\u505C\u7528",value:0})]),_:1},8,["modelValue"])]),_:1}),e(b,null,{default:a(()=>[e(c,{type:"primary",onClick:o(h)},{default:a(()=>[r("\u67E5\u8BE2")]),_:1},8,["onClick"]),e(c,{onClick:o(S)},{default:a(()=>[r("\u91CD\u7F6E")]),_:1},8,["onClick"])]),_:1})]),_:1},8,["model"])]),_:1}),e(V,{class:"!border-none mt-4",shadow:"never"},{default:a(()=>[D("div",null,[v((s(),d(c,{type:"primary",onClick:A},{icon:a(()=>[e(x,{name:"el-icon-Plus"})]),default:a(()=>[r(" \u6DFB\u52A0\u6570\u636E ")]),_:1})),[[C,["setting.dict.dict_data/add"]]]),v((s(),d(c,{disabled:!o(k).length,type:"danger",onClick:t[4]||(t[4]=l=>F(o(k)))},{icon:a(()=>[e(x,{name:"el-icon-Delete"})]),default:a(()=>[r(" \u5220\u9664 ")]),_:1},8,["disabled"])),[[C,["setting.dict.dict_data/delete"]]])]),v((s(),w("div",ke,[D("div",null,[e(O,{data:o(f).lists,size:"large",onSelectionChange:U},{default:a(()=>[e(u,{type:"selection",width:"55"}),e(u,{label:"ID",prop:"id"}),e(u,{label:"\u6570\u636E\u540D\u79F0",prop:"name","min-width":"120"}),e(u,{label:"\u6570\u636E\u503C",prop:"value","min-width":"120"}),e(u,{label:"\u72B6\u6001"},{default:a(({row:l})=>[l.status==1?(s(),d($,{key:0},{default:a(()=>[r("\u6B63\u5E38")]),_:1})):(s(),d($,{key:1,type:"danger"},{default:a(()=>[r("\u505C\u7528")]),_:1}))]),_:1}),e(u,{label:"\u5907\u6CE8",prop:"remark","min-width":"120","show-tooltip-when-overflow":""}),e(u,{label:"\u6392\u5E8F",prop:"sort"}),e(u,{label:"\u64CD\u4F5C",width:"120",fixed:"right"},{default:a(({row:l})=>[v((s(),d(c,{link:"",type:"primary",onClick:z=>I(l)},{default:a(()=>[r(" \u7F16\u8F91 ")]),_:2},1032,["onClick"])),[[C,["setting.dict.dict_data/edit"]]]),v((s(),d(c,{link:"",type:"danger",onClick:z=>F(l.id)},{default:a(()=>[r(" \u5220\u9664 ")]),_:2},1032,["onClick"])),[[C,["setting.dict.dict_data/delete"]]])]),_:1})]),_:1},8,["data"])]),D("div",we,[e(Q,{modelValue:o(f),"onUpdate:modelValue":t[5]||(t[5]=l=>_e(f)?f.value=l:null),onChange:o(y)},null,8,["modelValue","onChange"])])])),[[j,o(f).loading]])]),_:1}),o(g)?(s(),d(Ce,{key:0,ref_key:"editRef",ref:_,onSuccess:o(y),onClose:t[6]||(t[6]=l=>g.value=!1)},null,8,["onSuccess"])):fe("",!0)])}}});export{pt as default}; diff --git a/public/admin/assets/index.2045f5d1.js b/public/admin/assets/index.2045f5d1.js new file mode 100644 index 000000000..23a116b4b --- /dev/null +++ b/public/admin/assets/index.2045f5d1.js @@ -0,0 +1 @@ +import{S as C,I as b,O as g,b as y,w as B,P as D}from"./element-plus.4328d892.js";import{a as k}from"./pay.63666d5f.js";import{_ as x}from"./edit.vue_vue_type_script_setup_true_lang.a7690e7b.js";import{d as A,r as _,s as N,af as R,o as s,c as T,U as t,L as e,a as V,u as d,M as L,K as f,R as $,Q as I,n as P}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.aa9bb752.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./picker.45aea54f.js";import"./index.fa872673.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.c47e74f8.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./index.a9a11abe.js";import"./index.a450f1bb.js";import"./index.vue_vue_type_script_setup_true_lang.dc835bba.js";import"./usePaging.2ad8e1e6.js";import"./vue3-video-play.b911321b.js";import"./vuedraggable.0cb40d3a.js";import"./vue.5de34049.js";import"./sortablejs.ef73fc5c.js";const $t=A({__name:"index",setup(S){const l=_([]),m=N(),p=_(!1),u=async()=>{const{lists:r}=await k();l.value=r},E=async r=>{var o,a;p.value=!0,await P(),(o=m.value)==null||o.open(),(a=m.value)==null||a.getDetail(r)};return u(),(r,o)=>{const a=C,c=b,i=g,w=y,F=B,h=D,v=R("perms");return s(),T("div",null,[t(c,{class:"!border-none",shadow:"never"},{default:e(()=>[t(a,{type:"warning",title:"\u6E29\u99A8\u63D0\u793A\uFF1A\u8BBE\u7F6E\u7CFB\u7EDF\u652F\u6301\u7684\u652F\u4ED8\u65B9\u5F0F",closable:!1,"show-icon":""})]),_:1}),t(c,{shadow:"never",class:"mt-4 !border-none"},{default:e(()=>[V("div",null,[t(h,{data:d(l)},{default:e(()=>[t(i,{prop:"pay_way_name",label:"\u652F\u4ED8\u65B9\u5F0F","min-width":"150"}),t(i,{prop:"name",label:"\u663E\u793A\u540D\u79F0","min-width":"150"}),t(i,{label:"\u56FE\u6807","min-width":"150"},{default:e(({row:n})=>[t(w,{src:n.icon,alt:"\u56FE\u6807",style:{width:"34px",height:"34px"}},null,8,["src"])]),_:1}),t(i,{prop:"sort",label:"\u6392\u5E8F","min-width":"150"}),t(i,{label:"\u64CD\u4F5C","min-width":"80",fixed:"right"},{default:e(({row:n})=>[L((s(),f(F,{link:"",type:"primary",onClick:K=>E(n)},{default:e(()=>[$(" \u914D\u7F6E ")]),_:2},1032,["onClick"])),[[v,["setting.pay.pay_config/setConfig"]]])]),_:1})]),_:1},8,["data"])])]),_:1}),d(p)?(s(),f(x,{key:0,ref_key:"editRef",ref:m,onSuccess:u,onClose:o[0]||(o[0]=n=>p.value=!1)},null,512)):I("",!0)])}}});export{$t as default}; diff --git a/public/admin/assets/index.225ffe33.js b/public/admin/assets/index.225ffe33.js new file mode 100644 index 000000000..437e1ad2c --- /dev/null +++ b/public/admin/assets/index.225ffe33.js @@ -0,0 +1 @@ +import{B as O,C as j,w as z,D as G,I as H,O as J,t as W,P as X,Q as Y}from"./element-plus.4328d892.js";import{_ as Z}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{u as ee}from"./usePaging.2ad8e1e6.js";import{u as te}from"./useDictOptions.a61fcf9f.js";import{b as ae,d as oe}from"./task_scheduling.46c64d43.js";import"./lodash.08438971.js";import{k as D,d as le}from"./index.aa9bb752.js";import{_ as se}from"./edit.vue_vue_type_script_setup_true_name_taskSchedulingEdit_lang.a231bd22.js";import{d as ne}from"./dict.927f1fc7.js";import{_ as ie}from"./money.vue_vue_type_script_setup_true_name_taskSchedulingEdit_lang.e5a2c787.js";import{d as x,r as k,s as w,$ as ue,a4 as me,af as re,o as n,c as pe,U as e,L as o,u as a,R as _,M as f,K as u,a as B,k as de,Q as V,n as ce}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.fa872673.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.6b149d5f.js";import"./company.b7ec1bf9.js";const _e={class:"mt-4"},fe={class:"flex mt-4 justify-end"},ye=x({name:"taskSchedulingLists"}),ke=x({...ye,setup(ve){const S=k([]),R=w(),v=w(),F=k(!1),C=k(!1),m=ue({create_user_id:"",template_id:"",company_id:"",type:"",status:""}),$=k([]),A=s=>{$.value=s.map(({id:l})=>l)},{dictData:L}=te(""),{pager:r,getLists:p,resetParams:P,resetPage:T}=ee({fetchFun:oe,params:m}),U=async s=>{var l,d;C.value=!0,await ce(),(l=v.value)==null||l.open(s.money?"edit":"add"),(d=v.value)==null||d.setFormData(s)},I=s=>{ae({id:s.id,status:s.status}).finally(()=>{p()})};return ne({type_id:10}).then(s=>{S.value=s.lists}),p(),(s,l)=>{const d=O,h=j,c=z,N=G,b=H,i=J,q=W,E=me("router-link"),Q=X,K=Z,y=re("perms"),M=Y;return n(),pe("div",null,[e(b,{class:"!border-none mb-4",shadow:"never"},{default:o(()=>[e(N,{class:"mb-[-16px] formtabel",model:a(m),inline:"","label-width":"100px"},{default:o(()=>[e(h,{label:"\u533A\u57DF\u7ECF\u7406",prop:"create_user_id"},{default:o(()=>[e(d,{class:"w-[280px]",modelValue:a(m).create_user_id,"onUpdate:modelValue":l[0]||(l[0]=t=>a(m).create_user_id=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u533A\u57DF\u7ECF\u7406"},null,8,["modelValue"])]),_:1}),e(h,{label:"\u516C\u53F8",prop:"company_id"},{default:o(()=>[e(d,{class:"w-[280px]",modelValue:a(m).company_id,"onUpdate:modelValue":l[1]||(l[1]=t=>a(m).company_id=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u516C\u53F8"},null,8,["modelValue"])]),_:1}),e(h,null,{default:o(()=>[e(c,{class:"el-btn",type:"primary",onClick:a(T)},{default:o(()=>[_("\u67E5\u8BE2")]),_:1},8,["onClick"]),e(c,{onClick:a(P)},{default:o(()=>[_("\u91CD\u7F6E")]),_:1},8,["onClick"])]),_:1})]),_:1},8,["model"])]),_:1}),f((n(),u(b,{class:"!border-none",shadow:"never"},{default:o(()=>[B("div",_e,[e(Q,{data:a(r).lists,onSelectionChange:A},{default:o(()=>[e(i,{type:"selection",width:"55"}),e(i,{label:"\u533A\u57DF\u7ECF\u7406",prop:"admin_name","show-overflow-tooltip":""}),e(i,{label:"\u516C\u53F8",prop:"company_name","show-overflow-tooltip":""}),e(i,{label:"\u6BCF\u65E5\u6700\u5927\u91D1\u989D",prop:"money","show-overflow-tooltip":""}),e(i,{label:"\u516C\u53F8\u7C7B\u578B",prop:"company_type_name","show-overflow-tooltip":""}),f((n(),u(i,{label:"\u72B6\u6001","min-width":"100"},{default:o(({row:t})=>[e(q,{modelValue:t.status,"onUpdate:modelValue":g=>t.status=g,"active-value":1,"inactive-value":0,onChange:g=>I(t)},null,8,["modelValue","onUpdate:modelValue","onChange"])]),_:1})),[[y,["task_scheduling.task_scheduling/edit"]]]),e(i,{label:"\u64CD\u4F5C",fixed:"right"},{default:o(({row:t})=>[f((n(),u(c,{onClick:g=>U(t),type:"primary",link:""},{default:o(()=>[_(" \u91D1\u989D ")]),_:2},1032,["onClick"])),[[y,["task.task_calendar"]]]),f((n(),u(c,{type:"primary",link:""},{default:o(()=>[e(E,{to:{path:a(D)("task_template.task_template/lists"),query:{id:t.id,company_id:t.company_id,company_type:t.dict_company_type}}},{default:o(()=>[_("\u4EFB\u52A1\u5B89\u6392")]),_:2},1032,["to"])]),_:2},1024)),[[y,["task_template.task_template/lists"]]]),f((n(),u(c,{type:"primary",link:""},{default:o(()=>[e(E,{to:{path:a(D)("task.task_calendar"),query:{id:t.id,company_id:t.company_id}}},{default:o(()=>[_("\u4EFB\u52A1\u65E5\u7A0B")]),_:2},1032,["to"])]),_:2},1024)),[[y,["task.task_calendar"]]])]),_:1})]),_:1},8,["data"])]),B("div",fe,[e(K,{modelValue:a(r),"onUpdate:modelValue":l[2]||(l[2]=t=>de(r)?r.value=t:null),onChange:a(p)},null,8,["modelValue","onChange"])])]),_:1})),[[M,a(r).loading]]),a(F)?(n(),u(se,{key:0,ref_key:"editRef",ref:R,"dict-data":a(L),onSuccess:a(p),onClose:l[3]||(l[3]=t=>F.value=!1)},null,8,["dict-data","onSuccess"])):V("",!0),a(C)?(n(),u(ie,{key:1,ref_key:"moneyRef",ref:v,onSuccess:a(p),onClose:l[4]||(l[4]=t=>C.value=!1)},null,8,["onSuccess"])):V("",!0)])}}});const rt=le(ke,[["__scopeId","data-v-1f10c852"]]);export{rt as default}; diff --git a/public/admin/assets/index.22a34b0a.js b/public/admin/assets/index.22a34b0a.js new file mode 100644 index 000000000..18ad8f858 --- /dev/null +++ b/public/admin/assets/index.22a34b0a.js @@ -0,0 +1 @@ +import{S as $,I as R,w as L,O as N,t as T,P as U,Q as P}from"./element-plus.4328d892.js";import{_ as Q}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{f as j,b as z}from"./index.37f7aea6.js";import{d as I,e as K,f as M}from"./article.cb24b6c9.js";import{u as O}from"./usePaging.2ad8e1e6.js";import{_ as q}from"./edit.vue_vue_type_script_setup_true_lang.51e254d4.js";import{d as F,s as G,r as H,af as J,o as n,c as W,U as t,L as i,M as p,u as r,K as d,a as w,R as h,k as X,Q as Y,n as g}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.5759a1a6.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";const Z={class:"flex justify-end mt-4"},ee=F({name:"articleColumn"}),Ie=F({...ee,setup(te){const _=G(),f=H(!1),{pager:s,getLists:l}=O({fetchFun:M}),b=async()=>{var o;f.value=!0,await g(),(o=_.value)==null||o.open("add")},k=async o=>{var e,u;f.value=!0,await g(),(e=_.value)==null||e.open("edit"),(u=_.value)==null||u.getDetail(o)},y=async o=>{await j.confirm("\u786E\u5B9A\u8981\u5220\u9664\uFF1F"),await I({id:o}),l()},A=async(o,e)=>{try{await K({id:e,is_show:o}),l()}catch{l()}};return l(),(o,e)=>{const u=$,E=R,B=z,v=L,m=N,V=T,D=U,x=Q,C=J("perms"),S=P;return n(),W("div",null,[t(E,{class:"!border-none",shadow:"never"},{default:i(()=>[t(u,{type:"warning",title:"\u6E29\u99A8\u63D0\u793A\uFF1A\u7528\u4E8E\u7BA1\u7406\u7F51\u7AD9\u7684\u5206\u7C7B\uFF0C\u53EA\u53EF\u6DFB\u52A0\u5230\u4E00\u7EA7",closable:!1,"show-icon":""})]),_:1}),p((n(),d(E,{class:"!border-none mt-4",shadow:"never"},{default:i(()=>[w("div",null,[p((n(),d(v,{class:"mb-4",type:"primary",onClick:e[0]||(e[0]=a=>b())},{icon:i(()=>[t(B,{name:"el-icon-Plus"})]),default:i(()=>[h(" \u65B0\u589E ")]),_:1})),[[C,["article.articleCate/add"]]])]),t(D,{size:"large",data:r(s).lists},{default:i(()=>[t(m,{label:"\u680F\u76EE\u540D\u79F0",prop:"name","min-width":"120"}),t(m,{label:"\u6587\u7AE0\u6570",prop:"article_count","min-width":"120"}),t(m,{label:"\u72B6\u6001","min-width":"120"},{default:i(({row:a})=>[p(t(V,{modelValue:a.is_show,"onUpdate:modelValue":c=>a.is_show=c,"active-value":1,"inactive-value":0,onChange:c=>A(c,a.id)},null,8,["modelValue","onUpdate:modelValue","onChange"]),[[C,["article.articleCate/updateStatus"]]])]),_:1}),t(m,{label:"\u6392\u5E8F",prop:"sort","min-width":"120"}),t(m,{label:"\u64CD\u4F5C",width:"120",fixed:"right"},{default:i(({row:a})=>[p((n(),d(v,{type:"primary",link:"",onClick:c=>k(a)},{default:i(()=>[h(" \u7F16\u8F91 ")]),_:2},1032,["onClick"])),[[C,["article.articleCate/edit"]]]),p((n(),d(v,{type:"danger",link:"",onClick:c=>y(a.id)},{default:i(()=>[h(" \u5220\u9664 ")]),_:2},1032,["onClick"])),[[C,["article.articleCate/delete"]]])]),_:1})]),_:1},8,["data"]),w("div",Z,[t(x,{modelValue:r(s),"onUpdate:modelValue":e[1]||(e[1]=a=>X(s)?s.value=a:null),onChange:r(l)},null,8,["modelValue","onChange"])])]),_:1})),[[S,r(s).loading]]),r(f)?(n(),d(q,{key:0,ref_key:"editRef",ref:_,onSuccess:r(l),onClose:e[2]||(e[2]=a=>f.value=!1)},null,8,["onSuccess"])):Y("",!0)])}}});export{Ie as default}; diff --git a/public/admin/assets/index.22c62762.js b/public/admin/assets/index.22c62762.js new file mode 100644 index 000000000..78d5929f4 --- /dev/null +++ b/public/admin/assets/index.22c62762.js @@ -0,0 +1 @@ +import{B as ne,C as se,M as re,N as ie,w as pe,D as ce,I as de,O as _e,P as me,L as fe,Q as Ee}from"./element-plus.4328d892.js";import{_ as ye}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{u as Ce}from"./usePaging.2ad8e1e6.js";import{u as Be}from"./useDictOptions.a61fcf9f.js";import{e as ve,f as he,g as Fe,h as be,i as ke}from"./shop_contract.f4761eae.js";import{d as N,$ as A,s as R,r as v,a4 as De,af as ge,o as l,c as _,U as t,L as o,u as a,T as U,a7 as we,K as r,R as i,M as m,a as g,S as Ve,Q as $,k as L,bf as Ae,be as xe}from"./@vue.51d7f2d8.js";import"./lodash.08438971.js";import{d as Se}from"./index.aa9bb752.js";import{_ as Pe}from"./edit.vue_vue_type_script_setup_true_name_shopContractEdit_lang.d9f639bc.js";import{P as Ie}from"./index.fa872673.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";const Re=F=>(Ae("data-v-b55f7b58"),F=F(),xe(),F),Ue={class:"mt-4"},$e={key:0,style:{color:"#67c23a"}},Le={key:1,style:{color:"#fe0000"}},Ne={class:"flex mt-4 justify-end"},qe=Re(()=>g("h1",null,"\u91CD\u8981\u63D0\u9192",-1)),Me={key:0,class:"content"},Te={key:1,class:"content"},ze={class:"btn_menu"},Oe=N({name:"shopContractLists"}),je=N({...Oe,setup(F){const q=A([{id:"1",name:"\u5DF2\u7B7E\u7EA6"},{id:"0",name:"\u672A\u7B7E\u7EA6"}]),M=R(),x=v(!1),f=v({id:"",notes:""}),T=A({notes:[{required:!0,message:"\u8BF7\u8F93\u5165\u5907\u6CE8",trigger:["blur"]}]}),w=R(),z=c=>{Object.keys(f.value).forEach(n=>{f.value[n]=c[n]}),w.value.open()},O=async()=>{await ve({...f.value}),E(),w.value.close()},p=A({contract_no:"",party_a:"",party_b:"",check_status:"",status:""}),j=v([]),Q=c=>{j.value=c.map(({id:u})=>u)},{dictData:K}=Be(""),{pager:h,getLists:E,resetParams:Z,resetPage:G}=Ce({fetchFun:ke,params:p}),H=c=>{he({id:c.id}).then(u=>{J(u.url,"")})},J=(c,u)=>{let n=document.createElement("a");n.href=c,n.download=u,document.body.appendChild(n),n.click(),document.body.removeChild(n)},y=v(!1),b=v(!1),k=v(""),W=c=>{y.value=!0,b.value=!0,k.value=c.party_b},D=()=>{y.value=!1,b.value=!1},X=async()=>{await Fe({id:k.value}),E(),D()},Y=async()=>{await be({id:k.value}),E(),D()};return E(),(c,u)=>{const n=ne,C=se,ee=re,te=ie,s=pe,S=ce,P=de,d=_e,I=De("router-link"),oe=me,ae=ye,ue=fe,B=ge("perms"),le=Ee;return l(),_("div",null,[t(P,{class:"!border-none mb-4",shadow:"never"},{default:o(()=>[t(S,{class:"mb-[-16px]",model:a(p),inline:""},{default:o(()=>[t(C,{label:"\u5408\u540C\u7F16\u53F7",prop:"contract_no"},{default:o(()=>[t(n,{class:"w-[280px]",modelValue:a(p).contract_no,"onUpdate:modelValue":u[0]||(u[0]=e=>a(p).contract_no=e),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u5408\u540C\u7F16\u53F7"},null,8,["modelValue"])]),_:1}),t(C,{label:"\u7532\u65B9",prop:"party_a"},{default:o(()=>[t(n,{class:"w-[280px]",modelValue:a(p).party_a,"onUpdate:modelValue":u[1]||(u[1]=e=>a(p).party_a=e),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u7532\u65B9"},null,8,["modelValue"])]),_:1}),t(C,{label:"\u4E59\u65B9",prop:"party_b"},{default:o(()=>[t(n,{class:"w-[280px]",modelValue:a(p).party_b,"onUpdate:modelValue":u[2]||(u[2]=e=>a(p).party_b=e),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u4E59\u65B9"},null,8,["modelValue"])]),_:1}),t(C,{label:"\u7B7E\u7EA6\u72B6\u6001",prop:"status"},{default:o(()=>[t(te,{modelValue:a(p).status,"onUpdate:modelValue":u[3]||(u[3]=e=>a(p).status=e),clearable:"",placeholder:"\u8BF7\u9009\u62E9\u72B6\u6001"},{default:o(()=>[(l(!0),_(U,null,we(a(q),e=>(l(),r(ee,{key:e.label,value:e.id,label:e.name},null,8,["value","label"]))),128))]),_:1},8,["modelValue"])]),_:1}),t(C,null,{default:o(()=>[t(s,{type:"primary",onClick:a(G)},{default:o(()=>[i("\u67E5\u8BE2")]),_:1},8,["onClick"]),t(s,{onClick:a(Z)},{default:o(()=>[i("\u91CD\u7F6E")]),_:1},8,["onClick"])]),_:1})]),_:1},8,["model"])]),_:1}),m((l(),r(P,{class:"!border-none",shadow:"never"},{default:o(()=>[g("div",Ue,[t(oe,{data:a(h).lists,onSelectionChange:Q},{default:o(()=>[t(d,{label:"id",width:"100",prop:"id","show-overflow-tooltip":""}),t(d,{label:"\u5408\u540C\u7F16\u53F7",prop:"contract_no","show-overflow-tooltip":""}),t(d,{label:"\u7532\u65B9",prop:"party_a_name","show-overflow-tooltip":""}),t(d,{label:"\u4E59\u65B9",prop:"party_b_name","show-overflow-tooltip":""}),t(d,{label:"\u7B7E\u7EA6\u72B6\u6001",prop:"status","show-overflow-tooltip":""},{default:o(({row:e})=>[e.status?(l(),_("span",$e,"\u5DF2\u7B7E\u7EA6")):(l(),_("span",Le,"\u672A\u7B7E\u7EA6"))]),_:1}),t(d,{label:"\u5907\u6CE8",prop:"notes","show-overflow-tooltip":""}),t(d,{label:"\u64CD\u4F5C",width:"280",fixed:"right"},{default:o(({row:e})=>[m((l(),r(s,{type:"primary",link:""},{default:o(()=>[t(I,{to:{path:"/contract/shop_contract_detail",query:{id:e.id}}},{default:o(()=>[i(Ve(e.status?"\u8BE6\u60C5":"\u5BA1\u6838"),1)]),_:2},1032,["to"])]),_:2},1024)),[[B,["shop_contract/details"]]]),m((l(),r(s,{type:"primary",link:"",onClick:V=>z(e)},{default:o(()=>[i(" \u8BBE\u7F6E\u5907\u6CE8 ")]),_:2},1032,["onClick"])),[[B,["shop_contract/details"]]]),e.status==0?(l(),_(U,{key:0},[e.check_status==1?m((l(),r(s,{key:0,type:"warning",link:""},{default:o(()=>[t(I,{to:{path:"/contract/shop_contract_detail",query:{id:e.id}}},{default:o(()=>[i("\u5F85\u5BA1\u6838")]),_:2},1032,["to"])]),_:2},1024)),[[B,["shop_contract/details"]]]):e.check_status==2?m((l(),r(s,{key:1,type:"primary",link:"",onClick:V=>W(e)},{default:o(()=>[i("\u53D1\u9001\u5408\u540C")]),_:2},1032,["onClick"])),[[B,["shop_contract/contract_send"]]]):e.check_status==3?m((l(),r(s,{key:2,type:"primary",link:"",onClick:V=>(y.value=!0,k.value=e.party_b)},{default:o(()=>[i("\u53D1\u9001\u77ED\u4FE1")]),_:2},1032,["onClick"])),[[B,["shop_contract/contract_send_again"]]]):$("",!0)],64)):m((l(),r(s,{key:1,type:"primary",link:"",onClick:V=>H(e)},{default:o(()=>[i(" \u4E0B\u8F7D\u8BC1\u636E\u5305 ")]),_:2},1032,["onClick"])),[[B,["shop_contract/evidence"]]])]),_:1})]),_:1},8,["data"])]),g("div",Ne,[t(ae,{modelValue:a(h),"onUpdate:modelValue":u[4]||(u[4]=e=>L(h)?h.value=e:null),onChange:a(E)},null,8,["modelValue","onChange"])])]),_:1})),[[le,a(h).loading]]),a(x)?(l(),r(Pe,{key:0,ref_key:"editRef",ref:M,"dict-data":a(K),onSuccess:a(E),onClose:u[5]||(u[5]=e=>x.value=!1)},null,8,["dict-data","onSuccess"])):$("",!0),t(ue,{modelValue:a(y),"onUpdate:modelValue":u[6]||(u[6]=e=>L(y)?y.value=e:null),onClose:D},{default:o(()=>[qe,a(b)?(l(),_("div",Me," \u8BF7\u786E\u8BA4\u4FE1\u606F\u662F\u5426\u6709\u8BEF,\u53D1\u9001\u5408\u540C,\u8BF7\u786E\u8BA4\u4FE1\u606F\u662F\u5426\u6709\u8BEF,\u53D1\u9001\u7535\u5B50\u5408\u540C\u540E\u77ED\u65F6\u95F4\u5185\u5C06\u4E0D\u53EF\u518D\u6B21\u53D1\u9001. ")):(l(),_("div",Te," \u786E\u8BA4\u7B7E\u7EA6\u77ED\u4FE1\u5C06\u572860\u79D2\u540E\u53D1\u9001,\u8BF7\u6CE8\u610F\u67E5\u6536,\u5E76\u70B9\u51FB\u77ED\u4FE1\u94FE\u63A5\u8FDB\u884C\u7EBF\u4E0A\u5408\u540C\u7B7E\u7EA6 ")),g("p",ze,[a(b)?(l(),r(s,{key:0,type:"primary",size:"large",onClick:X},{default:o(()=>[i("\u786E\u8BA4")]),_:1})):(l(),r(s,{key:1,type:"primary",size:"large",onClick:Y},{default:o(()=>[i("\u786E\u8BA4")]),_:1})),t(s,{type:"info",size:"large",onClick:D},{default:o(()=>[i("\u8FD4\u56DE")]),_:1})])]),_:1},8,["modelValue"]),t(Ie,{ref_key:"notesRef",ref:w,title:"\u8BBE\u7F6E\u5907\u6CE8",async:!0,width:"550px",onConfirm:O},{default:o(()=>[t(S,{model:a(f),rules:a(T)},{default:o(()=>[t(C,{label:"\u5907\u6CE8",prop:"notes"},{default:o(()=>[t(n,{modelValue:a(f).notes,"onUpdate:modelValue":u[7]||(u[7]=e=>a(f).notes=e),type:"textarea"},null,8,["modelValue"])]),_:1})]),_:1},8,["model","rules"])]),_:1},512)])}}});const Pt=Se(je,[["__scopeId","data-v-b55f7b58"]]);export{Pt as default}; diff --git a/public/admin/assets/index.256fb2f8.js b/public/admin/assets/index.256fb2f8.js new file mode 100644 index 000000000..46e56ebb3 --- /dev/null +++ b/public/admin/assets/index.256fb2f8.js @@ -0,0 +1 @@ +import{_ as H}from"./index.13ef78d6.js";import{a6 as I,w as L,b as R,O as G,G as K,t as M,P as O,I as Q}from"./element-plus.4328d892.js";import{b as $,c as j}from"./pay.63666d5f.js";import{l as B}from"./lodash.08438971.js";import{d as q,r as x,af as z,o as t,c as u,a as s,M as J,K as i,L as e,R as a,T as C,a7 as X,Q as p,U as m,u as d,S as Y}from"./@vue.51d7f2d8.js";import"./index.aa9bb752.js";import"./@vueuse.ec90c285.js";import"./axios.105476b3.js";import"./@amap.8a62addd.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./@element-plus.a074d1f6.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";const Z={key:0,class:"text-lg mb-[24px]"},tt=s("span",{class:"form-tips ml-[10px]"},"\u5728\u5FAE\u4FE1\u5C0F\u7A0B\u5E8F\u4E2D\u4ED8\u6B3E\u7684\u573A\u666F",-1),et={key:1,class:"text-lg mb-[24px]"},ut=s("span",{class:"form-tips ml-[10px]"}," \u5728\u5FAE\u4FE1\u516C\u4F17\u53F7H5\u9875\u9762\u4E2D\u4ED8\u6B3E\u7684\u573A\u666F\uFF0C\u516C\u4F17\u53F7\u7C7B\u578B\u4E00\u822C\u4E3A\u670D\u52A1\u53F7 ",-1),at={key:2,class:"text-lg mb-[24px]"},ot=s("span",{class:"form-tips ml-[10px]"},"\u5728\u6D4F\u89C8\u5668H5\u9875\u9762\u4E2D\u4ED8\u6B3E\u7684\u573A\u666F",-1),st={key:3,class:"text-lg mb-[24px]"},lt=s("span",{class:"form-tips ml-[10px]"},"\u5728\u6D4F\u89C8\u5668PC\u9875\u9762\u4E2D\u4ED8\u6B3E\u7684\u573A\u666F",-1),nt={key:4,class:"text-lg mb-[24px]"},it=s("span",{class:"form-tips ml-[10px]"},"\u5728APP\u4ED8\u6B3E\u7684\u573A\u666F",-1),pt={key:1},mt={key:1},qt=q({__name:"index",setup(rt){const l=x({}),r=x(!1);let y={};const f=async()=>{l.value=await $(),y=B.exports.cloneDeep(l.value)},g=()=>{r.value=!0},b=(h,E)=>{l.value[E].forEach(_=>{_.is_default=0}),l.value[E][h].is_default=1},k=()=>{l.value=B.exports.cloneDeep(y),r.value=!1},A=async()=>{await j(l.value),r.value=!1,f()};return f(),(h,E)=>{const _=L,P=R,c=G,w=K,V=I,W=M,S=O,T=Q,U=H,N=z("perms");return t(),u("div",null,[s("div",null,[J((t(),i(_,{type:"primary",onClick:g},{default:e(()=>[a(" \u8BBE\u7F6E\u652F\u4ED8\u65B9\u5F0F ")]),_:1})),[[N,["setting.pay.pay_way/setPayWay"]]])]),(t(!0),u(C,null,X(d(l),(D,n)=>(t(),i(T,{shadow:"never",class:"mt-4 !border-none",key:n},{default:e(()=>[s("div",null,[n==1?(t(),u("div",Z,[a(" \u5FAE\u4FE1\u5C0F\u7A0B\u5E8F "),tt])):p("",!0),n==2?(t(),u("div",et,[a(" \u5FAE\u4FE1\u516C\u4F17\u53F7 "),ut])):p("",!0),n==3?(t(),u("div",at,[a(" H5\u652F\u4ED8 "),ot])):p("",!0),n==4?(t(),u("div",st,[a(" PC\u652F\u4ED8 "),lt])):p("",!0),n==5?(t(),u("div",nt,[a(" APP\u652F\u4ED8 "),it])):p("",!0),D.length?(t(),i(S,{key:5,data:D,style:{width:"100%"}},{default:e(()=>[m(c,{label:"\u56FE\u6807","min-width":"150"},{default:e(({row:o})=>[m(P,{src:o.icon,alt:"\u56FE\u6807",style:{width:"34px",height:"34px"}},null,8,["src"])]),_:1}),m(c,{prop:"pay_way_name",label:"\u652F\u4ED8\u65B9\u5F0F","min-width":"150"}),m(c,{label:"\u9ED8\u8BA4\u652F\u4ED8","min-width":"150"},{default:e(({row:o,$index:F})=>[s("div",null,[d(r)?(t(),i(w,{key:0,modelValue:o.is_default,"onUpdate:modelValue":v=>o.is_default=v,label:1,onChange:v=>b(F,n)},{default:e(()=>[a(" \u8BBE\u4E3A\u9ED8\u8BA4 ")]),_:2},1032,["modelValue","onUpdate:modelValue","onChange"])):(t(),u(C,{key:1},[o.is_default==1?(t(),i(V,{key:0},{default:e(()=>[a("\u9ED8\u8BA4")]),_:1})):(t(),u("span",pt,"-"))],64))])]),_:2},1024),m(c,{label:"\u5F00\u542F\u72B6\u6001","min-width":"150"},{default:e(({row:o})=>[d(r)?(t(),i(W,{key:0,modelValue:o.status,"onUpdate:modelValue":F=>o.status=F,"active-value":1,"inactive-value":0},null,8,["modelValue","onUpdate:modelValue"])):(t(),u("span",mt,Y(o.status==1?"\u5F00\u542F":"\u5173\u95ED"),1))]),_:1})]),_:2},1032,["data"])):p("",!0)])]),_:2},1024))),128)),d(r)?(t(),i(U,{key:0},{default:e(()=>[m(_,{onClick:k},{default:e(()=>[a("\u53D6\u6D88")]),_:1}),m(_,{type:"primary",onClick:A},{default:e(()=>[a("\u4FDD\u5B58")]),_:1})]),_:1})):p("",!0)])}}});export{qt as default}; diff --git a/public/admin/assets/index.27e53bbb.js b/public/admin/assets/index.27e53bbb.js new file mode 100644 index 000000000..1c6886a0b --- /dev/null +++ b/public/admin/assets/index.27e53bbb.js @@ -0,0 +1 @@ +import{S as C,I as b,O as g,b as y,w as B,P as D}from"./element-plus.4328d892.js";import{a as k}from"./pay.b01bd8e2.js";import{_ as x}from"./edit.vue_vue_type_script_setup_true_lang.f72e570b.js";import{d as A,r as _,s as N,af as R,o as s,c as T,U as t,L as e,a as V,u as d,M as L,K as f,R as $,Q as I,n as P}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.37f7aea6.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./picker.3821e495.js";import"./index.5759a1a6.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.af446662.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./index.fe1d30dd.js";import"./index.5f944d34.js";import"./index.vue_vue_type_script_setup_true_lang.dc835bba.js";import"./usePaging.2ad8e1e6.js";import"./vue3-video-play.b911321b.js";import"./vuedraggable.0cb40d3a.js";import"./vue.5de34049.js";import"./sortablejs.ef73fc5c.js";const $t=A({__name:"index",setup(S){const l=_([]),m=N(),p=_(!1),u=async()=>{const{lists:r}=await k();l.value=r},E=async r=>{var o,a;p.value=!0,await P(),(o=m.value)==null||o.open(),(a=m.value)==null||a.getDetail(r)};return u(),(r,o)=>{const a=C,c=b,i=g,w=y,F=B,h=D,v=R("perms");return s(),T("div",null,[t(c,{class:"!border-none",shadow:"never"},{default:e(()=>[t(a,{type:"warning",title:"\u6E29\u99A8\u63D0\u793A\uFF1A\u8BBE\u7F6E\u7CFB\u7EDF\u652F\u6301\u7684\u652F\u4ED8\u65B9\u5F0F",closable:!1,"show-icon":""})]),_:1}),t(c,{shadow:"never",class:"mt-4 !border-none"},{default:e(()=>[V("div",null,[t(h,{data:d(l)},{default:e(()=>[t(i,{prop:"pay_way_name",label:"\u652F\u4ED8\u65B9\u5F0F","min-width":"150"}),t(i,{prop:"name",label:"\u663E\u793A\u540D\u79F0","min-width":"150"}),t(i,{label:"\u56FE\u6807","min-width":"150"},{default:e(({row:n})=>[t(w,{src:n.icon,alt:"\u56FE\u6807",style:{width:"34px",height:"34px"}},null,8,["src"])]),_:1}),t(i,{prop:"sort",label:"\u6392\u5E8F","min-width":"150"}),t(i,{label:"\u64CD\u4F5C","min-width":"80",fixed:"right"},{default:e(({row:n})=>[L((s(),f(F,{link:"",type:"primary",onClick:K=>E(n)},{default:e(()=>[$(" \u914D\u7F6E ")]),_:2},1032,["onClick"])),[[v,["setting.pay.pay_config/setConfig"]]])]),_:1})]),_:1},8,["data"])])]),_:1}),d(p)?(s(),f(x,{key:0,ref_key:"editRef",ref:m,onSuccess:u,onClose:o[0]||(o[0]=n=>p.value=!1)},null,512)):I("",!0)])}}});export{$t as default}; diff --git a/public/admin/assets/index.28849582.js b/public/admin/assets/index.28849582.js new file mode 100644 index 000000000..5b4d91d0a --- /dev/null +++ b/public/admin/assets/index.28849582.js @@ -0,0 +1 @@ +import{B as L,C as P,w as R,D as S,I as U,O as I,P as N,Q as $}from"./element-plus.4328d892.js";import{_ as M}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{u as T}from"./usePaging.2ad8e1e6.js";import{u as Q}from"./useDictOptions.a45fc8ac.js";import{_ as j,a as q}from"./edit.vue_vue_type_script_setup_true_name_shopMerchantEdit_lang.ddb23228.js";import"./lodash.08438971.js";import"./index.37f7aea6.js";import{d as w,s as z,r as B,$ as K,o as i,c as O,U as o,L as a,u as e,R as E,M as G,K as h,a as C,k as H,Q as J}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.5759a1a6.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const W={class:"mt-4"},X={class:"flex mt-4 justify-end"},Y=w({name:"shopMerchantLists"}),Qo=w({...Y,setup(Z){const b=z(),d=B(!1),l=K({company_name:"",master_name:"",master_phone:""}),F=B([]),v=c=>{F.value=c.map(({id:t})=>t)},{dictData:D}=Q(""),{pager:r,getLists:m,resetParams:V,resetPage:g}=T({fetchFun:q,params:l});return m(),(c,t)=>{const p=L,s=P,_=R,y=S,f=U,u=I,A=N,k=M,x=$;return i(),O("div",null,[o(f,{class:"!border-none mb-4",shadow:"never"},{default:a(()=>[o(y,{class:"mb-[-16px]",model:e(l),inline:""},{default:a(()=>[o(s,{label:"\u5546\u6237\u540D\u79F0",prop:"company_name"},{default:a(()=>[o(p,{class:"w-[280px]",modelValue:e(l).company_name,"onUpdate:modelValue":t[0]||(t[0]=n=>e(l).company_name=n),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u5546\u6237\u540D\u79F0"},null,8,["modelValue"])]),_:1}),o(s,{label:"\u4E3B\u8054\u7CFB\u4EBA\u59D3\u540D",prop:"master_name"},{default:a(()=>[o(p,{class:"w-[280px]",modelValue:e(l).master_name,"onUpdate:modelValue":t[1]||(t[1]=n=>e(l).master_name=n),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u4E3B\u8054\u7CFB\u4EBA\u59D3\u540D"},null,8,["modelValue"])]),_:1}),o(s,{label:"\u4E3B\u8054\u7CFB\u4EBA\u624B\u673A",prop:"master_phone"},{default:a(()=>[o(p,{class:"w-[280px]",modelValue:e(l).master_phone,"onUpdate:modelValue":t[2]||(t[2]=n=>e(l).master_phone=n),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u4E3B\u8054\u7CFB\u4EBA\u624B\u673A"},null,8,["modelValue"])]),_:1}),o(s,null,{default:a(()=>[o(_,{type:"primary",onClick:e(g)},{default:a(()=>[E("\u67E5\u8BE2")]),_:1},8,["onClick"]),o(_,{onClick:e(V)},{default:a(()=>[E("\u91CD\u7F6E")]),_:1},8,["onClick"])]),_:1})]),_:1},8,["model"])]),_:1}),G((i(),h(f,{class:"!border-none",shadow:"never"},{default:a(()=>[C("div",W,[o(A,{data:e(r).lists,onSelectionChange:v},{default:a(()=>[o(u,{label:"ID",width:"100",prop:"id","show-overflow-tooltip":""}),o(u,{label:"\u5546\u6237\u540D\u79F0",prop:"company_name","show-overflow-tooltip":""}),o(u,{label:"\u793E\u4F1A\u4EE3\u7801",prop:"organization_code","show-overflow-tooltip":""}),o(u,{label:"\u4E3B\u8054\u7CFB\u4EBA\u59D3\u540D",prop:"master_name","show-overflow-tooltip":""}),o(u,{label:"\u4E3B\u8054\u7CFB\u4EBA\u624B\u673A",prop:"master_phone","show-overflow-tooltip":""}),o(u,{label:"\u8BA4\u8BC1\u53CD\u9988",prop:"notes","show-overflow-tooltip":""})]),_:1},8,["data"])]),C("div",X,[o(k,{modelValue:e(r),"onUpdate:modelValue":t[3]||(t[3]=n=>H(r)?r.value=n:null),onChange:e(m)},null,8,["modelValue","onChange"])])]),_:1})),[[x,e(r).loading]]),e(d)?(i(),h(j,{key:0,ref_key:"editRef",ref:b,"dict-data":e(D),onSuccess:e(m),onClose:t[4]||(t[4]=n=>d.value=!1)},null,8,["dict-data","onSuccess"])):J("",!0)])}}});export{Qo as default}; diff --git a/public/admin/assets/index.2ac4190c.js b/public/admin/assets/index.2ac4190c.js new file mode 100644 index 000000000..057ae8e4d --- /dev/null +++ b/public/admin/assets/index.2ac4190c.js @@ -0,0 +1 @@ +import{_ as T}from"./index.13ef78d6.js";import{r as C,b as N,d as $}from"./index.aa9bb752.js";import{G as z,H as G,C as L,D as q,I as H,w as K,B as M,O,P}from"./element-plus.4328d892.js";import{d as x,$ as j,e as J,af as Q,o as i,c as h,U as t,L as e,u as c,a,R as d,M as E,K as F,T as W,a7 as X,S as Y,bf as Z,be as tt}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./lodash.08438971.js";import"./@amap.8a62addd.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./@element-plus.a074d1f6.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";function et(){return C.get({url:"/setting.hot_search/getConfig"})}function ot(r){return C.post({url:"/setting.hot_search/setConfig",params:r})}const m=r=>(Z("data-v-bd261930"),r=r(),tt(),r),at={class:"hot-search"},st=m(()=>a("div",{class:"form-tips"},"\u9ED8\u8BA4\u5F00\u542F\uFF0C\u5173\u95ED\u5219\u524D\u7AEF\u4E0D\u663E\u793A\u8BE5\u529F\u80FD",-1)),nt={class:"lg:flex"},lt={class:"flex-1 min-w-0"},rt={class:"hot-search-phone mt-4 lg:mt-0 lg:ml-4 flex-none"},ut=m(()=>a("div",{class:"mb-4 text-center"},"- \u70ED\u641C\u9884\u89C8\u56FE -",-1)),it={class:"hot-search-phone-content"},ct={class:"search-com"},dt={class:"search-con flex items-center px-[15px]"},mt=m(()=>a("span",{class:"ml-[5px]"},"\u8BF7\u8F93\u5165\u5173\u952E\u8BCD\u641C\u7D22",-1)),_t=m(()=>a("div",{class:"hot-search-title"},"\u70ED\u95E8\u641C\u7D22",-1)),pt={class:"hot-search-text"},ht=x({name:"search"}),ft=x({...ht,setup(r){const n=j({status:1,data:[]}),B=J(()=>n.data.filter(o=>o.name).sort((o,l)=>l.sort-o.sort)),f=async()=>{try{const o=await et();for(const l in n)n[l]=o[l]}catch(o){console.log("\u83B7\u53D6=>",o)}},y=()=>{n.data.push({name:"",sort:0})},V=o=>{n.data.splice(o,1)},w=async()=>{try{await ot(n),f()}catch(o){console.log("\u4FDD\u5B58=>",o)}};return f(),(o,l)=>{const b=z,k=G,S=L,I=q,g=H,_=K,D=M,p=O,U=P,A=N,R=T,v=Q("perms");return i(),h("div",at,[t(g,{class:"!border-none",shadow:"never"},{default:e(()=>[t(I,{ref:"formRef",model:c(n),"label-width":"100px"},{default:e(()=>[t(S,{label:"\u529F\u80FD\u72B6\u6001",style:{"margin-bottom":"0"}},{default:e(()=>[a("div",null,[t(k,{modelValue:c(n).status,"onUpdate:modelValue":l[0]||(l[0]=s=>c(n).status=s)},{default:e(()=>[t(b,{label:1},{default:e(()=>[d("\u5F00\u542F")]),_:1}),t(b,{label:0},{default:e(()=>[d("\u5173\u95ED")]),_:1})]),_:1},8,["modelValue"]),st])]),_:1})]),_:1},8,["model"])]),_:1}),t(g,{class:"!border-none mt-4",shadow:"never"},{default:e(()=>[a("div",nt,[a("div",lt,[t(_,{type:"primary",class:"mb-4",onClick:y},{default:e(()=>[d("\u6DFB\u52A0")]),_:1}),t(U,{size:"large",data:c(n).data},{default:e(()=>[t(p,{label:"\u5173\u952E\u8BCD",prop:"describe","min-width":"160"},{default:e(({row:s})=>[t(D,{modelValue:s.name,"onUpdate:modelValue":u=>s.name=u,clearable:"",placeholder:"\u8BF7\u8F93\u5165\u5173\u952E\u5B57","show-word-limit":"",maxlength:"30"},null,8,["modelValue","onUpdate:modelValue"])]),_:1}),t(p,{label:"\u6392\u5E8F",prop:"describe","min-width":"160"},{default:e(({row:s})=>[t(D,{modelValue:s.sort,"onUpdate:modelValue":u=>s.sort=u,type:"number"},null,8,["modelValue","onUpdate:modelValue"])]),_:1}),t(p,{label:"\u64CD\u4F5C","min-width":"80",fixed:"right"},{default:e(({$index:s})=>[E((i(),F(_,{type:"danger",link:"",onClick:u=>V(s)},{default:e(()=>[d(" \u5220\u9664 ")]),_:2},1032,["onClick"])),[[v,["setting:storage:edit"]]])]),_:1})]),_:1},8,["data"])]),a("div",rt,[ut,a("div",it,[a("div",ct,[a("div",dt,[t(A,{name:"el-icon-Search",size:17}),mt])]),_t,a("div",pt,[(i(!0),h(W,null,X(c(B),(s,u)=>(i(),h("span",{key:u},Y(s.name),1))),128))])])])])]),_:1}),E((i(),F(R,null,{default:e(()=>[t(_,{type:"primary",onClick:w},{default:e(()=>[d("\u4FDD\u5B58")]),_:1})]),_:1})),[[v,["setting.hot_search/setConfig"]]])])}}});const Yt=$(ft,[["__scopeId","data-v-bd261930"]]);export{Yt as default}; diff --git a/public/admin/assets/index.2bfd557a.js b/public/admin/assets/index.2bfd557a.js new file mode 100644 index 000000000..b4a0c0d66 --- /dev/null +++ b/public/admin/assets/index.2bfd557a.js @@ -0,0 +1 @@ +import{_ as V}from"./index.fd04a214.js";import{I as b,w as C}from"./element-plus.4328d892.js";import I from"./menu.6829f7a9.js";import N from"./preview.02c147d2.js";import{_ as P}from"./attr-setting.vue_vue_type_script_setup_true_lang.4680a37f.js";import{w as S}from"./index.500fd836.js";import{s as h,a as k}from"./decoration.6f039a71.js";import{n as F,d as M}from"./index.37f7aea6.js";import{d as x,$ as R,r as f,e as g,w as U,af as A,o as v,c as O,U as i,L as l,a as J,u as m,k as D,M as W,K as $,R as H}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./attr.vue_vue_type_script_setup_true_lang.f9c983cd.js";import"./index.fe1d30dd.js";import"./picker.d415e27a.js";import"./index.5759a1a6.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./picker.3821e495.js";import"./index.af446662.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./index.5f944d34.js";import"./index.vue_vue_type_script_setup_true_lang.dc835bba.js";import"./usePaging.2ad8e1e6.js";import"./vue3-video-play.b911321b.js";import"./vuedraggable.0cb40d3a.js";import"./vue.5de34049.js";import"./sortablejs.ef73fc5c.js";import"./content.vue_vue_type_script_setup_true_lang.b3e4f379.js";import"./decoration-img.d7e5dbec.js";import"./attr.vue_vue_type_script_setup_true_lang.a5f46be8.js";import"./content.416ba4d2.js";import"./attr.vue_vue_type_script_setup_true_lang.4cdc919e.js";import"./add-nav.vue_vue_type_script_setup_true_lang.35798c7b.js";import"./content.b3fbaeeb.js";import"./attr.vue_vue_type_script_setup_true_lang.d9838080.js";import"./content.vue_vue_type_script_setup_true_lang.888a9caf.js";import"./attr.vue_vue_type_script_setup_true_lang.d01577b5.js";import"./content.87312235.js";import"./attr.vue_vue_type_script_setup_true_lang.0fc534ba.js";import"./content.39f10dd3.js";import"./attr.vue_vue_type_script_setup_true_lang.871cb086.js";import"./content.vue_vue_type_script_setup_true_lang.e6931808.js";import"./attr.vue_vue_type_script_setup_true_lang.00e826d0.js";import"./content.d63a41a9.js";const K={class:"decoration-pages min-w-[1100px]"},L={class:"flex h-full items-start"},j=x({name:"decorationPages"}),q=x({...j,setup(z){let u;(t=>{t.HOME="1",t.USER="2",t.SERVICE="3"})(u||(u={}));const s=t=>t.map(e=>{var p;return{id:F(),...((p=S[e])==null?void 0:p.options())||{}}}),a=R({[1]:{id:1,type:1,name:"\u9996\u9875\u88C5\u4FEE",pageData:s(["search","banner","nav","news"])},[2]:{id:2,type:2,name:"\u4E2A\u4EBA\u4E2D\u5FC3",pageData:s(["user-info","my-service","user-banner"])},[3]:{id:3,type:3,name:"\u5BA2\u670D\u8BBE\u7F6E",pageData:s(["customer-service"])}}),o=f("1"),r=f(-1),c=g(()=>{var t,e;return(e=(t=a[o.value])==null?void 0:t.pageData)!=null?e:[]}),w=g(()=>{var t,e;return(e=(t=a[o.value])==null?void 0:t.pageData[r.value])!=null?e:""}),d=async()=>{const t=await k({id:o.value});a[String(t.id)].pageData=JSON.parse(t.data)},E=async()=>{await h({...a[o.value],data:JSON.stringify(a[o.value].pageData)}),d()};return U(o,()=>{r.value=c.value.findIndex(t=>!t.disabled),d()},{immediate:!0}),(t,e)=>{const _=b,p=C,y=V,B=A("perms");return v(),O("div",K,[i(_,{shadow:"never",class:"!border-none flex-1 flex","body-style":{flex:1}},{default:l(()=>[J("div",L,[i(I,{modelValue:m(o),"onUpdate:modelValue":e[0]||(e[0]=n=>D(o)?o.value=n:null),menus:m(a)},null,8,["modelValue","menus"]),i(N,{modelValue:m(r),"onUpdate:modelValue":e[1]||(e[1]=n=>D(r)?r.value=n:null),pageData:m(c)},null,8,["modelValue","pageData"]),i(P,{class:"flex-1",widget:m(w)},null,8,["widget"])])]),_:1}),W((v(),$(y,{class:"mt-4",fixed:!1},{default:l(()=>[i(p,{type:"primary",onClick:E},{default:l(()=>[H("\u4FDD\u5B58")]),_:1})]),_:1})),[[B,["decorate:pages:save"]]])])}}});const ce=M(q,[["__scopeId","data-v-c84d2462"]]);export{ce as default}; diff --git a/public/admin/assets/index.35e8da43.js b/public/admin/assets/index.35e8da43.js new file mode 100644 index 000000000..fdbd647bc --- /dev/null +++ b/public/admin/assets/index.35e8da43.js @@ -0,0 +1 @@ +import{S as b,a6 as v,I as A,O as k,w as y,P as D,Q as x}from"./element-plus.4328d892.js";import{_ as L,s as R}from"./edit.vue_vue_type_script_setup_true_lang.f38e2d62.js";import{d as f,s as T,$ as S,af as $,o as a,c as N,U as t,L as e,M as d,u as F,K as i,R as l}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.37f7aea6.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.5759a1a6.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";const V={class:"storage"},z=f({name:"storage"}),bt=f({...z,setup(I){const m=T(),o=S({loading:!1,lists:[]}),p=async()=>{try{o.loading=!0,o.lists=await R(),o.loading=!1}catch{o.loading=!1}},g=r=>{var s;(s=m.value)==null||s.open(r)};return p(),(r,s)=>{const B=b,c=A,u=k,_=v,E=y,h=D,w=$("perms"),C=x;return a(),N("div",V,[t(c,{class:"!border-none",shadow:"never"},{default:e(()=>[t(B,{type:"warning",title:"\u6E29\u99A8\u63D0\u793A\uFF1A1.\u5207\u6362\u5B58\u50A8\u65B9\u5F0F\u540E\uFF0C\u9700\u8981\u5C06\u8D44\u6E90\u6587\u4EF6\u4F20\u8F93\u81F3\u65B0\u7684\u5B58\u50A8\u7AEF\uFF1B2.\u8BF7\u52FF\u968F\u610F\u5207\u6362\u5B58\u50A8\u65B9\u5F0F\uFF0C\u53EF\u80FD\u5BFC\u81F4\u56FE\u7247\u65E0\u6CD5\u67E5\u770B",closable:!1,"show-icon":""})]),_:1}),d((a(),i(c,{class:"!border-none mt-4",shadow:"never"},{default:e(()=>[t(h,{size:"large",data:F(o).lists},{default:e(()=>[t(u,{label:"\u50A8\u5B58\u65B9\u5F0F",prop:"name","min-width":"120"}),t(u,{label:"\u50A8\u5B58\u4F4D\u7F6E",prop:"path","min-width":"160"}),t(u,{label:"\u72B6\u6001","min-width":"80"},{default:e(({row:n})=>[n.status==1?(a(),i(_,{key:0},{default:e(()=>[l("\u5F00\u542F")]),_:1})):(a(),i(_,{key:1,type:"danger"},{default:e(()=>[l("\u5173\u95ED")]),_:1}))]),_:1}),t(u,{label:"\u64CD\u4F5C","min-width":"80",fixed:"right"},{default:e(({row:n})=>[d((a(),i(E,{type:"primary",link:"",onClick:K=>g(n.engine)},{default:e(()=>[l(" \u8BBE\u7F6E ")]),_:2},1032,["onClick"])),[[w,["setting.storage/setup"]]])]),_:1})]),_:1},8,["data"])]),_:1})),[[C,F(o).loading]]),t(L,{ref_key:"editRef",ref:m,onSuccess:p},null,512)])}}});export{bt as default}; diff --git a/public/admin/assets/index.36e7dce9.js b/public/admin/assets/index.36e7dce9.js new file mode 100644 index 000000000..3f353d00a --- /dev/null +++ b/public/admin/assets/index.36e7dce9.js @@ -0,0 +1 @@ +import{B as A,C as Q,w as j,D as q,I as K,O as M,P as O,Q as z}from"./element-plus.4328d892.js";import{_ as G}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{f as H,b as J}from"./index.aa9bb752.js";import{u as W}from"./usePaging.2ad8e1e6.js";import{u as X}from"./useDictOptions.a61fcf9f.js";import{_ as Y,a as Z,b as ee}from"./edit.vue_vue_type_script_setup_true_name_companyComplaintFeedbackEdit_lang.def3fc04.js";import"./lodash.08438971.js";import{d as E,s as oe,r as h,$ as te,af as ae,o as i,c as ne,U as e,L as a,u as o,R as p,M as _,K as r,a as B,k as le,Q as ie,n as g}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.fa872673.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";const se={class:"mt-4"},me={class:"flex mt-4 justify-end"},pe=E({name:"companyComplaintFeedbackLists"}),Xe=E({...pe,setup(re){const f=oe(),C=h(!1),s=te({company_id:"",content:""}),v=h([]),V=l=>{v.value=l.map(({id:t})=>t)},{dictData:D}=X(""),{pager:c,getLists:b,resetParams:x,resetPage:$}=W({fetchFun:ee,params:s}),P=async()=>{var l;C.value=!0,await g(),(l=f.value)==null||l.open("add")},L=async l=>{var t,d;C.value=!0,await g(),(t=f.value)==null||t.open("edit"),(d=f.value)==null||d.setFormData(l)},w=async l=>{await H.confirm("\u786E\u5B9A\u8981\u5220\u9664\uFF1F"),await Z({id:l}),b()};return b(),(l,t)=>{const d=A,y=Q,m=j,R=q,F=K,N=J,u=M,S=O,T=G,k=ae("perms"),U=z;return i(),ne("div",null,[e(F,{class:"!border-none mb-4",shadow:"never"},{default:a(()=>[e(R,{class:"mb-[-16px]",model:o(s),inline:""},{default:a(()=>[e(y,{label:"\u516C\u53F8",prop:"company_id"},{default:a(()=>[e(d,{class:"w-[280px]",modelValue:o(s).company_id,"onUpdate:modelValue":t[0]||(t[0]=n=>o(s).company_id=n),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u516C\u53F8"},null,8,["modelValue"])]),_:1}),e(y,{label:"\u5185\u5BB9",prop:"content"},{default:a(()=>[e(d,{class:"w-[280px]",modelValue:o(s).content,"onUpdate:modelValue":t[1]||(t[1]=n=>o(s).content=n),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u5185\u5BB9"},null,8,["modelValue"])]),_:1}),e(y,null,{default:a(()=>[e(m,{type:"primary",onClick:o($)},{default:a(()=>[p("\u67E5\u8BE2")]),_:1},8,["onClick"]),e(m,{onClick:o(x)},{default:a(()=>[p("\u91CD\u7F6E")]),_:1},8,["onClick"])]),_:1})]),_:1},8,["model"])]),_:1}),_((i(),r(F,{class:"!border-none",shadow:"never"},{default:a(()=>[_((i(),r(m,{type:"primary",onClick:P},{icon:a(()=>[e(N,{name:"el-icon-Plus"})]),default:a(()=>[p(" \u65B0\u589E ")]),_:1})),[[k,["company_complaint_feedback/add"]]]),_((i(),r(m,{disabled:!o(v).length,onClick:t[2]||(t[2]=n=>w(o(v)))},{default:a(()=>[p(" \u5220\u9664 ")]),_:1},8,["disabled"])),[[k,["company_complaint_feedback/delete"]]]),B("div",se,[e(S,{data:o(c).lists,onSelectionChange:V},{default:a(()=>[e(u,{type:"selection",width:"55"}),e(u,{label:"id",prop:"id",width:"120","show-overflow-tooltip":""}),e(u,{label:"\u516C\u53F8",prop:"company_name",width:"220","show-overflow-tooltip":""}),e(u,{label:"\u5185\u5BB9",prop:"content","show-overflow-tooltip":""}),e(u,{label:"\u64CD\u4F5C",width:"120",fixed:"right"},{default:a(({row:n})=>[_((i(),r(m,{type:"primary",link:"",onClick:I=>L(n)},{default:a(()=>[p(" \u7F16\u8F91 ")]),_:2},1032,["onClick"])),[[k,["company_complaint_feedback/edit"]]]),_((i(),r(m,{type:"danger",link:"",onClick:I=>w(n.id)},{default:a(()=>[p(" \u5220\u9664 ")]),_:2},1032,["onClick"])),[[k,["company_complaint_feedback/delete"]]])]),_:1})]),_:1},8,["data"])]),B("div",me,[e(T,{modelValue:o(c),"onUpdate:modelValue":t[3]||(t[3]=n=>le(c)?c.value=n:null),onChange:o(b)},null,8,["modelValue","onChange"])])]),_:1})),[[U,o(c).loading]]),o(C)?(i(),r(Y,{key:0,ref_key:"editRef",ref:f,"dict-data":o(D),onSuccess:o(b),onClose:t[4]||(t[4]=n=>C.value=!1)},null,8,["dict-data","onSuccess"])):ie("",!0)])}}});export{Xe as default}; diff --git a/public/admin/assets/index.37f7aea6.js b/public/admin/assets/index.37f7aea6.js new file mode 100644 index 000000000..a0b333e5b --- /dev/null +++ b/public/admin/assets/index.37f7aea6.js @@ -0,0 +1 @@ +var _1=Object.defineProperty;var v1=(a,o,e)=>o in a?_1(a,o,{enumerable:!0,configurable:!0,writable:!0,value:e}):a[o]=e;var F=(a,o,e)=>(v1(a,typeof o!="symbol"?o+"":o,e),e);import{u as r,v as F3,d as g,e as v,a4 as l3,o as _,c as y,U as u,L as p,a as m,K as A,aK as p1,P as G3,Q as O,s as z1,r as E3,I as M3,S as e3,_ as i3,M as U3,V as Y3,O as W3,W as b1,H as y1,ag as g1,ah as w1,h as A1,T as Z,a7 as c3,k as D,w as Z3,R as Y,bf as f1,be as V1,n as x1,j as E1,aq as M1}from"./@vue.51d7f2d8.js";import{E as X3,u as L1,a as H1,i as T1,b as O1,c as B1,d as I1,e as D1,f as R1,g as $3,h as P1,j as C1,k as s3,l as W,m as n3,n as S1,o as k1,p as K3,q as J3,r as Q3,s as j1,t as N1,v as q1,w as F1,x as G1,y as U1,z as Y1,A as W1}from"./element-plus.4328d892.js";import{c as Z1,l as X1,m as a1,n as $1,p as K1,f as J1}from"./@vueuse.ec90c285.js";import{l as T}from"./lodash.08438971.js";import{a as o1,b as r3}from"./axios.105476b3.js";import{u as L3,a as H3,c as Q1,b as a0,R as w3}from"./vue-router.9f65afb1.js";import{d as _3,c as o0}from"./pinia.56356cb7.js";import{l as e0}from"./css-color-function.7ac6f233.js";import{H as e1}from"./@element-plus.a074d1f6.js";import{N as G}from"./nprogress.f73355d0.js";import{u as l0}from"./vue-clipboard3.dca5bca3.js";import{u as i0,a as c0,b as t0,c as s0,d as n0,e as r0,f as u0,g as m0,h as d0,j as h0,k as _0,l as v0,m as p0,n as z0,o as b0,p as y0,q as g0,r as w0,s as A0,v as f0,w as V0,x as x0,y as E0,z as M0,A as L0}from"./echarts.ac57a99a.js";import"./highlight.js.dba6fa1b.js";import{o as H0}from"./@highlightjs.40d5feba.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./vue-demi.b3a9cad9.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./clipboard.16e4491b.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";(function(){const o=document.createElement("link").relList;if(o&&o.supports&&o.supports("modulepreload"))return;for(const c of document.querySelectorAll('link[rel="modulepreload"]'))i(c);new MutationObserver(c=>{for(const t of c)if(t.type==="childList")for(const s of t.addedNodes)s.tagName==="LINK"&&s.rel==="modulepreload"&&i(s)}).observe(document,{childList:!0,subtree:!0});function e(c){const t={};return c.integrity&&(t.integrity=c.integrity),c.referrerpolicy&&(t.referrerPolicy=c.referrerpolicy),c.crossorigin==="use-credentials"?t.credentials="include":c.crossorigin==="anonymous"?t.credentials="omit":t.credentials="same-origin",t}function i(c){if(c.ep)return;c.ep=!0;const t=e(c);fetch(c.href,t)}})();const R={terminal:1,title:"\u540E\u53F0\u7BA1\u7406\u7CFB\u7EDF",version:"1.6.0",baseUrl:"/",urlPrefix:"adminapi",timeout:20*1e3};var l1=(a=>(a.JSON="application/json;charset=UTF-8",a.FORM_DATA="multipart/form-data;charset=UTF-8",a))(l1||{}),a3=(a=>(a.GET="GET",a.POST="POST",a))(a3||{}),Q=(a=>(a[a.SUCCESS=1]="SUCCESS",a[a.FAIL=0]="FAIL",a[a.LOGIN_FAILURE=-1]="LOGIN_FAILURE",a[a.OPEN_NEW_PAGE=2]="OPEN_NEW_PAGE",a))(Q||{});const J=new Map,I3=class{static createInstance(){var o;return(o=this.instance)!=null?o:this.instance=new I3}add(o){const e=o.url;this.remove(e),o.cancelToken=new o1.CancelToken(i=>{J.has(e)||J.set(e,i)})}remove(o){if(J.has(o)){const e=J.get(o);e&&e(o),J.delete(o)}}};let u3=I3;F(u3,"instance");const R3=u3.createInstance();class T0{constructor(o){F(this,"axiosInstance");F(this,"config");F(this,"options");this.config=o,this.options=o.requestOptions,this.axiosInstance=o1.create(o),this.setupInterceptors()}getAxiosInstance(){return this.axiosInstance}setupInterceptors(){if(!this.config.axiosHooks)return;const{requestInterceptorsHook:o,requestInterceptorsCatchHook:e,responseInterceptorsHook:i,responseInterceptorsCatchHook:c}=this.config.axiosHooks;this.axiosInstance.interceptors.request.use(t=>(this.addCancelToken(t),T.exports.isFunction(o)&&(t=o(t)),t),t=>(T.exports.isFunction(e)&&e(t),t)),this.axiosInstance.interceptors.response.use(t=>(this.removeCancelToken(t.config.url),T.exports.isFunction(i)&&(t=i(t)),t),t=>{var s;return T.exports.isFunction(c)&&c(t),t.code!=r3.exports.AxiosError.ERR_CANCELED&&this.removeCancelToken((s=t.config)==null?void 0:s.url),t.code==r3.exports.AxiosError.ECONNABORTED||t.code==r3.exports.AxiosError.ERR_NETWORK?new Promise(n=>setTimeout(n,500)).then(()=>this.retryRequest(t)):Promise.reject(t)})}addCancelToken(o){const{ignoreCancelToken:e}=o.requestOptions;!e&&R3.add(o)}removeCancelToken(o){R3.remove(o)}retryRequest(o){var t,s;const e=o.config,{retryCount:i,isOpenRetry:c}=e.requestOptions;return!c||((t=e.method)==null?void 0:t.toUpperCase())==a3.POST||(e.retryCount=(s=e.retryCount)!=null?s:0,e.retryCount>=i)?Promise.reject(o):(e.retryCount++,this.axiosInstance.request(e))}get(o,e){return this.request({...o,method:a3.GET},e)}post(o,e){return this.request({...o,method:a3.POST},e)}request(o,e){const i=T.exports.merge({},this.options,e),c={...T.exports.cloneDeep(o),requestOptions:i},{urlPrefix:t}=i;return t&&(c.url=`${t}${o.url}`),new Promise((s,n)=>{this.axiosInstance.request(c).then(h=>{s(h)}).catch(h=>{n(h)})})}}const T3="token",O0="account",A3="setting",B0="modulepreload",I0=function(a){return"/admin/"+a},P3={},l=function(o,e,i){if(!e||e.length===0)return o();const c=document.getElementsByTagName("link");return Promise.all(e.map(t=>{if(t=I0(t),t in P3)return;P3[t]=!0;const s=t.endsWith(".css"),n=s?'[rel="stylesheet"]':"";if(!!i)for(let z=c.length-1;z>=0;z--){const w=c[z];if(w.href===t&&(!s||w.rel==="stylesheet"))return}else if(document.querySelector(`link[href="${t}"]${n}`))return;const d=document.createElement("link");if(d.rel=s?"stylesheet":B0,s||(d.as="script",d.crossOrigin=""),d.href=t,document.head.appendChild(d),s)return new Promise((z,w)=>{d.addEventListener("load",z),d.addEventListener("error",()=>w(new Error(`Unable to preload CSS for ${t}`)))})})).then(()=>o())};var i1=(a=>(a.LIGHT="light",a.DARK="dark",a))(i1||{}),d3=(a=>(a.CATALOGUE="M",a.MENU="C",a.BUTTON="A",a))(d3||{}),f3=(a=>(a[a.SM=640]="SM",a[a.MD=768]="MD",a[a.LG=1024]="LG",a[a.XL=1280]="XL",a[a["2XL"]=1536]="2XL",a))(f3||{});function X(a){return/^(https?:|mailto:|tel:)/.test(a)}var E=(a=>(a.LOGIN="/login",a.ERROR_403="/403",a.INDEX="/",a))(E||{});const D0=(a,o)=>o.findIndex(e=>e.fullPath==a),R0=(a,o)=>{const{path:e,meta:i,name:c}=a;return!!(!e||X(e)||i!=null&&i.hideTab||!o.hasRoute(c)||[E.LOGIN,E.ERROR_403].includes(e))},P0=(a,o)=>o.findIndex(e=>e.fullPath===a),z3=a=>{var o,e,i;return(i=(e=(o=a.matched.at(-1))==null?void 0:o.components)==null?void 0:e.default)==null?void 0:i.name},c1=a=>{const{params:o,path:e,query:i}=a;return{params:o||{},path:e,query:i||{}}},t3=_3({id:"tabs",state:()=>({cacheTabList:new Set,tabList:[],tasMap:{},indexRouteName:""}),getters:{getTabList(){return this.tabList},getCacheTabList(){return Array.from(this.cacheTabList)}},actions:{setRouteName(a){this.indexRouteName=a},addCache(a){a&&this.cacheTabList.add(a)},removeCache(a){a&&this.cacheTabList.has(a)&&this.cacheTabList.delete(a)},clearCache(){this.cacheTabList.clear()},resetState(){this.cacheTabList=new Set,this.tabList=[],this.tasMap={},this.indexRouteName=""},addTab(a){const o=r(a.currentRoute),{name:e,query:i,meta:c,params:t,fullPath:s,path:n}=o;if(R0(o,a))return;const h=D0(s,this.tabList),d=z3(o),z={name:e,path:n,fullPath:s,title:c==null?void 0:c.title,query:i,params:t};this.tasMap[s]=z,c!=null&&c.keepAlive&&(console.log(d),this.addCache(d)),h==-1&&this.tabList.push(z)},removeTab(a,o){const{currentRoute:e,push:i}=o,c=P0(a,this.tabList);this.tabList.length>1&&c!==-1&&this.tabList.splice(c,1);const t=z3(e.value);if(this.removeCache(t),a!==e.value.fullPath)return;let s=null;c===0?s=this.tabList[c]:s=this.tabList[c-1];const n=c1(s);i(n)},removeOtherTab(a){this.tabList=this.tabList.filter(e=>e.fullPath==a.fullPath);const o=z3(a);this.cacheTabList.forEach(e=>{o!==e&&this.removeCache(e)})},removeAllTab(a){const{push:o,currentRoute:e}=a,{name:i}=r(e);if(i==this.indexRouteName){this.removeOtherTab(e.value);return}this.tabList=[],this.clearCache(),o(E.INDEX)}}}),b3={showCrumb:!0,showLogo:!0,isUniqueOpened:!1,sideWidth:200,sideTheme:"light",sideDarkColor:"#1d2124",openMultipleTabs:!0,theme:"#4A5DFF",successTheme:"#67c23a",warningTheme:"#e6a23c",dangerTheme:"#f56c6c",errorTheme:"#f56c6c",infoTheme:"#909399"},P={key:"like_admin_",set(a,o,e){a=this.getKey(a);let i={expire:e?this.time()+e:"",value:o};typeof i=="object"&&(i=JSON.stringify(i));try{window.localStorage.setItem(a,i)}catch{return null}},get(a){a=this.getKey(a);try{const o=window.localStorage.getItem(a);if(!o)return null;const{value:e,expire:i}=JSON.parse(o);return i&&i{const i={[`--el-color-${o}`]:a},c=e?S0:C0;for(const t in c)i[`--el-color-${o}-${t}`]=`color(${a} ${c[t]})`;return i},j0=(a,o=!1)=>{const e=Object.keys(a).reduce((t,s)=>Object.assign(t,k0(a[s],s,o)),{});let i=Object.keys(e).reduce((t,s)=>{const n=e0.convert(e[s]);return`${t}${s}:${n};`},"");i=`:root{${i}}`;let c=document.getElementById(C3);if(c){c.innerHTML=i;return}c=document.createElement("style"),c.setAttribute("type","text/css"),c.setAttribute("id",C3),c.innerHTML=i,document.head.append(c)},S3=P.get(A3),C=_3({id:"setting",state:()=>{const a={showDrawer:!1,...b3};return F3(S3)&&Object.assign(a,S3),a},actions:{setSetting(a){const{key:o,value:e}=a;this.hasOwnProperty(o)&&(this[o]=e);const i=Object.assign({},this.$state);delete i.showDrawer,P.set(A3,i)},setTheme(a){j0({primary:this.theme,success:this.successTheme,warning:this.warningTheme,danger:this.dangerTheme,error:this.errorTheme,info:this.infoTheme},a)},resetTheme(){for(const a in b3)this[a]=b3[a];P.remove(A3)}}}),N0={class:"main-wrap h-full bg-page"},q0={class:"p-4"},F0=g({__name:"main",setup(a){const o=N(),e=t3(),i=C(),c=v(()=>o.isRouteShow),t=v(()=>i.openMultipleTabs?e.getCacheTabList:[]);return(s,n)=>{const h=l3("router-view"),d=X3;return _(),y("main",N0,[u(d,null,{default:p(()=>[m("div",q0,[r(c)?(_(),A(h,{key:0},{default:p(({Component:z,route:w})=>[(_(),A(p1,{include:r(t),max:20},[(_(),A(G3(z),{key:w.fullPath}))],1032,["include"]))]),_:1})):O("",!0)])]),_:1})])}}});function G0(a){return j.post({url:"/login/account",params:{...a,terminal:R.terminal}})}function U0(){return j.post({url:"/login/logout"})}function Y0(){return j.get({url:"/auth.admin/mySelf"})}function M4(a){return j.post({url:"/auth.admin/editSelf",params:a})}function L4(a){return j.get({url:"/user.user/lists",params:a})}const $=_3({id:"user",state:()=>({token:u1()||"",userInfo:{},routes:[],perms:[]}),getters:{},actions:{resetState(){this.token="",this.userInfo={},this.perms=[]},login(a){const{account:o,password:e}=a;return new Promise((i,c)=>{G0({account:o.trim(),password:e}).then(t=>{this.token=t.token,P.set(T3,t.token),i(t)}).catch(t=>{c(t)})})},logout(){return new Promise((a,o)=>{U0().then(async e=>{this.token="",await L.push(E.LOGIN),h3(),a(e)}).catch(e=>{o(e)})})},getUserInfo(){return new Promise((a,o)=>{Y0().then(e=>{this.userInfo=e.user,this.perms=e.permissions,this.routes=n1(e.menu),a(e)}).catch(e=>{o(e)})})}}}),W0=g({__name:"index",props:{...L1,teleported:{type:Boolean,default:!1},placement:{type:String,default:"top"},overfloType:{type:String,default:"ellipsis"}},setup(a){const o=a,e=z1(),i=E3(!1);return Z1(e,"mouseenter",()=>{var c,t;((c=e.value)==null?void 0:c.scrollWidth)>((t=e.value)==null?void 0:t.offsetWidth)?i.value=!1:i.value=!0}),(c,t)=>{const s=H1;return _(),y("div",null,[u(s,M3(o,{disabled:r(i)}),{default:p(()=>[m("div",{ref_key:"textRef",ref:e,class:"overflow-text truncate",style:i3({textOverflow:a.overfloType})},e3(c.content),5)]),_:1},16,["disabled"])])}}}),o3=(a,o="px")=>Object.is(Number(a),NaN)?a:`${a}${o}`,k3=a=>a==null&&typeof a>"u",H4=(a,o={children:"children"})=>{a=T.exports.cloneDeep(a);const{children:e}=o,i=[],c=[];for(a.forEach(t=>c.push(t));c.length;){const t=c.shift();t[e]&&(t[e].forEach(s=>c.push(s)),delete t[e]),i.push(t)}return i},T4=(a,o={id:"id",parentId:"pid",children:"children"})=>{a=T.exports.cloneDeep(a);const{id:e,parentId:i,children:c}=o,t=[],s=new Map;return a.forEach(n=>{var d;s.set(n[e],n);const h=s.get(n[i]);h?(h[c]=(d=h[c])!=null?d:[],h[c].push(n)):t.push(n)}),t};function Z0(a){if(a.length===0||!a||a=="undefined")return a;const o=a.replace("//","/"),e=o.length;return o[e-1]==="/"?o.slice(0,e-1):o}function X0(a){let o="";for(const e of Object.keys(a)){const i=a[e],c=encodeURIComponent(e)+"=";if(!k3(i))if(F3(i)){for(const t of Object.keys(i))if(!k3(i[t])){const s=e+"["+t+"]",n=encodeURIComponent(s)+"=";o+=n+encodeURIComponent(i[t])+"&"}}else o+=c+encodeURIComponent(i)+"&"}return o.slice(0,-1)}const O4=(a,o="yyyy-mm-dd")=>{a||(a=Number(new Date)),a.toString().length==10&&(a*=1e3);const e=new Date(a);let i;const c={"y+":e.getFullYear().toString(),"m+":(e.getMonth()+1).toString(),"d+":e.getDate().toString(),"h+":e.getHours().toString(),"M+":e.getMinutes().toString(),"s+":e.getSeconds().toString()};for(const t in c)i=new RegExp("("+t+")").exec(o),i&&(o=o.replace(i[1],i[1].length==1?c[t]:c[t].padStart(i[1].length,"0")));return o},B4=(a=8)=>{let o=Date.now().toString(36);return o+=Math.random().toString(36).substring(3,a),o},$0=g({__name:"index",props:{width:{type:[String,Number],default:"auto"},height:{type:[String,Number],default:"auto"},radius:{type:[String,Number],default:0},...T1},setup(a){const o=a,e=v(()=>({width:o3(o.width),height:o3(o.height),borderRadius:o3(o.radius)}));return(i,c)=>{const t=O1;return _(),A(t,M3({style:e.value},o),null,16,["style"])}}});const B=(a,o)=>{const e=a.__vccOpts||a;for(const[i,c]of o)e[i]=c;return e},K0=B($0,[["__scopeId","data-v-503f53ec"]]),J0={class:"logo"},Q0=g({__name:"logo",props:{szie:{type:Number,default:34},title:{type:String},theme:{type:String},showTitle:{type:Boolean,default:!0}},setup(a){const o=N(),e=v(()=>o.config);return(i,c)=>{const t=K0,s=W0;return _(),y("div",J0,[u(t,{width:a.szie,height:a.szie,src:r(e).web_logo},null,8,["width","height","src"]),u(b1,{name:"title-width"},{default:p(()=>[U3(m("div",{class:W3(["logo-title overflow-hidden whitespace-nowrap",{"text-white":a.theme==r(i1).DARK}]),style:i3({left:`${a.szie+16}px`})},[u(s,{content:a.title||r(e).web_name,teleported:!0,placement:"bottom","overflo-type":"unset"},null,8,["content"])],6),[[Y3,a.showTitle]])]),_:1})])}}});const a2=B(Q0,[["__scopeId","data-v-cb33a7bb"]]),o2=g({__name:"index",props:{to:{},replace:{type:Boolean}},setup(a){const o=a,e=v(()=>typeof o.to!="object"&&X(o.to)),i=v(()=>e.value?"a":"router-link"),c=v(()=>e.value?{href:o.to,target:"_blank"}:o);return(t,s)=>(_(),A(G3(r(i)),g1(w1(r(c))),{default:p(()=>[y1(t.$slots,"default")]),_:3},16))}}),e2=["local-icon-a-tixingdengpao","local-icon-Androidfanhui","local-icon-anquan","local-icon-anquan_mian","local-icon-anquan_mian1","local-icon-banxing_mian","local-icon-baoxian","local-icon-bendishenghuodaxue","local-icon-bianji","local-icon-biaoqing","local-icon-bukejian","local-icon-caipinguanli","local-icon-caiwu","local-icon-caiwu_jifen","local-icon-caiwu_tixian","local-icon-canyinfuwu","local-icon-carryout","local-icon-chexiao","local-icon-chihuohongbao","local-icon-chuangyiwuliao","local-icon-close","local-icon-daiyunying","local-icon-danwei","local-icon-danxuankuang","local-icon-danxuanxuanzhong","local-icon-dayin","local-icon-dayin_mian","local-icon-del","local-icon-diancanshezhi","local-icon-dianhua","local-icon-dianhua_mian","local-icon-dianputuijian","local-icon-dianpu_fengge","local-icon-dianzifapiao","local-icon-dingcan","local-icon-dingdan","local-icon-dingdan1","local-icon-dingdan_mian","local-icon-dingwei","local-icon-dingwei_mian","local-icon-ditu","local-icon-ditu_mian","local-icon-duizhang","local-icon-elemo","local-icon-ezhanggui","local-icon-falvfuwubaoxiaohei","local-icon-fengniaopaotui","local-icon-fenxiang","local-icon-fukuan","local-icon-fukuan_mian","local-icon-fullscreen-exit","local-icon-fullscreen","local-icon-fuwushichang","local-icon-fuzhi","local-icon-gaode","local-icon-gengduo","local-icon-gengduoandroid","local-icon-gift","local-icon-gongyingshang","local-icon-goods","local-icon-gou","local-icon-gouwuche","local-icon-gouxuan","local-icon-gouxuan_mian","local-icon-guanbi","local-icon-guanli","local-icon-guanli_mian","local-icon-gukefapiao","local-icon-haibaosheji","local-icon-heshoujilu","local-icon-heshoujilu1","local-icon-hexiao_order","local-icon-hide-2","local-icon-hide","local-icon-hongbao","local-icon-huiche","local-icon-huiyuanyingxiao","local-icon-huodongbaoming","local-icon-huodongguanli","local-icon-huodongzhongxin","local-icon-huojian","local-icon-huojian_mian","local-icon-huolala","local-icon-iOSfanhui","local-icon-jia","local-icon-jian","local-icon-jianpan","local-icon-jianpanshanchu","local-icon-jianshao","local-icon-jian_mian","local-icon-jiaopeiwangputong","local-icon-jiaoyi","local-icon-jia_mian","local-icon-jiedan","local-icon-jiekuan","local-icon-jingshi","local-icon-jingshi_mian","local-icon-jingshi_mian1","local-icon-jingyin","local-icon-jingying","local-icon-jingyinggonglve","local-icon-jingying_mian","local-icon-jingyin_mian","local-icon-jingzhunyingxiao","local-icon-jinhuo","local-icon-kaitongwaimai","local-icon-kanjia","local-icon-kefu","local-icon-kejian","local-icon-kejian_mian","local-icon-keziyuyue","local-icon-kezizhongxin","local-icon-KMSguanli","local-icon-koubei","local-icon-KTVyuding","local-icon-kuaijiehuifu","local-icon-ladu_mian","local-icon-lanyadingwei","local-icon-list-2","local-icon-mendiandongtai","local-icon-mishiyuding","local-icon-mishiyuding1","local-icon-notice_buyer","local-icon-open","local-icon-paiduiquhao","local-icon-paimai","local-icon-pingjia","local-icon-pingtaifapiao","local-icon-pinpai","local-icon-qianbao","local-icon-qianbao_mian","local-icon-qiehuan","local-icon-qingchu","local-icon-qingchu_mian","local-icon-qishoupeisong","local-icon-qiyedingcan","local-icon-qiyedingcan1","local-icon-quanbu","local-icon-quanping","local-icon-qudao","local-icon-qudao_xiaochengxu","local-icon-rencaizhaopin","local-icon-rili","local-icon-rili2","local-icon-rizhi","local-icon-saoma","local-icon-set_pay","local-icon-set_peisong","local-icon-set_user","local-icon-set_weihu","local-icon-shanchu","local-icon-shanchu_mian","local-icon-shangchuan","local-icon-shangchuanzhaopian","local-icon-shangpinguanli","local-icon-shangpinzhushou","local-icon-shangpuyuding","local-icon-shebeiguanli","local-icon-shengfuwangputong","local-icon-shengyin","local-icon-shengyin_mian","local-icon-shezhi","local-icon-shezhi_mian","local-icon-shichang","local-icon-shichang_mian","local-icon-shijian","local-icon-shijian_mian","local-icon-shoudan","local-icon-shouqi","local-icon-shouqi_mian","local-icon-shouye","local-icon-shouye_mian","local-icon-shouyiren","local-icon-show","local-icon-shuangjiantouxiangyou","local-icon-shuangjiantouxiangzuo","local-icon-shuaxin","local-icon-shuju","local-icon-shuju2","local-icon-shuju_liuliang","local-icon-shuju_mian","local-icon-sort","local-icon-sousuo","local-icon-sucai","local-icon-tianjia","local-icon-tishi","local-icon-tishi_mian","local-icon-tongxunlu_mian","local-icon-tongzhi","local-icon-tongzhi_mian","local-icon-tuichuquanping","local-icon-tuiguang","local-icon-tuiguang_mian","local-icon-tupian","local-icon-tupian_mian","local-icon-user_biaoqian","local-icon-user_gaikuang","local-icon-user_guanli","local-icon-wangpudiandan","local-icon-weixin","local-icon-weixin_mian","local-icon-wode","local-icon-wode_mian","local-icon-xiangji","local-icon-xiaoxi","local-icon-xiazai","local-icon-xitongquanxian","local-icon-yingxiao_qipao","local-icon-yingyezizhi","local-icon-yinhangka","local-icon-yiwen","local-icon-youhui","local-icon-youjian","local-icon-youjiantou","local-icon-yulibao","local-icon-yuyin","local-icon-yuyueguanli","local-icon-yuyueguanlishezhi","local-icon-zhankai","local-icon-zhankai_mian","local-icon-zhibo","local-icon-zhibo_mian","local-icon-zhuangxiu","local-icon-zhuangxiu_mian","local-icon-zhuoweiguanli","local-icon-zichanzhuanrang","local-icon-zuliao","local-icon-zuliaoyuding"],l2="local-icon-",V3="el-icon-",t1=[];for(const[,a]of Object.entries(e1))t1.push(`${V3}${a.name}`);function I4(){return t1}function D4(){return e2}const i2=g({props:{name:{type:String,required:!0},size:{type:[Number,String],default:16},color:{type:String,default:"inherit"}},setup(a){const o=v(()=>`#${a.name}`),e=v(()=>({width:o3(a.size),height:o3(a.size),color:a.color}));return{symbolId:o,styles:e}}}),c2=["xlink:href"];function t2(a,o,e,i,c,t){return _(),y("svg",{"aria-hidden":"true",style:i3(a.styles)},[m("use",{"xlink:href":a.symbolId,fill:"currentColor"},null,8,c2)],4)}const s2=B(i2,[["render",t2]]),S=g({name:"Icon",props:{name:{type:String,required:!0},size:{type:[String,Number],default:"14px"},color:{type:String,default:"inherit"}},setup(a){if(a.name.indexOf(V3)===0)return()=>u(B1,{size:a.size,color:a.color},()=>[u(l3(a.name.replace(V3,"")))]);if(a.name.indexOf(l2)===0)return()=>A1("i",{class:["local-icon"]},u(s2,{...a}))}}),n2=g({__name:"menu-item",props:{route:{},routePath:{},popperClass:{}},setup(a){const o=a,e=v(()=>{var n;return!!((n=o.route.children)!=null?n:[]).filter(h=>{var d;return!((d=h.meta)!=null&&d.hidden)}).length}),i=v(()=>o.route.meta),c=s=>X(s)?s:Z0(`${o.routePath}/${s}`),t=v(()=>{var n;const s=(n=o.route.meta)==null?void 0:n.query;try{const h=JSON.parse(s);return X0(h)}catch{return s}});return(s,n)=>{var I;const h=S,d=I1,z=o2,w=l3("menu-item",!0),H=D1;return(I=s.route.meta)!=null&&I.hidden?O("",!0):(_(),y(Z,{key:0},[r(e)?(_(),A(H,{key:1,index:s.routePath,"popper-class":s.popperClass},{title:p(()=>{var x,M,b;return[(x=r(i))!=null&&x.icon?(_(),A(h,{key:0,class:"menu-item-icon",size:16,name:(M=r(i))==null?void 0:M.icon},null,8,["name"])):O("",!0),m("span",null,e3((b=r(i))==null?void 0:b.title),1)]}),default:p(()=>{var x;return[(_(!0),y(Z,null,c3((x=s.route)==null?void 0:x.children,M=>(_(),A(w,{key:c(M.path),route:M,"route-path":c(M.path),"popper-class":s.popperClass},null,8,["route","route-path","popper-class"]))),128))]}),_:1},8,["index","popper-class"])):(_(),A(z,{key:0,to:`${s.routePath}?${r(t)}`},{default:p(()=>[u(d,{index:s.routePath},{title:p(()=>{var x;return[m("span",null,e3((x=r(i))==null?void 0:x.title),1)]}),default:p(()=>{var x,M;return[(x=r(i))!=null&&x.icon?(_(),A(h,{key:0,class:"menu-item-icon",size:16,name:(M=r(i))==null?void 0:M.icon},null,8,["name"])):O("",!0)]}),_:1},8,["index"])]),_:1},8,["to"]))],64))}}});const r2=B(n2,[["__scopeId","data-v-c1c686f0"]]),u2=g({__name:"menu",props:{routes:{type:Object},config:{type:Object},uniqueOpened:{type:Boolean,default:!1},isCollapsed:{type:Boolean,default:!1},theme:{type:String},width:{type:Number,default:200}},emits:["select"],setup(a){const o=a,e=L3(),i=v(()=>{var t;return((t=e.meta)==null?void 0:t.activeMenu)||e.path}),c=v(()=>`theme-${o.theme}`);return(t,s)=>{const n=R1,h=X3;return _(),y("div",{class:W3(["menu flex-1 min-h-0",r(c)]),style:i3(a.isCollapsed?"":`--aside-width: ${a.width}px`)},[u(h,null,{default:p(()=>[u(n,M3(a.config,{"default-active":r(i),collapse:a.isCollapsed,mode:"vertical","unique-opened":a.uniqueOpened,onSelect:s[0]||(s[0]=d=>t.$emit("select"))}),{default:p(()=>[(_(!0),y(Z,null,c3(a.routes,d=>(_(),A(r2,{key:d.path,route:d,"route-path":d.path,"popper-class":r(c)},null,8,["route","route-path","popper-class"]))),128))]),_:1},16,["default-active","collapse","unique-opened"])]),_:1})],6)}}});const m2=B(u2,[["__scopeId","data-v-b6e626d9"]]),d2=g({__name:"side",setup(a){const o=N(),e=v(()=>o.isMobile?!1:o.isCollapsed),i=C(),c=v(()=>i.sideTheme),t=$(),s=v(()=>t.routes),n=v(()=>c.value=="dark"?{"--side-dark-color":i.sideDarkColor}:""),h=v(()=>({backgroundColor:c.value=="dark"?i.sideDarkColor:"",textColor:c.value=="dark"?"var(--el-color-white)":"",activeTextColor:c.value=="dark"?"var(--el-color-white)":""})),d=()=>{o.isMobile&&o.toggleCollapsed(!0)};return(z,w)=>(_(),y("div",{class:"side",style:i3(r(n))},[r(i).showLogo?(_(),A(a2,{key:0,"show-title":!r(e),theme:r(c)},null,8,["show-title","theme"])):O("",!0),u(m2,{routes:r(s),"is-collapsed":r(e),width:r(i).sideWidth,"unique-opened":r(i).isUniqueOpened,config:r(h),theme:r(c),onSelect:d},null,8,["routes","is-collapsed","width","unique-opened","config","theme"])],4))}});const j3=B(d2,[["__scopeId","data-v-d9b05b11"]]),h2={class:"sidebar h-full"},_2=g({__name:"index",setup(a){const o=N(),e=C(),i=v(()=>o.isMobile),c=v({get(){return!o.isCollapsed&&i.value},set(s){o.toggleCollapsed(!s)}}),t=v(()=>`${e.sideWidth+1}px`);return(s,n)=>{const h=$3;return _(),y("aside",h2,[u(h,{modelValue:r(c),"onUpdate:modelValue":n[0]||(n[0]=d=>D(c)?c.value=d:null),direction:"ltr",size:r(t),title:"\u4E3B\u9898\u8BBE\u7F6E","with-header":!1},{default:p(()=>[u(j3)]),_:1},8,["modelValue","size"]),U3(u(j3,null,null,512),[[Y3,!r(i)]])])}}});const v2=B(_2,[["__scopeId","data-v-7bab31f7"]]),p2=g({__name:"fold",setup(a){const o=N(),e=v(()=>o.isCollapsed),i=()=>{o.toggleCollapsed()};return(c,t)=>{const s=S;return _(),y("div",{class:"fold h-full cursor-pointer flex items-center px-2",onClick:i},[u(s,{name:`local-icon-${r(e)?"close":"open"}`,size:20},null,8,["name"])])}}}),z2=g({__name:"refresh",setup(a){const o=N(),e=()=>{o.refreshView()};return(i,c)=>{const t=S;return _(),y("div",{class:"refresh cursor-pointer h-full flex items-center px-2",onClick:e},[u(t,{name:"el-icon-RefreshRight",size:18})])}}});function s1(a){const o=L3();return Z3(o,()=>{a(o)},{immediate:!0}),{route:o}}const b2=g({__name:"breadcrumb",setup(a){const o=E3([]),e=i=>{const c=i.matched.filter(t=>t.meta&&t.meta.title);o.value=c};return s1(i=>{e(i)}),(i,c)=>{const t=P1,s=C1;return _(),A(s,{class:"app-breadcrumb"},{default:p(()=>[(_(!0),y(Z,null,c3(r(o),n=>(_(),A(t,{key:n.path},{default:p(()=>[Y(e3(n.meta.title),1)]),_:2},1024))),128))]),_:1})}}}),y2=g({__name:"full-screen",setup(a){const{toggle:o,isFullscreen:e}=X1();return(i,c)=>{const t=S;return _(),y("div",{class:"full-screen h-full cursor-pointer flex items-center px-2",onClick:c[0]||(c[0]=(...s)=>r(o)&&r(o)(...s))},[u(t,{size:16,name:`local-icon-${r(e)?"fullscreen-exit":"fullscreen"}`},null,8,["name"])])}}}),D3=class{constructor(){F(this,"loadingInstance",null)}static getInstance(){var o;return(o=this.instance)!=null?o:this.instance=new D3}msg(o){s3.info(o)}msgError(o){s3.error(o)}msgSuccess(o){s3.success(o)}msgWarning(o){s3.warning(o)}alert(o){W.alert(o,"\u7CFB\u7EDF\u63D0\u793A")}alertError(o){W.alert(o,"\u7CFB\u7EDF\u63D0\u793A",{type:"error"})}alertSuccess(o){W.alert(o,"\u7CFB\u7EDF\u63D0\u793A",{type:"success"})}alertWarning(o){W.alert(o,"\u7CFB\u7EDF\u63D0\u793A",{type:"warning"})}notify(o){n3.info(o)}notifyError(o){n3.error(o)}notifySuccess(o){n3.success(o)}notifyWarning(o){n3.warning(o)}confirm(o){return W.confirm(o,"\u6E29\u99A8\u63D0\u793A",{confirmButtonText:"\u786E\u5B9A",cancelButtonText:"\u53D6\u6D88",type:"warning"})}prompt(o,e,i){return W.prompt(o,e,{confirmButtonText:"\u786E\u5B9A",cancelButtonText:"\u53D6\u6D88",...i})}loading(o){this.loadingInstance=S1.service({lock:!0,text:o})}closeLoading(){var o;(o=this.loadingInstance)==null||o.close()}};let m3=D3;F(m3,"instance",null);const U=m3.getInstance(),g2={class:"flex items-center"},w2={class:"ml-3 mr-1"},A2=g({__name:"user-drop-down",setup(a){const o=$(),e=v(()=>o.userInfo),i=async c=>{switch(c){case"logout":await U.confirm("\u786E\u5B9A\u9000\u51FA\u767B\u5F55\u5417\uFF1F"),P.set("logout",P.get(O0).account),o.logout()}};return(c,t)=>{const s=k1,n=S,h=K3,d=l3("router-link"),z=J3,w=Q3;return _(),A(w,{class:"px-2",onCommand:i},{dropdown:p(()=>[u(z,null,{default:p(()=>[u(d,{to:"/user/setting"},{default:p(()=>[u(h,null,{default:p(()=>[Y("\u4E2A\u4EBA\u8BBE\u7F6E")]),_:1})]),_:1}),u(h,{command:"logout"},{default:p(()=>[Y("\u9000\u51FA\u767B\u5F55")]),_:1})]),_:1})]),default:p(()=>[m("div",g2,[u(s,{size:34,src:r(e).avatar},null,8,["src"]),m("div",w2,e3(r(e).name),1),u(n,{name:"el-icon-ArrowDown"})])]),_:1})}}}),f2="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAALcAAACHCAYAAABUFMgyAAAABHNCSVQICAgIfAhkiAAACbZJREFUeF7t201oXFUUB/DMRyJNpE0JuJqYTWtQs2pLqxSzcWGiK8FNceOqiLiMOxe1i0IFXdhFIXSli6agoJS6aBEM2o2QlbXFfkBNhRBNbRIyTTOTzHjv8O5wc3Pf55x578y7/0LI1+S8c8/95eTMfdNCH/6hAjmtQCGn68KyUIE+4AaC3FYAuHO7tVhYWrjTug52tHcq0Ox2qlToqOJ0e72I3zsV6Bg/FcqgOFTX6J1tQaZRKxAEOFPcJtqgzwE86na78zgdrwk57PNIVYqLzvZ49TX9e34fR0oKD3KmAn7A48D3LVanuOXP67ht0OXF417Hmd11eKF+3Vl+XX3PfC/LFXlciYPOhGuibkG/d+/eK5VKZWZgYOBEs9ksp7F5Ozs7641GYzWNa+EayStQKBRsMOtbW1s379+//83Ro0cfeXgVcD/kkYBHwW0bMVTHbgOv1WrXy+XypFhAlJjJK4SfzG0FRIPaevbs2ddDQ0MfG91bRx40suyqTRSIto7dxr24uPia6NQ3hOmB3FYdC0u1AuIv8fKDBw/eGh8fv2N0cjWW2MaVPTmG4Q6CXRR/Tr4V48c7mKlT3XsnLiZG2sbGxsb5/fv3f+YBbwR0c2tN4uDWR5GiBC3+jKyhYzthLZNFbm9vr/T3948auP3m8Y46t8TdQi3f1+v1X8SMfSyTVeOizlRgc3PzyuDg4Adiwapz+3XwRLj1jq2AF8WfjSrGEWeMZbZQ4axWLBaHPdwKtt69fU9OoowlCne7a9+9e/f44cOHfwbuzPbcpQs3FxYWjol/ty3dO/CJZRBua8eWI8nTp09n9+3b975LFcZas6vA6urq2YMHD57XurfZwWVyezq4H27zBk27a0vcYtC/UyqVXsxuubiySxUQc/evYu6eMnDrwBPj3gXbw30buF3ile1afXCruVsi7wi3BN5+E537D+DOdsNdurqH+22x5h3LaBILt3m7fRdsEbwkcN8Cbpd4ZbtWDbeErAOX3Vvh3tO9bTO3/jVzJCl5YwlwZ7vfTl1dHGDcFK83mda6tgKeGPeeI0DZteWbeJHULe/OkVNFxmKzqYCHWx9LJG4F2/YS2VaiQZ1bx62PJsCdzR47e1ULbjmK+N2xbNcpCe6yfP2teMHUq85WGwtPtQIebvkCPdmxbTO39WZOXNytsURc7Lq4iXM81RXiYs5WIFXc1Wr1mjhUP+lstbHwVCtg4NZPTPS5O9ZpiW3mbnVu4E51b52/GHA7TyC/BQDu/O6t8ysDbucJ5LcAwJ3fvXV+ZU7jFv9buk+83sV5BHktgDjAmBsZGflQO+M2b7/TnXNzOy0RLwfoEzeW8rq3zq/ryZMnn4+NjZ0Dbucp5K8AwI3OnT/V3oqAG7iB2/h/lIleW4KZO7eOWC4MnRudmyVMiqSAG7gpHLGMAdzAzRImRVLADdwUjljGAG7gZgmTIingBm4KRyxjADdws4RJkRRwAzeFI5YxgBu4WcKkSAq4gZvCEcsYwA3cLGFSJAXcwE3hiGUM4AZuljApkgJu4KZwxDIGcAM3S5gUSQE3cFM4YhkDuIGbJUyKpIAbuCkcsYwB3MDNEiZFUsAN3BSOWMYAbuBmCZMiKeAGbgpHLGMAN3CzhEmRFHADN4UjljGAG7hZwqRICriBm8IRyxjADdwsYVIkBdzATeGIZQzgBm6WMCmSAm7gpnDEMgZwAzdLmBRJATdwUzhiGQO4gZslTIqkgBu4KRyxjAHcwM0SJkVSwA3cFI5YxgBu4GYJkyIp4AZuCkcsYwA3cLOESZEUcAM3hSOWMYAbuFnCpEgKuIGbwhHLGMAN3CxhUiQF3MBN4YhlDOAGbpYwKZICbuCmcMQyBnADN0uYFEkBN3BTOGIZA7iBmyVMiqSAG7gpHLGMAdzAzRImRVLADdwUjljGAG7gZgmTIingBm4KRyxjADdws4RJkRRwAzeFI5YxgBu4WcKkSAq4gZvCEcsYwA3cLGFSJAXcwE3hiGUM4AZuljApkgJu4KZwxDIGcAM3S5gUSQE3cFM4YhkDuIGbJUyKpIAbuCkcsYwB3MDNEiZFUsAN3BSOWMYwcO+IJBveW1N7L3OXn7f/FSyrUV+T7+Vb0XgrV6vVa4ODgye5VKJWq/VtATeX7SDPI03cJYH7R+Am30ME9KnA2tra+dHR0XPi23rXlt2bpHOrDl4SAUsrKyufjIyMfMplN9C5uexEd/JYXFx8b2Ji4oaGWyLXYatxJPJYIjOVI4k+mrRwz8/PT0xOTt7szlLiRwXu+DXrpZ+Ym5sbP3369JLIWc3aqoNLzOpNLikWbnPmlrhbM3ij0fivUCjIjzP/B9yZb0HXEmg2m/8cOHDgJQtsfSxR1w/FLR+oP6nUu3erc0vcGxsb3w0NDb3ZtVXFCAzcMYrVYw8VTybPjo2Nfenhlh3b7NoS+Z6urSM2l+yHW52clCqVSvnhw4d/lUql57OuF3BnvQPdub44AZs/dOjQu+IJpY5aPwZUc3di3Go0MWfv4sLCwhtHjhz5wRtVurPCCFGBO0KReuwhYuxdvXTp0uszMzP6rK1gm8A7wm0772518atXr748NTX1fblcfiGr+gF3VpXvznU3Nzd/unjx4kdnzpz5VxtD/GBbT0qCxhJz7rZ17/aIImf0x48ffzE8PHyqWCw+150l+0cF7rQr3p3r1ev1P5eWlr4Sx35XvBlbgtZn7EhHgCo72x1KPXN1l1J/b96x3HVcODs7W5menj4loJ8QgfpVMPGsN+xaiSsmftP/Xl9ff5Q4AH4w1QqIU7b2qYb4uLa8vPz75cuXf7tw4cKaSETN0WanNkcR8xhwzxrCwCnUqpOb597qc31s0X8R1M+FXSfV4uJiLCpgnk/rWM3XjgS9lmTX8Z/ZmYNWar7ORH+9iT6qmB+bvxTAzcITqyTCcKvvm7fZA2/cJMGtd2ATuO1zs2PruAGdlbFUk9G7rP5E0PxYgTa7uW0USdy5bU8sbdD1zg3YqXrpuYt1Alwu1vd2u1mJKF3U7LrmqGLO4/ovRNDHPbcrSJikAjbcCq16rzq3DbPfz8d+QmkbYXTcti5uggZwEhO5CBIGW8ds69C+Z9q26kTp3H4zuh/yMNy52CUsouMKBEE3EUfu1n5Yo2Rr/jKYwAE7ShXxGFUB88mgrTP7PSa0inE7twroh9yG2+9rocnhAbmugO2Uw2/s8D0RCapQUtxmzKA4VNfI9U47vDg/uIlAdzKW+O0BADuss0tLZ4M7bH3AH1Yh977fMd6wkgFdWIXw/Z6tAHD37NYh8bAKAHdYhfD9nq0AcPfs1iHxsAr8D7xvfQ8bZ0PpAAAAAElFTkSuQmCC",V2="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAALcAAACHCAYAAABUFMgyAAAABHNCSVQICAgIfAhkiAAACbtJREFUeF7tm39olVUYx++92wo0ZiL0V2v/SKMcVMzUtMTyjzL/KUpwWCpuzbZVxpikIWQLBIMUnLiMSWXYJhSYsiA1dNaQCSqkadGGOQdj/dpubM79uPf2nts9l7Oz8/66976/nvsdXO6v957zPM/53A/Pe967cAh/qADRCoSJ5oW0UIEQ4AYEZCsAuMkuLRJzC2635sGKBqcCCadDzRV0uRrH6XwxfnAqkDX8uYLSaJxczRGcZUGkVitgBLCncMvQGj0H4FaXO3+OE+GVQTZ7bqlKdqFTHc9fE9/Te2wpKByUNxXQA9wO+LrFyhZu9nkRbhXobHK78+TN6uZxonp2Zq/z9+R7Vi7L7Yod6GRwZaiToLe0fP5wJBJu/HsounhqcrLQjcV7fNFj/65YvmTYjbkwR+YVCIfDKjAnx8fHu3p6er6oqKi4lYKXA64HuSXArcCtajG4sdOA72s+dPK7k+eW37jRZ2XMzCuk+GR93YZQXe2GnI6JwdyvQDweH79z587h2bNnvyHZW4TcqGWZFrQVEFXGTsPd2npkSdf5S6e6uy/d5X45/p+xrnZ9qL5uo1fTY94cVyAWiw329vY+W1ZWdl0yOW9LVO3KjCjM4DYCO3LgwGdfHWk7tnpoKGo2To7Tnz4c4Ha0vJ4Mnkgk4iMjI7uLi4vfTwEeN7C5MkYzKJV9tTZSRLuFN25qiF64cNkzY/OMALcn/Dk+6dTU1F9FRUUlEtx6/XhW5magJ6Fm93v2Hvyh9VD7QscztDAB4LZQpIAeMjY2dnTWrFms5+Tm1jN4RnCLJ48c8Miq1a+O3rzZb2Z+V0oKuF0psyeTaO3JRCQSuTcFNwdbtLfuzokZnCLYaWvv39+6qOXgl2e1ic0+70pBALcrZfZqksTFixcXan/XFPY2PLE0glNpbNaStHx8+JPm/Z+u8ypbeV7A7ZeVcCaO4eHhprlz5+4W7C0bnE08w+B6cMsnkmlrM7ibPth7vf3o8QecScX+qIDbfs2C9Amt7/5R67ufk+AWAc8Y7mlgp+C+BriDhEewY9WBm/fdDPKs4GaAp2+auX8G3MEGJkjRp+B+Xos5pmhNbMEtX26fBrY2eIEG91XAHSQ8gh2rADcDWQSc2ZvDPcPeqp5bfE1uSQpSbQngDjYvgYr+9u3bXdrvTVYJ1uaAZww33y0RAWdwa+beo8F9gl058sUfTih9sQyOBZGCW2xLGNwcbNVPZJOxGJlbhFtsTQC3Y8uIgVUVUMDNWhG9K5bpITKBu3Db9l1dx0+cWuCXpYC5/bISzsSRgnt1qt9W9dzKizl24U62JW+9vePk6dNdi5xJxf6ogNt+zYL0CVfhrq3f1tHZ2b3MLwUC3H5ZCWfikOAWd0zEvptNPu0qZUbmBtzOLCJGVVcAcOM/cch+NwA34AbcaEvIMkA2MZgb5gbcFM29uWZdaHPNK2QXN98TGx0dbZ83b97rqX3u/Notqa5aG6quqsx3BsjmPzQ09GFpaekuwE12ifM3McANc5OlH3ADbsBN8YQSPTdZrpOJwdwwN1nCATfgBtxoS8gyQDYxmBvmBtwwN1kGyCYGc8PcgBvmJssA2cRgbpgbcMPcZBkgmxjMDXMDbpibLANkE4O5YW7ADXOTZYBsYjA3zA24YW6yDJBNDOaGuQE3zE2WAbKJwdwwN+CGuckyQDYxmBvmBtwwN1kGyCYGc8PcgBvmJssA2cRgbpgbcMPcZBkgmxjMDXMDbpibLANkE4O5YW7ADXOTZYBsYjA3zA24YW6yDJBNDOaGuQE3zE2WAbKJwdwwN+CGuckyQDYxmBvmBtwwN1kGyCYGc8PcgBvmJssA2cRgbpgbcMPcZBkgmxjMDXMDbpibLANkE4O5YW7ADXOTZYBsYjA3zA24YW6yDJBNDOaGuQE3zE2WAbKJwdwwN+CGuckyQDYxmBvmBtwwN1kGyCYGc8PcgBvmJssA2cRgbpgbcMPcZBkgmxjMDXMDbpibLANkE4O5YW7ADXOTZYBsYjA3zA24YW6yDJBNDOaGuQE3zE2WAbKJwdwwN+CGuckyQDYxmBvmzhe4Y1qi8dQtIdyz/Nnz9F9YURH+Grtnt4h0K6yt39bR2dm9zC/VrK5aG6oG3H5ZjpzHIZnbUbgLNLi/Bdw5X0MMqFOBaDS6u6SkZJf2tgg2s3dOzM0NXqANWLD1naatHR1ndvhlNWBuv6yEM3H09fW9XF5efkqAm0Eugs3bEcttCYuUtSRia5KEu66uofzsuctdzqRif1TAbb9mQfpEe3t7WU1NzYAWM++1ucEZzPzGUrIFt9xzM7iTPfjSJ1/4Z3g4yh57/ge4PV8CxwJIJBJ/zJkz50EF2GJbwuc3hZsdKJ5UivZOmpvBXf/mu1+fOXN+pWNZ2RgYcNsoVsAO1U4mm0pLS/ek4GbGlq3NIJ9hbRFiOWU9uPnOSUFxcXHhiqdfutnT+/s9XtcLcHu9As7MPz4+3jl//vwXtRNKEWpxG5D33RnDzVsTufeObNmy/anz3Ve+GRkZ9bQ9AdzOwOXlqPF4fLi1tfWJxsZGsdfmYMuAZwW3ar87afH1mzY/NDEWOfbTlV/u86oYgNuryjsz79jY2PctLS11O3fu/FNoQ/TAVu6UGLUlct+tsne6RWE9ekPDex9dvfZbZX//wN3OpKw/6mvVlaGqTWvdnhbz5bgCk5OTvw4MDOzTtv2OpnpsBrTYY1vaAuRhqa5QiiHzq5TivXzFctp24Zo1G+/XNtwrJyZji2OxWBEfLBFKmM2VcakefWRB/8pnlt7KeAB80NUKhMPh9K6G9nhicHDwSltb24Xm5uaoFgjvo2VTy62IvA04Iwcz4DjU3OTyvjd/LrYt4heBf85sHleLi8l8UQF5f1qEVf7tiNFvSaZt/8lmNspU/p2J+HsTsVWRH8tfCsDtC558FYQZ3Px9+TK74YWbTOAWDSwDrnouG1uEG6D7ijFXgxEtK54Iyo850LLNVa1IxuZWnViqQBfNDbBd5SVwk2UDOEtW93K7XAkrFpWtK7cqcj8ufiGMHgduVRBwTiqggptDy++5uVUw633e9gmlqoUR4VZZXAYagOeECRKDmIEtwqwytO6etqo6Vsyt16PrQW4GN4lVQhJZV8AIdBliy7bWg9VKtPKXQQYcYFupIo7hFZBPBlVm1jvGtIp2zc0H1INcBbfea6bB4QDSFVDtcui1Hbo7IkYVyhRueUyjcXI1B+mVzuPk9MDNCOhs2hK9NQDAeUynQ6n7Bm6z/AC/WYXy7/2s4TUrGaAzqxDeD2wFAHdglw6Bm1UAcJtVCO8HtgKAO7BLh8DNKvAfR+rWAIVxGVEAAAAASUVORK5CYII=",k=a=>(f1("data-v-de23e12b"),a=a(),V1(),a),x2={class:"setting-drawer"},E2={class:"setting-item mb-5"},M2=k(()=>m("span",{class:"text-tx-secondary"},"\u98CE\u683C\u8BBE\u7F6E",-1)),L2={class:"flex mt-4 cursor-pointer"},H2=["onClick"],T2=["src"],O2={class:"setting-item mb-5 flex justify-between items-center"},B2=k(()=>m("span",{class:"text-tx-secondary"},"\u4E3B\u9898\u989C\u8272",-1)),I2={class:"setting-item mb-5 flex justify-between items-center"},D2=k(()=>m("span",{class:"text-tx-secondary"},"\u5F00\u542F\u9ED1\u6697\u6A21\u5F0F",-1)),R2={class:"setting-item mb-5 flex justify-between items-center"},P2=k(()=>m("span",{class:"text-tx-secondary"},"\u5F00\u542F\u591A\u9875\u7B7E\u680F",-1)),C2={class:"setting-item mb-5 flex justify-between items-center"},S2=k(()=>m("span",{class:"text-tx-secondary"},"\u53EA\u5C55\u5F00\u4E00\u4E2A\u4E00\u7EA7\u83DC\u5355",-1)),k2={class:"setting-item mb-5 flex justify-between items-center"},j2=k(()=>m("div",{class:"text-tx-secondary flex-none mr-3"},"\u83DC\u5355\u680F\u5BBD\u5EA6",-1)),N2={class:"setting-item mb-5 flex justify-between items-center"},q2=k(()=>m("div",{class:"text-tx-secondary flex-none mr-3"},"\u663E\u793ALOGO",-1)),F2={class:"setting-item mb-5 flex justify-between items-center"},G2=k(()=>m("div",{class:"text-tx-secondary flex-none mr-3"},"\u663E\u793A\u9762\u5305\u5C51",-1)),U2={class:"setting-item mb-5 flex justify-between items-center"},Y2=g({__name:"drawer",setup(a){const o=C(),e=E3(["#409EFF","#28C76F","#EA5455","#FF9F43","#01CFE8","#4A5DFF"]),i=[{type:"dark",image:V2},{type:"light",image:f2}],c=v({get(){return o.sideTheme},set(b){o.setSetting({key:"sideTheme",value:b})}}),t=v({get(){return o.openMultipleTabs},set(b){o.setSetting({key:"openMultipleTabs",value:b})}}),s=v({get(){return o.isUniqueOpened},set(b){o.setSetting({key:"isUniqueOpened",value:b})}}),n=v({get(){return o.sideWidth},set(b){o.setSetting({key:"sideWidth",value:b})}}),h=v({get(){return o.showDrawer},set(b){o.setSetting({key:"showDrawer",value:b})}}),d=v({get(){return o.theme},set(b){o.setSetting({key:"theme",value:b}),I()}}),z=v({get(){return o.showLogo},set(b){o.setSetting({key:"showLogo",value:b})}}),w=v({get(){return o.showCrumb},set(b){o.setSetting({key:"showCrumb",value:b})}}),H=a1(),I=()=>{o.setTheme(H.value)},x=()=>{$1(H)(),I()},M=()=>{H.value=!1,o.resetTheme(),I()};return(b,V)=>{const p3=S,q=j1,K=N1,m1=q1,d1=F1,h1=$3;return _(),y("div",x2,[u(h1,{modelValue:r(h),"onUpdate:modelValue":V[6]||(V[6]=f=>D(h)?h.value=f:null),"append-to-body":"",direction:"rtl",size:"250px",title:"\u4E3B\u9898\u8BBE\u7F6E"},{default:p(()=>[m("div",E2,[M2,m("div",L2,[(_(),y(Z,null,c3(i,f=>m("div",{class:"mr-4 flex relative text-primary",key:f.type,onClick:Y6=>c.value=f.type},[m("img",{src:f.image,width:"52",height:"36"},null,8,T2),r(c)==f.type?(_(),A(p3,{key:0,class:"icon-select",name:"el-icon-Select"})):O("",!0)],8,H2)),64))])]),m("div",O2,[B2,m("div",null,[u(q,{modelValue:r(d),"onUpdate:modelValue":V[0]||(V[0]=f=>D(d)?d.value=f:null),predefine:r(e)},null,8,["modelValue","predefine"])])]),m("div",I2,[D2,m("div",null,[u(K,{"model-value":r(H),onChange:x},null,8,["model-value"])])]),m("div",R2,[P2,m("div",null,[u(K,{modelValue:r(t),"onUpdate:modelValue":V[1]||(V[1]=f=>D(t)?t.value=f:null),"active-value":!0,"inactive-value":!1},null,8,["modelValue"])])]),m("div",C2,[S2,m("div",null,[u(K,{modelValue:r(s),"onUpdate:modelValue":V[2]||(V[2]=f=>D(s)?s.value=f:null),"active-value":!0,"inactive-value":!1},null,8,["modelValue"])])]),m("div",k2,[j2,m("div",null,[u(m1,{modelValue:r(n),"onUpdate:modelValue":V[3]||(V[3]=f=>D(n)?n.value=f:null),min:180,max:250},null,8,["modelValue"])])]),m("div",N2,[q2,m("div",null,[u(K,{modelValue:r(z),"onUpdate:modelValue":V[4]||(V[4]=f=>D(z)?z.value=f:null),"active-value":!0,"inactive-value":!1},null,8,["modelValue"])])]),m("div",F2,[G2,m("div",null,[u(K,{modelValue:r(w),"onUpdate:modelValue":V[5]||(V[5]=f=>D(w)?w.value=f:null),"active-value":!0,"inactive-value":!1},null,8,["modelValue"])])]),m("div",U2,[u(d1,{onClick:M},{default:p(()=>[Y("\u91CD\u7F6E\u4E3B\u9898")]),_:1})])]),_:1},8,["modelValue"])])}}});const W2=B(Y2,[["__scopeId","data-v-de23e12b"]]),Z2=g({__name:"index",setup(a){const o=C(),e=()=>{o.setSetting({key:"showDrawer",value:!0})};return(i,c)=>{const t=S;return _(),y("div",{class:"setting flex cursor-pointer h-full items-center px-2",onClick:e},[u(t,{size:16,name:"el-icon-Setting"}),u(W2)])}}});function X2(){const a=H3(),o=L3(),e=t3(),i=C(),c=v(()=>e.getTabList),t=v(()=>o.fullPath);return{tabsLists:c,currentTab:t,addTab:()=>{!i.openMultipleTabs||e.addTab(a)},removeTab:z=>{!i.openMultipleTabs||(z=z!=null?z:o.fullPath,e.removeTab(z,a))},removeOtherTab:()=>{!i.openMultipleTabs||e.removeOtherTab(o)},removeAllTab:()=>{!i.openMultipleTabs||e.removeAllTab(a)}}}const $2={class:"app-tabs pl-4 flex bg-body"},K2={class:"flex-1 min-w-0"},J2={class:"flex items-center px-3"},Q2=g({__name:"multiple-tabs",setup(a){const o=H3(),e=t3(),{removeOtherTab:i,addTab:c,removeAllTab:t,removeTab:s,tabsLists:n,currentTab:h}=X2();s1(()=>{c()});const d=w=>{const H=e.tasMap[w];o.push(c1(H))},z=w=>{switch(w){case"closeCurrent":s();break;case"closeOther":i();break;case"closeAll":t();break}};return(w,H)=>{const I=G1,x=U1,M=S,b=K3,V=J3,p3=Q3;return _(),y("div",$2,[m("div",K2,[u(x,{"model-value":r(h),closable:r(n).length>1,onTabChange:d,onTabRemove:H[0]||(H[0]=q=>r(s)(q))},{default:p(()=>[(_(!0),y(Z,null,c3(r(n),q=>(_(),A(I,{key:q.fullPath,label:q.title,name:q.fullPath},null,8,["label","name"]))),128))]),_:1},8,["model-value","closable"])]),u(p3,{onCommand:z},{dropdown:p(()=>[u(V,null,{default:p(()=>[u(b,{command:"closeCurrent"},{default:p(()=>[Y(" \u5173\u95ED\u5F53\u524D ")]),_:1}),u(b,{command:"closeOther"},{default:p(()=>[Y(" \u5173\u95ED\u5176\u4ED6 ")]),_:1}),u(b,{command:"closeAll"},{default:p(()=>[Y(" \u5173\u95ED\u5168\u90E8 ")]),_:1})]),_:1})]),default:p(()=>[m("span",J2,[u(M,{size:16,name:"el-icon-arrow-down"})])]),_:1})])}}});const a6=B(Q2,[["__scopeId","data-v-b3197fe5"]]),o6={class:"header"},e6={class:"navbar"},l6={class:"flex-1 flex"},i6={class:"navbar-item"},c6={class:"navbar-item"},t6={key:0,class:"flex items-center px-2"},s6={class:"flex"},n6={key:0,class:"navbar-item"},r6={class:"navbar-item"},u6={class:"navbar-item"},m6=g({__name:"index",setup(a){const o=N(),e=v(()=>o.isMobile),i=C();return(c,t)=>(_(),y("header",o6,[m("div",e6,[m("div",l6,[m("div",i6,[u(p2)]),m("div",c6,[u(z2)]),!r(e)&&r(i).showCrumb?(_(),y("div",t6,[u(b2)])):O("",!0)]),m("div",s6,[r(e)?O("",!0):(_(),y("div",n6,[u(y2)])),m("div",r6,[u(A2)]),m("div",u6,[u(Z2)])])]),r(i).openMultipleTabs?(_(),A(a6,{key:0})):O("",!0)]))}});const d6={class:"layout-default flex h-screen w-full"},h6={class:"app-aside"},_6={class:"flex-1 flex flex-col min-w-0"},v6={class:"app-header"},p6={class:"app-main flex-1 min-h-0"},z6=g({__name:"index",setup(a){return(o,e)=>(_(),y("div",d6,[m("div",h6,[u(v2)]),m("div",_6,[m("div",v6,[u(m6)]),m("div",p6,[u(F0)])])]))}}),O3=()=>Promise.resolve(z6),B3=Symbol(),b6=[{path:"/:pathMatch(.*)*",component:()=>l(()=>import("./404.e5d3d45f.js"),["assets/404.e5d3d45f.js","assets/error.ce387314.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/vue-router.9f65afb1.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/error.1aaeb02c.css"])},{path:E.ERROR_403,component:()=>l(()=>import("./403.f527df19.js"),["assets/403.f527df19.js","assets/error.ce387314.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/vue-router.9f65afb1.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/error.1aaeb02c.css"])},{path:E.LOGIN,component:()=>l(()=>import("./login.186db4ce.js"),["assets/login.186db4ce.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/vue-router.9f65afb1.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/login.ba2fa480.css"])},{path:"/user",component:O3,children:[{path:"setting",component:()=>l(()=>import("./setting.327adae0.js"),["assets/setting.327adae0.js","assets/index.fd04a214.js","assets/@vue.51d7f2d8.js","assets/index.8d99c3e6.css","assets/element-plus.4328d892.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/picker.3821e495.js","assets/index.5759a1a6.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/index.af446662.js","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/index.fe1d30dd.js","assets/index.bb3c88e6.css","assets/index.5f944d34.js","assets/index.vue_vue_type_script_setup_true_lang.dc835bba.js","assets/usePaging.2ad8e1e6.js","assets/vue3-video-play.b911321b.js","assets/vue3-video-play.74881f83.css","assets/index.be52e81c.css","assets/vuedraggable.0cb40d3a.js","assets/vue.5de34049.js","assets/sortablejs.ef73fc5c.js","assets/picker.f0cb09c5.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),name:Symbol(),meta:{title:"\u4E2A\u4EBA\u8BBE\u7F6E"}},{path:"user_informationgdetil",component:()=>l(()=>import("./detil.f1685fed.js"),["assets/detil.f1685fed.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/vue-router.9f65afb1.js","assets/informationg.0fb089cd.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/detil.9f66ded4.css"]),name:Symbol(),meta:{title:"\u6863\u6848\u8BE6\u60C5"}}]}],N3={path:E.INDEX,component:O3,name:B3},x3=Object.assign({"/src/views/account/login.vue":()=>l(()=>import("./login.186db4ce.js"),["assets/login.186db4ce.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/vue-router.9f65afb1.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/login.ba2fa480.css"]),"/src/views/app/recharge/index.vue":()=>l(()=>import("./index.169848f5.js"),["assets/index.169848f5.js","assets/index.fd04a214.js","assets/@vue.51d7f2d8.js","assets/index.8d99c3e6.css","assets/element-plus.4328d892.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/app_update/edit.vue":()=>l(()=>import("./edit.76525d73.js"),["assets/edit.76525d73.js","assets/edit.vue_vue_type_script_setup_true_name_appUpdateEdit_lang.e5edc10c.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.5759a1a6.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/app_update/index.vue":()=>l(()=>import("./index.1b7f31fc.js"),["assets/index.1b7f31fc.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/index.vue_vue_type_script_setup_true_lang.17266fa4.js","assets/usePaging.2ad8e1e6.js","assets/useDictOptions.a45fc8ac.js","assets/edit.vue_vue_type_script_setup_true_name_appUpdateEdit_lang.e5edc10c.js","assets/index.5759a1a6.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/article/column/edit.vue":()=>l(()=>import("./edit.bfa6c0af.js"),["assets/edit.bfa6c0af.js","assets/edit.vue_vue_type_script_setup_true_lang.51e254d4.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/article.cb24b6c9.js","assets/index.5759a1a6.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/article/column/index.vue":()=>l(()=>import("./index.22a34b0a.js"),["assets/index.22a34b0a.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/article.cb24b6c9.js","assets/usePaging.2ad8e1e6.js","assets/edit.vue_vue_type_script_setup_true_lang.51e254d4.js","assets/index.5759a1a6.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/article/lists/edit.vue":()=>l(()=>import("./edit.980b48ee.js"),["assets/edit.980b48ee.js","assets/index.fd04a214.js","assets/@vue.51d7f2d8.js","assets/index.8d99c3e6.css","assets/element-plus.4328d892.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_style_index_0_lang.60c96350.js","assets/@wangeditor.afd76521.js","assets/@wangeditor.4f35b623.css","assets/picker.3821e495.js","assets/index.5759a1a6.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/index.af446662.js","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/index.fe1d30dd.js","assets/index.bb3c88e6.css","assets/index.5f944d34.js","assets/index.vue_vue_type_script_setup_true_lang.dc835bba.js","assets/usePaging.2ad8e1e6.js","assets/vue3-video-play.b911321b.js","assets/vue3-video-play.74881f83.css","assets/index.be52e81c.css","assets/vuedraggable.0cb40d3a.js","assets/vue.5de34049.js","assets/sortablejs.ef73fc5c.js","assets/picker.f0cb09c5.css","assets/index.0d25a475.css","assets/vue-router.9f65afb1.js","assets/useDictOptions.a45fc8ac.js","assets/article.cb24b6c9.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/article/lists/index.vue":()=>l(()=>import("./index.a7fe2524.js"),["assets/index.a7fe2524.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/article.cb24b6c9.js","assets/useDictOptions.a45fc8ac.js","assets/usePaging.2ad8e1e6.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/category_business/edit.vue":()=>l(()=>import("./edit.967f2896.js"),["assets/edit.967f2896.js","assets/edit.vue_vue_type_script_setup_true_name_categoryBusinessEdit_lang.a5ab95cf.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.5759a1a6.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/category_business/index.vue":()=>l(()=>import("./index.8a76db27.js"),["assets/index.8a76db27.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/index.vue_vue_type_script_setup_true_lang.17266fa4.js","assets/usePaging.2ad8e1e6.js","assets/useDictOptions.a45fc8ac.js","assets/edit.vue_vue_type_script_setup_true_name_categoryBusinessEdit_lang.a5ab95cf.js","assets/index.5759a1a6.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/channel/h5.vue":()=>l(()=>import("./h5.79649a54.js"),["assets/h5.79649a54.js","assets/index.fd04a214.js","assets/@vue.51d7f2d8.js","assets/index.8d99c3e6.css","assets/element-plus.4328d892.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/channel/open_setting.vue":()=>l(()=>import("./open_setting.45f47746.js"),["assets/open_setting.45f47746.js","assets/index.fd04a214.js","assets/@vue.51d7f2d8.js","assets/index.8d99c3e6.css","assets/element-plus.4328d892.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/channel/weapp.vue":()=>l(()=>import("./weapp.2f60972e.js"),["assets/weapp.2f60972e.js","assets/index.fd04a214.js","assets/@vue.51d7f2d8.js","assets/index.8d99c3e6.css","assets/element-plus.4328d892.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/picker.3821e495.js","assets/index.5759a1a6.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/index.af446662.js","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/index.fe1d30dd.js","assets/index.bb3c88e6.css","assets/index.5f944d34.js","assets/index.vue_vue_type_script_setup_true_lang.dc835bba.js","assets/usePaging.2ad8e1e6.js","assets/vue3-video-play.b911321b.js","assets/vue3-video-play.74881f83.css","assets/index.be52e81c.css","assets/vuedraggable.0cb40d3a.js","assets/vue.5de34049.js","assets/sortablejs.ef73fc5c.js","assets/picker.f0cb09c5.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/channel/wx_oa/config.vue":()=>l(()=>import("./config.a98dd964.js"),["assets/config.a98dd964.js","assets/index.fd04a214.js","assets/@vue.51d7f2d8.js","assets/index.8d99c3e6.css","assets/element-plus.4328d892.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/picker.3821e495.js","assets/index.5759a1a6.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/index.af446662.js","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/index.fe1d30dd.js","assets/index.bb3c88e6.css","assets/index.5f944d34.js","assets/index.vue_vue_type_script_setup_true_lang.dc835bba.js","assets/usePaging.2ad8e1e6.js","assets/vue3-video-play.b911321b.js","assets/vue3-video-play.74881f83.css","assets/index.be52e81c.css","assets/vuedraggable.0cb40d3a.js","assets/vue.5de34049.js","assets/sortablejs.ef73fc5c.js","assets/picker.f0cb09c5.css","assets/wx_oa.115c1d98.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/channel/wx_oa/menu.vue":()=>l(()=>import("./menu.124c50be.js"),["assets/menu.124c50be.js","assets/index.fd04a214.js","assets/@vue.51d7f2d8.js","assets/index.8d99c3e6.css","assets/element-plus.4328d892.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/oa-phone.d9c736e3.js","assets/useMenuOa.d8466380.js","assets/wx_oa.115c1d98.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/oa-phone.231c030b.css","assets/oa-attr.76d371a3.js","assets/index.fe1d30dd.js","assets/index.bb3c88e6.css","assets/index.5759a1a6.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/oa-menu-form.vue_vue_type_script_setup_true_lang.87d0840e.js","assets/oa-menu-form-edit.vue_vue_type_script_setup_true_lang.610f90ea.js"]),"/src/views/channel/wx_oa/menu_com/oa-attr.vue":()=>l(()=>import("./oa-attr.76d371a3.js"),["assets/oa-attr.76d371a3.js","assets/index.fe1d30dd.js","assets/@vue.51d7f2d8.js","assets/index.bb3c88e6.css","assets/index.5759a1a6.js","assets/element-plus.4328d892.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/useMenuOa.d8466380.js","assets/wx_oa.115c1d98.js","assets/oa-menu-form.vue_vue_type_script_setup_true_lang.87d0840e.js","assets/oa-menu-form-edit.vue_vue_type_script_setup_true_lang.610f90ea.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/channel/wx_oa/menu_com/oa-menu-form-edit.vue":()=>l(()=>import("./oa-menu-form-edit.b07e5e33.js"),["assets/oa-menu-form-edit.b07e5e33.js","assets/oa-menu-form-edit.vue_vue_type_script_setup_true_lang.610f90ea.js","assets/index.5759a1a6.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/oa-menu-form.vue_vue_type_script_setup_true_lang.87d0840e.js","assets/useMenuOa.d8466380.js","assets/wx_oa.115c1d98.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/channel/wx_oa/menu_com/oa-menu-form.vue":()=>l(()=>import("./oa-menu-form.b34f360f.js"),["assets/oa-menu-form.b34f360f.js","assets/oa-menu-form.vue_vue_type_script_setup_true_lang.87d0840e.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/useMenuOa.d8466380.js","assets/wx_oa.115c1d98.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/channel/wx_oa/menu_com/oa-phone.vue":()=>l(()=>import("./oa-phone.d9c736e3.js"),["assets/oa-phone.d9c736e3.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/useMenuOa.d8466380.js","assets/wx_oa.115c1d98.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/oa-phone.231c030b.css"]),"/src/views/channel/wx_oa/reply/default_reply.vue":()=>l(()=>import("./default_reply.8274379d.js"),["assets/default_reply.8274379d.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/wx_oa.115c1d98.js","assets/usePaging.2ad8e1e6.js","assets/edit.vue_vue_type_script_setup_true_lang.cfc20a70.js","assets/index.5759a1a6.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/channel/wx_oa/reply/edit.vue":()=>l(()=>import("./edit.0074b3e9.js"),["assets/edit.0074b3e9.js","assets/edit.vue_vue_type_script_setup_true_lang.cfc20a70.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/wx_oa.115c1d98.js","assets/index.5759a1a6.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/channel/wx_oa/reply/follow_reply.vue":()=>l(()=>import("./follow_reply.246b4372.js"),["assets/follow_reply.246b4372.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/wx_oa.115c1d98.js","assets/usePaging.2ad8e1e6.js","assets/edit.vue_vue_type_script_setup_true_lang.cfc20a70.js","assets/index.5759a1a6.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/channel/wx_oa/reply/keyword_reply.vue":()=>l(()=>import("./keyword_reply.cb844484.js"),["assets/keyword_reply.cb844484.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/wx_oa.115c1d98.js","assets/usePaging.2ad8e1e6.js","assets/edit.vue_vue_type_script_setup_true_lang.cfc20a70.js","assets/index.5759a1a6.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/company/dialog.vue":()=>l(()=>import("./dialog.8098c939.js"),["assets/dialog.8098c939.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/dialog.6aac509b.css"]),"/src/views/company/dialog_index.vue":()=>l(()=>import("./dialog_index.ef276b62.js"),["assets/dialog_index.ef276b62.js","assets/dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.383436e1.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/usePaging.2ad8e1e6.js","assets/company.d1e8fc82.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/company/dialog_index_man.vue":()=>l(()=>import("./dialog_index_man.9bef1feb.js"),["assets/dialog_index_man.9bef1feb.js","assets/dialog_index_man.vue_vue_type_script_setup_true_name_companyLists_lang.bd396891.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/usePaging.2ad8e1e6.js","assets/role.8d2a6d5e.js","assets/useDictOptions.a45fc8ac.js","assets/admin.f0e2c7b9.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/company/dialog_index_personnel.vue":()=>l(()=>import("./dialog_index_personnel.bd885d34.js"),["assets/dialog_index_personnel.bd885d34.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/usePaging.2ad8e1e6.js","assets/role.8d2a6d5e.js","assets/useDictOptions.a45fc8ac.js","assets/admin.f0e2c7b9.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/company/edit.vue":()=>l(()=>import("./edit.250f8b9a.js"),["assets/edit.250f8b9a.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/vue-router.9f65afb1.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/company.d1e8fc82.js","assets/common.a58b263a.js","assets/dict.58face92.js","assets/lodash.08438971.js","assets/dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.383436e1.js","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/usePaging.2ad8e1e6.js","assets/dialog_index_man.vue_vue_type_script_setup_true_name_companyLists_lang.bd396891.js","assets/role.8d2a6d5e.js","assets/useDictOptions.a45fc8ac.js","assets/admin.f0e2c7b9.js","assets/axios.105476b3.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/edit.a8bfff6c.css"]),"/src/views/company/index.vue":()=>l(()=>import("./index.efba88ae.js"),["assets/index.efba88ae.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/vue-router.9f65afb1.js","assets/usePaging.2ad8e1e6.js","assets/useDictOptions.a45fc8ac.js","assets/company.d1e8fc82.js","assets/lodash.08438971.js","assets/dict.58face92.js","assets/dict.070e6995.js","assets/dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.383436e1.js","assets/axios.105476b3.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/index.ed16e5c3.css"]),"/src/views/company/subordinate.vue":()=>l(()=>import("./subordinate.56525f52.js"),["assets/subordinate.56525f52.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/vue-router.9f65afb1.js","assets/usePaging.2ad8e1e6.js","assets/useDictOptions.a45fc8ac.js","assets/company.d1e8fc82.js","assets/admin.f0e2c7b9.js","assets/lodash.08438971.js","assets/dict.58face92.js","assets/axios.105476b3.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/subordinate.a60ba8ed.css"]),"/src/views/company_complaint_feedback/edit.vue":()=>l(()=>import("./edit.b417862c.js"),["assets/edit.b417862c.js","assets/edit.vue_vue_type_script_setup_true_name_companyComplaintFeedbackEdit_lang.e39d83b5.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.5759a1a6.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/company_complaint_feedback/index.vue":()=>l(()=>import("./index.936eca5b.js"),["assets/index.936eca5b.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/usePaging.2ad8e1e6.js","assets/useDictOptions.a45fc8ac.js","assets/edit.vue_vue_type_script_setup_true_name_companyComplaintFeedbackEdit_lang.e39d83b5.js","assets/index.5759a1a6.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/company_form/edit.vue":()=>l(()=>import("./edit.24a195ab.js"),["assets/edit.24a195ab.js","assets/edit.vue_vue_type_script_setup_true_name_companyFormEdit_lang.0f448649.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.5759a1a6.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/company_form/index.vue":()=>l(()=>import("./index.7b42a399.js"),["assets/index.7b42a399.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/usePaging.2ad8e1e6.js","assets/useDictOptions.a45fc8ac.js","assets/edit.vue_vue_type_script_setup_true_name_companyFormEdit_lang.0f448649.js","assets/index.5759a1a6.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/consumer/components/account-adjust.vue":()=>l(()=>import("./account-adjust.9224f847.js"),["assets/account-adjust.9224f847.js","assets/account-adjust.vue_vue_type_script_setup_true_lang.b96ecb1d.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.5759a1a6.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/consumer/lists/detail copy.vue":()=>l(()=>import("./detail copy.bab4c973.js"),["assets/detail copy.bab4c973.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.dc835bba.js","assets/vue-router.9f65afb1.js","assets/consumer.e5ac2901.js","assets/account-adjust.vue_vue_type_script_setup_true_lang.b96ecb1d.js","assets/index.5759a1a6.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/consumer/lists/detail.vue":()=>l(()=>import("./detail.becaabf2.js"),["assets/detail.becaabf2.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/vue-router.9f65afb1.js","assets/consumer.e5ac2901.js","assets/common.a58b263a.js","assets/dict.58face92.js","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/usePaging.2ad8e1e6.js","assets/company.d1e8fc82.js","assets/lodash.08438971.js","assets/account-adjust.vue_vue_type_script_setup_true_lang.b96ecb1d.js","assets/index.5759a1a6.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/axios.105476b3.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/detail.91395de5.css"]),"/src/views/consumer/lists/index.vue":()=>l(()=>import("./index.8bb0dbd9.js"),["assets/index.8bb0dbd9.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/index.vue_vue_type_script_setup_true_lang.7ac7ce7d.js","assets/index.5759a1a6.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/vue-router.9f65afb1.js","assets/usePaging.2ad8e1e6.js","assets/consumer.e5ac2901.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/index.5e13ecf8.css"]),"/src/views/contract/company.vue":()=>l(()=>import("./company.c2a04cef.js"),["assets/company.c2a04cef.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/vue-router.9f65afb1.js","assets/usePaging.2ad8e1e6.js","assets/useDictOptions.a45fc8ac.js","assets/company.d1e8fc82.js","assets/lodash.08438971.js","assets/dict.58face92.js","assets/dict.070e6995.js","assets/dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.dac25500.js","assets/axios.105476b3.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/company.ed16e5c3.css"]),"/src/views/contract/contractDetil.vue":()=>l(()=>import("./contractDetil.e8de5db7.js"),["assets/contractDetil.e8de5db7.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/vue-router.9f65afb1.js","assets/contract.e9a9dbc8.js","assets/consumer.e5ac2901.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/contractDetil.82bc7784.css"]),"/src/views/contract/dialog_index.vue":()=>l(()=>import("./dialog_index.3e426302.js"),["assets/dialog_index.3e426302.js","assets/dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.dac25500.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/usePaging.2ad8e1e6.js","assets/company.d1e8fc82.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/contract/edit.vue":()=>l(()=>import("./edit.ad79be0f.js"),["assets/edit.ad79be0f.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.5759a1a6.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/contract.e9a9dbc8.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/contract/index.vue":()=>l(()=>import("./index.5fbdd134.js"),["assets/index.5fbdd134.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/vue-router.9f65afb1.js","assets/usePaging.2ad8e1e6.js","assets/useDictOptions.a45fc8ac.js","assets/contract.e9a9dbc8.js","assets/lodash.08438971.js","assets/dict.58face92.js","assets/company.d1e8fc82.js","assets/axios.105476b3.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/index.0414e924.css"]),"/src/views/contract/vehicle_detail.vue":()=>l(()=>import("./vehicle_detail.1b88bd64.js"),["assets/vehicle_detail.1b88bd64.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/vue-router.9f65afb1.js","assets/contract.e9a9dbc8.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/vehicle_detail.7aa08ed6.css"]),"/src/views/contract/vehicle_list.vue":()=>l(()=>import("./vehicle_list.cc37228f.js"),["assets/vehicle_list.cc37228f.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/usePaging.2ad8e1e6.js","assets/useDictOptions.a45fc8ac.js","assets/contract.e9a9dbc8.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/vehicle_list.4db1527d.css"]),"/src/views/decoration/component/add-nav.vue":()=>l(()=>import("./add-nav.debd1e13.js"),["assets/add-nav.debd1e13.js","assets/add-nav.vue_vue_type_script_setup_true_lang.35798c7b.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.fe1d30dd.js","assets/index.bb3c88e6.css","assets/picker.d415e27a.js","assets/index.5759a1a6.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/picker.d164339d.css","assets/picker.3821e495.js","assets/index.af446662.js","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/index.5f944d34.js","assets/index.vue_vue_type_script_setup_true_lang.dc835bba.js","assets/usePaging.2ad8e1e6.js","assets/vue3-video-play.b911321b.js","assets/vue3-video-play.74881f83.css","assets/index.be52e81c.css","assets/vuedraggable.0cb40d3a.js","assets/vue.5de34049.js","assets/sortablejs.ef73fc5c.js","assets/picker.f0cb09c5.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/decoration/component/decoration-img.vue":()=>l(()=>import("./decoration-img.d7e5dbec.js"),["assets/decoration-img.d7e5dbec.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/decoration-img.e03f874f.css"]),"/src/views/decoration/component/pages/attr-setting.vue":()=>l(()=>import("./attr-setting.ff5f4f7b.js"),["assets/attr-setting.ff5f4f7b.js","assets/attr-setting.vue_vue_type_script_setup_true_lang.4680a37f.js","assets/index.500fd836.js","assets/attr.vue_vue_type_script_setup_true_lang.f9c983cd.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.fe1d30dd.js","assets/index.bb3c88e6.css","assets/picker.d415e27a.js","assets/index.5759a1a6.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/picker.d164339d.css","assets/picker.3821e495.js","assets/index.af446662.js","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/index.5f944d34.js","assets/index.vue_vue_type_script_setup_true_lang.dc835bba.js","assets/usePaging.2ad8e1e6.js","assets/vue3-video-play.b911321b.js","assets/vue3-video-play.74881f83.css","assets/index.be52e81c.css","assets/vuedraggable.0cb40d3a.js","assets/vue.5de34049.js","assets/sortablejs.ef73fc5c.js","assets/picker.f0cb09c5.css","assets/content.vue_vue_type_script_setup_true_lang.b3e4f379.js","assets/decoration-img.d7e5dbec.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/decoration-img.e03f874f.css","assets/attr.vue_vue_type_script_setup_true_lang.a5f46be8.js","assets/content.416ba4d2.js","assets/content.3c393d61.css","assets/attr.vue_vue_type_script_setup_true_lang.4cdc919e.js","assets/add-nav.vue_vue_type_script_setup_true_lang.35798c7b.js","assets/content.b3fbaeeb.js","assets/content.4bb46171.css","assets/attr.vue_vue_type_script_setup_true_lang.d9838080.js","assets/content.vue_vue_type_script_setup_true_lang.888a9caf.js","assets/attr.vue_vue_type_script_setup_true_lang.d01577b5.js","assets/content.87312235.js","assets/decoration.6f039a71.js","assets/content.199cf006.css","assets/attr.vue_vue_type_script_setup_true_lang.0fc534ba.js","assets/content.39f10dd3.js","assets/content.0b4d2f25.css","assets/attr.vue_vue_type_script_setup_true_lang.871cb086.js","assets/content.vue_vue_type_script_setup_true_lang.e6931808.js","assets/attr.vue_vue_type_script_setup_true_lang.00e826d0.js","assets/content.d63a41a9.js","assets/content.93b4d62b.css"]),"/src/views/decoration/component/pages/menu.vue":()=>l(()=>import("./menu.6829f7a9.js"),["assets/menu.6829f7a9.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/menu.c64cbd13.css"]),"/src/views/decoration/component/pages/preview-pc.vue":()=>l(()=>import("./preview-pc.e164827a.js"),["assets/preview-pc.e164827a.js","assets/index.500fd836.js","assets/attr.vue_vue_type_script_setup_true_lang.f9c983cd.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.fe1d30dd.js","assets/index.bb3c88e6.css","assets/picker.d415e27a.js","assets/index.5759a1a6.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/picker.d164339d.css","assets/picker.3821e495.js","assets/index.af446662.js","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/index.5f944d34.js","assets/index.vue_vue_type_script_setup_true_lang.dc835bba.js","assets/usePaging.2ad8e1e6.js","assets/vue3-video-play.b911321b.js","assets/vue3-video-play.74881f83.css","assets/index.be52e81c.css","assets/vuedraggable.0cb40d3a.js","assets/vue.5de34049.js","assets/sortablejs.ef73fc5c.js","assets/picker.f0cb09c5.css","assets/content.vue_vue_type_script_setup_true_lang.b3e4f379.js","assets/decoration-img.d7e5dbec.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/decoration-img.e03f874f.css","assets/attr.vue_vue_type_script_setup_true_lang.a5f46be8.js","assets/content.416ba4d2.js","assets/content.3c393d61.css","assets/attr.vue_vue_type_script_setup_true_lang.4cdc919e.js","assets/add-nav.vue_vue_type_script_setup_true_lang.35798c7b.js","assets/content.b3fbaeeb.js","assets/content.4bb46171.css","assets/attr.vue_vue_type_script_setup_true_lang.d9838080.js","assets/content.vue_vue_type_script_setup_true_lang.888a9caf.js","assets/attr.vue_vue_type_script_setup_true_lang.d01577b5.js","assets/content.87312235.js","assets/decoration.6f039a71.js","assets/content.199cf006.css","assets/attr.vue_vue_type_script_setup_true_lang.0fc534ba.js","assets/content.39f10dd3.js","assets/content.0b4d2f25.css","assets/attr.vue_vue_type_script_setup_true_lang.871cb086.js","assets/content.vue_vue_type_script_setup_true_lang.e6931808.js","assets/attr.vue_vue_type_script_setup_true_lang.00e826d0.js","assets/content.d63a41a9.js","assets/content.93b4d62b.css","assets/preview-pc.77355e30.css"]),"/src/views/decoration/component/pages/preview.vue":()=>l(()=>import("./preview.02c147d2.js"),["assets/preview.02c147d2.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.500fd836.js","assets/attr.vue_vue_type_script_setup_true_lang.f9c983cd.js","assets/index.fe1d30dd.js","assets/index.bb3c88e6.css","assets/picker.d415e27a.js","assets/index.5759a1a6.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/picker.d164339d.css","assets/picker.3821e495.js","assets/index.af446662.js","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/index.5f944d34.js","assets/index.vue_vue_type_script_setup_true_lang.dc835bba.js","assets/usePaging.2ad8e1e6.js","assets/vue3-video-play.b911321b.js","assets/vue3-video-play.74881f83.css","assets/index.be52e81c.css","assets/vuedraggable.0cb40d3a.js","assets/vue.5de34049.js","assets/sortablejs.ef73fc5c.js","assets/picker.f0cb09c5.css","assets/content.vue_vue_type_script_setup_true_lang.b3e4f379.js","assets/decoration-img.d7e5dbec.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/decoration-img.e03f874f.css","assets/attr.vue_vue_type_script_setup_true_lang.a5f46be8.js","assets/content.416ba4d2.js","assets/content.3c393d61.css","assets/attr.vue_vue_type_script_setup_true_lang.4cdc919e.js","assets/add-nav.vue_vue_type_script_setup_true_lang.35798c7b.js","assets/content.b3fbaeeb.js","assets/content.4bb46171.css","assets/attr.vue_vue_type_script_setup_true_lang.d9838080.js","assets/content.vue_vue_type_script_setup_true_lang.888a9caf.js","assets/attr.vue_vue_type_script_setup_true_lang.d01577b5.js","assets/content.87312235.js","assets/decoration.6f039a71.js","assets/content.199cf006.css","assets/attr.vue_vue_type_script_setup_true_lang.0fc534ba.js","assets/content.39f10dd3.js","assets/content.0b4d2f25.css","assets/attr.vue_vue_type_script_setup_true_lang.871cb086.js","assets/content.vue_vue_type_script_setup_true_lang.e6931808.js","assets/attr.vue_vue_type_script_setup_true_lang.00e826d0.js","assets/content.d63a41a9.js","assets/content.93b4d62b.css","assets/preview.705e23a4.css"]),"/src/views/decoration/component/widgets/banner/attr.vue":()=>l(()=>import("./attr.9c64ddbd.js"),["assets/attr.9c64ddbd.js","assets/attr.vue_vue_type_script_setup_true_lang.f9c983cd.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.fe1d30dd.js","assets/index.bb3c88e6.css","assets/picker.d415e27a.js","assets/index.5759a1a6.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/picker.d164339d.css","assets/picker.3821e495.js","assets/index.af446662.js","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/index.5f944d34.js","assets/index.vue_vue_type_script_setup_true_lang.dc835bba.js","assets/usePaging.2ad8e1e6.js","assets/vue3-video-play.b911321b.js","assets/vue3-video-play.74881f83.css","assets/index.be52e81c.css","assets/vuedraggable.0cb40d3a.js","assets/vue.5de34049.js","assets/sortablejs.ef73fc5c.js","assets/picker.f0cb09c5.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/decoration/component/widgets/banner/content.vue":()=>l(()=>import("./content.b043d1d3.js"),["assets/content.b043d1d3.js","assets/content.vue_vue_type_script_setup_true_lang.b3e4f379.js","assets/decoration-img.d7e5dbec.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/decoration-img.e03f874f.css"]),"/src/views/decoration/component/widgets/customer-service/attr.vue":()=>l(()=>import("./attr.327a5530.js"),["assets/attr.327a5530.js","assets/attr.vue_vue_type_script_setup_true_lang.a5f46be8.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/picker.3821e495.js","assets/index.5759a1a6.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/index.af446662.js","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/index.fe1d30dd.js","assets/index.bb3c88e6.css","assets/index.5f944d34.js","assets/index.vue_vue_type_script_setup_true_lang.dc835bba.js","assets/usePaging.2ad8e1e6.js","assets/vue3-video-play.b911321b.js","assets/vue3-video-play.74881f83.css","assets/index.be52e81c.css","assets/vuedraggable.0cb40d3a.js","assets/vue.5de34049.js","assets/sortablejs.ef73fc5c.js","assets/picker.f0cb09c5.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/decoration/component/widgets/customer-service/content.vue":()=>l(()=>import("./content.416ba4d2.js"),["assets/content.416ba4d2.js","assets/decoration-img.d7e5dbec.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/decoration-img.e03f874f.css","assets/content.3c393d61.css"]),"/src/views/decoration/component/widgets/my-service/attr.vue":()=>l(()=>import("./attr.c4156ab8.js"),["assets/attr.c4156ab8.js","assets/attr.vue_vue_type_script_setup_true_lang.4cdc919e.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/add-nav.vue_vue_type_script_setup_true_lang.35798c7b.js","assets/index.fe1d30dd.js","assets/index.bb3c88e6.css","assets/picker.d415e27a.js","assets/index.5759a1a6.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/picker.d164339d.css","assets/picker.3821e495.js","assets/index.af446662.js","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/index.5f944d34.js","assets/index.vue_vue_type_script_setup_true_lang.dc835bba.js","assets/usePaging.2ad8e1e6.js","assets/vue3-video-play.b911321b.js","assets/vue3-video-play.74881f83.css","assets/index.be52e81c.css","assets/vuedraggable.0cb40d3a.js","assets/vue.5de34049.js","assets/sortablejs.ef73fc5c.js","assets/picker.f0cb09c5.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/decoration/component/widgets/my-service/content.vue":()=>l(()=>import("./content.b3fbaeeb.js"),["assets/content.b3fbaeeb.js","assets/decoration-img.d7e5dbec.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/decoration-img.e03f874f.css","assets/content.4bb46171.css"]),"/src/views/decoration/component/widgets/nav/attr.vue":()=>l(()=>import("./attr.f7c491ed.js"),["assets/attr.f7c491ed.js","assets/attr.vue_vue_type_script_setup_true_lang.d9838080.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/add-nav.vue_vue_type_script_setup_true_lang.35798c7b.js","assets/index.fe1d30dd.js","assets/index.bb3c88e6.css","assets/picker.d415e27a.js","assets/index.5759a1a6.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/picker.d164339d.css","assets/picker.3821e495.js","assets/index.af446662.js","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/index.5f944d34.js","assets/index.vue_vue_type_script_setup_true_lang.dc835bba.js","assets/usePaging.2ad8e1e6.js","assets/vue3-video-play.b911321b.js","assets/vue3-video-play.74881f83.css","assets/index.be52e81c.css","assets/vuedraggable.0cb40d3a.js","assets/vue.5de34049.js","assets/sortablejs.ef73fc5c.js","assets/picker.f0cb09c5.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/decoration/component/widgets/nav/content.vue":()=>l(()=>import("./content.b37ea571.js"),["assets/content.b37ea571.js","assets/content.vue_vue_type_script_setup_true_lang.888a9caf.js","assets/decoration-img.d7e5dbec.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/decoration-img.e03f874f.css"]),"/src/views/decoration/component/widgets/news/attr.vue":()=>l(()=>import("./attr.11db8aff.js"),["assets/attr.11db8aff.js","assets/attr.vue_vue_type_script_setup_true_lang.d01577b5.js","assets/@vue.51d7f2d8.js"]),"/src/views/decoration/component/widgets/news/content.vue":()=>l(()=>import("./content.87312235.js"),["assets/content.87312235.js","assets/decoration.6f039a71.js","assets/@vue.51d7f2d8.js","assets/element-plus.4328d892.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/content.199cf006.css"]),"/src/views/decoration/component/widgets/search/attr.vue":()=>l(()=>import("./attr.b0ec395b.js"),["assets/attr.b0ec395b.js","assets/attr.vue_vue_type_script_setup_true_lang.0fc534ba.js","assets/@vue.51d7f2d8.js"]),"/src/views/decoration/component/widgets/search/content.vue":()=>l(()=>import("./content.39f10dd3.js"),["assets/content.39f10dd3.js","assets/@vue.51d7f2d8.js","assets/element-plus.4328d892.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/content.0b4d2f25.css"]),"/src/views/decoration/component/widgets/user-banner/attr.vue":()=>l(()=>import("./attr.1736f127.js"),["assets/attr.1736f127.js","assets/attr.vue_vue_type_script_setup_true_lang.871cb086.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.fe1d30dd.js","assets/index.bb3c88e6.css","assets/picker.d415e27a.js","assets/index.5759a1a6.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/picker.d164339d.css","assets/picker.3821e495.js","assets/index.af446662.js","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/index.5f944d34.js","assets/index.vue_vue_type_script_setup_true_lang.dc835bba.js","assets/usePaging.2ad8e1e6.js","assets/vue3-video-play.b911321b.js","assets/vue3-video-play.74881f83.css","assets/index.be52e81c.css","assets/vuedraggable.0cb40d3a.js","assets/vue.5de34049.js","assets/sortablejs.ef73fc5c.js","assets/picker.f0cb09c5.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/decoration/component/widgets/user-banner/content.vue":()=>l(()=>import("./content.98a438fa.js"),["assets/content.98a438fa.js","assets/content.vue_vue_type_script_setup_true_lang.e6931808.js","assets/decoration-img.d7e5dbec.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/decoration-img.e03f874f.css"]),"/src/views/decoration/component/widgets/user-info/attr.vue":()=>l(()=>import("./attr.7e74e28a.js"),["assets/attr.7e74e28a.js","assets/attr.vue_vue_type_script_setup_true_lang.00e826d0.js","assets/@vue.51d7f2d8.js"]),"/src/views/decoration/component/widgets/user-info/content.vue":()=>l(()=>import("./content.d63a41a9.js"),["assets/content.d63a41a9.js","assets/@vue.51d7f2d8.js","assets/element-plus.4328d892.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/content.93b4d62b.css"]),"/src/views/decoration/pages/index.vue":()=>l(()=>import("./index.2bfd557a.js"),["assets/index.2bfd557a.js","assets/index.fd04a214.js","assets/@vue.51d7f2d8.js","assets/index.8d99c3e6.css","assets/element-plus.4328d892.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/menu.6829f7a9.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/menu.c64cbd13.css","assets/preview.02c147d2.js","assets/index.500fd836.js","assets/attr.vue_vue_type_script_setup_true_lang.f9c983cd.js","assets/index.fe1d30dd.js","assets/index.bb3c88e6.css","assets/picker.d415e27a.js","assets/index.5759a1a6.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/picker.d164339d.css","assets/picker.3821e495.js","assets/index.af446662.js","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/index.5f944d34.js","assets/index.vue_vue_type_script_setup_true_lang.dc835bba.js","assets/usePaging.2ad8e1e6.js","assets/vue3-video-play.b911321b.js","assets/vue3-video-play.74881f83.css","assets/index.be52e81c.css","assets/vuedraggable.0cb40d3a.js","assets/vue.5de34049.js","assets/sortablejs.ef73fc5c.js","assets/picker.f0cb09c5.css","assets/content.vue_vue_type_script_setup_true_lang.b3e4f379.js","assets/decoration-img.d7e5dbec.js","assets/decoration-img.e03f874f.css","assets/attr.vue_vue_type_script_setup_true_lang.a5f46be8.js","assets/content.416ba4d2.js","assets/content.3c393d61.css","assets/attr.vue_vue_type_script_setup_true_lang.4cdc919e.js","assets/add-nav.vue_vue_type_script_setup_true_lang.35798c7b.js","assets/content.b3fbaeeb.js","assets/content.4bb46171.css","assets/attr.vue_vue_type_script_setup_true_lang.d9838080.js","assets/content.vue_vue_type_script_setup_true_lang.888a9caf.js","assets/attr.vue_vue_type_script_setup_true_lang.d01577b5.js","assets/content.87312235.js","assets/decoration.6f039a71.js","assets/content.199cf006.css","assets/attr.vue_vue_type_script_setup_true_lang.0fc534ba.js","assets/content.39f10dd3.js","assets/content.0b4d2f25.css","assets/attr.vue_vue_type_script_setup_true_lang.871cb086.js","assets/content.vue_vue_type_script_setup_true_lang.e6931808.js","assets/attr.vue_vue_type_script_setup_true_lang.00e826d0.js","assets/content.d63a41a9.js","assets/content.93b4d62b.css","assets/preview.705e23a4.css","assets/attr-setting.vue_vue_type_script_setup_true_lang.4680a37f.js","assets/index.7d5fac29.css"]),"/src/views/decoration/pc.vue":()=>l(()=>import("./pc.efe0414f.js"),["assets/pc.efe0414f.js","assets/index.fd04a214.js","assets/@vue.51d7f2d8.js","assets/index.8d99c3e6.css","assets/element-plus.4328d892.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/menu.6829f7a9.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/menu.c64cbd13.css","assets/preview-pc.e164827a.js","assets/index.500fd836.js","assets/attr.vue_vue_type_script_setup_true_lang.f9c983cd.js","assets/index.fe1d30dd.js","assets/index.bb3c88e6.css","assets/picker.d415e27a.js","assets/index.5759a1a6.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/picker.d164339d.css","assets/picker.3821e495.js","assets/index.af446662.js","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/index.5f944d34.js","assets/index.vue_vue_type_script_setup_true_lang.dc835bba.js","assets/usePaging.2ad8e1e6.js","assets/vue3-video-play.b911321b.js","assets/vue3-video-play.74881f83.css","assets/index.be52e81c.css","assets/vuedraggable.0cb40d3a.js","assets/vue.5de34049.js","assets/sortablejs.ef73fc5c.js","assets/picker.f0cb09c5.css","assets/content.vue_vue_type_script_setup_true_lang.b3e4f379.js","assets/decoration-img.d7e5dbec.js","assets/decoration-img.e03f874f.css","assets/attr.vue_vue_type_script_setup_true_lang.a5f46be8.js","assets/content.416ba4d2.js","assets/content.3c393d61.css","assets/attr.vue_vue_type_script_setup_true_lang.4cdc919e.js","assets/add-nav.vue_vue_type_script_setup_true_lang.35798c7b.js","assets/content.b3fbaeeb.js","assets/content.4bb46171.css","assets/attr.vue_vue_type_script_setup_true_lang.d9838080.js","assets/content.vue_vue_type_script_setup_true_lang.888a9caf.js","assets/attr.vue_vue_type_script_setup_true_lang.d01577b5.js","assets/content.87312235.js","assets/decoration.6f039a71.js","assets/content.199cf006.css","assets/attr.vue_vue_type_script_setup_true_lang.0fc534ba.js","assets/content.39f10dd3.js","assets/content.0b4d2f25.css","assets/attr.vue_vue_type_script_setup_true_lang.871cb086.js","assets/content.vue_vue_type_script_setup_true_lang.e6931808.js","assets/attr.vue_vue_type_script_setup_true_lang.00e826d0.js","assets/content.d63a41a9.js","assets/content.93b4d62b.css","assets/preview-pc.77355e30.css","assets/attr-setting.vue_vue_type_script_setup_true_lang.4680a37f.js","assets/pc.594dbc93.css"]),"/src/views/decoration/tabbar.vue":()=>l(()=>import("./tabbar.bcb68dc3.js"),["assets/tabbar.bcb68dc3.js","assets/index.fd04a214.js","assets/@vue.51d7f2d8.js","assets/index.8d99c3e6.css","assets/element-plus.4328d892.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.fe1d30dd.js","assets/index.bb3c88e6.css","assets/picker.d415e27a.js","assets/index.5759a1a6.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/picker.d164339d.css","assets/picker.3821e495.js","assets/index.af446662.js","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/index.5f944d34.js","assets/index.vue_vue_type_script_setup_true_lang.dc835bba.js","assets/usePaging.2ad8e1e6.js","assets/vue3-video-play.b911321b.js","assets/vue3-video-play.74881f83.css","assets/index.be52e81c.css","assets/vuedraggable.0cb40d3a.js","assets/vue.5de34049.js","assets/sortablejs.ef73fc5c.js","assets/picker.f0cb09c5.css","assets/decoration.6f039a71.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/tabbar.094d2543.css"]),"/src/views/dev_tools/code/edit.vue":()=>l(()=>import("./edit.87fc9eaf.js"),["assets/edit.87fc9eaf.js","assets/index.fd04a214.js","assets/@vue.51d7f2d8.js","assets/index.8d99c3e6.css","assets/element-plus.4328d892.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.17266fa4.js","assets/vue-router.9f65afb1.js","assets/code.2b4ea8b1.js","assets/useDictOptions.a45fc8ac.js","assets/dict.58face92.js","assets/menu.90f89e87.js","assets/relations-add.vue_vue_type_script_setup_true_lang.2c698198.js","assets/index.5759a1a6.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/dev_tools/code/index.vue":()=>l(()=>import("./index.5f27fe66.js"),["assets/index.5f27fe66.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/code.2b4ea8b1.js","assets/usePaging.2ad8e1e6.js","assets/data-table.vue_vue_type_script_setup_true_lang.a71b4b2a.js","assets/index.5759a1a6.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/code-preview.vue_vue_type_script_setup_true_lang.be9bb714.js","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/dev_tools/components/code-preview.vue":()=>l(()=>import("./code-preview.f2b0028f.js"),["assets/code-preview.f2b0028f.js","assets/code-preview.vue_vue_type_script_setup_true_lang.be9bb714.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/dev_tools/components/data-table.vue":()=>l(()=>import("./data-table.f9084214.js"),["assets/data-table.f9084214.js","assets/data-table.vue_vue_type_script_setup_true_lang.a71b4b2a.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.5759a1a6.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/usePaging.2ad8e1e6.js","assets/code.2b4ea8b1.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/dev_tools/components/relations-add.vue":()=>l(()=>import("./relations-add.f24c068e.js"),["assets/relations-add.f24c068e.js","assets/relations-add.vue_vue_type_script_setup_true_lang.2c698198.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.5759a1a6.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/useDictOptions.a45fc8ac.js","assets/code.2b4ea8b1.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/error/403.vue":()=>l(()=>import("./403.f527df19.js"),["assets/403.f527df19.js","assets/error.ce387314.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/vue-router.9f65afb1.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/error.1aaeb02c.css"]),"/src/views/error/404.vue":()=>l(()=>import("./404.e5d3d45f.js"),["assets/404.e5d3d45f.js","assets/error.ce387314.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/vue-router.9f65afb1.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/error.1aaeb02c.css"]),"/src/views/error/components/error.vue":()=>l(()=>import("./error.ce387314.js"),["assets/error.ce387314.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/vue-router.9f65afb1.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/error.1aaeb02c.css"]),"/src/views/examined/dialog_index.vue":()=>l(()=>import("./dialog_index.62410c19.js"),["assets/dialog_index.62410c19.js","assets/dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.a896e319.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/usePaging.2ad8e1e6.js","assets/admin.f0e2c7b9.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/examined/editCate.vue":()=>l(()=>import("./editCate.be4d1a26.js"),["assets/editCate.be4d1a26.js","assets/editCate.vue_vue_type_script_setup_true_name_flowTypeEdit_lang.805edbad.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.5759a1a6.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/examined.28c87019.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/examined/editFlow.vue":()=>l(()=>import("./editFlow.71f5d7c6.js"),["assets/editFlow.71f5d7c6.js","assets/editFlow.vue_vue_type_script_setup_true_name_flowEdit_lang.15e7008f.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.5759a1a6.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/examined.28c87019.js","assets/lodash.08438971.js","assets/dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.a896e319.js","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/usePaging.2ad8e1e6.js","assets/admin.f0e2c7b9.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/examined/examined.vue":()=>l(()=>import("./examined.860433be.js"),["assets/examined.860433be.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/usePaging.2ad8e1e6.js","assets/useDictOptions.a45fc8ac.js","assets/examined.28c87019.js","assets/lodash.08438971.js","assets/editCate.vue_vue_type_script_setup_true_name_flowTypeEdit_lang.805edbad.js","assets/index.5759a1a6.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/examined/examinedFlow.vue":()=>l(()=>import("./examinedFlow.c3d4d5da.js"),["assets/examinedFlow.c3d4d5da.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/usePaging.2ad8e1e6.js","assets/useDictOptions.a45fc8ac.js","assets/examined.28c87019.js","assets/lodash.08438971.js","assets/editFlow.vue_vue_type_script_setup_true_name_flowEdit_lang.15e7008f.js","assets/index.5759a1a6.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.a896e319.js","assets/admin.f0e2c7b9.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/examined/index_list.vue":()=>l(()=>import("./index_list.8668e646.js"),["assets/index_list.8668e646.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/usePaging.2ad8e1e6.js","assets/useDictOptions.a45fc8ac.js","assets/examined.28c87019.js","assets/lodash.08438971.js","assets/index_list_popup.83ac90c2.js","assets/index.5759a1a6.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/index_list_popup.0c1c7f93.css"]),"/src/views/examined/index_list_popup.vue":()=>l(()=>import("./index_list_popup.83ac90c2.js"),["assets/index_list_popup.83ac90c2.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.5759a1a6.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/examined.28c87019.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/index_list_popup.0c1c7f93.css"]),"/src/views/finance/Withdrawal.vue":()=>l(()=>import("./Withdrawal.256c2635.js"),["assets/Withdrawal.256c2635.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/usePaging.2ad8e1e6.js","assets/useDictOptions.a45fc8ac.js","assets/withdraw.35c20484.js","assets/lodash.08438971.js","assets/edit.vue_vue_type_script_setup_true_name_withdrawEdit_lang.ea9e65cf.js","assets/index.5759a1a6.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/audit.vue_vue_type_script_setup_true_name_withdrawEdit_lang.0a14e109.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/finance/audit.vue":()=>l(()=>import("./audit.06df50a0.js"),["assets/audit.06df50a0.js","assets/audit.vue_vue_type_script_setup_true_name_withdrawEdit_lang.0a14e109.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.5759a1a6.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/withdraw.35c20484.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/finance/balance_details.vue":()=>l(()=>import("./balance_details.8ea27267.js"),["assets/balance_details.8ea27267.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/index.vue_vue_type_script_setup_true_lang.7ac7ce7d.js","assets/index.5759a1a6.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/index.vue_vue_type_script_setup_true_lang.3ab411d6.js","assets/finance.259514c6.js","assets/useDictOptions.a45fc8ac.js","assets/usePaging.2ad8e1e6.js","assets/vue-router.9f65afb1.js","assets/people.vue_vue_type_script_setup_true_name_peopleMoney_lang.685e727c.js","assets/user_role.942482ea.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/finance/company.vue":()=>l(()=>import("./company.2a500777.js"),["assets/company.2a500777.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/vue-router.9f65afb1.js","assets/usePaging.2ad8e1e6.js","assets/useDictOptions.a45fc8ac.js","assets/company.d1e8fc82.js","assets/lodash.08438971.js","assets/dict.58face92.js","assets/axios.105476b3.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/company.ed16e5c3.css"]),"/src/views/finance/component/people.vue":()=>l(()=>import("./people.ab7fc2ab.js"),["assets/people.ab7fc2ab.js","assets/people.vue_vue_type_script_setup_true_name_peopleMoney_lang.685e727c.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css"]),"/src/views/finance/component/refund-log.vue":()=>l(()=>import("./refund-log.31044cfd.js"),["assets/refund-log.31044cfd.js","assets/refund-log.vue_vue_type_script_setup_true_lang.e02e2ac9.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/finance.259514c6.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/finance/edit.vue":()=>l(()=>import("./edit.e670769e.js"),["assets/edit.e670769e.js","assets/edit.vue_vue_type_script_setup_true_name_withdrawEdit_lang.ea9e65cf.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.5759a1a6.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/withdraw.35c20484.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/finance/recharge_record.vue":()=>l(()=>import("./recharge_record.c506aaee.js"),["assets/recharge_record.c506aaee.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/index.vue_vue_type_script_setup_true_lang.7ac7ce7d.js","assets/index.5759a1a6.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/index.vue_vue_type_script_setup_true_lang.3ab411d6.js","assets/finance.259514c6.js","assets/usePaging.2ad8e1e6.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/finance/refund_record.vue":()=>l(()=>import("./refund_record.41f18fd3.js"),["assets/refund_record.41f18fd3.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/index.vue_vue_type_script_setup_true_lang.3ab411d6.js","assets/finance.259514c6.js","assets/usePaging.2ad8e1e6.js","assets/refund-log.vue_vue_type_script_setup_true_lang.e02e2ac9.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/material/index.vue":()=>l(()=>import("./index.c669c12a.js"),["assets/index.c669c12a.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.af446662.js","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/index.fe1d30dd.js","assets/index.bb3c88e6.css","assets/index.5759a1a6.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/index.5f944d34.js","assets/index.vue_vue_type_script_setup_true_lang.dc835bba.js","assets/usePaging.2ad8e1e6.js","assets/vue3-video-play.b911321b.js","assets/vue3-video-play.74881f83.css","assets/index.be52e81c.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/index.aaba22cf.css"]),"/src/views/message/notice/edit.vue":()=>l(()=>import("./edit.d970da7b.js"),["assets/edit.d970da7b.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.fd04a214.js","assets/index.8d99c3e6.css","assets/vue-router.9f65afb1.js","assets/message.8c449686.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/message/notice/index.vue":()=>l(()=>import("./index.e94931bd.js"),["assets/index.e94931bd.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/message.8c449686.js","assets/usePaging.2ad8e1e6.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/message/short_letter/edit.vue":()=>l(()=>import("./edit.2af05a0e.js"),["assets/edit.2af05a0e.js","assets/edit.vue_vue_type_script_setup_true_lang.672caa62.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/message.8c449686.js","assets/index.5759a1a6.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/message/short_letter/index.vue":()=>l(()=>import("./index.7d715ecd.js"),["assets/index.7d715ecd.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/message.8c449686.js","assets/edit.vue_vue_type_script_setup_true_lang.672caa62.js","assets/index.5759a1a6.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/organization/department/edit.vue":()=>l(()=>import("./edit.0cd07a8e.js"),["assets/edit.0cd07a8e.js","assets/edit.vue_vue_type_script_setup_true_lang.c4a9e1a8.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/department.ea28aaf8.js","assets/index.5759a1a6.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/useDictOptions.a45fc8ac.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/organization/department/index.vue":()=>l(()=>import("./index.ac1f4b6e.js"),["assets/index.ac1f4b6e.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/edit.vue_vue_type_script_setup_true_lang.c4a9e1a8.js","assets/department.ea28aaf8.js","assets/index.5759a1a6.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/useDictOptions.a45fc8ac.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/organization/post/edit.vue":()=>l(()=>import("./edit.572b3389.js"),["assets/edit.572b3389.js","assets/edit.vue_vue_type_script_setup_true_lang.acc86aef.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/post.34f40c78.js","assets/index.5759a1a6.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/organization/post/index.vue":()=>l(()=>import("./index.ee70975b.js"),["assets/index.ee70975b.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/index.vue_vue_type_script_setup_true_lang.7ac7ce7d.js","assets/index.5759a1a6.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/post.34f40c78.js","assets/usePaging.2ad8e1e6.js","assets/edit.vue_vue_type_script_setup_true_lang.acc86aef.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/permission/admin/dialog_index.vue":()=>l(()=>import("./dialog_index.30321b60.js"),["assets/dialog_index.30321b60.js","assets/dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.cbb85e35.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/usePaging.2ad8e1e6.js","assets/company.d1e8fc82.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/permission/admin/edit copy 2.vue":()=>l(()=>import("./edit copy 2.dd42bef7.js"),["assets/edit copy 2.dd42bef7.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.5759a1a6.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/useDictOptions.a45fc8ac.js","assets/admin.f0e2c7b9.js","assets/role.8d2a6d5e.js","assets/post.34f40c78.js","assets/department.ea28aaf8.js","assets/common.a58b263a.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/permission/admin/edit copy.vue":()=>l(()=>import("./edit copy.9550c3ad.js"),["assets/edit copy.9550c3ad.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/picker.3821e495.js","assets/index.5759a1a6.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/index.af446662.js","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/index.fe1d30dd.js","assets/index.bb3c88e6.css","assets/index.5f944d34.js","assets/index.vue_vue_type_script_setup_true_lang.dc835bba.js","assets/usePaging.2ad8e1e6.js","assets/vue3-video-play.b911321b.js","assets/vue3-video-play.74881f83.css","assets/index.be52e81c.css","assets/vuedraggable.0cb40d3a.js","assets/vue.5de34049.js","assets/sortablejs.ef73fc5c.js","assets/picker.f0cb09c5.css","assets/useDictOptions.a45fc8ac.js","assets/admin.f0e2c7b9.js","assets/role.8d2a6d5e.js","assets/post.34f40c78.js","assets/department.ea28aaf8.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/permission/admin/edit.vue":()=>l(()=>import("./edit.348ef66a.js"),["assets/edit.348ef66a.js","assets/edit.vue_vue_type_style_index_0_lang.c0714a8e.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.5759a1a6.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/useDictOptions.a45fc8ac.js","assets/admin.f0e2c7b9.js","assets/role.8d2a6d5e.js","assets/post.34f40c78.js","assets/department.ea28aaf8.js","assets/common.a58b263a.js","assets/dict.58face92.js","assets/dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.cbb85e35.js","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/usePaging.2ad8e1e6.js","assets/company.d1e8fc82.js","assets/edit.91395de5.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/permission/admin/index.vue":()=>l(()=>import("./index.684c9cd9.js"),["assets/index.684c9cd9.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/index.vue_vue_type_script_setup_true_lang.7ac7ce7d.js","assets/index.5759a1a6.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/vue-router.9f65afb1.js","assets/admin.f0e2c7b9.js","assets/role.8d2a6d5e.js","assets/useDictOptions.a45fc8ac.js","assets/usePaging.2ad8e1e6.js","assets/edit.vue_vue_type_style_index_0_lang.c0714a8e.js","assets/post.34f40c78.js","assets/department.ea28aaf8.js","assets/common.a58b263a.js","assets/dict.58face92.js","assets/dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.cbb85e35.js","assets/company.d1e8fc82.js","assets/edit.91395de5.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/index.a62562b3.css"]),"/src/views/permission/menu/edit.vue":()=>l(()=>import("./edit.ea528434.js"),["assets/edit.ea528434.js","assets/edit.vue_vue_type_script_setup_true_lang.07156ced.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/picker.vue_vue_type_script_setup_true_lang.8519155b.js","assets/menu.90f89e87.js","assets/index.5759a1a6.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/permission/menu/index.vue":()=>l(()=>import("./index.e27abe90.js"),["assets/index.e27abe90.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/menu.90f89e87.js","assets/usePaging.2ad8e1e6.js","assets/edit.vue_vue_type_script_setup_true_lang.07156ced.js","assets/picker.vue_vue_type_script_setup_true_lang.8519155b.js","assets/index.5759a1a6.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/permission/role/auth.vue":()=>l(()=>import("./auth.7fe30803.js"),["assets/auth.7fe30803.js","assets/auth.vue_vue_type_script_setup_true_lang.5b6b2619.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/role.8d2a6d5e.js","assets/index.5759a1a6.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/menu.90f89e87.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/permission/role/edit.vue":()=>l(()=>import("./edit.2aec95b8.js"),["assets/edit.2aec95b8.js","assets/edit.vue_vue_type_script_setup_true_lang.88cd21d7.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/role.8d2a6d5e.js","assets/index.5759a1a6.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/permission/role/index.vue":()=>l(()=>import("./index.0f938f8d.js"),["assets/index.0f938f8d.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/role.8d2a6d5e.js","assets/usePaging.2ad8e1e6.js","assets/edit.vue_vue_type_script_setup_true_lang.88cd21d7.js","assets/index.5759a1a6.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/auth.vue_vue_type_script_setup_true_lang.5b6b2619.js","assets/menu.90f89e87.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/setting/dict/data/edit.vue":()=>l(()=>import("./edit.892b8718.js"),["assets/edit.892b8718.js","assets/edit.vue_vue_type_script_setup_true_lang.b594ce58.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.5759a1a6.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/dict.58face92.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/setting/dict/data/index.vue":()=>l(()=>import("./index.5353cd95.js"),["assets/index.5353cd95.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/vue-router.9f65afb1.js","assets/dict.58face92.js","assets/usePaging.2ad8e1e6.js","assets/edit.vue_vue_type_script_setup_true_lang.b594ce58.js","assets/index.5759a1a6.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/setting/dict/type/edit.vue":()=>l(()=>import("./edit.bffa328a.js"),["assets/edit.bffa328a.js","assets/edit.vue_vue_type_script_setup_true_lang.383f31fa.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.5759a1a6.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/dict.58face92.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/setting/dict/type/index.vue":()=>l(()=>import("./index.ca74e5a4.js"),["assets/index.ca74e5a4.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/dict.58face92.js","assets/usePaging.2ad8e1e6.js","assets/edit.vue_vue_type_script_setup_true_lang.383f31fa.js","assets/index.5759a1a6.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/setting/pay/config/edit.vue":()=>l(()=>import("./edit.22884d64.js"),["assets/edit.22884d64.js","assets/edit.vue_vue_type_script_setup_true_lang.f72e570b.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/picker.3821e495.js","assets/index.5759a1a6.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/index.af446662.js","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/index.fe1d30dd.js","assets/index.bb3c88e6.css","assets/index.5f944d34.js","assets/index.vue_vue_type_script_setup_true_lang.dc835bba.js","assets/usePaging.2ad8e1e6.js","assets/vue3-video-play.b911321b.js","assets/vue3-video-play.74881f83.css","assets/index.be52e81c.css","assets/vuedraggable.0cb40d3a.js","assets/vue.5de34049.js","assets/sortablejs.ef73fc5c.js","assets/picker.f0cb09c5.css","assets/pay.b01bd8e2.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/setting/pay/config/index.vue":()=>l(()=>import("./index.27e53bbb.js"),["assets/index.27e53bbb.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/pay.b01bd8e2.js","assets/edit.vue_vue_type_script_setup_true_lang.f72e570b.js","assets/picker.3821e495.js","assets/index.5759a1a6.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/index.af446662.js","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/index.fe1d30dd.js","assets/index.bb3c88e6.css","assets/index.5f944d34.js","assets/index.vue_vue_type_script_setup_true_lang.dc835bba.js","assets/usePaging.2ad8e1e6.js","assets/vue3-video-play.b911321b.js","assets/vue3-video-play.74881f83.css","assets/index.be52e81c.css","assets/vuedraggable.0cb40d3a.js","assets/vue.5de34049.js","assets/sortablejs.ef73fc5c.js","assets/picker.f0cb09c5.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/setting/pay/method/index.vue":()=>l(()=>import("./index.9dae1374.js"),["assets/index.9dae1374.js","assets/index.fd04a214.js","assets/@vue.51d7f2d8.js","assets/index.8d99c3e6.css","assets/element-plus.4328d892.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/pay.b01bd8e2.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/setting/search/index.vue":()=>l(()=>import("./index.a3c81261.js"),["assets/index.a3c81261.js","assets/index.fd04a214.js","assets/@vue.51d7f2d8.js","assets/index.8d99c3e6.css","assets/element-plus.4328d892.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/index.451e702f.css"]),"/src/views/setting/storage/edit.vue":()=>l(()=>import("./edit.dfdf108c.js"),["assets/edit.dfdf108c.js","assets/edit.vue_vue_type_script_setup_true_lang.f38e2d62.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.5759a1a6.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/setting/storage/index.vue":()=>l(()=>import("./index.35e8da43.js"),["assets/index.35e8da43.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/edit.vue_vue_type_script_setup_true_lang.f38e2d62.js","assets/index.5759a1a6.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/setting/system/cache.vue":()=>l(()=>import("./cache.9e5b176a.js"),["assets/cache.9e5b176a.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/system.7bc7010f.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/setting/system/environment.vue":()=>l(()=>import("./environment.a7ac884e.js"),["assets/environment.a7ac884e.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/system.7bc7010f.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/setting/system/journal.vue":()=>l(()=>import("./journal.f1bf30e7.js"),["assets/journal.f1bf30e7.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/index.vue_vue_type_script_setup_true_lang.7ac7ce7d.js","assets/index.5759a1a6.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/index.vue_vue_type_script_setup_true_lang.3ab411d6.js","assets/system.7bc7010f.js","assets/usePaging.2ad8e1e6.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/setting/system/scheduled_task/edit.vue":()=>l(()=>import("./edit.19efdec6.js"),["assets/edit.19efdec6.js","assets/index.fd04a214.js","assets/@vue.51d7f2d8.js","assets/index.8d99c3e6.css","assets/element-plus.4328d892.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/vue-router.9f65afb1.js","assets/system.7bc7010f.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/setting/system/scheduled_task/index.vue":()=>l(()=>import("./index.a1286d2b.js"),["assets/index.a1286d2b.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/system.7bc7010f.js","assets/usePaging.2ad8e1e6.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/setting/user/login_register.vue":()=>l(()=>import("./login_register.dc093486.js"),["assets/login_register.dc093486.js","assets/index.fd04a214.js","assets/@vue.51d7f2d8.js","assets/index.8d99c3e6.css","assets/element-plus.4328d892.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/user.12a6ca53.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/setting/user/setup.vue":()=>l(()=>import("./setup.46766685.js"),["assets/setup.46766685.js","assets/index.fd04a214.js","assets/@vue.51d7f2d8.js","assets/index.8d99c3e6.css","assets/element-plus.4328d892.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/picker.3821e495.js","assets/index.5759a1a6.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/index.af446662.js","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/index.fe1d30dd.js","assets/index.bb3c88e6.css","assets/index.5f944d34.js","assets/index.vue_vue_type_script_setup_true_lang.dc835bba.js","assets/usePaging.2ad8e1e6.js","assets/vue3-video-play.b911321b.js","assets/vue3-video-play.74881f83.css","assets/index.be52e81c.css","assets/vuedraggable.0cb40d3a.js","assets/vue.5de34049.js","assets/sortablejs.ef73fc5c.js","assets/picker.f0cb09c5.css","assets/user.12a6ca53.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/setting/website/filing.vue":()=>l(()=>import("./filing.25b6fb20.js"),["assets/filing.25b6fb20.js","assets/index.fd04a214.js","assets/@vue.51d7f2d8.js","assets/index.8d99c3e6.css","assets/element-plus.4328d892.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.fe1d30dd.js","assets/index.bb3c88e6.css","assets/website.7956cd42.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/setting/website/information.vue":()=>l(()=>import("./information.3f7ab377.js"),["assets/information.3f7ab377.js","assets/index.fd04a214.js","assets/@vue.51d7f2d8.js","assets/index.8d99c3e6.css","assets/element-plus.4328d892.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/picker.3821e495.js","assets/index.5759a1a6.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/index.af446662.js","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/index.fe1d30dd.js","assets/index.bb3c88e6.css","assets/index.5f944d34.js","assets/index.vue_vue_type_script_setup_true_lang.dc835bba.js","assets/usePaging.2ad8e1e6.js","assets/vue3-video-play.b911321b.js","assets/vue3-video-play.74881f83.css","assets/index.be52e81c.css","assets/vuedraggable.0cb40d3a.js","assets/vue.5de34049.js","assets/sortablejs.ef73fc5c.js","assets/picker.f0cb09c5.css","assets/website.7956cd42.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/setting/website/protocol.vue":()=>l(()=>import("./protocol.50fcc730.js"),["assets/protocol.50fcc730.js","assets/index.fd04a214.js","assets/@vue.51d7f2d8.js","assets/index.8d99c3e6.css","assets/element-plus.4328d892.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_style_index_0_lang.60c96350.js","assets/@wangeditor.afd76521.js","assets/@wangeditor.4f35b623.css","assets/picker.3821e495.js","assets/index.5759a1a6.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/index.af446662.js","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/index.fe1d30dd.js","assets/index.bb3c88e6.css","assets/index.5f944d34.js","assets/index.vue_vue_type_script_setup_true_lang.dc835bba.js","assets/usePaging.2ad8e1e6.js","assets/vue3-video-play.b911321b.js","assets/vue3-video-play.74881f83.css","assets/index.be52e81c.css","assets/vuedraggable.0cb40d3a.js","assets/vue.5de34049.js","assets/sortablejs.ef73fc5c.js","assets/picker.f0cb09c5.css","assets/index.0d25a475.css","assets/website.7956cd42.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/shop_contract/details.vue":()=>l(()=>import("./details.41068db2.js"),["assets/details.41068db2.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/vue-router.9f65afb1.js","assets/shop_contract.07d6415c.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/details.5079768a.css"]),"/src/views/shop_contract/edit.vue":()=>l(()=>import("./edit.6d490036.js"),["assets/edit.6d490036.js","assets/edit.vue_vue_type_script_setup_true_name_shopContractEdit_lang.03c8c155.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.5759a1a6.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/shop_contract.07d6415c.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/shop_contract/index.vue":()=>l(()=>import("./index.8054b177.js"),["assets/index.8054b177.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/usePaging.2ad8e1e6.js","assets/useDictOptions.a45fc8ac.js","assets/shop_contract.07d6415c.js","assets/lodash.08438971.js","assets/edit.vue_vue_type_script_setup_true_name_shopContractEdit_lang.03c8c155.js","assets/index.5759a1a6.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/index.4b64339d.css"]),"/src/views/shop_merchant/edit.vue":()=>l(()=>import("./edit.14393384.js"),["assets/edit.14393384.js","assets/edit.vue_vue_type_script_setup_true_name_shopMerchantEdit_lang.ddb23228.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.5759a1a6.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/shop_merchant/index.vue":()=>l(()=>import("./index.28849582.js"),["assets/index.28849582.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/usePaging.2ad8e1e6.js","assets/useDictOptions.a45fc8ac.js","assets/edit.vue_vue_type_script_setup_true_name_shopMerchantEdit_lang.ddb23228.js","assets/index.5759a1a6.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/task/calendar.vue":()=>l(()=>import("./calendar.a4ad1da4.js"),["assets/calendar.a4ad1da4.js","assets/calendar.vue_vue_type_style_index_0_lang.da31ccbb.js","assets/vue-simple-calendar.4032adb4.js","assets/@vue.51d7f2d8.js","assets/calendar.b5f127b2.css"]),"/src/views/task/editTow.vue":()=>l(()=>import("./editTow.2f446f2c.js").then(a=>a.e),["assets/editTow.2f446f2c.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/vue-router.9f65afb1.js","assets/index.5759a1a6.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/list_two.0f9732b7.js","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/usePaging.2ad8e1e6.js","assets/useDictOptions.a45fc8ac.js","assets/map.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.0177b6b6.js","assets/lodash.08438971.js","assets/map.7a716409.css","assets/edit.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.43063e2b.js","assets/dialog_index_personnel.vue_vue_type_script_setup_true_name_companyLists_lang.7fc490f9.js","assets/role.8d2a6d5e.js","assets/axios.105476b3.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/list_two.5a114e61.css","assets/editTow.406abbe9.css"]),"/src/views/task/taskCalendar.vue":()=>l(()=>import("./taskCalendar.14f8b41d.js"),["assets/taskCalendar.14f8b41d.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/vue-router.9f65afb1.js","assets/editTow.2f446f2c.js","assets/index.5759a1a6.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/list_two.0f9732b7.js","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/usePaging.2ad8e1e6.js","assets/useDictOptions.a45fc8ac.js","assets/map.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.0177b6b6.js","assets/lodash.08438971.js","assets/map.7a716409.css","assets/edit.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.43063e2b.js","assets/dialog_index_personnel.vue_vue_type_script_setup_true_name_companyLists_lang.7fc490f9.js","assets/role.8d2a6d5e.js","assets/axios.105476b3.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/list_two.5a114e61.css","assets/editTow.406abbe9.css","assets/calendar.vue_vue_type_style_index_0_lang.da31ccbb.js","assets/vue-simple-calendar.4032adb4.js","assets/calendar.b5f127b2.css","assets/taskCalendar.f66f9a1d.css"]),"/src/views/task_scheduling/dialog_index.vue":()=>l(()=>import("./dialog_index.da980c77.js"),["assets/dialog_index.da980c77.js","assets/dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.26cf5c3d.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/usePaging.2ad8e1e6.js","assets/company.d1e8fc82.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/task_scheduling/edit.vue":()=>l(()=>import("./edit.c558c850.js"),["assets/edit.c558c850.js","assets/edit.vue_vue_type_script_setup_true_name_taskSchedulingEdit_lang.682619c9.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.5759a1a6.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/task_scheduling.7035f2c0.js","assets/lodash.08438971.js","assets/dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.26cf5c3d.js","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/usePaging.2ad8e1e6.js","assets/company.d1e8fc82.js","assets/dict.58face92.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/task_scheduling/index.vue":()=>l(()=>import("./index.0597a3fd.js"),["assets/index.0597a3fd.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/usePaging.2ad8e1e6.js","assets/useDictOptions.a45fc8ac.js","assets/task_scheduling.7035f2c0.js","assets/lodash.08438971.js","assets/edit.vue_vue_type_script_setup_true_name_taskSchedulingEdit_lang.682619c9.js","assets/index.5759a1a6.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.26cf5c3d.js","assets/company.d1e8fc82.js","assets/dict.58face92.js","assets/money.vue_vue_type_script_setup_true_name_taskSchedulingEdit_lang.bddf61dd.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/index.97a58b39.css"]),"/src/views/task_scheduling/money.vue":()=>l(()=>import("./money.0c17d2ff.js"),["assets/money.0c17d2ff.js","assets/money.vue_vue_type_script_setup_true_name_taskSchedulingEdit_lang.bddf61dd.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.5759a1a6.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/task_scheduling.7035f2c0.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/task_template/dialog_index_personnel.vue":()=>l(()=>import("./dialog_index_personnel.2289c7e0.js"),["assets/dialog_index_personnel.2289c7e0.js","assets/dialog_index_personnel.vue_vue_type_script_setup_true_name_companyLists_lang.7fc490f9.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/usePaging.2ad8e1e6.js","assets/role.8d2a6d5e.js","assets/useDictOptions.a45fc8ac.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/task_template/edit.vue":()=>l(()=>import("./edit.a639f82c.js"),["assets/edit.a639f82c.js","assets/edit.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.43063e2b.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/vue-router.9f65afb1.js","assets/index.5759a1a6.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/map.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.0177b6b6.js","assets/lodash.08438971.js","assets/map.7a716409.css","assets/dialog_index_personnel.vue_vue_type_script_setup_true_name_companyLists_lang.7fc490f9.js","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/usePaging.2ad8e1e6.js","assets/role.8d2a6d5e.js","assets/useDictOptions.a45fc8ac.js","assets/axios.105476b3.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/task_template/edit_admin.vue":()=>l(()=>import("./edit_admin.6c0611c0.js"),["assets/edit_admin.6c0611c0.js","assets/edit_admin.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.ef132330.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/vue-router.9f65afb1.js","assets/index.5759a1a6.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/map.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.0177b6b6.js","assets/lodash.08438971.js","assets/map.7a716409.css","assets/dialog_index_personnel.vue_vue_type_script_setup_true_name_companyLists_lang.7fc490f9.js","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/usePaging.2ad8e1e6.js","assets/role.8d2a6d5e.js","assets/useDictOptions.a45fc8ac.js","assets/axios.105476b3.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/task_template/index.vue":()=>l(()=>import("./index.a887f951.js"),["assets/index.a887f951.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/vue-router.9f65afb1.js","assets/usePaging.2ad8e1e6.js","assets/useDictOptions.a45fc8ac.js","assets/map.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.0177b6b6.js","assets/index.5759a1a6.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/lodash.08438971.js","assets/map.7a716409.css","assets/edit.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.43063e2b.js","assets/dialog_index_personnel.vue_vue_type_script_setup_true_name_companyLists_lang.7fc490f9.js","assets/role.8d2a6d5e.js","assets/edit_admin.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.ef132330.js","assets/dict.58face92.js","assets/axios.105476b3.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/index.75c115fc.css"]),"/src/views/task_template/list_two.vue":()=>l(()=>import("./list_two.0f9732b7.js"),["assets/list_two.0f9732b7.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/usePaging.2ad8e1e6.js","assets/useDictOptions.a45fc8ac.js","assets/map.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.0177b6b6.js","assets/index.5759a1a6.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/lodash.08438971.js","assets/map.7a716409.css","assets/edit.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.43063e2b.js","assets/vue-router.9f65afb1.js","assets/dialog_index_personnel.vue_vue_type_script_setup_true_name_companyLists_lang.7fc490f9.js","assets/role.8d2a6d5e.js","assets/axios.105476b3.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/list_two.5a114e61.css"]),"/src/views/task_template/map.vue":()=>l(()=>import("./map.6694c455.js"),["assets/map.6694c455.js","assets/map.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.0177b6b6.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.5759a1a6.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/lodash.08438971.js","assets/map.7a716409.css","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/template/component/file.vue":()=>l(()=>import("./file.46693a70.js"),["assets/file.46693a70.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/picker.3821e495.js","assets/index.5759a1a6.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/index.af446662.js","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/index.fe1d30dd.js","assets/index.bb3c88e6.css","assets/index.5f944d34.js","assets/index.vue_vue_type_script_setup_true_lang.dc835bba.js","assets/usePaging.2ad8e1e6.js","assets/vue3-video-play.b911321b.js","assets/vue3-video-play.74881f83.css","assets/index.be52e81c.css","assets/vuedraggable.0cb40d3a.js","assets/vue.5de34049.js","assets/sortablejs.ef73fc5c.js","assets/picker.f0cb09c5.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/template/component/icon.vue":()=>l(()=>import("./icon.2bb8b20a.js"),["assets/icon.2bb8b20a.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/picker.vue_vue_type_script_setup_true_lang.8519155b.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/template/component/link.vue":()=>l(()=>import("./link.ea6826dc.js"),["assets/link.ea6826dc.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/picker.d415e27a.js","assets/index.5759a1a6.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/picker.d164339d.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/template/component/overflow.vue":()=>l(()=>import("./overflow.b30a8261.js"),["assets/overflow.b30a8261.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/template/component/popover_input.vue":()=>l(()=>import("./popover_input.00cb05ed.js"),["assets/popover_input.00cb05ed.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.dc835bba.js"]),"/src/views/template/component/rich_text.vue":()=>l(()=>import("./rich_text.71317297.js"),["assets/rich_text.71317297.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_style_index_0_lang.60c96350.js","assets/@wangeditor.afd76521.js","assets/@wangeditor.4f35b623.css","assets/picker.3821e495.js","assets/index.5759a1a6.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/index.af446662.js","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/index.fe1d30dd.js","assets/index.bb3c88e6.css","assets/index.5f944d34.js","assets/index.vue_vue_type_script_setup_true_lang.dc835bba.js","assets/usePaging.2ad8e1e6.js","assets/vue3-video-play.b911321b.js","assets/vue3-video-play.74881f83.css","assets/index.be52e81c.css","assets/vuedraggable.0cb40d3a.js","assets/vue.5de34049.js","assets/sortablejs.ef73fc5c.js","assets/picker.f0cb09c5.css","assets/index.0d25a475.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/template/component/upload.vue":()=>l(()=>import("./upload.596d217f.js"),["assets/upload.596d217f.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.5f944d34.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/user/setting.vue":()=>l(()=>import("./setting.327adae0.js"),["assets/setting.327adae0.js","assets/index.fd04a214.js","assets/@vue.51d7f2d8.js","assets/index.8d99c3e6.css","assets/element-plus.4328d892.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/picker.3821e495.js","assets/index.5759a1a6.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/index.af446662.js","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/index.fe1d30dd.js","assets/index.bb3c88e6.css","assets/index.5f944d34.js","assets/index.vue_vue_type_script_setup_true_lang.dc835bba.js","assets/usePaging.2ad8e1e6.js","assets/vue3-video-play.b911321b.js","assets/vue3-video-play.74881f83.css","assets/index.be52e81c.css","assets/vuedraggable.0cb40d3a.js","assets/vue.5de34049.js","assets/sortablejs.ef73fc5c.js","assets/picker.f0cb09c5.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/user_informationg/component/banquetBirthday.vue":()=>l(()=>import("./banquetBirthday.7a102179.js"),["assets/banquetBirthday.7a102179.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/banquetBirthday.a5efd6b9.css"]),"/src/views/user_informationg/component/banquetFullMoon.vue":()=>l(()=>import("./banquetFullMoon.9b5d9e7c.js"),["assets/banquetFullMoon.9b5d9e7c.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/banquetFullMoon.f507e889.css"]),"/src/views/user_informationg/component/banquetFuneral.vue":()=>l(()=>import("./banquetFuneral.149cd1af.js"),["assets/banquetFuneral.149cd1af.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/banquetFuneral.c9d3d060.css"]),"/src/views/user_informationg/component/banquetMarry.vue":()=>l(()=>import("./banquetMarry.3faebc7e.js"),["assets/banquetMarry.3faebc7e.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/banquetMarry.59f41e4c.css"]),"/src/views/user_informationg/component/banquetOther.vue":()=>l(()=>import("./banquetOther.ce740995.js"),["assets/banquetOther.ce740995.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/banquetOther.a725fcc7.css"]),"/src/views/user_informationg/component/breeding.vue":()=>l(()=>import("./breeding.bad4e59c.js"),["assets/breeding.bad4e59c.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/breeding.a4e9299c.css"]),"/src/views/user_informationg/component/deepProcessing.vue":()=>l(()=>import("./deepProcessing.4fdb9986.js"),["assets/deepProcessing.4fdb9986.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/deepProcessing.97a063ac.css"]),"/src/views/user_informationg/component/houseDecoration.vue":()=>l(()=>import("./houseDecoration.49a16dce.js"),["assets/houseDecoration.49a16dce.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/houseDecoration.3c271882.css"]),"/src/views/user_informationg/component/houseRenovate.vue":()=>l(()=>import("./houseRenovate.3481056b.js"),["assets/houseRenovate.3481056b.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/houseRenovate.70227ad6.css"]),"/src/views/user_informationg/component/houseRepair.vue":()=>l(()=>import("./houseRepair.73c4668e.js"),["assets/houseRepair.73c4668e.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/houseRepair.3393a738.css"]),"/src/views/user_informationg/component/houseTransaction.vue":()=>l(()=>import("./houseTransaction.61f9d2fb.js"),["assets/houseTransaction.61f9d2fb.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/houseTransaction.8e3b4247.css"]),"/src/views/user_informationg/component/plant.vue":()=>l(()=>import("./plant.217b07c3.js"),["assets/plant.217b07c3.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/plant.b0a87cba.css"]),"/src/views/user_informationg/component/store.vue":()=>l(()=>import("./store.8350d48f.js"),["assets/store.8350d48f.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/store.d48590b9.css"]),"/src/views/user_informationg/component/thickProcessing.vue":()=>l(()=>import("./thickProcessing.ee706187.js"),["assets/thickProcessing.ee706187.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/thickProcessing.0da8e53a.css"]),"/src/views/user_informationg/details.vue":()=>l(()=>import("./details.2c8e6253.js"),["assets/details.2c8e6253.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/vue-router.9f65afb1.js","assets/store.8350d48f.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/store.d48590b9.css","assets/breeding.bad4e59c.js","assets/breeding.a4e9299c.css","assets/plant.217b07c3.js","assets/plant.b0a87cba.css","assets/houseTransaction.61f9d2fb.js","assets/houseTransaction.8e3b4247.css","assets/houseRenovate.3481056b.js","assets/houseRenovate.70227ad6.css","assets/houseDecoration.49a16dce.js","assets/houseDecoration.3c271882.css","assets/houseRepair.73c4668e.js","assets/houseRepair.3393a738.css","assets/banquetMarry.3faebc7e.js","assets/banquetMarry.59f41e4c.css","assets/banquetOther.ce740995.js","assets/banquetOther.a725fcc7.css","assets/banquetFuneral.149cd1af.js","assets/banquetFuneral.c9d3d060.css","assets/banquetFullMoon.9b5d9e7c.js","assets/banquetFullMoon.f507e889.css","assets/banquetBirthday.7a102179.js","assets/banquetBirthday.a5efd6b9.css","assets/thickProcessing.ee706187.js","assets/thickProcessing.0da8e53a.css","assets/deepProcessing.4fdb9986.js","assets/deepProcessing.97a063ac.css","assets/informationg.0fb089cd.js","assets/details.784cfc63.css"]),"/src/views/user_informationg/detil.vue":()=>l(()=>import("./detil.f1685fed.js"),["assets/detil.f1685fed.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/vue-router.9f65afb1.js","assets/informationg.0fb089cd.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/detil.9f66ded4.css"]),"/src/views/user_informationg/editCate.vue":()=>l(()=>import("./editCate.1ca148cb.js"),["assets/editCate.1ca148cb.js","assets/editCate.vue_vue_type_script_setup_true_name_flowTypeEdit_lang.d4d5c066.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.5759a1a6.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/examined.28c87019.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/user_informationg/index.vue":()=>l(()=>import("./index.f2e98aa7.js"),["assets/index.f2e98aa7.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/usePaging.2ad8e1e6.js","assets/useDictOptions.a45fc8ac.js","assets/informationg.0fb089cd.js","assets/editCate.vue_vue_type_script_setup_true_name_flowTypeEdit_lang.d4d5c066.js","assets/index.5759a1a6.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/examined.28c87019.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/user_menu/edit.vue":()=>l(()=>import("./edit.916604cd.js"),["assets/edit.916604cd.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.5759a1a6.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/user_menu.a3635908.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/edit.d2670ecb.css"]),"/src/views/user_menu/index.vue":()=>l(()=>import("./index.79d79d6a.js"),["assets/index.79d79d6a.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/usePaging.2ad8e1e6.js","assets/useDictOptions.a45fc8ac.js","assets/user_menu.a3635908.js","assets/lodash.08438971.js","assets/edit.916604cd.js","assets/index.5759a1a6.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/edit.d2670ecb.css"]),"/src/views/user_role/auth.vue":()=>l(()=>import("./auth.fbae141a.js"),["assets/auth.fbae141a.js","assets/auth.vue_vue_type_script_setup_true_lang.5dbd5500.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.5759a1a6.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/lodash.08438971.js","assets/user_menu.a3635908.js","assets/user_role.942482ea.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/user_role/edit.vue":()=>l(()=>import("./edit.8a764b8b.js"),["assets/edit.8a764b8b.js","assets/edit.vue_vue_type_script_setup_true_name_userRoleEdit_lang.4f344c50.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.5759a1a6.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/user_role.942482ea.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/user_role/index.vue":()=>l(()=>import("./index.9fe71f7e.js"),["assets/index.9fe71f7e.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/usePaging.2ad8e1e6.js","assets/useDictOptions.a45fc8ac.js","assets/user_role.942482ea.js","assets/lodash.08438971.js","assets/edit.vue_vue_type_script_setup_true_name_userRoleEdit_lang.4f344c50.js","assets/index.5759a1a6.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/auth.vue_vue_type_script_setup_true_lang.5dbd5500.js","assets/user_menu.a3635908.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/workbench/index.vue":()=>l(()=>import("./index.b55861aa.js"),["assets/index.b55861aa.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/vue-echarts.91588d37.js","assets/resize-detector.4e96b72b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"])});function R4(){return Object.keys(x3).map(a=>a.replace("/src/views/","").replace(".vue",""))}function n1(a,o=!0){return a.map(e=>{const i=y6(e,o);return e.children!=null&&e.children&&e.children.length&&(i.children=n1(e.children,!1)),i})}function y6(a,o){const e={path:X(a.paths)?a.paths:o?`/${a.paths}`:a.paths,name:Symbol(a.paths),meta:{hidden:!a.is_show,keepAlive:!!a.is_cache,title:a.name,perms:a.perms,query:a.params,icon:a.icon,type:a.type,activeMenu:a.selected}};switch(a.type){case d3.CATALOGUE:e.component=o?O3:w3,a.children||(e.component=w3);break;case d3.MENU:e.component=g6(a.component);break}return e}function g6(a){try{const o=Object.keys(x3).find(e=>e.includes(`${a}.vue`));if(o)return x3[o];throw Error(`\u627E\u4E0D\u5230\u7EC4\u4EF6${a}\uFF0C\u8BF7\u786E\u4FDD\u7EC4\u4EF6\u8DEF\u5F84\u6B63\u786E`)}catch(o){return console.error(o),w3}}function r1(a){var o,e;for(const i of a){if(((o=i.meta)==null?void 0:o.type)==d3.MENU&&!((e=i.meta)!=null&&e.hidden)&&!X(i.path))return i.name;if(i.children){const c=r1(i.children);if(c)return c}}}function P4(a){var e;return((e=(H3()||L).getRoutes().find(i=>{var c;return((c=i.meta)==null?void 0:c.perms)==a}))==null?void 0:e.path)||""}function w6(){L.removeRoute(B3);const{routes:a}=$();a.forEach(o=>{const e=o.name;e&&L.hasRoute(e)&&L.removeRoute(e)})}const L=Q1({history:a0("/admin/"),routes:b6});function u1(){return P.get(T3)}function h3(){const a=$(),o=t3();a.resetState(),o.resetState(),P.remove(T3),w6()}const A6={requestInterceptorsHook(a){var t;G.start();const{withToken:o,isParamsToData:e}=a.requestOptions,i=a.params||{},c=a.headers||{};if(o){const s=u1();c.token=s}return e&&!Reflect.has(a,"data")&&((t=a.method)==null?void 0:t.toUpperCase())===a3.POST&&(a.data=i,a.params={}),a.headers=c,a},requestInterceptorsCatchHook(a){return G.done(),a},async responseInterceptorsHook(a){G.done();const{isTransformResponse:o,isReturnDefaultResponse:e}=a.config.requestOptions;if(e)return a;if(!o)return a.data;const{code:i,data:c,show:t,msg:s}=a.data;switch(i){case Q.SUCCESS:return t&&s&&U.msgSuccess(s),c;case Q.FAIL:return t&&s&&U.msgError(s),Promise.reject(c);case Q.LOGIN_FAILURE:return h3(),L.push(E.LOGIN),Promise.reject();case Q.OPEN_NEW_PAGE:return window.location.href=c.url,c;default:return c}},responseInterceptorsCatchHook(a){return G.done(),a.code!==r3.exports.AxiosError.ERR_CANCELED&&(a.message.indexOf("timeout")!==-1?U.msgError("\u8BF7\u6C42\u8D85\u65F6!!!"):a.message&&U.msgError(a.message)),Promise.reject(a)}},f6={timeout:R.timeout,baseURL:R.baseUrl,headers:{"Content-Type":l1.JSON,version:R.version},axiosHooks:A6,requestOptions:{isParamsToData:!0,isReturnDefaultResponse:!1,isTransformResponse:!0,urlPrefix:R.urlPrefix,ignoreCancelToken:!1,withToken:!0,isOpenRetry:!0,retryCount:2}};function V6(a){return new T0(T.exports.merge(f6,a||{}))}const x6=V6(),j=x6;function E6(){return j.get({url:"/config/getConfig"})}function C4(){return j.get({url:"/workbench/index"})}function S4(a){return j.get({url:"/config/dict",params:a})}const N=_3({id:"app",state:()=>({config:{},isMobile:!0,isCollapsed:!1,isRouteShow:!0}),actions:{getImageUrl(a){return a?`${this.config.oss_domain}${a}`:""},getConfig(){return new Promise((a,o)=>{E6().then(e=>{this.config=e,a(e)}).catch(e=>{o(e)})})},setMobile(a){this.isMobile=a},toggleCollapsed(a){this.isCollapsed=a!=null?a:!this.isCollapsed},refreshView(){this.isRouteShow=!1,x1(()=>{this.isRouteShow=!0})}}}),M6=g({__name:"App",setup(a){const o=N(),e=C(),i={zIndex:3e3,locale:W1},c=a1();E1(async()=>{e.setTheme(c.value);const s=await o.getConfig();let n=document.querySelector('link[rel="icon"]');if(n){n.href=s.web_favicon;return}n=document.createElement("link"),n.rel="icon",n.href=s.web_favicon,document.head.appendChild(n)});const{width:t}=K1();return Z3(t,J1(s=>{s>f3.SM?(o.setMobile(!1),o.toggleCollapsed(!1)):(o.setMobile(!0),o.toggleCollapsed(!0)),s{const h=l3("router-view"),d=Y1;return _(),A(d,{locale:i.locale,"z-index":i.zIndex},{default:p(()=>[u(h)]),_:1},8,["locale","z-index"])}}}),y3="data-clipboard-text",L6={mounted:(a,o)=>{a.setAttribute(y3,o.value);const{toClipboard:e}=l0();a.onclick=()=>{e(a.getAttribute(y3)).then(()=>{U.msgSuccess("\u590D\u5236\u6210\u529F")}).catch(()=>{U.msgError("\u590D\u5236\u5931\u8D25")})}},updated:(a,o)=>{a.setAttribute(y3,o.value)}},H6=Object.freeze(Object.defineProperty({__proto__:null,default:L6},Symbol.toStringTag,{value:"Module"})),T6={mounted:(a,o)=>{const{value:e}=o,c=$().perms,t="*";if(Array.isArray(e))e.length>0&&(c.some(n=>t==n||e.includes(n))||a.parentNode&&a.parentNode.removeChild(a));else throw new Error(`like v-perms="['auth.menu/edit']"`)}},O6=Object.freeze(Object.defineProperty({__proto__:null,default:T6},Symbol.toStringTag,{value:"Module"}));i0([c0,t0,s0,n0,r0,u0,m0,d0,h0,_0,v0,p0,z0,b0,y0,g0,w0,A0,f0,V0,x0,E0,M0,L0]);const B6=Object.freeze(Object.defineProperty({__proto__:null},Symbol.toStringTag,{value:"Module"})),I6=a=>{for(const[o,e]of Object.entries(e1))a.component(o,e)},D6=Object.freeze(Object.defineProperty({__proto__:null,default:I6},Symbol.toStringTag,{value:"Module"})),R6=a=>{a.use(H0)},P6=Object.freeze(Object.defineProperty({__proto__:null,default:R6},Symbol.toStringTag,{value:"Module"})),C6=o0(),S6=a=>{a.use(C6)},k6=Object.freeze(Object.defineProperty({__proto__:null,default:S6},Symbol.toStringTag,{value:"Module"})),j6=a=>{a.use(L)},N6=Object.freeze(Object.defineProperty({__proto__:null,default:j6},Symbol.toStringTag,{value:"Module"})),q3=Object.assign({"./directives/copy.ts":H6,"./directives/perms.ts":O6,"./plugins/echart.ts":B6,"./plugins/element.ts":D6,"./plugins/hljs.ts":P6,"./plugins/pinia.ts":k6,"./plugins/router.ts":N6});function q6(a){Object.keys(q3).forEach(o=>{const e=o.replace(/(.*\/)*([^.]+).*/gi,"$2"),i=o.replace(/^\.\/([\w-]+).*/gi,"$1"),c=q3[o];if(c.default)switch(i){case"directives":a.directive(e,c.default);break;case"plugins":typeof c.default=="function"&&c.default(a);break}})}const F6={install:q6};G.configure({showSpinner:!1});const g3=E.LOGIN,G6=E.INDEX,U6=[E.LOGIN,E.ERROR_403];L.beforeEach(async(a,o,e)=>{var t;G.start(),document.title=(t=a.meta.title)!=null?t:R.title;const i=$(),c=t3();if(U6.includes(a.path))e();else if(i.token)if(Object.keys(i.userInfo).length!==0)a.path===g3?e({path:G6}):e();else try{await i.getUserInfo();const n=i.routes,h=r1(n);if(!h){h3(),e(E.ERROR_403);return}c.setRouteName(h),N3.redirect={name:h},L.addRoute(N3),n.forEach(d=>{if(!X(d.path)){if(!d.children){L.addRoute(B3,d);return}L.addRoute(d)}}),e({...a,replace:!0})}catch{h3(),e({path:g3,query:{redirect:a.fullPath}})}else e({path:g3,query:{redirect:a.fullPath}})});L.afterEach(()=>{G.done()});if(typeof window<"u"){let a=function(){var o=document.body,e=document.getElementById("__svg__icons__dom__");e||(e=document.createElementNS("http://www.w3.org/2000/svg","svg"),e.style.position="absolute",e.style.width="0",e.style.height="0",e.id="__svg__icons__dom__",e.setAttribute("xmlns","http://www.w3.org/2000/svg"),e.setAttribute("xmlns:link","http://www.w3.org/1999/xlink")),e.innerHTML='',o.insertBefore(e,o.lastChild)};document.readyState==="loading"?document.addEventListener("DOMContentLoaded",a):a()}window._AMapSecurityConfig={securityJsCode:"e8b6cb44e8e431d68052c8e10db99264"};const v3=M1(M6);v3.use(F6);v3.provide("base_url",R.baseUrl+R.urlPrefix);v3.mount("#app");v3.config.warnHandler=()=>null;export{O0 as A,d3 as M,E as P,Q as R,K0 as _,$ as a,S as b,P as c,B as d,X2 as e,U as f,S4 as g,o3 as h,W0 as i,R as j,P4 as k,C as l,k3 as m,B4 as n,R4 as o,T4 as p,I4 as q,j as r,D4 as s,H4 as t,N as u,O4 as v,L4 as w,M4 as x,C4 as y}; diff --git a/public/admin/assets/index.38858664.js b/public/admin/assets/index.38858664.js new file mode 100644 index 000000000..72d8ac0b3 --- /dev/null +++ b/public/admin/assets/index.38858664.js @@ -0,0 +1 @@ +import{B as L,C as P,w as R,D as S,I as U,O as I,P as N,Q as $}from"./element-plus.4328d892.js";import{_ as M}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{u as T}from"./usePaging.2ad8e1e6.js";import{u as Q}from"./useDictOptions.8d37e54b.js";import{_ as j,a as q}from"./edit.vue_vue_type_script_setup_true_name_shopMerchantEdit_lang.605ed377.js";import"./lodash.08438971.js";import"./index.ed71ac09.js";import{d as w,s as z,r as B,$ as K,o as i,c as O,U as o,L as a,u as e,R as E,M as G,K as h,a as C,k as H,Q as J}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.b940d6e3.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const W={class:"mt-4"},X={class:"flex mt-4 justify-end"},Y=w({name:"shopMerchantLists"}),Qo=w({...Y,setup(Z){const b=z(),d=B(!1),l=K({company_name:"",master_name:"",master_phone:""}),F=B([]),v=c=>{F.value=c.map(({id:t})=>t)},{dictData:D}=Q(""),{pager:r,getLists:m,resetParams:V,resetPage:g}=T({fetchFun:q,params:l});return m(),(c,t)=>{const p=L,s=P,_=R,y=S,f=U,u=I,A=N,k=M,x=$;return i(),O("div",null,[o(f,{class:"!border-none mb-4",shadow:"never"},{default:a(()=>[o(y,{class:"mb-[-16px]",model:e(l),inline:""},{default:a(()=>[o(s,{label:"\u5546\u6237\u540D\u79F0",prop:"company_name"},{default:a(()=>[o(p,{class:"w-[280px]",modelValue:e(l).company_name,"onUpdate:modelValue":t[0]||(t[0]=n=>e(l).company_name=n),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u5546\u6237\u540D\u79F0"},null,8,["modelValue"])]),_:1}),o(s,{label:"\u4E3B\u8054\u7CFB\u4EBA\u59D3\u540D",prop:"master_name"},{default:a(()=>[o(p,{class:"w-[280px]",modelValue:e(l).master_name,"onUpdate:modelValue":t[1]||(t[1]=n=>e(l).master_name=n),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u4E3B\u8054\u7CFB\u4EBA\u59D3\u540D"},null,8,["modelValue"])]),_:1}),o(s,{label:"\u4E3B\u8054\u7CFB\u4EBA\u624B\u673A",prop:"master_phone"},{default:a(()=>[o(p,{class:"w-[280px]",modelValue:e(l).master_phone,"onUpdate:modelValue":t[2]||(t[2]=n=>e(l).master_phone=n),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u4E3B\u8054\u7CFB\u4EBA\u624B\u673A"},null,8,["modelValue"])]),_:1}),o(s,null,{default:a(()=>[o(_,{type:"primary",onClick:e(g)},{default:a(()=>[E("\u67E5\u8BE2")]),_:1},8,["onClick"]),o(_,{onClick:e(V)},{default:a(()=>[E("\u91CD\u7F6E")]),_:1},8,["onClick"])]),_:1})]),_:1},8,["model"])]),_:1}),G((i(),h(f,{class:"!border-none",shadow:"never"},{default:a(()=>[C("div",W,[o(A,{data:e(r).lists,onSelectionChange:v},{default:a(()=>[o(u,{label:"ID",width:"100",prop:"id","show-overflow-tooltip":""}),o(u,{label:"\u5546\u6237\u540D\u79F0",prop:"company_name","show-overflow-tooltip":""}),o(u,{label:"\u793E\u4F1A\u4EE3\u7801",prop:"organization_code","show-overflow-tooltip":""}),o(u,{label:"\u4E3B\u8054\u7CFB\u4EBA\u59D3\u540D",prop:"master_name","show-overflow-tooltip":""}),o(u,{label:"\u4E3B\u8054\u7CFB\u4EBA\u624B\u673A",prop:"master_phone","show-overflow-tooltip":""}),o(u,{label:"\u8BA4\u8BC1\u53CD\u9988",prop:"notes","show-overflow-tooltip":""})]),_:1},8,["data"])]),C("div",X,[o(k,{modelValue:e(r),"onUpdate:modelValue":t[3]||(t[3]=n=>H(r)?r.value=n:null),onChange:e(m)},null,8,["modelValue","onChange"])])]),_:1})),[[x,e(r).loading]]),e(d)?(i(),h(j,{key:0,ref_key:"editRef",ref:b,"dict-data":e(D),onSuccess:e(m),onClose:t[4]||(t[4]=n=>d.value=!1)},null,8,["dict-data","onSuccess"])):J("",!0)])}}});export{Qo as default}; diff --git a/public/admin/assets/index.494c137c.js b/public/admin/assets/index.494c137c.js new file mode 100644 index 000000000..83163c70a --- /dev/null +++ b/public/admin/assets/index.494c137c.js @@ -0,0 +1 @@ +import{B as z,C as K,M as G,N as H,w as J,D as W,I as X,O as Y,P as Z,Q as ee}from"./element-plus.4328d892.js";import{_ as le}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{_ as te}from"./index.vue_vue_type_script_setup_true_lang.17266fa4.js";import{f as oe,b as ae}from"./index.aa9bb752.js";import{u as ue}from"./usePaging.2ad8e1e6.js";import{u as ne}from"./useDictOptions.a61fcf9f.js";import{_ as pe,a as re,b as ie}from"./edit.vue_vue_type_script_setup_true_name_appUpdateEdit_lang.76e851a1.js";import"./lodash.08438971.js";import{d as $,s as se,r as P,$ as de,af as me,o as n,c as E,U as e,L as o,u as t,T as h,a7 as x,K as i,R as v,M as F,a as A,k as ce,Q as _e,n as U}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.fa872673.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";const fe={class:"mt-4"},ve={class:"flex mt-4 justify-end"},be=$({name:"appUpdateLists"}),nl=$({...be,setup(Fe){const B=se(),w=P(!1),u=de({title:"",content:"",type:"",version:"",dow_url:"",force:"",quiet:""}),V=P([]),L=r=>{V.value=r.map(({id:a})=>a)},{dictData:s}=ne("app_type,app_force_quiet"),{pager:b,getLists:C,resetParams:N,resetPage:R}=ue({fetchFun:ie,params:u}),S=async()=>{var r;w.value=!0,await U(),(r=B.value)==null||r.open("add")},T=async r=>{var a,c;w.value=!0,await U(),(a=B.value)==null||a.open("edit"),(c=B.value)==null||c.setFormData(r)},D=async r=>{await oe.confirm("\u786E\u5B9A\u8981\u5220\u9664\uFF1F"),await re({id:r}),C()};return C(),(r,a)=>{const c=z,d=K,_=G,k=H,f=J,I=W,q=X,M=ae,p=Y,g=te,O=Z,Q=le,y=me("perms"),j=ee;return n(),E("div",null,[e(q,{class:"!border-none mb-4",shadow:"never"},{default:o(()=>[e(I,{class:"mb-[-16px]",model:t(u),inline:""},{default:o(()=>[e(d,{label:"\u6807\u9898",prop:"title"},{default:o(()=>[e(c,{class:"w-[280px]",modelValue:t(u).title,"onUpdate:modelValue":a[0]||(a[0]=l=>t(u).title=l),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u6807\u9898"},null,8,["modelValue"])]),_:1}),e(d,{label:"\u5185\u5BB9",prop:"content"},{default:o(()=>[e(c,{class:"w-[280px]",modelValue:t(u).content,"onUpdate:modelValue":a[1]||(a[1]=l=>t(u).content=l),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u5185\u5BB9",type:"textarea",autosize:""},null,8,["modelValue"])]),_:1}),e(d,{label:"APP\u7C7B\u578B",prop:"type"},{default:o(()=>[e(k,{class:"w-[280px]",modelValue:t(u).type,"onUpdate:modelValue":a[2]||(a[2]=l=>t(u).type=l),clearable:"",placeholder:"\u8BF7\u9009\u62E9APP\u7C7B\u578B"},{default:o(()=>[e(_,{label:"\u5168\u90E8",value:""}),(n(!0),E(h,null,x(t(s).app_type,(l,m)=>(n(),i(_,{key:m,label:l.name,value:l.value},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1}),e(d,{label:"\u7248\u672C",prop:"version"},{default:o(()=>[e(c,{class:"w-[280px]",modelValue:t(u).version,"onUpdate:modelValue":a[3]||(a[3]=l=>t(u).version=l),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u7248\u672C"},null,8,["modelValue"])]),_:1}),e(d,{label:"\u662F\u5426\u5F3A\u5236\u66F4\u65B0",prop:"force"},{default:o(()=>[e(k,{class:"w-[280px]",modelValue:t(u).force,"onUpdate:modelValue":a[4]||(a[4]=l=>t(u).force=l),clearable:"",placeholder:"\u8BF7\u9009\u62E9\u662F\u5426\u5F3A\u5236\u66F4\u65B0"},{default:o(()=>[e(_,{label:"\u5168\u90E8",value:""}),(n(!0),E(h,null,x(t(s).app_force_quiet,(l,m)=>(n(),i(_,{key:m,label:l.name,value:l.value},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1}),e(d,{label:"\u662F\u5426\u9759\u9ED8\u66F4\u65B0",prop:"quiet"},{default:o(()=>[e(k,{class:"w-[280px]",modelValue:t(u).quiet,"onUpdate:modelValue":a[5]||(a[5]=l=>t(u).quiet=l),clearable:"",placeholder:"\u8BF7\u9009\u62E9\u662F\u5426\u9759\u9ED8\u66F4\u65B0"},{default:o(()=>[e(_,{label:"\u5168\u90E8",value:""}),(n(!0),E(h,null,x(t(s).app_force_quiet,(l,m)=>(n(),i(_,{key:m,label:l.name,value:l.value},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1}),e(d,null,{default:o(()=>[e(f,{type:"primary",onClick:t(R)},{default:o(()=>[v("\u67E5\u8BE2")]),_:1},8,["onClick"]),e(f,{onClick:t(N)},{default:o(()=>[v("\u91CD\u7F6E")]),_:1},8,["onClick"])]),_:1})]),_:1},8,["model"])]),_:1}),F((n(),i(q,{class:"!border-none",shadow:"never"},{default:o(()=>[F((n(),i(f,{type:"primary",onClick:S},{icon:o(()=>[e(M,{name:"el-icon-Plus"})]),default:o(()=>[v(" \u65B0\u589E ")]),_:1})),[[y,["app_update/add"]]]),F((n(),i(f,{disabled:!t(V).length,onClick:a[6]||(a[6]=l=>D(t(V)))},{default:o(()=>[v(" \u5220\u9664 ")]),_:1},8,["disabled"])),[[y,["app_update/delete"]]]),A("div",fe,[e(O,{data:t(b).lists,onSelectionChange:L},{default:o(()=>[e(p,{type:"selection",width:"55"}),e(p,{label:"\u6807\u9898",prop:"title","show-overflow-tooltip":""}),e(p,{label:"\u5185\u5BB9",prop:"content","show-overflow-tooltip":""}),e(p,{label:"APP\u7C7B\u578B",prop:"type"},{default:o(({row:l})=>[e(g,{options:t(s).app_type,value:l.type},null,8,["options","value"])]),_:1}),e(p,{label:"\u7248\u672C",prop:"version","show-overflow-tooltip":""}),e(p,{label:"app\u94FE\u63A5",prop:"dow_url","show-overflow-tooltip":""}),e(p,{label:"\u662F\u5426\u5F3A\u5236\u66F4\u65B0",prop:"force"},{default:o(({row:l})=>[e(g,{options:t(s).app_force_quiet,value:l.force},null,8,["options","value"])]),_:1}),e(p,{label:"\u662F\u5426\u9759\u9ED8\u66F4\u65B0",prop:"quiet"},{default:o(({row:l})=>[e(g,{options:t(s).app_force_quiet,value:l.quiet},null,8,["options","value"])]),_:1}),e(p,{label:"\u66F4\u65B0\u65F6\u95F4",prop:"update_time","show-overflow-tooltip":""}),e(p,{label:"\u64CD\u4F5C",width:"120",fixed:"right"},{default:o(({row:l})=>[F((n(),i(f,{type:"primary",link:"",onClick:m=>T(l)},{default:o(()=>[v(" \u7F16\u8F91 ")]),_:2},1032,["onClick"])),[[y,["app_update/edit"]]]),F((n(),i(f,{type:"danger",link:"",onClick:m=>D(l.id)},{default:o(()=>[v(" \u5220\u9664 ")]),_:2},1032,["onClick"])),[[y,["app_update/delete"]]])]),_:1})]),_:1},8,["data"])]),A("div",ve,[e(Q,{modelValue:t(b),"onUpdate:modelValue":a[7]||(a[7]=l=>ce(b)?b.value=l:null),onChange:t(C)},null,8,["modelValue","onChange"])])]),_:1})),[[j,t(b).loading]]),t(w)?(n(),i(pe,{key:0,ref_key:"editRef",ref:B,"dict-data":t(s),onSuccess:t(C),onClose:a[8]||(a[8]=l=>w.value=!1)},null,8,["dict-data","onSuccess"])):_e("",!0)])}}});export{nl as default}; diff --git a/public/admin/assets/index.4a8622b8.js b/public/admin/assets/index.4a8622b8.js new file mode 100644 index 000000000..60ad46b5f --- /dev/null +++ b/public/admin/assets/index.4a8622b8.js @@ -0,0 +1 @@ +import{a6 as x,w as D,O as V,P as T,I as L,Q as N}from"./element-plus.4328d892.js";import{_ as P}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{k as F,f as R,b as $}from"./index.ed71ac09.js";import{g as Q,h as U}from"./system.1f3b2cc7.js";import{u as j}from"./usePaging.2ad8e1e6.js";import{d as C,a4 as q,af as A,o as i,c as I,U as t,L as e,M as p,K as r,u as n,R as l,Q as _,a as y,k as K}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const M={class:"flex"},O={class:"flex justify-end mt-4"},z=C({name:"scheduledTask"}),Lt=C({...z,setup(G){const{pager:s,getLists:m}=j({fetchFun:U,params:{}}),g=async f=>{await R.confirm("\u786E\u5B9A\u8981\u5220\u9664\uFF1F"),await Q({id:f}),m()};return m(),(f,b)=>{const k=$,u=D,h=q("router-link"),o=V,d=x,w=T,E=P,v=L,c=A("perms"),B=N;return i(),I("div",null,[t(v,{shadow:"never",class:"!border-none"},{default:e(()=>[p((i(),r(h,{to:n(F)("crontab.crontab/add:edit")},{default:e(()=>[t(u,{type:"primary",class:"mb-[16px]"},{icon:e(()=>[t(k,{name:"el-icon-Plus"})]),default:e(()=>[l(" \u65B0\u589E ")]),_:1})]),_:1},8,["to"])),[[c,["crontab.crontab/add","crontab.crontab/add:edit"]]]),p((i(),r(w,{ref:"paneTable",class:"m-t-24",data:n(s).lists,style:{width:"100%"}},{default:e(()=>[t(o,{prop:"name",label:"\u540D\u79F0","min-width":"120"}),t(o,{prop:"type_desc",label:"\u7C7B\u578B","min-width":"100"}),t(o,{prop:"command",label:"\u547D\u4EE4","min-width":"100"}),t(o,{prop:"params",label:"\u53C2\u6570","min-width":"80"}),t(o,{prop:"expression",label:"\u89C4\u5219","min-width":"100"}),t(o,{prop:"status",label:"\u72B6\u6001","min-width":"100"},{default:e(({row:a})=>[a.status==1?(i(),r(d,{key:0,type:"success"},{default:e(()=>[l("\u8FD0\u884C\u4E2D")]),_:1})):_("",!0),a.status==2?(i(),r(d,{key:1,type:"info"},{default:e(()=>[l("\u5DF2\u505C\u6B62")]),_:1})):_("",!0),a.status==3?(i(),r(d,{key:2,type:"danger"},{default:e(()=>[l("\u9519\u8BEF")]),_:1})):_("",!0)]),_:1}),t(o,{prop:"error",label:"\u9519\u8BEF\u539F\u56E0","min-width":"120"}),t(o,{prop:"last_time",label:"\u6700\u540E\u6267\u884C\u65F6\u95F4",width:"180"}),t(o,{prop:"time",label:"\u65F6\u957F","min-width":"100"}),t(o,{prop:"max_time",label:"\u6700\u5927\u65F6\u957F","min-width":"100"}),t(o,{label:"\u64CD\u4F5C",width:"120",fixed:"right"},{default:e(({row:a})=>[y("div",M,[t(u,{type:"primary",link:""},{default:e(()=>[p((i(),r(h,{to:{path:n(F)("crontab.crontab/add:edit"),query:{id:a.id}}},{default:e(()=>[t(u,{type:"primary",link:""},{default:e(()=>[l(" \u7F16\u8F91 ")]),_:1})]),_:2},1032,["to"])),[[c,["crontab.crontab/edit","crontab.crontab/add:edit"]]])]),_:2},1024),p((i(),r(u,{type:"danger",link:"",onClick:H=>g(a.id)},{default:e(()=>[l(" \u5220\u9664 ")]),_:2},1032,["onClick"])),[[c,["crontab.crontab/delete"]]])])]),_:1})]),_:1},8,["data"])),[[B,n(s).loading]]),y("div",O,[t(E,{modelValue:n(s),"onUpdate:modelValue":b[0]||(b[0]=a=>K(s)?s.value=a:null),onChange:n(m)},null,8,["modelValue","onChange"])])]),_:1})])}}});export{Lt as default}; diff --git a/public/admin/assets/index.500fd836.js b/public/admin/assets/index.500fd836.js new file mode 100644 index 000000000..f38170e1a --- /dev/null +++ b/public/admin/assets/index.500fd836.js @@ -0,0 +1 @@ +import{_ as s}from"./attr.vue_vue_type_script_setup_true_lang.f9c983cd.js";import{_}from"./content.vue_vue_type_script_setup_true_lang.b3e4f379.js";import{_ as r}from"./attr.vue_vue_type_script_setup_true_lang.a5f46be8.js";import a from"./content.416ba4d2.js";import{_ as l}from"./attr.vue_vue_type_script_setup_true_lang.4cdc919e.js";import u from"./content.b3fbaeeb.js";import{_ as c}from"./attr.vue_vue_type_script_setup_true_lang.d9838080.js";import{_ as m}from"./content.vue_vue_type_script_setup_true_lang.888a9caf.js";import{_ as d}from"./attr.vue_vue_type_script_setup_true_lang.d01577b5.js";import f from"./content.87312235.js";import{_ as p}from"./attr.vue_vue_type_script_setup_true_lang.0fc534ba.js";import b from"./content.39f10dd3.js";import{_ as g}from"./attr.vue_vue_type_script_setup_true_lang.871cb086.js";import{_ as $}from"./content.vue_vue_type_script_setup_true_lang.e6931808.js";import{_ as y}from"./attr.vue_vue_type_script_setup_true_lang.00e826d0.js";import v from"./content.d63a41a9.js";const j=()=>({title:"\u9996\u9875\u8F6E\u64AD\u56FE",name:"banner",content:{enabled:1,data:[{image:"",name:"",link:{}}]},styles:{}}),x={attr:s,content:_,options:j},O=Object.freeze(Object.defineProperty({__proto__:null,default:x},Symbol.toStringTag,{value:"Module"})),F=()=>({title:"\u5BA2\u670D\u8BBE\u7F6E",name:"customer-service",content:{title:"\u6DFB\u52A0\u5BA2\u670D\u4E8C\u7EF4\u7801",time:"",mobile:"",qrcode:""},styles:{}}),S={attr:r,content:a,options:F},A=Object.freeze(Object.defineProperty({__proto__:null,default:S},Symbol.toStringTag,{value:"Module"})),E=()=>({title:"\u6211\u7684\u670D\u52A1",name:"my-service",content:{style:1,title:"\u6211\u7684\u670D\u52A1",data:[{image:"",name:"\u5BFC\u822A\u540D\u79F0",link:{}}]},styles:{}}),D={attr:l,content:u,options:E},B=Object.freeze(Object.defineProperty({__proto__:null,default:D},Symbol.toStringTag,{value:"Module"})),z=()=>({title:"\u5BFC\u822A\u83DC\u5355",name:"nav",content:{enabled:1,data:[{image:"",name:"\u5BFC\u822A\u540D\u79F0",link:{}}]},styles:{}}),M={attr:c,content:m,options:z},P=Object.freeze(Object.defineProperty({__proto__:null,default:M},Symbol.toStringTag,{value:"Module"})),T=()=>({title:"\u8D44\u8BAF",name:"news",disabled:1,content:{},styles:{}}),w={attr:d,content:f,options:T},C=Object.freeze(Object.defineProperty({__proto__:null,default:w},Symbol.toStringTag,{value:"Module"})),k=()=>({title:"\u641C\u7D22",name:"search",disabled:1,content:{},styles:{}}),h={attr:p,content:b,options:k},q=Object.freeze(Object.defineProperty({__proto__:null,default:h},Symbol.toStringTag,{value:"Module"})),N=()=>({title:"\u4E2A\u4EBA\u4E2D\u5FC3\u5E7F\u544A\u56FE",name:"user-banner",content:{enabled:1,data:[{image:"",name:"",link:{}}]},styles:{}}),W={attr:g,content:$,options:N},G=Object.freeze(Object.defineProperty({__proto__:null,default:W},Symbol.toStringTag,{value:"Module"})),H=()=>({title:"\u7528\u6237\u4FE1\u606F",name:"user-info",disabled:1,content:{},styles:{}}),I={attr:y,content:v,options:H},J=Object.freeze(Object.defineProperty({__proto__:null,default:I},Symbol.toStringTag,{value:"Module"})),t=Object.assign({"./banner/index.ts":O,"./customer-service/index.ts":A,"./my-service/index.ts":B,"./nav/index.ts":P,"./news/index.ts":C,"./search/index.ts":q,"./user-banner/index.ts":G,"./user-info/index.ts":J});console.log(t);const n={};Object.keys(t).forEach(e=>{var o;const i=e.replace(/^\.\/([\w-]+).*/gi,"$1");n[i]=(o=t[e])==null?void 0:o.default});const rt=n;export{rt as w}; diff --git a/public/admin/assets/index.52406f04.js b/public/admin/assets/index.52406f04.js new file mode 100644 index 000000000..38288e06d --- /dev/null +++ b/public/admin/assets/index.52406f04.js @@ -0,0 +1 @@ +import{a6 as O,w as V,O as P,P as z,I as Q,Q as S}from"./element-plus.4328d892.js";import{M as h,f as G,b as I}from"./index.aa9bb752.js";import{e as K,a as j}from"./menu.072eb1d3.js";import{u as q}from"./usePaging.2ad8e1e6.js";import{_ as H}from"./edit.vue_vue_type_script_setup_true_lang.c2e27398.js";import{d as N,s as x,r as J,af as W,o as i,c as v,U as n,L as o,a as D,M as c,K as r,R as m,u as p,Q as E,n as T}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./picker.vue_vue_type_script_setup_true_lang.d458cc42.js";import"./index.fa872673.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";const X={class:"menu-lists"},Y={key:0},Z={key:1},ee={key:2},te={class:"flex"},oe=N({name:"menu"}),Ie=N({...oe,setup(ae){const b=x(),d=x();let y=!1;const _=J(!1),{pager:k,getLists:C}=q({fetchFun:j,params:{page_type:0}}),g=async e=>{var a,s;_.value=!0,await T(),e&&((a=d.value)==null||a.setFormData({pid:e})),(s=d.value)==null||s.open("add")},R=async e=>{var a,s;_.value=!0,await T(),(a=d.value)==null||a.open("edit"),(s=d.value)==null||s.getDetail(e)},$=async e=>{await G.confirm("\u786E\u5B9A\u8981\u5220\u9664\uFF1F"),await K({id:e}),C()},A=()=>{y=!y,w(k.lists,y)},w=(e,a=!0)=>{var s;for(const l in e)(s=b.value)==null||s.toggleRowExpansion(e[l],a),e[l].children&&w(e[l].children,a)};return C().then(e=>{console.log(e)}),(e,a)=>{const s=I,l=V,u=P,B=O,L=z,U=Q,f=W("perms"),M=S;return i(),v("div",X,[n(U,{class:"!border-none",shadow:"never"},{default:o(()=>[D("div",null,[c((i(),r(l,{type:"primary",onClick:a[0]||(a[0]=t=>g())},{icon:o(()=>[n(s,{name:"el-icon-Plus"})]),default:o(()=>[m(" \u65B0\u589E ")]),_:1})),[[f,["auth.menu/add"]]]),n(l,{onClick:A},{default:o(()=>[m(" \u5C55\u5F00/\u6298\u53E0 ")]),_:1})]),c((i(),r(L,{ref_key:"tableRef",ref:b,class:"mt-4",size:"large",data:p(k).lists,"row-key":"id","tree-props":{children:"children",hasChildren:"hasChildren"}},{default:o(()=>[n(u,{label:"\u83DC\u5355\u540D\u79F0",prop:"name","min-width":"150","show-overflow-tooltip":""}),n(u,{label:"\u7C7B\u578B",prop:"type","min-width":"80"},{default:o(({row:t})=>[t.type==p(h).CATALOGUE?(i(),v("div",Y,"\u76EE\u5F55")):t.type==p(h).MENU?(i(),v("div",Z,"\u83DC\u5355")):t.type==p(h).BUTTON?(i(),v("div",ee,"\u6309\u94AE")):E("",!0)]),_:1}),n(u,{label:"\u56FE\u6807",prop:"icon","min-width":"80"},{default:o(({row:t})=>[D("div",te,[n(s,{name:t.icon,size:20},null,8,["name"])])]),_:1}),n(u,{label:"\u6743\u9650\u6807\u8BC6",prop:"perms","min-width":"150","show-overflow-tooltip":""}),n(u,{label:"\u72B6\u6001",prop:"is_disable","min-width":"100"},{default:o(({row:t})=>[t.is_disable==0?(i(),r(B,{key:0},{default:o(()=>[m("\u6B63\u5E38")]),_:1})):(i(),r(B,{key:1,type:"danger"},{default:o(()=>[m("\u505C\u7528")]),_:1}))]),_:1}),n(u,{label:"\u6392\u5E8F",prop:"sort","min-width":"100"}),n(u,{label:"\u66F4\u65B0\u65F6\u95F4",prop:"update_time","min-width":"180"}),n(u,{label:"\u64CD\u4F5C",width:"160",fixed:"right"},{default:o(({row:t})=>[t.type!==p(h).BUTTON?c((i(),r(l,{key:0,type:"primary",link:"",onClick:F=>g(t.id)},{default:o(()=>[m(" \u65B0\u589E ")]),_:2},1032,["onClick"])),[[f,["auth.menu/add"]]]):E("",!0),c((i(),r(l,{type:"primary",link:"",onClick:F=>R(t)},{default:o(()=>[m(" \u7F16\u8F91 ")]),_:2},1032,["onClick"])),[[f,["auth.menu/edit"]]]),c((i(),r(l,{type:"danger",link:"",onClick:F=>$(t.id)},{default:o(()=>[m(" \u5220\u9664 ")]),_:2},1032,["onClick"])),[[f,["auth.menu/delete"]]])]),_:1})]),_:1},8,["data"])),[[M,p(k).loading]])]),_:1}),p(_)?(i(),r(H,{key:0,ref_key:"editRef",ref:d,onSuccess:p(C),onClose:a[1]||(a[1]=t=>_.value=!1)},null,8,["onSuccess"])):E("",!0)])}}});export{Ie as default}; diff --git a/public/admin/assets/index.5353cd95.js b/public/admin/assets/index.5353cd95.js new file mode 100644 index 000000000..f8094084d --- /dev/null +++ b/public/admin/assets/index.5353cd95.js @@ -0,0 +1 @@ +import{T as H,a6 as G,M as J,N as W,C as X,B as Y,w as Z,D as ee,I as te,O as ae,P as oe,Q as le}from"./element-plus.4328d892.js";import{_ as ne}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{f as se,b as ie}from"./index.37f7aea6.js";import{u as ue}from"./vue-router.9f65afb1.js";import{d as L,r as T,s as de,$ as P,af as re,o as s,c as w,U as e,L as a,u as o,T as me,a7 as pe,K as d,a8 as ce,R as r,a as D,M as v,k as _e,Q as fe,n as R}from"./@vue.51d7f2d8.js";import{e as ye,f as ve,d as ge}from"./dict.58face92.js";import{u as be}from"./usePaging.2ad8e1e6.js";import{_ as Ce}from"./edit.vue_vue_type_script_setup_true_lang.b594ce58.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.5759a1a6.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";const Ee={class:"dict-type"},ke={class:"mt-4"},we={class:"flex justify-end mt-4"},De=L({name:"dictData"}),pt=L({...De,setup(he){const{query:N}=ue(),g=T(!1),_=de(),i=P({type:"",type_id:Number(N.id),name:"",status:""}),E=P({dict_type:[]}),{pager:f,getLists:y,resetPage:h,resetParams:S}=be({fetchFun:ge,params:i}),k=T([]),U=n=>{k.value=n.map(({id:t})=>t)},A=async()=>{var t,m;g.value=!0,await R();const n=E.dict_type.find(p=>p.id==i.type_id);(t=_.value)==null||t.setFormData({type_value:n==null?void 0:n.type,type_id:n.id}),(m=_.value)==null||m.open("add")},I=async n=>{var t,m;g.value=!0,await R(),(t=_.value)==null||t.open("edit"),(m=_.value)==null||m.setFormData(n)},F=async n=>{await se.confirm("\u786E\u5B9A\u8981\u5220\u9664\uFF1F"),await ye({id:n}),y()},K=async()=>{const n=await ve({page_type:0});E.dict_type=n.lists};return y(),K(),(n,t)=>{const m=H,p=J,B=W,b=X,q=Y,c=Z,M=ee,V=te,x=ie,u=ae,$=G,O=oe,Q=ne,C=re("perms"),j=le;return s(),w("div",Ee,[e(V,{class:"!border-none",shadow:"never"},{default:a(()=>[e(m,{class:"mb-4",content:"\u6570\u636E\u7BA1\u7406",onBack:t[0]||(t[0]=l=>n.$router.back())}),e(M,{ref:"formRef",class:"mb-[-16px]",model:o(i),inline:""},{default:a(()=>[e(b,{label:"\u5B57\u5178\u540D\u79F0"},{default:a(()=>[e(B,{class:"w-[280px]",modelValue:o(i).type_id,"onUpdate:modelValue":t[1]||(t[1]=l=>o(i).type_id=l),onChange:o(y)},{default:a(()=>[(s(!0),w(me,null,pe(o(E).dict_type,l=>(s(),d(p,{label:l.name,value:l.id,key:l.id},null,8,["label","value"]))),128))]),_:1},8,["modelValue","onChange"])]),_:1}),e(b,{label:"\u6570\u636E\u540D\u79F0"},{default:a(()=>[e(q,{class:"w-[280px]",modelValue:o(i).name,"onUpdate:modelValue":t[2]||(t[2]=l=>o(i).name=l),clearable:"",onKeyup:ce(o(h),["enter"])},null,8,["modelValue","onKeyup"])]),_:1}),e(b,{label:"\u6570\u636E\u72B6\u6001"},{default:a(()=>[e(B,{class:"w-[280px]",modelValue:o(i).status,"onUpdate:modelValue":t[3]||(t[3]=l=>o(i).status=l)},{default:a(()=>[e(p,{label:"\u5168\u90E8",value:""}),e(p,{label:"\u6B63\u5E38",value:1}),e(p,{label:"\u505C\u7528",value:0})]),_:1},8,["modelValue"])]),_:1}),e(b,null,{default:a(()=>[e(c,{type:"primary",onClick:o(h)},{default:a(()=>[r("\u67E5\u8BE2")]),_:1},8,["onClick"]),e(c,{onClick:o(S)},{default:a(()=>[r("\u91CD\u7F6E")]),_:1},8,["onClick"])]),_:1})]),_:1},8,["model"])]),_:1}),e(V,{class:"!border-none mt-4",shadow:"never"},{default:a(()=>[D("div",null,[v((s(),d(c,{type:"primary",onClick:A},{icon:a(()=>[e(x,{name:"el-icon-Plus"})]),default:a(()=>[r(" \u6DFB\u52A0\u6570\u636E ")]),_:1})),[[C,["setting.dict.dict_data/add"]]]),v((s(),d(c,{disabled:!o(k).length,type:"danger",onClick:t[4]||(t[4]=l=>F(o(k)))},{icon:a(()=>[e(x,{name:"el-icon-Delete"})]),default:a(()=>[r(" \u5220\u9664 ")]),_:1},8,["disabled"])),[[C,["setting.dict.dict_data/delete"]]])]),v((s(),w("div",ke,[D("div",null,[e(O,{data:o(f).lists,size:"large",onSelectionChange:U},{default:a(()=>[e(u,{type:"selection",width:"55"}),e(u,{label:"ID",prop:"id"}),e(u,{label:"\u6570\u636E\u540D\u79F0",prop:"name","min-width":"120"}),e(u,{label:"\u6570\u636E\u503C",prop:"value","min-width":"120"}),e(u,{label:"\u72B6\u6001"},{default:a(({row:l})=>[l.status==1?(s(),d($,{key:0},{default:a(()=>[r("\u6B63\u5E38")]),_:1})):(s(),d($,{key:1,type:"danger"},{default:a(()=>[r("\u505C\u7528")]),_:1}))]),_:1}),e(u,{label:"\u5907\u6CE8",prop:"remark","min-width":"120","show-tooltip-when-overflow":""}),e(u,{label:"\u6392\u5E8F",prop:"sort"}),e(u,{label:"\u64CD\u4F5C",width:"120",fixed:"right"},{default:a(({row:l})=>[v((s(),d(c,{link:"",type:"primary",onClick:z=>I(l)},{default:a(()=>[r(" \u7F16\u8F91 ")]),_:2},1032,["onClick"])),[[C,["setting.dict.dict_data/edit"]]]),v((s(),d(c,{link:"",type:"danger",onClick:z=>F(l.id)},{default:a(()=>[r(" \u5220\u9664 ")]),_:2},1032,["onClick"])),[[C,["setting.dict.dict_data/delete"]]])]),_:1})]),_:1},8,["data"])]),D("div",we,[e(Q,{modelValue:o(f),"onUpdate:modelValue":t[5]||(t[5]=l=>_e(f)?f.value=l:null),onChange:o(y)},null,8,["modelValue","onChange"])])])),[[j,o(f).loading]])]),_:1}),o(g)?(s(),d(Ce,{key:0,ref_key:"editRef",ref:_,onSuccess:o(y),onClose:t[6]||(t[6]=l=>g.value=!1)},null,8,["onSuccess"])):fe("",!0)])}}});export{pt as default}; diff --git a/public/admin/assets/index.57418120.js b/public/admin/assets/index.57418120.js new file mode 100644 index 000000000..732f9394f --- /dev/null +++ b/public/admin/assets/index.57418120.js @@ -0,0 +1 @@ +import{B as A,C as Q,w as j,D as q,I as K,O as M,P as O,Q as z}from"./element-plus.4328d892.js";import{_ as G}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{f as H,b as J}from"./index.ed71ac09.js";import{u as W}from"./usePaging.2ad8e1e6.js";import{u as X}from"./useDictOptions.8d37e54b.js";import{_ as Y,a as Z,b as ee}from"./edit.vue_vue_type_script_setup_true_name_companyComplaintFeedbackEdit_lang.bc8f5151.js";import"./lodash.08438971.js";import{d as E,s as oe,r as h,$ as te,af as ae,o as i,c as ne,U as e,L as a,u as o,R as p,M as _,K as r,a as B,k as le,Q as ie,n as g}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.b940d6e3.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";const se={class:"mt-4"},me={class:"flex mt-4 justify-end"},pe=E({name:"companyComplaintFeedbackLists"}),Xe=E({...pe,setup(re){const f=oe(),C=h(!1),s=te({company_id:"",content:""}),v=h([]),V=l=>{v.value=l.map(({id:t})=>t)},{dictData:D}=X(""),{pager:c,getLists:b,resetParams:x,resetPage:$}=W({fetchFun:ee,params:s}),P=async()=>{var l;C.value=!0,await g(),(l=f.value)==null||l.open("add")},L=async l=>{var t,d;C.value=!0,await g(),(t=f.value)==null||t.open("edit"),(d=f.value)==null||d.setFormData(l)},w=async l=>{await H.confirm("\u786E\u5B9A\u8981\u5220\u9664\uFF1F"),await Z({id:l}),b()};return b(),(l,t)=>{const d=A,y=Q,m=j,R=q,F=K,N=J,u=M,S=O,T=G,k=ae("perms"),U=z;return i(),ne("div",null,[e(F,{class:"!border-none mb-4",shadow:"never"},{default:a(()=>[e(R,{class:"mb-[-16px]",model:o(s),inline:""},{default:a(()=>[e(y,{label:"\u516C\u53F8",prop:"company_id"},{default:a(()=>[e(d,{class:"w-[280px]",modelValue:o(s).company_id,"onUpdate:modelValue":t[0]||(t[0]=n=>o(s).company_id=n),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u516C\u53F8"},null,8,["modelValue"])]),_:1}),e(y,{label:"\u5185\u5BB9",prop:"content"},{default:a(()=>[e(d,{class:"w-[280px]",modelValue:o(s).content,"onUpdate:modelValue":t[1]||(t[1]=n=>o(s).content=n),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u5185\u5BB9"},null,8,["modelValue"])]),_:1}),e(y,null,{default:a(()=>[e(m,{type:"primary",onClick:o($)},{default:a(()=>[p("\u67E5\u8BE2")]),_:1},8,["onClick"]),e(m,{onClick:o(x)},{default:a(()=>[p("\u91CD\u7F6E")]),_:1},8,["onClick"])]),_:1})]),_:1},8,["model"])]),_:1}),_((i(),r(F,{class:"!border-none",shadow:"never"},{default:a(()=>[_((i(),r(m,{type:"primary",onClick:P},{icon:a(()=>[e(N,{name:"el-icon-Plus"})]),default:a(()=>[p(" \u65B0\u589E ")]),_:1})),[[k,["company_complaint_feedback/add"]]]),_((i(),r(m,{disabled:!o(v).length,onClick:t[2]||(t[2]=n=>w(o(v)))},{default:a(()=>[p(" \u5220\u9664 ")]),_:1},8,["disabled"])),[[k,["company_complaint_feedback/delete"]]]),B("div",se,[e(S,{data:o(c).lists,onSelectionChange:V},{default:a(()=>[e(u,{type:"selection",width:"55"}),e(u,{label:"id",prop:"id",width:"120","show-overflow-tooltip":""}),e(u,{label:"\u516C\u53F8",prop:"company_name",width:"220","show-overflow-tooltip":""}),e(u,{label:"\u5185\u5BB9",prop:"content","show-overflow-tooltip":""}),e(u,{label:"\u64CD\u4F5C",width:"120",fixed:"right"},{default:a(({row:n})=>[_((i(),r(m,{type:"primary",link:"",onClick:I=>L(n)},{default:a(()=>[p(" \u7F16\u8F91 ")]),_:2},1032,["onClick"])),[[k,["company_complaint_feedback/edit"]]]),_((i(),r(m,{type:"danger",link:"",onClick:I=>w(n.id)},{default:a(()=>[p(" \u5220\u9664 ")]),_:2},1032,["onClick"])),[[k,["company_complaint_feedback/delete"]]])]),_:1})]),_:1},8,["data"])]),B("div",me,[e(T,{modelValue:o(c),"onUpdate:modelValue":t[3]||(t[3]=n=>le(c)?c.value=n:null),onChange:o(b)},null,8,["modelValue","onChange"])])]),_:1})),[[U,o(c).loading]]),o(C)?(i(),r(Y,{key:0,ref_key:"editRef",ref:f,"dict-data":o(D),onSuccess:o(b),onClose:t[4]||(t[4]=n=>C.value=!1)},null,8,["dict-data","onSuccess"])):ie("",!0)])}}});export{Xe as default}; diff --git a/public/admin/assets/index.5759a1a6.js b/public/admin/assets/index.5759a1a6.js new file mode 100644 index 000000000..aeafb128b --- /dev/null +++ b/public/admin/assets/index.5759a1a6.js @@ -0,0 +1 @@ +import{w as c,L as f}from"./element-plus.4328d892.js";import{_ as k}from"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import{d as v}from"./index.37f7aea6.js";import{o as a,c as g,a as d,H as i,U as B,a9 as C,L as n,R as s,S as l,K as m,Q as u}from"./@vue.51d7f2d8.js";const y={class:"dialog"},$={class:"dialog-footer"};function V(e,o,b,w,E,T){const r=c,p=f;return a(),g("div",y,[d("div",{class:"dialog__trigger",onClick:o[0]||(o[0]=(...t)=>e.open&&e.open(...t))},[i(e.$slots,"trigger",{},void 0,!0)]),B(p,{modelValue:e.visible,"onUpdate:modelValue":o[3]||(o[3]=t=>e.visible=t),"custom-class":e.customClass,center:e.center,"append-to-body":!0,width:e.width,"close-on-click-modal":e.clickModalClose,onClosed:e.close},C({default:n(()=>[i(e.$slots,"default",{},()=>[s(l(e.content),1)],!0)]),_:2},[e.title?{name:"header",fn:n(()=>[s(l(e.title),1)]),key:"0"}:void 0,e.button?{name:"footer",fn:n(()=>[d("div",$,[e.cancelButtonText?(a(),m(r,{key:0,onClick:o[1]||(o[1]=t=>e.handleEvent("cancel"))},{default:n(()=>[s(l(e.cancelButtonText),1)]),_:1})):u("",!0),e.confirmButtonText?(a(),m(r,{key:1,type:"primary",onClick:o[2]||(o[2]=t=>e.handleEvent("confirm"))},{default:n(()=>[s(l(e.confirmButtonText),1)]),_:1})):u("",!0)])]),key:"1"}:void 0]),1032,["modelValue","custom-class","center","width","close-on-click-modal","onClosed"])])}const L=v(k,[["render",V],["__scopeId","data-v-95d1884e"]]);export{L as P}; diff --git a/public/admin/assets/index.5a246c19.js b/public/admin/assets/index.5a246c19.js new file mode 100644 index 000000000..83afa55cb --- /dev/null +++ b/public/admin/assets/index.5a246c19.js @@ -0,0 +1 @@ +import{k as R,B as Te,C as $e,M as Se,N as qe,w as Re,D as Me,I as Ne,O as je,P as Ge,a1 as Oe,a2 as Qe,L as Ke,Q as He}from"./element-plus.4328d892.js";import{_ as Je}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{a as We,k as D,f as ie,b as Xe}from"./index.aa9bb752.js";import{d as me,r as _,$ as pe,a4 as Ye,af as Ze,o as r,c as B,U as e,L as u,u as t,M as C,V as Y,T as Z,a7 as de,K as E,R as i,a as c,Q as M,S as eu,k as g}from"./@vue.51d7f2d8.js";import{u as uu,a as au}from"./vue-router.9f65afb1.js";import{u as tu}from"./usePaging.2ad8e1e6.js";import{u as lu}from"./useDictOptions.a61fcf9f.js";import{o as ou,i as nu,f as su,s as ru,h as iu,j as pu,a as du,c as cu,k as mu}from"./company.b7ec1bf9.js";import"./lodash.08438971.js";import{d as ce}from"./dict.927f1fc7.js";import{d as _u}from"./dict.070e6995.js";import{_ as yu}from"./dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.8b016626.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./axios.105476b3.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const fu={class:"mt-4"},Fu={key:0,style:{color:"#67c23a"}},Eu={key:3,style:{color:"#fe0000"}},Bu={style:{display:"flex","flex-wrap":"wrap"}},Cu={class:"flex mt-4 justify-end"},vu=c("h1",null,"\u91CD\u8981\u63D0\u9192",-1),bu=c("div",{class:"content"},"\u8BF7\u786E\u8BA4\u4FE1\u606F\u662F\u5426\u6709\u8BEF",-1),hu={class:"btn_menu"},Au=c("h1",null,"\u91CD\u8981\u63D0\u9192",-1),wu={key:0,class:"content"},Du={key:1,class:"content"},gu={class:"btn_menu"},ku=c("h1",null,"\u4F01\u4E1A\u8BA4\u8BC1\u63D0\u9192",-1),Vu=c("div",{style:{"font-size":"18px","font-weight":"bold","padding-bottom":"10px"}}," \u4F01\u4E1A\u8BA4\u8BC1\u524D\uFF0C\u8BF7\u68C0\u67E5\u4EE5\u4E0B\u91CD\u8981\u4FE1\u606F\u662F\u5426\u6B63\u786E ",-1),xu={class:"btn_menu"},Lu=c("h1",null,"\u4EBA\u8138\u91C7\u96C6\u63D0\u9192",-1),Pu=c("div",{style:{"font-size":"18px","font-weight":"bold","padding-bottom":"10px"}}," \u4EBA\u8138\u91C7\u96C6\u524D\uFF0C\u8BF7\u68C0\u67E5\u4EE5\u4E0B\u91CD\u8981\u4FE1\u606F\u662F\u5426\u6B63\u786E ",-1),Uu={class:"btn_menu"},zu=me({name:"companyLists"}),Aa=me({...zu,setup(Iu){var ne;const k=_(!1),_e=o=>{d.value.party_a=o.id,d.value.party_a_name=o.company_name,k.value=!1},U=We();console.log(U.userInfo.company_id);const ee=uu(),ye=au(),z=_(!0),I=_(!1),N=_(!1),T=()=>{I.value=!1,N.value=!1},ue=_(!1),V=_(!1),j=()=>{V.value=!1,ue.value=!1},$=_(""),h=_(!1),ae=()=>{h.value=!1},S=_(!1),G=()=>{S.value=!1},fe=async o=>{await ou({id:o}),G()},te=()=>{ye.push({path:D("company/add:edit"),query:{id:y.value.id,edit:!0}})},d=_({party_a:"",party_a_name:"",party_b:"",party_b_name:"",contract_type:"",contract_no:""}),Fe=_([]),le=_([]),Ee=async o=>{const l=await du({id:o});cu().then(p=>{Fe.value=p}),ce({type_id:7}).then(p=>{le.value=p.lists.filter(n=>_u.find(A=>A==n.id))}),d.value.party_b=l.id,d.value.party_b_name=l.company_name,U.userInfo.company.id?(d.value.party_a=U.userInfo.company.id,d.value.party_a_name=U.userInfo.company.company_name):(d.value.party_a="",d.value.party_a_name="")},Be=o=>{$.value=o.id,Ee(o.id),Ce()},Ce=()=>{ue.value=!0,V.value=!0},ve=async()=>{if(!d.value.party_a)return R.error("\u7532\u65B9\u4E0D\u80FD\u4E3A\u7A7A");if(!d.value.contract_type)return R.error("\u5408\u540C\u7C7B\u578B\u4E0D\u80FD\u4E3A\u7A7A");await nu({id:$.value,...d.value}),b(),j()},be=async()=>{await su({id:$.value}),b(),T()},he=async()=>{await ru({id:$.value}),b(),T()},m=pe({company_name:"",area:"",street:"",company_type:"",area_manager:"",is_contract:""});ee.query.company_type&&(z.value=!1,m.company_type=((ne=ee.query.company_type)==null?void 0:ne.toString())||"");const O=pe({dictTypeLists:[]});(async()=>{const o=await ce({type_id:6});O.dictTypeLists=o.lists})();const Ae=_([]),we=o=>{Ae.value=o.map(({id:l})=>l)};lu("");const{pager:x,getLists:b,resetParams:De,resetPage:ge}=tu({fetchFun:mu,params:m}),ke=async o=>{await ie.confirm("\u786E\u5B9A\u8981\u5220\u9664\uFF1F"),await iu({id:o}),b()},y=_(""),Q=_("\u4F01\u4E1A\u8BA4\u8BC1");let K,q=10;const Ve=o=>{if(K)return R.warning("\u8BA4\u8BC1\u4E2D,\u8BF7\u8010\u5FC3\u7B49\u5F85");y.value=o,h.value=!0},xe=async o=>{await ie.confirm("\u786E\u5B9A\u8981\u8BA4\u8BC1\uFF1F"),await pu({id:o}),K=setInterval(()=>{Q.value=q+"\u79D2\u540E\u5237\u65B0",q==0?(clearInterval(K),Q.value="\u4F01\u4E1A\u8BA4\u8BC1",q=10,b()):q--},1e3),b(),h.value=!1},oe=o=>{R.warning(o==1?"\u8BF7\u7B49\u5F85\u5408\u540C\u5BA1\u6838\u5B8C\u6210!":"\u5408\u540C\u53CC\u65B9\u6B63\u5728\u7B7E\u7EA6!")};return b(),(o,l)=>{const p=Te,n=$e,A=Se,H=qe,s=Re,J=Me,W=Ne,Le=Xe,L=Ye("router-link"),F=je,Pe=Ge,Ue=Je,f=Oe,X=Qe,P=Ke,w=Ze("perms"),ze=He;return r(),B("div",null,[e(W,{class:"!border-none mb-4",shadow:"never"},{default:u(()=>[e(J,{class:"mb-[-16px] formdata",model:t(m),inline:""},{default:u(()=>[e(n,{label:"\u516C\u53F8\u540D\u79F0",prop:"company_name"},{default:u(()=>[e(p,{class:"w-[280px]",modelValue:t(m).company_name,"onUpdate:modelValue":l[0]||(l[0]=a=>t(m).company_name=a),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u516C\u53F8\u540D\u79F0"},null,8,["modelValue"])]),_:1}),C(e(n,{label:"\u533A",prop:"area"},{default:u(()=>[e(p,{class:"w-[280px]",modelValue:t(m).area,"onUpdate:modelValue":l[1]||(l[1]=a=>t(m).area=a),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u533A"},null,8,["modelValue"])]),_:1},512),[[Y,t(z)]]),C(e(n,{label:"\u9547",prop:"street"},{default:u(()=>[e(p,{class:"w-[280px]",modelValue:t(m).street,"onUpdate:modelValue":l[2]||(l[2]=a=>t(m).street=a),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u9547"},null,8,["modelValue"])]),_:1},512),[[Y,t(z)]]),C(e(n,{label:"\u516C\u53F8\u7C7B\u578B",prop:"company_type"},{default:u(()=>[e(H,{modelValue:t(m).company_type,"onUpdate:modelValue":l[3]||(l[3]=a=>t(m).company_type=a),placeholder:"\u8BF7\u9009\u62E9\u516C\u53F8\u7C7B\u578B",clearable:"",class:"w-[280px]"},{default:u(()=>[(r(!0),B(Z,null,de(t(O).dictTypeLists,(a,v)=>(r(),E(A,{key:v,label:a.name,value:a.id},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1},512),[[Y,t(z)]]),e(n,{label:"\u7247\u533A\u7ECF\u7406",prop:"area_manager"},{default:u(()=>[e(p,{class:"w-[280px]",modelValue:t(m).area_manager,"onUpdate:modelValue":l[4]||(l[4]=a=>t(m).area_manager=a),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u7247\u533A\u7ECF\u7406"},null,8,["modelValue"])]),_:1}),e(n,{label:"\u662F\u5426\u7B7E\u7EA6",prop:"is_contract"},{default:u(()=>[e(H,{modelValue:t(m).is_contract,"onUpdate:modelValue":l[5]||(l[5]=a=>t(m).is_contract=a),placeholder:"\u662F\u5426\u7B7E\u7EA6",clearable:"",class:"w-[240px]"},{default:u(()=>[e(A,{label:"\u5DF2\u7B7E\u7EA6",value:"1"}),e(A,{label:"\u672A\u7B7E\u7EA6",value:"0"})]),_:1},8,["modelValue"])]),_:1}),e(n,null,{default:u(()=>[e(s,{type:"primary",onClick:t(ge)},{default:u(()=>[i("\u67E5\u8BE2")]),_:1},8,["onClick"]),e(s,{onClick:t(De)},{default:u(()=>[i("\u91CD\u7F6E")]),_:1},8,["onClick"])]),_:1})]),_:1},8,["model"])]),_:1}),C((r(),E(W,{class:"!border-none",shadow:"never"},{default:u(()=>[C((r(),E(L,{to:{path:t(D)("company/add:edit"),query:{flag:!0}}},{default:u(()=>[e(s,{type:"primary",class:"mb-4"},{icon:u(()=>[e(Le,{name:"el-icon-Plus"})]),default:u(()=>[i(" \u521B\u5EFA ")]),_:1})]),_:1},8,["to"])),[[w,["company/add:edit"]]]),c("div",fu,[e(Pe,{data:t(x).lists,onSelectionChange:we},{default:u(()=>[e(F,{label:"id",prop:"id","show-overflow-tooltip":"",width:"60"}),e(F,{label:"\u516C\u53F8\u540D\u79F0",prop:"company_name",width:"200","show-overflow-tooltip":""}),e(F,{label:"\u516C\u53F8\u7C7B\u578B",prop:"company_type","show-overflow-tooltip":""}),e(F,{label:"\u533A\u53BF",prop:"area","show-overflow-tooltip":""}),e(F,{label:"\u4E61\u9547",prop:"street","show-overflow-tooltip":""}),e(F,{label:"\u4E3B\u8054\u7CFB\u4EBA",prop:"master_name","show-overflow-tooltip":""}),e(F,{label:"\u8054\u7CFB\u65B9\u5F0F",prop:"master_phone","show-overflow-tooltip":""}),e(F,{label:"\u7247\u533A\u7ECF\u7406",prop:"area_manager","show-overflow-tooltip":""}),e(F,{label:"\u662F\u5426\u7B7E\u7EA6",prop:"is_contract","show-overflow-tooltip":""},{default:u(({row:a})=>{var v,se,re;return[a.is_contract==1?(r(),B("span",Fu,"\u5DF2\u7B7E\u7EA6")):((v=a.contract)==null?void 0:v.check_status)==1?(r(),B("span",{key:1,style:{color:"#e6a23c",cursor:"pointer"},onClick:l[6]||(l[6]=Ie=>oe(1))},"\u5BA1\u6838\u4E2D")):((se=a.contract)==null?void 0:se.check_status)==2||((re=a.contract)==null?void 0:re.check_status)==3?(r(),B("span",{key:2,onClick:l[7]||(l[7]=Ie=>oe(2)),style:{color:"#e6a23c",cursor:"pointer"}},"\u7B7E\u7EA6\u4E2D")):(r(),B("span",Eu,"\u672A\u7B7E\u7EA6"))]}),_:1}),e(F,{label:"\u8BA4\u8BC1\u53CD\u9988",prop:"notes","show-overflow-tooltip":""}),e(F,{label:"\u64CD\u4F5C",align:"center",width:"420",fixed:"right"},{default:u(({row:a})=>[c("div",Bu,[e(s,{type:"primary",link:""},{default:u(()=>[e(L,{to:{path:t(D)("user.user/lists"),query:{company_id:a.id,read:!0}}},{default:u(()=>[i("\u67E5\u770B\u6210\u5458")]),_:2},1032,["to"])]),_:2},1024),e(s,{type:"primary",link:""},{default:u(()=>[e(L,{to:{path:t(D)("company/subordinate/lists"),query:{company_id:a.id,read:!0}}},{default:u(()=>[i("\u4E0B\u5C5E\u516C\u53F8")]),_:2},1032,["to"])]),_:2},1024),C((r(),E(s,{type:"primary",link:""},{default:u(()=>[e(L,{to:{path:t(D)("company/add:edit"),query:{id:a.id,read:!0,isshow:!0}}},{default:u(()=>[i("\u8BE6\u60C5")]),_:2},1032,["to"])]),_:2},1024)),[[w,["company/add:edit"]]]),a.is_authentication==0?C((r(),E(s,{key:0,type:"primary",link:""},{default:u(()=>[e(L,{to:{path:t(D)("company/add:edit"),query:{id:a.id,edit:!0}}},{default:u(()=>[i("\u7F16\u8F91")]),_:2},1032,["to"])]),_:2},1024)),[[w,["company/add:edit"]]]):M("",!0),C((r(),E(s,{type:"danger",link:"",onClick:v=>ke(a.id)},{default:u(()=>[i("\u5220\u9664")]),_:2},1032,["onClick"])),[[w,["company/delete"]]]),a.is_authentication==0?C((r(),E(s,{key:1,type:"primary",link:"",onClick:v=>Ve(a)},{default:u(()=>[i(eu(t(Q)),1)]),_:2},1032,["onClick"])),[[w,["company/authentication"]]]):M("",!0),a.is_authentication&&a.is_contract==0?(r(),B(Z,{key:2},[Array.isArray(a.contract)&&a.contract.length==0?C((r(),E(s,{key:0,type:"primary",link:"",onClick:v=>Be(a)},{default:u(()=>[i("\u751F\u6210\u5408\u540C")]),_:2},1032,["onClick"])),[[w,["company/initiate_contract"]]]):M("",!0)],64)):M("",!0)])]),_:1})]),_:1},8,["data"])]),c("div",Cu,[e(Ue,{modelValue:t(x),"onUpdate:modelValue":l[8]||(l[8]=a=>g(x)?x.value=a:null),onChange:t(b)},null,8,["modelValue","onChange"])])]),_:1})),[[ze,t(x).loading]]),e(P,{modelValue:t(V),"onUpdate:modelValue":l[15]||(l[15]=a=>g(V)?V.value=a:null),onClose:j},{default:u(()=>[vu,c("div",null,[bu,e(W,null,{default:u(()=>[e(X,null,{default:u(()=>[e(f,{span:12},{default:u(()=>[e(n,{"label-width":"100px",label:"\u7532\u65B9",prop:"field130"},{default:u(()=>[e(p,{modelValue:t(d).party_a_name,"onUpdate:modelValue":l[9]||(l[9]=a=>t(d).party_a_name=a),placeholder:"\u8BF7\u9009\u62E9\u7532\u65B9",onClick:l[10]||(l[10]=a=>k.value=!0),clearable:"",style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(f,{span:12},{default:u(()=>[e(n,{"label-width":"100px",label:"\u4E59\u65B9",prop:"field131"},{default:u(()=>[e(p,{disabled:!0,modelValue:t(d).party_b_name,"onUpdate:modelValue":l[11]||(l[11]=a=>t(d).party_b_name=a),placeholder:"\u8BF7\u9009\u62E9\u4E59\u65B9",clearable:"",style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(f,{span:12},{default:u(()=>[e(n,{"label-width":"100px",label:"\u5408\u540C\u7C7B\u578B",prop:"contract_type"},{default:u(()=>[e(H,{modelValue:t(d).contract_type,"onUpdate:modelValue":l[12]||(l[12]=a=>t(d).contract_type=a),placeholder:"\u8BF7\u9009\u62E9\u5408\u540C\u7C7B\u578B",clearable:"",style:{width:"100%"}},{default:u(()=>[(r(!0),B(Z,null,de(t(le),(a,v)=>(r(),E(A,{key:v,label:a.name,value:a.id},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(f,{span:12},{default:u(()=>[e(n,{"label-width":"100px",label:"\u5408\u540C\u7F16\u53F7",prop:"field133"},{default:u(()=>[e(p,{placeholder:"\u7CFB\u7EDF\u81EA\u52A8\u751F\u6210",modelValue:t(d).contract_no,"onUpdate:modelValue":l[13]||(l[13]=a=>t(d).contract_no=a),clearable:"",style:{width:"100%"},disabled:!0},null,8,["modelValue"])]),_:1})]),_:1})]),_:1})]),_:1})]),c("p",hu,[e(s,{type:"primary",size:"large",onClick:ve},{default:u(()=>[i("\u786E\u8BA4")]),_:1}),e(s,{type:"info",size:"large",onClick:j},{default:u(()=>[i("\u8FD4\u56DE")]),_:1})]),e(P,{modelValue:t(k),"onUpdate:modelValue":l[14]||(l[14]=a=>g(k)?k.value=a:null)},{default:u(()=>[e(yu,{companyTypeList:t(O).dictTypeLists,type:30,onCustomEvent:_e},null,8,["companyTypeList"])]),_:1},8,["modelValue"])]),_:1},8,["modelValue"]),e(P,{modelValue:t(I),"onUpdate:modelValue":l[16]||(l[16]=a=>g(I)?I.value=a:null),onClose:T},{default:u(()=>[Au,t(N)?(r(),B("div",wu," \u8BF7\u786E\u8BA4\u4FE1\u606F\u662F\u5426\u6709\u8BEF,\u53D1\u9001\u5408\u540C,\u8BF7\u786E\u8BA4\u4FE1\u606F\u662F\u5426\u6709\u8BEF,\u53D1\u9001\u7535\u5B50\u5408\u540C\u540E\u77ED\u65F6\u95F4\u5185\u5C06\u4E0D\u53EF\u518D\u6B21\u53D1\u9001. ")):(r(),B("div",Du," \u786E\u8BA4\u7B7E\u7EA6\u77ED\u4FE1\u5C06\u572860\u79D2\u540E\u53D1\u9001,\u8BF7\u6CE8\u610F\u67E5\u6536,\u5E76\u70B9\u51FB\u77ED\u4FE1\u94FE\u63A5\u8FDB\u884C\u7EBF\u4E0A\u5408\u540C\u7B7E\u7EA6 ")),c("p",gu,[t(N)?(r(),E(s,{key:0,type:"primary",size:"large",onClick:be},{default:u(()=>[i("\u786E\u8BA4")]),_:1})):(r(),E(s,{key:1,type:"primary",size:"large",onClick:he},{default:u(()=>[i("\u786E\u8BA4")]),_:1})),e(s,{type:"info",size:"large",onClick:T},{default:u(()=>[i("\u8FD4\u56DE")]),_:1})])]),_:1},8,["modelValue"]),e(P,{modelValue:t(h),"onUpdate:modelValue":l[18]||(l[18]=a=>g(h)?h.value=a:null),onClose:ae},{default:u(()=>[ku,c("div",null,[Vu,e(J,{ref:"formRef","label-width":"90px"},{default:u(()=>[e(X,null,{default:u(()=>[e(f,{span:12},{default:u(()=>[e(n,{label:"\u516C\u53F8\u540D\u79F0",prop:"company_name"},{default:u(()=>[e(p,{placeholder:"\u8BF7\u8F93\u5165\u516C\u53F8\u540D\u79F0",clearable:"",value:t(y).company_name,readonly:"",style:{width:"100%"}},null,8,["value"])]),_:1})]),_:1}),e(f,{span:12},{default:u(()=>[e(n,{label:"\u4F01\u4E1A\u4EE3\u7801",prop:"company_name"},{default:u(()=>[e(p,{placeholder:"\u8BF7\u8F93\u5165\u4F01\u4E1A\u4EE3\u7801",clearable:"",value:t(y).organization_code,readonly:"",style:{width:"100%"}},null,8,["value"])]),_:1})]),_:1}),e(f,{span:12},{default:u(()=>[e(n,{label:"\u4E3B\u8981\u8054\u7CFB\u4EBA",prop:"company_name"},{default:u(()=>[e(p,{placeholder:"\u8BF7\u8F93\u5165\u4E3B\u8981\u8054\u7CFB\u4EBA",clearable:"",value:t(y).master_name,readonly:"",style:{width:"100%"}},null,8,["value"])]),_:1})]),_:1}),e(f,{span:12},{default:u(()=>[e(n,{label:"\u624B\u673A\u53F7\u7801",prop:"company_name"},{default:u(()=>[e(p,{placeholder:"\u8BF7\u8F93\u5165\u624B\u673A\u53F7\u7801",clearable:"",value:t(y).master_phone,readonly:"",style:{width:"100%"}},null,8,["value"])]),_:1})]),_:1})]),_:1})]),_:1},512)]),c("p",xu,[e(s,{type:"primary",size:"large",onClick:l[17]||(l[17]=a=>xe(t(y).id))},{default:u(()=>[i("\u786E\u8BA4")]),_:1}),e(s,{type:"warning",size:"large",onClick:te},{default:u(()=>[i("\u4FEE\u6539")]),_:1}),e(s,{type:"info",size:"large",onClick:ae},{default:u(()=>[i("\u8FD4\u56DE")]),_:1})])]),_:1},8,["modelValue"]),e(P,{modelValue:t(S),"onUpdate:modelValue":l[20]||(l[20]=a=>g(S)?S.value=a:null),onClose:G},{default:u(()=>[Lu,c("div",null,[Pu,e(J,{ref:"formRef","label-width":"90px"},{default:u(()=>[e(X,null,{default:u(()=>[e(f,{span:24},{default:u(()=>[e(n,{label:"\u516C\u53F8\u540D\u79F0",prop:"company_name"},{default:u(()=>[e(p,{placeholder:"\u8BF7\u8F93\u5165\u516C\u53F8\u540D\u79F0",clearable:"",value:t(y).company_name,readonly:"",style:{width:"100%"}},null,8,["value"])]),_:1})]),_:1}),e(f,{span:12},{default:u(()=>[e(n,{label:"\u4F01\u4E1A\u4EE3\u7801",prop:"organization_code"},{default:u(()=>[e(p,{placeholder:"\u8BF7\u8F93\u5165\u4F01\u4E1A\u4EE3\u7801",clearable:"",value:t(y).organization_code,readonly:"",style:{width:"100%"}},null,8,["value"])]),_:1})]),_:1}),e(f,{span:12},{default:u(()=>[e(n,{label:"\u4E3B\u8981\u8054\u7CFB\u4EBA",prop:"master_name"},{default:u(()=>[e(p,{placeholder:"\u8BF7\u8F93\u5165\u4E3B\u8981\u8054\u7CFB\u4EBA",clearable:"",value:t(y).master_name,readonly:"",style:{width:"100%"}},null,8,["value"])]),_:1})]),_:1}),e(f,{span:12},{default:u(()=>[e(n,{label:"\u624B\u673A\u53F7\u7801",prop:"master_phone"},{default:u(()=>[e(p,{placeholder:"\u8BF7\u8F93\u5165\u624B\u673A\u53F7\u7801",clearable:"",value:t(y).master_phone,readonly:"",style:{width:"100%"}},null,8,["value"])]),_:1})]),_:1}),e(f,{span:12},{default:u(()=>[e(n,{label:"\u90AE\u7BB1",prop:"master_email"},{default:u(()=>[e(p,{placeholder:"\u8BF7\u8F93\u5165\u90AE\u7BB1",clearable:"",value:t(y).master_email,readonly:"",style:{width:"100%"}},null,8,["value"])]),_:1})]),_:1})]),_:1})]),_:1},512)]),c("p",Uu,[e(s,{type:"primary",size:"large",onClick:l[19]||(l[19]=a=>fe(t(y).id))},{default:u(()=>[i("\u786E\u8BA4")]),_:1}),e(s,{type:"warning",size:"large",onClick:te},{default:u(()=>[i("\u4FEE\u6539")]),_:1}),e(s,{type:"info",size:"large",onClick:G},{default:u(()=>[i("\u8FD4\u56DE")]),_:1})])]),_:1},8,["modelValue"])])}}});export{Aa as default}; diff --git a/public/admin/assets/index.5d5e6117.js b/public/admin/assets/index.5d5e6117.js new file mode 100644 index 000000000..e68ab3557 --- /dev/null +++ b/public/admin/assets/index.5d5e6117.js @@ -0,0 +1 @@ +import{B as ne,C as se,M as re,N as ie,w as pe,D as ce,I as de,O as _e,P as me,L as fe,Q as Ee}from"./element-plus.4328d892.js";import{_ as ye}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{u as Ce}from"./usePaging.2ad8e1e6.js";import{u as Be}from"./useDictOptions.8d37e54b.js";import{e as ve,f as he,g as Fe,h as be,i as ke}from"./shop_contract.c24a8510.js";import{d as N,$ as A,s as R,r as v,a4 as De,af as ge,o as l,c as _,U as t,L as o,u as a,T as U,a7 as we,K as r,R as i,M as m,a as g,S as Ve,Q as $,k as L,bf as Ae,be as xe}from"./@vue.51d7f2d8.js";import"./lodash.08438971.js";import{d as Se}from"./index.ed71ac09.js";import{_ as Pe}from"./edit.vue_vue_type_script_setup_true_name_shopContractEdit_lang.84a1c3a4.js";import{P as Ie}from"./index.b940d6e3.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";const Re=F=>(Ae("data-v-b55f7b58"),F=F(),xe(),F),Ue={class:"mt-4"},$e={key:0,style:{color:"#67c23a"}},Le={key:1,style:{color:"#fe0000"}},Ne={class:"flex mt-4 justify-end"},qe=Re(()=>g("h1",null,"\u91CD\u8981\u63D0\u9192",-1)),Me={key:0,class:"content"},Te={key:1,class:"content"},ze={class:"btn_menu"},Oe=N({name:"shopContractLists"}),je=N({...Oe,setup(F){const q=A([{id:"1",name:"\u5DF2\u7B7E\u7EA6"},{id:"0",name:"\u672A\u7B7E\u7EA6"}]),M=R(),x=v(!1),f=v({id:"",notes:""}),T=A({notes:[{required:!0,message:"\u8BF7\u8F93\u5165\u5907\u6CE8",trigger:["blur"]}]}),w=R(),z=c=>{Object.keys(f.value).forEach(n=>{f.value[n]=c[n]}),w.value.open()},O=async()=>{await ve({...f.value}),E(),w.value.close()},p=A({contract_no:"",party_a:"",party_b:"",check_status:"",status:""}),j=v([]),Q=c=>{j.value=c.map(({id:u})=>u)},{dictData:K}=Be(""),{pager:h,getLists:E,resetParams:Z,resetPage:G}=Ce({fetchFun:ke,params:p}),H=c=>{he({id:c.id}).then(u=>{J(u.url,"")})},J=(c,u)=>{let n=document.createElement("a");n.href=c,n.download=u,document.body.appendChild(n),n.click(),document.body.removeChild(n)},y=v(!1),b=v(!1),k=v(""),W=c=>{y.value=!0,b.value=!0,k.value=c.party_b},D=()=>{y.value=!1,b.value=!1},X=async()=>{await Fe({id:k.value}),E(),D()},Y=async()=>{await be({id:k.value}),E(),D()};return E(),(c,u)=>{const n=ne,C=se,ee=re,te=ie,s=pe,S=ce,P=de,d=_e,I=De("router-link"),oe=me,ae=ye,ue=fe,B=ge("perms"),le=Ee;return l(),_("div",null,[t(P,{class:"!border-none mb-4",shadow:"never"},{default:o(()=>[t(S,{class:"mb-[-16px]",model:a(p),inline:""},{default:o(()=>[t(C,{label:"\u5408\u540C\u7F16\u53F7",prop:"contract_no"},{default:o(()=>[t(n,{class:"w-[280px]",modelValue:a(p).contract_no,"onUpdate:modelValue":u[0]||(u[0]=e=>a(p).contract_no=e),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u5408\u540C\u7F16\u53F7"},null,8,["modelValue"])]),_:1}),t(C,{label:"\u7532\u65B9",prop:"party_a"},{default:o(()=>[t(n,{class:"w-[280px]",modelValue:a(p).party_a,"onUpdate:modelValue":u[1]||(u[1]=e=>a(p).party_a=e),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u7532\u65B9"},null,8,["modelValue"])]),_:1}),t(C,{label:"\u4E59\u65B9",prop:"party_b"},{default:o(()=>[t(n,{class:"w-[280px]",modelValue:a(p).party_b,"onUpdate:modelValue":u[2]||(u[2]=e=>a(p).party_b=e),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u4E59\u65B9"},null,8,["modelValue"])]),_:1}),t(C,{label:"\u7B7E\u7EA6\u72B6\u6001",prop:"status"},{default:o(()=>[t(te,{modelValue:a(p).status,"onUpdate:modelValue":u[3]||(u[3]=e=>a(p).status=e),clearable:"",placeholder:"\u8BF7\u9009\u62E9\u72B6\u6001"},{default:o(()=>[(l(!0),_(U,null,we(a(q),e=>(l(),r(ee,{key:e.label,value:e.id,label:e.name},null,8,["value","label"]))),128))]),_:1},8,["modelValue"])]),_:1}),t(C,null,{default:o(()=>[t(s,{type:"primary",onClick:a(G)},{default:o(()=>[i("\u67E5\u8BE2")]),_:1},8,["onClick"]),t(s,{onClick:a(Z)},{default:o(()=>[i("\u91CD\u7F6E")]),_:1},8,["onClick"])]),_:1})]),_:1},8,["model"])]),_:1}),m((l(),r(P,{class:"!border-none",shadow:"never"},{default:o(()=>[g("div",Ue,[t(oe,{data:a(h).lists,onSelectionChange:Q},{default:o(()=>[t(d,{label:"id",width:"100",prop:"id","show-overflow-tooltip":""}),t(d,{label:"\u5408\u540C\u7F16\u53F7",prop:"contract_no","show-overflow-tooltip":""}),t(d,{label:"\u7532\u65B9",prop:"party_a_name","show-overflow-tooltip":""}),t(d,{label:"\u4E59\u65B9",prop:"party_b_name","show-overflow-tooltip":""}),t(d,{label:"\u7B7E\u7EA6\u72B6\u6001",prop:"status","show-overflow-tooltip":""},{default:o(({row:e})=>[e.status?(l(),_("span",$e,"\u5DF2\u7B7E\u7EA6")):(l(),_("span",Le,"\u672A\u7B7E\u7EA6"))]),_:1}),t(d,{label:"\u5907\u6CE8",prop:"notes","show-overflow-tooltip":""}),t(d,{label:"\u64CD\u4F5C",width:"280",fixed:"right"},{default:o(({row:e})=>[m((l(),r(s,{type:"primary",link:""},{default:o(()=>[t(I,{to:{path:"/contract/shop_contract_detail",query:{id:e.id}}},{default:o(()=>[i(Ve(e.status?"\u8BE6\u60C5":"\u5BA1\u6838"),1)]),_:2},1032,["to"])]),_:2},1024)),[[B,["shop_contract/details"]]]),m((l(),r(s,{type:"primary",link:"",onClick:V=>z(e)},{default:o(()=>[i(" \u8BBE\u7F6E\u5907\u6CE8 ")]),_:2},1032,["onClick"])),[[B,["shop_contract/details"]]]),e.status==0?(l(),_(U,{key:0},[e.check_status==1?m((l(),r(s,{key:0,type:"warning",link:""},{default:o(()=>[t(I,{to:{path:"/contract/shop_contract_detail",query:{id:e.id}}},{default:o(()=>[i("\u5F85\u5BA1\u6838")]),_:2},1032,["to"])]),_:2},1024)),[[B,["shop_contract/details"]]]):e.check_status==2?m((l(),r(s,{key:1,type:"primary",link:"",onClick:V=>W(e)},{default:o(()=>[i("\u53D1\u9001\u5408\u540C")]),_:2},1032,["onClick"])),[[B,["shop_contract/contract_send"]]]):e.check_status==3?m((l(),r(s,{key:2,type:"primary",link:"",onClick:V=>(y.value=!0,k.value=e.party_b)},{default:o(()=>[i("\u53D1\u9001\u77ED\u4FE1")]),_:2},1032,["onClick"])),[[B,["shop_contract/contract_send_again"]]]):$("",!0)],64)):m((l(),r(s,{key:1,type:"primary",link:"",onClick:V=>H(e)},{default:o(()=>[i(" \u4E0B\u8F7D\u8BC1\u636E\u5305 ")]),_:2},1032,["onClick"])),[[B,["shop_contract/evidence"]]])]),_:1})]),_:1},8,["data"])]),g("div",Ne,[t(ae,{modelValue:a(h),"onUpdate:modelValue":u[4]||(u[4]=e=>L(h)?h.value=e:null),onChange:a(E)},null,8,["modelValue","onChange"])])]),_:1})),[[le,a(h).loading]]),a(x)?(l(),r(Pe,{key:0,ref_key:"editRef",ref:M,"dict-data":a(K),onSuccess:a(E),onClose:u[5]||(u[5]=e=>x.value=!1)},null,8,["dict-data","onSuccess"])):$("",!0),t(ue,{modelValue:a(y),"onUpdate:modelValue":u[6]||(u[6]=e=>L(y)?y.value=e:null),onClose:D},{default:o(()=>[qe,a(b)?(l(),_("div",Me," \u8BF7\u786E\u8BA4\u4FE1\u606F\u662F\u5426\u6709\u8BEF,\u53D1\u9001\u5408\u540C,\u8BF7\u786E\u8BA4\u4FE1\u606F\u662F\u5426\u6709\u8BEF,\u53D1\u9001\u7535\u5B50\u5408\u540C\u540E\u77ED\u65F6\u95F4\u5185\u5C06\u4E0D\u53EF\u518D\u6B21\u53D1\u9001. ")):(l(),_("div",Te," \u786E\u8BA4\u7B7E\u7EA6\u77ED\u4FE1\u5C06\u572860\u79D2\u540E\u53D1\u9001,\u8BF7\u6CE8\u610F\u67E5\u6536,\u5E76\u70B9\u51FB\u77ED\u4FE1\u94FE\u63A5\u8FDB\u884C\u7EBF\u4E0A\u5408\u540C\u7B7E\u7EA6 ")),g("p",ze,[a(b)?(l(),r(s,{key:0,type:"primary",size:"large",onClick:X},{default:o(()=>[i("\u786E\u8BA4")]),_:1})):(l(),r(s,{key:1,type:"primary",size:"large",onClick:Y},{default:o(()=>[i("\u786E\u8BA4")]),_:1})),t(s,{type:"info",size:"large",onClick:D},{default:o(()=>[i("\u8FD4\u56DE")]),_:1})])]),_:1},8,["modelValue"]),t(Ie,{ref_key:"notesRef",ref:w,title:"\u8BBE\u7F6E\u5907\u6CE8",async:!0,width:"550px",onConfirm:O},{default:o(()=>[t(S,{model:a(f),rules:a(T)},{default:o(()=>[t(C,{label:"\u5907\u6CE8",prop:"notes"},{default:o(()=>[t(n,{modelValue:a(f).notes,"onUpdate:modelValue":u[7]||(u[7]=e=>a(f).notes=e),type:"textarea"},null,8,["modelValue"])]),_:1})]),_:1},8,["model","rules"])]),_:1},512)])}}});const Pt=Se(je,[["__scopeId","data-v-b55f7b58"]]);export{Pt as default}; diff --git a/public/admin/assets/index.5f27fe66.js b/public/admin/assets/index.5f27fe66.js new file mode 100644 index 000000000..fb017b60c --- /dev/null +++ b/public/admin/assets/index.5f27fe66.js @@ -0,0 +1 @@ +import{B as j,C as O,w as H,D as J,I as W,O as X,p as Y,q as Z,r as ee,P as te,Q as oe}from"./element-plus.4328d892.js";import{_ as ae}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{k as ne,f as k,b as le}from"./index.37f7aea6.js";import{d as $,$ as A,r as re,a4 as ue,af as se,o as r,c as C,U as e,L as t,u as a,a8 as P,R as s,M as i,K as d,a as b,k as ie,Q as me}from"./@vue.51d7f2d8.js";import{b as de,c as ce,d as pe,e as _e,s as fe}from"./code.2b4ea8b1.js";import{u as Fe}from"./usePaging.2ad8e1e6.js";import{_ as ge}from"./data-table.vue_vue_type_script_setup_true_lang.a71b4b2a.js";import{_ as Ce}from"./code-preview.vue_vue_type_script_setup_true_lang.be9bb714.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.5759a1a6.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";const be={class:"code-generation"},we={class:"flex"},ye={class:"mt-4"},Ee={class:"flex items-center"},he={class:"flex justify-end mt-4"},ke=$({name:"codeGenerate"}),pt=$({...ke,setup(ve){const c=A({table_name:"",table_comment:""}),p=A({show:!1,loading:!1,code:[]}),{pager:f,getLists:g,resetParams:K,resetPage:w}=Fe({fetchFun:_e,params:c}),F=re([]),S=n=>{F.value=n.map(({id:o})=>o)},T=async n=>{await k.confirm("\u786E\u5B9A\u8981\u540C\u6B65\u8868\u7ED3\u6784\uFF1F"),await fe({id:n})},v=async n=>{await k.confirm("\u786E\u5B9A\u8981\u5220\u9664\uFF1F"),await de({id:n}),g()},I=async n=>{const o=await ce({id:n});p.code=o,p.show=!0},U=n=>n.some(o=>o.generate_type==1),B=async n=>{if(U(n))return k.msgError("\u751F\u6210\u65B9\u5F0F\u4E3A\u751F\u6210\u5230\u6A21\u5757\uFF0C\u8BF7\u5728\u524D\u7AEF\u5F00\u53D1\u6A21\u5F0F\u4E0B\u4F7F\u7528\uFF0C\u8BE6\u7EC6\u53C2\u8003\u6587\u6863");const o=await pe({id:n});o.file&&window.open(o.file,"_blank")},N=(n,o)=>{switch(n){case"generate":B([o.id]);break;case"sync":T(o.id);break;case"delete":v(o.id)}};return g(),(n,o)=>{const D=j,y=O,u=H,G=J,V=W,E=le,_=X,L=ue("router-link"),h=Y,M=Z,R=ee,q=te,z=ae,m=se("perms"),Q=oe;return r(),C("div",be,[e(V,{class:"!border-none",shadow:"never"},{default:t(()=>[e(G,{class:"mb-[-16px]",model:a(c),inline:""},{default:t(()=>[e(y,{label:"\u8868\u540D\u79F0"},{default:t(()=>[e(D,{class:"w-[280px]",modelValue:a(c).table_name,"onUpdate:modelValue":o[0]||(o[0]=l=>a(c).table_name=l),clearable:"",onKeyup:P(a(w),["enter"])},null,8,["modelValue","onKeyup"])]),_:1}),e(y,{label:"\u8868\u63CF\u8FF0"},{default:t(()=>[e(D,{class:"w-[280px]",modelValue:a(c).table_comment,"onUpdate:modelValue":o[1]||(o[1]=l=>a(c).table_comment=l),clearable:"",onKeyup:P(a(w),["enter"])},null,8,["modelValue","onKeyup"])]),_:1}),e(y,null,{default:t(()=>[e(u,{type:"primary",onClick:a(w)},{default:t(()=>[s("\u67E5\u8BE2")]),_:1},8,["onClick"]),e(u,{onClick:a(K)},{default:t(()=>[s("\u91CD\u7F6E")]),_:1},8,["onClick"])]),_:1})]),_:1},8,["model"])]),_:1}),i((r(),d(V,{class:"!border-none mt-4",shadow:"never"},{default:t(()=>[b("div",we,[i((r(),d(ge,{class:"inline-block mr-[10px]",onSuccess:a(g)},{default:t(()=>[e(u,{type:"primary"},{icon:t(()=>[e(E,{name:"el-icon-Plus"})]),default:t(()=>[s(" \u5BFC\u5165\u6570\u636E\u8868 ")]),_:1})]),_:1},8,["onSuccess"])),[[m,["tools.generator/selectTable"]]]),i((r(),d(u,{disabled:!a(F).length,onClick:o[2]||(o[2]=l=>v(a(F))),type:"danger"},{icon:t(()=>[e(E,{name:"el-icon-Delete"})]),default:t(()=>[s(" \u5220\u9664 ")]),_:1},8,["disabled"])),[[m,["tools.generator/delete"]]]),i((r(),d(u,{disabled:!a(F).length,onClick:o[3]||(o[3]=l=>B(a(F)))},{default:t(()=>[s(" \u751F\u6210\u4EE3\u7801 ")]),_:1},8,["disabled"])),[[m,["tools.generator/generate"]]])]),b("div",ye,[e(q,{data:a(f).lists,size:"large",onSelectionChange:S},{default:t(()=>[e(_,{type:"selection",width:"55"}),e(_,{label:"\u8868\u540D\u79F0",prop:"table_name","min-width":"180"}),e(_,{label:"\u8868\u63CF\u8FF0",prop:"table_comment","min-width":"180"}),e(_,{label:"\u521B\u5EFA\u65F6\u95F4",prop:"create_time","min-width":"180"}),e(_,{label:"\u66F4\u65B0\u65F6\u95F4",prop:"update_time","min-width":"180"}),e(_,{label:"\u64CD\u4F5C",width:"160",fixed:"right"},{default:t(({row:l})=>[b("div",Ee,[i((r(),d(u,{type:"primary",link:"",onClick:x=>I(l.id)},{default:t(()=>[s(" \u9884\u89C8 ")]),_:2},1032,["onClick"])),[[m,["tools.generator/preview"]]]),e(u,{type:"primary",link:""},{default:t(()=>[i((r(),d(L,{to:{path:a(ne)("tools.generator/edit"),query:{id:l.id}}},{default:t(()=>[s(" \u7F16\u8F91 ")]),_:2},1032,["to"])),[[m,["tools.generator/edit"]]])]),_:2},1024),i((r(),d(R,{class:"ml-2",onCommand:x=>N(x,l)},{dropdown:t(()=>[e(M,null,{default:t(()=>[i((r(),C("div",null,[e(h,{command:"generate"},{default:t(()=>[e(u,{type:"primary",link:""},{default:t(()=>[s(" \u751F\u6210\u4EE3\u7801 ")]),_:1})]),_:1})])),[[m,["tools.generator/generate"]]]),i((r(),C("div",null,[e(h,{command:"sync"},{default:t(()=>[e(u,{type:"primary",link:""},{default:t(()=>[s(" \u540C\u6B65 ")]),_:1})]),_:1})])),[[m,["tools.generator/syncColumn"]]]),i((r(),C("div",null,[e(h,{command:"delete"},{default:t(()=>[e(u,{type:"danger",link:""},{default:t(()=>[s(" \u5220\u9664 ")]),_:1})]),_:1})])),[[m,["tools.generator/delete"]]])]),_:1})]),default:t(()=>[e(u,{type:"primary",link:""},{default:t(()=>[s(" \u66F4\u591A "),e(E,{name:"el-icon-ArrowDown",size:14})]),_:1})]),_:2},1032,["onCommand"])),[[m,["tools.generator/generate","tools.generator/syncColumn","tools.generator/delete"]]])])]),_:1})]),_:1},8,["data"])]),b("div",he,[e(z,{modelValue:a(f),"onUpdate:modelValue":o[4]||(o[4]=l=>ie(f)?f.value=l:null),onChange:a(g)},null,8,["modelValue","onChange"])])]),_:1})),[[Q,a(f).loading]]),a(p).show?(r(),d(Ce,{key:0,modelValue:a(p).show,"onUpdate:modelValue":o[5]||(o[5]=l=>a(p).show=l),code:a(p).code},null,8,["modelValue","code"])):me("",!0)])}}});export{pt as default}; diff --git a/public/admin/assets/index.5f944d34.js b/public/admin/assets/index.5f944d34.js new file mode 100644 index 000000000..4898decdb --- /dev/null +++ b/public/admin/assets/index.5f944d34.js @@ -0,0 +1 @@ +import{J as U,X as L,L as D}from"./element-plus.4328d892.js";import{a as P,j as p,R as y,f as m,d as R}from"./index.37f7aea6.js";import{d as V,s as _,r as f,e as C,t as j,o as c,c as g,U as b,L as k,H as N,K as I,a as v,T as q,a7 as H,S as J,Q as K}from"./@vue.51d7f2d8.js";const O=V({components:{},props:{type:{type:String,default:"image"},multiple:{type:Boolean,default:!0},limit:{type:Number,default:10},data:{type:Object,default:()=>({})},showProgress:{type:Boolean,default:!1}},emits:["change","error","success"],setup(e,{emit:a}){const h=P(),n=_(),E=f(`${p.baseUrl}${p.urlPrefix}/upload/${e.type}`),F=C(()=>({token:h.token,version:p.version})),o=f(!1),u=f([]),d=(s,l,r)=>{o.value=!0,u.value=j(r)},t=(s,l,r)=>{var S;r.every(B=>B.status=="success")&&((S=n.value)==null||S.clearFiles(),o.value=!1),a("change",l),s.code==y.SUCCESS&&a("success",s),s.code==y.FAIL&&s.msg&&m.msgError(s.msg)},i=(s,l)=>{var r;m.msgError(`${l.name}\u6587\u4EF6\u4E0A\u4F20\u5931\u8D25`),(r=n.value)==null||r.abort(l),o.value=!1,a("change",l),a("error",l)},A=()=>{m.msgError(`\u8D85\u51FA\u4E0A\u4F20\u4E0A\u9650${e.limit}\uFF0C\u8BF7\u91CD\u65B0\u4E0A\u4F20`)},$=()=>{var s;(s=n.value)==null||s.clearFiles(),o.value=!1},w=C(()=>{switch(e.type){case"image":return".jpg,.png,.gif,.jpeg";case"video":return".wmv,.avi,.mpg,.mpeg,.3gp,.mov,.mp4,.flv,.rmvb,.mkv";default:return"*"}});return{uploadRefs:n,action:E,headers:F,visible:o,fileList:u,getAccept:w,handleProgress:d,handleSuccess:t,handleError:i,handleExceed:A,handleClose:$}}}),Q={class:"upload"},T={class:"file-list p-4"},X={class:"flex-1"};function z(e,a,h,n,E,F){const o=U,u=L,d=D;return c(),g("div",Q,[b(o,{ref:"uploadRefs",action:e.action,multiple:e.multiple,limit:e.limit,"show-file-list":!1,headers:e.headers,data:e.data,"on-progress":e.handleProgress,"on-success":e.handleSuccess,"on-exceed":e.handleExceed,"on-error":e.handleError,accept:e.getAccept},{default:k(()=>[N(e.$slots,"default")]),_:3},8,["action","multiple","limit","headers","data","on-progress","on-success","on-exceed","on-error","accept"]),e.showProgress&&e.fileList.length?(c(),I(d,{key:0,modelValue:e.visible,"onUpdate:modelValue":a[0]||(a[0]=t=>e.visible=t),title:"\u4E0A\u4F20\u8FDB\u5EA6","close-on-click-modal":!1,width:"500px",modal:!1,onClose:e.handleClose},{default:k(()=>[v("div",T,[(c(!0),g(q,null,H(e.fileList,(t,i)=>(c(),g("div",{key:i,class:"mb-5"},[v("div",null,J(t.name),1),v("div",X,[b(u,{percentage:parseInt(t.percentage)},null,8,["percentage"])])]))),128))])]),_:1},8,["modelValue","onClose"])):K("",!0)])}const Z=R(O,[["render",z]]);export{Z as U}; diff --git a/public/admin/assets/index.5fbdd134.js b/public/admin/assets/index.5fbdd134.js new file mode 100644 index 000000000..d2ac072c5 --- /dev/null +++ b/public/admin/assets/index.5fbdd134.js @@ -0,0 +1 @@ +import{B as oe,C as ue,M as le,N as ne,w as se,D as re,I as pe,O as ie,P as ce,L as de,Q as _e}from"./element-plus.4328d892.js";import{_ as me}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{u as fe}from"./vue-router.9f65afb1.js";import{u as ye}from"./usePaging.2ad8e1e6.js";import{u as Ee}from"./useDictOptions.a45fc8ac.js";import{d as Ce,e as Be}from"./contract.e9a9dbc8.js";import{d as T,s as Fe,r as _,$,a4 as ve,af as be,o as l,c as m,U as t,L as a,u as o,T as D,a7 as M,K as d,R as p,M as w,a as E,S as V,Q as ke,k as R,bf as he,be as ge}from"./@vue.51d7f2d8.js";import"./lodash.08438971.js";import{d as De}from"./index.37f7aea6.js";import{d as we}from"./dict.58face92.js";import{f as Ve,s as Ae}from"./company.d1e8fc82.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./axios.105476b3.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const xe=F=>(he("data-v-4a76ea26"),F=F(),ge(),F),Pe={class:"mt-4"},Se={key:0,style:{color:"#67c23a"}},Le={key:1,style:{color:"#fe0000"}},Ue={class:"flex mt-4 justify-end"},Ie=xe(()=>E("h1",null,"\u91CD\u8981\u63D0\u9192",-1)),qe={key:0,class:"content"},Ne={key:1,class:"content"},$e={class:"btn_menu"},Me=T({name:"contractLists"}),Re=T({...Me,setup(F){var P;const A=fe();Fe(),_(!1);const x=_([]),f=_(!1),v=_(!1),b=_(""),k=_(""),z=s=>{f.value=!0,v.value=!0,b.value=s.id,k.value=s.party_b},h=()=>{f.value=!1,v.value=!1},O=async()=>{await Ve({id:k.value,contract_id:b.value}),g(),h()},Q=async()=>{await Ae({id:k.value,contract_id:b.value}),g(),h()},n=$({company_id:"",contract_type:"",contract_no:"",status:"",party_a:"",party_b:"",area_manager:"",type:""}),j=$([{id:"1",name:"\u5DF2\u7B7E\u7EA6"},{id:"0",name:"\u672A\u7B7E\u7EA6"}]);A.query.type&&(n.type=(P=A.query.type)==null?void 0:P.toString());const G=_([]),K=s=>{G.value=s.map(({id:u})=>u)};Ee(""),we({type_id:7}).then(s=>{x.value=s.lists});const{pager:C,getLists:g,resetParams:Z,resetPage:H}=ye({fetchFun:Be,params:n});_();const J=s=>{Ce({id:s.id}).then(u=>{W(u.url,"")})},W=(s,u)=>{let i=document.createElement("a");i.href=s,i.download=u,document.body.appendChild(i),i.click(),document.body.removeChild(i)};return g(),(s,u)=>{const i=oe,y=ue,S=le,L=ne,r=se,X=re,U=pe,c=ie,I=ve("router-link"),Y=ce,ee=me,te=de,q=be("perms"),ae=_e;return l(),m("div",null,[t(U,{class:"!border-none mb-4",shadow:"never"},{default:a(()=>[t(X,{class:"mb-[-16px]",model:o(n),inline:""},{default:a(()=>[t(y,{label:"\u516C\u53F8\u540D\u79F0",prop:"company_id"},{default:a(()=>[t(i,{class:"w-[280px]",modelValue:o(n).company_id,"onUpdate:modelValue":u[0]||(u[0]=e=>o(n).company_id=e),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u516C\u53F8"},null,8,["modelValue"])]),_:1}),t(y,{label:"\u5408\u540C\u7C7B\u578B",prop:"contract_type"},{default:a(()=>[t(L,{modelValue:o(n).contract_type,"onUpdate:modelValue":u[1]||(u[1]=e=>o(n).contract_type=e),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u5408\u540C\u7C7B\u578B"},{default:a(()=>[(l(!0),m(D,null,M(o(x),e=>(l(),d(S,{key:e.label,value:e.id,label:e.name},null,8,["value","label"]))),128))]),_:1},8,["modelValue"])]),_:1}),t(y,{label:"\u5408\u540C\u7F16\u53F7",prop:"contract_no"},{default:a(()=>[t(i,{class:"w-[280px]",modelValue:o(n).contract_no,"onUpdate:modelValue":u[2]||(u[2]=e=>o(n).contract_no=e),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u5408\u540C\u7F16\u53F7"},null,8,["modelValue"])]),_:1}),t(y,{label:"\u72B6\u6001",prop:"status"},{default:a(()=>[t(L,{modelValue:o(n).status,"onUpdate:modelValue":u[3]||(u[3]=e=>o(n).status=e),clearable:"",placeholder:"\u8BF7\u9009\u62E9\u72B6\u6001"},{default:a(()=>[(l(!0),m(D,null,M(o(j),e=>(l(),d(S,{key:e.label,value:e.id,label:e.name},null,8,["value","label"]))),128))]),_:1},8,["modelValue"])]),_:1}),t(y,{label:"\u7532\u65B9\u7247\u533A\u7ECF\u7406",prop:"area_manager"},{default:a(()=>[t(i,{class:"w-[280px]",modelValue:o(n).area_manager,"onUpdate:modelValue":u[4]||(u[4]=e=>o(n).area_manager=e),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u7532\u65B9\u7247\u533A\u7ECF\u7406"},null,8,["modelValue"])]),_:1}),t(y,null,{default:a(()=>[t(r,{type:"primary",onClick:o(H)},{default:a(()=>[p("\u67E5\u8BE2")]),_:1},8,["onClick"]),t(r,{onClick:o(Z)},{default:a(()=>[p("\u91CD\u7F6E")]),_:1},8,["onClick"])]),_:1})]),_:1},8,["model"])]),_:1}),w((l(),d(U,{class:"!border-none",shadow:"never"},{default:a(()=>[E("div",Pe,[t(Y,{data:o(C).lists,onSelectionChange:K},{default:a(()=>[t(c,{label:"id",prop:"id","show-overflow-tooltip":""}),t(c,{label:"\u5408\u540C\u7C7B\u578B",prop:"contract_type_name","show-overflow-tooltip":""}),t(c,{label:"\u5408\u540C\u7F16\u53F7",prop:"contract_no","show-overflow-tooltip":""}),t(c,{label:"\u7532\u65B9",prop:"party_a_name","show-overflow-tooltip":""},{default:a(e=>{var B,N;return[E("span",null,V((N=(B=e.row)==null?void 0:B.party_a_info)==null?void 0:N.company_name),1)]}),_:1}),t(c,{label:"\u4E59\u65B9",prop:"party_b_name","show-overflow-tooltip":""}),t(c,{label:"\u7532\u65B9\u7247\u533A\u7ECF\u7406",prop:"area_manager_name","show-overflow-tooltip":""}),t(c,{label:"\u7C7B\u578B",prop:"type","show-overflow-tooltip":""},{default:a(e=>[E("span",null,V(e.row.type==1?"\u516C\u53F8":e.row.type==0?"":"\u4E2A\u4EBA"),1)]),_:1}),t(c,{label:"\u72B6\u6001",prop:"status_name","show-overflow-tooltip":""},{default:a(e=>[e.row.status_name=="\u5DF2\u7B7E\u7EA6"?(l(),m("span",Se,"\u5DF2\u7B7E\u7EA6")):(l(),m("span",Le,"\u672A\u7B7E\u7EA6"))]),_:1}),t(c,{label:"\u64CD\u4F5C",width:"180",fixed:"right",align:"center"},{default:a(({row:e})=>[t(r,{type:"primary",link:""},{default:a(()=>[t(I,{to:{path:"/contract/detail",query:{id:e.id}}},{default:a(()=>[p(V(e.status?"\u8BE6\u60C5":"\u5BA1\u6838"),1)]),_:2},1032,["to"])]),_:2},1024),e.status==0?(l(),m(D,{key:0},[e.check_status==1?(l(),d(r,{key:0,type:"warning",link:""},{default:a(()=>[t(I,{to:{path:"/contract/detail",query:{id:e.id}}},{default:a(()=>[p("\u5F85\u5BA1\u6838")]),_:2},1032,["to"])]),_:2},1024)):e.check_status==2?w((l(),d(r,{key:1,type:"primary",link:"",onClick:B=>z(e)},{default:a(()=>[p("\u53D1\u9001\u5408\u540C")]),_:2},1032,["onClick"])),[[q,["contract.contract/contract_send"]]]):e.check_status==3?w((l(),d(r,{key:2,type:"primary",link:"",onClick:B=>(f.value=!0,k.value=e.party_b,b.value=e.id)},{default:a(()=>[p("\u53D1\u9001\u77ED\u4FE1")]),_:2},1032,["onClick"])),[[q,["contract.contract/contract_send_again"]]]):ke("",!0)],64)):(l(),d(r,{key:1,type:"primary",link:"",onClick:B=>J(e)},{default:a(()=>[p(" \u4E0B\u8F7D\u8BC1\u636E\u5305 ")]),_:2},1032,["onClick"]))]),_:1})]),_:1},8,["data"])]),E("div",Ue,[t(ee,{modelValue:o(C),"onUpdate:modelValue":u[5]||(u[5]=e=>R(C)?C.value=e:null),onChange:o(g)},null,8,["modelValue","onChange"])])]),_:1})),[[ae,o(C).loading]]),t(te,{modelValue:o(f),"onUpdate:modelValue":u[6]||(u[6]=e=>R(f)?f.value=e:null),onClose:h},{default:a(()=>[Ie,o(v)?(l(),m("div",qe," \u8BF7\u786E\u8BA4\u4FE1\u606F\u662F\u5426\u6709\u8BEF,\u53D1\u9001\u5408\u540C,\u8BF7\u786E\u8BA4\u4FE1\u606F\u662F\u5426\u6709\u8BEF,\u53D1\u9001\u7535\u5B50\u5408\u540C\u540E\u77ED\u65F6\u95F4\u5185\u5C06\u4E0D\u53EF\u518D\u6B21\u53D1\u9001. ")):(l(),m("div",Ne," \u786E\u8BA4\u7B7E\u7EA6\u77ED\u4FE1\u5C06\u572860\u79D2\u540E\u53D1\u9001,\u8BF7\u6CE8\u610F\u67E5\u6536,\u5E76\u70B9\u51FB\u77ED\u4FE1\u94FE\u63A5\u8FDB\u884C\u7EBF\u4E0A\u5408\u540C\u7B7E\u7EA6 ")),E("p",$e,[o(v)?(l(),d(r,{key:0,type:"primary",size:"large",onClick:O},{default:a(()=>[p("\u786E\u8BA4")]),_:1})):(l(),d(r,{key:1,type:"primary",size:"large",onClick:Q},{default:a(()=>[p("\u786E\u8BA4")]),_:1})),t(r,{type:"info",size:"large",onClick:h},{default:a(()=>[p("\u8FD4\u56DE")]),_:1})])]),_:1},8,["modelValue"])])}}});const wt=De(Re,[["__scopeId","data-v-4a76ea26"]]);export{wt as default}; diff --git a/public/admin/assets/index.67c881fe.js b/public/admin/assets/index.67c881fe.js new file mode 100644 index 000000000..3bc85595a --- /dev/null +++ b/public/admin/assets/index.67c881fe.js @@ -0,0 +1 @@ +import{B as O,C as Q,M as j,N as K,w as z,D as G,O as H,P as J,I as W,Q as X}from"./element-plus.4328d892.js";import{_ as Y}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{u as Z}from"./usePaging.2ad8e1e6.js";import{u as ee}from"./useDictOptions.a61fcf9f.js";import{a as oe}from"./informationg.b648c8df.js";import{k as te}from"./index.aa9bb752.js";import{_ as ae}from"./editCate.vue_vue_type_script_setup_true_name_flowTypeEdit_lang.ad421bfe.js";import{d as k,s as le,r as C,$ as ne,a4 as ue,af as re,o as i,c as d,M as w,u as t,K as b,L as a,U as e,T as D,a7 as h,R as m,a as y,S as _,k as ie,Q as me}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.fa872673.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./examined.fccbde31.js";const se={class:"mt-4"},pe={class:"flex mt-4 justify-end"},de=k({name:"flowTypeLists"}),to=k({...de,setup(_e){console.log(te);const E=le(),g=C(!1),n=ne({name:"",company_name:"",nickname:"",brigade:""}),V=C([]),B=v=>{V.value=v.map(({id:l})=>l)},{dictData:x}=ee(""),{pager:s,getLists:c,resetParams:S,resetPage:P}=Z({fetchFun:oe,params:n});return c(),(v,l)=>{const f=O,p=Q,R=j,U=K,F=z,L=G,u=H,N=ue("router-link"),T=J,$=Y,I=W,M=re("perms"),q=X;return i(),d("div",null,[w((i(),b(I,{class:"!border-none",shadow:"never"},{default:a(()=>[e(L,{class:"mb-[-16px]",inline:""},{default:a(()=>[e(p,{label:"\u516C\u53F8\u540D\u79F0",prop:"company_id"},{default:a(()=>[e(f,{class:"w-[280px]",modelValue:t(n).company_name,"onUpdate:modelValue":l[0]||(l[0]=o=>t(n).company_name=o),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u516C\u53F8"},null,8,["modelValue"])]),_:1}),e(p,{label:"\u961F\u957F\u59D3\u540D",prop:"company_id"},{default:a(()=>[e(f,{class:"w-[280px]",modelValue:t(n).nickname,"onUpdate:modelValue":l[1]||(l[1]=o=>t(n).nickname=o),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u961F\u957F\u59D3\u540D"},null,8,["modelValue"])]),_:1}),e(p,{label:"\u6863\u6848\u540D\u79F0",prop:"company_id"},{default:a(()=>[e(f,{class:"w-[280px]",modelValue:t(n).name,"onUpdate:modelValue":l[2]||(l[2]=o=>t(n).name=o),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u6863\u6848\u59D3\u540D"},null,8,["modelValue"])]),_:1}),e(p,{label:"\u5C0F\u961F",prop:"company_id"},{default:a(()=>[e(U,{modelValue:t(n).brigade,"onUpdate:modelValue":l[3]||(l[3]=o=>t(n).brigade=o),placeholder:"\u8BF7\u9009\u62E9\u5C0F\u961F",clearable:"",style:{width:"100%"}},{default:a(()=>[(i(),d(D,null,h([{brigade_name:"1\u961F",id:"1"},{brigade_name:"2\u961F",id:"2"}],(o,r)=>e(R,{key:r,label:o.brigade_name,value:o.id},null,8,["label","value"])),64))]),_:1},8,["modelValue"])]),_:1}),e(p,null,{default:a(()=>[e(F,{type:"primary",onClick:t(P)},{default:a(()=>[m("\u67E5\u8BE2")]),_:1},8,["onClick"]),e(F,{onClick:t(S)},{default:a(()=>[m("\u91CD\u7F6E")]),_:1},8,["onClick"])]),_:1})]),_:1}),y("div",se,[e(T,{data:t(s).lists,onSelectionChange:B},{default:a(()=>[e(u,{label:"\u7F16\u53F7",prop:"id","show-overflow-tooltip":""}),e(u,{label:"\u9547\u516C\u53F8","show-overflow-tooltip":""},{default:a(({row:o})=>{var r;return[m(_((r=o.extend)==null?void 0:r.company_name),1)]}),_:1}),e(u,{width:"260px",label:"\u6240\u5C5E\u5730\u533A","show-overflow-tooltip":""},{default:a(({row:o})=>[m(_(o.area_name+o.street_name+o.village_name)+" ",1),(i(!0),d(D,null,h(o.brigade_name,(r,A)=>(i(),d("text",{key:A},_(r.brigade_name),1))),128))]),_:1}),e(u,{label:"\u961F\u957F\u59D3\u540D",prop:"phone","show-overflow-tooltip":""},{default:a(({row:o})=>{var r;return[m(_((r=o.extend)==null?void 0:r.nickname),1)]}),_:1}),e(u,{label:"\u6863\u6848\u540D\u79F0",prop:"name","show-overflow-tooltip":""}),e(u,{label:"\u8054\u7CFB\u7535\u8BDD",prop:"phone","show-overflow-tooltip":""}),e(u,{label:"\u66F4\u65B0\u65F6\u95F4",prop:"update_time","show-overflow-tooltip":""}),e(u,{label:"\u5EFA\u6863\u65F6\u95F4",prop:"create_time","show-overflow-tooltip":""}),e(u,{label:"\u64CD\u4F5C",align:"center",width:"auto",fixed:"right"},{default:a(({row:o})=>[w((i(),b(F,{type:"primary",link:""},{default:a(()=>[e(N,{to:{path:"user_informationg/details",query:{id:o.id}}},{default:a(()=>[m(" \u8BE6\u60C5 ")]),_:2},1032,["to"])]),_:2},1024)),[[M,["user_informationg.user_informationg/details"]]])]),_:1})]),_:1},8,["data"])]),y("div",pe,[e($,{modelValue:t(s),"onUpdate:modelValue":l[4]||(l[4]=o=>ie(s)?s.value=o:null),onChange:t(c)},null,8,["modelValue","onChange"])])]),_:1})),[[q,t(s).loading]]),t(g)?(i(),b(ae,{key:0,ref_key:"editRef",ref:E,"dict-data":t(x),onSuccess:t(c),onClose:l[5]||(l[5]=o=>g.value=!1)},null,8,["dict-data","onSuccess"])):me("",!0)])}}});export{to as default}; diff --git a/public/admin/assets/index.684c9cd9.js b/public/admin/assets/index.684c9cd9.js new file mode 100644 index 000000000..98174e96e --- /dev/null +++ b/public/admin/assets/index.684c9cd9.js @@ -0,0 +1 @@ +import{B as le,C as ie,M as se,N as me,w as re,D as ce,I as pe,O as de,o as _e,t as fe,P as Ee,L as Fe,Q as ve}from"./element-plus.4328d892.js";import{_ as he}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{f as V,b as ye,d as Ce}from"./index.37f7aea6.js";import{_ as ge}from"./index.vue_vue_type_script_setup_true_lang.7ac7ce7d.js";import{u as Be}from"./vue-router.9f65afb1.js";import{d as N,s as De,$ as be,r as C,j as ke,af as we,o as n,c as E,U as t,L as a,u as o,a8 as Ae,T as Ve,a7 as xe,K as s,R as m,M as F,a as g,S as Se,Q as x,k as R,n as S,bf as Ie,be as $e}from"./@vue.51d7f2d8.js";import{a as M,g as Pe,s as ze,b as Ue,e as Le}from"./admin.f0e2c7b9.js";import{r as Re}from"./role.8d2a6d5e.js";import{a as Me}from"./useDictOptions.a45fc8ac.js";import{u as Ne}from"./usePaging.2ad8e1e6.js";import{_ as Te}from"./edit.vue_vue_type_style_index_0_lang.c0714a8e.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.5759a1a6.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./post.34f40c78.js";import"./department.ea28aaf8.js";import"./common.a58b263a.js";import"./dict.58face92.js";import"./dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.cbb85e35.js";import"./company.d1e8fc82.js";const Ke=B=>(Ie("data-v-f5328fb9"),B=B(),$e(),B),Oe={class:"admin"},je={class:"mt-4"},qe={key:0,style:{color:"#67c23a"}},Qe={key:1,style:{color:"#fe0000"}},Ge={style:{display:"flex"}},He={class:"flex mt-4 justify-end"},Je=Ke(()=>g("h1",null,"\u91CD\u8981\u63D0\u9192",-1)),We={key:0,class:"content"},Xe={key:1,class:"content"},Ye={class:"btn_menu"},Ze=N({name:"admin"}),et=N({...Ze,setup(B){var z;const I=Be(),_=De(),p=be({name:"",role_id:"",company_id:""}),$=C("");I.query.company_id&&(p.company_id=(z=I.query.company_id)==null?void 0:z.toString());const D=C(!1),w=C(!1),b=()=>{D.value=!1,w.value=!1},T=()=>{Pe({id:$.value}).then(()=>{V.msgSuccess("\u53D1\u9001\u6210\u529F")}),b()},K=()=>{ze({id:$.value}).then(u=>{V.msgSuccess("\u53D1\u9001\u6210\u529F")}),b()},v=C(!1),{pager:f,getLists:h,resetParams:O,resetPage:P}=Ne({fetchFun:M,params:p}),j=u=>{Ue({id:u.id,account:u.account,name:u.name,role_id:u.role_id,disable:u.disable,multipoint_login:u.multipoint_login}).finally(()=>{h()})},k=C(!1),q=async()=>{var u;k.value=!1,v.value=!0,await S(),(u=_.value)==null||u.open("add")},Q=async u=>{var l,d;k.value=!1,v.value=!0,await S(),(l=_.value)==null||l.open("edit"),(d=_.value)==null||d.setFormData(u)},G=async u=>{var l,d;k.value=!1,v.value=!0,await S(),(l=_.value)==null||l.open("view"),(d=_.value)==null||d.setFormData(u)},H=async u=>{await V.confirm("\u786E\u5B9A\u8981\u5220\u9664\uFF1F"),await Le({id:u}),h()},{optionsData:J}=Me({role:{api:Re}});return ke(()=>{h()}),(u,l)=>{const d=le,A=ie,U=se,W=me,c=re,X=ge,Y=ce,L=pe,Z=ye,i=de,ee=_e,te=fe,ae=Ee,oe=he,ue=Fe,y=we("perms"),ne=ve;return n(),E("div",Oe,[t(L,{class:"!border-none",shadow:"never"},{default:a(()=>[t(Y,{class:"mb-[-16px]",model:o(p),inline:""},{default:a(()=>[t(A,{label:"\u7BA1\u7406\u5458\u540D\u79F0"},{default:a(()=>[t(d,{modelValue:o(p).name,"onUpdate:modelValue":l[0]||(l[0]=e=>o(p).name=e),class:"w-[280px]",clearable:"",onKeyup:Ae(o(P),["enter"])},null,8,["modelValue","onKeyup"])]),_:1}),t(A,{label:"\u7BA1\u7406\u5458\u89D2\u8272"},{default:a(()=>[t(W,{class:"w-[280px]",modelValue:o(p).role_id,"onUpdate:modelValue":l[1]||(l[1]=e=>o(p).role_id=e)},{default:a(()=>[t(U,{label:"\u5168\u90E8",value:""}),(n(!0),E(Ve,null,xe(o(J).role,(e,r)=>(n(),s(U,{key:r,label:e.name,value:e.id},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1}),t(A,null,{default:a(()=>[t(c,{type:"primary",onClick:o(P)},{default:a(()=>[m("\u67E5\u8BE2")]),_:1},8,["onClick"]),t(c,{onClick:o(O)},{default:a(()=>[m("\u91CD\u7F6E")]),_:1},8,["onClick"]),t(X,{class:"ml-2.5","fetch-fun":o(M),params:o(p),"page-size":o(f).size},null,8,["fetch-fun","params","page-size"])]),_:1})]),_:1},8,["model"])]),_:1}),F((n(),s(L,{class:"mt-4 !border-none",shadow:"never"},{default:a(()=>[F((n(),s(c,{type:"primary",onClick:q},{icon:a(()=>[t(Z,{name:"el-icon-Plus"})]),default:a(()=>[m(" \u65B0\u589E ")]),_:1})),[[y,["auth.admin/add"]]]),g("div",je,[t(ae,{data:o(f).lists,size:"large"},{default:a(()=>[t(i,{label:"ID",prop:"id","min-width":"60"}),m("> "),t(i,{label:"\u5934\u50CF","min-width":"100"},{default:a(({row:e})=>[t(ee,{size:50,src:e.avatar},null,8,["src"])]),_:1}),t(i,{label:"\u59D3\u540D",prop:"name","min-width":"100"}),t(i,{label:"\u8054\u7CFB\u65B9\u5F0F",prop:"account","min-width":"130"}),t(i,{label:"\u96B6\u5C5E\u516C\u53F8",prop:"company.company_name","min-width":"120",align:"center"},{default:a(({row:e})=>{var r;return[m(Se(((r=e==null?void 0:e.company)==null?void 0:r.company_name)||"/"),1)]}),_:1}),t(i,{label:"\u6240\u5728\u4E61\u9547",prop:"street_name","min-width":"120"}),t(i,{label:"\u6388\u6743\u8EAB\u4EFD",prop:"role_name","min-width":"120"}),t(i,{label:"\u662F\u5426\u7B7E\u7EA6",prop:"is_contract",align:"center","min-width":"120"},{default:a(({row:e})=>[e.is_contract==1?(n(),E("span",qe,"\u5DF2\u7B7E\u7EA6")):(n(),E("span",Qe,"\u672A\u7B7E\u7EA6"))]),_:1}),t(i,{label:"\u6700\u8FD1\u767B\u5F55\u65F6\u95F4",prop:"login_time","min-width":"180"}),t(i,{label:"\u521B\u5EFA\u65F6\u95F4",prop:"create_time","min-width":"180",align:"center"}),t(i,{label:"\u6700\u8FD1\u767B\u5F55IP",prop:"login_ip","min-width":"120"}),F((n(),s(i,{label:"\u8D26\u53F7\u72B6\u6001","min-width":"100"},{default:a(({row:e})=>[e.root!=1?(n(),s(te,{key:0,modelValue:e.disable,"onUpdate:modelValue":r=>e.disable=r,"active-value":0,"inactive-value":1,onChange:r=>j(e)},null,8,["modelValue","onUpdate:modelValue","onChange"])):x("",!0)]),_:1})),[[y,["auth.admin/edit"]]]),t(i,{label:"\u64CD\u4F5C",width:"230",align:"center",fixed:"right"},{default:a(({row:e})=>[g("div",Ge,[F((n(),s(c,{type:"primary",link:"",onClick:r=>G(e)},{default:a(()=>[m("\u67E5\u770B")]),_:2},1032,["onClick"])),[[y,["auth.admin/view"]]]),F((n(),s(c,{type:"primary",link:"",onClick:r=>Q(e)},{default:a(()=>[m("\u7F16\u8F91")]),_:2},1032,["onClick"])),[[y,["auth.admin/edit"]]]),e.root!=1?F((n(),s(c,{key:0,type:"danger",link:"",onClick:r=>H(e.id)},{default:a(()=>[m("\u5220\u9664")]),_:2},1032,["onClick"])),[[y,["auth.admin/delete"]]]):x("",!0)])]),_:1})]),_:1},8,["data"])]),g("div",He,[t(oe,{modelValue:o(f),"onUpdate:modelValue":l[2]||(l[2]=e=>R(f)?f.value=e:null),onChange:o(h)},null,8,["modelValue","onChange"])])]),_:1})),[[ne,o(f).loading]]),o(v)?(n(),s(Te,{key:0,ref_key:"editRef",ref:_,isCheck:o(k),onSuccess:o(h),onClose:l[3]||(l[3]=e=>v.value=!1)},null,8,["isCheck","onSuccess"])):x("",!0),t(ue,{modelValue:o(D),"onUpdate:modelValue":l[4]||(l[4]=e=>R(D)?D.value=e:null),onClose:b},{default:a(()=>[Je,o(w)?(n(),E("div",We," \u8BF7\u786E\u8BA4\u4FE1\u606F\u662F\u5426\u6709\u8BEF,\u53D1\u9001\u5408\u540C,\u8BF7\u786E\u8BA4\u4FE1\u606F\u662F\u5426\u6709\u8BEF,\u53D1\u9001\u7535\u5B50\u5408\u540C\u540E\u77ED\u65F6\u95F4\u5185\u5C06\u4E0D\u53EF\u518D\u6B21\u53D1\u9001. ")):(n(),E("div",Xe," \u786E\u8BA4\u7B7E\u7EA6\u77ED\u4FE1\u5C06\u572860\u79D2\u540E\u53D1\u9001,\u8BF7\u6CE8\u610F\u67E5\u6536,\u5E76\u70B9\u51FB\u77ED\u4FE1\u94FE\u63A5\u8FDB\u884C\u7EBF\u4E0A\u5408\u540C\u7B7E\u7EA6 ")),g("p",Ye,[o(w)?(n(),s(c,{key:0,type:"primary",size:"large",onClick:T},{default:a(()=>[m("\u786E\u8BA4\u521B\u5EFA")]),_:1})):(n(),s(c,{key:1,type:"primary",size:"large",onClick:K},{default:a(()=>[m("\u786E\u8BA4")]),_:1})),t(c,{type:"info",size:"large",onClick:b},{default:a(()=>[m("\u8FD4\u56DE")]),_:1})])]),_:1},8,["modelValue"])])}}});const Wt=Ce(et,[["__scopeId","data-v-f5328fb9"]]);export{Wt as default}; diff --git a/public/admin/assets/index.6f446179.js b/public/admin/assets/index.6f446179.js new file mode 100644 index 000000000..c475f4d4f --- /dev/null +++ b/public/admin/assets/index.6f446179.js @@ -0,0 +1 @@ +import{B as oe,C as ue,M as le,N as ne,w as se,D as re,I as pe,O as ie,P as ce,L as de,Q as _e}from"./element-plus.4328d892.js";import{_ as me}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{u as fe}from"./vue-router.9f65afb1.js";import{u as ye}from"./usePaging.2ad8e1e6.js";import{u as Ee}from"./useDictOptions.a61fcf9f.js";import{d as Ce,e as Be}from"./contract.35ae5168.js";import{d as T,s as Fe,r as _,$,a4 as ve,af as be,o as l,c as m,U as t,L as a,u as o,T as D,a7 as M,K as d,R as p,M as w,a as E,S as V,Q as ke,k as R,bf as he,be as ge}from"./@vue.51d7f2d8.js";import"./lodash.08438971.js";import{d as De}from"./index.aa9bb752.js";import{d as we}from"./dict.927f1fc7.js";import{f as Ve,s as Ae}from"./company.b7ec1bf9.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./axios.105476b3.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const xe=F=>(he("data-v-4a76ea26"),F=F(),ge(),F),Pe={class:"mt-4"},Se={key:0,style:{color:"#67c23a"}},Le={key:1,style:{color:"#fe0000"}},Ue={class:"flex mt-4 justify-end"},Ie=xe(()=>E("h1",null,"\u91CD\u8981\u63D0\u9192",-1)),qe={key:0,class:"content"},Ne={key:1,class:"content"},$e={class:"btn_menu"},Me=T({name:"contractLists"}),Re=T({...Me,setup(F){var P;const A=fe();Fe(),_(!1);const x=_([]),f=_(!1),v=_(!1),b=_(""),k=_(""),z=s=>{f.value=!0,v.value=!0,b.value=s.id,k.value=s.party_b},h=()=>{f.value=!1,v.value=!1},O=async()=>{await Ve({id:k.value,contract_id:b.value}),g(),h()},Q=async()=>{await Ae({id:k.value,contract_id:b.value}),g(),h()},n=$({company_id:"",contract_type:"",contract_no:"",status:"",party_a:"",party_b:"",area_manager:"",type:""}),j=$([{id:"1",name:"\u5DF2\u7B7E\u7EA6"},{id:"0",name:"\u672A\u7B7E\u7EA6"}]);A.query.type&&(n.type=(P=A.query.type)==null?void 0:P.toString());const G=_([]),K=s=>{G.value=s.map(({id:u})=>u)};Ee(""),we({type_id:7}).then(s=>{x.value=s.lists});const{pager:C,getLists:g,resetParams:Z,resetPage:H}=ye({fetchFun:Be,params:n});_();const J=s=>{Ce({id:s.id}).then(u=>{W(u.url,"")})},W=(s,u)=>{let i=document.createElement("a");i.href=s,i.download=u,document.body.appendChild(i),i.click(),document.body.removeChild(i)};return g(),(s,u)=>{const i=oe,y=ue,S=le,L=ne,r=se,X=re,U=pe,c=ie,I=ve("router-link"),Y=ce,ee=me,te=de,q=be("perms"),ae=_e;return l(),m("div",null,[t(U,{class:"!border-none mb-4",shadow:"never"},{default:a(()=>[t(X,{class:"mb-[-16px]",model:o(n),inline:""},{default:a(()=>[t(y,{label:"\u516C\u53F8\u540D\u79F0",prop:"company_id"},{default:a(()=>[t(i,{class:"w-[280px]",modelValue:o(n).company_id,"onUpdate:modelValue":u[0]||(u[0]=e=>o(n).company_id=e),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u516C\u53F8"},null,8,["modelValue"])]),_:1}),t(y,{label:"\u5408\u540C\u7C7B\u578B",prop:"contract_type"},{default:a(()=>[t(L,{modelValue:o(n).contract_type,"onUpdate:modelValue":u[1]||(u[1]=e=>o(n).contract_type=e),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u5408\u540C\u7C7B\u578B"},{default:a(()=>[(l(!0),m(D,null,M(o(x),e=>(l(),d(S,{key:e.label,value:e.id,label:e.name},null,8,["value","label"]))),128))]),_:1},8,["modelValue"])]),_:1}),t(y,{label:"\u5408\u540C\u7F16\u53F7",prop:"contract_no"},{default:a(()=>[t(i,{class:"w-[280px]",modelValue:o(n).contract_no,"onUpdate:modelValue":u[2]||(u[2]=e=>o(n).contract_no=e),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u5408\u540C\u7F16\u53F7"},null,8,["modelValue"])]),_:1}),t(y,{label:"\u72B6\u6001",prop:"status"},{default:a(()=>[t(L,{modelValue:o(n).status,"onUpdate:modelValue":u[3]||(u[3]=e=>o(n).status=e),clearable:"",placeholder:"\u8BF7\u9009\u62E9\u72B6\u6001"},{default:a(()=>[(l(!0),m(D,null,M(o(j),e=>(l(),d(S,{key:e.label,value:e.id,label:e.name},null,8,["value","label"]))),128))]),_:1},8,["modelValue"])]),_:1}),t(y,{label:"\u7532\u65B9\u7247\u533A\u7ECF\u7406",prop:"area_manager"},{default:a(()=>[t(i,{class:"w-[280px]",modelValue:o(n).area_manager,"onUpdate:modelValue":u[4]||(u[4]=e=>o(n).area_manager=e),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u7532\u65B9\u7247\u533A\u7ECF\u7406"},null,8,["modelValue"])]),_:1}),t(y,null,{default:a(()=>[t(r,{type:"primary",onClick:o(H)},{default:a(()=>[p("\u67E5\u8BE2")]),_:1},8,["onClick"]),t(r,{onClick:o(Z)},{default:a(()=>[p("\u91CD\u7F6E")]),_:1},8,["onClick"])]),_:1})]),_:1},8,["model"])]),_:1}),w((l(),d(U,{class:"!border-none",shadow:"never"},{default:a(()=>[E("div",Pe,[t(Y,{data:o(C).lists,onSelectionChange:K},{default:a(()=>[t(c,{label:"id",prop:"id","show-overflow-tooltip":""}),t(c,{label:"\u5408\u540C\u7C7B\u578B",prop:"contract_type_name","show-overflow-tooltip":""}),t(c,{label:"\u5408\u540C\u7F16\u53F7",prop:"contract_no","show-overflow-tooltip":""}),t(c,{label:"\u7532\u65B9",prop:"party_a_name","show-overflow-tooltip":""},{default:a(e=>{var B,N;return[E("span",null,V((N=(B=e.row)==null?void 0:B.party_a_info)==null?void 0:N.company_name),1)]}),_:1}),t(c,{label:"\u4E59\u65B9",prop:"party_b_name","show-overflow-tooltip":""}),t(c,{label:"\u7532\u65B9\u7247\u533A\u7ECF\u7406",prop:"area_manager_name","show-overflow-tooltip":""}),t(c,{label:"\u7C7B\u578B",prop:"type","show-overflow-tooltip":""},{default:a(e=>[E("span",null,V(e.row.type==1?"\u516C\u53F8":e.row.type==0?"":"\u4E2A\u4EBA"),1)]),_:1}),t(c,{label:"\u72B6\u6001",prop:"status_name","show-overflow-tooltip":""},{default:a(e=>[e.row.status_name=="\u5DF2\u7B7E\u7EA6"?(l(),m("span",Se,"\u5DF2\u7B7E\u7EA6")):(l(),m("span",Le,"\u672A\u7B7E\u7EA6"))]),_:1}),t(c,{label:"\u64CD\u4F5C",width:"180",fixed:"right",align:"center"},{default:a(({row:e})=>[t(r,{type:"primary",link:""},{default:a(()=>[t(I,{to:{path:"/contract/detail",query:{id:e.id}}},{default:a(()=>[p(V(e.status?"\u8BE6\u60C5":"\u5BA1\u6838"),1)]),_:2},1032,["to"])]),_:2},1024),e.status==0?(l(),m(D,{key:0},[e.check_status==1?(l(),d(r,{key:0,type:"warning",link:""},{default:a(()=>[t(I,{to:{path:"/contract/detail",query:{id:e.id}}},{default:a(()=>[p("\u5F85\u5BA1\u6838")]),_:2},1032,["to"])]),_:2},1024)):e.check_status==2?w((l(),d(r,{key:1,type:"primary",link:"",onClick:B=>z(e)},{default:a(()=>[p("\u53D1\u9001\u5408\u540C")]),_:2},1032,["onClick"])),[[q,["contract.contract/contract_send"]]]):e.check_status==3?w((l(),d(r,{key:2,type:"primary",link:"",onClick:B=>(f.value=!0,k.value=e.party_b,b.value=e.id)},{default:a(()=>[p("\u53D1\u9001\u77ED\u4FE1")]),_:2},1032,["onClick"])),[[q,["contract.contract/contract_send_again"]]]):ke("",!0)],64)):(l(),d(r,{key:1,type:"primary",link:"",onClick:B=>J(e)},{default:a(()=>[p(" \u4E0B\u8F7D\u8BC1\u636E\u5305 ")]),_:2},1032,["onClick"]))]),_:1})]),_:1},8,["data"])]),E("div",Ue,[t(ee,{modelValue:o(C),"onUpdate:modelValue":u[5]||(u[5]=e=>R(C)?C.value=e:null),onChange:o(g)},null,8,["modelValue","onChange"])])]),_:1})),[[ae,o(C).loading]]),t(te,{modelValue:o(f),"onUpdate:modelValue":u[6]||(u[6]=e=>R(f)?f.value=e:null),onClose:h},{default:a(()=>[Ie,o(v)?(l(),m("div",qe," \u8BF7\u786E\u8BA4\u4FE1\u606F\u662F\u5426\u6709\u8BEF,\u53D1\u9001\u5408\u540C,\u8BF7\u786E\u8BA4\u4FE1\u606F\u662F\u5426\u6709\u8BEF,\u53D1\u9001\u7535\u5B50\u5408\u540C\u540E\u77ED\u65F6\u95F4\u5185\u5C06\u4E0D\u53EF\u518D\u6B21\u53D1\u9001. ")):(l(),m("div",Ne," \u786E\u8BA4\u7B7E\u7EA6\u77ED\u4FE1\u5C06\u572860\u79D2\u540E\u53D1\u9001,\u8BF7\u6CE8\u610F\u67E5\u6536,\u5E76\u70B9\u51FB\u77ED\u4FE1\u94FE\u63A5\u8FDB\u884C\u7EBF\u4E0A\u5408\u540C\u7B7E\u7EA6 ")),E("p",$e,[o(v)?(l(),d(r,{key:0,type:"primary",size:"large",onClick:O},{default:a(()=>[p("\u786E\u8BA4")]),_:1})):(l(),d(r,{key:1,type:"primary",size:"large",onClick:Q},{default:a(()=>[p("\u786E\u8BA4")]),_:1})),t(r,{type:"info",size:"large",onClick:h},{default:a(()=>[p("\u8FD4\u56DE")]),_:1})])]),_:1},8,["modelValue"])])}}});const wt=De(Re,[["__scopeId","data-v-4a76ea26"]]);export{wt as default}; diff --git a/public/admin/assets/index.7055130a.js b/public/admin/assets/index.7055130a.js new file mode 100644 index 000000000..e725af584 --- /dev/null +++ b/public/admin/assets/index.7055130a.js @@ -0,0 +1 @@ +import{B as z,C as L,w as P,D as R,I as U,O as I,P as N,Q as S}from"./element-plus.4328d892.js";import{_ as $}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{u as T}from"./usePaging.2ad8e1e6.js";import{u as Q}from"./useDictOptions.8d37e54b.js";import{_ as j,a as q}from"./edit.vue_vue_type_script_setup_true_name_companyFormEdit_lang.1520b33c.js";import"./lodash.08438971.js";import"./index.ed71ac09.js";import{d as F,s as K,r as w,$ as M,o as i,c as O,U as o,L as a,u as e,R as E,M as G,K as C,a as b,k as H,Q as J}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.b940d6e3.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const W={class:"mt-4"},X={class:"flex mt-4 justify-end"},Y=F({name:"companyFormLists"}),Qo=F({...Y,setup(Z){const h=K(),d=w(!1),l=M({company_name:"",organization_code:"",address:"",master_name:"",type:"",master_email:"",notes:""}),v=w([]),g=c=>{v.value=c.map(({id:t})=>t)},{dictData:D}=Q(""),{pager:s,getLists:p,resetParams:V,resetPage:x}=T({fetchFun:q,params:l});return p(),(c,t)=>{const u=z,m=L,_=P,y=R,f=U,r=I,B=N,k=$,A=S;return i(),O("div",null,[o(f,{class:"!border-none mb-4",shadow:"never"},{default:a(()=>[o(y,{class:"mb-[-16px]",model:e(l),inline:""},{default:a(()=>[o(m,{label:"\u5546\u6237\u540D\u79F0",prop:"company_name"},{default:a(()=>[o(u,{class:"w-[280px]",modelValue:e(l).company_name,"onUpdate:modelValue":t[0]||(t[0]=n=>e(l).company_name=n),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u5546\u6237\u540D\u79F0"},null,8,["modelValue"])]),_:1}),o(m,{label:"\u793E\u4F1A\u4EE3\u7801",prop:"organization_code"},{default:a(()=>[o(u,{class:"w-[280px]",modelValue:e(l).organization_code,"onUpdate:modelValue":t[1]||(t[1]=n=>e(l).organization_code=n),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u793E\u4F1A\u4EE3\u7801"},null,8,["modelValue"])]),_:1}),o(m,{label:"\u6CD5\u4EBA\u540D\u79F0",prop:"master_name"},{default:a(()=>[o(u,{class:"w-[280px]",modelValue:e(l).master_name,"onUpdate:modelValue":t[2]||(t[2]=n=>e(l).master_name=n),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u6CD5\u4EBA\u540D\u79F0"},null,8,["modelValue"])]),_:1}),o(m,null,{default:a(()=>[o(_,{type:"primary",onClick:e(x)},{default:a(()=>[E("\u67E5\u8BE2")]),_:1},8,["onClick"]),o(_,{onClick:e(V)},{default:a(()=>[E("\u91CD\u7F6E")]),_:1},8,["onClick"])]),_:1})]),_:1},8,["model"])]),_:1}),G((i(),C(f,{class:"!border-none",shadow:"never"},{default:a(()=>[b("div",W,[o(B,{data:e(s).lists,onSelectionChange:g},{default:a(()=>[o(r,{label:"ID",prop:"id",width:"150px","show-overflow-tooltip":""}),o(r,{label:"\u5546\u6237\u540D\u79F0",width:"330px",prop:"company_name","show-overflow-tooltip":""}),o(r,{label:"\u793E\u4F1A\u4EE3\u7801",prop:"organization_code",width:"250px","show-overflow-tooltip":""}),o(r,{label:"\u8BE6\u7EC6\u5730\u5740",width:"350px",prop:"address","show-overflow-tooltip":""}),o(r,{label:"\u6CD5\u4EBA\u540D\u79F0",width:"120px",prop:"master_name","show-overflow-tooltip":""}),o(r,{label:"\u5907\u6CE8",prop:"notes","show-overflow-tooltip":""})]),_:1},8,["data"])]),b("div",X,[o(k,{modelValue:e(s),"onUpdate:modelValue":t[3]||(t[3]=n=>H(s)?s.value=n:null),onChange:e(p)},null,8,["modelValue","onChange"])])]),_:1})),[[A,e(s).loading]]),e(d)?(i(),C(j,{key:0,ref_key:"editRef",ref:h,"dict-data":e(D),onSuccess:e(p),onClose:t[4]||(t[4]=n=>d.value=!1)},null,8,["dict-data","onSuccess"])):J("",!0)])}}});export{Qo as default}; diff --git a/public/admin/assets/index.754e05b2.js b/public/admin/assets/index.754e05b2.js new file mode 100644 index 000000000..af7904c7f --- /dev/null +++ b/public/admin/assets/index.754e05b2.js @@ -0,0 +1 @@ +import{a6 as w,O as y,w as C,P as B,I as x,Q as D}from"./element-plus.4328d892.js";import{d as F}from"./message.f1110fc7.js";import{_ as L}from"./edit.vue_vue_type_script_setup_true_lang.7740595e.js";import{d as f,s as R,$ as T,af as $,o,c as N,M as d,u,K as a,L as t,U as i,R as l}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.ed71ac09.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.b940d6e3.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";const S=f({name:"shortLetter"}),kt=f({...S,setup(V){const p=R(),e=T({loading:!1,lists:[]}),c=async()=>{try{e.loading=!0,e.lists=await F(),e.loading=!1}catch{e.loading=!1}},g=r=>{var s;(s=p.value)==null||s.open(r)};return c(),(r,s)=>{const n=y,_=w,h=C,E=B,v=x,b=$("perms"),k=D;return o(),N("div",null,[d((o(),a(v,{class:"!border-none",shadow:"never"},{default:t(()=>[i(E,{size:"large",data:u(e).lists},{default:t(()=>[i(n,{label:"\u77ED\u4FE1\u6E20\u9053",prop:"name","min-width":"120"}),i(n,{label:"\u72B6\u6001","min-width":"120"},{default:t(({row:m})=>[m.status==1?(o(),a(_,{key:0},{default:t(()=>[l("\u5F00\u542F")]),_:1})):(o(),a(_,{key:1,type:"danger"},{default:t(()=>[l("\u5173\u95ED")]),_:1}))]),_:1}),i(n,{label:"\u64CD\u4F5C","min-width":"120",fixed:"right"},{default:t(({row:m})=>[d((o(),a(h,{type:"primary",link:"",onClick:z=>g(m.type)},{default:t(()=>[l(" \u8BBE\u7F6E ")]),_:2},1032,["onClick"])),[[b,["notice.sms_config/setConfig"]]])]),_:1})]),_:1},8,["data"])]),_:1})),[[k,u(e).loading]]),i(L,{ref_key:"editRef",ref:p,onSuccess:c},null,512)])}}});export{kt as default}; diff --git a/public/admin/assets/index.79d79d6a.js b/public/admin/assets/index.79d79d6a.js new file mode 100644 index 000000000..586b0fbee --- /dev/null +++ b/public/admin/assets/index.79d79d6a.js @@ -0,0 +1 @@ +import{a6 as I,B as Q,C as j,w as q,D as K,I as O,O as z,P as G,Q as H}from"./element-plus.4328d892.js";import{_ as J}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{f as W,b as X}from"./index.37f7aea6.js";import{u as Y}from"./usePaging.2ad8e1e6.js";import{u as Z}from"./useDictOptions.a45fc8ac.js";import{d as ee,e as oe}from"./user_menu.a3635908.js";import"./lodash.08438971.js";import te from"./edit.916604cd.js";import{d as F,s as ae,r as y,$ as le,w as se,af as ne,o as n,c as re,U as o,L as e,u as l,R as u,M as v,K as p,a as b,k as ie,Q as ue,n as D}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.5759a1a6.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";const pe={class:"mt-4"},me=["src"],de={class:"flex mt-4 justify-end"},ce=F({name:"userMenuLists"}),to=F({...ce,setup(_e){const _=ae(),f=y(!1),h=le({pid:"",type:"",name:"",icon:"",sort:"",paths:"",params:"",is_show:"",is_disable:""}),g=y([]),x=t=>{g.value=t.map(({id:s})=>s)},{dictData:B}=Z(""),{pager:m,getLists:C,resetParams:L,resetPage:P}=Y({fetchFun:oe,params:h}),V=async()=>{var t;f.value=!0,await D(),(t=_.value)==null||t.open("add")},$=async t=>{var s,r;f.value=!0,await D(),(s=_.value)==null||s.open("edit"),(r=_.value)==null||r.setFormData(t)},N=async t=>{await W.confirm("\u786E\u5B9A\u8981\u5220\u9664\uFF1F"),await ee({id:t}),C()};return C(),se(()=>m.lists,(t,s)=>{t==null||t.forEach(r=>{var c;(c=r==null?void 0:r.children)==null||c.forEach(d=>{d.parentName=r.name})})}),(t,s)=>{const r=Q,c=j,d=q,R=K,k=O,T=X,i=z,w=I,U=G,A=J,E=ne("perms"),M=H;return n(),re("div",null,[o(k,{class:"!border-none mb-4",shadow:"never"},{default:e(()=>[o(R,{class:"mb-[-16px]",model:l(h),inline:""},{default:e(()=>[o(c,{label:"\u83DC\u5355\u540D\u79F0",prop:"name"},{default:e(()=>[o(r,{class:"w-[280px]",modelValue:l(h).name,"onUpdate:modelValue":s[0]||(s[0]=a=>l(h).name=a),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u83DC\u5355\u540D\u79F0"},null,8,["modelValue"])]),_:1}),o(c,null,{default:e(()=>[o(d,{type:"primary",onClick:l(P)},{default:e(()=>[u("\u67E5\u8BE2")]),_:1},8,["onClick"]),o(d,{onClick:l(L)},{default:e(()=>[u("\u91CD\u7F6E")]),_:1},8,["onClick"])]),_:1})]),_:1},8,["model"])]),_:1}),v((n(),p(k,{class:"!border-none",shadow:"never"},{default:e(()=>[v((n(),p(d,{type:"primary",onClick:V},{icon:e(()=>[o(T,{name:"el-icon-Plus"})]),default:e(()=>[u(" \u65B0\u589E ")]),_:1})),[[E,["user.user_menu/add"]]]),b("div",pe,[o(U,{data:l(m).lists,onSelectionChange:x,"row-key":"id","tree-props":{children:"children",hasChildren:"hasChildren"}},{default:e(()=>[o(i,{label:"\u83DC\u5355\u540D\u79F0",prop:"name","show-overflow-tooltip":""}),o(i,{label:"\u83DC\u5355\u56FE\u6807",prop:"icon","show-overflow-tooltip":""},{default:e(({row:a})=>[b("img",{src:a.icon,style:{width:"50px",height:"50px"}},null,8,me)]),_:1}),o(i,{label:"\u83DC\u5355\u5907\u6CE8",prop:"notes","show-overflow-tooltip":""}),o(i,{label:"\u83DC\u5355\u6392\u5E8F",prop:"sort","show-overflow-tooltip":""}),o(i,{label:"\u8DEF\u7531\u5730\u5740",prop:"paths","show-overflow-tooltip":"",width:"320px"}),o(i,{label:"\u8DEF\u7531\u53C2\u6570",prop:"params","show-overflow-tooltip":""}),o(i,{label:"\u662F\u5426\u663E\u793A",prop:"is_show","show-overflow-tooltip":""},{default:e(({row:a})=>[a.is_show==1?(n(),p(w,{key:0},{default:e(()=>[u("\u663E\u793A")]),_:1})):(n(),p(w,{key:1,type:"danger"},{default:e(()=>[u("\u9690\u85CF")]),_:1}))]),_:1}),o(i,{label:"\u662F\u5426\u7981\u7528",prop:"is_disable","show-overflow-tooltip":""},{default:e(({row:a})=>[a.is_disable==0?(n(),p(w,{key:0},{default:e(()=>[u("\u6B63\u5E38")]),_:1})):(n(),p(w,{key:1,type:"danger"},{default:e(()=>[u("\u7981\u7528")]),_:1}))]),_:1}),o(i,{label:"\u64CD\u4F5C",width:"120",fixed:"right"},{default:e(({row:a})=>[v((n(),p(d,{type:"primary",link:"",onClick:S=>$(a)},{default:e(()=>[u(" \u7F16\u8F91 ")]),_:2},1032,["onClick"])),[[E,["user.user_menu/edit"]]]),v((n(),p(d,{type:"danger",link:"",onClick:S=>N(a.id)},{default:e(()=>[u(" \u5220\u9664 ")]),_:2},1032,["onClick"])),[[E,["user.user_menu/delete"]]])]),_:1})]),_:1},8,["data"])]),b("div",de,[o(A,{modelValue:l(m),"onUpdate:modelValue":s[1]||(s[1]=a=>ie(m)?m.value=a:null),onChange:l(C)},null,8,["modelValue","onChange"])])]),_:1})),[[M,l(m).loading]]),l(f)?(n(),p(te,{key:0,ref_key:"editRef",ref:_,"dict-data":l(B),menuList:l(m).lists,onSuccess:l(C),onClose:s[2]||(s[2]=a=>f.value=!1)},null,8,["dict-data","menuList","onSuccess"])):ue("",!0)])}}});export{to as default}; diff --git a/public/admin/assets/index.79fc3071.js b/public/admin/assets/index.79fc3071.js new file mode 100644 index 000000000..10977663c --- /dev/null +++ b/public/admin/assets/index.79fc3071.js @@ -0,0 +1 @@ +import{x as c,y as u,I as f}from"./element-plus.4328d892.js";import{_ as y}from"./index.c38e1dd6.js";import{d as i,r as x,o as m,c as a,U as o,L as p,u as b,k as v,T as g,a7 as E}from"./@vue.51d7f2d8.js";import{d as k}from"./index.ed71ac09.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./index.f2c7f81b.js";import"./index.b940d6e3.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.9c616a0c.js";import"./index.vue_vue_type_script_setup_true_lang.dc835bba.js";import"./usePaging.2ad8e1e6.js";import"./vue3-video-play.b911321b.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const C={class:"material-index"},T=i({name:"material"}),V=i({...T,setup(z){const n=[{type:"image",name:"\u56FE\u7247"},{type:"video",name:"\u89C6\u9891"}],e=x("image");return(h,r)=>{const s=y,_=c,l=u,d=f;return m(),a("div",C,[o(d,{class:"!border-none",shadow:"never"},{default:p(()=>[o(l,{modelValue:b(e),"onUpdate:modelValue":r[0]||(r[0]=t=>v(e)?e.value=t:null)},{default:p(()=>[(m(),a(g,null,E(n,t=>o(_,{label:t.name,name:t.type,index:t.type,key:t.type,lazy:""},{default:p(()=>[o(s,{type:t.type,mode:"page","file-size":"120px",limit:-1,"page-size":20},null,8,["type"])]),_:2},1032,["label","name","index"])),64))]),_:1},8,["modelValue"])]),_:1})])}}});const xt=k(V,[["__scopeId","data-v-d051c36b"]]);export{xt as default}; diff --git a/public/admin/assets/index.7a2efcb9.js b/public/admin/assets/index.7a2efcb9.js new file mode 100644 index 000000000..e3e60d452 --- /dev/null +++ b/public/admin/assets/index.7a2efcb9.js @@ -0,0 +1 @@ +import{S as C,I as b,O as g,b as y,w as B,P as D}from"./element-plus.4328d892.js";import{a as k}from"./pay.28eb6ca6.js";import{_ as x}from"./edit.vue_vue_type_script_setup_true_lang.bb74dbfc.js";import{d as A,r as _,s as N,af as R,o as s,c as T,U as t,L as e,a as V,u as d,M as L,K as f,R as $,Q as I,n as P}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.ed71ac09.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./picker.597494a6.js";import"./index.b940d6e3.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.c38e1dd6.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./index.f2c7f81b.js";import"./index.9c616a0c.js";import"./index.vue_vue_type_script_setup_true_lang.dc835bba.js";import"./usePaging.2ad8e1e6.js";import"./vue3-video-play.b911321b.js";import"./vuedraggable.0cb40d3a.js";import"./vue.5de34049.js";import"./sortablejs.ef73fc5c.js";const $t=A({__name:"index",setup(S){const l=_([]),m=N(),p=_(!1),u=async()=>{const{lists:r}=await k();l.value=r},E=async r=>{var o,a;p.value=!0,await P(),(o=m.value)==null||o.open(),(a=m.value)==null||a.getDetail(r)};return u(),(r,o)=>{const a=C,c=b,i=g,w=y,F=B,h=D,v=R("perms");return s(),T("div",null,[t(c,{class:"!border-none",shadow:"never"},{default:e(()=>[t(a,{type:"warning",title:"\u6E29\u99A8\u63D0\u793A\uFF1A\u8BBE\u7F6E\u7CFB\u7EDF\u652F\u6301\u7684\u652F\u4ED8\u65B9\u5F0F",closable:!1,"show-icon":""})]),_:1}),t(c,{shadow:"never",class:"mt-4 !border-none"},{default:e(()=>[V("div",null,[t(h,{data:d(l)},{default:e(()=>[t(i,{prop:"pay_way_name",label:"\u652F\u4ED8\u65B9\u5F0F","min-width":"150"}),t(i,{prop:"name",label:"\u663E\u793A\u540D\u79F0","min-width":"150"}),t(i,{label:"\u56FE\u6807","min-width":"150"},{default:e(({row:n})=>[t(w,{src:n.icon,alt:"\u56FE\u6807",style:{width:"34px",height:"34px"}},null,8,["src"])]),_:1}),t(i,{prop:"sort",label:"\u6392\u5E8F","min-width":"150"}),t(i,{label:"\u64CD\u4F5C","min-width":"80",fixed:"right"},{default:e(({row:n})=>[L((s(),f(F,{link:"",type:"primary",onClick:K=>E(n)},{default:e(()=>[$(" \u914D\u7F6E ")]),_:2},1032,["onClick"])),[[v,["setting.pay.pay_config/setConfig"]]])]),_:1})]),_:1},8,["data"])])]),_:1}),d(p)?(s(),f(x,{key:0,ref_key:"editRef",ref:m,onSuccess:u,onClose:o[0]||(o[0]=n=>p.value=!1)},null,512)):I("",!0)])}}});export{$t as default}; diff --git a/public/admin/assets/index.7b42a399.js b/public/admin/assets/index.7b42a399.js new file mode 100644 index 000000000..3ad21feaf --- /dev/null +++ b/public/admin/assets/index.7b42a399.js @@ -0,0 +1 @@ +import{B as z,C as L,w as P,D as R,I as U,O as I,P as N,Q as S}from"./element-plus.4328d892.js";import{_ as $}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{u as T}from"./usePaging.2ad8e1e6.js";import{u as Q}from"./useDictOptions.a45fc8ac.js";import{_ as j,a as q}from"./edit.vue_vue_type_script_setup_true_name_companyFormEdit_lang.0f448649.js";import"./lodash.08438971.js";import"./index.37f7aea6.js";import{d as F,s as K,r as w,$ as M,o as i,c as O,U as o,L as a,u as e,R as E,M as G,K as C,a as b,k as H,Q as J}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.5759a1a6.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const W={class:"mt-4"},X={class:"flex mt-4 justify-end"},Y=F({name:"companyFormLists"}),Qo=F({...Y,setup(Z){const h=K(),d=w(!1),l=M({company_name:"",organization_code:"",address:"",master_name:"",type:"",master_email:"",notes:""}),v=w([]),g=c=>{v.value=c.map(({id:t})=>t)},{dictData:D}=Q(""),{pager:s,getLists:p,resetParams:V,resetPage:x}=T({fetchFun:q,params:l});return p(),(c,t)=>{const u=z,m=L,_=P,y=R,f=U,r=I,B=N,k=$,A=S;return i(),O("div",null,[o(f,{class:"!border-none mb-4",shadow:"never"},{default:a(()=>[o(y,{class:"mb-[-16px]",model:e(l),inline:""},{default:a(()=>[o(m,{label:"\u5546\u6237\u540D\u79F0",prop:"company_name"},{default:a(()=>[o(u,{class:"w-[280px]",modelValue:e(l).company_name,"onUpdate:modelValue":t[0]||(t[0]=n=>e(l).company_name=n),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u5546\u6237\u540D\u79F0"},null,8,["modelValue"])]),_:1}),o(m,{label:"\u793E\u4F1A\u4EE3\u7801",prop:"organization_code"},{default:a(()=>[o(u,{class:"w-[280px]",modelValue:e(l).organization_code,"onUpdate:modelValue":t[1]||(t[1]=n=>e(l).organization_code=n),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u793E\u4F1A\u4EE3\u7801"},null,8,["modelValue"])]),_:1}),o(m,{label:"\u6CD5\u4EBA\u540D\u79F0",prop:"master_name"},{default:a(()=>[o(u,{class:"w-[280px]",modelValue:e(l).master_name,"onUpdate:modelValue":t[2]||(t[2]=n=>e(l).master_name=n),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u6CD5\u4EBA\u540D\u79F0"},null,8,["modelValue"])]),_:1}),o(m,null,{default:a(()=>[o(_,{type:"primary",onClick:e(x)},{default:a(()=>[E("\u67E5\u8BE2")]),_:1},8,["onClick"]),o(_,{onClick:e(V)},{default:a(()=>[E("\u91CD\u7F6E")]),_:1},8,["onClick"])]),_:1})]),_:1},8,["model"])]),_:1}),G((i(),C(f,{class:"!border-none",shadow:"never"},{default:a(()=>[b("div",W,[o(B,{data:e(s).lists,onSelectionChange:g},{default:a(()=>[o(r,{label:"ID",prop:"id",width:"150px","show-overflow-tooltip":""}),o(r,{label:"\u5546\u6237\u540D\u79F0",width:"330px",prop:"company_name","show-overflow-tooltip":""}),o(r,{label:"\u793E\u4F1A\u4EE3\u7801",prop:"organization_code",width:"250px","show-overflow-tooltip":""}),o(r,{label:"\u8BE6\u7EC6\u5730\u5740",width:"350px",prop:"address","show-overflow-tooltip":""}),o(r,{label:"\u6CD5\u4EBA\u540D\u79F0",width:"120px",prop:"master_name","show-overflow-tooltip":""}),o(r,{label:"\u5907\u6CE8",prop:"notes","show-overflow-tooltip":""})]),_:1},8,["data"])]),b("div",X,[o(k,{modelValue:e(s),"onUpdate:modelValue":t[3]||(t[3]=n=>H(s)?s.value=n:null),onChange:e(p)},null,8,["modelValue","onChange"])])]),_:1})),[[A,e(s).loading]]),e(d)?(i(),C(j,{key:0,ref_key:"editRef",ref:h,"dict-data":e(D),onSuccess:e(p),onClose:t[4]||(t[4]=n=>d.value=!1)},null,8,["dict-data","onSuccess"])):J("",!0)])}}});export{Qo as default}; diff --git a/public/admin/assets/index.7d715ecd.js b/public/admin/assets/index.7d715ecd.js new file mode 100644 index 000000000..67817e3c5 --- /dev/null +++ b/public/admin/assets/index.7d715ecd.js @@ -0,0 +1 @@ +import{a6 as w,O as y,w as C,P as B,I as x,Q as D}from"./element-plus.4328d892.js";import{d as F}from"./message.8c449686.js";import{_ as L}from"./edit.vue_vue_type_script_setup_true_lang.672caa62.js";import{d as f,s as R,$ as T,af as $,o,c as N,M as d,u,K as a,L as t,U as i,R as l}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.37f7aea6.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.5759a1a6.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";const S=f({name:"shortLetter"}),kt=f({...S,setup(V){const p=R(),e=T({loading:!1,lists:[]}),c=async()=>{try{e.loading=!0,e.lists=await F(),e.loading=!1}catch{e.loading=!1}},g=r=>{var s;(s=p.value)==null||s.open(r)};return c(),(r,s)=>{const n=y,_=w,h=C,E=B,v=x,b=$("perms"),k=D;return o(),N("div",null,[d((o(),a(v,{class:"!border-none",shadow:"never"},{default:t(()=>[i(E,{size:"large",data:u(e).lists},{default:t(()=>[i(n,{label:"\u77ED\u4FE1\u6E20\u9053",prop:"name","min-width":"120"}),i(n,{label:"\u72B6\u6001","min-width":"120"},{default:t(({row:m})=>[m.status==1?(o(),a(_,{key:0},{default:t(()=>[l("\u5F00\u542F")]),_:1})):(o(),a(_,{key:1,type:"danger"},{default:t(()=>[l("\u5173\u95ED")]),_:1}))]),_:1}),i(n,{label:"\u64CD\u4F5C","min-width":"120",fixed:"right"},{default:t(({row:m})=>[d((o(),a(h,{type:"primary",link:"",onClick:z=>g(m.type)},{default:t(()=>[l(" \u8BBE\u7F6E ")]),_:2},1032,["onClick"])),[[b,["notice.sms_config/setConfig"]]])]),_:1})]),_:1},8,["data"])]),_:1})),[[k,u(e).loading]]),i(L,{ref_key:"editRef",ref:p,onSuccess:c},null,512)])}}});export{kt as default}; diff --git a/public/admin/assets/index.8054b177.js b/public/admin/assets/index.8054b177.js new file mode 100644 index 000000000..d2ebc4326 --- /dev/null +++ b/public/admin/assets/index.8054b177.js @@ -0,0 +1 @@ +import{B as ne,C as se,M as re,N as ie,w as pe,D as ce,I as de,O as _e,P as me,L as fe,Q as Ee}from"./element-plus.4328d892.js";import{_ as ye}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{u as Ce}from"./usePaging.2ad8e1e6.js";import{u as Be}from"./useDictOptions.a45fc8ac.js";import{e as ve,f as he,g as Fe,h as be,i as ke}from"./shop_contract.07d6415c.js";import{d as N,$ as A,s as R,r as v,a4 as De,af as ge,o as l,c as _,U as t,L as o,u as a,T as U,a7 as we,K as r,R as i,M as m,a as g,S as Ve,Q as $,k as L,bf as Ae,be as xe}from"./@vue.51d7f2d8.js";import"./lodash.08438971.js";import{d as Se}from"./index.37f7aea6.js";import{_ as Pe}from"./edit.vue_vue_type_script_setup_true_name_shopContractEdit_lang.03c8c155.js";import{P as Ie}from"./index.5759a1a6.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";const Re=F=>(Ae("data-v-b55f7b58"),F=F(),xe(),F),Ue={class:"mt-4"},$e={key:0,style:{color:"#67c23a"}},Le={key:1,style:{color:"#fe0000"}},Ne={class:"flex mt-4 justify-end"},qe=Re(()=>g("h1",null,"\u91CD\u8981\u63D0\u9192",-1)),Me={key:0,class:"content"},Te={key:1,class:"content"},ze={class:"btn_menu"},Oe=N({name:"shopContractLists"}),je=N({...Oe,setup(F){const q=A([{id:"1",name:"\u5DF2\u7B7E\u7EA6"},{id:"0",name:"\u672A\u7B7E\u7EA6"}]),M=R(),x=v(!1),f=v({id:"",notes:""}),T=A({notes:[{required:!0,message:"\u8BF7\u8F93\u5165\u5907\u6CE8",trigger:["blur"]}]}),w=R(),z=c=>{Object.keys(f.value).forEach(n=>{f.value[n]=c[n]}),w.value.open()},O=async()=>{await ve({...f.value}),E(),w.value.close()},p=A({contract_no:"",party_a:"",party_b:"",check_status:"",status:""}),j=v([]),Q=c=>{j.value=c.map(({id:u})=>u)},{dictData:K}=Be(""),{pager:h,getLists:E,resetParams:Z,resetPage:G}=Ce({fetchFun:ke,params:p}),H=c=>{he({id:c.id}).then(u=>{J(u.url,"")})},J=(c,u)=>{let n=document.createElement("a");n.href=c,n.download=u,document.body.appendChild(n),n.click(),document.body.removeChild(n)},y=v(!1),b=v(!1),k=v(""),W=c=>{y.value=!0,b.value=!0,k.value=c.party_b},D=()=>{y.value=!1,b.value=!1},X=async()=>{await Fe({id:k.value}),E(),D()},Y=async()=>{await be({id:k.value}),E(),D()};return E(),(c,u)=>{const n=ne,C=se,ee=re,te=ie,s=pe,S=ce,P=de,d=_e,I=De("router-link"),oe=me,ae=ye,ue=fe,B=ge("perms"),le=Ee;return l(),_("div",null,[t(P,{class:"!border-none mb-4",shadow:"never"},{default:o(()=>[t(S,{class:"mb-[-16px]",model:a(p),inline:""},{default:o(()=>[t(C,{label:"\u5408\u540C\u7F16\u53F7",prop:"contract_no"},{default:o(()=>[t(n,{class:"w-[280px]",modelValue:a(p).contract_no,"onUpdate:modelValue":u[0]||(u[0]=e=>a(p).contract_no=e),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u5408\u540C\u7F16\u53F7"},null,8,["modelValue"])]),_:1}),t(C,{label:"\u7532\u65B9",prop:"party_a"},{default:o(()=>[t(n,{class:"w-[280px]",modelValue:a(p).party_a,"onUpdate:modelValue":u[1]||(u[1]=e=>a(p).party_a=e),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u7532\u65B9"},null,8,["modelValue"])]),_:1}),t(C,{label:"\u4E59\u65B9",prop:"party_b"},{default:o(()=>[t(n,{class:"w-[280px]",modelValue:a(p).party_b,"onUpdate:modelValue":u[2]||(u[2]=e=>a(p).party_b=e),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u4E59\u65B9"},null,8,["modelValue"])]),_:1}),t(C,{label:"\u7B7E\u7EA6\u72B6\u6001",prop:"status"},{default:o(()=>[t(te,{modelValue:a(p).status,"onUpdate:modelValue":u[3]||(u[3]=e=>a(p).status=e),clearable:"",placeholder:"\u8BF7\u9009\u62E9\u72B6\u6001"},{default:o(()=>[(l(!0),_(U,null,we(a(q),e=>(l(),r(ee,{key:e.label,value:e.id,label:e.name},null,8,["value","label"]))),128))]),_:1},8,["modelValue"])]),_:1}),t(C,null,{default:o(()=>[t(s,{type:"primary",onClick:a(G)},{default:o(()=>[i("\u67E5\u8BE2")]),_:1},8,["onClick"]),t(s,{onClick:a(Z)},{default:o(()=>[i("\u91CD\u7F6E")]),_:1},8,["onClick"])]),_:1})]),_:1},8,["model"])]),_:1}),m((l(),r(P,{class:"!border-none",shadow:"never"},{default:o(()=>[g("div",Ue,[t(oe,{data:a(h).lists,onSelectionChange:Q},{default:o(()=>[t(d,{label:"id",width:"100",prop:"id","show-overflow-tooltip":""}),t(d,{label:"\u5408\u540C\u7F16\u53F7",prop:"contract_no","show-overflow-tooltip":""}),t(d,{label:"\u7532\u65B9",prop:"party_a_name","show-overflow-tooltip":""}),t(d,{label:"\u4E59\u65B9",prop:"party_b_name","show-overflow-tooltip":""}),t(d,{label:"\u7B7E\u7EA6\u72B6\u6001",prop:"status","show-overflow-tooltip":""},{default:o(({row:e})=>[e.status?(l(),_("span",$e,"\u5DF2\u7B7E\u7EA6")):(l(),_("span",Le,"\u672A\u7B7E\u7EA6"))]),_:1}),t(d,{label:"\u5907\u6CE8",prop:"notes","show-overflow-tooltip":""}),t(d,{label:"\u64CD\u4F5C",width:"280",fixed:"right"},{default:o(({row:e})=>[m((l(),r(s,{type:"primary",link:""},{default:o(()=>[t(I,{to:{path:"/contract/shop_contract_detail",query:{id:e.id}}},{default:o(()=>[i(Ve(e.status?"\u8BE6\u60C5":"\u5BA1\u6838"),1)]),_:2},1032,["to"])]),_:2},1024)),[[B,["shop_contract/details"]]]),m((l(),r(s,{type:"primary",link:"",onClick:V=>z(e)},{default:o(()=>[i(" \u8BBE\u7F6E\u5907\u6CE8 ")]),_:2},1032,["onClick"])),[[B,["shop_contract/details"]]]),e.status==0?(l(),_(U,{key:0},[e.check_status==1?m((l(),r(s,{key:0,type:"warning",link:""},{default:o(()=>[t(I,{to:{path:"/contract/shop_contract_detail",query:{id:e.id}}},{default:o(()=>[i("\u5F85\u5BA1\u6838")]),_:2},1032,["to"])]),_:2},1024)),[[B,["shop_contract/details"]]]):e.check_status==2?m((l(),r(s,{key:1,type:"primary",link:"",onClick:V=>W(e)},{default:o(()=>[i("\u53D1\u9001\u5408\u540C")]),_:2},1032,["onClick"])),[[B,["shop_contract/contract_send"]]]):e.check_status==3?m((l(),r(s,{key:2,type:"primary",link:"",onClick:V=>(y.value=!0,k.value=e.party_b)},{default:o(()=>[i("\u53D1\u9001\u77ED\u4FE1")]),_:2},1032,["onClick"])),[[B,["shop_contract/contract_send_again"]]]):$("",!0)],64)):m((l(),r(s,{key:1,type:"primary",link:"",onClick:V=>H(e)},{default:o(()=>[i(" \u4E0B\u8F7D\u8BC1\u636E\u5305 ")]),_:2},1032,["onClick"])),[[B,["shop_contract/evidence"]]])]),_:1})]),_:1},8,["data"])]),g("div",Ne,[t(ae,{modelValue:a(h),"onUpdate:modelValue":u[4]||(u[4]=e=>L(h)?h.value=e:null),onChange:a(E)},null,8,["modelValue","onChange"])])]),_:1})),[[le,a(h).loading]]),a(x)?(l(),r(Pe,{key:0,ref_key:"editRef",ref:M,"dict-data":a(K),onSuccess:a(E),onClose:u[5]||(u[5]=e=>x.value=!1)},null,8,["dict-data","onSuccess"])):$("",!0),t(ue,{modelValue:a(y),"onUpdate:modelValue":u[6]||(u[6]=e=>L(y)?y.value=e:null),onClose:D},{default:o(()=>[qe,a(b)?(l(),_("div",Me," \u8BF7\u786E\u8BA4\u4FE1\u606F\u662F\u5426\u6709\u8BEF,\u53D1\u9001\u5408\u540C,\u8BF7\u786E\u8BA4\u4FE1\u606F\u662F\u5426\u6709\u8BEF,\u53D1\u9001\u7535\u5B50\u5408\u540C\u540E\u77ED\u65F6\u95F4\u5185\u5C06\u4E0D\u53EF\u518D\u6B21\u53D1\u9001. ")):(l(),_("div",Te," \u786E\u8BA4\u7B7E\u7EA6\u77ED\u4FE1\u5C06\u572860\u79D2\u540E\u53D1\u9001,\u8BF7\u6CE8\u610F\u67E5\u6536,\u5E76\u70B9\u51FB\u77ED\u4FE1\u94FE\u63A5\u8FDB\u884C\u7EBF\u4E0A\u5408\u540C\u7B7E\u7EA6 ")),g("p",ze,[a(b)?(l(),r(s,{key:0,type:"primary",size:"large",onClick:X},{default:o(()=>[i("\u786E\u8BA4")]),_:1})):(l(),r(s,{key:1,type:"primary",size:"large",onClick:Y},{default:o(()=>[i("\u786E\u8BA4")]),_:1})),t(s,{type:"info",size:"large",onClick:D},{default:o(()=>[i("\u8FD4\u56DE")]),_:1})])]),_:1},8,["modelValue"]),t(Ie,{ref_key:"notesRef",ref:w,title:"\u8BBE\u7F6E\u5907\u6CE8",async:!0,width:"550px",onConfirm:O},{default:o(()=>[t(S,{model:a(f),rules:a(T)},{default:o(()=>[t(C,{label:"\u5907\u6CE8",prop:"notes"},{default:o(()=>[t(n,{modelValue:a(f).notes,"onUpdate:modelValue":u[7]||(u[7]=e=>a(f).notes=e),type:"textarea"},null,8,["modelValue"])]),_:1})]),_:1},8,["model","rules"])]),_:1},512)])}}});const Pt=Se(je,[["__scopeId","data-v-b55f7b58"]]);export{Pt as default}; diff --git a/public/admin/assets/index.82192a13.js b/public/admin/assets/index.82192a13.js new file mode 100644 index 000000000..a30a7d3f2 --- /dev/null +++ b/public/admin/assets/index.82192a13.js @@ -0,0 +1 @@ +import{B as Y,C as Z,M as ee,N as te,w as le,D as ae,I as oe,O as ue,P as ne,Q as se}from"./element-plus.4328d892.js";import{_ as ie}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{f as pe,b as de,d as re}from"./index.aa9bb752.js";import{u as me}from"./vue-router.9f65afb1.js";import{u as ce}from"./usePaging.2ad8e1e6.js";import{u as _e}from"./useDictOptions.a61fcf9f.js";import{f as fe,a as be}from"./map.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.9d7f531d.js";import{d as P,s as Fe,r as w,$ as L,af as ye,o as n,c as E,U as l,L as o,u as e,T as R,a7 as q,K as p,R as f,M as v,a as C,S as ve,k as Be,Q as we,n as I}from"./@vue.51d7f2d8.js";import"./lodash.08438971.js";import{_ as ke}from"./edit.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.656c3f7f.js";import{_ as Ee}from"./edit_admin.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.46594d68.js";import{d as Ce}from"./dict.927f1fc7.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./axios.105476b3.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.fa872673.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./dialog_index_personnel.vue_vue_type_script_setup_true_name_companyLists_lang.ddb96626.js";import"./role.41d5883e.js";const De={class:"mt-4"},Ve={class:"flex mt-4 justify-end"},he=P({name:"taskTemplateLists"}),xe=P({...he,setup(ge){var g,A,T;const m=Fe(),D=w([]),c=w(!1),b=me(),u=L({id:"",company_id:"",title:"",admin_id:"",money:"",type:"",status:"",content:""}),V=w(10);(g=b.query)!=null&&g.id&&(u.id=b.query.id),(A=b.query)!=null&&A.company_id&&(u.company_id=b.query.company_id),((T=b.query)==null?void 0:T.company_type)==41&&(V.value=15);const N=L([{id:1,name:"\u663E\u793A"},{id:2,name:"\u9690\u85CF"}]),k=w([]),M=s=>{k.value=s.map(({id:a})=>a)},{dictData:h}=_e(""),{pager:F,getLists:y,resetParams:O,resetPage:Q}=ce({fetchFun:be,params:u}),j=async()=>{var s,a;c.value=!0,await I(),(s=m.value)==null||s.open("add"),(a=m.value)==null||a.setFormData({company_id:u.company_id})},K=async s=>{var a,d;c.value=!0,await I(),(a=m.value)==null||a.open("edit"),(d=m.value)==null||d.setFormData(s)},x=async s=>{await pe.confirm("\u786E\u5B9A\u8981\u5220\u9664\uFF1F"),await fe({id:s}),y()};return Ce({type_id:10}).then(s=>{D.value=s.lists}),y(),(s,a)=>{const d=Y,r=Z,$=ee,S=te,_=le,z=ae,U=oe,G=de,i=ue,H=ne,J=ie,B=ye("perms"),W=se;return n(),E("div",null,[l(U,{class:"!border-none mb-4",shadow:"never"},{default:o(()=>[l(z,{class:"mb-[-16px] formtabel",model:e(u),inline:""},{default:o(()=>[l(r,{"label-width":"100px",label:"\u4EFB\u52A1\u540D\u79F0",prop:"title"},{default:o(()=>[l(d,{class:"w-[280px]",modelValue:e(u).title,"onUpdate:modelValue":a[0]||(a[0]=t=>e(u).title=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u4EFB\u52A1\u540D\u79F0"},null,8,["modelValue"])]),_:1}),l(r,{"label-width":"100px",label:"\u521B\u5EFA\u4EBA",prop:"admin_id"},{default:o(()=>[l(d,{class:"w-[280px]",modelValue:e(u).admin_id,"onUpdate:modelValue":a[1]||(a[1]=t=>e(u).admin_id=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u521B\u5EFA\u4EBA"},null,8,["modelValue"])]),_:1}),l(r,{"label-width":"100px",label:"\u91D1\u989D",prop:"money"},{default:o(()=>[l(d,{class:"w-[280px]",modelValue:e(u).money,"onUpdate:modelValue":a[2]||(a[2]=t=>e(u).money=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u91D1\u989D"},null,8,["modelValue"])]),_:1}),l(r,{"label-width":"100px",label:"\u4EFB\u52A1\u7C7B\u578B",prop:"type"},{default:o(()=>[l(S,{modelValue:e(u).type,"onUpdate:modelValue":a[3]||(a[3]=t=>e(u).type=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u4EFB\u52A1\u7C7B\u578B"},{default:o(()=>[(n(!0),E(R,null,q(e(D),t=>(n(),p($,{key:t.label,value:t.id,label:t.name},null,8,["value","label"]))),128))]),_:1},8,["modelValue"])]),_:1}),l(r,{"label-width":"100px",label:"\u72B6\u6001",prop:"status"},{default:o(()=>[l(S,{modelValue:e(u).status,"onUpdate:modelValue":a[4]||(a[4]=t=>e(u).status=t),clearable:"",placeholder:"\u8BF7\u9009\u62E9\u72B6\u6001"},{default:o(()=>[(n(!0),E(R,null,q(e(N),t=>(n(),p($,{key:t.label,value:t.id,label:t.name},null,8,["value","label"]))),128))]),_:1},8,["modelValue"])]),_:1}),l(r,{"label-width":"100px",label:"\u4EFB\u52A1\u63CF\u8FF0",prop:"content"},{default:o(()=>[l(d,{class:"w-[280px]",modelValue:e(u).content,"onUpdate:modelValue":a[5]||(a[5]=t=>e(u).content=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u4EFB\u52A1\u63CF\u8FF0"},null,8,["modelValue"])]),_:1}),l(r,{"label-width":"100px",label:""},{default:o(()=>[l(_,{class:"el-btn",type:"primary",onClick:e(Q)},{default:o(()=>[f("\u67E5\u8BE2")]),_:1},8,["onClick"]),l(_,{onClick:e(O)},{default:o(()=>[f("\u91CD\u7F6E")]),_:1},8,["onClick"])]),_:1})]),_:1},8,["model"])]),_:1}),v((n(),p(U,{class:"!border-none",shadow:"never"},{default:o(()=>[v((n(),p(_,{type:"primary",onClick:j},{icon:o(()=>[l(G,{name:"el-icon-Plus"})]),default:o(()=>[f(" \u65B0\u589E ")]),_:1})),[[B,["task_template.task_template/add"]]]),v((n(),p(_,{disabled:!e(k).length,onClick:a[6]||(a[6]=t=>x(e(k)))},{default:o(()=>[f(" \u5220\u9664 ")]),_:1},8,["disabled"])),[[B,["task_template.task_template/delete"]]]),C("div",De,[l(H,{data:e(F).lists,onSelectionChange:M},{default:o(()=>[l(i,{type:"selection",width:"55"}),l(i,{label:"ID",width:"80",prop:"id","show-overflow-tooltip":""}),l(i,{label:"\u4EFB\u52A1\u540D\u79F0",prop:"title","show-overflow-tooltip":""}),l(i,{label:"\u521B\u5EFA\u4EBA",prop:"admin_name","show-overflow-tooltip":""}),l(i,{label:"\u91D1\u989D",prop:"money","show-overflow-tooltip":""}),l(i,{label:"\u4EFB\u52A1\u7C7B\u578B",prop:"type_name","show-overflow-tooltip":""}),l(i,{label:"\u72B6\u6001","show-overflow-tooltip":""},{default:o(({row:t})=>[C("span",null,ve(t.status==1?"\u663E\u793A":"\u9690\u85CF"),1)]),_:1}),l(i,{label:"\u4EFB\u52A1\u63CF\u8FF0",prop:"content","show-overflow-tooltip":""}),l(i,{label:"\u64CD\u4F5C",width:"120",fixed:"right"},{default:o(({row:t})=>[v((n(),p(_,{type:"primary",link:"",onClick:X=>K(t)},{default:o(()=>[f(" \u7F16\u8F91 ")]),_:2},1032,["onClick"])),[[B,["task_template.task_template/edit"]]]),v((n(),p(_,{type:"danger",link:"",onClick:X=>x(t.id)},{default:o(()=>[f(" \u5220\u9664 ")]),_:2},1032,["onClick"])),[[B,["task_template.task_template/delete"]]])]),_:1})]),_:1},8,["data"])]),C("div",Ve,[l(J,{modelValue:e(F),"onUpdate:modelValue":a[7]||(a[7]=t=>Be(F)?F.value=t:null),onChange:e(y)},null,8,["modelValue","onChange"])])]),_:1})),[[W,e(F).loading]]),e(c)&&e(V)!=15?(n(),p(ke,{key:0,ref_key:"editRef",ref:m,"dict-data":e(h),onSuccess:e(y),onClose:a[8]||(a[8]=t=>c.value=!1)},null,8,["dict-data","onSuccess"])):e(c)?(n(),p(Ee,{key:1,ref_key:"editRef",ref:m,"dict-data":e(h),onSuccess:e(y),onClose:a[9]||(a[9]=t=>c.value=!1)},null,8,["dict-data","onSuccess"])):we("",!0)])}}});const wt=re(xe,[["__scopeId","data-v-aefc32bd"]]);export{wt as default}; diff --git a/public/admin/assets/index.84ab336e.js b/public/admin/assets/index.84ab336e.js new file mode 100644 index 000000000..36376bc43 --- /dev/null +++ b/public/admin/assets/index.84ab336e.js @@ -0,0 +1 @@ +import{w as T,O as P,P as I,I as Q,Q as U}from"./element-plus.4328d892.js";import{_ as j}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{f as z,b as K}from"./index.aa9bb752.js";import{c as M,d as O}from"./role.41d5883e.js";import{u as q}from"./usePaging.2ad8e1e6.js";import{_ as G}from"./edit.vue_vue_type_script_setup_true_lang.164110e7.js";import{_ as H}from"./auth.vue_vue_type_script_setup_true_lang.67e5f714.js";import{d as D,s as F,r as g,af as J,o as a,c as E,U as t,L as i,a as C,M as c,K as u,R as h,u as n,k as W,Q as B,n as y}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.fa872673.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./menu.072eb1d3.js";const X={class:"role-lists"},Y={class:"mt-4"},Z={class:"flex justify-end mt-4"},ee=D({name:"role"}),Me=D({...ee,setup(te){const d=F(),k=F(),_=g(!1),w=g(!1),{pager:m,getLists:p}=q({fetchFun:O}),$=async()=>{var o;_.value=!0,await y(),(o=d.value)==null||o.open("add")},x=async o=>{var e,l;_.value=!0,await y(),(e=d.value)==null||e.open("edit"),(l=d.value)==null||l.setFormData(o)},A=async o=>{var e,l;w.value=!0,await y(),(e=k.value)==null||e.open(),(l=k.value)==null||l.setFormData(o)},R=async o=>{await z.confirm("\u786E\u5B9A\u8981\u5220\u9664\uFF1F"),await M({id:o}),p()};return p(),(o,e)=>{const l=K,f=T,s=P,V=I,L=j,N=Q,v=J("perms"),S=U;return a(),E("div",X,[t(N,{class:"!border-none",shadow:"never"},{default:i(()=>[C("div",null,[c((a(),u(f,{type:"primary",onClick:$},{icon:i(()=>[t(l,{name:"el-icon-Plus"})]),default:i(()=>[h(" \u65B0\u589E ")]),_:1})),[[v,["auth.role/add"]]])]),c((a(),E("div",Y,[C("div",null,[t(V,{data:n(m).lists,size:"large"},{default:i(()=>[t(s,{prop:"id",label:"ID","min-width":"100"}),t(s,{prop:"name",label:"\u540D\u79F0","min-width":"150"}),t(s,{prop:"desc",label:"\u5907\u6CE8","min-width":"150","show-overflow-tooltip":""}),t(s,{prop:"sort",label:"\u6392\u5E8F","min-width":"100"}),t(s,{prop:"num",label:"\u7BA1\u7406\u5458\u4EBA\u6570","min-width":"100"}),t(s,{prop:"create_time",label:"\u521B\u5EFA\u65F6\u95F4","min-width":"180"}),t(s,{label:"\u64CD\u4F5C",width:"200",fixed:"right"},{default:i(({row:r})=>[c((a(),u(f,{link:"",type:"primary",onClick:b=>x(r)},{default:i(()=>[h(" \u7F16\u8F91 ")]),_:2},1032,["onClick"])),[[v,["auth.role/edit"]]]),c((a(),u(f,{link:"",type:"primary",onClick:b=>A(r)},{default:i(()=>[h(" \u5206\u914D\u6743\u9650 ")]),_:2},1032,["onClick"])),[[v,["auth.role/edit"]]]),c((a(),u(f,{link:"",type:"danger",onClick:b=>R(r.id)},{default:i(()=>[h(" \u5220\u9664 ")]),_:2},1032,["onClick"])),[[v,["auth.role/delete"]]])]),_:1})]),_:1},8,["data"])]),C("div",Z,[t(L,{modelValue:n(m),"onUpdate:modelValue":e[0]||(e[0]=r=>W(m)?m.value=r:null),onChange:n(p)},null,8,["modelValue","onChange"])])])),[[S,n(m).loading]])]),_:1}),n(_)?(a(),u(G,{key:0,ref_key:"editRef",ref:d,onSuccess:n(p),onClose:e[1]||(e[1]=r=>_.value=!1)},null,8,["onSuccess"])):B("",!0),n(w)?(a(),u(H,{key:1,ref_key:"authRef",ref:k,onSuccess:n(p),onClose:e[2]||(e[2]=r=>w.value=!1)},null,8,["onSuccess"])):B("",!0)])}}});export{Me as default}; diff --git a/public/admin/assets/index.85a36c0c.js b/public/admin/assets/index.85a36c0c.js new file mode 100644 index 000000000..2538d228d --- /dev/null +++ b/public/admin/assets/index.85a36c0c.js @@ -0,0 +1 @@ +import{_ as s}from"./attr.vue_vue_type_script_setup_true_lang.5697c78f.js";import{_}from"./content.vue_vue_type_script_setup_true_lang.d21cb19e.js";import{_ as r}from"./attr.vue_vue_type_script_setup_true_lang.fdded599.js";import a from"./content.206aab68.js";import{_ as l}from"./attr.vue_vue_type_script_setup_true_lang.f3b5265b.js";import u from"./content.b2cebb4d.js";import{_ as c}from"./attr.vue_vue_type_script_setup_true_lang.aeb5c0d0.js";import{_ as m}from"./content.vue_vue_type_script_setup_true_lang.08763d7f.js";import{_ as d}from"./attr.vue_vue_type_script_setup_true_lang.d01577b5.js";import f from"./content.95faa73b.js";import{_ as p}from"./attr.vue_vue_type_script_setup_true_lang.0fc534ba.js";import b from"./content.84ae04ad.js";import{_ as g}from"./attr.vue_vue_type_script_setup_true_lang.3d3efd85.js";import{_ as $}from"./content.vue_vue_type_script_setup_true_lang.28911d3e.js";import{_ as y}from"./attr.vue_vue_type_script_setup_true_lang.00e826d0.js";import v from"./content.92456155.js";const j=()=>({title:"\u9996\u9875\u8F6E\u64AD\u56FE",name:"banner",content:{enabled:1,data:[{image:"",name:"",link:{}}]},styles:{}}),x={attr:s,content:_,options:j},O=Object.freeze(Object.defineProperty({__proto__:null,default:x},Symbol.toStringTag,{value:"Module"})),F=()=>({title:"\u5BA2\u670D\u8BBE\u7F6E",name:"customer-service",content:{title:"\u6DFB\u52A0\u5BA2\u670D\u4E8C\u7EF4\u7801",time:"",mobile:"",qrcode:""},styles:{}}),S={attr:r,content:a,options:F},A=Object.freeze(Object.defineProperty({__proto__:null,default:S},Symbol.toStringTag,{value:"Module"})),E=()=>({title:"\u6211\u7684\u670D\u52A1",name:"my-service",content:{style:1,title:"\u6211\u7684\u670D\u52A1",data:[{image:"",name:"\u5BFC\u822A\u540D\u79F0",link:{}}]},styles:{}}),D={attr:l,content:u,options:E},B=Object.freeze(Object.defineProperty({__proto__:null,default:D},Symbol.toStringTag,{value:"Module"})),z=()=>({title:"\u5BFC\u822A\u83DC\u5355",name:"nav",content:{enabled:1,data:[{image:"",name:"\u5BFC\u822A\u540D\u79F0",link:{}}]},styles:{}}),M={attr:c,content:m,options:z},P=Object.freeze(Object.defineProperty({__proto__:null,default:M},Symbol.toStringTag,{value:"Module"})),T=()=>({title:"\u8D44\u8BAF",name:"news",disabled:1,content:{},styles:{}}),w={attr:d,content:f,options:T},C=Object.freeze(Object.defineProperty({__proto__:null,default:w},Symbol.toStringTag,{value:"Module"})),k=()=>({title:"\u641C\u7D22",name:"search",disabled:1,content:{},styles:{}}),h={attr:p,content:b,options:k},q=Object.freeze(Object.defineProperty({__proto__:null,default:h},Symbol.toStringTag,{value:"Module"})),N=()=>({title:"\u4E2A\u4EBA\u4E2D\u5FC3\u5E7F\u544A\u56FE",name:"user-banner",content:{enabled:1,data:[{image:"",name:"",link:{}}]},styles:{}}),W={attr:g,content:$,options:N},G=Object.freeze(Object.defineProperty({__proto__:null,default:W},Symbol.toStringTag,{value:"Module"})),H=()=>({title:"\u7528\u6237\u4FE1\u606F",name:"user-info",disabled:1,content:{},styles:{}}),I={attr:y,content:v,options:H},J=Object.freeze(Object.defineProperty({__proto__:null,default:I},Symbol.toStringTag,{value:"Module"})),t=Object.assign({"./banner/index.ts":O,"./customer-service/index.ts":A,"./my-service/index.ts":B,"./nav/index.ts":P,"./news/index.ts":C,"./search/index.ts":q,"./user-banner/index.ts":G,"./user-info/index.ts":J});console.log(t);const n={};Object.keys(t).forEach(e=>{var o;const i=e.replace(/^\.\/([\w-]+).*/gi,"$1");n[i]=(o=t[e])==null?void 0:o.default});const rt=n;export{rt as w}; diff --git a/public/admin/assets/index.894e452b.js b/public/admin/assets/index.894e452b.js new file mode 100644 index 000000000..7ffe63bd9 --- /dev/null +++ b/public/admin/assets/index.894e452b.js @@ -0,0 +1 @@ +import{y,_ as g}from"./index.aa9bb752.js";import{w as B,I as b}from"./element-plus.4328d892.js";import{C as E}from"./vue-echarts.91588d37.js";import{d as f,$ as C,j as A,a4 as k,o as l,c as u,a as t,U as a,L as i,S as o,u as e,R as h,T as v,a7 as x,O as D}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./lodash.08438971.js";import"./@amap.8a62addd.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./@element-plus.a074d1f6.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./resize-detector.4e96b72b.js";const O={class:"workbench"},z={class:"lg:flex"},N=t("span",{class:"card-title"},"\u7248\u672C\u4FE1\u606F",-1),S={class:"flex leading-9"},V=t("div",{class:"w-20"},"\u5F53\u524D\u7248\u672C",-1),L={class:"flex leading-9"},T=t("div",{class:"w-20"},"\u57FA\u4E8E\u6846\u67B6",-1),j={class:"flex leading-9"},G=t("div",{class:"w-20"},"\u83B7\u53D6\u6E20\u9053",-1),I=["href"],M=["href"],R=t("span",{class:"card-title"},"\u4ECA\u65E5\u6570\u636E",-1),U={class:"text-tx-secondary text-xs ml-4"},W={class:"flex flex-wrap"},$={class:"w-1/2 md:w-1/4"},q=t("div",{class:"leading-10"},"\u8BBF\u95EE\u91CF(\u4EBA)",-1),H={class:"text-6xl"},J={class:"text-tx-secondary text-xs"},K={class:"w-1/2 md:w-1/4"},P=t("div",{class:"leading-10"},"\u9500\u552E\u989D(\u5143)",-1),Q={class:"text-6xl"},X={class:"text-tx-secondary text-xs"},Y={class:"w-1/2 md:w-1/4"},Z=t("div",{class:"leading-10"},"\u8BA2\u5355\u91CF(\u7B14)",-1),tt={class:"text-6xl"},st={class:"text-tx-secondary text-xs"},et={class:"w-1/2 md:w-1/4"},ot=t("div",{class:"leading-10"},"\u65B0\u589E\u7528\u6237",-1),it={class:"text-6xl"},at={class:"text-tx-secondary text-xs"},nt={class:"function mb-4"},rt=t("span",null,"\u5E38\u7528\u529F\u80FD",-1),dt={class:"flex flex-wrap"},lt={class:"mt-2"},ut={class:"md:flex"},ct=t("span",null,"\u8BBF\u95EE\u91CF\u8D8B\u52BF\u56FE",-1),_t=t("span",null,"\u670D\u52A1\u652F\u6301",-1),pt={class:"ml-2"},mt={class:"text-tx-regular text-xs mt-4"},ht=f({name:"workbench"}),Zt=f({...ht,setup(vt){const s=C({version:{version:"",website:"",based:"",channel:{gitee:"",website:""}},support:[],today:{},menu:[],visitor:[],article:[],visitorOption:{xAxis:{type:"category",data:[0]},yAxis:{type:"value"},legend:{data:["\u8BBF\u95EE\u91CF"]},itemStyle:{color:"red"},tooltip:{trigger:"axis"},series:[{name:"\u8BBF\u95EE\u91CF",data:[0],type:"line",smooth:!0}]}}),F=()=>{y().then(n=>{s.version=n.version,s.today=n.today,s.menu=n.menu,s.visitor=n.visitor,s.support=n.support,s.visitorOption.xAxis.data=[],s.visitorOption.series[0].data=[],n.visitor.date.reverse().forEach(c=>{s.visitorOption.xAxis.data.push(c)}),n.visitor.list[0].data.forEach(c=>{s.visitorOption.series[0].data.push(c)})}).catch(n=>{console.log("err",n)})};return A(()=>{F()}),(n,c)=>{const _=B,d=b,p=g,w=k("router-link");return l(),u("div",O,[t("div",z,[a(d,{class:"!border-none mb-4 lg:mr-4 lg:w-[350px]",shadow:"never"},{header:i(()=>[N]),default:i(()=>[t("div",null,[t("div",S,[V,t("span",null,o(e(s).version.version),1)]),t("div",L,[T,t("span",null,o(e(s).version.based),1)]),t("div",j,[G,t("div",null,[t("a",{href:e(s).version.channel.website,target:"_blank"},[a(_,{type:"success",size:"small"},{default:i(()=>[h("\u5B98\u7F51")]),_:1})],8,I),t("a",{class:"ml-3",href:e(s).version.channel.gitee,target:"_blank"},[a(_,{type:"danger",size:"small"},{default:i(()=>[h("Gitee")]),_:1})],8,M)])])])]),_:1}),a(d,{class:"!border-none mb-4 flex-1",shadow:"never"},{header:i(()=>[t("div",null,[R,t("span",U," \u66F4\u65B0\u65F6\u95F4\uFF1A"+o(e(s).today.time),1)])]),default:i(()=>[t("div",W,[t("div",$,[q,t("div",H,o(e(s).today.today_visitor),1),t("div",J," \u603B\u8BBF\u95EE\u91CF\uFF1A"+o(e(s).today.total_visitor),1)]),t("div",K,[P,t("div",Q,o(e(s).today.today_sales),1),t("div",X," \u603B\u9500\u552E\u989D\uFF1A"+o(e(s).today.total_sales),1)]),t("div",Y,[Z,t("div",tt,o(e(s).today.order_num),1),t("div",st," \u603B\u8BA2\u5355\u91CF\uFF1A"+o(e(s).today.order_sum),1)]),t("div",et,[ot,t("div",it,o(e(s).today.today_new_user),1),t("div",at," \u603B\u8BBF\u7528\u6237\uFF1A"+o(e(s).today.total_new_user),1)])])]),_:1})]),t("div",nt,[a(d,{class:"flex-1 !border-none",shadow:"never"},{header:i(()=>[rt]),default:i(()=>[t("div",dt,[(l(!0),u(v,null,x(e(s).menu,r=>(l(),u("div",{class:"md:w-[12.5%] w-1/4 flex flex-col items-center",key:r},[a(w,{to:r.url,class:"mb-3 flex flex-col items-center"},{default:i(()=>[a(p,{width:"40px",height:"40px",src:r==null?void 0:r.image},null,8,["src"]),t("div",lt,o(r.name),1)]),_:2},1032,["to"])]))),128))])]),_:1})]),t("div",ut,[a(d,{class:"flex-1 !border-none md:mr-4 mb-4",shadow:"never"},{header:i(()=>[ct]),default:i(()=>[t("div",null,[a(e(E),{style:{height:"350px"},option:e(s).visitorOption,autoresize:!0},null,8,["option"])])]),_:1}),a(d,{class:"!border-none mb-4",shadow:"never"},{header:i(()=>[_t]),default:i(()=>[t("div",null,[(l(!0),u(v,null,x(e(s).support,(r,m)=>(l(),u("div",{key:m},[t("div",{class:D(["flex items-center pb-10 pt-10",{"border-b border-br":m==0}])},[a(p,{width:120,height:120,class:"flex-none",src:r.image},null,8,["src"]),t("div",pt,[t("div",null,o(r.title),1),t("div",mt,o(r.desc),1)])],2)]))),128))])]),_:1})])])}}});export{Zt as default}; diff --git a/public/admin/assets/index.8a145ad9.js b/public/admin/assets/index.8a145ad9.js new file mode 100644 index 000000000..b6a25559a --- /dev/null +++ b/public/admin/assets/index.8a145ad9.js @@ -0,0 +1 @@ +import{S as b,a6 as v,I as A,O as k,w as y,P as D,Q as x}from"./element-plus.4328d892.js";import{_ as L,s as R}from"./edit.vue_vue_type_script_setup_true_lang.fdb9299c.js";import{d as f,s as T,$ as S,af as $,o as a,c as N,U as t,L as e,M as d,u as F,K as i,R as l}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.ed71ac09.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.b940d6e3.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";const V={class:"storage"},z=f({name:"storage"}),bt=f({...z,setup(I){const m=T(),o=S({loading:!1,lists:[]}),p=async()=>{try{o.loading=!0,o.lists=await R(),o.loading=!1}catch{o.loading=!1}},g=r=>{var s;(s=m.value)==null||s.open(r)};return p(),(r,s)=>{const B=b,c=A,u=k,_=v,E=y,h=D,w=$("perms"),C=x;return a(),N("div",V,[t(c,{class:"!border-none",shadow:"never"},{default:e(()=>[t(B,{type:"warning",title:"\u6E29\u99A8\u63D0\u793A\uFF1A1.\u5207\u6362\u5B58\u50A8\u65B9\u5F0F\u540E\uFF0C\u9700\u8981\u5C06\u8D44\u6E90\u6587\u4EF6\u4F20\u8F93\u81F3\u65B0\u7684\u5B58\u50A8\u7AEF\uFF1B2.\u8BF7\u52FF\u968F\u610F\u5207\u6362\u5B58\u50A8\u65B9\u5F0F\uFF0C\u53EF\u80FD\u5BFC\u81F4\u56FE\u7247\u65E0\u6CD5\u67E5\u770B",closable:!1,"show-icon":""})]),_:1}),d((a(),i(c,{class:"!border-none mt-4",shadow:"never"},{default:e(()=>[t(h,{size:"large",data:F(o).lists},{default:e(()=>[t(u,{label:"\u50A8\u5B58\u65B9\u5F0F",prop:"name","min-width":"120"}),t(u,{label:"\u50A8\u5B58\u4F4D\u7F6E",prop:"path","min-width":"160"}),t(u,{label:"\u72B6\u6001","min-width":"80"},{default:e(({row:n})=>[n.status==1?(a(),i(_,{key:0},{default:e(()=>[l("\u5F00\u542F")]),_:1})):(a(),i(_,{key:1,type:"danger"},{default:e(()=>[l("\u5173\u95ED")]),_:1}))]),_:1}),t(u,{label:"\u64CD\u4F5C","min-width":"80",fixed:"right"},{default:e(({row:n})=>[d((a(),i(E,{type:"primary",link:"",onClick:K=>g(n.engine)},{default:e(()=>[l(" \u8BBE\u7F6E ")]),_:2},1032,["onClick"])),[[w,["setting.storage/setup"]]])]),_:1})]),_:1},8,["data"])]),_:1})),[[C,F(o).loading]]),t(L,{ref_key:"editRef",ref:m,onSuccess:p},null,512)])}}});export{bt as default}; diff --git a/public/admin/assets/index.8a76db27.js b/public/admin/assets/index.8a76db27.js new file mode 100644 index 000000000..ded654b88 --- /dev/null +++ b/public/admin/assets/index.8a76db27.js @@ -0,0 +1 @@ +import{B as q,C as K,M as z,N as G,w as H,D as J,I as W,O as X,P as Y,Q as Z}from"./element-plus.4328d892.js";import{_ as ee}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{_ as te}from"./index.vue_vue_type_script_setup_true_lang.17266fa4.js";import{f as oe,b as ae}from"./index.37f7aea6.js";import{u as se}from"./usePaging.2ad8e1e6.js";import{u as le}from"./useDictOptions.a45fc8ac.js";import{_ as ne,a as ie,b as ue}from"./edit.vue_vue_type_script_setup_true_name_categoryBusinessEdit_lang.a5ab95cf.js";import"./lodash.08438971.js";import{d as $,s as re,r as D,$ as pe,af as me,o as n,c as V,U as e,L as a,u as o,T as ce,a7 as de,K as r,R as m,M as _,a as x,k as _e,Q as fe,n as w}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.5759a1a6.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";const be={class:"mt-4"},ve={class:"flex mt-4 justify-end"},ge=$({name:"categoryBusinessLists"}),it=$({...ge,setup(ye){const c=re(),f=D(!1),i=pe({name:"",sort:"",status:""}),h=D([]),L=l=>{h.value=l.map(({id:t})=>t)},{dictData:k}=le("show_status"),{pager:b,getLists:g,resetParams:P,resetPage:N}=se({fetchFun:ue,params:i}),R=async()=>{var l;f.value=!0,await w(),(l=c.value)==null||l.open("add")},S=async l=>{var t,u;f.value=!0,await w(),(t=c.value)==null||t.open("check"),(u=c.value)==null||u.setFormData(l)},T=async l=>{var t,u;f.value=!0,await w(),(t=c.value)==null||t.open("edit"),(u=c.value)==null||u.setFormData(l)},E=async l=>{await oe.confirm("\u786E\u5B9A\u8981\u5220\u9664\uFF1F"),await ie({id:l}),g()};return g().then(l=>{console.log(l)}),(l,t)=>{const u=q,y=K,F=z,U=G,p=H,A=J,B=W,I=ae,d=X,M=te,O=Y,Q=ee,v=me("perms"),j=Z;return n(),V("div",null,[e(B,{class:"!border-none mb-4",shadow:"never"},{default:a(()=>[e(A,{class:"mb-[-16px]",model:o(i),inline:""},{default:a(()=>[e(y,{label:"\u540D\u79F0",prop:"name"},{default:a(()=>[e(u,{class:"w-[280px]",modelValue:o(i).name,"onUpdate:modelValue":t[0]||(t[0]=s=>o(i).name=s),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u540D\u79F0"},null,8,["modelValue"])]),_:1}),e(y,{label:"\u6392\u5E8F",prop:"sort"},{default:a(()=>[e(u,{class:"w-[280px]",modelValue:o(i).sort,"onUpdate:modelValue":t[1]||(t[1]=s=>o(i).sort=s),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u6392\u5E8F"},null,8,["modelValue"])]),_:1}),e(y,{label:"\u72B6\u6001",prop:"status"},{default:a(()=>[e(U,{class:"w-[280px]",modelValue:o(i).status,"onUpdate:modelValue":t[2]||(t[2]=s=>o(i).status=s),clearable:"",placeholder:"\u8BF7\u9009\u62E9\u72B6\u6001"},{default:a(()=>[e(F,{label:"\u5168\u90E8",value:""}),(n(!0),V(ce,null,de(o(k).show_status,(s,C)=>(n(),r(F,{key:C,label:s.name,value:s.value},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1}),e(y,null,{default:a(()=>[e(p,{type:"primary",onClick:o(N)},{default:a(()=>[m("\u67E5\u8BE2")]),_:1},8,["onClick"]),e(p,{onClick:o(P)},{default:a(()=>[m("\u91CD\u7F6E")]),_:1},8,["onClick"])]),_:1})]),_:1},8,["model"])]),_:1}),_((n(),r(B,{class:"!border-none",shadow:"never"},{default:a(()=>[_((n(),r(p,{type:"primary",onClick:R},{icon:a(()=>[e(I,{name:"el-icon-Plus"})]),default:a(()=>[m(" \u65B0\u589E ")]),_:1})),[[v,["category_business.category_business/add"]]]),_((n(),r(p,{disabled:!o(h).length,onClick:t[3]||(t[3]=s=>E(o(h)))},{default:a(()=>[m(" \u5220\u9664 ")]),_:1},8,["disabled"])),[[v,["category_business.category_business/delete"]]]),x("div",be,[e(O,{data:o(b).lists,onSelectionChange:L,"row-key":"id","tree-props":{children:"children",hasChildren:"hasChildren"}},{default:a(()=>[e(d,{label:"id",prop:"id","show-overflow-tooltip":""}),e(d,{label:"\u540D\u79F0",prop:"name","show-overflow-tooltip":""}),e(d,{label:"\u4E0A\u7EA7id",prop:"pid","show-overflow-tooltip":""}),e(d,{label:"\u6392\u5E8F",prop:"sort","show-overflow-tooltip":""}),e(d,{label:"\u72B6\u6001",prop:"status"},{default:a(({row:s})=>[e(M,{options:o(k).show_status,value:s.status},null,8,["options","value"])]),_:1}),e(d,{label:"\u64CD\u4F5C",width:"180",align:"center",fixed:"right"},{default:a(({row:s})=>[_((n(),r(p,{type:"primary",link:"",onClick:C=>S(s)},{default:a(()=>[m(" \u8BE6\u60C5 ")]),_:2},1032,["onClick"])),[[v,["category_business.category_business/edit","category_business.category_business/delete","category_business.category_business/edit"]]]),_((n(),r(p,{type:"primary",link:"",onClick:C=>T(s)},{default:a(()=>[m(" \u7F16\u8F91 ")]),_:2},1032,["onClick"])),[[v,["category_business.category_business/edit"]]]),_((n(),r(p,{type:"danger",link:"",onClick:C=>E(s.id)},{default:a(()=>[m(" \u5220\u9664 ")]),_:2},1032,["onClick"])),[[v,["category_business.category_business/delete"]]])]),_:1})]),_:1},8,["data"])]),x("div",ve,[e(Q,{modelValue:o(b),"onUpdate:modelValue":t[4]||(t[4]=s=>_e(b)?b.value=s:null),onChange:o(g)},null,8,["modelValue","onChange"])])]),_:1})),[[j,o(b).loading]]),o(f)?(n(),r(ne,{key:0,ref_key:"editRef",ref:c,"dict-data":o(k),onSuccess:o(g),onClose:t[5]||(t[5]=s=>f.value=!1)},null,8,["dict-data","onSuccess"])):fe("",!0)])}}});export{it as default}; diff --git a/public/admin/assets/index.8bb0dbd9.js b/public/admin/assets/index.8bb0dbd9.js new file mode 100644 index 000000000..f5ccf6d4a --- /dev/null +++ b/public/admin/assets/index.8bb0dbd9.js @@ -0,0 +1 @@ +import{B as W,C as X,w as Y,D as Z,I as ee,O as te,o as ue,P as oe,L as ae,Q as ne}from"./element-plus.4328d892.js";import{_ as se}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{_ as le}from"./index.vue_vue_type_script_setup_true_lang.7ac7ce7d.js";import{u as ie}from"./vue-router.9f65afb1.js";import{d as L,$ as re,r as D,b8 as ce,a4 as pe,af as me,o as a,c as r,U as t,L as u,u as o,a8 as de,R as s,M as f,K as c,S as _e,T as fe,Q as F,k as z,a as g,bf as Ee,be as ye}from"./@vue.51d7f2d8.js";import{u as Fe}from"./usePaging.2ad8e1e6.js";import{k as b,f as S,d as he}from"./index.37f7aea6.js";import{c as q,d as Ce,s as ke}from"./consumer.e5ac2901.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.5759a1a6.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const Be=h=>(Ee("data-v-fb9ba9c3"),h=h(),ye(),h),ve={key:0,style:{color:"#67c23a"}},De={key:1,style:{color:"#fe0000"}},be={key:0,style:{color:"#67c23a"}},ge={key:1,style:{color:"#fe0000"}},Ae=Be(()=>g("h1",null,"\u91CD\u8981\u63D0\u9192",-1)),xe={key:0,class:"content"},Ve={key:1,class:"content"},we={class:"btn_menu"},Ie={class:"flex justify-end mt-4"},Pe=L({name:"consumerLists"}),ze=L({...Pe,setup(h){const A=ie(),p=re({keyword:"",channel:"",create_time_start:"",create_time_end:"",company_id:""});A.query.company_id&&(p.company_id=A.query.company_id);const E=D(0),m=D(!1),C=D(!1),k=()=>{m.value=!1,C.value=!1},R=()=>{console.log(E.value),Ce({id:E.value}).then(()=>{S.msgSuccess("\u53D1\u9001\u6210\u529F")}),k()},U=()=>{ke({id:E.value}).then(K=>{S.msgSuccess("\u53D1\u9001\u6210\u529F")}),k()},{pager:d,getLists:B,resetPage:x,resetParams:$}=Fe({fetchFun:q,params:p});return ce(()=>{B()}),B(),(K,_)=>{const N=W,V=X,l=Y,T=le,M=Z,w=ee,n=te,Q=ue,v=pe("router-link"),j=oe,O=ae,G=se,y=me("perms"),H=ne;return a(),r("div",null,[t(w,{class:"!border-none",shadow:"never"},{default:u(()=>[t(M,{ref:"formRef",class:"mb-[-16px]",model:o(p),inline:!0},{default:u(()=>[t(V,{label:"\u7528\u6237\u4FE1\u606F"},{default:u(()=>[t(N,{class:"w-[280px]",modelValue:o(p).keyword,"onUpdate:modelValue":_[0]||(_[0]=e=>o(p).keyword=e),placeholder:"\u7528\u6237\u7F16\u53F7/\u6635\u79F0/\u624B\u673A\u53F7\u7801",clearable:"",onKeyup:de(o(x),["enter"])},null,8,["modelValue","onKeyup"])]),_:1}),t(V,null,{default:u(()=>[t(l,{type:"primary",onClick:o(x)},{default:u(()=>[s("\u67E5\u8BE2")]),_:1},8,["onClick"]),t(l,{onClick:o($)},{default:u(()=>[s("\u91CD\u7F6E")]),_:1},8,["onClick"]),t(T,{class:"ml-2.5","fetch-fun":o(q),params:o(p),"page-size":o(d).size},null,8,["fetch-fun","params","page-size"])]),_:1})]),_:1},8,["model"])]),_:1}),t(w,{class:"!border-none mt-4",shadow:"never"},{default:u(()=>[f((a(),c(j,{size:"large",data:o(d).lists},{default:u(()=>[t(n,{label:"ID",prop:"id","min-width":"100"}),t(n,{label:"\u7528\u6237\u7F16\u53F7",prop:"sn","min-width":"120"}),t(n,{label:"\u5934\u50CF","min-width":"100"},{default:u(({row:e})=>[t(Q,{src:e.avatar,size:50},null,8,["src"])]),_:1}),t(n,{label:"\u8D26\u53F7",prop:"account","min-width":"120"}),t(n,{label:"\u59D3\u540D",prop:"nickname","min-width":"100"}),t(n,{label:"\u8054\u7CFB\u65B9\u5F0F",prop:"mobile","min-width":"120"}),t(n,{label:"\u96B6\u5C5E\u516C\u53F8",prop:"company_name","min-width":"180",align:"center"},{default:u(({row:e})=>{var i;return[s(_e(((i=e.company)==null?void 0:i.company_name)||"/"),1)]}),_:1}),t(n,{label:"\u6240\u5728\u4E61\u9547",prop:"street_name","min-width":"120"}),t(n,{label:"\u6388\u6743\u8EAB\u4EFD",prop:"role_name","min-width":"120"},{default:u(({row:e})=>{var i;return[e.admin_id==((i=e.company)==null?void 0:i.admin_id)?(a(),r("span",ve,"\u516C\u53F8\u540E\u53F0\u7BA1\u7406\u4EBA\u5458")):(a(),r("span",De,"\u65E0"))]}),_:1}),t(n,{label:"\u662F\u5426\u7B7E\u7EA6",prop:"is_contract",align:"center","min-width":"120"},{default:u(({row:e})=>[e.is_contract==1?(a(),r("span",be,"\u5DF2\u7B7E\u7EA6")):(a(),r("span",ge,"\u672A\u7B7E\u7EA6"))]),_:1}),t(n,{label:"\u64CD\u4F5C","min-width":"300",align:"center",fixed:"right"},{default:u(({row:e})=>{var i,I,P;return[f((a(),c(l,{type:"primary",link:""},{default:u(()=>[t(v,{to:{path:o(b)("user.user/detail"),query:{id:e.id}}},{default:u(()=>[s(" \u8BE6\u60C5 ")]),_:2},1032,["to"])]),_:2},1024)),[[y,["user.user/detail"]]]),e.is_contract==0?(a(),r(fe,{key:0},[e.contract?F("",!0):f((a(),c(l,{key:0,type:"primary",link:""},{default:u(()=>[t(v,{to:{path:o(b)("user.user/detail"),query:{id:e.id,mode:"initiate"}}},{default:u(()=>[s(" \u751F\u6210\u5408\u540C ")]),_:2},1032,["to"])]),_:2},1024)),[[y,["user.user/launch"]]]),((i=e.contract)==null?void 0:i.check_status)==1?f((a(),c(l,{key:1,type:"primary",link:""},{default:u(()=>[t(v,{to:{path:o(b)("user.user/detail"),query:{id:e.id,mode:"uplode",mdoeid:e.contract.id}}},{default:u(()=>[s(" \u4E0A\u4F20\u5408\u540C ")]),_:2},1032,["to"])]),_:2},1024)),[[y,["user.user/uplode"]]]):F("",!0),((I=e.contract)==null?void 0:I.check_status)==2?f((a(),c(l,{key:2,type:"primary",link:"",onClick:J=>(m.value=!0,C.value=!0,E.value=e.id)},{default:u(()=>[s("\u53D1\u9001\u5408\u540C")]),_:2},1032,["onClick"])),[[y,["user.user/launch"]]]):F("",!0),e.is_contract==0&&((P=e.contract)==null?void 0:P.check_status)==3?f((a(),c(l,{key:3,type:"primary",link:"",onClick:J=>(m.value=!0,E.value=e.id)},{default:u(()=>[s("\u91CD\u65B0\u53D1\u9001\u77ED\u4FE1")]),_:2},1032,["onClick"])),[[y,["user.user/launch"]]]):F("",!0)],64)):F("",!0)]}),_:1})]),_:1},8,["data"])),[[H,o(d).loading]]),t(O,{modelValue:o(m),"onUpdate:modelValue":_[1]||(_[1]=e=>z(m)?m.value=e:null),onClose:k},{default:u(()=>[Ae,o(C)?(a(),r("div",xe," \u8BF7\u786E\u8BA4\u4FE1\u606F\u662F\u5426\u6709\u8BEF,\u53D1\u9001\u5408\u540C,\u8BF7\u786E\u8BA4\u4FE1\u606F\u662F\u5426\u6709\u8BEF,\u53D1\u9001\u7535\u5B50\u5408\u540C\u540E\u77ED\u65F6\u95F4\u5185\u5C06\u4E0D\u53EF\u518D\u6B21\u53D1\u9001. ")):(a(),r("div",Ve," \u786E\u8BA4\u7B7E\u7EA6\u77ED\u4FE1\u5C06\u572860\u79D2\u540E\u53D1\u9001,\u8BF7\u6CE8\u610F\u67E5\u6536,\u5E76\u70B9\u51FB\u77ED\u4FE1\u94FE\u63A5\u8FDB\u884C\u7EBF\u4E0A\u5408\u540C\u7B7E\u7EA6 ")),g("p",we,[o(C)?(a(),c(l,{key:0,type:"primary",size:"large",onClick:R},{default:u(()=>[s("\u786E\u8BA4\u521B\u5EFA")]),_:1})):(a(),c(l,{key:1,type:"primary",size:"large",onClick:U},{default:u(()=>[s("\u786E\u8BA4")]),_:1})),t(l,{type:"info",size:"large",onClick:k},{default:u(()=>[s("\u8FD4\u56DE")]),_:1})])]),_:1},8,["modelValue"]),g("div",Ie,[t(G,{modelValue:o(d),"onUpdate:modelValue":_[2]||(_[2]=e=>z(d)?d.value=e:null),onChange:o(B)},null,8,["modelValue","onChange"])])]),_:1})])}}});const Ct=he(ze,[["__scopeId","data-v-fb9ba9c3"]]);export{Ct as default}; diff --git a/public/admin/assets/index.936eca5b.js b/public/admin/assets/index.936eca5b.js new file mode 100644 index 000000000..b07d1f52e --- /dev/null +++ b/public/admin/assets/index.936eca5b.js @@ -0,0 +1 @@ +import{B as A,C as Q,w as j,D as q,I as K,O as M,P as O,Q as z}from"./element-plus.4328d892.js";import{_ as G}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{f as H,b as J}from"./index.37f7aea6.js";import{u as W}from"./usePaging.2ad8e1e6.js";import{u as X}from"./useDictOptions.a45fc8ac.js";import{_ as Y,a as Z,b as ee}from"./edit.vue_vue_type_script_setup_true_name_companyComplaintFeedbackEdit_lang.e39d83b5.js";import"./lodash.08438971.js";import{d as E,s as oe,r as h,$ as te,af as ae,o as i,c as ne,U as e,L as a,u as o,R as p,M as _,K as r,a as B,k as le,Q as ie,n as g}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.5759a1a6.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";const se={class:"mt-4"},me={class:"flex mt-4 justify-end"},pe=E({name:"companyComplaintFeedbackLists"}),Xe=E({...pe,setup(re){const f=oe(),C=h(!1),s=te({company_id:"",content:""}),v=h([]),V=l=>{v.value=l.map(({id:t})=>t)},{dictData:D}=X(""),{pager:c,getLists:b,resetParams:x,resetPage:$}=W({fetchFun:ee,params:s}),P=async()=>{var l;C.value=!0,await g(),(l=f.value)==null||l.open("add")},L=async l=>{var t,d;C.value=!0,await g(),(t=f.value)==null||t.open("edit"),(d=f.value)==null||d.setFormData(l)},w=async l=>{await H.confirm("\u786E\u5B9A\u8981\u5220\u9664\uFF1F"),await Z({id:l}),b()};return b(),(l,t)=>{const d=A,y=Q,m=j,R=q,F=K,N=J,u=M,S=O,T=G,k=ae("perms"),U=z;return i(),ne("div",null,[e(F,{class:"!border-none mb-4",shadow:"never"},{default:a(()=>[e(R,{class:"mb-[-16px]",model:o(s),inline:""},{default:a(()=>[e(y,{label:"\u516C\u53F8",prop:"company_id"},{default:a(()=>[e(d,{class:"w-[280px]",modelValue:o(s).company_id,"onUpdate:modelValue":t[0]||(t[0]=n=>o(s).company_id=n),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u516C\u53F8"},null,8,["modelValue"])]),_:1}),e(y,{label:"\u5185\u5BB9",prop:"content"},{default:a(()=>[e(d,{class:"w-[280px]",modelValue:o(s).content,"onUpdate:modelValue":t[1]||(t[1]=n=>o(s).content=n),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u5185\u5BB9"},null,8,["modelValue"])]),_:1}),e(y,null,{default:a(()=>[e(m,{type:"primary",onClick:o($)},{default:a(()=>[p("\u67E5\u8BE2")]),_:1},8,["onClick"]),e(m,{onClick:o(x)},{default:a(()=>[p("\u91CD\u7F6E")]),_:1},8,["onClick"])]),_:1})]),_:1},8,["model"])]),_:1}),_((i(),r(F,{class:"!border-none",shadow:"never"},{default:a(()=>[_((i(),r(m,{type:"primary",onClick:P},{icon:a(()=>[e(N,{name:"el-icon-Plus"})]),default:a(()=>[p(" \u65B0\u589E ")]),_:1})),[[k,["company_complaint_feedback/add"]]]),_((i(),r(m,{disabled:!o(v).length,onClick:t[2]||(t[2]=n=>w(o(v)))},{default:a(()=>[p(" \u5220\u9664 ")]),_:1},8,["disabled"])),[[k,["company_complaint_feedback/delete"]]]),B("div",se,[e(S,{data:o(c).lists,onSelectionChange:V},{default:a(()=>[e(u,{type:"selection",width:"55"}),e(u,{label:"id",prop:"id",width:"120","show-overflow-tooltip":""}),e(u,{label:"\u516C\u53F8",prop:"company_name",width:"220","show-overflow-tooltip":""}),e(u,{label:"\u5185\u5BB9",prop:"content","show-overflow-tooltip":""}),e(u,{label:"\u64CD\u4F5C",width:"120",fixed:"right"},{default:a(({row:n})=>[_((i(),r(m,{type:"primary",link:"",onClick:I=>L(n)},{default:a(()=>[p(" \u7F16\u8F91 ")]),_:2},1032,["onClick"])),[[k,["company_complaint_feedback/edit"]]]),_((i(),r(m,{type:"danger",link:"",onClick:I=>w(n.id)},{default:a(()=>[p(" \u5220\u9664 ")]),_:2},1032,["onClick"])),[[k,["company_complaint_feedback/delete"]]])]),_:1})]),_:1},8,["data"])]),B("div",me,[e(T,{modelValue:o(c),"onUpdate:modelValue":t[3]||(t[3]=n=>le(c)?c.value=n:null),onChange:o(b)},null,8,["modelValue","onChange"])])]),_:1})),[[U,o(c).loading]]),o(C)?(i(),r(Y,{key:0,ref_key:"editRef",ref:f,"dict-data":o(D),onSuccess:o(b),onClose:t[4]||(t[4]=n=>C.value=!1)},null,8,["dict-data","onSuccess"])):ie("",!0)])}}});export{Xe as default}; diff --git a/public/admin/assets/index.99236694.js b/public/admin/assets/index.99236694.js new file mode 100644 index 000000000..5155eb6c7 --- /dev/null +++ b/public/admin/assets/index.99236694.js @@ -0,0 +1 @@ +import{_ as V}from"./index.be5645df.js";import{I as b,w as C}from"./element-plus.4328d892.js";import I from"./menu.e12cd2ff.js";import N from"./preview.c7c0f0ab.js";import{_ as P}from"./attr-setting.vue_vue_type_script_setup_true_lang.165968f9.js";import{w as S}from"./index.017d9ee1.js";import{s as h,a as k}from"./decoration.6a408574.js";import{n as F,d as M}from"./index.ed71ac09.js";import{d as x,$ as R,r as f,e as g,w as U,af as A,o as v,c as O,U as i,L as l,a as J,u as m,k as D,M as W,K as $,R as H}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./attr.vue_vue_type_script_setup_true_lang.8394104e.js";import"./index.f2c7f81b.js";import"./picker.47d21da2.js";import"./index.b940d6e3.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./picker.597494a6.js";import"./index.c38e1dd6.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./index.9c616a0c.js";import"./index.vue_vue_type_script_setup_true_lang.dc835bba.js";import"./usePaging.2ad8e1e6.js";import"./vue3-video-play.b911321b.js";import"./vuedraggable.0cb40d3a.js";import"./vue.5de34049.js";import"./sortablejs.ef73fc5c.js";import"./content.vue_vue_type_script_setup_true_lang.84d28a88.js";import"./decoration-img.82b482b3.js";import"./attr.vue_vue_type_script_setup_true_lang.be7eaab3.js";import"./content.b8657a15.js";import"./attr.vue_vue_type_script_setup_true_lang.5e1d2ee6.js";import"./add-nav.vue_vue_type_script_setup_true_lang.a0ca03a3.js";import"./content.de68a2a6.js";import"./attr.vue_vue_type_script_setup_true_lang.19311265.js";import"./content.vue_vue_type_script_setup_true_lang.c8560c8f.js";import"./attr.vue_vue_type_script_setup_true_lang.d01577b5.js";import"./content.54b16038.js";import"./attr.vue_vue_type_script_setup_true_lang.0fc534ba.js";import"./content.fb432a0e.js";import"./attr.vue_vue_type_script_setup_true_lang.103310f1.js";import"./content.vue_vue_type_script_setup_true_lang.e9fe6f66.js";import"./attr.vue_vue_type_script_setup_true_lang.00e826d0.js";import"./content.0dcb8921.js";const K={class:"decoration-pages min-w-[1100px]"},L={class:"flex h-full items-start"},j=x({name:"decorationPages"}),q=x({...j,setup(z){let u;(t=>{t.HOME="1",t.USER="2",t.SERVICE="3"})(u||(u={}));const s=t=>t.map(e=>{var p;return{id:F(),...((p=S[e])==null?void 0:p.options())||{}}}),a=R({[1]:{id:1,type:1,name:"\u9996\u9875\u88C5\u4FEE",pageData:s(["search","banner","nav","news"])},[2]:{id:2,type:2,name:"\u4E2A\u4EBA\u4E2D\u5FC3",pageData:s(["user-info","my-service","user-banner"])},[3]:{id:3,type:3,name:"\u5BA2\u670D\u8BBE\u7F6E",pageData:s(["customer-service"])}}),o=f("1"),r=f(-1),c=g(()=>{var t,e;return(e=(t=a[o.value])==null?void 0:t.pageData)!=null?e:[]}),w=g(()=>{var t,e;return(e=(t=a[o.value])==null?void 0:t.pageData[r.value])!=null?e:""}),d=async()=>{const t=await k({id:o.value});a[String(t.id)].pageData=JSON.parse(t.data)},E=async()=>{await h({...a[o.value],data:JSON.stringify(a[o.value].pageData)}),d()};return U(o,()=>{r.value=c.value.findIndex(t=>!t.disabled),d()},{immediate:!0}),(t,e)=>{const _=b,p=C,y=V,B=A("perms");return v(),O("div",K,[i(_,{shadow:"never",class:"!border-none flex-1 flex","body-style":{flex:1}},{default:l(()=>[J("div",L,[i(I,{modelValue:m(o),"onUpdate:modelValue":e[0]||(e[0]=n=>D(o)?o.value=n:null),menus:m(a)},null,8,["modelValue","menus"]),i(N,{modelValue:m(r),"onUpdate:modelValue":e[1]||(e[1]=n=>D(r)?r.value=n:null),pageData:m(c)},null,8,["modelValue","pageData"]),i(P,{class:"flex-1",widget:m(w)},null,8,["widget"])])]),_:1}),W((v(),$(y,{class:"mt-4",fixed:!1},{default:l(()=>[i(p,{type:"primary",onClick:E},{default:l(()=>[H("\u4FDD\u5B58")]),_:1})]),_:1})),[[B,["decorate:pages:save"]]])])}}});const ce=M(q,[["__scopeId","data-v-c84d2462"]]);export{ce as default}; diff --git a/public/admin/assets/index.9c616a0c.js b/public/admin/assets/index.9c616a0c.js new file mode 100644 index 000000000..cd3c9d5f9 --- /dev/null +++ b/public/admin/assets/index.9c616a0c.js @@ -0,0 +1 @@ +import{J as U,X as L,L as D}from"./element-plus.4328d892.js";import{a as P,j as p,R as y,f as m,d as R}from"./index.ed71ac09.js";import{d as V,s as _,r as f,e as C,t as j,o as c,c as g,U as b,L as k,H as N,K as I,a as v,T as q,a7 as H,S as J,Q as K}from"./@vue.51d7f2d8.js";const O=V({components:{},props:{type:{type:String,default:"image"},multiple:{type:Boolean,default:!0},limit:{type:Number,default:10},data:{type:Object,default:()=>({})},showProgress:{type:Boolean,default:!1}},emits:["change","error","success"],setup(e,{emit:a}){const h=P(),n=_(),E=f(`${p.baseUrl}${p.urlPrefix}/upload/${e.type}`),F=C(()=>({token:h.token,version:p.version})),o=f(!1),u=f([]),d=(s,l,r)=>{o.value=!0,u.value=j(r)},t=(s,l,r)=>{var S;r.every(B=>B.status=="success")&&((S=n.value)==null||S.clearFiles(),o.value=!1),a("change",l),s.code==y.SUCCESS&&a("success",s),s.code==y.FAIL&&s.msg&&m.msgError(s.msg)},i=(s,l)=>{var r;m.msgError(`${l.name}\u6587\u4EF6\u4E0A\u4F20\u5931\u8D25`),(r=n.value)==null||r.abort(l),o.value=!1,a("change",l),a("error",l)},A=()=>{m.msgError(`\u8D85\u51FA\u4E0A\u4F20\u4E0A\u9650${e.limit}\uFF0C\u8BF7\u91CD\u65B0\u4E0A\u4F20`)},$=()=>{var s;(s=n.value)==null||s.clearFiles(),o.value=!1},w=C(()=>{switch(e.type){case"image":return".jpg,.png,.gif,.jpeg";case"video":return".wmv,.avi,.mpg,.mpeg,.3gp,.mov,.mp4,.flv,.rmvb,.mkv";default:return"*"}});return{uploadRefs:n,action:E,headers:F,visible:o,fileList:u,getAccept:w,handleProgress:d,handleSuccess:t,handleError:i,handleExceed:A,handleClose:$}}}),Q={class:"upload"},T={class:"file-list p-4"},X={class:"flex-1"};function z(e,a,h,n,E,F){const o=U,u=L,d=D;return c(),g("div",Q,[b(o,{ref:"uploadRefs",action:e.action,multiple:e.multiple,limit:e.limit,"show-file-list":!1,headers:e.headers,data:e.data,"on-progress":e.handleProgress,"on-success":e.handleSuccess,"on-exceed":e.handleExceed,"on-error":e.handleError,accept:e.getAccept},{default:k(()=>[N(e.$slots,"default")]),_:3},8,["action","multiple","limit","headers","data","on-progress","on-success","on-exceed","on-error","accept"]),e.showProgress&&e.fileList.length?(c(),I(d,{key:0,modelValue:e.visible,"onUpdate:modelValue":a[0]||(a[0]=t=>e.visible=t),title:"\u4E0A\u4F20\u8FDB\u5EA6","close-on-click-modal":!1,width:"500px",modal:!1,onClose:e.handleClose},{default:k(()=>[v("div",T,[(c(!0),g(q,null,H(e.fileList,(t,i)=>(c(),g("div",{key:i,class:"mb-5"},[v("div",null,J(t.name),1),v("div",X,[b(u,{percentage:parseInt(t.percentage)},null,8,["percentage"])])]))),128))])]),_:1},8,["modelValue","onClose"])):K("",!0)])}const Z=R(O,[["render",z]]);export{Z as U}; diff --git a/public/admin/assets/index.9dae1374.js b/public/admin/assets/index.9dae1374.js new file mode 100644 index 000000000..b4991503a --- /dev/null +++ b/public/admin/assets/index.9dae1374.js @@ -0,0 +1 @@ +import{_ as H}from"./index.fd04a214.js";import{a6 as I,w as L,b as R,O as G,G as K,t as M,P as O,I as Q}from"./element-plus.4328d892.js";import{b as $,c as j}from"./pay.b01bd8e2.js";import{l as B}from"./lodash.08438971.js";import{d as q,r as x,af as z,o as t,c as u,a as s,M as J,K as i,L as e,R as a,T as C,a7 as X,Q as p,U as m,u as d,S as Y}from"./@vue.51d7f2d8.js";import"./index.37f7aea6.js";import"./@vueuse.ec90c285.js";import"./axios.105476b3.js";import"./@amap.8a62addd.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./@element-plus.a074d1f6.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";const Z={key:0,class:"text-lg mb-[24px]"},tt=s("span",{class:"form-tips ml-[10px]"},"\u5728\u5FAE\u4FE1\u5C0F\u7A0B\u5E8F\u4E2D\u4ED8\u6B3E\u7684\u573A\u666F",-1),et={key:1,class:"text-lg mb-[24px]"},ut=s("span",{class:"form-tips ml-[10px]"}," \u5728\u5FAE\u4FE1\u516C\u4F17\u53F7H5\u9875\u9762\u4E2D\u4ED8\u6B3E\u7684\u573A\u666F\uFF0C\u516C\u4F17\u53F7\u7C7B\u578B\u4E00\u822C\u4E3A\u670D\u52A1\u53F7 ",-1),at={key:2,class:"text-lg mb-[24px]"},ot=s("span",{class:"form-tips ml-[10px]"},"\u5728\u6D4F\u89C8\u5668H5\u9875\u9762\u4E2D\u4ED8\u6B3E\u7684\u573A\u666F",-1),st={key:3,class:"text-lg mb-[24px]"},lt=s("span",{class:"form-tips ml-[10px]"},"\u5728\u6D4F\u89C8\u5668PC\u9875\u9762\u4E2D\u4ED8\u6B3E\u7684\u573A\u666F",-1),nt={key:4,class:"text-lg mb-[24px]"},it=s("span",{class:"form-tips ml-[10px]"},"\u5728APP\u4ED8\u6B3E\u7684\u573A\u666F",-1),pt={key:1},mt={key:1},qt=q({__name:"index",setup(rt){const l=x({}),r=x(!1);let y={};const f=async()=>{l.value=await $(),y=B.exports.cloneDeep(l.value)},g=()=>{r.value=!0},b=(h,E)=>{l.value[E].forEach(_=>{_.is_default=0}),l.value[E][h].is_default=1},k=()=>{l.value=B.exports.cloneDeep(y),r.value=!1},A=async()=>{await j(l.value),r.value=!1,f()};return f(),(h,E)=>{const _=L,P=R,c=G,w=K,V=I,W=M,S=O,T=Q,U=H,N=z("perms");return t(),u("div",null,[s("div",null,[J((t(),i(_,{type:"primary",onClick:g},{default:e(()=>[a(" \u8BBE\u7F6E\u652F\u4ED8\u65B9\u5F0F ")]),_:1})),[[N,["setting.pay.pay_way/setPayWay"]]])]),(t(!0),u(C,null,X(d(l),(D,n)=>(t(),i(T,{shadow:"never",class:"mt-4 !border-none",key:n},{default:e(()=>[s("div",null,[n==1?(t(),u("div",Z,[a(" \u5FAE\u4FE1\u5C0F\u7A0B\u5E8F "),tt])):p("",!0),n==2?(t(),u("div",et,[a(" \u5FAE\u4FE1\u516C\u4F17\u53F7 "),ut])):p("",!0),n==3?(t(),u("div",at,[a(" H5\u652F\u4ED8 "),ot])):p("",!0),n==4?(t(),u("div",st,[a(" PC\u652F\u4ED8 "),lt])):p("",!0),n==5?(t(),u("div",nt,[a(" APP\u652F\u4ED8 "),it])):p("",!0),D.length?(t(),i(S,{key:5,data:D,style:{width:"100%"}},{default:e(()=>[m(c,{label:"\u56FE\u6807","min-width":"150"},{default:e(({row:o})=>[m(P,{src:o.icon,alt:"\u56FE\u6807",style:{width:"34px",height:"34px"}},null,8,["src"])]),_:1}),m(c,{prop:"pay_way_name",label:"\u652F\u4ED8\u65B9\u5F0F","min-width":"150"}),m(c,{label:"\u9ED8\u8BA4\u652F\u4ED8","min-width":"150"},{default:e(({row:o,$index:F})=>[s("div",null,[d(r)?(t(),i(w,{key:0,modelValue:o.is_default,"onUpdate:modelValue":v=>o.is_default=v,label:1,onChange:v=>b(F,n)},{default:e(()=>[a(" \u8BBE\u4E3A\u9ED8\u8BA4 ")]),_:2},1032,["modelValue","onUpdate:modelValue","onChange"])):(t(),u(C,{key:1},[o.is_default==1?(t(),i(V,{key:0},{default:e(()=>[a("\u9ED8\u8BA4")]),_:1})):(t(),u("span",pt,"-"))],64))])]),_:2},1024),m(c,{label:"\u5F00\u542F\u72B6\u6001","min-width":"150"},{default:e(({row:o})=>[d(r)?(t(),i(W,{key:0,modelValue:o.status,"onUpdate:modelValue":F=>o.status=F,"active-value":1,"inactive-value":0},null,8,["modelValue","onUpdate:modelValue"])):(t(),u("span",mt,Y(o.status==1?"\u5F00\u542F":"\u5173\u95ED"),1))]),_:1})]),_:2},1032,["data"])):p("",!0)])]),_:2},1024))),128)),d(r)?(t(),i(U,{key:0},{default:e(()=>[m(_,{onClick:k},{default:e(()=>[a("\u53D6\u6D88")]),_:1}),m(_,{type:"primary",onClick:A},{default:e(()=>[a("\u4FDD\u5B58")]),_:1})]),_:1})):p("",!0)])}}});export{qt as default}; diff --git a/public/admin/assets/index.9f3ef15e.js b/public/admin/assets/index.9f3ef15e.js new file mode 100644 index 000000000..1627c53bb --- /dev/null +++ b/public/admin/assets/index.9f3ef15e.js @@ -0,0 +1 @@ +import{a6 as j,B as q,C as z,M as G,N as H,w as J,D as W,I as X,O as Y,P as Z,Q as ee}from"./element-plus.4328d892.js";import{f as te,b as ae}from"./index.aa9bb752.js";import{d as K,s as F,r as h,$ as oe,j as le,n as g,af as ne,o as p,c as se,U as e,L as t,u as s,a8 as ie,R as i,a as re,M as E,K as c,S as ue,Q as T}from"./@vue.51d7f2d8.js";import{_ as pe}from"./edit.vue_vue_type_script_setup_true_lang.b7d103f8.js";import{e as me,f as de}from"./department.5076f65d.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.fa872673.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./useDictOptions.a61fcf9f.js";const ce={class:"department"},_e=K({name:"department"}),tt=K({..._e,setup(fe){const B=F(),_=F(),x=F();let k=!1;const C=h(!1),b=h([]),m=oe({status:"",name:""}),v=h(!1),d=async()=>{C.value=!0,b.value=await me(m),C.value=!1},L=()=>{var o;(o=x.value)==null||o.resetFields(),d()},D=async o=>{var a,n;v.value=!0,await g(),o&&((a=_.value)==null||a.setFormData({pid:o})),(n=_.value)==null||n.open("add")},P=async o=>{var a,n;v.value=!0,await g(),(a=_.value)==null||a.open("edit"),(n=_.value)==null||n.getDetail(o)},S=async o=>{await te.confirm("\u786E\u5B9A\u8981\u5220\u9664\uFF1F"),await de({id:o}),d()},V=()=>{k=!k,R(b.value,k)},R=(o,a=!0)=>{var n;for(const r in o)(n=B.value)==null||n.toggleRowExpansion(o[r],a),o[r].children&&R(o[r].children,a)};return le(async()=>{await d(),g(()=>{V()})}),(o,a)=>{const n=q,r=z,w=G,I=H,u=J,M=W,$=X,U=ae,f=Y,A=j,O=Z,y=ne("perms"),Q=ee;return p(),se("div",ce,[e($,{class:"!border-none",shadow:"never"},{default:t(()=>[e(M,{ref_key:"formRef",ref:x,class:"mb-[-16px]",model:s(m),inline:!0},{default:t(()=>[e(r,{label:"\u90E8\u95E8\u540D\u79F0",prop:"name"},{default:t(()=>[e(n,{class:"w-[280px]",modelValue:s(m).name,"onUpdate:modelValue":a[0]||(a[0]=l=>s(m).name=l),clearable:"",onKeyup:ie(d,["enter"])},null,8,["modelValue","onKeyup"])]),_:1}),e(r,{label:"\u90E8\u95E8\u72B6\u6001",prop:"status"},{default:t(()=>[e(I,{class:"w-[280px]",modelValue:s(m).status,"onUpdate:modelValue":a[1]||(a[1]=l=>s(m).status=l)},{default:t(()=>[e(w,{label:"\u5168\u90E8",value:""}),e(w,{label:"\u6B63\u5E38",value:"1"}),e(w,{label:"\u505C\u7528",value:"0"})]),_:1},8,["modelValue"])]),_:1}),e(r,null,{default:t(()=>[e(u,{type:"primary",onClick:d},{default:t(()=>[i("\u67E5\u8BE2")]),_:1}),e(u,{onClick:L},{default:t(()=>[i("\u91CD\u7F6E")]),_:1})]),_:1})]),_:1},8,["model"])]),_:1}),e($,{class:"!border-none mt-4",shadow:"never"},{default:t(()=>[re("div",null,[E((p(),c(u,{type:"primary",onClick:a[2]||(a[2]=l=>D())},{icon:t(()=>[e(U,{name:"el-icon-Plus"})]),default:t(()=>[i(" \u65B0\u589E ")]),_:1})),[[y,["dept.dept/add"]]]),e(u,{onClick:V},{default:t(()=>[i(" \u5C55\u5F00/\u6298\u53E0 ")]),_:1})]),E((p(),c(O,{ref_key:"tableRef",ref:B,class:"mt-4",size:"large",data:s(b),"row-key":"id","tree-props":{children:"children",hasChildren:"hasChildren"}},{default:t(()=>[e(f,{label:"\u90E8\u95E8\u540D\u79F0",prop:"name","min-width":"150","show-overflow-tooltip":""}),e(f,{label:"\u90E8\u95E8\u72B6\u6001",prop:"status","min-width":"100"},{default:t(({row:l})=>[e(A,{class:"ml-2",type:l.status?"":"danger"},{default:t(()=>[i(ue(l.status_desc),1)]),_:2},1032,["type"])]),_:1}),e(f,{label:"\u6392\u5E8F",prop:"sort","min-width":"100"}),e(f,{label:"\u66F4\u65B0\u65F6\u95F4",prop:"update_time","min-width":"180"}),e(f,{label:"\u64CD\u4F5C",width:"160",fixed:"right"},{default:t(({row:l})=>[E((p(),c(u,{type:"primary",link:"",onClick:N=>D(l.id)},{default:t(()=>[i(" \u65B0\u589E ")]),_:2},1032,["onClick"])),[[y,["dept.dept/add"]]]),E((p(),c(u,{type:"primary",link:"",onClick:N=>P(l)},{default:t(()=>[i(" \u7F16\u8F91 ")]),_:2},1032,["onClick"])),[[y,["dept.dept/edit"]]]),l.pid!==0?E((p(),c(u,{key:0,type:"danger",link:"",onClick:N=>S(l.id)},{default:t(()=>[i(" \u5220\u9664 ")]),_:2},1032,["onClick"])),[[y,["dept.dept/delete"]]]):T("",!0)]),_:1})]),_:1},8,["data"])),[[Q,s(C)]])]),_:1}),s(v)?(p(),c(pe,{key:0,ref_key:"editRef",ref:_,onSuccess:d,onClose:a[3]||(a[3]=l=>v.value=!1)},null,512)):T("",!0)])}}});export{tt as default}; diff --git a/public/admin/assets/index.9fe71f7e.js b/public/admin/assets/index.9fe71f7e.js new file mode 100644 index 000000000..9c8444f7c --- /dev/null +++ b/public/admin/assets/index.9fe71f7e.js @@ -0,0 +1 @@ +import{B as M,C as O,w as z,D as G,I as H,O as J,P as W,Q as X}from"./element-plus.4328d892.js";import{_ as Y}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{f as Z,b as ee}from"./index.37f7aea6.js";import{u as oe}from"./usePaging.2ad8e1e6.js";import{u as te}from"./useDictOptions.a45fc8ac.js";import{e as ae,a as le}from"./user_role.942482ea.js";import"./lodash.08438971.js";import{_ as se}from"./edit.vue_vue_type_script_setup_true_name_userRoleEdit_lang.4f344c50.js";import{_ as ne}from"./auth.vue_vue_type_script_setup_true_lang.5dbd5500.js";import{d as R,s as B,r as y,$ as re,af as ie,o as n,c as ue,U as o,L as a,u as t,R as p,M as c,K as i,a as $,k as me,Q as x,n as D}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.5759a1a6.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./user_menu.a3635908.js";const pe={class:"mt-4"},de={class:"flex mt-4 justify-end"},ce=R({name:"userRoleLists"}),lo=R({...ce,setup(_e){const C=B(),F=y(!1),d=re({name:"",desc:"",menu_arr:"",sort:""}),k=y([]),P=s=>{k.value=s.map(({id:e})=>e)},{dictData:S}=te(""),{pager:_,getLists:f,resetParams:U,resetPage:L}=oe({fetchFun:le,params:d}),A=async()=>{var s;F.value=!0,await D(),(s=C.value)==null||s.open("add")},I=async s=>{var e,r;F.value=!0,await D(),(e=C.value)==null||e.open("edit"),(r=C.value)==null||r.setFormData(s)},w=B(),h=y(!1),N=async s=>{var e,r;h.value=!0,await D(),(e=w.value)==null||e.open(),(r=w.value)==null||r.setFormData(s)},g=async s=>{await Z.confirm("\u786E\u5B9A\u8981\u5220\u9664\uFF1F"),await ae({id:s}),f()};return f(),(s,e)=>{const r=M,b=O,u=z,T=G,E=H,Q=ee,m=J,j=W,q=Y,v=ie("perms"),K=X;return n(),ue("div",null,[o(E,{class:"!border-none mb-4",shadow:"never"},{default:a(()=>[o(T,{class:"mb-[-16px]",model:t(d),inline:""},{default:a(()=>[o(b,{label:"\u540D\u79F0",prop:"name"},{default:a(()=>[o(r,{class:"w-[280px]",modelValue:t(d).name,"onUpdate:modelValue":e[0]||(e[0]=l=>t(d).name=l),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u540D\u79F0"},null,8,["modelValue"])]),_:1}),o(b,{label:"\u63CF\u8FF0",prop:"desc"},{default:a(()=>[o(r,{class:"w-[280px]",modelValue:t(d).desc,"onUpdate:modelValue":e[1]||(e[1]=l=>t(d).desc=l),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u63CF\u8FF0"},null,8,["modelValue"])]),_:1}),o(b,null,{default:a(()=>[o(u,{type:"primary",onClick:t(L)},{default:a(()=>[p("\u67E5\u8BE2")]),_:1},8,["onClick"]),o(u,{onClick:t(U)},{default:a(()=>[p("\u91CD\u7F6E")]),_:1},8,["onClick"])]),_:1})]),_:1},8,["model"])]),_:1}),c((n(),i(E,{class:"!border-none",shadow:"never"},{default:a(()=>[c((n(),i(u,{type:"primary",onClick:A},{icon:a(()=>[o(Q,{name:"el-icon-Plus"})]),default:a(()=>[p(" \u65B0\u589E ")]),_:1})),[[v,["user.user_role/add"]]]),c((n(),i(u,{disabled:!t(k).length,onClick:e[2]||(e[2]=l=>g(t(k)))},{default:a(()=>[p(" \u5220\u9664 ")]),_:1},8,["disabled"])),[[v,["user.user_role/delete"]]]),$("div",pe,[o(j,{data:t(_).lists,onSelectionChange:P},{default:a(()=>[o(m,{type:"selection",width:"55"}),o(m,{label:"ID",prop:"id","show-overflow-tooltip":""}),o(m,{label:"\u540D\u79F0",prop:"name","show-overflow-tooltip":""}),o(m,{label:"\u63CF\u8FF0",prop:"desc","show-overflow-tooltip":""}),o(m,{label:"\u6743\u9650id",prop:"menu_arr","show-overflow-tooltip":""}),o(m,{label:"\u6392\u5E8F",prop:"sort","show-overflow-tooltip":""}),o(m,{label:"\u64CD\u4F5C",width:"210",fixed:"right"},{default:a(({row:l})=>[c((n(),i(u,{type:"primary",link:"",onClick:V=>I(l)},{default:a(()=>[p(" \u7F16\u8F91 ")]),_:2},1032,["onClick"])),[[v,["user.user_role/edit"]]]),c((n(),i(u,{link:"",type:"primary",onClick:V=>N(l)},{default:a(()=>[p(" \u5206\u914D\u6743\u9650 ")]),_:2},1032,["onClick"])),[[v,["auth.role/edit"]]]),c((n(),i(u,{type:"danger",link:"",onClick:V=>g(l.id)},{default:a(()=>[p(" \u5220\u9664 ")]),_:2},1032,["onClick"])),[[v,["user.user_role/delete"]]])]),_:1})]),_:1},8,["data"])]),$("div",de,[o(q,{modelValue:t(_),"onUpdate:modelValue":e[3]||(e[3]=l=>me(_)?_.value=l:null),onChange:t(f)},null,8,["modelValue","onChange"])])]),_:1})),[[K,t(_).loading]]),t(F)?(n(),i(se,{key:0,ref_key:"editRef",ref:C,"dict-data":t(S),onSuccess:t(f),onClose:e[4]||(e[4]=l=>F.value=!1)},null,8,["dict-data","onSuccess"])):x("",!0),t(h)?(n(),i(ne,{key:1,ref_key:"authRef",ref:w,onSuccess:t(f),onClose:e[5]||(e[5]=l=>h.value=!1)},null,8,["onSuccess"])):x("",!0)])}}});export{lo as default}; diff --git a/public/admin/assets/index.a1286d2b.js b/public/admin/assets/index.a1286d2b.js new file mode 100644 index 000000000..ee5a7734d --- /dev/null +++ b/public/admin/assets/index.a1286d2b.js @@ -0,0 +1 @@ +import{a6 as x,w as D,O as V,P as T,I as L,Q as N}from"./element-plus.4328d892.js";import{_ as P}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{k as F,f as R,b as $}from"./index.37f7aea6.js";import{g as Q,h as U}from"./system.7bc7010f.js";import{u as j}from"./usePaging.2ad8e1e6.js";import{d as C,a4 as q,af as A,o as i,c as I,U as t,L as e,M as p,K as r,u as n,R as l,Q as _,a as y,k as K}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const M={class:"flex"},O={class:"flex justify-end mt-4"},z=C({name:"scheduledTask"}),Lt=C({...z,setup(G){const{pager:s,getLists:m}=j({fetchFun:U,params:{}}),g=async f=>{await R.confirm("\u786E\u5B9A\u8981\u5220\u9664\uFF1F"),await Q({id:f}),m()};return m(),(f,b)=>{const k=$,u=D,h=q("router-link"),o=V,d=x,w=T,E=P,v=L,c=A("perms"),B=N;return i(),I("div",null,[t(v,{shadow:"never",class:"!border-none"},{default:e(()=>[p((i(),r(h,{to:n(F)("crontab.crontab/add:edit")},{default:e(()=>[t(u,{type:"primary",class:"mb-[16px]"},{icon:e(()=>[t(k,{name:"el-icon-Plus"})]),default:e(()=>[l(" \u65B0\u589E ")]),_:1})]),_:1},8,["to"])),[[c,["crontab.crontab/add","crontab.crontab/add:edit"]]]),p((i(),r(w,{ref:"paneTable",class:"m-t-24",data:n(s).lists,style:{width:"100%"}},{default:e(()=>[t(o,{prop:"name",label:"\u540D\u79F0","min-width":"120"}),t(o,{prop:"type_desc",label:"\u7C7B\u578B","min-width":"100"}),t(o,{prop:"command",label:"\u547D\u4EE4","min-width":"100"}),t(o,{prop:"params",label:"\u53C2\u6570","min-width":"80"}),t(o,{prop:"expression",label:"\u89C4\u5219","min-width":"100"}),t(o,{prop:"status",label:"\u72B6\u6001","min-width":"100"},{default:e(({row:a})=>[a.status==1?(i(),r(d,{key:0,type:"success"},{default:e(()=>[l("\u8FD0\u884C\u4E2D")]),_:1})):_("",!0),a.status==2?(i(),r(d,{key:1,type:"info"},{default:e(()=>[l("\u5DF2\u505C\u6B62")]),_:1})):_("",!0),a.status==3?(i(),r(d,{key:2,type:"danger"},{default:e(()=>[l("\u9519\u8BEF")]),_:1})):_("",!0)]),_:1}),t(o,{prop:"error",label:"\u9519\u8BEF\u539F\u56E0","min-width":"120"}),t(o,{prop:"last_time",label:"\u6700\u540E\u6267\u884C\u65F6\u95F4",width:"180"}),t(o,{prop:"time",label:"\u65F6\u957F","min-width":"100"}),t(o,{prop:"max_time",label:"\u6700\u5927\u65F6\u957F","min-width":"100"}),t(o,{label:"\u64CD\u4F5C",width:"120",fixed:"right"},{default:e(({row:a})=>[y("div",M,[t(u,{type:"primary",link:""},{default:e(()=>[p((i(),r(h,{to:{path:n(F)("crontab.crontab/add:edit"),query:{id:a.id}}},{default:e(()=>[t(u,{type:"primary",link:""},{default:e(()=>[l(" \u7F16\u8F91 ")]),_:1})]),_:2},1032,["to"])),[[c,["crontab.crontab/edit","crontab.crontab/add:edit"]]])]),_:2},1024),p((i(),r(u,{type:"danger",link:"",onClick:H=>g(a.id)},{default:e(()=>[l(" \u5220\u9664 ")]),_:2},1032,["onClick"])),[[c,["crontab.crontab/delete"]]])])]),_:1})]),_:1},8,["data"])),[[B,n(s).loading]]),y("div",O,[t(E,{modelValue:n(s),"onUpdate:modelValue":b[0]||(b[0]=a=>K(s)?s.value=a:null),onChange:n(m)},null,8,["modelValue","onChange"])])]),_:1})])}}});export{Lt as default}; diff --git a/public/admin/assets/index.a3be6197.js b/public/admin/assets/index.a3be6197.js new file mode 100644 index 000000000..6b6490098 --- /dev/null +++ b/public/admin/assets/index.a3be6197.js @@ -0,0 +1 @@ +import{_ as b}from"./index.be5645df.js";import{G as v,H as V,C as x,B as w,D as R,I as k,w as y}from"./element-plus.4328d892.js";import{r as d}from"./index.ed71ac09.js";import{d as I,$ as N,af as U,o as _,c as A,U as o,L as t,u,a as r,R as i,M as G,K as j}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";function q(){return d.get({url:"/recharge.recharge/getConfig"})}function H(s){return d.post({url:"/recharge.recharge/setConfig",params:s})}const K=r("span",{class:"font-extrabold text-lg"},"\u5145\u503C\u8BBE\u7F6E",-1),L=r("div",{class:"form-tips"},"\u5173\u95ED\u6216\u5F00\u542F\u5145\u503C\u529F\u80FD\uFF0C\u5173\u95ED\u540E\u5C06\u4E0D\u663E\u793A\u5145\u503C\u5165\u53E3",-1),M=r("div",{class:"form-tips"}," \u6700\u4F4E\u5145\u503C\u91D1\u989D\u8981\u6C42\uFF0C\u4E0D\u586B\u6216\u586B0\u8868\u793A\u4E0D\u9650\u5236\u6700\u4F4E\u5145\u503C\u91D1\u989D ",-1),bt=I({__name:"index",setup(s){const e=N({status:1,min_amount:""}),l=async()=>{const m=await q();Object.assign(e,m)},f=async()=>{await H(e),l()};return l(),(m,a)=>{const p=v,E=V,c=x,g=w,C=R,D=k,F=y,h=b,B=U("perms");return _(),A("div",null,[o(D,{shadow:"never",class:"!border-none"},{header:t(()=>[K]),default:t(()=>[o(C,{model:u(e),"label-width":"120px"},{default:t(()=>[o(c,{label:"\u72B6\u6001"},{default:t(()=>[r("div",null,[o(E,{modelValue:u(e).status,"onUpdate:modelValue":a[0]||(a[0]=n=>u(e).status=n),class:"ml-4"},{default:t(()=>[o(p,{label:1},{default:t(()=>[i("\u5F00\u542F")]),_:1}),o(p,{label:0},{default:t(()=>[i("\u5173\u95ED")]),_:1})]),_:1},8,["modelValue"]),L])]),_:1}),o(c,{label:"\u6700\u4F4E\u5145\u503C\u91D1\u989D"},{default:t(()=>[r("div",null,[o(g,{modelValue:u(e).min_amount,"onUpdate:modelValue":a[1]||(a[1]=n=>u(e).min_amount=n),placeholder:"\u8BF7\u8F93\u5165\u6700\u4F4E\u5145\u503C\u91D1\u989D",clearable:""},null,8,["modelValue"]),M])]),_:1})]),_:1},8,["model"])]),_:1}),G((_(),j(h,null,{default:t(()=>[o(F,{type:"primary",onClick:f},{default:t(()=>[i("\u4FDD\u5B58")]),_:1})]),_:1})),[[B,["recharge.recharge/setConfig"]]])])}}});export{bt as default}; diff --git a/public/admin/assets/index.a3c81261.js b/public/admin/assets/index.a3c81261.js new file mode 100644 index 000000000..004a05f4d --- /dev/null +++ b/public/admin/assets/index.a3c81261.js @@ -0,0 +1 @@ +import{_ as T}from"./index.fd04a214.js";import{r as C,b as N,d as $}from"./index.37f7aea6.js";import{G as z,H as G,C as L,D as q,I as H,w as K,B as M,O,P}from"./element-plus.4328d892.js";import{d as x,$ as j,e as J,af as Q,o as i,c as h,U as t,L as e,u as c,a,R as d,M as E,K as F,T as W,a7 as X,S as Y,bf as Z,be as tt}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./lodash.08438971.js";import"./@amap.8a62addd.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./@element-plus.a074d1f6.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";function et(){return C.get({url:"/setting.hot_search/getConfig"})}function ot(r){return C.post({url:"/setting.hot_search/setConfig",params:r})}const m=r=>(Z("data-v-bd261930"),r=r(),tt(),r),at={class:"hot-search"},st=m(()=>a("div",{class:"form-tips"},"\u9ED8\u8BA4\u5F00\u542F\uFF0C\u5173\u95ED\u5219\u524D\u7AEF\u4E0D\u663E\u793A\u8BE5\u529F\u80FD",-1)),nt={class:"lg:flex"},lt={class:"flex-1 min-w-0"},rt={class:"hot-search-phone mt-4 lg:mt-0 lg:ml-4 flex-none"},ut=m(()=>a("div",{class:"mb-4 text-center"},"- \u70ED\u641C\u9884\u89C8\u56FE -",-1)),it={class:"hot-search-phone-content"},ct={class:"search-com"},dt={class:"search-con flex items-center px-[15px]"},mt=m(()=>a("span",{class:"ml-[5px]"},"\u8BF7\u8F93\u5165\u5173\u952E\u8BCD\u641C\u7D22",-1)),_t=m(()=>a("div",{class:"hot-search-title"},"\u70ED\u95E8\u641C\u7D22",-1)),pt={class:"hot-search-text"},ht=x({name:"search"}),ft=x({...ht,setup(r){const n=j({status:1,data:[]}),B=J(()=>n.data.filter(o=>o.name).sort((o,l)=>l.sort-o.sort)),f=async()=>{try{const o=await et();for(const l in n)n[l]=o[l]}catch(o){console.log("\u83B7\u53D6=>",o)}},y=()=>{n.data.push({name:"",sort:0})},V=o=>{n.data.splice(o,1)},w=async()=>{try{await ot(n),f()}catch(o){console.log("\u4FDD\u5B58=>",o)}};return f(),(o,l)=>{const b=z,k=G,S=L,I=q,g=H,_=K,D=M,p=O,U=P,A=N,R=T,v=Q("perms");return i(),h("div",at,[t(g,{class:"!border-none",shadow:"never"},{default:e(()=>[t(I,{ref:"formRef",model:c(n),"label-width":"100px"},{default:e(()=>[t(S,{label:"\u529F\u80FD\u72B6\u6001",style:{"margin-bottom":"0"}},{default:e(()=>[a("div",null,[t(k,{modelValue:c(n).status,"onUpdate:modelValue":l[0]||(l[0]=s=>c(n).status=s)},{default:e(()=>[t(b,{label:1},{default:e(()=>[d("\u5F00\u542F")]),_:1}),t(b,{label:0},{default:e(()=>[d("\u5173\u95ED")]),_:1})]),_:1},8,["modelValue"]),st])]),_:1})]),_:1},8,["model"])]),_:1}),t(g,{class:"!border-none mt-4",shadow:"never"},{default:e(()=>[a("div",nt,[a("div",lt,[t(_,{type:"primary",class:"mb-4",onClick:y},{default:e(()=>[d("\u6DFB\u52A0")]),_:1}),t(U,{size:"large",data:c(n).data},{default:e(()=>[t(p,{label:"\u5173\u952E\u8BCD",prop:"describe","min-width":"160"},{default:e(({row:s})=>[t(D,{modelValue:s.name,"onUpdate:modelValue":u=>s.name=u,clearable:"",placeholder:"\u8BF7\u8F93\u5165\u5173\u952E\u5B57","show-word-limit":"",maxlength:"30"},null,8,["modelValue","onUpdate:modelValue"])]),_:1}),t(p,{label:"\u6392\u5E8F",prop:"describe","min-width":"160"},{default:e(({row:s})=>[t(D,{modelValue:s.sort,"onUpdate:modelValue":u=>s.sort=u,type:"number"},null,8,["modelValue","onUpdate:modelValue"])]),_:1}),t(p,{label:"\u64CD\u4F5C","min-width":"80",fixed:"right"},{default:e(({$index:s})=>[E((i(),F(_,{type:"danger",link:"",onClick:u=>V(s)},{default:e(()=>[d(" \u5220\u9664 ")]),_:2},1032,["onClick"])),[[v,["setting:storage:edit"]]])]),_:1})]),_:1},8,["data"])]),a("div",rt,[ut,a("div",it,[a("div",ct,[a("div",dt,[t(A,{name:"el-icon-Search",size:17}),mt])]),_t,a("div",pt,[(i(!0),h(W,null,X(c(B),(s,u)=>(i(),h("span",{key:u},Y(s.name),1))),128))])])])])]),_:1}),E((i(),F(R,null,{default:e(()=>[t(_,{type:"primary",onClick:w},{default:e(()=>[d("\u4FDD\u5B58")]),_:1})]),_:1})),[[v,["setting.hot_search/setConfig"]]])])}}});const Yt=$(ft,[["__scopeId","data-v-bd261930"]]);export{Yt as default}; diff --git a/public/admin/assets/index.a450f1bb.js b/public/admin/assets/index.a450f1bb.js new file mode 100644 index 000000000..cfa3882e9 --- /dev/null +++ b/public/admin/assets/index.a450f1bb.js @@ -0,0 +1 @@ +import{J as U,X as L,L as D}from"./element-plus.4328d892.js";import{a as P,j as p,R as y,f as m,d as R}from"./index.aa9bb752.js";import{d as V,s as _,r as f,e as C,t as j,o as c,c as g,U as b,L as k,H as N,K as I,a as v,T as q,a7 as H,S as J,Q as K}from"./@vue.51d7f2d8.js";const O=V({components:{},props:{type:{type:String,default:"image"},multiple:{type:Boolean,default:!0},limit:{type:Number,default:10},data:{type:Object,default:()=>({})},showProgress:{type:Boolean,default:!1}},emits:["change","error","success"],setup(e,{emit:a}){const h=P(),n=_(),E=f(`${p.baseUrl}${p.urlPrefix}/upload/${e.type}`),F=C(()=>({token:h.token,version:p.version})),o=f(!1),u=f([]),d=(s,l,r)=>{o.value=!0,u.value=j(r)},t=(s,l,r)=>{var S;r.every(B=>B.status=="success")&&((S=n.value)==null||S.clearFiles(),o.value=!1),a("change",l),s.code==y.SUCCESS&&a("success",s),s.code==y.FAIL&&s.msg&&m.msgError(s.msg)},i=(s,l)=>{var r;m.msgError(`${l.name}\u6587\u4EF6\u4E0A\u4F20\u5931\u8D25`),(r=n.value)==null||r.abort(l),o.value=!1,a("change",l),a("error",l)},A=()=>{m.msgError(`\u8D85\u51FA\u4E0A\u4F20\u4E0A\u9650${e.limit}\uFF0C\u8BF7\u91CD\u65B0\u4E0A\u4F20`)},$=()=>{var s;(s=n.value)==null||s.clearFiles(),o.value=!1},w=C(()=>{switch(e.type){case"image":return".jpg,.png,.gif,.jpeg";case"video":return".wmv,.avi,.mpg,.mpeg,.3gp,.mov,.mp4,.flv,.rmvb,.mkv";default:return"*"}});return{uploadRefs:n,action:E,headers:F,visible:o,fileList:u,getAccept:w,handleProgress:d,handleSuccess:t,handleError:i,handleExceed:A,handleClose:$}}}),Q={class:"upload"},T={class:"file-list p-4"},X={class:"flex-1"};function z(e,a,h,n,E,F){const o=U,u=L,d=D;return c(),g("div",Q,[b(o,{ref:"uploadRefs",action:e.action,multiple:e.multiple,limit:e.limit,"show-file-list":!1,headers:e.headers,data:e.data,"on-progress":e.handleProgress,"on-success":e.handleSuccess,"on-exceed":e.handleExceed,"on-error":e.handleError,accept:e.getAccept},{default:k(()=>[N(e.$slots,"default")]),_:3},8,["action","multiple","limit","headers","data","on-progress","on-success","on-exceed","on-error","accept"]),e.showProgress&&e.fileList.length?(c(),I(d,{key:0,modelValue:e.visible,"onUpdate:modelValue":a[0]||(a[0]=t=>e.visible=t),title:"\u4E0A\u4F20\u8FDB\u5EA6","close-on-click-modal":!1,width:"500px",modal:!1,onClose:e.handleClose},{default:k(()=>[v("div",T,[(c(!0),g(q,null,H(e.fileList,(t,i)=>(c(),g("div",{key:i,class:"mb-5"},[v("div",null,J(t.name),1),v("div",X,[b(u,{percentage:parseInt(t.percentage)},null,8,["percentage"])])]))),128))])]),_:1},8,["modelValue","onClose"])):K("",!0)])}const Z=R(O,[["render",z]]);export{Z as U}; diff --git a/public/admin/assets/index.a56b8584.js b/public/admin/assets/index.a56b8584.js new file mode 100644 index 000000000..97fe6578d --- /dev/null +++ b/public/admin/assets/index.a56b8584.js @@ -0,0 +1 @@ +import{B as q,C as K,M as z,N as G,w as H,D as J,I as W,O as X,P as Y,Q as Z}from"./element-plus.4328d892.js";import{_ as ee}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{_ as te}from"./index.vue_vue_type_script_setup_true_lang.17266fa4.js";import{f as oe,b as ae}from"./index.ed71ac09.js";import{u as se}from"./usePaging.2ad8e1e6.js";import{u as le}from"./useDictOptions.8d37e54b.js";import{_ as ne,a as ie,b as ue}from"./edit.vue_vue_type_script_setup_true_name_categoryBusinessEdit_lang.5b1401eb.js";import"./lodash.08438971.js";import{d as $,s as re,r as D,$ as pe,af as me,o as n,c as V,U as e,L as a,u as o,T as ce,a7 as de,K as r,R as m,M as _,a as x,k as _e,Q as fe,n as w}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.b940d6e3.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";const be={class:"mt-4"},ve={class:"flex mt-4 justify-end"},ge=$({name:"categoryBusinessLists"}),it=$({...ge,setup(ye){const c=re(),f=D(!1),i=pe({name:"",sort:"",status:""}),h=D([]),L=l=>{h.value=l.map(({id:t})=>t)},{dictData:k}=le("show_status"),{pager:b,getLists:g,resetParams:P,resetPage:N}=se({fetchFun:ue,params:i}),R=async()=>{var l;f.value=!0,await w(),(l=c.value)==null||l.open("add")},S=async l=>{var t,u;f.value=!0,await w(),(t=c.value)==null||t.open("check"),(u=c.value)==null||u.setFormData(l)},T=async l=>{var t,u;f.value=!0,await w(),(t=c.value)==null||t.open("edit"),(u=c.value)==null||u.setFormData(l)},E=async l=>{await oe.confirm("\u786E\u5B9A\u8981\u5220\u9664\uFF1F"),await ie({id:l}),g()};return g().then(l=>{console.log(l)}),(l,t)=>{const u=q,y=K,F=z,U=G,p=H,A=J,B=W,I=ae,d=X,M=te,O=Y,Q=ee,v=me("perms"),j=Z;return n(),V("div",null,[e(B,{class:"!border-none mb-4",shadow:"never"},{default:a(()=>[e(A,{class:"mb-[-16px]",model:o(i),inline:""},{default:a(()=>[e(y,{label:"\u540D\u79F0",prop:"name"},{default:a(()=>[e(u,{class:"w-[280px]",modelValue:o(i).name,"onUpdate:modelValue":t[0]||(t[0]=s=>o(i).name=s),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u540D\u79F0"},null,8,["modelValue"])]),_:1}),e(y,{label:"\u6392\u5E8F",prop:"sort"},{default:a(()=>[e(u,{class:"w-[280px]",modelValue:o(i).sort,"onUpdate:modelValue":t[1]||(t[1]=s=>o(i).sort=s),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u6392\u5E8F"},null,8,["modelValue"])]),_:1}),e(y,{label:"\u72B6\u6001",prop:"status"},{default:a(()=>[e(U,{class:"w-[280px]",modelValue:o(i).status,"onUpdate:modelValue":t[2]||(t[2]=s=>o(i).status=s),clearable:"",placeholder:"\u8BF7\u9009\u62E9\u72B6\u6001"},{default:a(()=>[e(F,{label:"\u5168\u90E8",value:""}),(n(!0),V(ce,null,de(o(k).show_status,(s,C)=>(n(),r(F,{key:C,label:s.name,value:s.value},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1}),e(y,null,{default:a(()=>[e(p,{type:"primary",onClick:o(N)},{default:a(()=>[m("\u67E5\u8BE2")]),_:1},8,["onClick"]),e(p,{onClick:o(P)},{default:a(()=>[m("\u91CD\u7F6E")]),_:1},8,["onClick"])]),_:1})]),_:1},8,["model"])]),_:1}),_((n(),r(B,{class:"!border-none",shadow:"never"},{default:a(()=>[_((n(),r(p,{type:"primary",onClick:R},{icon:a(()=>[e(I,{name:"el-icon-Plus"})]),default:a(()=>[m(" \u65B0\u589E ")]),_:1})),[[v,["category_business.category_business/add"]]]),_((n(),r(p,{disabled:!o(h).length,onClick:t[3]||(t[3]=s=>E(o(h)))},{default:a(()=>[m(" \u5220\u9664 ")]),_:1},8,["disabled"])),[[v,["category_business.category_business/delete"]]]),x("div",be,[e(O,{data:o(b).lists,onSelectionChange:L,"row-key":"id","tree-props":{children:"children",hasChildren:"hasChildren"}},{default:a(()=>[e(d,{label:"id",prop:"id","show-overflow-tooltip":""}),e(d,{label:"\u540D\u79F0",prop:"name","show-overflow-tooltip":""}),e(d,{label:"\u4E0A\u7EA7id",prop:"pid","show-overflow-tooltip":""}),e(d,{label:"\u6392\u5E8F",prop:"sort","show-overflow-tooltip":""}),e(d,{label:"\u72B6\u6001",prop:"status"},{default:a(({row:s})=>[e(M,{options:o(k).show_status,value:s.status},null,8,["options","value"])]),_:1}),e(d,{label:"\u64CD\u4F5C",width:"180",align:"center",fixed:"right"},{default:a(({row:s})=>[_((n(),r(p,{type:"primary",link:"",onClick:C=>S(s)},{default:a(()=>[m(" \u8BE6\u60C5 ")]),_:2},1032,["onClick"])),[[v,["category_business.category_business/edit","category_business.category_business/delete","category_business.category_business/edit"]]]),_((n(),r(p,{type:"primary",link:"",onClick:C=>T(s)},{default:a(()=>[m(" \u7F16\u8F91 ")]),_:2},1032,["onClick"])),[[v,["category_business.category_business/edit"]]]),_((n(),r(p,{type:"danger",link:"",onClick:C=>E(s.id)},{default:a(()=>[m(" \u5220\u9664 ")]),_:2},1032,["onClick"])),[[v,["category_business.category_business/delete"]]])]),_:1})]),_:1},8,["data"])]),x("div",ve,[e(Q,{modelValue:o(b),"onUpdate:modelValue":t[4]||(t[4]=s=>_e(b)?b.value=s:null),onChange:o(g)},null,8,["modelValue","onChange"])])]),_:1})),[[j,o(b).loading]]),o(f)?(n(),r(ne,{key:0,ref_key:"editRef",ref:c,"dict-data":o(k),onSuccess:o(g),onClose:t[5]||(t[5]=s=>f.value=!1)},null,8,["dict-data","onSuccess"])):fe("",!0)])}}});export{it as default}; diff --git a/public/admin/assets/index.a66c361d.js b/public/admin/assets/index.a66c361d.js new file mode 100644 index 000000000..2b51e132e --- /dev/null +++ b/public/admin/assets/index.a66c361d.js @@ -0,0 +1 @@ +import{B as M,C as O,w as z,D as G,I as H,O as J,P as W,Q as X}from"./element-plus.4328d892.js";import{_ as Y}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{f as Z,b as ee}from"./index.ed71ac09.js";import{u as oe}from"./usePaging.2ad8e1e6.js";import{u as te}from"./useDictOptions.8d37e54b.js";import{e as ae,a as le}from"./user_role.813f0de8.js";import"./lodash.08438971.js";import{_ as se}from"./edit.vue_vue_type_script_setup_true_name_userRoleEdit_lang.98d78f95.js";import{_ as ne}from"./auth.vue_vue_type_script_setup_true_lang.4521aeca.js";import{d as R,s as B,r as y,$ as re,af as ie,o as n,c as ue,U as o,L as a,u as t,R as p,M as c,K as i,a as $,k as me,Q as x,n as D}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.b940d6e3.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./user_menu.aabbc7a8.js";const pe={class:"mt-4"},de={class:"flex mt-4 justify-end"},ce=R({name:"userRoleLists"}),lo=R({...ce,setup(_e){const C=B(),F=y(!1),d=re({name:"",desc:"",menu_arr:"",sort:""}),k=y([]),P=s=>{k.value=s.map(({id:e})=>e)},{dictData:S}=te(""),{pager:_,getLists:f,resetParams:U,resetPage:L}=oe({fetchFun:le,params:d}),A=async()=>{var s;F.value=!0,await D(),(s=C.value)==null||s.open("add")},I=async s=>{var e,r;F.value=!0,await D(),(e=C.value)==null||e.open("edit"),(r=C.value)==null||r.setFormData(s)},w=B(),h=y(!1),N=async s=>{var e,r;h.value=!0,await D(),(e=w.value)==null||e.open(),(r=w.value)==null||r.setFormData(s)},g=async s=>{await Z.confirm("\u786E\u5B9A\u8981\u5220\u9664\uFF1F"),await ae({id:s}),f()};return f(),(s,e)=>{const r=M,b=O,u=z,T=G,E=H,Q=ee,m=J,j=W,q=Y,v=ie("perms"),K=X;return n(),ue("div",null,[o(E,{class:"!border-none mb-4",shadow:"never"},{default:a(()=>[o(T,{class:"mb-[-16px]",model:t(d),inline:""},{default:a(()=>[o(b,{label:"\u540D\u79F0",prop:"name"},{default:a(()=>[o(r,{class:"w-[280px]",modelValue:t(d).name,"onUpdate:modelValue":e[0]||(e[0]=l=>t(d).name=l),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u540D\u79F0"},null,8,["modelValue"])]),_:1}),o(b,{label:"\u63CF\u8FF0",prop:"desc"},{default:a(()=>[o(r,{class:"w-[280px]",modelValue:t(d).desc,"onUpdate:modelValue":e[1]||(e[1]=l=>t(d).desc=l),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u63CF\u8FF0"},null,8,["modelValue"])]),_:1}),o(b,null,{default:a(()=>[o(u,{type:"primary",onClick:t(L)},{default:a(()=>[p("\u67E5\u8BE2")]),_:1},8,["onClick"]),o(u,{onClick:t(U)},{default:a(()=>[p("\u91CD\u7F6E")]),_:1},8,["onClick"])]),_:1})]),_:1},8,["model"])]),_:1}),c((n(),i(E,{class:"!border-none",shadow:"never"},{default:a(()=>[c((n(),i(u,{type:"primary",onClick:A},{icon:a(()=>[o(Q,{name:"el-icon-Plus"})]),default:a(()=>[p(" \u65B0\u589E ")]),_:1})),[[v,["user.user_role/add"]]]),c((n(),i(u,{disabled:!t(k).length,onClick:e[2]||(e[2]=l=>g(t(k)))},{default:a(()=>[p(" \u5220\u9664 ")]),_:1},8,["disabled"])),[[v,["user.user_role/delete"]]]),$("div",pe,[o(j,{data:t(_).lists,onSelectionChange:P},{default:a(()=>[o(m,{type:"selection",width:"55"}),o(m,{label:"ID",prop:"id","show-overflow-tooltip":""}),o(m,{label:"\u540D\u79F0",prop:"name","show-overflow-tooltip":""}),o(m,{label:"\u63CF\u8FF0",prop:"desc","show-overflow-tooltip":""}),o(m,{label:"\u6743\u9650id",prop:"menu_arr","show-overflow-tooltip":""}),o(m,{label:"\u6392\u5E8F",prop:"sort","show-overflow-tooltip":""}),o(m,{label:"\u64CD\u4F5C",width:"210",fixed:"right"},{default:a(({row:l})=>[c((n(),i(u,{type:"primary",link:"",onClick:V=>I(l)},{default:a(()=>[p(" \u7F16\u8F91 ")]),_:2},1032,["onClick"])),[[v,["user.user_role/edit"]]]),c((n(),i(u,{link:"",type:"primary",onClick:V=>N(l)},{default:a(()=>[p(" \u5206\u914D\u6743\u9650 ")]),_:2},1032,["onClick"])),[[v,["auth.role/edit"]]]),c((n(),i(u,{type:"danger",link:"",onClick:V=>g(l.id)},{default:a(()=>[p(" \u5220\u9664 ")]),_:2},1032,["onClick"])),[[v,["user.user_role/delete"]]])]),_:1})]),_:1},8,["data"])]),$("div",de,[o(q,{modelValue:t(_),"onUpdate:modelValue":e[3]||(e[3]=l=>me(_)?_.value=l:null),onChange:t(f)},null,8,["modelValue","onChange"])])]),_:1})),[[K,t(_).loading]]),t(F)?(n(),i(se,{key:0,ref_key:"editRef",ref:C,"dict-data":t(S),onSuccess:t(f),onClose:e[4]||(e[4]=l=>F.value=!1)},null,8,["dict-data","onSuccess"])):x("",!0),t(h)?(n(),i(ne,{key:1,ref_key:"authRef",ref:w,onSuccess:t(f),onClose:e[5]||(e[5]=l=>h.value=!1)},null,8,["onSuccess"])):x("",!0)])}}});export{lo as default}; diff --git a/public/admin/assets/index.a784d747.js b/public/admin/assets/index.a784d747.js new file mode 100644 index 000000000..9f7832f6b --- /dev/null +++ b/public/admin/assets/index.a784d747.js @@ -0,0 +1 @@ +import{B as z,C as L,w as P,D as R,I as U,O as I,P as N,Q as S}from"./element-plus.4328d892.js";import{_ as $}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{u as T}from"./usePaging.2ad8e1e6.js";import{u as Q}from"./useDictOptions.a61fcf9f.js";import{_ as j,a as q}from"./edit.vue_vue_type_script_setup_true_name_companyFormEdit_lang.95b5864b.js";import"./lodash.08438971.js";import"./index.aa9bb752.js";import{d as F,s as K,r as w,$ as M,o as i,c as O,U as o,L as a,u as e,R as E,M as G,K as C,a as b,k as H,Q as J}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.fa872673.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const W={class:"mt-4"},X={class:"flex mt-4 justify-end"},Y=F({name:"companyFormLists"}),Qo=F({...Y,setup(Z){const h=K(),d=w(!1),l=M({company_name:"",organization_code:"",address:"",master_name:"",type:"",master_email:"",notes:""}),v=w([]),g=c=>{v.value=c.map(({id:t})=>t)},{dictData:D}=Q(""),{pager:s,getLists:p,resetParams:V,resetPage:x}=T({fetchFun:q,params:l});return p(),(c,t)=>{const u=z,m=L,_=P,y=R,f=U,r=I,B=N,k=$,A=S;return i(),O("div",null,[o(f,{class:"!border-none mb-4",shadow:"never"},{default:a(()=>[o(y,{class:"mb-[-16px]",model:e(l),inline:""},{default:a(()=>[o(m,{label:"\u5546\u6237\u540D\u79F0",prop:"company_name"},{default:a(()=>[o(u,{class:"w-[280px]",modelValue:e(l).company_name,"onUpdate:modelValue":t[0]||(t[0]=n=>e(l).company_name=n),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u5546\u6237\u540D\u79F0"},null,8,["modelValue"])]),_:1}),o(m,{label:"\u793E\u4F1A\u4EE3\u7801",prop:"organization_code"},{default:a(()=>[o(u,{class:"w-[280px]",modelValue:e(l).organization_code,"onUpdate:modelValue":t[1]||(t[1]=n=>e(l).organization_code=n),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u793E\u4F1A\u4EE3\u7801"},null,8,["modelValue"])]),_:1}),o(m,{label:"\u6CD5\u4EBA\u540D\u79F0",prop:"master_name"},{default:a(()=>[o(u,{class:"w-[280px]",modelValue:e(l).master_name,"onUpdate:modelValue":t[2]||(t[2]=n=>e(l).master_name=n),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u6CD5\u4EBA\u540D\u79F0"},null,8,["modelValue"])]),_:1}),o(m,null,{default:a(()=>[o(_,{type:"primary",onClick:e(x)},{default:a(()=>[E("\u67E5\u8BE2")]),_:1},8,["onClick"]),o(_,{onClick:e(V)},{default:a(()=>[E("\u91CD\u7F6E")]),_:1},8,["onClick"])]),_:1})]),_:1},8,["model"])]),_:1}),G((i(),C(f,{class:"!border-none",shadow:"never"},{default:a(()=>[b("div",W,[o(B,{data:e(s).lists,onSelectionChange:g},{default:a(()=>[o(r,{label:"ID",prop:"id",width:"150px","show-overflow-tooltip":""}),o(r,{label:"\u5546\u6237\u540D\u79F0",width:"330px",prop:"company_name","show-overflow-tooltip":""}),o(r,{label:"\u793E\u4F1A\u4EE3\u7801",prop:"organization_code",width:"250px","show-overflow-tooltip":""}),o(r,{label:"\u8BE6\u7EC6\u5730\u5740",width:"350px",prop:"address","show-overflow-tooltip":""}),o(r,{label:"\u6CD5\u4EBA\u540D\u79F0",width:"120px",prop:"master_name","show-overflow-tooltip":""}),o(r,{label:"\u5907\u6CE8",prop:"notes","show-overflow-tooltip":""})]),_:1},8,["data"])]),b("div",X,[o(k,{modelValue:e(s),"onUpdate:modelValue":t[3]||(t[3]=n=>H(s)?s.value=n:null),onChange:e(p)},null,8,["modelValue","onChange"])])]),_:1})),[[A,e(s).loading]]),e(d)?(i(),C(j,{key:0,ref_key:"editRef",ref:h,"dict-data":e(D),onSuccess:e(p),onClose:t[4]||(t[4]=n=>d.value=!1)},null,8,["dict-data","onSuccess"])):J("",!0)])}}});export{Qo as default}; diff --git a/public/admin/assets/index.a7fe2524.js b/public/admin/assets/index.a7fe2524.js new file mode 100644 index 000000000..04fc9fb9d --- /dev/null +++ b/public/admin/assets/index.a7fe2524.js @@ -0,0 +1 @@ +import{B as T,C as $,M as O,N as q,w as M,D as Q,I as j,O as z,t as G,P as H,Q as J}from"./element-plus.4328d892.js";import{_ as W}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{k,f as X,b as Y,_ as Z}from"./index.37f7aea6.js";import{d as D,$ as ee,b8 as te,a4 as ae,af as le,o as r,c as V,U as e,L as a,u as l,a8 as oe,T as ie,a7 as ne,K as u,R as p,a as y,M as _,Q as re,k as se}from"./@vue.51d7f2d8.js";import{h as ue,k as me,l as ce,m as de}from"./article.cb24b6c9.js";import{a as pe}from"./useDictOptions.a45fc8ac.js";import{u as _e}from"./usePaging.2ad8e1e6.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const fe={class:"article-lists"},he={class:"flex justify-end mt-4"},be=D({name:"articleLists"}),lt=D({...be,setup(we){const n=ee({title:"",cid:"",is_show:""}),{pager:m,getLists:s,resetPage:v,resetParams:x}=_e({fetchFun:de,params:n}),{optionsData:B}=pe({article_cate:{api:ue}}),A=async(f,o)=>{try{await me({id:o,is_show:f}),s()}catch{s()}},P=async f=>{await X.confirm("\u786E\u5B9A\u8981\u5220\u9664\uFF1F"),await ce({id:f}),s()};return te(()=>{s()}),s(),(f,o)=>{const E=T,h=$,c=O,C=q,d=M,U=Q,g=j,L=Y,F=ae("router-link"),i=z,N=Z,S=G,I=H,K=W,b=le("perms"),R=J;return r(),V("div",fe,[e(g,{class:"!border-none",shadow:"never"},{default:a(()=>[e(U,{ref:"formRef",class:"mb-[-16px]",model:l(n),inline:!0},{default:a(()=>[e(h,{label:"\u6587\u7AE0\u6807\u9898"},{default:a(()=>[e(E,{class:"w-[280px]",modelValue:l(n).title,"onUpdate:modelValue":o[0]||(o[0]=t=>l(n).title=t),clearable:"",onKeyup:oe(l(v),["enter"])},null,8,["modelValue","onKeyup"])]),_:1}),e(h,{label:"\u680F\u76EE\u540D\u79F0"},{default:a(()=>[e(C,{class:"w-[280px]",modelValue:l(n).cid,"onUpdate:modelValue":o[1]||(o[1]=t=>l(n).cid=t)},{default:a(()=>[e(c,{label:"\u5168\u90E8",value:""}),(r(!0),V(ie,null,ne(l(B).article_cate,t=>(r(),u(c,{key:t.id,label:t.name,value:t.id},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1}),e(h,{label:"\u6587\u7AE0\u72B6\u6001"},{default:a(()=>[e(C,{class:"w-[280px]",modelValue:l(n).is_show,"onUpdate:modelValue":o[2]||(o[2]=t=>l(n).is_show=t)},{default:a(()=>[e(c,{label:"\u5168\u90E8",value:""}),e(c,{label:"\u663E\u793A",value:1}),e(c,{label:"\u9690\u85CF",value:0})]),_:1},8,["modelValue"])]),_:1}),e(h,null,{default:a(()=>[e(d,{type:"primary",onClick:l(v)},{default:a(()=>[p("\u67E5\u8BE2")]),_:1},8,["onClick"]),e(d,{onClick:l(x)},{default:a(()=>[p("\u91CD\u7F6E")]),_:1},8,["onClick"])]),_:1})]),_:1},8,["model"])]),_:1}),e(g,{class:"!border-none mt-4",shadow:"never"},{default:a(()=>[y("div",null,[_((r(),u(F,{to:{path:l(k)("article.article/add:edit")}},{default:a(()=>[e(d,{type:"primary",class:"mb-4"},{icon:a(()=>[e(L,{name:"el-icon-Plus"})]),default:a(()=>[p(" \u53D1\u5E03\u6587\u7AE0 ")]),_:1})]),_:1},8,["to"])),[[b,["article.article/add","article.article/add:edit"]]])]),_((r(),u(I,{size:"large",data:l(m).lists},{default:a(()=>[e(i,{label:"ID",prop:"id","min-width":"80"}),e(i,{label:"\u5C01\u9762","min-width":"100"},{default:a(({row:t})=>[t.image?(r(),u(N,{key:0,src:t.image,width:60,height:45,"preview-src-list":[t.image],"preview-teleported":"",fit:"contain"},null,8,["src","preview-src-list"])):re("",!0)]),_:1}),e(i,{label:"\u6807\u9898",prop:"title","min-width":"160","show-tooltip-when-overflow":""}),e(i,{label:"\u680F\u76EE",prop:"cate_name","min-width":"100"}),e(i,{label:"\u4F5C\u8005",prop:"author","min-width":"120"}),e(i,{label:"\u6D4F\u89C8\u91CF",prop:"click","min-width":"100"}),e(i,{label:"\u72B6\u6001","min-width":"100"},{default:a(({row:t})=>[_(e(S,{modelValue:t.is_show,"onUpdate:modelValue":w=>t.is_show=w,"active-value":1,"inactive-value":0,onChange:w=>A(w,t.id)},null,8,["modelValue","onUpdate:modelValue","onChange"]),[[b,["article.article/updateStatus"]]])]),_:1}),e(i,{label:"\u6392\u5E8F",prop:"sort","min-width":"100"}),e(i,{label:"\u53D1\u5E03\u65F6\u95F4",prop:"create_time","min-width":"120"}),e(i,{label:"\u64CD\u4F5C",width:"120",fixed:"right"},{default:a(({row:t})=>[_((r(),u(d,{type:"primary",link:""},{default:a(()=>[e(F,{to:{path:l(k)("article.article/add:edit"),query:{id:t.id}}},{default:a(()=>[p(" \u7F16\u8F91 ")]),_:2},1032,["to"])]),_:2},1024)),[[b,["article.article/edit","article.article/add:edit"]]]),_((r(),u(d,{type:"danger",link:"",onClick:w=>P(t.id)},{default:a(()=>[p(" \u5220\u9664 ")]),_:2},1032,["onClick"])),[[b,["article.article/delete"]]])]),_:1})]),_:1},8,["data"])),[[R,l(m).loading]]),y("div",he,[e(K,{modelValue:l(m),"onUpdate:modelValue":o[3]||(o[3]=t=>se(m)?m.value=t:null),onChange:l(s)},null,8,["modelValue","onChange"])])]),_:1})])}}});export{lt as default}; diff --git a/public/admin/assets/index.a887f951.js b/public/admin/assets/index.a887f951.js new file mode 100644 index 000000000..c4d3472b0 --- /dev/null +++ b/public/admin/assets/index.a887f951.js @@ -0,0 +1 @@ +import{B as Y,C as Z,M as ee,N as te,w as le,D as ae,I as oe,O as ue,P as ne,Q as se}from"./element-plus.4328d892.js";import{_ as ie}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{f as pe,b as de,d as re}from"./index.37f7aea6.js";import{u as me}from"./vue-router.9f65afb1.js";import{u as ce}from"./usePaging.2ad8e1e6.js";import{u as _e}from"./useDictOptions.a45fc8ac.js";import{f as fe,a as be}from"./map.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.0177b6b6.js";import{d as P,s as Fe,r as w,$ as L,af as ye,o as n,c as E,U as l,L as o,u as e,T as R,a7 as q,K as p,R as f,M as v,a as C,S as ve,k as Be,Q as we,n as I}from"./@vue.51d7f2d8.js";import"./lodash.08438971.js";import{_ as ke}from"./edit.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.43063e2b.js";import{_ as Ee}from"./edit_admin.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.ef132330.js";import{d as Ce}from"./dict.58face92.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./axios.105476b3.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.5759a1a6.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./dialog_index_personnel.vue_vue_type_script_setup_true_name_companyLists_lang.7fc490f9.js";import"./role.8d2a6d5e.js";const De={class:"mt-4"},Ve={class:"flex mt-4 justify-end"},he=P({name:"taskTemplateLists"}),xe=P({...he,setup(ge){var g,A,T;const m=Fe(),D=w([]),c=w(!1),b=me(),u=L({id:"",company_id:"",title:"",admin_id:"",money:"",type:"",status:"",content:""}),V=w(10);(g=b.query)!=null&&g.id&&(u.id=b.query.id),(A=b.query)!=null&&A.company_id&&(u.company_id=b.query.company_id),((T=b.query)==null?void 0:T.company_type)==41&&(V.value=15);const N=L([{id:1,name:"\u663E\u793A"},{id:2,name:"\u9690\u85CF"}]),k=w([]),M=s=>{k.value=s.map(({id:a})=>a)},{dictData:h}=_e(""),{pager:F,getLists:y,resetParams:O,resetPage:Q}=ce({fetchFun:be,params:u}),j=async()=>{var s,a;c.value=!0,await I(),(s=m.value)==null||s.open("add"),(a=m.value)==null||a.setFormData({company_id:u.company_id})},K=async s=>{var a,d;c.value=!0,await I(),(a=m.value)==null||a.open("edit"),(d=m.value)==null||d.setFormData(s)},x=async s=>{await pe.confirm("\u786E\u5B9A\u8981\u5220\u9664\uFF1F"),await fe({id:s}),y()};return Ce({type_id:10}).then(s=>{D.value=s.lists}),y(),(s,a)=>{const d=Y,r=Z,$=ee,S=te,_=le,z=ae,U=oe,G=de,i=ue,H=ne,J=ie,B=ye("perms"),W=se;return n(),E("div",null,[l(U,{class:"!border-none mb-4",shadow:"never"},{default:o(()=>[l(z,{class:"mb-[-16px] formtabel",model:e(u),inline:""},{default:o(()=>[l(r,{"label-width":"100px",label:"\u4EFB\u52A1\u540D\u79F0",prop:"title"},{default:o(()=>[l(d,{class:"w-[280px]",modelValue:e(u).title,"onUpdate:modelValue":a[0]||(a[0]=t=>e(u).title=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u4EFB\u52A1\u540D\u79F0"},null,8,["modelValue"])]),_:1}),l(r,{"label-width":"100px",label:"\u521B\u5EFA\u4EBA",prop:"admin_id"},{default:o(()=>[l(d,{class:"w-[280px]",modelValue:e(u).admin_id,"onUpdate:modelValue":a[1]||(a[1]=t=>e(u).admin_id=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u521B\u5EFA\u4EBA"},null,8,["modelValue"])]),_:1}),l(r,{"label-width":"100px",label:"\u91D1\u989D",prop:"money"},{default:o(()=>[l(d,{class:"w-[280px]",modelValue:e(u).money,"onUpdate:modelValue":a[2]||(a[2]=t=>e(u).money=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u91D1\u989D"},null,8,["modelValue"])]),_:1}),l(r,{"label-width":"100px",label:"\u4EFB\u52A1\u7C7B\u578B",prop:"type"},{default:o(()=>[l(S,{modelValue:e(u).type,"onUpdate:modelValue":a[3]||(a[3]=t=>e(u).type=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u4EFB\u52A1\u7C7B\u578B"},{default:o(()=>[(n(!0),E(R,null,q(e(D),t=>(n(),p($,{key:t.label,value:t.id,label:t.name},null,8,["value","label"]))),128))]),_:1},8,["modelValue"])]),_:1}),l(r,{"label-width":"100px",label:"\u72B6\u6001",prop:"status"},{default:o(()=>[l(S,{modelValue:e(u).status,"onUpdate:modelValue":a[4]||(a[4]=t=>e(u).status=t),clearable:"",placeholder:"\u8BF7\u9009\u62E9\u72B6\u6001"},{default:o(()=>[(n(!0),E(R,null,q(e(N),t=>(n(),p($,{key:t.label,value:t.id,label:t.name},null,8,["value","label"]))),128))]),_:1},8,["modelValue"])]),_:1}),l(r,{"label-width":"100px",label:"\u4EFB\u52A1\u63CF\u8FF0",prop:"content"},{default:o(()=>[l(d,{class:"w-[280px]",modelValue:e(u).content,"onUpdate:modelValue":a[5]||(a[5]=t=>e(u).content=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u4EFB\u52A1\u63CF\u8FF0"},null,8,["modelValue"])]),_:1}),l(r,{"label-width":"100px",label:""},{default:o(()=>[l(_,{class:"el-btn",type:"primary",onClick:e(Q)},{default:o(()=>[f("\u67E5\u8BE2")]),_:1},8,["onClick"]),l(_,{onClick:e(O)},{default:o(()=>[f("\u91CD\u7F6E")]),_:1},8,["onClick"])]),_:1})]),_:1},8,["model"])]),_:1}),v((n(),p(U,{class:"!border-none",shadow:"never"},{default:o(()=>[v((n(),p(_,{type:"primary",onClick:j},{icon:o(()=>[l(G,{name:"el-icon-Plus"})]),default:o(()=>[f(" \u65B0\u589E ")]),_:1})),[[B,["task_template.task_template/add"]]]),v((n(),p(_,{disabled:!e(k).length,onClick:a[6]||(a[6]=t=>x(e(k)))},{default:o(()=>[f(" \u5220\u9664 ")]),_:1},8,["disabled"])),[[B,["task_template.task_template/delete"]]]),C("div",De,[l(H,{data:e(F).lists,onSelectionChange:M},{default:o(()=>[l(i,{type:"selection",width:"55"}),l(i,{label:"ID",width:"80",prop:"id","show-overflow-tooltip":""}),l(i,{label:"\u4EFB\u52A1\u540D\u79F0",prop:"title","show-overflow-tooltip":""}),l(i,{label:"\u521B\u5EFA\u4EBA",prop:"admin_name","show-overflow-tooltip":""}),l(i,{label:"\u91D1\u989D",prop:"money","show-overflow-tooltip":""}),l(i,{label:"\u4EFB\u52A1\u7C7B\u578B",prop:"type_name","show-overflow-tooltip":""}),l(i,{label:"\u72B6\u6001","show-overflow-tooltip":""},{default:o(({row:t})=>[C("span",null,ve(t.status==1?"\u663E\u793A":"\u9690\u85CF"),1)]),_:1}),l(i,{label:"\u4EFB\u52A1\u63CF\u8FF0",prop:"content","show-overflow-tooltip":""}),l(i,{label:"\u64CD\u4F5C",width:"120",fixed:"right"},{default:o(({row:t})=>[v((n(),p(_,{type:"primary",link:"",onClick:X=>K(t)},{default:o(()=>[f(" \u7F16\u8F91 ")]),_:2},1032,["onClick"])),[[B,["task_template.task_template/edit"]]]),v((n(),p(_,{type:"danger",link:"",onClick:X=>x(t.id)},{default:o(()=>[f(" \u5220\u9664 ")]),_:2},1032,["onClick"])),[[B,["task_template.task_template/delete"]]])]),_:1})]),_:1},8,["data"])]),C("div",Ve,[l(J,{modelValue:e(F),"onUpdate:modelValue":a[7]||(a[7]=t=>Be(F)?F.value=t:null),onChange:e(y)},null,8,["modelValue","onChange"])])]),_:1})),[[W,e(F).loading]]),e(c)&&e(V)!=15?(n(),p(ke,{key:0,ref_key:"editRef",ref:m,"dict-data":e(h),onSuccess:e(y),onClose:a[8]||(a[8]=t=>c.value=!1)},null,8,["dict-data","onSuccess"])):e(c)?(n(),p(Ee,{key:1,ref_key:"editRef",ref:m,"dict-data":e(h),onSuccess:e(y),onClose:a[9]||(a[9]=t=>c.value=!1)},null,8,["dict-data","onSuccess"])):we("",!0)])}}});const wt=re(xe,[["__scopeId","data-v-aefc32bd"]]);export{wt as default}; diff --git a/public/admin/assets/index.a98abbee.js b/public/admin/assets/index.a98abbee.js new file mode 100644 index 000000000..1f74a0de3 --- /dev/null +++ b/public/admin/assets/index.a98abbee.js @@ -0,0 +1 @@ +import{B as j,C as O,w as H,D as J,I as W,O as X,p as Y,q as Z,r as ee,P as te,Q as oe}from"./element-plus.4328d892.js";import{_ as ae}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{k as ne,f as k,b as le}from"./index.ed71ac09.js";import{d as $,$ as A,r as re,a4 as ue,af as se,o as r,c as C,U as e,L as t,u as a,a8 as P,R as s,M as i,K as d,a as b,k as ie,Q as me}from"./@vue.51d7f2d8.js";import{b as de,c as ce,d as pe,e as _e,s as fe}from"./code.7deeaac3.js";import{u as Fe}from"./usePaging.2ad8e1e6.js";import{_ as ge}from"./data-table.vue_vue_type_script_setup_true_lang.1dc8d879.js";import{_ as Ce}from"./code-preview.vue_vue_type_script_setup_true_lang.9bab2a34.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.b940d6e3.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";const be={class:"code-generation"},we={class:"flex"},ye={class:"mt-4"},Ee={class:"flex items-center"},he={class:"flex justify-end mt-4"},ke=$({name:"codeGenerate"}),pt=$({...ke,setup(ve){const c=A({table_name:"",table_comment:""}),p=A({show:!1,loading:!1,code:[]}),{pager:f,getLists:g,resetParams:K,resetPage:w}=Fe({fetchFun:_e,params:c}),F=re([]),S=n=>{F.value=n.map(({id:o})=>o)},T=async n=>{await k.confirm("\u786E\u5B9A\u8981\u540C\u6B65\u8868\u7ED3\u6784\uFF1F"),await fe({id:n})},v=async n=>{await k.confirm("\u786E\u5B9A\u8981\u5220\u9664\uFF1F"),await de({id:n}),g()},I=async n=>{const o=await ce({id:n});p.code=o,p.show=!0},U=n=>n.some(o=>o.generate_type==1),B=async n=>{if(U(n))return k.msgError("\u751F\u6210\u65B9\u5F0F\u4E3A\u751F\u6210\u5230\u6A21\u5757\uFF0C\u8BF7\u5728\u524D\u7AEF\u5F00\u53D1\u6A21\u5F0F\u4E0B\u4F7F\u7528\uFF0C\u8BE6\u7EC6\u53C2\u8003\u6587\u6863");const o=await pe({id:n});o.file&&window.open(o.file,"_blank")},N=(n,o)=>{switch(n){case"generate":B([o.id]);break;case"sync":T(o.id);break;case"delete":v(o.id)}};return g(),(n,o)=>{const D=j,y=O,u=H,G=J,V=W,E=le,_=X,L=ue("router-link"),h=Y,M=Z,R=ee,q=te,z=ae,m=se("perms"),Q=oe;return r(),C("div",be,[e(V,{class:"!border-none",shadow:"never"},{default:t(()=>[e(G,{class:"mb-[-16px]",model:a(c),inline:""},{default:t(()=>[e(y,{label:"\u8868\u540D\u79F0"},{default:t(()=>[e(D,{class:"w-[280px]",modelValue:a(c).table_name,"onUpdate:modelValue":o[0]||(o[0]=l=>a(c).table_name=l),clearable:"",onKeyup:P(a(w),["enter"])},null,8,["modelValue","onKeyup"])]),_:1}),e(y,{label:"\u8868\u63CF\u8FF0"},{default:t(()=>[e(D,{class:"w-[280px]",modelValue:a(c).table_comment,"onUpdate:modelValue":o[1]||(o[1]=l=>a(c).table_comment=l),clearable:"",onKeyup:P(a(w),["enter"])},null,8,["modelValue","onKeyup"])]),_:1}),e(y,null,{default:t(()=>[e(u,{type:"primary",onClick:a(w)},{default:t(()=>[s("\u67E5\u8BE2")]),_:1},8,["onClick"]),e(u,{onClick:a(K)},{default:t(()=>[s("\u91CD\u7F6E")]),_:1},8,["onClick"])]),_:1})]),_:1},8,["model"])]),_:1}),i((r(),d(V,{class:"!border-none mt-4",shadow:"never"},{default:t(()=>[b("div",we,[i((r(),d(ge,{class:"inline-block mr-[10px]",onSuccess:a(g)},{default:t(()=>[e(u,{type:"primary"},{icon:t(()=>[e(E,{name:"el-icon-Plus"})]),default:t(()=>[s(" \u5BFC\u5165\u6570\u636E\u8868 ")]),_:1})]),_:1},8,["onSuccess"])),[[m,["tools.generator/selectTable"]]]),i((r(),d(u,{disabled:!a(F).length,onClick:o[2]||(o[2]=l=>v(a(F))),type:"danger"},{icon:t(()=>[e(E,{name:"el-icon-Delete"})]),default:t(()=>[s(" \u5220\u9664 ")]),_:1},8,["disabled"])),[[m,["tools.generator/delete"]]]),i((r(),d(u,{disabled:!a(F).length,onClick:o[3]||(o[3]=l=>B(a(F)))},{default:t(()=>[s(" \u751F\u6210\u4EE3\u7801 ")]),_:1},8,["disabled"])),[[m,["tools.generator/generate"]]])]),b("div",ye,[e(q,{data:a(f).lists,size:"large",onSelectionChange:S},{default:t(()=>[e(_,{type:"selection",width:"55"}),e(_,{label:"\u8868\u540D\u79F0",prop:"table_name","min-width":"180"}),e(_,{label:"\u8868\u63CF\u8FF0",prop:"table_comment","min-width":"180"}),e(_,{label:"\u521B\u5EFA\u65F6\u95F4",prop:"create_time","min-width":"180"}),e(_,{label:"\u66F4\u65B0\u65F6\u95F4",prop:"update_time","min-width":"180"}),e(_,{label:"\u64CD\u4F5C",width:"160",fixed:"right"},{default:t(({row:l})=>[b("div",Ee,[i((r(),d(u,{type:"primary",link:"",onClick:x=>I(l.id)},{default:t(()=>[s(" \u9884\u89C8 ")]),_:2},1032,["onClick"])),[[m,["tools.generator/preview"]]]),e(u,{type:"primary",link:""},{default:t(()=>[i((r(),d(L,{to:{path:a(ne)("tools.generator/edit"),query:{id:l.id}}},{default:t(()=>[s(" \u7F16\u8F91 ")]),_:2},1032,["to"])),[[m,["tools.generator/edit"]]])]),_:2},1024),i((r(),d(R,{class:"ml-2",onCommand:x=>N(x,l)},{dropdown:t(()=>[e(M,null,{default:t(()=>[i((r(),C("div",null,[e(h,{command:"generate"},{default:t(()=>[e(u,{type:"primary",link:""},{default:t(()=>[s(" \u751F\u6210\u4EE3\u7801 ")]),_:1})]),_:1})])),[[m,["tools.generator/generate"]]]),i((r(),C("div",null,[e(h,{command:"sync"},{default:t(()=>[e(u,{type:"primary",link:""},{default:t(()=>[s(" \u540C\u6B65 ")]),_:1})]),_:1})])),[[m,["tools.generator/syncColumn"]]]),i((r(),C("div",null,[e(h,{command:"delete"},{default:t(()=>[e(u,{type:"danger",link:""},{default:t(()=>[s(" \u5220\u9664 ")]),_:1})]),_:1})])),[[m,["tools.generator/delete"]]])]),_:1})]),default:t(()=>[e(u,{type:"primary",link:""},{default:t(()=>[s(" \u66F4\u591A "),e(E,{name:"el-icon-ArrowDown",size:14})]),_:1})]),_:2},1032,["onCommand"])),[[m,["tools.generator/generate","tools.generator/syncColumn","tools.generator/delete"]]])])]),_:1})]),_:1},8,["data"])]),b("div",he,[e(z,{modelValue:a(f),"onUpdate:modelValue":o[4]||(o[4]=l=>ie(f)?f.value=l:null),onChange:a(g)},null,8,["modelValue","onChange"])])]),_:1})),[[Q,a(f).loading]]),a(p).show?(r(),d(Ce,{key:0,modelValue:a(p).show,"onUpdate:modelValue":o[5]||(o[5]=l=>a(p).show=l),code:a(p).code},null,8,["modelValue","code"])):me("",!0)])}}});export{pt as default}; diff --git a/public/admin/assets/index.a9a11abe.js b/public/admin/assets/index.a9a11abe.js new file mode 100644 index 000000000..c637a3cef --- /dev/null +++ b/public/admin/assets/index.a9a11abe.js @@ -0,0 +1 @@ +import{d,b as c}from"./index.aa9bb752.js";import{d as r,o as s,c as n,H as p,Z as _,U as i,Q as m}from"./@vue.51d7f2d8.js";const u=r({props:{showClose:{type:Boolean,default:!0}},emits:["close"],setup(e,{emit:o}){return{handleClose:()=>{o("close")}}}});const f={class:"del-wrap"};function C(e,o,t,h,v,$){const a=c;return s(),n("div",f,[p(e.$slots,"default",{},void 0,!0),e.showClose?(s(),n("div",{key:0,class:"icon-close",onClick:o[0]||(o[0]=_((...l)=>e.handleClose&&e.handleClose(...l),["stop"]))},[i(a,{size:12,name:"el-icon-CloseBold"})])):m("",!0)])}const y=d(u,[["render",C],["__scopeId","data-v-acafd744"]]);export{y as _}; diff --git a/public/admin/assets/index.aa9bb752.js b/public/admin/assets/index.aa9bb752.js new file mode 100644 index 000000000..1eba4cd65 --- /dev/null +++ b/public/admin/assets/index.aa9bb752.js @@ -0,0 +1 @@ +var _1=Object.defineProperty;var v1=(a,o,e)=>o in a?_1(a,o,{enumerable:!0,configurable:!0,writable:!0,value:e}):a[o]=e;var F=(a,o,e)=>(v1(a,typeof o!="symbol"?o+"":o,e),e);import{u as r,v as F3,d as g,e as v,a4 as l3,o as _,c as y,U as u,L as p,a as m,K as A,aK as p1,P as G3,Q as O,s as z1,r as E3,I as M3,S as e3,_ as i3,M as U3,V as Y3,O as W3,W as b1,H as y1,ag as g1,ah as w1,h as A1,T as Z,a7 as c3,k as D,w as Z3,R as Y,bf as f1,be as V1,n as x1,j as E1,aq as M1}from"./@vue.51d7f2d8.js";import{E as X3,u as L1,a as H1,i as T1,b as O1,c as B1,d as I1,e as D1,f as R1,g as $3,h as P1,j as C1,k as s3,l as W,m as n3,n as S1,o as k1,p as K3,q as J3,r as Q3,s as j1,t as N1,v as q1,w as F1,x as G1,y as U1,z as Y1,A as W1}from"./element-plus.4328d892.js";import{c as Z1,l as X1,m as a1,n as $1,p as K1,f as J1}from"./@vueuse.ec90c285.js";import{l as T}from"./lodash.08438971.js";import{a as o1,b as r3}from"./axios.105476b3.js";import{u as L3,a as H3,c as Q1,b as a0,R as w3}from"./vue-router.9f65afb1.js";import{d as _3,c as o0}from"./pinia.56356cb7.js";import{l as e0}from"./css-color-function.7ac6f233.js";import{H as e1}from"./@element-plus.a074d1f6.js";import{N as G}from"./nprogress.f73355d0.js";import{u as l0}from"./vue-clipboard3.dca5bca3.js";import{u as i0,a as c0,b as t0,c as s0,d as n0,e as r0,f as u0,g as m0,h as d0,j as h0,k as _0,l as v0,m as p0,n as z0,o as b0,p as y0,q as g0,r as w0,s as A0,v as f0,w as V0,x as x0,y as E0,z as M0,A as L0}from"./echarts.ac57a99a.js";import"./highlight.js.dba6fa1b.js";import{o as H0}from"./@highlightjs.40d5feba.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./vue-demi.b3a9cad9.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./clipboard.16e4491b.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";(function(){const o=document.createElement("link").relList;if(o&&o.supports&&o.supports("modulepreload"))return;for(const c of document.querySelectorAll('link[rel="modulepreload"]'))i(c);new MutationObserver(c=>{for(const t of c)if(t.type==="childList")for(const s of t.addedNodes)s.tagName==="LINK"&&s.rel==="modulepreload"&&i(s)}).observe(document,{childList:!0,subtree:!0});function e(c){const t={};return c.integrity&&(t.integrity=c.integrity),c.referrerpolicy&&(t.referrerPolicy=c.referrerpolicy),c.crossorigin==="use-credentials"?t.credentials="include":c.crossorigin==="anonymous"?t.credentials="omit":t.credentials="same-origin",t}function i(c){if(c.ep)return;c.ep=!0;const t=e(c);fetch(c.href,t)}})();const R={terminal:1,title:"\u540E\u53F0\u7BA1\u7406\u7CFB\u7EDF",version:"1.6.0",baseUrl:"/",urlPrefix:"adminapi",timeout:20*1e3};var l1=(a=>(a.JSON="application/json;charset=UTF-8",a.FORM_DATA="multipart/form-data;charset=UTF-8",a))(l1||{}),a3=(a=>(a.GET="GET",a.POST="POST",a))(a3||{}),Q=(a=>(a[a.SUCCESS=1]="SUCCESS",a[a.FAIL=0]="FAIL",a[a.LOGIN_FAILURE=-1]="LOGIN_FAILURE",a[a.OPEN_NEW_PAGE=2]="OPEN_NEW_PAGE",a))(Q||{});const J=new Map,I3=class{static createInstance(){var o;return(o=this.instance)!=null?o:this.instance=new I3}add(o){const e=o.url;this.remove(e),o.cancelToken=new o1.CancelToken(i=>{J.has(e)||J.set(e,i)})}remove(o){if(J.has(o)){const e=J.get(o);e&&e(o),J.delete(o)}}};let u3=I3;F(u3,"instance");const R3=u3.createInstance();class T0{constructor(o){F(this,"axiosInstance");F(this,"config");F(this,"options");this.config=o,this.options=o.requestOptions,this.axiosInstance=o1.create(o),this.setupInterceptors()}getAxiosInstance(){return this.axiosInstance}setupInterceptors(){if(!this.config.axiosHooks)return;const{requestInterceptorsHook:o,requestInterceptorsCatchHook:e,responseInterceptorsHook:i,responseInterceptorsCatchHook:c}=this.config.axiosHooks;this.axiosInstance.interceptors.request.use(t=>(this.addCancelToken(t),T.exports.isFunction(o)&&(t=o(t)),t),t=>(T.exports.isFunction(e)&&e(t),t)),this.axiosInstance.interceptors.response.use(t=>(this.removeCancelToken(t.config.url),T.exports.isFunction(i)&&(t=i(t)),t),t=>{var s;return T.exports.isFunction(c)&&c(t),t.code!=r3.exports.AxiosError.ERR_CANCELED&&this.removeCancelToken((s=t.config)==null?void 0:s.url),t.code==r3.exports.AxiosError.ECONNABORTED||t.code==r3.exports.AxiosError.ERR_NETWORK?new Promise(n=>setTimeout(n,500)).then(()=>this.retryRequest(t)):Promise.reject(t)})}addCancelToken(o){const{ignoreCancelToken:e}=o.requestOptions;!e&&R3.add(o)}removeCancelToken(o){R3.remove(o)}retryRequest(o){var t,s;const e=o.config,{retryCount:i,isOpenRetry:c}=e.requestOptions;return!c||((t=e.method)==null?void 0:t.toUpperCase())==a3.POST||(e.retryCount=(s=e.retryCount)!=null?s:0,e.retryCount>=i)?Promise.reject(o):(e.retryCount++,this.axiosInstance.request(e))}get(o,e){return this.request({...o,method:a3.GET},e)}post(o,e){return this.request({...o,method:a3.POST},e)}request(o,e){const i=T.exports.merge({},this.options,e),c={...T.exports.cloneDeep(o),requestOptions:i},{urlPrefix:t}=i;return t&&(c.url=`${t}${o.url}`),new Promise((s,n)=>{this.axiosInstance.request(c).then(h=>{s(h)}).catch(h=>{n(h)})})}}const T3="token",O0="account",A3="setting",B0="modulepreload",I0=function(a){return"/admin/"+a},P3={},l=function(o,e,i){if(!e||e.length===0)return o();const c=document.getElementsByTagName("link");return Promise.all(e.map(t=>{if(t=I0(t),t in P3)return;P3[t]=!0;const s=t.endsWith(".css"),n=s?'[rel="stylesheet"]':"";if(!!i)for(let z=c.length-1;z>=0;z--){const w=c[z];if(w.href===t&&(!s||w.rel==="stylesheet"))return}else if(document.querySelector(`link[href="${t}"]${n}`))return;const d=document.createElement("link");if(d.rel=s?"stylesheet":B0,s||(d.as="script",d.crossOrigin=""),d.href=t,document.head.appendChild(d),s)return new Promise((z,w)=>{d.addEventListener("load",z),d.addEventListener("error",()=>w(new Error(`Unable to preload CSS for ${t}`)))})})).then(()=>o())};var i1=(a=>(a.LIGHT="light",a.DARK="dark",a))(i1||{}),d3=(a=>(a.CATALOGUE="M",a.MENU="C",a.BUTTON="A",a))(d3||{}),f3=(a=>(a[a.SM=640]="SM",a[a.MD=768]="MD",a[a.LG=1024]="LG",a[a.XL=1280]="XL",a[a["2XL"]=1536]="2XL",a))(f3||{});function X(a){return/^(https?:|mailto:|tel:)/.test(a)}var E=(a=>(a.LOGIN="/login",a.ERROR_403="/403",a.INDEX="/",a))(E||{});const D0=(a,o)=>o.findIndex(e=>e.fullPath==a),R0=(a,o)=>{const{path:e,meta:i,name:c}=a;return!!(!e||X(e)||i!=null&&i.hideTab||!o.hasRoute(c)||[E.LOGIN,E.ERROR_403].includes(e))},P0=(a,o)=>o.findIndex(e=>e.fullPath===a),z3=a=>{var o,e,i;return(i=(e=(o=a.matched.at(-1))==null?void 0:o.components)==null?void 0:e.default)==null?void 0:i.name},c1=a=>{const{params:o,path:e,query:i}=a;return{params:o||{},path:e,query:i||{}}},t3=_3({id:"tabs",state:()=>({cacheTabList:new Set,tabList:[],tasMap:{},indexRouteName:""}),getters:{getTabList(){return this.tabList},getCacheTabList(){return Array.from(this.cacheTabList)}},actions:{setRouteName(a){this.indexRouteName=a},addCache(a){a&&this.cacheTabList.add(a)},removeCache(a){a&&this.cacheTabList.has(a)&&this.cacheTabList.delete(a)},clearCache(){this.cacheTabList.clear()},resetState(){this.cacheTabList=new Set,this.tabList=[],this.tasMap={},this.indexRouteName=""},addTab(a){const o=r(a.currentRoute),{name:e,query:i,meta:c,params:t,fullPath:s,path:n}=o;if(R0(o,a))return;const h=D0(s,this.tabList),d=z3(o),z={name:e,path:n,fullPath:s,title:c==null?void 0:c.title,query:i,params:t};this.tasMap[s]=z,c!=null&&c.keepAlive&&(console.log(d),this.addCache(d)),h==-1&&this.tabList.push(z)},removeTab(a,o){const{currentRoute:e,push:i}=o,c=P0(a,this.tabList);this.tabList.length>1&&c!==-1&&this.tabList.splice(c,1);const t=z3(e.value);if(this.removeCache(t),a!==e.value.fullPath)return;let s=null;c===0?s=this.tabList[c]:s=this.tabList[c-1];const n=c1(s);i(n)},removeOtherTab(a){this.tabList=this.tabList.filter(e=>e.fullPath==a.fullPath);const o=z3(a);this.cacheTabList.forEach(e=>{o!==e&&this.removeCache(e)})},removeAllTab(a){const{push:o,currentRoute:e}=a,{name:i}=r(e);if(i==this.indexRouteName){this.removeOtherTab(e.value);return}this.tabList=[],this.clearCache(),o(E.INDEX)}}}),b3={showCrumb:!0,showLogo:!0,isUniqueOpened:!1,sideWidth:200,sideTheme:"light",sideDarkColor:"#1d2124",openMultipleTabs:!0,theme:"#4A5DFF",successTheme:"#67c23a",warningTheme:"#e6a23c",dangerTheme:"#f56c6c",errorTheme:"#f56c6c",infoTheme:"#909399"},P={key:"like_admin_",set(a,o,e){a=this.getKey(a);let i={expire:e?this.time()+e:"",value:o};typeof i=="object"&&(i=JSON.stringify(i));try{window.localStorage.setItem(a,i)}catch{return null}},get(a){a=this.getKey(a);try{const o=window.localStorage.getItem(a);if(!o)return null;const{value:e,expire:i}=JSON.parse(o);return i&&i{const i={[`--el-color-${o}`]:a},c=e?S0:C0;for(const t in c)i[`--el-color-${o}-${t}`]=`color(${a} ${c[t]})`;return i},j0=(a,o=!1)=>{const e=Object.keys(a).reduce((t,s)=>Object.assign(t,k0(a[s],s,o)),{});let i=Object.keys(e).reduce((t,s)=>{const n=e0.convert(e[s]);return`${t}${s}:${n};`},"");i=`:root{${i}}`;let c=document.getElementById(C3);if(c){c.innerHTML=i;return}c=document.createElement("style"),c.setAttribute("type","text/css"),c.setAttribute("id",C3),c.innerHTML=i,document.head.append(c)},S3=P.get(A3),C=_3({id:"setting",state:()=>{const a={showDrawer:!1,...b3};return F3(S3)&&Object.assign(a,S3),a},actions:{setSetting(a){const{key:o,value:e}=a;this.hasOwnProperty(o)&&(this[o]=e);const i=Object.assign({},this.$state);delete i.showDrawer,P.set(A3,i)},setTheme(a){j0({primary:this.theme,success:this.successTheme,warning:this.warningTheme,danger:this.dangerTheme,error:this.errorTheme,info:this.infoTheme},a)},resetTheme(){for(const a in b3)this[a]=b3[a];P.remove(A3)}}}),N0={class:"main-wrap h-full bg-page"},q0={class:"p-4"},F0=g({__name:"main",setup(a){const o=N(),e=t3(),i=C(),c=v(()=>o.isRouteShow),t=v(()=>i.openMultipleTabs?e.getCacheTabList:[]);return(s,n)=>{const h=l3("router-view"),d=X3;return _(),y("main",N0,[u(d,null,{default:p(()=>[m("div",q0,[r(c)?(_(),A(h,{key:0},{default:p(({Component:z,route:w})=>[(_(),A(p1,{include:r(t),max:20},[(_(),A(G3(z),{key:w.fullPath}))],1032,["include"]))]),_:1})):O("",!0)])]),_:1})])}}});function G0(a){return j.post({url:"/login/account",params:{...a,terminal:R.terminal}})}function U0(){return j.post({url:"/login/logout"})}function Y0(){return j.get({url:"/auth.admin/mySelf"})}function M4(a){return j.post({url:"/auth.admin/editSelf",params:a})}function L4(a){return j.get({url:"/user.user/lists",params:a})}const $=_3({id:"user",state:()=>({token:u1()||"",userInfo:{},routes:[],perms:[]}),getters:{},actions:{resetState(){this.token="",this.userInfo={},this.perms=[]},login(a){const{account:o,password:e}=a;return new Promise((i,c)=>{G0({account:o.trim(),password:e}).then(t=>{this.token=t.token,P.set(T3,t.token),i(t)}).catch(t=>{c(t)})})},logout(){return new Promise((a,o)=>{U0().then(async e=>{this.token="",await L.push(E.LOGIN),h3(),a(e)}).catch(e=>{o(e)})})},getUserInfo(){return new Promise((a,o)=>{Y0().then(e=>{this.userInfo=e.user,this.perms=e.permissions,this.routes=n1(e.menu),a(e)}).catch(e=>{o(e)})})}}}),W0=g({__name:"index",props:{...L1,teleported:{type:Boolean,default:!1},placement:{type:String,default:"top"},overfloType:{type:String,default:"ellipsis"}},setup(a){const o=a,e=z1(),i=E3(!1);return Z1(e,"mouseenter",()=>{var c,t;((c=e.value)==null?void 0:c.scrollWidth)>((t=e.value)==null?void 0:t.offsetWidth)?i.value=!1:i.value=!0}),(c,t)=>{const s=H1;return _(),y("div",null,[u(s,M3(o,{disabled:r(i)}),{default:p(()=>[m("div",{ref_key:"textRef",ref:e,class:"overflow-text truncate",style:i3({textOverflow:a.overfloType})},e3(c.content),5)]),_:1},16,["disabled"])])}}}),o3=(a,o="px")=>Object.is(Number(a),NaN)?a:`${a}${o}`,k3=a=>a==null&&typeof a>"u",H4=(a,o={children:"children"})=>{a=T.exports.cloneDeep(a);const{children:e}=o,i=[],c=[];for(a.forEach(t=>c.push(t));c.length;){const t=c.shift();t[e]&&(t[e].forEach(s=>c.push(s)),delete t[e]),i.push(t)}return i},T4=(a,o={id:"id",parentId:"pid",children:"children"})=>{a=T.exports.cloneDeep(a);const{id:e,parentId:i,children:c}=o,t=[],s=new Map;return a.forEach(n=>{var d;s.set(n[e],n);const h=s.get(n[i]);h?(h[c]=(d=h[c])!=null?d:[],h[c].push(n)):t.push(n)}),t};function Z0(a){if(a.length===0||!a||a=="undefined")return a;const o=a.replace("//","/"),e=o.length;return o[e-1]==="/"?o.slice(0,e-1):o}function X0(a){let o="";for(const e of Object.keys(a)){const i=a[e],c=encodeURIComponent(e)+"=";if(!k3(i))if(F3(i)){for(const t of Object.keys(i))if(!k3(i[t])){const s=e+"["+t+"]",n=encodeURIComponent(s)+"=";o+=n+encodeURIComponent(i[t])+"&"}}else o+=c+encodeURIComponent(i)+"&"}return o.slice(0,-1)}const O4=(a,o="yyyy-mm-dd")=>{a||(a=Number(new Date)),a.toString().length==10&&(a*=1e3);const e=new Date(a);let i;const c={"y+":e.getFullYear().toString(),"m+":(e.getMonth()+1).toString(),"d+":e.getDate().toString(),"h+":e.getHours().toString(),"M+":e.getMinutes().toString(),"s+":e.getSeconds().toString()};for(const t in c)i=new RegExp("("+t+")").exec(o),i&&(o=o.replace(i[1],i[1].length==1?c[t]:c[t].padStart(i[1].length,"0")));return o},B4=(a=8)=>{let o=Date.now().toString(36);return o+=Math.random().toString(36).substring(3,a),o},$0=g({__name:"index",props:{width:{type:[String,Number],default:"auto"},height:{type:[String,Number],default:"auto"},radius:{type:[String,Number],default:0},...T1},setup(a){const o=a,e=v(()=>({width:o3(o.width),height:o3(o.height),borderRadius:o3(o.radius)}));return(i,c)=>{const t=O1;return _(),A(t,M3({style:e.value},o),null,16,["style"])}}});const B=(a,o)=>{const e=a.__vccOpts||a;for(const[i,c]of o)e[i]=c;return e},K0=B($0,[["__scopeId","data-v-503f53ec"]]),J0={class:"logo"},Q0=g({__name:"logo",props:{szie:{type:Number,default:34},title:{type:String},theme:{type:String},showTitle:{type:Boolean,default:!0}},setup(a){const o=N(),e=v(()=>o.config);return(i,c)=>{const t=K0,s=W0;return _(),y("div",J0,[u(t,{width:a.szie,height:a.szie,src:r(e).web_logo},null,8,["width","height","src"]),u(b1,{name:"title-width"},{default:p(()=>[U3(m("div",{class:W3(["logo-title overflow-hidden whitespace-nowrap",{"text-white":a.theme==r(i1).DARK}]),style:i3({left:`${a.szie+16}px`})},[u(s,{content:a.title||r(e).web_name,teleported:!0,placement:"bottom","overflo-type":"unset"},null,8,["content"])],6),[[Y3,a.showTitle]])]),_:1})])}}});const a2=B(Q0,[["__scopeId","data-v-cb33a7bb"]]),o2=g({__name:"index",props:{to:{},replace:{type:Boolean}},setup(a){const o=a,e=v(()=>typeof o.to!="object"&&X(o.to)),i=v(()=>e.value?"a":"router-link"),c=v(()=>e.value?{href:o.to,target:"_blank"}:o);return(t,s)=>(_(),A(G3(r(i)),g1(w1(r(c))),{default:p(()=>[y1(t.$slots,"default")]),_:3},16))}}),e2=["local-icon-a-tixingdengpao","local-icon-Androidfanhui","local-icon-anquan","local-icon-anquan_mian","local-icon-anquan_mian1","local-icon-banxing_mian","local-icon-baoxian","local-icon-bendishenghuodaxue","local-icon-bianji","local-icon-biaoqing","local-icon-bukejian","local-icon-caipinguanli","local-icon-caiwu","local-icon-caiwu_jifen","local-icon-caiwu_tixian","local-icon-canyinfuwu","local-icon-carryout","local-icon-chexiao","local-icon-chihuohongbao","local-icon-chuangyiwuliao","local-icon-close","local-icon-daiyunying","local-icon-danwei","local-icon-danxuankuang","local-icon-danxuanxuanzhong","local-icon-dayin","local-icon-dayin_mian","local-icon-del","local-icon-diancanshezhi","local-icon-dianhua","local-icon-dianhua_mian","local-icon-dianputuijian","local-icon-dianpu_fengge","local-icon-dianzifapiao","local-icon-dingcan","local-icon-dingdan","local-icon-dingdan1","local-icon-dingdan_mian","local-icon-dingwei","local-icon-dingwei_mian","local-icon-ditu","local-icon-ditu_mian","local-icon-duizhang","local-icon-elemo","local-icon-ezhanggui","local-icon-falvfuwubaoxiaohei","local-icon-fengniaopaotui","local-icon-fenxiang","local-icon-fukuan","local-icon-fukuan_mian","local-icon-fullscreen-exit","local-icon-fullscreen","local-icon-fuwushichang","local-icon-fuzhi","local-icon-gaode","local-icon-gengduo","local-icon-gengduoandroid","local-icon-gift","local-icon-gongyingshang","local-icon-goods","local-icon-gou","local-icon-gouwuche","local-icon-gouxuan","local-icon-gouxuan_mian","local-icon-guanbi","local-icon-guanli","local-icon-guanli_mian","local-icon-gukefapiao","local-icon-haibaosheji","local-icon-heshoujilu","local-icon-heshoujilu1","local-icon-hexiao_order","local-icon-hide-2","local-icon-hide","local-icon-hongbao","local-icon-huiche","local-icon-huiyuanyingxiao","local-icon-huodongbaoming","local-icon-huodongguanli","local-icon-huodongzhongxin","local-icon-huojian","local-icon-huojian_mian","local-icon-huolala","local-icon-iOSfanhui","local-icon-jia","local-icon-jian","local-icon-jianpan","local-icon-jianpanshanchu","local-icon-jianshao","local-icon-jian_mian","local-icon-jiaopeiwangputong","local-icon-jiaoyi","local-icon-jia_mian","local-icon-jiedan","local-icon-jiekuan","local-icon-jingshi","local-icon-jingshi_mian","local-icon-jingshi_mian1","local-icon-jingyin","local-icon-jingying","local-icon-jingyinggonglve","local-icon-jingying_mian","local-icon-jingyin_mian","local-icon-jingzhunyingxiao","local-icon-jinhuo","local-icon-kaitongwaimai","local-icon-kanjia","local-icon-kefu","local-icon-kejian","local-icon-kejian_mian","local-icon-keziyuyue","local-icon-kezizhongxin","local-icon-KMSguanli","local-icon-koubei","local-icon-KTVyuding","local-icon-kuaijiehuifu","local-icon-ladu_mian","local-icon-lanyadingwei","local-icon-list-2","local-icon-mendiandongtai","local-icon-mishiyuding","local-icon-mishiyuding1","local-icon-notice_buyer","local-icon-open","local-icon-paiduiquhao","local-icon-paimai","local-icon-pingjia","local-icon-pingtaifapiao","local-icon-pinpai","local-icon-qianbao","local-icon-qianbao_mian","local-icon-qiehuan","local-icon-qingchu","local-icon-qingchu_mian","local-icon-qishoupeisong","local-icon-qiyedingcan","local-icon-qiyedingcan1","local-icon-quanbu","local-icon-quanping","local-icon-qudao","local-icon-qudao_xiaochengxu","local-icon-rencaizhaopin","local-icon-rili","local-icon-rili2","local-icon-rizhi","local-icon-saoma","local-icon-set_pay","local-icon-set_peisong","local-icon-set_user","local-icon-set_weihu","local-icon-shanchu","local-icon-shanchu_mian","local-icon-shangchuan","local-icon-shangchuanzhaopian","local-icon-shangpinguanli","local-icon-shangpinzhushou","local-icon-shangpuyuding","local-icon-shebeiguanli","local-icon-shengfuwangputong","local-icon-shengyin","local-icon-shengyin_mian","local-icon-shezhi","local-icon-shezhi_mian","local-icon-shichang","local-icon-shichang_mian","local-icon-shijian","local-icon-shijian_mian","local-icon-shoudan","local-icon-shouqi","local-icon-shouqi_mian","local-icon-shouye","local-icon-shouye_mian","local-icon-shouyiren","local-icon-show","local-icon-shuangjiantouxiangyou","local-icon-shuangjiantouxiangzuo","local-icon-shuaxin","local-icon-shuju","local-icon-shuju2","local-icon-shuju_liuliang","local-icon-shuju_mian","local-icon-sort","local-icon-sousuo","local-icon-sucai","local-icon-tianjia","local-icon-tishi","local-icon-tishi_mian","local-icon-tongxunlu_mian","local-icon-tongzhi","local-icon-tongzhi_mian","local-icon-tuichuquanping","local-icon-tuiguang","local-icon-tuiguang_mian","local-icon-tupian","local-icon-tupian_mian","local-icon-user_biaoqian","local-icon-user_gaikuang","local-icon-user_guanli","local-icon-wangpudiandan","local-icon-weixin","local-icon-weixin_mian","local-icon-wode","local-icon-wode_mian","local-icon-xiangji","local-icon-xiaoxi","local-icon-xiazai","local-icon-xitongquanxian","local-icon-yingxiao_qipao","local-icon-yingyezizhi","local-icon-yinhangka","local-icon-yiwen","local-icon-youhui","local-icon-youjian","local-icon-youjiantou","local-icon-yulibao","local-icon-yuyin","local-icon-yuyueguanli","local-icon-yuyueguanlishezhi","local-icon-zhankai","local-icon-zhankai_mian","local-icon-zhibo","local-icon-zhibo_mian","local-icon-zhuangxiu","local-icon-zhuangxiu_mian","local-icon-zhuoweiguanli","local-icon-zichanzhuanrang","local-icon-zuliao","local-icon-zuliaoyuding"],l2="local-icon-",V3="el-icon-",t1=[];for(const[,a]of Object.entries(e1))t1.push(`${V3}${a.name}`);function I4(){return t1}function D4(){return e2}const i2=g({props:{name:{type:String,required:!0},size:{type:[Number,String],default:16},color:{type:String,default:"inherit"}},setup(a){const o=v(()=>`#${a.name}`),e=v(()=>({width:o3(a.size),height:o3(a.size),color:a.color}));return{symbolId:o,styles:e}}}),c2=["xlink:href"];function t2(a,o,e,i,c,t){return _(),y("svg",{"aria-hidden":"true",style:i3(a.styles)},[m("use",{"xlink:href":a.symbolId,fill:"currentColor"},null,8,c2)],4)}const s2=B(i2,[["render",t2]]),S=g({name:"Icon",props:{name:{type:String,required:!0},size:{type:[String,Number],default:"14px"},color:{type:String,default:"inherit"}},setup(a){if(a.name.indexOf(V3)===0)return()=>u(B1,{size:a.size,color:a.color},()=>[u(l3(a.name.replace(V3,"")))]);if(a.name.indexOf(l2)===0)return()=>A1("i",{class:["local-icon"]},u(s2,{...a}))}}),n2=g({__name:"menu-item",props:{route:{},routePath:{},popperClass:{}},setup(a){const o=a,e=v(()=>{var n;return!!((n=o.route.children)!=null?n:[]).filter(h=>{var d;return!((d=h.meta)!=null&&d.hidden)}).length}),i=v(()=>o.route.meta),c=s=>X(s)?s:Z0(`${o.routePath}/${s}`),t=v(()=>{var n;const s=(n=o.route.meta)==null?void 0:n.query;try{const h=JSON.parse(s);return X0(h)}catch{return s}});return(s,n)=>{var I;const h=S,d=I1,z=o2,w=l3("menu-item",!0),H=D1;return(I=s.route.meta)!=null&&I.hidden?O("",!0):(_(),y(Z,{key:0},[r(e)?(_(),A(H,{key:1,index:s.routePath,"popper-class":s.popperClass},{title:p(()=>{var x,M,b;return[(x=r(i))!=null&&x.icon?(_(),A(h,{key:0,class:"menu-item-icon",size:16,name:(M=r(i))==null?void 0:M.icon},null,8,["name"])):O("",!0),m("span",null,e3((b=r(i))==null?void 0:b.title),1)]}),default:p(()=>{var x;return[(_(!0),y(Z,null,c3((x=s.route)==null?void 0:x.children,M=>(_(),A(w,{key:c(M.path),route:M,"route-path":c(M.path),"popper-class":s.popperClass},null,8,["route","route-path","popper-class"]))),128))]}),_:1},8,["index","popper-class"])):(_(),A(z,{key:0,to:`${s.routePath}?${r(t)}`},{default:p(()=>[u(d,{index:s.routePath},{title:p(()=>{var x;return[m("span",null,e3((x=r(i))==null?void 0:x.title),1)]}),default:p(()=>{var x,M;return[(x=r(i))!=null&&x.icon?(_(),A(h,{key:0,class:"menu-item-icon",size:16,name:(M=r(i))==null?void 0:M.icon},null,8,["name"])):O("",!0)]}),_:1},8,["index"])]),_:1},8,["to"]))],64))}}});const r2=B(n2,[["__scopeId","data-v-c1c686f0"]]),u2=g({__name:"menu",props:{routes:{type:Object},config:{type:Object},uniqueOpened:{type:Boolean,default:!1},isCollapsed:{type:Boolean,default:!1},theme:{type:String},width:{type:Number,default:200}},emits:["select"],setup(a){const o=a,e=L3(),i=v(()=>{var t;return((t=e.meta)==null?void 0:t.activeMenu)||e.path}),c=v(()=>`theme-${o.theme}`);return(t,s)=>{const n=R1,h=X3;return _(),y("div",{class:W3(["menu flex-1 min-h-0",r(c)]),style:i3(a.isCollapsed?"":`--aside-width: ${a.width}px`)},[u(h,null,{default:p(()=>[u(n,M3(a.config,{"default-active":r(i),collapse:a.isCollapsed,mode:"vertical","unique-opened":a.uniqueOpened,onSelect:s[0]||(s[0]=d=>t.$emit("select"))}),{default:p(()=>[(_(!0),y(Z,null,c3(a.routes,d=>(_(),A(r2,{key:d.path,route:d,"route-path":d.path,"popper-class":r(c)},null,8,["route","route-path","popper-class"]))),128))]),_:1},16,["default-active","collapse","unique-opened"])]),_:1})],6)}}});const m2=B(u2,[["__scopeId","data-v-b6e626d9"]]),d2=g({__name:"side",setup(a){const o=N(),e=v(()=>o.isMobile?!1:o.isCollapsed),i=C(),c=v(()=>i.sideTheme),t=$(),s=v(()=>t.routes),n=v(()=>c.value=="dark"?{"--side-dark-color":i.sideDarkColor}:""),h=v(()=>({backgroundColor:c.value=="dark"?i.sideDarkColor:"",textColor:c.value=="dark"?"var(--el-color-white)":"",activeTextColor:c.value=="dark"?"var(--el-color-white)":""})),d=()=>{o.isMobile&&o.toggleCollapsed(!0)};return(z,w)=>(_(),y("div",{class:"side",style:i3(r(n))},[r(i).showLogo?(_(),A(a2,{key:0,"show-title":!r(e),theme:r(c)},null,8,["show-title","theme"])):O("",!0),u(m2,{routes:r(s),"is-collapsed":r(e),width:r(i).sideWidth,"unique-opened":r(i).isUniqueOpened,config:r(h),theme:r(c),onSelect:d},null,8,["routes","is-collapsed","width","unique-opened","config","theme"])],4))}});const j3=B(d2,[["__scopeId","data-v-d9b05b11"]]),h2={class:"sidebar h-full"},_2=g({__name:"index",setup(a){const o=N(),e=C(),i=v(()=>o.isMobile),c=v({get(){return!o.isCollapsed&&i.value},set(s){o.toggleCollapsed(!s)}}),t=v(()=>`${e.sideWidth+1}px`);return(s,n)=>{const h=$3;return _(),y("aside",h2,[u(h,{modelValue:r(c),"onUpdate:modelValue":n[0]||(n[0]=d=>D(c)?c.value=d:null),direction:"ltr",size:r(t),title:"\u4E3B\u9898\u8BBE\u7F6E","with-header":!1},{default:p(()=>[u(j3)]),_:1},8,["modelValue","size"]),U3(u(j3,null,null,512),[[Y3,!r(i)]])])}}});const v2=B(_2,[["__scopeId","data-v-7bab31f7"]]),p2=g({__name:"fold",setup(a){const o=N(),e=v(()=>o.isCollapsed),i=()=>{o.toggleCollapsed()};return(c,t)=>{const s=S;return _(),y("div",{class:"fold h-full cursor-pointer flex items-center px-2",onClick:i},[u(s,{name:`local-icon-${r(e)?"close":"open"}`,size:20},null,8,["name"])])}}}),z2=g({__name:"refresh",setup(a){const o=N(),e=()=>{o.refreshView()};return(i,c)=>{const t=S;return _(),y("div",{class:"refresh cursor-pointer h-full flex items-center px-2",onClick:e},[u(t,{name:"el-icon-RefreshRight",size:18})])}}});function s1(a){const o=L3();return Z3(o,()=>{a(o)},{immediate:!0}),{route:o}}const b2=g({__name:"breadcrumb",setup(a){const o=E3([]),e=i=>{const c=i.matched.filter(t=>t.meta&&t.meta.title);o.value=c};return s1(i=>{e(i)}),(i,c)=>{const t=P1,s=C1;return _(),A(s,{class:"app-breadcrumb"},{default:p(()=>[(_(!0),y(Z,null,c3(r(o),n=>(_(),A(t,{key:n.path},{default:p(()=>[Y(e3(n.meta.title),1)]),_:2},1024))),128))]),_:1})}}}),y2=g({__name:"full-screen",setup(a){const{toggle:o,isFullscreen:e}=X1();return(i,c)=>{const t=S;return _(),y("div",{class:"full-screen h-full cursor-pointer flex items-center px-2",onClick:c[0]||(c[0]=(...s)=>r(o)&&r(o)(...s))},[u(t,{size:16,name:`local-icon-${r(e)?"fullscreen-exit":"fullscreen"}`},null,8,["name"])])}}}),D3=class{constructor(){F(this,"loadingInstance",null)}static getInstance(){var o;return(o=this.instance)!=null?o:this.instance=new D3}msg(o){s3.info(o)}msgError(o){s3.error(o)}msgSuccess(o){s3.success(o)}msgWarning(o){s3.warning(o)}alert(o){W.alert(o,"\u7CFB\u7EDF\u63D0\u793A")}alertError(o){W.alert(o,"\u7CFB\u7EDF\u63D0\u793A",{type:"error"})}alertSuccess(o){W.alert(o,"\u7CFB\u7EDF\u63D0\u793A",{type:"success"})}alertWarning(o){W.alert(o,"\u7CFB\u7EDF\u63D0\u793A",{type:"warning"})}notify(o){n3.info(o)}notifyError(o){n3.error(o)}notifySuccess(o){n3.success(o)}notifyWarning(o){n3.warning(o)}confirm(o){return W.confirm(o,"\u6E29\u99A8\u63D0\u793A",{confirmButtonText:"\u786E\u5B9A",cancelButtonText:"\u53D6\u6D88",type:"warning"})}prompt(o,e,i){return W.prompt(o,e,{confirmButtonText:"\u786E\u5B9A",cancelButtonText:"\u53D6\u6D88",...i})}loading(o){this.loadingInstance=S1.service({lock:!0,text:o})}closeLoading(){var o;(o=this.loadingInstance)==null||o.close()}};let m3=D3;F(m3,"instance",null);const U=m3.getInstance(),g2={class:"flex items-center"},w2={class:"ml-3 mr-1"},A2=g({__name:"user-drop-down",setup(a){const o=$(),e=v(()=>o.userInfo),i=async c=>{switch(c){case"logout":await U.confirm("\u786E\u5B9A\u9000\u51FA\u767B\u5F55\u5417\uFF1F"),P.set("logout",P.get(O0).account),o.logout()}};return(c,t)=>{const s=k1,n=S,h=K3,d=l3("router-link"),z=J3,w=Q3;return _(),A(w,{class:"px-2",onCommand:i},{dropdown:p(()=>[u(z,null,{default:p(()=>[u(d,{to:"/user/setting"},{default:p(()=>[u(h,null,{default:p(()=>[Y("\u4E2A\u4EBA\u8BBE\u7F6E")]),_:1})]),_:1}),u(h,{command:"logout"},{default:p(()=>[Y("\u9000\u51FA\u767B\u5F55")]),_:1})]),_:1})]),default:p(()=>[m("div",g2,[u(s,{size:34,src:r(e).avatar},null,8,["src"]),m("div",w2,e3(r(e).name),1),u(n,{name:"el-icon-ArrowDown"})])]),_:1})}}}),f2="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAALcAAACHCAYAAABUFMgyAAAABHNCSVQICAgIfAhkiAAACbZJREFUeF7t201oXFUUB/DMRyJNpE0JuJqYTWtQs2pLqxSzcWGiK8FNceOqiLiMOxe1i0IFXdhFIXSli6agoJS6aBEM2o2QlbXFfkBNhRBNbRIyTTOTzHjv8O5wc3Pf55x578y7/0LI1+S8c8/95eTMfdNCH/6hAjmtQCGn68KyUIE+4AaC3FYAuHO7tVhYWrjTug52tHcq0Ox2qlToqOJ0e72I3zsV6Bg/FcqgOFTX6J1tQaZRKxAEOFPcJtqgzwE86na78zgdrwk57PNIVYqLzvZ49TX9e34fR0oKD3KmAn7A48D3LVanuOXP67ht0OXF417Hmd11eKF+3Vl+XX3PfC/LFXlciYPOhGuibkG/d+/eK5VKZWZgYOBEs9ksp7F5Ozs7641GYzWNa+EayStQKBRsMOtbW1s379+//83Ro0cfeXgVcD/kkYBHwW0bMVTHbgOv1WrXy+XypFhAlJjJK4SfzG0FRIPaevbs2ddDQ0MfG91bRx40suyqTRSIto7dxr24uPia6NQ3hOmB3FYdC0u1AuIv8fKDBw/eGh8fv2N0cjWW2MaVPTmG4Q6CXRR/Tr4V48c7mKlT3XsnLiZG2sbGxsb5/fv3f+YBbwR0c2tN4uDWR5GiBC3+jKyhYzthLZNFbm9vr/T3948auP3m8Y46t8TdQi3f1+v1X8SMfSyTVeOizlRgc3PzyuDg4Adiwapz+3XwRLj1jq2AF8WfjSrGEWeMZbZQ4axWLBaHPdwKtt69fU9OoowlCne7a9+9e/f44cOHfwbuzPbcpQs3FxYWjol/ty3dO/CJZRBua8eWI8nTp09n9+3b975LFcZas6vA6urq2YMHD57XurfZwWVyezq4H27zBk27a0vcYtC/UyqVXsxuubiySxUQc/evYu6eMnDrwBPj3gXbw30buF3ile1afXCruVsi7wi3BN5+E537D+DOdsNdurqH+22x5h3LaBILt3m7fRdsEbwkcN8Cbpd4ZbtWDbeErAOX3Vvh3tO9bTO3/jVzJCl5YwlwZ7vfTl1dHGDcFK83mda6tgKeGPeeI0DZteWbeJHULe/OkVNFxmKzqYCHWx9LJG4F2/YS2VaiQZ1bx62PJsCdzR47e1ULbjmK+N2xbNcpCe6yfP2teMHUq85WGwtPtQIebvkCPdmxbTO39WZOXNytsURc7Lq4iXM81RXiYs5WIFXc1Wr1mjhUP+lstbHwVCtg4NZPTPS5O9ZpiW3mbnVu4E51b52/GHA7TyC/BQDu/O6t8ysDbucJ5LcAwJ3fvXV+ZU7jFv9buk+83sV5BHktgDjAmBsZGflQO+M2b7/TnXNzOy0RLwfoEzeW8rq3zq/ryZMnn4+NjZ0Dbucp5K8AwI3OnT/V3oqAG7iB2/h/lIleW4KZO7eOWC4MnRudmyVMiqSAG7gpHLGMAdzAzRImRVLADdwUjljGAG7gZgmTIingBm4KRyxjADdws4RJkRRwAzeFI5YxgBu4WcKkSAq4gZvCEcsYwA3cLGFSJAXcwE3hiGUM4AZuljApkgJu4KZwxDIGcAM3S5gUSQE3cFM4YhkDuIGbJUyKpIAbuCkcsYwB3MDNEiZFUsAN3BSOWMYAbuBmCZMiKeAGbgpHLGMAN3CzhEmRFHADN4UjljGAG7hZwqRICriBm8IRyxjADdwsYVIkBdzATeGIZQzgBm6WMCmSAm7gpnDEMgZwAzdLmBRJATdwUzhiGQO4gZslTIqkgBu4KRyxjAHcwM0SJkVSwA3cFI5YxgBu4GYJkyIp4AZuCkcsYwA3cLOESZEUcAM3hSOWMYAbuFnCpEgKuIGbwhHLGMAN3CxhUiQF3MBN4YhlDOAGbpYwKZICbuCmcMQyBnADN0uYFEkBN3BTOGIZA7iBmyVMiqSAG7gpHLGMAdzAzRImRVLADdwUjljGAG7gZgmTIingBm4KRyxjADdws4RJkRRwAzeFI5YxgBu4WcKkSAq4gZvCEcsYwA3cLGFSJAXcwE3hiGUM4AZuljApkgJu4KZwxDIGcAM3S5gUSQE3cFM4YhkDuIGbJUyKpIAbuCkcsYwB3MDNEiZFUsAN3BSOWMYwcO+IJBveW1N7L3OXn7f/FSyrUV+T7+Vb0XgrV6vVa4ODgye5VKJWq/VtATeX7SDPI03cJYH7R+Am30ME9KnA2tra+dHR0XPi23rXlt2bpHOrDl4SAUsrKyufjIyMfMplN9C5uexEd/JYXFx8b2Ji4oaGWyLXYatxJPJYIjOVI4k+mrRwz8/PT0xOTt7szlLiRwXu+DXrpZ+Ym5sbP3369JLIWc3aqoNLzOpNLikWbnPmlrhbM3ij0fivUCjIjzP/B9yZb0HXEmg2m/8cOHDgJQtsfSxR1w/FLR+oP6nUu3erc0vcGxsb3w0NDb3ZtVXFCAzcMYrVYw8VTybPjo2Nfenhlh3b7NoS+Z6urSM2l+yHW52clCqVSvnhw4d/lUql57OuF3BnvQPdub44AZs/dOjQu+IJpY5aPwZUc3di3Go0MWfv4sLCwhtHjhz5wRtVurPCCFGBO0KReuwhYuxdvXTp0uszMzP6rK1gm8A7wm0772518atXr748NTX1fblcfiGr+gF3VpXvznU3Nzd/unjx4kdnzpz5VxtD/GBbT0qCxhJz7rZ17/aIImf0x48ffzE8PHyqWCw+150l+0cF7rQr3p3r1ev1P5eWlr4Sx35XvBlbgtZn7EhHgCo72x1KPXN1l1J/b96x3HVcODs7W5menj4loJ8QgfpVMPGsN+xaiSsmftP/Xl9ff5Q4AH4w1QqIU7b2qYb4uLa8vPz75cuXf7tw4cKaSETN0WanNkcR8xhwzxrCwCnUqpOb597qc31s0X8R1M+FXSfV4uJiLCpgnk/rWM3XjgS9lmTX8Z/ZmYNWar7ORH+9iT6qmB+bvxTAzcITqyTCcKvvm7fZA2/cJMGtd2ATuO1zs2PruAGdlbFUk9G7rP5E0PxYgTa7uW0USdy5bU8sbdD1zg3YqXrpuYt1Alwu1vd2u1mJKF3U7LrmqGLO4/ovRNDHPbcrSJikAjbcCq16rzq3DbPfz8d+QmkbYXTcti5uggZwEhO5CBIGW8ds69C+Z9q26kTp3H4zuh/yMNy52CUsouMKBEE3EUfu1n5Yo2Rr/jKYwAE7ShXxGFUB88mgrTP7PSa0inE7twroh9yG2+9rocnhAbmugO2Uw2/s8D0RCapQUtxmzKA4VNfI9U47vDg/uIlAdzKW+O0BADuss0tLZ4M7bH3AH1Yh977fMd6wkgFdWIXw/Z6tAHD37NYh8bAKAHdYhfD9nq0AcPfs1iHxsAr8D7xvfQ8bZ0PpAAAAAElFTkSuQmCC",V2="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAALcAAACHCAYAAABUFMgyAAAABHNCSVQICAgIfAhkiAAACbtJREFUeF7tm39olVUYx++92wo0ZiL0V2v/SKMcVMzUtMTyjzL/KUpwWCpuzbZVxpikIWQLBIMUnLiMSWXYJhSYsiA1dNaQCSqkadGGOQdj/dpubM79uPf2nts9l7Oz8/66976/nvsdXO6v957zPM/53A/Pe967cAh/qADRCoSJ5oW0UIEQ4AYEZCsAuMkuLRJzC2635sGKBqcCCadDzRV0uRrH6XwxfnAqkDX8uYLSaJxczRGcZUGkVitgBLCncMvQGj0H4FaXO3+OE+GVQTZ7bqlKdqFTHc9fE9/Te2wpKByUNxXQA9wO+LrFyhZu9nkRbhXobHK78+TN6uZxonp2Zq/z9+R7Vi7L7Yod6GRwZaiToLe0fP5wJBJu/HsounhqcrLQjcV7fNFj/65YvmTYjbkwR+YVCIfDKjAnx8fHu3p6er6oqKi4lYKXA64HuSXArcCtajG4sdOA72s+dPK7k+eW37jRZ2XMzCuk+GR93YZQXe2GnI6JwdyvQDweH79z587h2bNnvyHZW4TcqGWZFrQVEFXGTsPd2npkSdf5S6e6uy/d5X45/p+xrnZ9qL5uo1fTY94cVyAWiw329vY+W1ZWdl0yOW9LVO3KjCjM4DYCO3LgwGdfHWk7tnpoKGo2To7Tnz4c4Ha0vJ4Mnkgk4iMjI7uLi4vfTwEeN7C5MkYzKJV9tTZSRLuFN25qiF64cNkzY/OMALcn/Dk+6dTU1F9FRUUlEtx6/XhW5magJ6Fm93v2Hvyh9VD7QscztDAB4LZQpIAeMjY2dnTWrFms5+Tm1jN4RnCLJ48c8Miq1a+O3rzZb2Z+V0oKuF0psyeTaO3JRCQSuTcFNwdbtLfuzokZnCLYaWvv39+6qOXgl2e1ic0+70pBALcrZfZqksTFixcXan/XFPY2PLE0glNpbNaStHx8+JPm/Z+u8ypbeV7A7ZeVcCaO4eHhprlz5+4W7C0bnE08w+B6cMsnkmlrM7ibPth7vf3o8QecScX+qIDbfs2C9Amt7/5R67ufk+AWAc8Y7mlgp+C+BriDhEewY9WBm/fdDPKs4GaAp2+auX8G3MEGJkjRp+B+Xos5pmhNbMEtX26fBrY2eIEG91XAHSQ8gh2rADcDWQSc2ZvDPcPeqp5bfE1uSQpSbQngDjYvgYr+9u3bXdrvTVYJ1uaAZww33y0RAWdwa+beo8F9gl058sUfTih9sQyOBZGCW2xLGNwcbNVPZJOxGJlbhFtsTQC3Y8uIgVUVUMDNWhG9K5bpITKBu3Db9l1dx0+cWuCXpYC5/bISzsSRgnt1qt9W9dzKizl24U62JW+9vePk6dNdi5xJxf6ogNt+zYL0CVfhrq3f1tHZ2b3MLwUC3H5ZCWfikOAWd0zEvptNPu0qZUbmBtzOLCJGVVcAcOM/cch+NwA34AbcaEvIMkA2MZgb5gbcFM29uWZdaHPNK2QXN98TGx0dbZ83b97rqX3u/Notqa5aG6quqsx3BsjmPzQ09GFpaekuwE12ifM3McANc5OlH3ADbsBN8YQSPTdZrpOJwdwwN1nCATfgBtxoS8gyQDYxmBvmBtwwN1kGyCYGc8PcgBvmJssA2cRgbpgbcMPcZBkgmxjMDXMDbpibLANkE4O5YW7ADXOTZYBsYjA3zA24YW6yDJBNDOaGuQE3zE2WAbKJwdwwN+CGuckyQDYxmBvmBtwwN1kGyCYGc8PcgBvmJssA2cRgbpgbcMPcZBkgmxjMDXMDbpibLANkE4O5YW7ADXOTZYBsYjA3zA24YW6yDJBNDOaGuQE3zE2WAbKJwdwwN+CGuckyQDYxmBvmBtwwN1kGyCYGc8PcgBvmJssA2cRgbpgbcMPcZBkgmxjMDXMDbpibLANkE4O5YW7ADXOTZYBsYjA3zA24YW6yDJBNDOaGuQE3zE2WAbKJwdwwN+CGuckyQDYxmBvmBtwwN1kGyCYGc8PcgBvmJssA2cRgbpgbcMPcZBkgmxjMDXMDbpibLANkE4O5YW7ADXOTZYBsYjA3zA24YW6yDJBNDOaGuQE3zE2WAbKJwdwwN+CGuckyQDYxmBvmzhe4Y1qi8dQtIdyz/Nnz9F9YURH+Grtnt4h0K6yt39bR2dm9zC/VrK5aG6oG3H5ZjpzHIZnbUbgLNLi/Bdw5X0MMqFOBaDS6u6SkZJf2tgg2s3dOzM0NXqANWLD1naatHR1ndvhlNWBuv6yEM3H09fW9XF5efkqAm0Eugs3bEcttCYuUtSRia5KEu66uofzsuctdzqRif1TAbb9mQfpEe3t7WU1NzYAWM++1ucEZzPzGUrIFt9xzM7iTPfjSJ1/4Z3g4yh57/ge4PV8CxwJIJBJ/zJkz50EF2GJbwuc3hZsdKJ5UivZOmpvBXf/mu1+fOXN+pWNZ2RgYcNsoVsAO1U4mm0pLS/ek4GbGlq3NIJ9hbRFiOWU9uPnOSUFxcXHhiqdfutnT+/s9XtcLcHu9As7MPz4+3jl//vwXtRNKEWpxG5D33RnDzVsTufeObNmy/anz3Ve+GRkZ9bQ9AdzOwOXlqPF4fLi1tfWJxsZGsdfmYMuAZwW3ar87afH1mzY/NDEWOfbTlV/u86oYgNuryjsz79jY2PctLS11O3fu/FNoQ/TAVu6UGLUlct+tsne6RWE9ekPDex9dvfZbZX//wN3OpKw/6mvVlaGqTWvdnhbz5bgCk5OTvw4MDOzTtv2OpnpsBrTYY1vaAuRhqa5QiiHzq5TivXzFctp24Zo1G+/XNtwrJyZji2OxWBEfLBFKmM2VcakefWRB/8pnlt7KeAB80NUKhMPh9K6G9nhicHDwSltb24Xm5uaoFgjvo2VTy62IvA04Iwcz4DjU3OTyvjd/LrYt4heBf85sHleLi8l8UQF5f1qEVf7tiNFvSaZt/8lmNspU/p2J+HsTsVWRH8tfCsDtC558FYQZ3Px9+TK74YWbTOAWDSwDrnouG1uEG6D7ijFXgxEtK54Iyo850LLNVa1IxuZWnViqQBfNDbBd5SVwk2UDOEtW93K7XAkrFpWtK7cqcj8ufiGMHgduVRBwTiqggptDy++5uVUw633e9gmlqoUR4VZZXAYagOeECRKDmIEtwqwytO6etqo6Vsyt16PrQW4GN4lVQhJZV8AIdBliy7bWg9VKtPKXQQYcYFupIo7hFZBPBlVm1jvGtIp2zc0H1INcBbfea6bB4QDSFVDtcui1Hbo7IkYVyhRueUyjcXI1B+mVzuPk9MDNCOhs2hK9NQDAeUynQ6n7Bm6z/AC/WYXy7/2s4TUrGaAzqxDeD2wFAHdglw6Bm1UAcJtVCO8HtgKAO7BLh8DNKvAfR+rWAIVxGVEAAAAASUVORK5CYII=",k=a=>(f1("data-v-de23e12b"),a=a(),V1(),a),x2={class:"setting-drawer"},E2={class:"setting-item mb-5"},M2=k(()=>m("span",{class:"text-tx-secondary"},"\u98CE\u683C\u8BBE\u7F6E",-1)),L2={class:"flex mt-4 cursor-pointer"},H2=["onClick"],T2=["src"],O2={class:"setting-item mb-5 flex justify-between items-center"},B2=k(()=>m("span",{class:"text-tx-secondary"},"\u4E3B\u9898\u989C\u8272",-1)),I2={class:"setting-item mb-5 flex justify-between items-center"},D2=k(()=>m("span",{class:"text-tx-secondary"},"\u5F00\u542F\u9ED1\u6697\u6A21\u5F0F",-1)),R2={class:"setting-item mb-5 flex justify-between items-center"},P2=k(()=>m("span",{class:"text-tx-secondary"},"\u5F00\u542F\u591A\u9875\u7B7E\u680F",-1)),C2={class:"setting-item mb-5 flex justify-between items-center"},S2=k(()=>m("span",{class:"text-tx-secondary"},"\u53EA\u5C55\u5F00\u4E00\u4E2A\u4E00\u7EA7\u83DC\u5355",-1)),k2={class:"setting-item mb-5 flex justify-between items-center"},j2=k(()=>m("div",{class:"text-tx-secondary flex-none mr-3"},"\u83DC\u5355\u680F\u5BBD\u5EA6",-1)),N2={class:"setting-item mb-5 flex justify-between items-center"},q2=k(()=>m("div",{class:"text-tx-secondary flex-none mr-3"},"\u663E\u793ALOGO",-1)),F2={class:"setting-item mb-5 flex justify-between items-center"},G2=k(()=>m("div",{class:"text-tx-secondary flex-none mr-3"},"\u663E\u793A\u9762\u5305\u5C51",-1)),U2={class:"setting-item mb-5 flex justify-between items-center"},Y2=g({__name:"drawer",setup(a){const o=C(),e=E3(["#409EFF","#28C76F","#EA5455","#FF9F43","#01CFE8","#4A5DFF"]),i=[{type:"dark",image:V2},{type:"light",image:f2}],c=v({get(){return o.sideTheme},set(b){o.setSetting({key:"sideTheme",value:b})}}),t=v({get(){return o.openMultipleTabs},set(b){o.setSetting({key:"openMultipleTabs",value:b})}}),s=v({get(){return o.isUniqueOpened},set(b){o.setSetting({key:"isUniqueOpened",value:b})}}),n=v({get(){return o.sideWidth},set(b){o.setSetting({key:"sideWidth",value:b})}}),h=v({get(){return o.showDrawer},set(b){o.setSetting({key:"showDrawer",value:b})}}),d=v({get(){return o.theme},set(b){o.setSetting({key:"theme",value:b}),I()}}),z=v({get(){return o.showLogo},set(b){o.setSetting({key:"showLogo",value:b})}}),w=v({get(){return o.showCrumb},set(b){o.setSetting({key:"showCrumb",value:b})}}),H=a1(),I=()=>{o.setTheme(H.value)},x=()=>{$1(H)(),I()},M=()=>{H.value=!1,o.resetTheme(),I()};return(b,V)=>{const p3=S,q=j1,K=N1,m1=q1,d1=F1,h1=$3;return _(),y("div",x2,[u(h1,{modelValue:r(h),"onUpdate:modelValue":V[6]||(V[6]=f=>D(h)?h.value=f:null),"append-to-body":"",direction:"rtl",size:"250px",title:"\u4E3B\u9898\u8BBE\u7F6E"},{default:p(()=>[m("div",E2,[M2,m("div",L2,[(_(),y(Z,null,c3(i,f=>m("div",{class:"mr-4 flex relative text-primary",key:f.type,onClick:Y6=>c.value=f.type},[m("img",{src:f.image,width:"52",height:"36"},null,8,T2),r(c)==f.type?(_(),A(p3,{key:0,class:"icon-select",name:"el-icon-Select"})):O("",!0)],8,H2)),64))])]),m("div",O2,[B2,m("div",null,[u(q,{modelValue:r(d),"onUpdate:modelValue":V[0]||(V[0]=f=>D(d)?d.value=f:null),predefine:r(e)},null,8,["modelValue","predefine"])])]),m("div",I2,[D2,m("div",null,[u(K,{"model-value":r(H),onChange:x},null,8,["model-value"])])]),m("div",R2,[P2,m("div",null,[u(K,{modelValue:r(t),"onUpdate:modelValue":V[1]||(V[1]=f=>D(t)?t.value=f:null),"active-value":!0,"inactive-value":!1},null,8,["modelValue"])])]),m("div",C2,[S2,m("div",null,[u(K,{modelValue:r(s),"onUpdate:modelValue":V[2]||(V[2]=f=>D(s)?s.value=f:null),"active-value":!0,"inactive-value":!1},null,8,["modelValue"])])]),m("div",k2,[j2,m("div",null,[u(m1,{modelValue:r(n),"onUpdate:modelValue":V[3]||(V[3]=f=>D(n)?n.value=f:null),min:180,max:250},null,8,["modelValue"])])]),m("div",N2,[q2,m("div",null,[u(K,{modelValue:r(z),"onUpdate:modelValue":V[4]||(V[4]=f=>D(z)?z.value=f:null),"active-value":!0,"inactive-value":!1},null,8,["modelValue"])])]),m("div",F2,[G2,m("div",null,[u(K,{modelValue:r(w),"onUpdate:modelValue":V[5]||(V[5]=f=>D(w)?w.value=f:null),"active-value":!0,"inactive-value":!1},null,8,["modelValue"])])]),m("div",U2,[u(d1,{onClick:M},{default:p(()=>[Y("\u91CD\u7F6E\u4E3B\u9898")]),_:1})])]),_:1},8,["modelValue"])])}}});const W2=B(Y2,[["__scopeId","data-v-de23e12b"]]),Z2=g({__name:"index",setup(a){const o=C(),e=()=>{o.setSetting({key:"showDrawer",value:!0})};return(i,c)=>{const t=S;return _(),y("div",{class:"setting flex cursor-pointer h-full items-center px-2",onClick:e},[u(t,{size:16,name:"el-icon-Setting"}),u(W2)])}}});function X2(){const a=H3(),o=L3(),e=t3(),i=C(),c=v(()=>e.getTabList),t=v(()=>o.fullPath);return{tabsLists:c,currentTab:t,addTab:()=>{!i.openMultipleTabs||e.addTab(a)},removeTab:z=>{!i.openMultipleTabs||(z=z!=null?z:o.fullPath,e.removeTab(z,a))},removeOtherTab:()=>{!i.openMultipleTabs||e.removeOtherTab(o)},removeAllTab:()=>{!i.openMultipleTabs||e.removeAllTab(a)}}}const $2={class:"app-tabs pl-4 flex bg-body"},K2={class:"flex-1 min-w-0"},J2={class:"flex items-center px-3"},Q2=g({__name:"multiple-tabs",setup(a){const o=H3(),e=t3(),{removeOtherTab:i,addTab:c,removeAllTab:t,removeTab:s,tabsLists:n,currentTab:h}=X2();s1(()=>{c()});const d=w=>{const H=e.tasMap[w];o.push(c1(H))},z=w=>{switch(w){case"closeCurrent":s();break;case"closeOther":i();break;case"closeAll":t();break}};return(w,H)=>{const I=G1,x=U1,M=S,b=K3,V=J3,p3=Q3;return _(),y("div",$2,[m("div",K2,[u(x,{"model-value":r(h),closable:r(n).length>1,onTabChange:d,onTabRemove:H[0]||(H[0]=q=>r(s)(q))},{default:p(()=>[(_(!0),y(Z,null,c3(r(n),q=>(_(),A(I,{key:q.fullPath,label:q.title,name:q.fullPath},null,8,["label","name"]))),128))]),_:1},8,["model-value","closable"])]),u(p3,{onCommand:z},{dropdown:p(()=>[u(V,null,{default:p(()=>[u(b,{command:"closeCurrent"},{default:p(()=>[Y(" \u5173\u95ED\u5F53\u524D ")]),_:1}),u(b,{command:"closeOther"},{default:p(()=>[Y(" \u5173\u95ED\u5176\u4ED6 ")]),_:1}),u(b,{command:"closeAll"},{default:p(()=>[Y(" \u5173\u95ED\u5168\u90E8 ")]),_:1})]),_:1})]),default:p(()=>[m("span",J2,[u(M,{size:16,name:"el-icon-arrow-down"})])]),_:1})])}}});const a6=B(Q2,[["__scopeId","data-v-b3197fe5"]]),o6={class:"header"},e6={class:"navbar"},l6={class:"flex-1 flex"},i6={class:"navbar-item"},c6={class:"navbar-item"},t6={key:0,class:"flex items-center px-2"},s6={class:"flex"},n6={key:0,class:"navbar-item"},r6={class:"navbar-item"},u6={class:"navbar-item"},m6=g({__name:"index",setup(a){const o=N(),e=v(()=>o.isMobile),i=C();return(c,t)=>(_(),y("header",o6,[m("div",e6,[m("div",l6,[m("div",i6,[u(p2)]),m("div",c6,[u(z2)]),!r(e)&&r(i).showCrumb?(_(),y("div",t6,[u(b2)])):O("",!0)]),m("div",s6,[r(e)?O("",!0):(_(),y("div",n6,[u(y2)])),m("div",r6,[u(A2)]),m("div",u6,[u(Z2)])])]),r(i).openMultipleTabs?(_(),A(a6,{key:0})):O("",!0)]))}});const d6={class:"layout-default flex h-screen w-full"},h6={class:"app-aside"},_6={class:"flex-1 flex flex-col min-w-0"},v6={class:"app-header"},p6={class:"app-main flex-1 min-h-0"},z6=g({__name:"index",setup(a){return(o,e)=>(_(),y("div",d6,[m("div",h6,[u(v2)]),m("div",_6,[m("div",v6,[u(m6)]),m("div",p6,[u(F0)])])]))}}),O3=()=>Promise.resolve(z6),B3=Symbol(),b6=[{path:"/:pathMatch(.*)*",component:()=>l(()=>import("./404.950d9176.js"),["assets/404.950d9176.js","assets/error.b20a557d.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/vue-router.9f65afb1.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/error.1aaeb02c.css"])},{path:E.ERROR_403,component:()=>l(()=>import("./403.655bd478.js"),["assets/403.655bd478.js","assets/error.b20a557d.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/vue-router.9f65afb1.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/error.1aaeb02c.css"])},{path:E.LOGIN,component:()=>l(()=>import("./login.9e1d48b4.js"),["assets/login.9e1d48b4.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/vue-router.9f65afb1.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/login.ba2fa480.css"])},{path:"/user",component:O3,children:[{path:"setting",component:()=>l(()=>import("./setting.82e33814.js"),["assets/setting.82e33814.js","assets/index.13ef78d6.js","assets/@vue.51d7f2d8.js","assets/index.8d99c3e6.css","assets/element-plus.4328d892.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/picker.45aea54f.js","assets/index.fa872673.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/index.c47e74f8.js","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/index.a9a11abe.js","assets/index.bb3c88e6.css","assets/index.a450f1bb.js","assets/index.vue_vue_type_script_setup_true_lang.dc835bba.js","assets/usePaging.2ad8e1e6.js","assets/vue3-video-play.b911321b.js","assets/vue3-video-play.74881f83.css","assets/index.be52e81c.css","assets/vuedraggable.0cb40d3a.js","assets/vue.5de34049.js","assets/sortablejs.ef73fc5c.js","assets/picker.f0cb09c5.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),name:Symbol(),meta:{title:"\u4E2A\u4EBA\u8BBE\u7F6E"}},{path:"user_informationgdetil",component:()=>l(()=>import("./detil.088ae19c.js"),["assets/detil.088ae19c.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/vue-router.9f65afb1.js","assets/informationg.b648c8df.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/detil.9f66ded4.css"]),name:Symbol(),meta:{title:"\u6863\u6848\u8BE6\u60C5"}}]}],N3={path:E.INDEX,component:O3,name:B3},x3=Object.assign({"/src/views/account/login.vue":()=>l(()=>import("./login.9e1d48b4.js"),["assets/login.9e1d48b4.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/vue-router.9f65afb1.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/login.ba2fa480.css"]),"/src/views/app/recharge/index.vue":()=>l(()=>import("./index.b011782e.js"),["assets/index.b011782e.js","assets/index.13ef78d6.js","assets/@vue.51d7f2d8.js","assets/index.8d99c3e6.css","assets/element-plus.4328d892.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/app_update/edit.vue":()=>l(()=>import("./edit.d51518af.js"),["assets/edit.d51518af.js","assets/edit.vue_vue_type_script_setup_true_name_appUpdateEdit_lang.76e851a1.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.fa872673.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/app_update/index.vue":()=>l(()=>import("./index.494c137c.js"),["assets/index.494c137c.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/index.vue_vue_type_script_setup_true_lang.17266fa4.js","assets/usePaging.2ad8e1e6.js","assets/useDictOptions.a61fcf9f.js","assets/edit.vue_vue_type_script_setup_true_name_appUpdateEdit_lang.76e851a1.js","assets/index.fa872673.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/article/column/edit.vue":()=>l(()=>import("./edit.82542331.js"),["assets/edit.82542331.js","assets/edit.vue_vue_type_script_setup_true_lang.390417cc.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/article.188d8b86.js","assets/index.fa872673.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/article/column/index.vue":()=>l(()=>import("./index.d91ffc2c.js"),["assets/index.d91ffc2c.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/article.188d8b86.js","assets/usePaging.2ad8e1e6.js","assets/edit.vue_vue_type_script_setup_true_lang.390417cc.js","assets/index.fa872673.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/article/lists/edit.vue":()=>l(()=>import("./edit.28e624a1.js"),["assets/edit.28e624a1.js","assets/index.13ef78d6.js","assets/@vue.51d7f2d8.js","assets/index.8d99c3e6.css","assets/element-plus.4328d892.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_style_index_0_lang.8e405d58.js","assets/@wangeditor.afd76521.js","assets/@wangeditor.4f35b623.css","assets/picker.45aea54f.js","assets/index.fa872673.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/index.c47e74f8.js","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/index.a9a11abe.js","assets/index.bb3c88e6.css","assets/index.a450f1bb.js","assets/index.vue_vue_type_script_setup_true_lang.dc835bba.js","assets/usePaging.2ad8e1e6.js","assets/vue3-video-play.b911321b.js","assets/vue3-video-play.74881f83.css","assets/index.be52e81c.css","assets/vuedraggable.0cb40d3a.js","assets/vue.5de34049.js","assets/sortablejs.ef73fc5c.js","assets/picker.f0cb09c5.css","assets/index.0d25a475.css","assets/vue-router.9f65afb1.js","assets/useDictOptions.a61fcf9f.js","assets/article.188d8b86.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/article/lists/index.vue":()=>l(()=>import("./index.df3d8ed3.js"),["assets/index.df3d8ed3.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/article.188d8b86.js","assets/useDictOptions.a61fcf9f.js","assets/usePaging.2ad8e1e6.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/category_business/edit.vue":()=>l(()=>import("./edit.efabc4d7.js"),["assets/edit.efabc4d7.js","assets/edit.vue_vue_type_script_setup_true_name_categoryBusinessEdit_lang.0f542952.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.fa872673.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/category_business/index.vue":()=>l(()=>import("./index.016f3889.js"),["assets/index.016f3889.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/index.vue_vue_type_script_setup_true_lang.17266fa4.js","assets/usePaging.2ad8e1e6.js","assets/useDictOptions.a61fcf9f.js","assets/edit.vue_vue_type_script_setup_true_name_categoryBusinessEdit_lang.0f542952.js","assets/index.fa872673.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/channel/h5.vue":()=>l(()=>import("./h5.83486a01.js"),["assets/h5.83486a01.js","assets/index.13ef78d6.js","assets/@vue.51d7f2d8.js","assets/index.8d99c3e6.css","assets/element-plus.4328d892.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/channel/open_setting.vue":()=>l(()=>import("./open_setting.d819b3cc.js"),["assets/open_setting.d819b3cc.js","assets/index.13ef78d6.js","assets/@vue.51d7f2d8.js","assets/index.8d99c3e6.css","assets/element-plus.4328d892.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/channel/weapp.vue":()=>l(()=>import("./weapp.9dc486dc.js"),["assets/weapp.9dc486dc.js","assets/index.13ef78d6.js","assets/@vue.51d7f2d8.js","assets/index.8d99c3e6.css","assets/element-plus.4328d892.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/picker.45aea54f.js","assets/index.fa872673.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/index.c47e74f8.js","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/index.a9a11abe.js","assets/index.bb3c88e6.css","assets/index.a450f1bb.js","assets/index.vue_vue_type_script_setup_true_lang.dc835bba.js","assets/usePaging.2ad8e1e6.js","assets/vue3-video-play.b911321b.js","assets/vue3-video-play.74881f83.css","assets/index.be52e81c.css","assets/vuedraggable.0cb40d3a.js","assets/vue.5de34049.js","assets/sortablejs.ef73fc5c.js","assets/picker.f0cb09c5.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/channel/wx_oa/config.vue":()=>l(()=>import("./config.9f9f3992.js"),["assets/config.9f9f3992.js","assets/index.13ef78d6.js","assets/@vue.51d7f2d8.js","assets/index.8d99c3e6.css","assets/element-plus.4328d892.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/picker.45aea54f.js","assets/index.fa872673.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/index.c47e74f8.js","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/index.a9a11abe.js","assets/index.bb3c88e6.css","assets/index.a450f1bb.js","assets/index.vue_vue_type_script_setup_true_lang.dc835bba.js","assets/usePaging.2ad8e1e6.js","assets/vue3-video-play.b911321b.js","assets/vue3-video-play.74881f83.css","assets/index.be52e81c.css","assets/vuedraggable.0cb40d3a.js","assets/vue.5de34049.js","assets/sortablejs.ef73fc5c.js","assets/picker.f0cb09c5.css","assets/wx_oa.dfa7359b.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/channel/wx_oa/menu.vue":()=>l(()=>import("./menu.74d913bc.js"),["assets/menu.74d913bc.js","assets/index.13ef78d6.js","assets/@vue.51d7f2d8.js","assets/index.8d99c3e6.css","assets/element-plus.4328d892.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/oa-phone.16d84123.js","assets/useMenuOa.7c4cd755.js","assets/wx_oa.dfa7359b.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/oa-phone.231c030b.css","assets/oa-attr.84c9ec92.js","assets/index.a9a11abe.js","assets/index.bb3c88e6.css","assets/index.fa872673.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/oa-menu-form.vue_vue_type_script_setup_true_lang.4623da76.js","assets/oa-menu-form-edit.vue_vue_type_script_setup_true_lang.0a826763.js"]),"/src/views/channel/wx_oa/menu_com/oa-attr.vue":()=>l(()=>import("./oa-attr.84c9ec92.js"),["assets/oa-attr.84c9ec92.js","assets/index.a9a11abe.js","assets/@vue.51d7f2d8.js","assets/index.bb3c88e6.css","assets/index.fa872673.js","assets/element-plus.4328d892.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/useMenuOa.7c4cd755.js","assets/wx_oa.dfa7359b.js","assets/oa-menu-form.vue_vue_type_script_setup_true_lang.4623da76.js","assets/oa-menu-form-edit.vue_vue_type_script_setup_true_lang.0a826763.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/channel/wx_oa/menu_com/oa-menu-form-edit.vue":()=>l(()=>import("./oa-menu-form-edit.24b5a45e.js"),["assets/oa-menu-form-edit.24b5a45e.js","assets/oa-menu-form-edit.vue_vue_type_script_setup_true_lang.0a826763.js","assets/index.fa872673.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/oa-menu-form.vue_vue_type_script_setup_true_lang.4623da76.js","assets/useMenuOa.7c4cd755.js","assets/wx_oa.dfa7359b.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/channel/wx_oa/menu_com/oa-menu-form.vue":()=>l(()=>import("./oa-menu-form.3f7fad6e.js"),["assets/oa-menu-form.3f7fad6e.js","assets/oa-menu-form.vue_vue_type_script_setup_true_lang.4623da76.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/useMenuOa.7c4cd755.js","assets/wx_oa.dfa7359b.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/channel/wx_oa/menu_com/oa-phone.vue":()=>l(()=>import("./oa-phone.16d84123.js"),["assets/oa-phone.16d84123.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/useMenuOa.7c4cd755.js","assets/wx_oa.dfa7359b.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/oa-phone.231c030b.css"]),"/src/views/channel/wx_oa/reply/default_reply.vue":()=>l(()=>import("./default_reply.40bf618a.js"),["assets/default_reply.40bf618a.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/wx_oa.dfa7359b.js","assets/usePaging.2ad8e1e6.js","assets/edit.vue_vue_type_script_setup_true_lang.caf54865.js","assets/index.fa872673.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/channel/wx_oa/reply/edit.vue":()=>l(()=>import("./edit.e96ad089.js"),["assets/edit.e96ad089.js","assets/edit.vue_vue_type_script_setup_true_lang.caf54865.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/wx_oa.dfa7359b.js","assets/index.fa872673.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/channel/wx_oa/reply/follow_reply.vue":()=>l(()=>import("./follow_reply.12c91e0d.js"),["assets/follow_reply.12c91e0d.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/wx_oa.dfa7359b.js","assets/usePaging.2ad8e1e6.js","assets/edit.vue_vue_type_script_setup_true_lang.caf54865.js","assets/index.fa872673.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/channel/wx_oa/reply/keyword_reply.vue":()=>l(()=>import("./keyword_reply.0d9964f6.js"),["assets/keyword_reply.0d9964f6.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/wx_oa.dfa7359b.js","assets/usePaging.2ad8e1e6.js","assets/edit.vue_vue_type_script_setup_true_lang.caf54865.js","assets/index.fa872673.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/company/dialog.vue":()=>l(()=>import("./dialog.b756c97b.js"),["assets/dialog.b756c97b.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/dialog.6aac509b.css"]),"/src/views/company/dialog_index.vue":()=>l(()=>import("./dialog_index.282035e2.js"),["assets/dialog_index.282035e2.js","assets/dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.8b016626.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/usePaging.2ad8e1e6.js","assets/company.b7ec1bf9.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/company/dialog_index_man.vue":()=>l(()=>import("./dialog_index_man.50c4d1b5.js"),["assets/dialog_index_man.50c4d1b5.js","assets/dialog_index_man.vue_vue_type_script_setup_true_name_companyLists_lang.94e09823.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/usePaging.2ad8e1e6.js","assets/role.41d5883e.js","assets/useDictOptions.a61fcf9f.js","assets/admin.1cd61358.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/company/dialog_index_personnel.vue":()=>l(()=>import("./dialog_index_personnel.aa26d421.js"),["assets/dialog_index_personnel.aa26d421.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/usePaging.2ad8e1e6.js","assets/role.41d5883e.js","assets/useDictOptions.a61fcf9f.js","assets/admin.1cd61358.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/company/edit.vue":()=>l(()=>import("./edit.49ead2a1.js"),["assets/edit.49ead2a1.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/vue-router.9f65afb1.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/company.b7ec1bf9.js","assets/common.86798ce6.js","assets/dict.927f1fc7.js","assets/lodash.08438971.js","assets/dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.8b016626.js","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/usePaging.2ad8e1e6.js","assets/dialog_index_man.vue_vue_type_script_setup_true_name_companyLists_lang.94e09823.js","assets/role.41d5883e.js","assets/useDictOptions.a61fcf9f.js","assets/admin.1cd61358.js","assets/axios.105476b3.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/edit.a8bfff6c.css"]),"/src/views/company/index.vue":()=>l(()=>import("./index.5a246c19.js"),["assets/index.5a246c19.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/vue-router.9f65afb1.js","assets/usePaging.2ad8e1e6.js","assets/useDictOptions.a61fcf9f.js","assets/company.b7ec1bf9.js","assets/lodash.08438971.js","assets/dict.927f1fc7.js","assets/dict.070e6995.js","assets/dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.8b016626.js","assets/axios.105476b3.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/index.ed16e5c3.css"]),"/src/views/company/subordinate.vue":()=>l(()=>import("./subordinate.30bb2848.js"),["assets/subordinate.30bb2848.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/vue-router.9f65afb1.js","assets/usePaging.2ad8e1e6.js","assets/useDictOptions.a61fcf9f.js","assets/company.b7ec1bf9.js","assets/admin.1cd61358.js","assets/lodash.08438971.js","assets/dict.927f1fc7.js","assets/axios.105476b3.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/subordinate.a60ba8ed.css"]),"/src/views/company_complaint_feedback/edit.vue":()=>l(()=>import("./edit.17a19981.js"),["assets/edit.17a19981.js","assets/edit.vue_vue_type_script_setup_true_name_companyComplaintFeedbackEdit_lang.def3fc04.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.fa872673.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/company_complaint_feedback/index.vue":()=>l(()=>import("./index.36e7dce9.js"),["assets/index.36e7dce9.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/usePaging.2ad8e1e6.js","assets/useDictOptions.a61fcf9f.js","assets/edit.vue_vue_type_script_setup_true_name_companyComplaintFeedbackEdit_lang.def3fc04.js","assets/index.fa872673.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/company_form/edit.vue":()=>l(()=>import("./edit.9a5a2a8b.js"),["assets/edit.9a5a2a8b.js","assets/edit.vue_vue_type_script_setup_true_name_companyFormEdit_lang.95b5864b.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.fa872673.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/company_form/index.vue":()=>l(()=>import("./index.a784d747.js"),["assets/index.a784d747.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/usePaging.2ad8e1e6.js","assets/useDictOptions.a61fcf9f.js","assets/edit.vue_vue_type_script_setup_true_name_companyFormEdit_lang.95b5864b.js","assets/index.fa872673.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/consumer/components/account-adjust.vue":()=>l(()=>import("./account-adjust.065dcf6f.js"),["assets/account-adjust.065dcf6f.js","assets/account-adjust.vue_vue_type_script_setup_true_lang.99dff1dd.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.fa872673.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/consumer/lists/detail copy.vue":()=>l(()=>import("./detail copy.52bf3f86.js"),["assets/detail copy.52bf3f86.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.dc835bba.js","assets/vue-router.9f65afb1.js","assets/consumer.d25e26af.js","assets/account-adjust.vue_vue_type_script_setup_true_lang.99dff1dd.js","assets/index.fa872673.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/consumer/lists/detail.vue":()=>l(()=>import("./detail.fbc53c4f.js"),["assets/detail.fbc53c4f.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/vue-router.9f65afb1.js","assets/consumer.d25e26af.js","assets/common.86798ce6.js","assets/dict.927f1fc7.js","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/usePaging.2ad8e1e6.js","assets/company.b7ec1bf9.js","assets/lodash.08438971.js","assets/account-adjust.vue_vue_type_script_setup_true_lang.99dff1dd.js","assets/index.fa872673.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/axios.105476b3.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/detail.91395de5.css"]),"/src/views/consumer/lists/index.vue":()=>l(()=>import("./index.10660cf9.js"),["assets/index.10660cf9.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/index.vue_vue_type_script_setup_true_lang.f3cc5114.js","assets/index.fa872673.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/vue-router.9f65afb1.js","assets/usePaging.2ad8e1e6.js","assets/consumer.d25e26af.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/index.5e13ecf8.css"]),"/src/views/contract/company.vue":()=>l(()=>import("./company.4bbcd86c.js"),["assets/company.4bbcd86c.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/vue-router.9f65afb1.js","assets/usePaging.2ad8e1e6.js","assets/useDictOptions.a61fcf9f.js","assets/company.b7ec1bf9.js","assets/lodash.08438971.js","assets/dict.927f1fc7.js","assets/dict.070e6995.js","assets/dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.8c21acad.js","assets/axios.105476b3.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/company.ed16e5c3.css"]),"/src/views/contract/contractDetil.vue":()=>l(()=>import("./contractDetil.49d835e3.js"),["assets/contractDetil.49d835e3.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/vue-router.9f65afb1.js","assets/contract.35ae5168.js","assets/consumer.d25e26af.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/contractDetil.82bc7784.css"]),"/src/views/contract/dialog_index.vue":()=>l(()=>import("./dialog_index.5b29a2d0.js"),["assets/dialog_index.5b29a2d0.js","assets/dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.8c21acad.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/usePaging.2ad8e1e6.js","assets/company.b7ec1bf9.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/contract/edit.vue":()=>l(()=>import("./edit.f5d755ab.js"),["assets/edit.f5d755ab.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.fa872673.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/contract.35ae5168.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/contract/index.vue":()=>l(()=>import("./index.6f446179.js"),["assets/index.6f446179.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/vue-router.9f65afb1.js","assets/usePaging.2ad8e1e6.js","assets/useDictOptions.a61fcf9f.js","assets/contract.35ae5168.js","assets/lodash.08438971.js","assets/dict.927f1fc7.js","assets/company.b7ec1bf9.js","assets/axios.105476b3.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/index.0414e924.css"]),"/src/views/contract/vehicle_detail.vue":()=>l(()=>import("./vehicle_detail.e1eeeded.js"),["assets/vehicle_detail.e1eeeded.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/vue-router.9f65afb1.js","assets/contract.35ae5168.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/vehicle_detail.7aa08ed6.css"]),"/src/views/contract/vehicle_list.vue":()=>l(()=>import("./vehicle_list.b39c8c84.js"),["assets/vehicle_list.b39c8c84.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/usePaging.2ad8e1e6.js","assets/useDictOptions.a61fcf9f.js","assets/contract.35ae5168.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/vehicle_list.4db1527d.css"]),"/src/views/decoration/component/add-nav.vue":()=>l(()=>import("./add-nav.5fcd6517.js"),["assets/add-nav.5fcd6517.js","assets/add-nav.vue_vue_type_script_setup_true_lang.3317a1cd.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.a9a11abe.js","assets/index.bb3c88e6.css","assets/picker.c7d50072.js","assets/index.fa872673.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/picker.d164339d.css","assets/picker.45aea54f.js","assets/index.c47e74f8.js","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/index.a450f1bb.js","assets/index.vue_vue_type_script_setup_true_lang.dc835bba.js","assets/usePaging.2ad8e1e6.js","assets/vue3-video-play.b911321b.js","assets/vue3-video-play.74881f83.css","assets/index.be52e81c.css","assets/vuedraggable.0cb40d3a.js","assets/vue.5de34049.js","assets/sortablejs.ef73fc5c.js","assets/picker.f0cb09c5.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/decoration/component/decoration-img.vue":()=>l(()=>import("./decoration-img.3e95b47f.js"),["assets/decoration-img.3e95b47f.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/decoration-img.e03f874f.css"]),"/src/views/decoration/component/pages/attr-setting.vue":()=>l(()=>import("./attr-setting.3494a104.js"),["assets/attr-setting.3494a104.js","assets/attr-setting.vue_vue_type_script_setup_true_lang.da407ae8.js","assets/index.85a36c0c.js","assets/attr.vue_vue_type_script_setup_true_lang.5697c78f.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.a9a11abe.js","assets/index.bb3c88e6.css","assets/picker.c7d50072.js","assets/index.fa872673.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/picker.d164339d.css","assets/picker.45aea54f.js","assets/index.c47e74f8.js","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/index.a450f1bb.js","assets/index.vue_vue_type_script_setup_true_lang.dc835bba.js","assets/usePaging.2ad8e1e6.js","assets/vue3-video-play.b911321b.js","assets/vue3-video-play.74881f83.css","assets/index.be52e81c.css","assets/vuedraggable.0cb40d3a.js","assets/vue.5de34049.js","assets/sortablejs.ef73fc5c.js","assets/picker.f0cb09c5.css","assets/content.vue_vue_type_script_setup_true_lang.d21cb19e.js","assets/decoration-img.3e95b47f.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/decoration-img.e03f874f.css","assets/attr.vue_vue_type_script_setup_true_lang.fdded599.js","assets/content.206aab68.js","assets/content.3c393d61.css","assets/attr.vue_vue_type_script_setup_true_lang.f3b5265b.js","assets/add-nav.vue_vue_type_script_setup_true_lang.3317a1cd.js","assets/content.b2cebb4d.js","assets/content.4bb46171.css","assets/attr.vue_vue_type_script_setup_true_lang.aeb5c0d0.js","assets/content.vue_vue_type_script_setup_true_lang.08763d7f.js","assets/attr.vue_vue_type_script_setup_true_lang.d01577b5.js","assets/content.95faa73b.js","assets/decoration.4be01ffa.js","assets/content.199cf006.css","assets/attr.vue_vue_type_script_setup_true_lang.0fc534ba.js","assets/content.84ae04ad.js","assets/content.0b4d2f25.css","assets/attr.vue_vue_type_script_setup_true_lang.3d3efd85.js","assets/content.vue_vue_type_script_setup_true_lang.28911d3e.js","assets/attr.vue_vue_type_script_setup_true_lang.00e826d0.js","assets/content.92456155.js","assets/content.93b4d62b.css"]),"/src/views/decoration/component/pages/menu.vue":()=>l(()=>import("./menu.1c60c1a9.js"),["assets/menu.1c60c1a9.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/menu.c64cbd13.css"]),"/src/views/decoration/component/pages/preview-pc.vue":()=>l(()=>import("./preview-pc.10dd6ed7.js"),["assets/preview-pc.10dd6ed7.js","assets/index.85a36c0c.js","assets/attr.vue_vue_type_script_setup_true_lang.5697c78f.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.a9a11abe.js","assets/index.bb3c88e6.css","assets/picker.c7d50072.js","assets/index.fa872673.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/picker.d164339d.css","assets/picker.45aea54f.js","assets/index.c47e74f8.js","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/index.a450f1bb.js","assets/index.vue_vue_type_script_setup_true_lang.dc835bba.js","assets/usePaging.2ad8e1e6.js","assets/vue3-video-play.b911321b.js","assets/vue3-video-play.74881f83.css","assets/index.be52e81c.css","assets/vuedraggable.0cb40d3a.js","assets/vue.5de34049.js","assets/sortablejs.ef73fc5c.js","assets/picker.f0cb09c5.css","assets/content.vue_vue_type_script_setup_true_lang.d21cb19e.js","assets/decoration-img.3e95b47f.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/decoration-img.e03f874f.css","assets/attr.vue_vue_type_script_setup_true_lang.fdded599.js","assets/content.206aab68.js","assets/content.3c393d61.css","assets/attr.vue_vue_type_script_setup_true_lang.f3b5265b.js","assets/add-nav.vue_vue_type_script_setup_true_lang.3317a1cd.js","assets/content.b2cebb4d.js","assets/content.4bb46171.css","assets/attr.vue_vue_type_script_setup_true_lang.aeb5c0d0.js","assets/content.vue_vue_type_script_setup_true_lang.08763d7f.js","assets/attr.vue_vue_type_script_setup_true_lang.d01577b5.js","assets/content.95faa73b.js","assets/decoration.4be01ffa.js","assets/content.199cf006.css","assets/attr.vue_vue_type_script_setup_true_lang.0fc534ba.js","assets/content.84ae04ad.js","assets/content.0b4d2f25.css","assets/attr.vue_vue_type_script_setup_true_lang.3d3efd85.js","assets/content.vue_vue_type_script_setup_true_lang.28911d3e.js","assets/attr.vue_vue_type_script_setup_true_lang.00e826d0.js","assets/content.92456155.js","assets/content.93b4d62b.css","assets/preview-pc.77355e30.css"]),"/src/views/decoration/component/pages/preview.vue":()=>l(()=>import("./preview.badfc8f1.js"),["assets/preview.badfc8f1.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.85a36c0c.js","assets/attr.vue_vue_type_script_setup_true_lang.5697c78f.js","assets/index.a9a11abe.js","assets/index.bb3c88e6.css","assets/picker.c7d50072.js","assets/index.fa872673.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/picker.d164339d.css","assets/picker.45aea54f.js","assets/index.c47e74f8.js","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/index.a450f1bb.js","assets/index.vue_vue_type_script_setup_true_lang.dc835bba.js","assets/usePaging.2ad8e1e6.js","assets/vue3-video-play.b911321b.js","assets/vue3-video-play.74881f83.css","assets/index.be52e81c.css","assets/vuedraggable.0cb40d3a.js","assets/vue.5de34049.js","assets/sortablejs.ef73fc5c.js","assets/picker.f0cb09c5.css","assets/content.vue_vue_type_script_setup_true_lang.d21cb19e.js","assets/decoration-img.3e95b47f.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/decoration-img.e03f874f.css","assets/attr.vue_vue_type_script_setup_true_lang.fdded599.js","assets/content.206aab68.js","assets/content.3c393d61.css","assets/attr.vue_vue_type_script_setup_true_lang.f3b5265b.js","assets/add-nav.vue_vue_type_script_setup_true_lang.3317a1cd.js","assets/content.b2cebb4d.js","assets/content.4bb46171.css","assets/attr.vue_vue_type_script_setup_true_lang.aeb5c0d0.js","assets/content.vue_vue_type_script_setup_true_lang.08763d7f.js","assets/attr.vue_vue_type_script_setup_true_lang.d01577b5.js","assets/content.95faa73b.js","assets/decoration.4be01ffa.js","assets/content.199cf006.css","assets/attr.vue_vue_type_script_setup_true_lang.0fc534ba.js","assets/content.84ae04ad.js","assets/content.0b4d2f25.css","assets/attr.vue_vue_type_script_setup_true_lang.3d3efd85.js","assets/content.vue_vue_type_script_setup_true_lang.28911d3e.js","assets/attr.vue_vue_type_script_setup_true_lang.00e826d0.js","assets/content.92456155.js","assets/content.93b4d62b.css","assets/preview.705e23a4.css"]),"/src/views/decoration/component/widgets/banner/attr.vue":()=>l(()=>import("./attr.91562f5c.js"),["assets/attr.91562f5c.js","assets/attr.vue_vue_type_script_setup_true_lang.5697c78f.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.a9a11abe.js","assets/index.bb3c88e6.css","assets/picker.c7d50072.js","assets/index.fa872673.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/picker.d164339d.css","assets/picker.45aea54f.js","assets/index.c47e74f8.js","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/index.a450f1bb.js","assets/index.vue_vue_type_script_setup_true_lang.dc835bba.js","assets/usePaging.2ad8e1e6.js","assets/vue3-video-play.b911321b.js","assets/vue3-video-play.74881f83.css","assets/index.be52e81c.css","assets/vuedraggable.0cb40d3a.js","assets/vue.5de34049.js","assets/sortablejs.ef73fc5c.js","assets/picker.f0cb09c5.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/decoration/component/widgets/banner/content.vue":()=>l(()=>import("./content.3fbe2997.js"),["assets/content.3fbe2997.js","assets/content.vue_vue_type_script_setup_true_lang.d21cb19e.js","assets/decoration-img.3e95b47f.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/decoration-img.e03f874f.css"]),"/src/views/decoration/component/widgets/customer-service/attr.vue":()=>l(()=>import("./attr.8755c3be.js"),["assets/attr.8755c3be.js","assets/attr.vue_vue_type_script_setup_true_lang.fdded599.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/picker.45aea54f.js","assets/index.fa872673.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/index.c47e74f8.js","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/index.a9a11abe.js","assets/index.bb3c88e6.css","assets/index.a450f1bb.js","assets/index.vue_vue_type_script_setup_true_lang.dc835bba.js","assets/usePaging.2ad8e1e6.js","assets/vue3-video-play.b911321b.js","assets/vue3-video-play.74881f83.css","assets/index.be52e81c.css","assets/vuedraggable.0cb40d3a.js","assets/vue.5de34049.js","assets/sortablejs.ef73fc5c.js","assets/picker.f0cb09c5.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/decoration/component/widgets/customer-service/content.vue":()=>l(()=>import("./content.206aab68.js"),["assets/content.206aab68.js","assets/decoration-img.3e95b47f.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/decoration-img.e03f874f.css","assets/content.3c393d61.css"]),"/src/views/decoration/component/widgets/my-service/attr.vue":()=>l(()=>import("./attr.aed95221.js"),["assets/attr.aed95221.js","assets/attr.vue_vue_type_script_setup_true_lang.f3b5265b.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/add-nav.vue_vue_type_script_setup_true_lang.3317a1cd.js","assets/index.a9a11abe.js","assets/index.bb3c88e6.css","assets/picker.c7d50072.js","assets/index.fa872673.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/picker.d164339d.css","assets/picker.45aea54f.js","assets/index.c47e74f8.js","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/index.a450f1bb.js","assets/index.vue_vue_type_script_setup_true_lang.dc835bba.js","assets/usePaging.2ad8e1e6.js","assets/vue3-video-play.b911321b.js","assets/vue3-video-play.74881f83.css","assets/index.be52e81c.css","assets/vuedraggable.0cb40d3a.js","assets/vue.5de34049.js","assets/sortablejs.ef73fc5c.js","assets/picker.f0cb09c5.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/decoration/component/widgets/my-service/content.vue":()=>l(()=>import("./content.b2cebb4d.js"),["assets/content.b2cebb4d.js","assets/decoration-img.3e95b47f.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/decoration-img.e03f874f.css","assets/content.4bb46171.css"]),"/src/views/decoration/component/widgets/nav/attr.vue":()=>l(()=>import("./attr.de63a0c2.js"),["assets/attr.de63a0c2.js","assets/attr.vue_vue_type_script_setup_true_lang.aeb5c0d0.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/add-nav.vue_vue_type_script_setup_true_lang.3317a1cd.js","assets/index.a9a11abe.js","assets/index.bb3c88e6.css","assets/picker.c7d50072.js","assets/index.fa872673.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/picker.d164339d.css","assets/picker.45aea54f.js","assets/index.c47e74f8.js","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/index.a450f1bb.js","assets/index.vue_vue_type_script_setup_true_lang.dc835bba.js","assets/usePaging.2ad8e1e6.js","assets/vue3-video-play.b911321b.js","assets/vue3-video-play.74881f83.css","assets/index.be52e81c.css","assets/vuedraggable.0cb40d3a.js","assets/vue.5de34049.js","assets/sortablejs.ef73fc5c.js","assets/picker.f0cb09c5.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/decoration/component/widgets/nav/content.vue":()=>l(()=>import("./content.48c6aac4.js"),["assets/content.48c6aac4.js","assets/content.vue_vue_type_script_setup_true_lang.08763d7f.js","assets/decoration-img.3e95b47f.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/decoration-img.e03f874f.css"]),"/src/views/decoration/component/widgets/news/attr.vue":()=>l(()=>import("./attr.11db8aff.js"),["assets/attr.11db8aff.js","assets/attr.vue_vue_type_script_setup_true_lang.d01577b5.js","assets/@vue.51d7f2d8.js"]),"/src/views/decoration/component/widgets/news/content.vue":()=>l(()=>import("./content.95faa73b.js"),["assets/content.95faa73b.js","assets/decoration.4be01ffa.js","assets/@vue.51d7f2d8.js","assets/element-plus.4328d892.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/content.199cf006.css"]),"/src/views/decoration/component/widgets/search/attr.vue":()=>l(()=>import("./attr.b0ec395b.js"),["assets/attr.b0ec395b.js","assets/attr.vue_vue_type_script_setup_true_lang.0fc534ba.js","assets/@vue.51d7f2d8.js"]),"/src/views/decoration/component/widgets/search/content.vue":()=>l(()=>import("./content.84ae04ad.js"),["assets/content.84ae04ad.js","assets/@vue.51d7f2d8.js","assets/element-plus.4328d892.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/content.0b4d2f25.css"]),"/src/views/decoration/component/widgets/user-banner/attr.vue":()=>l(()=>import("./attr.eee95e30.js"),["assets/attr.eee95e30.js","assets/attr.vue_vue_type_script_setup_true_lang.3d3efd85.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.a9a11abe.js","assets/index.bb3c88e6.css","assets/picker.c7d50072.js","assets/index.fa872673.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/picker.d164339d.css","assets/picker.45aea54f.js","assets/index.c47e74f8.js","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/index.a450f1bb.js","assets/index.vue_vue_type_script_setup_true_lang.dc835bba.js","assets/usePaging.2ad8e1e6.js","assets/vue3-video-play.b911321b.js","assets/vue3-video-play.74881f83.css","assets/index.be52e81c.css","assets/vuedraggable.0cb40d3a.js","assets/vue.5de34049.js","assets/sortablejs.ef73fc5c.js","assets/picker.f0cb09c5.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/decoration/component/widgets/user-banner/content.vue":()=>l(()=>import("./content.9a7d52cc.js"),["assets/content.9a7d52cc.js","assets/content.vue_vue_type_script_setup_true_lang.28911d3e.js","assets/decoration-img.3e95b47f.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/decoration-img.e03f874f.css"]),"/src/views/decoration/component/widgets/user-info/attr.vue":()=>l(()=>import("./attr.7e74e28a.js"),["assets/attr.7e74e28a.js","assets/attr.vue_vue_type_script_setup_true_lang.00e826d0.js","assets/@vue.51d7f2d8.js"]),"/src/views/decoration/component/widgets/user-info/content.vue":()=>l(()=>import("./content.92456155.js"),["assets/content.92456155.js","assets/@vue.51d7f2d8.js","assets/element-plus.4328d892.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/content.93b4d62b.css"]),"/src/views/decoration/pages/index.vue":()=>l(()=>import("./index.dc663ded.js"),["assets/index.dc663ded.js","assets/index.13ef78d6.js","assets/@vue.51d7f2d8.js","assets/index.8d99c3e6.css","assets/element-plus.4328d892.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/menu.1c60c1a9.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/menu.c64cbd13.css","assets/preview.badfc8f1.js","assets/index.85a36c0c.js","assets/attr.vue_vue_type_script_setup_true_lang.5697c78f.js","assets/index.a9a11abe.js","assets/index.bb3c88e6.css","assets/picker.c7d50072.js","assets/index.fa872673.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/picker.d164339d.css","assets/picker.45aea54f.js","assets/index.c47e74f8.js","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/index.a450f1bb.js","assets/index.vue_vue_type_script_setup_true_lang.dc835bba.js","assets/usePaging.2ad8e1e6.js","assets/vue3-video-play.b911321b.js","assets/vue3-video-play.74881f83.css","assets/index.be52e81c.css","assets/vuedraggable.0cb40d3a.js","assets/vue.5de34049.js","assets/sortablejs.ef73fc5c.js","assets/picker.f0cb09c5.css","assets/content.vue_vue_type_script_setup_true_lang.d21cb19e.js","assets/decoration-img.3e95b47f.js","assets/decoration-img.e03f874f.css","assets/attr.vue_vue_type_script_setup_true_lang.fdded599.js","assets/content.206aab68.js","assets/content.3c393d61.css","assets/attr.vue_vue_type_script_setup_true_lang.f3b5265b.js","assets/add-nav.vue_vue_type_script_setup_true_lang.3317a1cd.js","assets/content.b2cebb4d.js","assets/content.4bb46171.css","assets/attr.vue_vue_type_script_setup_true_lang.aeb5c0d0.js","assets/content.vue_vue_type_script_setup_true_lang.08763d7f.js","assets/attr.vue_vue_type_script_setup_true_lang.d01577b5.js","assets/content.95faa73b.js","assets/decoration.4be01ffa.js","assets/content.199cf006.css","assets/attr.vue_vue_type_script_setup_true_lang.0fc534ba.js","assets/content.84ae04ad.js","assets/content.0b4d2f25.css","assets/attr.vue_vue_type_script_setup_true_lang.3d3efd85.js","assets/content.vue_vue_type_script_setup_true_lang.28911d3e.js","assets/attr.vue_vue_type_script_setup_true_lang.00e826d0.js","assets/content.92456155.js","assets/content.93b4d62b.css","assets/preview.705e23a4.css","assets/attr-setting.vue_vue_type_script_setup_true_lang.da407ae8.js","assets/index.7d5fac29.css"]),"/src/views/decoration/pc.vue":()=>l(()=>import("./pc.4421617e.js"),["assets/pc.4421617e.js","assets/index.13ef78d6.js","assets/@vue.51d7f2d8.js","assets/index.8d99c3e6.css","assets/element-plus.4328d892.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/menu.1c60c1a9.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/menu.c64cbd13.css","assets/preview-pc.10dd6ed7.js","assets/index.85a36c0c.js","assets/attr.vue_vue_type_script_setup_true_lang.5697c78f.js","assets/index.a9a11abe.js","assets/index.bb3c88e6.css","assets/picker.c7d50072.js","assets/index.fa872673.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/picker.d164339d.css","assets/picker.45aea54f.js","assets/index.c47e74f8.js","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/index.a450f1bb.js","assets/index.vue_vue_type_script_setup_true_lang.dc835bba.js","assets/usePaging.2ad8e1e6.js","assets/vue3-video-play.b911321b.js","assets/vue3-video-play.74881f83.css","assets/index.be52e81c.css","assets/vuedraggable.0cb40d3a.js","assets/vue.5de34049.js","assets/sortablejs.ef73fc5c.js","assets/picker.f0cb09c5.css","assets/content.vue_vue_type_script_setup_true_lang.d21cb19e.js","assets/decoration-img.3e95b47f.js","assets/decoration-img.e03f874f.css","assets/attr.vue_vue_type_script_setup_true_lang.fdded599.js","assets/content.206aab68.js","assets/content.3c393d61.css","assets/attr.vue_vue_type_script_setup_true_lang.f3b5265b.js","assets/add-nav.vue_vue_type_script_setup_true_lang.3317a1cd.js","assets/content.b2cebb4d.js","assets/content.4bb46171.css","assets/attr.vue_vue_type_script_setup_true_lang.aeb5c0d0.js","assets/content.vue_vue_type_script_setup_true_lang.08763d7f.js","assets/attr.vue_vue_type_script_setup_true_lang.d01577b5.js","assets/content.95faa73b.js","assets/decoration.4be01ffa.js","assets/content.199cf006.css","assets/attr.vue_vue_type_script_setup_true_lang.0fc534ba.js","assets/content.84ae04ad.js","assets/content.0b4d2f25.css","assets/attr.vue_vue_type_script_setup_true_lang.3d3efd85.js","assets/content.vue_vue_type_script_setup_true_lang.28911d3e.js","assets/attr.vue_vue_type_script_setup_true_lang.00e826d0.js","assets/content.92456155.js","assets/content.93b4d62b.css","assets/preview-pc.77355e30.css","assets/attr-setting.vue_vue_type_script_setup_true_lang.da407ae8.js","assets/pc.594dbc93.css"]),"/src/views/decoration/tabbar.vue":()=>l(()=>import("./tabbar.dab97b7e.js"),["assets/tabbar.dab97b7e.js","assets/index.13ef78d6.js","assets/@vue.51d7f2d8.js","assets/index.8d99c3e6.css","assets/element-plus.4328d892.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.a9a11abe.js","assets/index.bb3c88e6.css","assets/picker.c7d50072.js","assets/index.fa872673.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/picker.d164339d.css","assets/picker.45aea54f.js","assets/index.c47e74f8.js","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/index.a450f1bb.js","assets/index.vue_vue_type_script_setup_true_lang.dc835bba.js","assets/usePaging.2ad8e1e6.js","assets/vue3-video-play.b911321b.js","assets/vue3-video-play.74881f83.css","assets/index.be52e81c.css","assets/vuedraggable.0cb40d3a.js","assets/vue.5de34049.js","assets/sortablejs.ef73fc5c.js","assets/picker.f0cb09c5.css","assets/decoration.4be01ffa.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/tabbar.094d2543.css"]),"/src/views/dev_tools/code/edit.vue":()=>l(()=>import("./edit.11cd1a09.js"),["assets/edit.11cd1a09.js","assets/index.13ef78d6.js","assets/@vue.51d7f2d8.js","assets/index.8d99c3e6.css","assets/element-plus.4328d892.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.17266fa4.js","assets/vue-router.9f65afb1.js","assets/code.1f2ae5c5.js","assets/useDictOptions.a61fcf9f.js","assets/dict.927f1fc7.js","assets/menu.072eb1d3.js","assets/relations-add.vue_vue_type_script_setup_true_lang.c08acc61.js","assets/index.fa872673.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/dev_tools/code/index.vue":()=>l(()=>import("./index.06391e4e.js"),["assets/index.06391e4e.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/code.1f2ae5c5.js","assets/usePaging.2ad8e1e6.js","assets/data-table.vue_vue_type_script_setup_true_lang.60c026c1.js","assets/index.fa872673.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/code-preview.vue_vue_type_script_setup_true_lang.c16ace2c.js","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/dev_tools/components/code-preview.vue":()=>l(()=>import("./code-preview.04965c95.js"),["assets/code-preview.04965c95.js","assets/code-preview.vue_vue_type_script_setup_true_lang.c16ace2c.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/dev_tools/components/data-table.vue":()=>l(()=>import("./data-table.3420eeb8.js"),["assets/data-table.3420eeb8.js","assets/data-table.vue_vue_type_script_setup_true_lang.60c026c1.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.fa872673.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/usePaging.2ad8e1e6.js","assets/code.1f2ae5c5.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/dev_tools/components/relations-add.vue":()=>l(()=>import("./relations-add.d53d1b12.js"),["assets/relations-add.d53d1b12.js","assets/relations-add.vue_vue_type_script_setup_true_lang.c08acc61.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.fa872673.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/useDictOptions.a61fcf9f.js","assets/code.1f2ae5c5.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/error/403.vue":()=>l(()=>import("./403.655bd478.js"),["assets/403.655bd478.js","assets/error.b20a557d.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/vue-router.9f65afb1.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/error.1aaeb02c.css"]),"/src/views/error/404.vue":()=>l(()=>import("./404.950d9176.js"),["assets/404.950d9176.js","assets/error.b20a557d.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/vue-router.9f65afb1.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/error.1aaeb02c.css"]),"/src/views/error/components/error.vue":()=>l(()=>import("./error.b20a557d.js"),["assets/error.b20a557d.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/vue-router.9f65afb1.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/error.1aaeb02c.css"]),"/src/views/examined/dialog_index.vue":()=>l(()=>import("./dialog_index.13cf8d32.js"),["assets/dialog_index.13cf8d32.js","assets/dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.8f34f1b3.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/usePaging.2ad8e1e6.js","assets/admin.1cd61358.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/examined/editCate.vue":()=>l(()=>import("./editCate.8f00cbfa.js"),["assets/editCate.8f00cbfa.js","assets/editCate.vue_vue_type_script_setup_true_name_flowTypeEdit_lang.d16d1301.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.fa872673.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/examined.fccbde31.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/examined/editFlow.vue":()=>l(()=>import("./editFlow.8b92a1b5.js"),["assets/editFlow.8b92a1b5.js","assets/editFlow.vue_vue_type_script_setup_true_name_flowEdit_lang.9c441111.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.fa872673.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/examined.fccbde31.js","assets/lodash.08438971.js","assets/dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.8f34f1b3.js","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/usePaging.2ad8e1e6.js","assets/admin.1cd61358.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/examined/examined.vue":()=>l(()=>import("./examined.043327c6.js"),["assets/examined.043327c6.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/usePaging.2ad8e1e6.js","assets/useDictOptions.a61fcf9f.js","assets/examined.fccbde31.js","assets/lodash.08438971.js","assets/editCate.vue_vue_type_script_setup_true_name_flowTypeEdit_lang.d16d1301.js","assets/index.fa872673.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/examined/examinedFlow.vue":()=>l(()=>import("./examinedFlow.8be4ec69.js"),["assets/examinedFlow.8be4ec69.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/usePaging.2ad8e1e6.js","assets/useDictOptions.a61fcf9f.js","assets/examined.fccbde31.js","assets/lodash.08438971.js","assets/editFlow.vue_vue_type_script_setup_true_name_flowEdit_lang.9c441111.js","assets/index.fa872673.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.8f34f1b3.js","assets/admin.1cd61358.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/examined/index_list.vue":()=>l(()=>import("./index_list.573fdb25.js"),["assets/index_list.573fdb25.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/usePaging.2ad8e1e6.js","assets/useDictOptions.a61fcf9f.js","assets/examined.fccbde31.js","assets/lodash.08438971.js","assets/index_list_popup.4e457b91.js","assets/index.fa872673.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/index_list_popup.0c1c7f93.css"]),"/src/views/examined/index_list_popup.vue":()=>l(()=>import("./index_list_popup.4e457b91.js"),["assets/index_list_popup.4e457b91.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.fa872673.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/examined.fccbde31.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/index_list_popup.0c1c7f93.css"]),"/src/views/finance/Withdrawal.vue":()=>l(()=>import("./Withdrawal.aced93fb.js"),["assets/Withdrawal.aced93fb.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/usePaging.2ad8e1e6.js","assets/useDictOptions.a61fcf9f.js","assets/withdraw.32706b7e.js","assets/lodash.08438971.js","assets/edit.vue_vue_type_script_setup_true_name_withdrawEdit_lang.724a3d0c.js","assets/index.fa872673.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/audit.vue_vue_type_script_setup_true_name_withdrawEdit_lang.b26f5dcc.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/finance/audit.vue":()=>l(()=>import("./audit.cdb91c96.js"),["assets/audit.cdb91c96.js","assets/audit.vue_vue_type_script_setup_true_name_withdrawEdit_lang.b26f5dcc.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.fa872673.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/withdraw.32706b7e.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/finance/balance_details.vue":()=>l(()=>import("./balance_details.721c8b31.js"),["assets/balance_details.721c8b31.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/index.vue_vue_type_script_setup_true_lang.f3cc5114.js","assets/index.fa872673.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/index.vue_vue_type_script_setup_true_lang.3ab411d6.js","assets/finance.ec5ac162.js","assets/useDictOptions.a61fcf9f.js","assets/usePaging.2ad8e1e6.js","assets/vue-router.9f65afb1.js","assets/people.vue_vue_type_script_setup_true_name_peopleMoney_lang.685e727c.js","assets/user_role.cb302517.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/finance/company.vue":()=>l(()=>import("./company.2ba67de6.js"),["assets/company.2ba67de6.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/vue-router.9f65afb1.js","assets/usePaging.2ad8e1e6.js","assets/useDictOptions.a61fcf9f.js","assets/company.b7ec1bf9.js","assets/lodash.08438971.js","assets/dict.927f1fc7.js","assets/axios.105476b3.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/company.ed16e5c3.css"]),"/src/views/finance/component/people.vue":()=>l(()=>import("./people.ab7fc2ab.js"),["assets/people.ab7fc2ab.js","assets/people.vue_vue_type_script_setup_true_name_peopleMoney_lang.685e727c.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css"]),"/src/views/finance/component/refund-log.vue":()=>l(()=>import("./refund-log.c9d3ca56.js"),["assets/refund-log.c9d3ca56.js","assets/refund-log.vue_vue_type_script_setup_true_lang.7db4e288.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/finance.ec5ac162.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/finance/edit.vue":()=>l(()=>import("./edit.e466218a.js"),["assets/edit.e466218a.js","assets/edit.vue_vue_type_script_setup_true_name_withdrawEdit_lang.724a3d0c.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.fa872673.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/withdraw.32706b7e.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/finance/recharge_record.vue":()=>l(()=>import("./recharge_record.68cdf1d9.js"),["assets/recharge_record.68cdf1d9.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/index.vue_vue_type_script_setup_true_lang.f3cc5114.js","assets/index.fa872673.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/index.vue_vue_type_script_setup_true_lang.3ab411d6.js","assets/finance.ec5ac162.js","assets/usePaging.2ad8e1e6.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/finance/refund_record.vue":()=>l(()=>import("./refund_record.843d0c8f.js"),["assets/refund_record.843d0c8f.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/index.vue_vue_type_script_setup_true_lang.3ab411d6.js","assets/finance.ec5ac162.js","assets/usePaging.2ad8e1e6.js","assets/refund-log.vue_vue_type_script_setup_true_lang.7db4e288.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/material/index.vue":()=>l(()=>import("./index.e0d98d6b.js"),["assets/index.e0d98d6b.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.c47e74f8.js","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/index.a9a11abe.js","assets/index.bb3c88e6.css","assets/index.fa872673.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/index.a450f1bb.js","assets/index.vue_vue_type_script_setup_true_lang.dc835bba.js","assets/usePaging.2ad8e1e6.js","assets/vue3-video-play.b911321b.js","assets/vue3-video-play.74881f83.css","assets/index.be52e81c.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/index.aaba22cf.css"]),"/src/views/message/notice/edit.vue":()=>l(()=>import("./edit.98ea5d25.js"),["assets/edit.98ea5d25.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.13ef78d6.js","assets/index.8d99c3e6.css","assets/vue-router.9f65afb1.js","assets/message.39fcd3de.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/message/notice/index.vue":()=>l(()=>import("./index.b2374399.js"),["assets/index.b2374399.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/message.39fcd3de.js","assets/usePaging.2ad8e1e6.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/message/short_letter/edit.vue":()=>l(()=>import("./edit.6cefa6e6.js"),["assets/edit.6cefa6e6.js","assets/edit.vue_vue_type_script_setup_true_lang.4b359fcf.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/message.39fcd3de.js","assets/index.fa872673.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/message/short_letter/index.vue":()=>l(()=>import("./index.d8d97bd4.js"),["assets/index.d8d97bd4.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/message.39fcd3de.js","assets/edit.vue_vue_type_script_setup_true_lang.4b359fcf.js","assets/index.fa872673.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/organization/department/edit.vue":()=>l(()=>import("./edit.f91652f9.js"),["assets/edit.f91652f9.js","assets/edit.vue_vue_type_script_setup_true_lang.b7d103f8.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/department.5076f65d.js","assets/index.fa872673.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/useDictOptions.a61fcf9f.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/organization/department/index.vue":()=>l(()=>import("./index.9f3ef15e.js"),["assets/index.9f3ef15e.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/edit.vue_vue_type_script_setup_true_lang.b7d103f8.js","assets/department.5076f65d.js","assets/index.fa872673.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/useDictOptions.a61fcf9f.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/organization/post/edit.vue":()=>l(()=>import("./edit.f8b935d7.js"),["assets/edit.f8b935d7.js","assets/edit.vue_vue_type_script_setup_true_lang.2571bf25.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/post.5d32b419.js","assets/index.fa872673.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/organization/post/index.vue":()=>l(()=>import("./index.ecb54cf8.js"),["assets/index.ecb54cf8.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/index.vue_vue_type_script_setup_true_lang.f3cc5114.js","assets/index.fa872673.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/post.5d32b419.js","assets/usePaging.2ad8e1e6.js","assets/edit.vue_vue_type_script_setup_true_lang.2571bf25.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/permission/admin/dialog_index.vue":()=>l(()=>import("./dialog_index.1075fd25.js"),["assets/dialog_index.1075fd25.js","assets/dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.8548f463.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/usePaging.2ad8e1e6.js","assets/company.b7ec1bf9.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/permission/admin/edit copy 2.vue":()=>l(()=>import("./edit copy 2.1ea5071e.js"),["assets/edit copy 2.1ea5071e.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.fa872673.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/useDictOptions.a61fcf9f.js","assets/admin.1cd61358.js","assets/role.41d5883e.js","assets/post.5d32b419.js","assets/department.5076f65d.js","assets/common.86798ce6.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/permission/admin/edit copy.vue":()=>l(()=>import("./edit copy.cb8a81cc.js"),["assets/edit copy.cb8a81cc.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/picker.45aea54f.js","assets/index.fa872673.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/index.c47e74f8.js","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/index.a9a11abe.js","assets/index.bb3c88e6.css","assets/index.a450f1bb.js","assets/index.vue_vue_type_script_setup_true_lang.dc835bba.js","assets/usePaging.2ad8e1e6.js","assets/vue3-video-play.b911321b.js","assets/vue3-video-play.74881f83.css","assets/index.be52e81c.css","assets/vuedraggable.0cb40d3a.js","assets/vue.5de34049.js","assets/sortablejs.ef73fc5c.js","assets/picker.f0cb09c5.css","assets/useDictOptions.a61fcf9f.js","assets/admin.1cd61358.js","assets/role.41d5883e.js","assets/post.5d32b419.js","assets/department.5076f65d.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/permission/admin/edit.vue":()=>l(()=>import("./edit.66c6532e.js"),["assets/edit.66c6532e.js","assets/edit.vue_vue_type_style_index_0_lang.0c12de95.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.fa872673.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/useDictOptions.a61fcf9f.js","assets/admin.1cd61358.js","assets/role.41d5883e.js","assets/post.5d32b419.js","assets/department.5076f65d.js","assets/common.86798ce6.js","assets/dict.927f1fc7.js","assets/dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.8548f463.js","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/usePaging.2ad8e1e6.js","assets/company.b7ec1bf9.js","assets/edit.91395de5.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/permission/admin/index.vue":()=>l(()=>import("./index.df7a386a.js"),["assets/index.df7a386a.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/index.vue_vue_type_script_setup_true_lang.f3cc5114.js","assets/index.fa872673.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/vue-router.9f65afb1.js","assets/admin.1cd61358.js","assets/role.41d5883e.js","assets/useDictOptions.a61fcf9f.js","assets/usePaging.2ad8e1e6.js","assets/edit.vue_vue_type_style_index_0_lang.0c12de95.js","assets/post.5d32b419.js","assets/department.5076f65d.js","assets/common.86798ce6.js","assets/dict.927f1fc7.js","assets/dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.8548f463.js","assets/company.b7ec1bf9.js","assets/edit.91395de5.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/index.a62562b3.css"]),"/src/views/permission/menu/edit.vue":()=>l(()=>import("./edit.7205478b.js"),["assets/edit.7205478b.js","assets/edit.vue_vue_type_script_setup_true_lang.c2e27398.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/picker.vue_vue_type_script_setup_true_lang.d458cc42.js","assets/menu.072eb1d3.js","assets/index.fa872673.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/permission/menu/index.vue":()=>l(()=>import("./index.52406f04.js"),["assets/index.52406f04.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/menu.072eb1d3.js","assets/usePaging.2ad8e1e6.js","assets/edit.vue_vue_type_script_setup_true_lang.c2e27398.js","assets/picker.vue_vue_type_script_setup_true_lang.d458cc42.js","assets/index.fa872673.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/permission/role/auth.vue":()=>l(()=>import("./auth.cbb77985.js"),["assets/auth.cbb77985.js","assets/auth.vue_vue_type_script_setup_true_lang.67e5f714.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/role.41d5883e.js","assets/index.fa872673.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/menu.072eb1d3.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/permission/role/edit.vue":()=>l(()=>import("./edit.87ee49d6.js"),["assets/edit.87ee49d6.js","assets/edit.vue_vue_type_script_setup_true_lang.164110e7.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/role.41d5883e.js","assets/index.fa872673.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/permission/role/index.vue":()=>l(()=>import("./index.84ab336e.js"),["assets/index.84ab336e.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/role.41d5883e.js","assets/usePaging.2ad8e1e6.js","assets/edit.vue_vue_type_script_setup_true_lang.164110e7.js","assets/index.fa872673.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/auth.vue_vue_type_script_setup_true_lang.67e5f714.js","assets/menu.072eb1d3.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/setting/dict/data/edit.vue":()=>l(()=>import("./edit.5b381842.js"),["assets/edit.5b381842.js","assets/edit.vue_vue_type_script_setup_true_lang.e6d477e4.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.fa872673.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/dict.927f1fc7.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/setting/dict/data/index.vue":()=>l(()=>import("./index.1e3d7806.js"),["assets/index.1e3d7806.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/vue-router.9f65afb1.js","assets/dict.927f1fc7.js","assets/usePaging.2ad8e1e6.js","assets/edit.vue_vue_type_script_setup_true_lang.e6d477e4.js","assets/index.fa872673.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/setting/dict/type/edit.vue":()=>l(()=>import("./edit.9fd05882.js"),["assets/edit.9fd05882.js","assets/edit.vue_vue_type_script_setup_true_lang.1f57918e.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.fa872673.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/dict.927f1fc7.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/setting/dict/type/index.vue":()=>l(()=>import("./index.c901182b.js"),["assets/index.c901182b.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/dict.927f1fc7.js","assets/usePaging.2ad8e1e6.js","assets/edit.vue_vue_type_script_setup_true_lang.1f57918e.js","assets/index.fa872673.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/setting/pay/config/edit.vue":()=>l(()=>import("./edit.127b62e5.js"),["assets/edit.127b62e5.js","assets/edit.vue_vue_type_script_setup_true_lang.a7690e7b.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/picker.45aea54f.js","assets/index.fa872673.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/index.c47e74f8.js","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/index.a9a11abe.js","assets/index.bb3c88e6.css","assets/index.a450f1bb.js","assets/index.vue_vue_type_script_setup_true_lang.dc835bba.js","assets/usePaging.2ad8e1e6.js","assets/vue3-video-play.b911321b.js","assets/vue3-video-play.74881f83.css","assets/index.be52e81c.css","assets/vuedraggable.0cb40d3a.js","assets/vue.5de34049.js","assets/sortablejs.ef73fc5c.js","assets/picker.f0cb09c5.css","assets/pay.63666d5f.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/setting/pay/config/index.vue":()=>l(()=>import("./index.2045f5d1.js"),["assets/index.2045f5d1.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/pay.63666d5f.js","assets/edit.vue_vue_type_script_setup_true_lang.a7690e7b.js","assets/picker.45aea54f.js","assets/index.fa872673.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/index.c47e74f8.js","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/index.a9a11abe.js","assets/index.bb3c88e6.css","assets/index.a450f1bb.js","assets/index.vue_vue_type_script_setup_true_lang.dc835bba.js","assets/usePaging.2ad8e1e6.js","assets/vue3-video-play.b911321b.js","assets/vue3-video-play.74881f83.css","assets/index.be52e81c.css","assets/vuedraggable.0cb40d3a.js","assets/vue.5de34049.js","assets/sortablejs.ef73fc5c.js","assets/picker.f0cb09c5.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/setting/pay/method/index.vue":()=>l(()=>import("./index.256fb2f8.js"),["assets/index.256fb2f8.js","assets/index.13ef78d6.js","assets/@vue.51d7f2d8.js","assets/index.8d99c3e6.css","assets/element-plus.4328d892.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/pay.63666d5f.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/setting/search/index.vue":()=>l(()=>import("./index.2ac4190c.js"),["assets/index.2ac4190c.js","assets/index.13ef78d6.js","assets/@vue.51d7f2d8.js","assets/index.8d99c3e6.css","assets/element-plus.4328d892.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/index.451e702f.css"]),"/src/views/setting/storage/edit.vue":()=>l(()=>import("./edit.11eb6a66.js"),["assets/edit.11eb6a66.js","assets/edit.vue_vue_type_script_setup_true_lang.34775f0d.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.fa872673.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/setting/storage/index.vue":()=>l(()=>import("./index.dc6c8a7c.js"),["assets/index.dc6c8a7c.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/edit.vue_vue_type_script_setup_true_lang.34775f0d.js","assets/index.fa872673.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/setting/system/cache.vue":()=>l(()=>import("./cache.81463a94.js"),["assets/cache.81463a94.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/system.02fce13c.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/setting/system/environment.vue":()=>l(()=>import("./environment.61e8f858.js"),["assets/environment.61e8f858.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/system.02fce13c.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/setting/system/journal.vue":()=>l(()=>import("./journal.f565025e.js"),["assets/journal.f565025e.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/index.vue_vue_type_script_setup_true_lang.f3cc5114.js","assets/index.fa872673.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/index.vue_vue_type_script_setup_true_lang.3ab411d6.js","assets/system.02fce13c.js","assets/usePaging.2ad8e1e6.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/setting/system/scheduled_task/edit.vue":()=>l(()=>import("./edit.071a09c7.js"),["assets/edit.071a09c7.js","assets/index.13ef78d6.js","assets/@vue.51d7f2d8.js","assets/index.8d99c3e6.css","assets/element-plus.4328d892.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/vue-router.9f65afb1.js","assets/system.02fce13c.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/setting/system/scheduled_task/index.vue":()=>l(()=>import("./index.ed883b72.js"),["assets/index.ed883b72.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/system.02fce13c.js","assets/usePaging.2ad8e1e6.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/setting/user/login_register.vue":()=>l(()=>import("./login_register.0621be69.js"),["assets/login_register.0621be69.js","assets/index.13ef78d6.js","assets/@vue.51d7f2d8.js","assets/index.8d99c3e6.css","assets/element-plus.4328d892.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/user.31e34ccc.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/setting/user/setup.vue":()=>l(()=>import("./setup.416a1203.js"),["assets/setup.416a1203.js","assets/index.13ef78d6.js","assets/@vue.51d7f2d8.js","assets/index.8d99c3e6.css","assets/element-plus.4328d892.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/picker.45aea54f.js","assets/index.fa872673.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/index.c47e74f8.js","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/index.a9a11abe.js","assets/index.bb3c88e6.css","assets/index.a450f1bb.js","assets/index.vue_vue_type_script_setup_true_lang.dc835bba.js","assets/usePaging.2ad8e1e6.js","assets/vue3-video-play.b911321b.js","assets/vue3-video-play.74881f83.css","assets/index.be52e81c.css","assets/vuedraggable.0cb40d3a.js","assets/vue.5de34049.js","assets/sortablejs.ef73fc5c.js","assets/picker.f0cb09c5.css","assets/user.31e34ccc.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/setting/website/filing.vue":()=>l(()=>import("./filing.f822a86f.js"),["assets/filing.f822a86f.js","assets/index.13ef78d6.js","assets/@vue.51d7f2d8.js","assets/index.8d99c3e6.css","assets/element-plus.4328d892.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.a9a11abe.js","assets/index.bb3c88e6.css","assets/website.dab3e7a6.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/setting/website/information.vue":()=>l(()=>import("./information.12b4785a.js"),["assets/information.12b4785a.js","assets/index.13ef78d6.js","assets/@vue.51d7f2d8.js","assets/index.8d99c3e6.css","assets/element-plus.4328d892.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/picker.45aea54f.js","assets/index.fa872673.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/index.c47e74f8.js","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/index.a9a11abe.js","assets/index.bb3c88e6.css","assets/index.a450f1bb.js","assets/index.vue_vue_type_script_setup_true_lang.dc835bba.js","assets/usePaging.2ad8e1e6.js","assets/vue3-video-play.b911321b.js","assets/vue3-video-play.74881f83.css","assets/index.be52e81c.css","assets/vuedraggable.0cb40d3a.js","assets/vue.5de34049.js","assets/sortablejs.ef73fc5c.js","assets/picker.f0cb09c5.css","assets/website.dab3e7a6.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/setting/website/protocol.vue":()=>l(()=>import("./protocol.f1e4828b.js"),["assets/protocol.f1e4828b.js","assets/index.13ef78d6.js","assets/@vue.51d7f2d8.js","assets/index.8d99c3e6.css","assets/element-plus.4328d892.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_style_index_0_lang.8e405d58.js","assets/@wangeditor.afd76521.js","assets/@wangeditor.4f35b623.css","assets/picker.45aea54f.js","assets/index.fa872673.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/index.c47e74f8.js","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/index.a9a11abe.js","assets/index.bb3c88e6.css","assets/index.a450f1bb.js","assets/index.vue_vue_type_script_setup_true_lang.dc835bba.js","assets/usePaging.2ad8e1e6.js","assets/vue3-video-play.b911321b.js","assets/vue3-video-play.74881f83.css","assets/index.be52e81c.css","assets/vuedraggable.0cb40d3a.js","assets/vue.5de34049.js","assets/sortablejs.ef73fc5c.js","assets/picker.f0cb09c5.css","assets/index.0d25a475.css","assets/website.dab3e7a6.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/shop_contract/details.vue":()=>l(()=>import("./details.4664ed49.js"),["assets/details.4664ed49.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/vue-router.9f65afb1.js","assets/shop_contract.f4761eae.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/details.5079768a.css"]),"/src/views/shop_contract/edit.vue":()=>l(()=>import("./edit.e0346ce5.js"),["assets/edit.e0346ce5.js","assets/edit.vue_vue_type_script_setup_true_name_shopContractEdit_lang.d9f639bc.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.fa872673.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/shop_contract.f4761eae.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/shop_contract/index.vue":()=>l(()=>import("./index.22c62762.js"),["assets/index.22c62762.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/usePaging.2ad8e1e6.js","assets/useDictOptions.a61fcf9f.js","assets/shop_contract.f4761eae.js","assets/lodash.08438971.js","assets/edit.vue_vue_type_script_setup_true_name_shopContractEdit_lang.d9f639bc.js","assets/index.fa872673.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/index.4b64339d.css"]),"/src/views/shop_merchant/edit.vue":()=>l(()=>import("./edit.f27cbc21.js"),["assets/edit.f27cbc21.js","assets/edit.vue_vue_type_script_setup_true_name_shopMerchantEdit_lang.73c4b5a4.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.fa872673.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/shop_merchant/index.vue":()=>l(()=>import("./index.01b83b88.js"),["assets/index.01b83b88.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/usePaging.2ad8e1e6.js","assets/useDictOptions.a61fcf9f.js","assets/edit.vue_vue_type_script_setup_true_name_shopMerchantEdit_lang.73c4b5a4.js","assets/index.fa872673.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/task/calendar.vue":()=>l(()=>import("./calendar.a4ad1da4.js"),["assets/calendar.a4ad1da4.js","assets/calendar.vue_vue_type_style_index_0_lang.da31ccbb.js","assets/vue-simple-calendar.4032adb4.js","assets/@vue.51d7f2d8.js","assets/calendar.b5f127b2.css"]),"/src/views/task/editTow.vue":()=>l(()=>import("./editTow.93ca4f73.js").then(a=>a.e),["assets/editTow.93ca4f73.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/vue-router.9f65afb1.js","assets/index.fa872673.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/list_two.c6a9842f.js","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/usePaging.2ad8e1e6.js","assets/useDictOptions.a61fcf9f.js","assets/map.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.9d7f531d.js","assets/lodash.08438971.js","assets/map.7a716409.css","assets/edit.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.656c3f7f.js","assets/dialog_index_personnel.vue_vue_type_script_setup_true_name_companyLists_lang.ddb96626.js","assets/role.41d5883e.js","assets/axios.105476b3.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/list_two.5a114e61.css","assets/editTow.406abbe9.css"]),"/src/views/task/taskCalendar.vue":()=>l(()=>import("./taskCalendar.90ca8fe1.js"),["assets/taskCalendar.90ca8fe1.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/vue-router.9f65afb1.js","assets/editTow.93ca4f73.js","assets/index.fa872673.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/list_two.c6a9842f.js","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/usePaging.2ad8e1e6.js","assets/useDictOptions.a61fcf9f.js","assets/map.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.9d7f531d.js","assets/lodash.08438971.js","assets/map.7a716409.css","assets/edit.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.656c3f7f.js","assets/dialog_index_personnel.vue_vue_type_script_setup_true_name_companyLists_lang.ddb96626.js","assets/role.41d5883e.js","assets/axios.105476b3.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/list_two.5a114e61.css","assets/editTow.406abbe9.css","assets/calendar.vue_vue_type_style_index_0_lang.da31ccbb.js","assets/vue-simple-calendar.4032adb4.js","assets/calendar.b5f127b2.css","assets/taskCalendar.f66f9a1d.css"]),"/src/views/task_scheduling/dialog_index.vue":()=>l(()=>import("./dialog_index.0ab9787d.js"),["assets/dialog_index.0ab9787d.js","assets/dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.6b149d5f.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/usePaging.2ad8e1e6.js","assets/company.b7ec1bf9.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/task_scheduling/edit.vue":()=>l(()=>import("./edit.cfbdb998.js"),["assets/edit.cfbdb998.js","assets/edit.vue_vue_type_script_setup_true_name_taskSchedulingEdit_lang.a231bd22.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.fa872673.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/task_scheduling.46c64d43.js","assets/lodash.08438971.js","assets/dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.6b149d5f.js","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/usePaging.2ad8e1e6.js","assets/company.b7ec1bf9.js","assets/dict.927f1fc7.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/task_scheduling/index.vue":()=>l(()=>import("./index.225ffe33.js"),["assets/index.225ffe33.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/usePaging.2ad8e1e6.js","assets/useDictOptions.a61fcf9f.js","assets/task_scheduling.46c64d43.js","assets/lodash.08438971.js","assets/edit.vue_vue_type_script_setup_true_name_taskSchedulingEdit_lang.a231bd22.js","assets/index.fa872673.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.6b149d5f.js","assets/company.b7ec1bf9.js","assets/dict.927f1fc7.js","assets/money.vue_vue_type_script_setup_true_name_taskSchedulingEdit_lang.e5a2c787.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/index.97a58b39.css"]),"/src/views/task_scheduling/money.vue":()=>l(()=>import("./money.07d3efc9.js"),["assets/money.07d3efc9.js","assets/money.vue_vue_type_script_setup_true_name_taskSchedulingEdit_lang.e5a2c787.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.fa872673.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/task_scheduling.46c64d43.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/task_template/dialog_index_personnel.vue":()=>l(()=>import("./dialog_index_personnel.3eb4ff01.js"),["assets/dialog_index_personnel.3eb4ff01.js","assets/dialog_index_personnel.vue_vue_type_script_setup_true_name_companyLists_lang.ddb96626.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/usePaging.2ad8e1e6.js","assets/role.41d5883e.js","assets/useDictOptions.a61fcf9f.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/task_template/edit.vue":()=>l(()=>import("./edit.76c3edd6.js"),["assets/edit.76c3edd6.js","assets/edit.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.656c3f7f.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/vue-router.9f65afb1.js","assets/index.fa872673.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/map.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.9d7f531d.js","assets/lodash.08438971.js","assets/map.7a716409.css","assets/dialog_index_personnel.vue_vue_type_script_setup_true_name_companyLists_lang.ddb96626.js","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/usePaging.2ad8e1e6.js","assets/role.41d5883e.js","assets/useDictOptions.a61fcf9f.js","assets/axios.105476b3.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/task_template/edit_admin.vue":()=>l(()=>import("./edit_admin.d5f35e3e.js"),["assets/edit_admin.d5f35e3e.js","assets/edit_admin.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.46594d68.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/vue-router.9f65afb1.js","assets/index.fa872673.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/map.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.9d7f531d.js","assets/lodash.08438971.js","assets/map.7a716409.css","assets/dialog_index_personnel.vue_vue_type_script_setup_true_name_companyLists_lang.ddb96626.js","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/usePaging.2ad8e1e6.js","assets/role.41d5883e.js","assets/useDictOptions.a61fcf9f.js","assets/axios.105476b3.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/task_template/index.vue":()=>l(()=>import("./index.82192a13.js"),["assets/index.82192a13.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/vue-router.9f65afb1.js","assets/usePaging.2ad8e1e6.js","assets/useDictOptions.a61fcf9f.js","assets/map.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.9d7f531d.js","assets/index.fa872673.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/lodash.08438971.js","assets/map.7a716409.css","assets/edit.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.656c3f7f.js","assets/dialog_index_personnel.vue_vue_type_script_setup_true_name_companyLists_lang.ddb96626.js","assets/role.41d5883e.js","assets/edit_admin.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.46594d68.js","assets/dict.927f1fc7.js","assets/axios.105476b3.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/index.75c115fc.css"]),"/src/views/task_template/list_two.vue":()=>l(()=>import("./list_two.c6a9842f.js"),["assets/list_two.c6a9842f.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/usePaging.2ad8e1e6.js","assets/useDictOptions.a61fcf9f.js","assets/map.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.9d7f531d.js","assets/index.fa872673.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/lodash.08438971.js","assets/map.7a716409.css","assets/edit.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.656c3f7f.js","assets/vue-router.9f65afb1.js","assets/dialog_index_personnel.vue_vue_type_script_setup_true_name_companyLists_lang.ddb96626.js","assets/role.41d5883e.js","assets/axios.105476b3.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/list_two.5a114e61.css"]),"/src/views/task_template/map.vue":()=>l(()=>import("./map.b3321cb5.js"),["assets/map.b3321cb5.js","assets/map.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.9d7f531d.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.fa872673.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/lodash.08438971.js","assets/map.7a716409.css","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/template/component/file.vue":()=>l(()=>import("./file.0fe5ba58.js"),["assets/file.0fe5ba58.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/picker.45aea54f.js","assets/index.fa872673.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/index.c47e74f8.js","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/index.a9a11abe.js","assets/index.bb3c88e6.css","assets/index.a450f1bb.js","assets/index.vue_vue_type_script_setup_true_lang.dc835bba.js","assets/usePaging.2ad8e1e6.js","assets/vue3-video-play.b911321b.js","assets/vue3-video-play.74881f83.css","assets/index.be52e81c.css","assets/vuedraggable.0cb40d3a.js","assets/vue.5de34049.js","assets/sortablejs.ef73fc5c.js","assets/picker.f0cb09c5.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/template/component/icon.vue":()=>l(()=>import("./icon.10f15d85.js"),["assets/icon.10f15d85.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/picker.vue_vue_type_script_setup_true_lang.d458cc42.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/template/component/link.vue":()=>l(()=>import("./link.2c976e15.js"),["assets/link.2c976e15.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/picker.c7d50072.js","assets/index.fa872673.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/picker.d164339d.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/template/component/overflow.vue":()=>l(()=>import("./overflow.41d822ca.js"),["assets/overflow.41d822ca.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/template/component/popover_input.vue":()=>l(()=>import("./popover_input.00cb05ed.js"),["assets/popover_input.00cb05ed.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.dc835bba.js"]),"/src/views/template/component/rich_text.vue":()=>l(()=>import("./rich_text.c14adf8d.js"),["assets/rich_text.c14adf8d.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_style_index_0_lang.8e405d58.js","assets/@wangeditor.afd76521.js","assets/@wangeditor.4f35b623.css","assets/picker.45aea54f.js","assets/index.fa872673.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/index.c47e74f8.js","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/index.a9a11abe.js","assets/index.bb3c88e6.css","assets/index.a450f1bb.js","assets/index.vue_vue_type_script_setup_true_lang.dc835bba.js","assets/usePaging.2ad8e1e6.js","assets/vue3-video-play.b911321b.js","assets/vue3-video-play.74881f83.css","assets/index.be52e81c.css","assets/vuedraggable.0cb40d3a.js","assets/vue.5de34049.js","assets/sortablejs.ef73fc5c.js","assets/picker.f0cb09c5.css","assets/index.0d25a475.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/template/component/upload.vue":()=>l(()=>import("./upload.fc9d6a4c.js"),["assets/upload.fc9d6a4c.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.a450f1bb.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/user/setting.vue":()=>l(()=>import("./setting.82e33814.js"),["assets/setting.82e33814.js","assets/index.13ef78d6.js","assets/@vue.51d7f2d8.js","assets/index.8d99c3e6.css","assets/element-plus.4328d892.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/picker.45aea54f.js","assets/index.fa872673.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/index.c47e74f8.js","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/index.a9a11abe.js","assets/index.bb3c88e6.css","assets/index.a450f1bb.js","assets/index.vue_vue_type_script_setup_true_lang.dc835bba.js","assets/usePaging.2ad8e1e6.js","assets/vue3-video-play.b911321b.js","assets/vue3-video-play.74881f83.css","assets/index.be52e81c.css","assets/vuedraggable.0cb40d3a.js","assets/vue.5de34049.js","assets/sortablejs.ef73fc5c.js","assets/picker.f0cb09c5.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/user_informationg/component/banquetBirthday.vue":()=>l(()=>import("./banquetBirthday.4f9d734c.js"),["assets/banquetBirthday.4f9d734c.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/banquetBirthday.a5efd6b9.css"]),"/src/views/user_informationg/component/banquetFullMoon.vue":()=>l(()=>import("./banquetFullMoon.45e9bc22.js"),["assets/banquetFullMoon.45e9bc22.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/banquetFullMoon.f507e889.css"]),"/src/views/user_informationg/component/banquetFuneral.vue":()=>l(()=>import("./banquetFuneral.a3a46135.js"),["assets/banquetFuneral.a3a46135.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/banquetFuneral.c9d3d060.css"]),"/src/views/user_informationg/component/banquetMarry.vue":()=>l(()=>import("./banquetMarry.6065a41b.js"),["assets/banquetMarry.6065a41b.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/banquetMarry.59f41e4c.css"]),"/src/views/user_informationg/component/banquetOther.vue":()=>l(()=>import("./banquetOther.f0a94677.js"),["assets/banquetOther.f0a94677.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/banquetOther.a725fcc7.css"]),"/src/views/user_informationg/component/breeding.vue":()=>l(()=>import("./breeding.fe4efdf0.js"),["assets/breeding.fe4efdf0.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/breeding.a4e9299c.css"]),"/src/views/user_informationg/component/deepProcessing.vue":()=>l(()=>import("./deepProcessing.f4a8af71.js"),["assets/deepProcessing.f4a8af71.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/deepProcessing.97a063ac.css"]),"/src/views/user_informationg/component/houseDecoration.vue":()=>l(()=>import("./houseDecoration.68c056e7.js"),["assets/houseDecoration.68c056e7.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/houseDecoration.3c271882.css"]),"/src/views/user_informationg/component/houseRenovate.vue":()=>l(()=>import("./houseRenovate.b7fc426b.js"),["assets/houseRenovate.b7fc426b.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/houseRenovate.70227ad6.css"]),"/src/views/user_informationg/component/houseRepair.vue":()=>l(()=>import("./houseRepair.728e0187.js"),["assets/houseRepair.728e0187.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/houseRepair.3393a738.css"]),"/src/views/user_informationg/component/houseTransaction.vue":()=>l(()=>import("./houseTransaction.cc233a7f.js"),["assets/houseTransaction.cc233a7f.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/houseTransaction.8e3b4247.css"]),"/src/views/user_informationg/component/plant.vue":()=>l(()=>import("./plant.239e6b5f.js"),["assets/plant.239e6b5f.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/plant.b0a87cba.css"]),"/src/views/user_informationg/component/store.vue":()=>l(()=>import("./store.4d739f82.js"),["assets/store.4d739f82.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/store.d48590b9.css"]),"/src/views/user_informationg/component/thickProcessing.vue":()=>l(()=>import("./thickProcessing.7253c120.js"),["assets/thickProcessing.7253c120.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/thickProcessing.0da8e53a.css"]),"/src/views/user_informationg/details.vue":()=>l(()=>import("./details.dcc43188.js"),["assets/details.dcc43188.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/vue-router.9f65afb1.js","assets/store.4d739f82.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/store.d48590b9.css","assets/breeding.fe4efdf0.js","assets/breeding.a4e9299c.css","assets/plant.239e6b5f.js","assets/plant.b0a87cba.css","assets/houseTransaction.cc233a7f.js","assets/houseTransaction.8e3b4247.css","assets/houseRenovate.b7fc426b.js","assets/houseRenovate.70227ad6.css","assets/houseDecoration.68c056e7.js","assets/houseDecoration.3c271882.css","assets/houseRepair.728e0187.js","assets/houseRepair.3393a738.css","assets/banquetMarry.6065a41b.js","assets/banquetMarry.59f41e4c.css","assets/banquetOther.f0a94677.js","assets/banquetOther.a725fcc7.css","assets/banquetFuneral.a3a46135.js","assets/banquetFuneral.c9d3d060.css","assets/banquetFullMoon.45e9bc22.js","assets/banquetFullMoon.f507e889.css","assets/banquetBirthday.4f9d734c.js","assets/banquetBirthday.a5efd6b9.css","assets/thickProcessing.7253c120.js","assets/thickProcessing.0da8e53a.css","assets/deepProcessing.f4a8af71.js","assets/deepProcessing.97a063ac.css","assets/informationg.b648c8df.js","assets/details.784cfc63.css"]),"/src/views/user_informationg/detil.vue":()=>l(()=>import("./detil.088ae19c.js"),["assets/detil.088ae19c.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/vue-router.9f65afb1.js","assets/informationg.b648c8df.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/detil.9f66ded4.css"]),"/src/views/user_informationg/editCate.vue":()=>l(()=>import("./editCate.58b567e8.js"),["assets/editCate.58b567e8.js","assets/editCate.vue_vue_type_script_setup_true_name_flowTypeEdit_lang.ad421bfe.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.fa872673.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/examined.fccbde31.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/user_informationg/index.vue":()=>l(()=>import("./index.67c881fe.js"),["assets/index.67c881fe.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/usePaging.2ad8e1e6.js","assets/useDictOptions.a61fcf9f.js","assets/informationg.b648c8df.js","assets/editCate.vue_vue_type_script_setup_true_name_flowTypeEdit_lang.ad421bfe.js","assets/index.fa872673.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/examined.fccbde31.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/user_menu/edit.vue":()=>l(()=>import("./edit.da73b172.js"),["assets/edit.da73b172.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.fa872673.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/user_menu.121458b5.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/edit.d2670ecb.css"]),"/src/views/user_menu/index.vue":()=>l(()=>import("./index.e408cb8f.js"),["assets/index.e408cb8f.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/usePaging.2ad8e1e6.js","assets/useDictOptions.a61fcf9f.js","assets/user_menu.121458b5.js","assets/lodash.08438971.js","assets/edit.da73b172.js","assets/index.fa872673.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/edit.d2670ecb.css"]),"/src/views/user_role/auth.vue":()=>l(()=>import("./auth.1814f82d.js"),["assets/auth.1814f82d.js","assets/auth.vue_vue_type_script_setup_true_lang.439c758a.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.fa872673.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/lodash.08438971.js","assets/user_menu.121458b5.js","assets/user_role.cb302517.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/user_role/edit.vue":()=>l(()=>import("./edit.dfe55c39.js"),["assets/edit.dfe55c39.js","assets/edit.vue_vue_type_script_setup_true_name_userRoleEdit_lang.4568c7f1.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.fa872673.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/user_role.cb302517.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/user_role/index.vue":()=>l(()=>import("./index.023332c8.js"),["assets/index.023332c8.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/usePaging.2ad8e1e6.js","assets/useDictOptions.a61fcf9f.js","assets/user_role.cb302517.js","assets/lodash.08438971.js","assets/edit.vue_vue_type_script_setup_true_name_userRoleEdit_lang.4568c7f1.js","assets/index.fa872673.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/auth.vue_vue_type_script_setup_true_lang.439c758a.js","assets/user_menu.121458b5.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/workbench/index.vue":()=>l(()=>import("./index.894e452b.js"),["assets/index.894e452b.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/vue-echarts.91588d37.js","assets/resize-detector.4e96b72b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"])});function R4(){return Object.keys(x3).map(a=>a.replace("/src/views/","").replace(".vue",""))}function n1(a,o=!0){return a.map(e=>{const i=y6(e,o);return e.children!=null&&e.children&&e.children.length&&(i.children=n1(e.children,!1)),i})}function y6(a,o){const e={path:X(a.paths)?a.paths:o?`/${a.paths}`:a.paths,name:Symbol(a.paths),meta:{hidden:!a.is_show,keepAlive:!!a.is_cache,title:a.name,perms:a.perms,query:a.params,icon:a.icon,type:a.type,activeMenu:a.selected}};switch(a.type){case d3.CATALOGUE:e.component=o?O3:w3,a.children||(e.component=w3);break;case d3.MENU:e.component=g6(a.component);break}return e}function g6(a){try{const o=Object.keys(x3).find(e=>e.includes(`${a}.vue`));if(o)return x3[o];throw Error(`\u627E\u4E0D\u5230\u7EC4\u4EF6${a}\uFF0C\u8BF7\u786E\u4FDD\u7EC4\u4EF6\u8DEF\u5F84\u6B63\u786E`)}catch(o){return console.error(o),w3}}function r1(a){var o,e;for(const i of a){if(((o=i.meta)==null?void 0:o.type)==d3.MENU&&!((e=i.meta)!=null&&e.hidden)&&!X(i.path))return i.name;if(i.children){const c=r1(i.children);if(c)return c}}}function P4(a){var e;return((e=(H3()||L).getRoutes().find(i=>{var c;return((c=i.meta)==null?void 0:c.perms)==a}))==null?void 0:e.path)||""}function w6(){L.removeRoute(B3);const{routes:a}=$();a.forEach(o=>{const e=o.name;e&&L.hasRoute(e)&&L.removeRoute(e)})}const L=Q1({history:a0("/admin/"),routes:b6});function u1(){return P.get(T3)}function h3(){const a=$(),o=t3();a.resetState(),o.resetState(),P.remove(T3),w6()}const A6={requestInterceptorsHook(a){var t;G.start();const{withToken:o,isParamsToData:e}=a.requestOptions,i=a.params||{},c=a.headers||{};if(o){const s=u1();c.token=s}return e&&!Reflect.has(a,"data")&&((t=a.method)==null?void 0:t.toUpperCase())===a3.POST&&(a.data=i,a.params={}),a.headers=c,a},requestInterceptorsCatchHook(a){return G.done(),a},async responseInterceptorsHook(a){G.done();const{isTransformResponse:o,isReturnDefaultResponse:e}=a.config.requestOptions;if(e)return a;if(!o)return a.data;const{code:i,data:c,show:t,msg:s}=a.data;switch(i){case Q.SUCCESS:return t&&s&&U.msgSuccess(s),c;case Q.FAIL:return t&&s&&U.msgError(s),Promise.reject(c);case Q.LOGIN_FAILURE:return h3(),L.push(E.LOGIN),Promise.reject();case Q.OPEN_NEW_PAGE:return window.location.href=c.url,c;default:return c}},responseInterceptorsCatchHook(a){return G.done(),a.code!==r3.exports.AxiosError.ERR_CANCELED&&(a.message.indexOf("timeout")!==-1?U.msgError("\u8BF7\u6C42\u8D85\u65F6!!!"):a.message&&U.msgError(a.message)),Promise.reject(a)}},f6={timeout:R.timeout,baseURL:R.baseUrl,headers:{"Content-Type":l1.JSON,version:R.version},axiosHooks:A6,requestOptions:{isParamsToData:!0,isReturnDefaultResponse:!1,isTransformResponse:!0,urlPrefix:R.urlPrefix,ignoreCancelToken:!1,withToken:!0,isOpenRetry:!0,retryCount:2}};function V6(a){return new T0(T.exports.merge(f6,a||{}))}const x6=V6(),j=x6;function E6(){return j.get({url:"/config/getConfig"})}function C4(){return j.get({url:"/workbench/index"})}function S4(a){return j.get({url:"/config/dict",params:a})}const N=_3({id:"app",state:()=>({config:{},isMobile:!0,isCollapsed:!1,isRouteShow:!0}),actions:{getImageUrl(a){return a?`${this.config.oss_domain}${a}`:""},getConfig(){return new Promise((a,o)=>{E6().then(e=>{this.config=e,a(e)}).catch(e=>{o(e)})})},setMobile(a){this.isMobile=a},toggleCollapsed(a){this.isCollapsed=a!=null?a:!this.isCollapsed},refreshView(){this.isRouteShow=!1,x1(()=>{this.isRouteShow=!0})}}}),M6=g({__name:"App",setup(a){const o=N(),e=C(),i={zIndex:3e3,locale:W1},c=a1();E1(async()=>{e.setTheme(c.value);const s=await o.getConfig();let n=document.querySelector('link[rel="icon"]');if(n){n.href=s.web_favicon;return}n=document.createElement("link"),n.rel="icon",n.href=s.web_favicon,document.head.appendChild(n)});const{width:t}=K1();return Z3(t,J1(s=>{s>f3.SM?(o.setMobile(!1),o.toggleCollapsed(!1)):(o.setMobile(!0),o.toggleCollapsed(!0)),s{const h=l3("router-view"),d=Y1;return _(),A(d,{locale:i.locale,"z-index":i.zIndex},{default:p(()=>[u(h)]),_:1},8,["locale","z-index"])}}}),y3="data-clipboard-text",L6={mounted:(a,o)=>{a.setAttribute(y3,o.value);const{toClipboard:e}=l0();a.onclick=()=>{e(a.getAttribute(y3)).then(()=>{U.msgSuccess("\u590D\u5236\u6210\u529F")}).catch(()=>{U.msgError("\u590D\u5236\u5931\u8D25")})}},updated:(a,o)=>{a.setAttribute(y3,o.value)}},H6=Object.freeze(Object.defineProperty({__proto__:null,default:L6},Symbol.toStringTag,{value:"Module"})),T6={mounted:(a,o)=>{const{value:e}=o,c=$().perms,t="*";if(Array.isArray(e))e.length>0&&(c.some(n=>t==n||e.includes(n))||a.parentNode&&a.parentNode.removeChild(a));else throw new Error(`like v-perms="['auth.menu/edit']"`)}},O6=Object.freeze(Object.defineProperty({__proto__:null,default:T6},Symbol.toStringTag,{value:"Module"}));i0([c0,t0,s0,n0,r0,u0,m0,d0,h0,_0,v0,p0,z0,b0,y0,g0,w0,A0,f0,V0,x0,E0,M0,L0]);const B6=Object.freeze(Object.defineProperty({__proto__:null},Symbol.toStringTag,{value:"Module"})),I6=a=>{for(const[o,e]of Object.entries(e1))a.component(o,e)},D6=Object.freeze(Object.defineProperty({__proto__:null,default:I6},Symbol.toStringTag,{value:"Module"})),R6=a=>{a.use(H0)},P6=Object.freeze(Object.defineProperty({__proto__:null,default:R6},Symbol.toStringTag,{value:"Module"})),C6=o0(),S6=a=>{a.use(C6)},k6=Object.freeze(Object.defineProperty({__proto__:null,default:S6},Symbol.toStringTag,{value:"Module"})),j6=a=>{a.use(L)},N6=Object.freeze(Object.defineProperty({__proto__:null,default:j6},Symbol.toStringTag,{value:"Module"})),q3=Object.assign({"./directives/copy.ts":H6,"./directives/perms.ts":O6,"./plugins/echart.ts":B6,"./plugins/element.ts":D6,"./plugins/hljs.ts":P6,"./plugins/pinia.ts":k6,"./plugins/router.ts":N6});function q6(a){Object.keys(q3).forEach(o=>{const e=o.replace(/(.*\/)*([^.]+).*/gi,"$2"),i=o.replace(/^\.\/([\w-]+).*/gi,"$1"),c=q3[o];if(c.default)switch(i){case"directives":a.directive(e,c.default);break;case"plugins":typeof c.default=="function"&&c.default(a);break}})}const F6={install:q6};G.configure({showSpinner:!1});const g3=E.LOGIN,G6=E.INDEX,U6=[E.LOGIN,E.ERROR_403];L.beforeEach(async(a,o,e)=>{var t;G.start(),document.title=(t=a.meta.title)!=null?t:R.title;const i=$(),c=t3();if(U6.includes(a.path))e();else if(i.token)if(Object.keys(i.userInfo).length!==0)a.path===g3?e({path:G6}):e();else try{await i.getUserInfo();const n=i.routes,h=r1(n);if(!h){h3(),e(E.ERROR_403);return}c.setRouteName(h),N3.redirect={name:h},L.addRoute(N3),n.forEach(d=>{if(!X(d.path)){if(!d.children){L.addRoute(B3,d);return}L.addRoute(d)}}),e({...a,replace:!0})}catch{h3(),e({path:g3,query:{redirect:a.fullPath}})}else e({path:g3,query:{redirect:a.fullPath}})});L.afterEach(()=>{G.done()});if(typeof window<"u"){let a=function(){var o=document.body,e=document.getElementById("__svg__icons__dom__");e||(e=document.createElementNS("http://www.w3.org/2000/svg","svg"),e.style.position="absolute",e.style.width="0",e.style.height="0",e.id="__svg__icons__dom__",e.setAttribute("xmlns","http://www.w3.org/2000/svg"),e.setAttribute("xmlns:link","http://www.w3.org/1999/xlink")),e.innerHTML='',o.insertBefore(e,o.lastChild)};document.readyState==="loading"?document.addEventListener("DOMContentLoaded",a):a()}window._AMapSecurityConfig={securityJsCode:"e8b6cb44e8e431d68052c8e10db99264"};const v3=M1(M6);v3.use(F6);v3.provide("base_url",R.baseUrl+R.urlPrefix);v3.mount("#app");v3.config.warnHandler=()=>null;export{O0 as A,d3 as M,E as P,Q as R,K0 as _,$ as a,S as b,P as c,B as d,X2 as e,U as f,S4 as g,o3 as h,W0 as i,R as j,P4 as k,C as l,k3 as m,B4 as n,R4 as o,T4 as p,I4 as q,j as r,D4 as s,H4 as t,N as u,O4 as v,L4 as w,M4 as x,C4 as y}; diff --git a/public/admin/assets/index.aaa0ca94.js b/public/admin/assets/index.aaa0ca94.js new file mode 100644 index 000000000..01ca9e99f --- /dev/null +++ b/public/admin/assets/index.aaa0ca94.js @@ -0,0 +1 @@ +import{B as O,C as j,w as z,D as G,I as H,O as J,t as W,P as X,Q as Y}from"./element-plus.4328d892.js";import{_ as Z}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{u as ee}from"./usePaging.2ad8e1e6.js";import{u as te}from"./useDictOptions.8d37e54b.js";import{b as ae,d as oe}from"./task_scheduling.1b21dca9.js";import"./lodash.08438971.js";import{k as D,d as le}from"./index.ed71ac09.js";import{_ as se}from"./edit.vue_vue_type_script_setup_true_name_taskSchedulingEdit_lang.98340b3b.js";import{d as ne}from"./dict.6c560e38.js";import{_ as ie}from"./money.vue_vue_type_script_setup_true_name_taskSchedulingEdit_lang.4480c61c.js";import{d as x,r as k,s as w,$ as ue,a4 as me,af as re,o as n,c as pe,U as e,L as o,u as a,R as _,M as f,K as u,a as B,k as de,Q as V,n as ce}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.b940d6e3.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.bd8cad2b.js";import"./company.8a1c349a.js";const _e={class:"mt-4"},fe={class:"flex mt-4 justify-end"},ye=x({name:"taskSchedulingLists"}),ke=x({...ye,setup(ve){const S=k([]),R=w(),v=w(),F=k(!1),C=k(!1),m=ue({create_user_id:"",template_id:"",company_id:"",type:"",status:""}),$=k([]),A=s=>{$.value=s.map(({id:l})=>l)},{dictData:L}=te(""),{pager:r,getLists:p,resetParams:P,resetPage:T}=ee({fetchFun:oe,params:m}),U=async s=>{var l,d;C.value=!0,await ce(),(l=v.value)==null||l.open(s.money?"edit":"add"),(d=v.value)==null||d.setFormData(s)},I=s=>{ae({id:s.id,status:s.status}).finally(()=>{p()})};return ne({type_id:10}).then(s=>{S.value=s.lists}),p(),(s,l)=>{const d=O,h=j,c=z,N=G,b=H,i=J,q=W,E=me("router-link"),Q=X,K=Z,y=re("perms"),M=Y;return n(),pe("div",null,[e(b,{class:"!border-none mb-4",shadow:"never"},{default:o(()=>[e(N,{class:"mb-[-16px] formtabel",model:a(m),inline:"","label-width":"100px"},{default:o(()=>[e(h,{label:"\u533A\u57DF\u7ECF\u7406",prop:"create_user_id"},{default:o(()=>[e(d,{class:"w-[280px]",modelValue:a(m).create_user_id,"onUpdate:modelValue":l[0]||(l[0]=t=>a(m).create_user_id=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u533A\u57DF\u7ECF\u7406"},null,8,["modelValue"])]),_:1}),e(h,{label:"\u516C\u53F8",prop:"company_id"},{default:o(()=>[e(d,{class:"w-[280px]",modelValue:a(m).company_id,"onUpdate:modelValue":l[1]||(l[1]=t=>a(m).company_id=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u516C\u53F8"},null,8,["modelValue"])]),_:1}),e(h,null,{default:o(()=>[e(c,{class:"el-btn",type:"primary",onClick:a(T)},{default:o(()=>[_("\u67E5\u8BE2")]),_:1},8,["onClick"]),e(c,{onClick:a(P)},{default:o(()=>[_("\u91CD\u7F6E")]),_:1},8,["onClick"])]),_:1})]),_:1},8,["model"])]),_:1}),f((n(),u(b,{class:"!border-none",shadow:"never"},{default:o(()=>[B("div",_e,[e(Q,{data:a(r).lists,onSelectionChange:A},{default:o(()=>[e(i,{type:"selection",width:"55"}),e(i,{label:"\u533A\u57DF\u7ECF\u7406",prop:"admin_name","show-overflow-tooltip":""}),e(i,{label:"\u516C\u53F8",prop:"company_name","show-overflow-tooltip":""}),e(i,{label:"\u6BCF\u65E5\u6700\u5927\u91D1\u989D",prop:"money","show-overflow-tooltip":""}),e(i,{label:"\u516C\u53F8\u7C7B\u578B",prop:"company_type_name","show-overflow-tooltip":""}),f((n(),u(i,{label:"\u72B6\u6001","min-width":"100"},{default:o(({row:t})=>[e(q,{modelValue:t.status,"onUpdate:modelValue":g=>t.status=g,"active-value":1,"inactive-value":0,onChange:g=>I(t)},null,8,["modelValue","onUpdate:modelValue","onChange"])]),_:1})),[[y,["task_scheduling.task_scheduling/edit"]]]),e(i,{label:"\u64CD\u4F5C",fixed:"right"},{default:o(({row:t})=>[f((n(),u(c,{onClick:g=>U(t),type:"primary",link:""},{default:o(()=>[_(" \u91D1\u989D ")]),_:2},1032,["onClick"])),[[y,["task.task_calendar"]]]),f((n(),u(c,{type:"primary",link:""},{default:o(()=>[e(E,{to:{path:a(D)("task_template.task_template/lists"),query:{id:t.id,company_id:t.company_id,company_type:t.dict_company_type}}},{default:o(()=>[_("\u4EFB\u52A1\u5B89\u6392")]),_:2},1032,["to"])]),_:2},1024)),[[y,["task_template.task_template/lists"]]]),f((n(),u(c,{type:"primary",link:""},{default:o(()=>[e(E,{to:{path:a(D)("task.task_calendar"),query:{id:t.id,company_id:t.company_id}}},{default:o(()=>[_("\u4EFB\u52A1\u65E5\u7A0B")]),_:2},1032,["to"])]),_:2},1024)),[[y,["task.task_calendar"]]])]),_:1})]),_:1},8,["data"])]),B("div",fe,[e(K,{modelValue:a(r),"onUpdate:modelValue":l[2]||(l[2]=t=>de(r)?r.value=t:null),onChange:a(p)},null,8,["modelValue","onChange"])])]),_:1})),[[M,a(r).loading]]),a(F)?(n(),u(se,{key:0,ref_key:"editRef",ref:R,"dict-data":a(L),onSuccess:a(p),onClose:l[3]||(l[3]=t=>F.value=!1)},null,8,["dict-data","onSuccess"])):V("",!0),a(C)?(n(),u(ie,{key:1,ref_key:"moneyRef",ref:v,onSuccess:a(p),onClose:l[4]||(l[4]=t=>C.value=!1)},null,8,["onSuccess"])):V("",!0)])}}});const rt=le(ke,[["__scopeId","data-v-1f10c852"]]);export{rt as default}; diff --git a/public/admin/assets/index.ac1f4b6e.js b/public/admin/assets/index.ac1f4b6e.js new file mode 100644 index 000000000..1df623def --- /dev/null +++ b/public/admin/assets/index.ac1f4b6e.js @@ -0,0 +1 @@ +import{a6 as j,B as q,C as z,M as G,N as H,w as J,D as W,I as X,O as Y,P as Z,Q as ee}from"./element-plus.4328d892.js";import{f as te,b as ae}from"./index.37f7aea6.js";import{d as K,s as F,r as h,$ as oe,j as le,n as g,af as ne,o as p,c as se,U as e,L as t,u as s,a8 as ie,R as i,a as re,M as E,K as c,S as ue,Q as T}from"./@vue.51d7f2d8.js";import{_ as pe}from"./edit.vue_vue_type_script_setup_true_lang.c4a9e1a8.js";import{e as me,f as de}from"./department.ea28aaf8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.5759a1a6.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./useDictOptions.a45fc8ac.js";const ce={class:"department"},_e=K({name:"department"}),tt=K({..._e,setup(fe){const B=F(),_=F(),x=F();let k=!1;const C=h(!1),b=h([]),m=oe({status:"",name:""}),v=h(!1),d=async()=>{C.value=!0,b.value=await me(m),C.value=!1},L=()=>{var o;(o=x.value)==null||o.resetFields(),d()},D=async o=>{var a,n;v.value=!0,await g(),o&&((a=_.value)==null||a.setFormData({pid:o})),(n=_.value)==null||n.open("add")},P=async o=>{var a,n;v.value=!0,await g(),(a=_.value)==null||a.open("edit"),(n=_.value)==null||n.getDetail(o)},S=async o=>{await te.confirm("\u786E\u5B9A\u8981\u5220\u9664\uFF1F"),await de({id:o}),d()},V=()=>{k=!k,R(b.value,k)},R=(o,a=!0)=>{var n;for(const r in o)(n=B.value)==null||n.toggleRowExpansion(o[r],a),o[r].children&&R(o[r].children,a)};return le(async()=>{await d(),g(()=>{V()})}),(o,a)=>{const n=q,r=z,w=G,I=H,u=J,M=W,$=X,U=ae,f=Y,A=j,O=Z,y=ne("perms"),Q=ee;return p(),se("div",ce,[e($,{class:"!border-none",shadow:"never"},{default:t(()=>[e(M,{ref_key:"formRef",ref:x,class:"mb-[-16px]",model:s(m),inline:!0},{default:t(()=>[e(r,{label:"\u90E8\u95E8\u540D\u79F0",prop:"name"},{default:t(()=>[e(n,{class:"w-[280px]",modelValue:s(m).name,"onUpdate:modelValue":a[0]||(a[0]=l=>s(m).name=l),clearable:"",onKeyup:ie(d,["enter"])},null,8,["modelValue","onKeyup"])]),_:1}),e(r,{label:"\u90E8\u95E8\u72B6\u6001",prop:"status"},{default:t(()=>[e(I,{class:"w-[280px]",modelValue:s(m).status,"onUpdate:modelValue":a[1]||(a[1]=l=>s(m).status=l)},{default:t(()=>[e(w,{label:"\u5168\u90E8",value:""}),e(w,{label:"\u6B63\u5E38",value:"1"}),e(w,{label:"\u505C\u7528",value:"0"})]),_:1},8,["modelValue"])]),_:1}),e(r,null,{default:t(()=>[e(u,{type:"primary",onClick:d},{default:t(()=>[i("\u67E5\u8BE2")]),_:1}),e(u,{onClick:L},{default:t(()=>[i("\u91CD\u7F6E")]),_:1})]),_:1})]),_:1},8,["model"])]),_:1}),e($,{class:"!border-none mt-4",shadow:"never"},{default:t(()=>[re("div",null,[E((p(),c(u,{type:"primary",onClick:a[2]||(a[2]=l=>D())},{icon:t(()=>[e(U,{name:"el-icon-Plus"})]),default:t(()=>[i(" \u65B0\u589E ")]),_:1})),[[y,["dept.dept/add"]]]),e(u,{onClick:V},{default:t(()=>[i(" \u5C55\u5F00/\u6298\u53E0 ")]),_:1})]),E((p(),c(O,{ref_key:"tableRef",ref:B,class:"mt-4",size:"large",data:s(b),"row-key":"id","tree-props":{children:"children",hasChildren:"hasChildren"}},{default:t(()=>[e(f,{label:"\u90E8\u95E8\u540D\u79F0",prop:"name","min-width":"150","show-overflow-tooltip":""}),e(f,{label:"\u90E8\u95E8\u72B6\u6001",prop:"status","min-width":"100"},{default:t(({row:l})=>[e(A,{class:"ml-2",type:l.status?"":"danger"},{default:t(()=>[i(ue(l.status_desc),1)]),_:2},1032,["type"])]),_:1}),e(f,{label:"\u6392\u5E8F",prop:"sort","min-width":"100"}),e(f,{label:"\u66F4\u65B0\u65F6\u95F4",prop:"update_time","min-width":"180"}),e(f,{label:"\u64CD\u4F5C",width:"160",fixed:"right"},{default:t(({row:l})=>[E((p(),c(u,{type:"primary",link:"",onClick:N=>D(l.id)},{default:t(()=>[i(" \u65B0\u589E ")]),_:2},1032,["onClick"])),[[y,["dept.dept/add"]]]),E((p(),c(u,{type:"primary",link:"",onClick:N=>P(l)},{default:t(()=>[i(" \u7F16\u8F91 ")]),_:2},1032,["onClick"])),[[y,["dept.dept/edit"]]]),l.pid!==0?E((p(),c(u,{key:0,type:"danger",link:"",onClick:N=>S(l.id)},{default:t(()=>[i(" \u5220\u9664 ")]),_:2},1032,["onClick"])),[[y,["dept.dept/delete"]]]):T("",!0)]),_:1})]),_:1},8,["data"])),[[Q,s(C)]])]),_:1}),s(v)?(p(),c(pe,{key:0,ref_key:"editRef",ref:_,onSuccess:d,onClose:a[3]||(a[3]=l=>v.value=!1)},null,512)):T("",!0)])}}});export{tt as default}; diff --git a/public/admin/assets/index.af446662.js b/public/admin/assets/index.af446662.js new file mode 100644 index 000000000..28adc2bbf --- /dev/null +++ b/public/admin/assets/index.af446662.js @@ -0,0 +1 @@ +import{k as je,b as Me,U as Ne,L as We,p as Ge,q as Ye,r as qe,V as Ke,E as Qe,O as Ze,W as Oe,P as Je,Q as Xe,w as He,N as et,B as tt,a as lt,F as nt,M as at}from"./element-plus.4328d892.js";import{_ as ot}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{_ as st}from"./index.fe1d30dd.js";import{r as $,f as Fe,d as Ae,b as xe,i as it}from"./index.37f7aea6.js";import{P as ut}from"./index.5759a1a6.js";import{U as dt}from"./index.5f944d34.js";import{_ as ct}from"./index.vue_vue_type_script_setup_true_lang.dc835bba.js";import{s as Z,r as D,$ as Se,d as O,o as s,c,a as o,K as V,Q as _,U as n,H as rt,_ as Ve,I as ft,u as e,e as De,w as K,M as Q,V as ue,L as a,k as T,n as we,a3 as mt,C as pt,j as _t,R as p,Z as Y,T as P,a7 as q,a8 as vt,O as be,S as se,bf as ht,be as gt}from"./@vue.51d7f2d8.js";import{u as yt}from"./usePaging.2ad8e1e6.js";import{g as Ct}from"./vue3-video-play.b911321b.js";const kt="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAgCAYAAABgrToAAAACJElEQVRYR+2YMWsUURSFz3m7s+nskjUIQSutbMRi7WzUVjSadMHCbVLkByjmLygaCVYWRqMEUhkFS9Gg0cJfYCPZjYUQFbPs+I7c2R1Q2ZjZfRNYYS4MAzPv3vnmvDvL3kMA2Hl5/CjLI9ckf4ZwY3Zt15C+gfwIao3So0rt3XsJtPUk9M/cAW6y9ap2DIyfAjgCwANwGeoYiEFtk/5e5CvXeer1D2neATcGgiTZM4+t9RNLEKcBtAFEGeBsiRWzl7EoSXo+8rV9gWc/fDc1B1VSEoEnDpj0KTB33tS26DGaEezvZQZpRxmODyoT5+vwBwS3zeTcT4yjTdZNJEiPSykk1bjZX6HeD/WQJ1zUApgq2w+etcsniBuAVlH9vELOx6Yo1VywgkmTB4X1kEGGhyAtg/Ecq3NNqnknDwVTrNBaactEts88OHs5b8Bw/Tof4M+kr4WrwwhoL9n5uRPWhxWwsxPEl+EGNMacP5I8evCPGgVgqKSFgoWCoQqE5hc9WCgYqkBoftGDeSiYz1/+UJLe+foftvh2A2B1fwQIrapkaFoDcK4PVyH0qVnyU4fjGdW4NQ2WlgDE5hLkMoJmQdh9zW9Dk59K5lhtLjyE01TX/jDILP5MGEbvbFPOJroIXvc5PjvTBbx7GM4vAjjd9WdSc2g/IPaqaTv5Aq58haP1TSb2Au20GGErvgTxIqiTAA7tVSnn+2Z9vAXdCsa4bD6Nsf0C/gYA5PMzcW0AAAAASUVORK5CYII=";function Et(l){return $.post({url:"/file/addCate",params:l})}function wt(l){return $.post({url:"/file/editCate",params:l})}function bt(l){return $.post({url:"/file/delCate",params:l})}function Ft(l){return $.get({url:"/file/listCate",params:l})}function At(l){return $.get({url:"/file/lists",params:l})}function xt(l){return $.post({url:"/file/delete",params:l})}function St(l){return $.post({url:"/file/move",params:l})}function Vt(l){return $.post({url:"/file/rename",params:l})}function Dt(l){const F=Z(),k=D([]),r=D(""),v=async()=>{const m=await Ft({page_type:0,type:l}),y=[{name:"\u5168\u90E8",id:""},{name:"\u672A\u5206\u7EC4",id:0}];k.value=m.lists,k.value.unshift(...y),setTimeout(()=>{var f;(f=F.value)==null||f.setCurrentKey(r.value)},0)};return{treeRef:F,cateId:r,cateLists:k,handleAddCate:async m=>{await Et({type:l,name:m,pid:0}),v()},handleEditCate:async(m,y)=>{await wt({id:y,name:m}),v()},handleDeleteCate:async m=>{await Fe.confirm("\u786E\u5B9A\u8981\u5220\u9664\uFF1F"),await bt({id:m}),r.value="",v()},getCateLists:v,handleCatSelect:m=>{r.value=m.id}}}function Bt(l,F,k,r){const v=Z(),x=D("normal"),E=D(0),i=D([]),h=D(!1),m=D(!1),y=Se({name:"",type:F,cid:l}),{pager:f,getLists:L,resetPage:X}=yt({fetchFun:At,params:y,firstLoading:!0,size:r}),U=()=>{L()},H=()=>{X()},ee=u=>!!i.value.find(g=>g.id==u),te=async u=>{await Fe.confirm("\u786E\u8BA4\u5220\u9664\u540E\uFF0C\u672C\u5730\u6216\u4E91\u5B58\u50A8\u6587\u4EF6\u4E5F\u5C06\u540C\u6B65\u5220\u9664\uFF0C\u5982\u6587\u4EF6\u5DF2\u88AB\u4F7F\u7528\uFF0C\u8BF7\u8C28\u614E\u64CD\u4F5C\uFF01");const g=u||i.value.map(R=>R.id);await xt({ids:g}),U(),C()},z=async()=>{const u=i.value.map(g=>g.id);await St({ids:u,cid:E.value}),E.value=0,U(),C()},I=u=>{const g=i.value.findIndex(R=>R.id==u.id);if(g!=-1){i.value.splice(g,1);return}if(i.value.length==k.value){if(k.value==1){i.value=[],i.value.push(u);return}je.warning("\u5DF2\u8FBE\u5230\u9009\u62E9\u4E0A\u9650");return}i.value.push(u)},C=()=>{i.value=[]};return{listShowType:x,tableRef:v,moveId:E,pager:f,fileParams:y,select:i,isCheckAll:h,isIndeterminate:m,getFileList:U,refresh:H,batchFileDelete:te,batchFileMove:z,selectFile:I,isSelect:ee,clearSelect:C,cancelSelete:u=>{i.value=i.value.filter(g=>g.id!=u)},selectAll:u=>{var g;if(m.value=!1,(g=v.value)==null||g.toggleAllSelection(),u){i.value=[...f.lists];return}C()},handleFileRename:async(u,g)=>{await Vt({id:g,name:u}),U()}}}const Rt=O({props:{uri:{type:String},fileSize:{type:String,default:"100px"},type:{type:String,default:"image"}},emits:["close"]});const zt=["src"],It={key:2,class:"absolute left-1/2 top-1/2 translate-x-[-50%] translate-y-[-50%] rounded-full w-5 h-5 flex justify-center items-center bg-[rgba(0,0,0,0.3)]"};function $t(l,F,k,r,v,x){const E=Me,i=xe;return s(),c("div",null,[o("div",{class:"file-item relative",style:Ve({height:l.fileSize,width:l.fileSize})},[l.type=="image"?(s(),V(E,{key:0,class:"image",fit:"contain",src:l.uri},null,8,["src"])):l.type=="video"?(s(),c("video",{key:1,class:"video",src:l.uri},null,8,zt)):_("",!0),l.type=="video"?(s(),c("div",It,[n(i,{name:"el-icon-CaretRight",size:18,color:"#fff"})])):_("",!0),rt(l.$slots,"default",{},void 0,!0)],4)])}const ie=Ae(Rt,[["render",$t],["__scopeId","data-v-5ccc0f84"]]),Pt=O({__name:"index",props:{src:{type:String,required:!0},width:String,height:String,poster:String},setup(l,{expose:F}){const k=l,r=Z(),v=Se({color:"var(--el-color-primary)",muted:!1,webFullScreen:!1,speedRate:["0.75","1.0","1.25","1.5","2.0"],autoPlay:!0,loop:!1,mirror:!1,ligthOff:!1,volume:.3,control:!0,title:"",poster:"",...k}),x=()=>{r.value.play()},E=()=>{r.value.pause()},i=f=>{console.log(f,"\u64AD\u653E")},h=f=>{console.log(f,"\u6682\u505C")},m=f=>{console.log(f,"\u65F6\u95F4\u66F4\u65B0")},y=f=>{console.log(f,"\u53EF\u4EE5\u64AD\u653E")};return F({play:x,pause:E}),(f,L)=>(s(),c("div",null,[n(e(Ct),ft({ref_key:"playerRef",ref:r},v,{src:l.src,onPlay:i,onPause:h,onTimeupdate:m,onCanplay:y}),null,16,["src"])]))}}),Tt={key:0},Lt={key:1},Ut=O({__name:"preview",props:{modelValue:{type:Boolean,default:!1},url:{type:String,default:""},type:{type:String,default:"image"}},emits:["update:modelValue"],setup(l,{emit:F}){const k=l,r=Z(),v=De({get(){return k.modelValue},set(i){F("update:modelValue",i)}}),x=()=>{F("update:modelValue",!1)},E=D([]);return K(()=>k.modelValue,i=>{i?we(()=>{var h;E.value=[k.url],(h=r.value)==null||h.play()}):we(()=>{var h;E.value=[],(h=r.value)==null||h.pause()})}),(i,h)=>{const m=Ne,y=Pt,f=We;return Q((s(),c("div",null,[l.type=="image"?(s(),c("div",Tt,[e(E).length?(s(),V(m,{key:0,"url-list":e(E),"hide-on-click-modal":"",onClose:x},null,8,["url-list"])):_("",!0)])):_("",!0),l.type=="video"?(s(),c("div",Lt,[n(f,{modelValue:e(v),"onUpdate:modelValue":h[0]||(h[0]=L=>T(v)?v.value=L:null),width:"740px",title:"\u89C6\u9891\u9884\u89C8","before-close":x},{default:a(()=>[n(y,{ref_key:"playerRef",ref:r,src:l.url,width:"100%",height:"450px"},null,8,["src"])]),_:1},8,["modelValue"])])):_("",!0)],512)),[[ue,l.modelValue]])}}}),J=l=>(ht("data-v-9cc1892d"),l=l(),gt(),l),jt={class:"material"},Mt={class:"material__left"},Nt={class:"flex-1 min-h-0"},Wt={class:"material-left__content pt-4 p-b-4"},Gt={class:"flex flex-1 items-center min-w-0 pr-4"},Yt=J(()=>o("img",{class:"w-[20px] h-[16px] mr-3",src:kt},null,-1)),qt={class:"flex-1 truncate mr-2"},Kt=J(()=>o("span",{class:"muted m-r-10"},"\xB7\xB7\xB7",-1)),Qt=["onClick"],Zt={class:"flex justify-center p-2 border-t border-br"},Ot={class:"material__center flex flex-col"},Jt={class:"operate-btn flex"},Xt={class:"flex-1 flex"},Ht=J(()=>o("span",{class:"mr-5"},"\u79FB\u52A8\u6587\u4EF6\u81F3",-1)),el={class:"flex items-center ml-2"},tl={key:0,class:"mt-3"},ll={class:"material-center__content flex flex-col flex-1 mb-1 min-h-0"},nl={class:"file-list flex flex-wrap mt-4"},al={key:0,class:"item-selected"},ol={class:"operation-btns flex items-center"},sl={class:"inline-block"},il={class:"inline-block"},ul={class:"inline-block"},dl={key:1,class:"flex flex-1 justify-center items-center"},cl={class:"material-center__footer flex justify-between items-center mt-2"},rl={class:"flex"},fl={class:"mr-3"},ml=J(()=>o("span",{class:"mr-5"},"\u79FB\u52A8\u6587\u4EF6\u81F3",-1)),pl={key:0,class:"material__right"},_l={class:"flex justify-between p-2 flex-wrap"},vl={class:"sm flex items-center"},hl={key:0},gl={class:"flex-1 min-h-0"},yl={class:"select-lists flex flex-col p-t-3"},Cl={class:"select-item"},kl=O({__name:"index",props:{fileSize:{type:String,default:"100px"},limit:{type:Number,default:1},type:{type:String,default:"image"},mode:{type:String,default:"picker"},pageSize:{type:Number,default:15}},emits:["change"],setup(l,{expose:F,emit:k}){const r=l,{limit:v}=mt(r),x=De(()=>{switch(r.type){case"image":return 10;case"video":return 20;case"file":return 30;default:return 0}}),E=pt("visible"),i=D(""),h=D(!1),{treeRef:m,cateId:y,cateLists:f,handleAddCate:L,handleEditCate:X,handleDeleteCate:U,getCateLists:H,handleCatSelect:ee}=Dt(x.value),{tableRef:te,listShowType:z,moveId:I,pager:C,fileParams:M,select:S,isCheckAll:B,isIndeterminate:u,getFileList:g,refresh:R,batchFileDelete:N,batchFileMove:de,selectFile:le,isSelect:ce,clearSelect:re,cancelSelete:Be,selectAll:fe,handleFileRename:me}=Bt(y,x,v,r.pageSize),pe=async()=>{var A;await H(),(A=m.value)==null||A.setCurrentKey(y.value),g()},ne=A=>{i.value=A,h.value=!0};return K(E,async A=>{A&&pe()},{immediate:!0}),K(y,()=>{M.name="",R()}),K(S,A=>{if(k("change",A),A.length==C.lists.length&&A.length!==0){u.value=!1,B.value=!0;return}A.length>0?u.value=!0:(B.value=!1,u.value=!1)},{deep:!0}),_t(()=>{r.mode=="page"&&pe()}),F({clearSelect:re}),(A,d)=>{const _e=it,ve=Ge,W=ct,Re=Ye,ze=qe,Ie=Ke,ae=Qe,w=He,he=dt,ge=at,ye=et,Ce=ut,G=xe,$e=tt,ke=lt,oe=nt,Ee=st,j=Ze,Pe=Oe,Te=Je,Le=ot,Ue=Xe;return Q((s(),c("div",jt,[o("div",Mt,[o("div",Nt,[n(ae,null,{default:a(()=>[o("div",Wt,[n(Ie,{ref_key:"treeRef",ref:m,"node-key":"id",data:e(f),"empty-text":"''","highlight-current":!0,"expand-on-click-node":!1,"current-node-key":e(y),onNodeClick:e(ee)},{default:a(({data:t})=>[o("div",Gt,[Yt,o("span",qt,[n(_e,{content:t.name},null,8,["content"])]),t.id>0?(s(),V(ze,{key:0,"hide-on-click":!1},{dropdown:a(()=>[n(Re,null,{default:a(()=>[n(W,{onConfirm:b=>e(X)(b,t.id),size:"default",value:t.name,width:"400px",limit:20,"show-limit":"",teleported:""},{default:a(()=>[o("div",null,[n(ve,null,{default:a(()=>[p(" \u547D\u540D\u5206\u7EC4 ")]),_:1})])]),_:2},1032,["onConfirm","value"]),o("div",{onClick:b=>e(U)(t.id)},[n(ve,null,{default:a(()=>[p("\u5220\u9664\u5206\u7EC4")]),_:1})],8,Qt)]),_:2},1024)]),default:a(()=>[Kt]),_:2},1024)):_("",!0)])]),_:1},8,["data","current-node-key","onNodeClick"])])]),_:1})]),o("div",Zt,[n(W,{onConfirm:e(L),size:"default",width:"400px",limit:20,"show-limit":"",teleported:""},{default:a(()=>[n(w,null,{default:a(()=>[p(" \u6DFB\u52A0\u5206\u7EC4 ")]),_:1})]),_:1},8,["onConfirm"])])]),o("div",Ot,[o("div",Jt,[o("div",Xt,[l.type=="image"?(s(),V(he,{key:0,class:"mr-3",data:{cid:e(y)},type:l.type,"show-progress":!0,onChange:e(R)},{default:a(()=>[n(w,{type:"primary"},{default:a(()=>[p("\u672C\u5730\u4E0A\u4F20")]),_:1})]),_:1},8,["data","type","onChange"])):_("",!0),l.type=="video"?(s(),V(he,{key:1,class:"mr-3",data:{cid:e(y)},type:l.type,"show-progress":!0,onChange:e(R)},{default:a(()=>[n(w,{type:"primary"},{default:a(()=>[p("\u672C\u5730\u4E0A\u4F20")]),_:1})]),_:1},8,["data","type","onChange"])):_("",!0),l.mode=="page"?(s(),V(w,{key:2,disabled:!e(S).length,onClick:d[0]||(d[0]=Y(t=>e(N)(),["stop"]))},{default:a(()=>[p(" \u5220\u9664 ")]),_:1},8,["disabled"])):_("",!0),l.mode=="page"?(s(),V(Ce,{key:3,class:"ml-3",onConfirm:e(de),disabled:!e(S).length,title:"\u79FB\u52A8\u6587\u4EF6"},{trigger:a(()=>[n(w,{disabled:!e(S).length},{default:a(()=>[p("\u79FB\u52A8")]),_:1},8,["disabled"])]),default:a(()=>[o("div",null,[Ht,n(ye,{modelValue:e(I),"onUpdate:modelValue":d[1]||(d[1]=t=>T(I)?I.value=t:null),placeholder:"\u8BF7\u9009\u62E9"},{default:a(()=>[(s(!0),c(P,null,q(e(f),t=>(s(),c(P,{key:t.id},[t.id!==""?(s(),V(ge,{key:0,label:t.name,value:t.id},null,8,["label","value"])):_("",!0)],64))),128))]),_:1},8,["modelValue"])])]),_:1},8,["onConfirm","disabled"])):_("",!0)]),n($e,{class:"w-60",placeholder:"\u8BF7\u8F93\u5165\u540D\u79F0",modelValue:e(M).name,"onUpdate:modelValue":d[2]||(d[2]=t=>e(M).name=t),onKeyup:vt(e(R),["enter"])},{append:a(()=>[n(w,{onClick:e(R)},{icon:a(()=>[n(G,{name:"el-icon-Search"})]),_:1},8,["onClick"])]),_:1},8,["modelValue","onKeyup"]),o("div",el,[n(ke,{content:"\u5217\u8868\u89C6\u56FE",placement:"top"},{default:a(()=>[o("div",{class:be(["list-icon",{select:e(z)=="table"}]),onClick:d[3]||(d[3]=t=>z.value="table")},[n(G,{name:"local-icon-list-2",size:18})],2)]),_:1}),n(ke,{content:"\u5E73\u94FA\u89C6\u56FE",placement:"top"},{default:a(()=>[o("div",{class:be(["list-icon",{select:e(z)=="normal"}]),onClick:d[4]||(d[4]=t=>z.value="normal")},[n(G,{name:"el-icon-Menu",size:18})],2)]),_:1})])]),l.mode=="page"?(s(),c("div",tl,[n(oe,{disabled:!e(C).lists.length,modelValue:e(B),"onUpdate:modelValue":d[5]||(d[5]=t=>T(B)?B.value=t:null),onChange:e(fe),indeterminate:e(u)},{default:a(()=>[p(" \u5F53\u9875\u5168\u9009 ")]),_:1},8,["disabled","modelValue","onChange","indeterminate"])])):_("",!0),o("div",ll,[e(C).lists.length?Q((s(),V(ae,{key:0},{default:a(()=>[o("ul",nl,[(s(!0),c(P,null,q(e(C).lists,t=>(s(),c("li",{class:"file-item-wrap",key:t.id,style:Ve({width:l.fileSize})},[n(Ee,{onClose:b=>e(N)([t.id])},{default:a(()=>[n(ie,{uri:t.uri,"file-size":l.fileSize,type:l.type,onClick:b=>e(le)(t)},{default:a(()=>[e(ce)(t.id)?(s(),c("div",al,[n(G,{size:24,name:"el-icon-Check",color:"#fff"})])):_("",!0)]),_:2},1032,["uri","file-size","type","onClick"])]),_:2},1032,["onClose"]),n(_e,{class:"mt-1",content:t.name},null,8,["content"]),o("div",ol,[n(W,{onConfirm:b=>e(me)(b,t.id),size:"default",value:t.name,width:"400px",limit:50,"show-limit":"",teleported:""},{default:a(()=>[n(w,{type:"primary",link:""},{default:a(()=>[p(" \u91CD\u547D\u540D ")]),_:1})]),_:2},1032,["onConfirm","value"]),n(w,{type:"primary",link:"",onClick:b=>ne(t.uri)},{default:a(()=>[p(" \u67E5\u770B ")]),_:2},1032,["onClick"])])],4))),128))])]),_:1},512)),[[ue,e(z)=="normal"]]):_("",!0),Q(n(Te,{ref_key:"tableRef",ref:te,class:"mt-4",data:e(C).lists,width:"100%",height:"100%",size:"large",onRowClick:e(le)},{default:a(()=>[n(j,{width:"55"},{default:a(({row:t})=>[n(oe,{modelValue:e(ce)(t.id),onChange:b=>e(le)(t)},null,8,["modelValue","onChange"])]),_:1}),n(j,{label:"\u56FE\u7247",width:"100"},{default:a(({row:t})=>[n(ie,{uri:t.uri,"file-size":"50px",type:l.type},null,8,["uri","type"])]),_:1}),n(j,{label:"\u540D\u79F0","min-width":"100","show-overflow-tooltip":""},{default:a(({row:t})=>[n(Pe,{onClick:Y(b=>ne(t.uri),["stop"]),underline:!1},{default:a(()=>[p(se(t.name),1)]),_:2},1032,["onClick"])]),_:1}),n(j,{prop:"create_time",label:"\u4E0A\u4F20\u65F6\u95F4","min-width":"100"}),n(j,{label:"\u64CD\u4F5C",width:"150",fixed:"right"},{default:a(({row:t})=>[o("div",sl,[n(W,{onConfirm:b=>e(me)(b,t.id),size:"default",value:t.name,width:"400px",limit:50,"show-limit":"",teleported:""},{default:a(()=>[n(w,{type:"primary",link:""},{default:a(()=>[p(" \u91CD\u547D\u540D ")]),_:1})]),_:2},1032,["onConfirm","value"])]),o("div",il,[n(w,{type:"primary",link:"",onClick:Y(b=>ne(t.uri),["stop"])},{default:a(()=>[p(" \u67E5\u770B ")]),_:2},1032,["onClick"])]),o("div",ul,[n(w,{type:"primary",link:"",onClick:Y(b=>e(N)([t.id]),["stop"])},{default:a(()=>[p(" \u5220\u9664 ")]),_:2},1032,["onClick"])])]),_:1})]),_:1},8,["data","onRowClick"]),[[ue,e(z)=="table"]]),!e(C).loading&&!e(C).lists.length?(s(),c("div",dl," \u6682\u65E0\u6570\u636E~ ")):_("",!0)]),o("div",cl,[o("div",rl,[l.mode=="page"?(s(),c(P,{key:0},[o("span",fl,[n(oe,{disabled:!e(C).lists.length,modelValue:e(B),"onUpdate:modelValue":d[6]||(d[6]=t=>T(B)?B.value=t:null),onChange:e(fe),indeterminate:e(u)},{default:a(()=>[p(" \u5F53\u9875\u5168\u9009 ")]),_:1},8,["disabled","modelValue","onChange","indeterminate"])]),n(w,{disabled:!e(S).length,onClick:d[7]||(d[7]=t=>e(N)())},{default:a(()=>[p(" \u5220\u9664 ")]),_:1},8,["disabled"]),n(Ce,{class:"ml-3 inline",onConfirm:e(de),disabled:!e(S).length,title:"\u79FB\u52A8\u6587\u4EF6"},{trigger:a(()=>[n(w,{disabled:!e(S).length},{default:a(()=>[p("\u79FB\u52A8")]),_:1},8,["disabled"])]),default:a(()=>[o("div",null,[ml,n(ye,{modelValue:e(I),"onUpdate:modelValue":d[8]||(d[8]=t=>T(I)?I.value=t:null),placeholder:"\u8BF7\u9009\u62E9"},{default:a(()=>[(s(!0),c(P,null,q(e(f),t=>(s(),c(P,{key:t.id},[t.id!==""?(s(),V(ge,{key:0,label:t.name,value:t.id},null,8,["label","value"])):_("",!0)],64))),128))]),_:1},8,["modelValue"])])]),_:1},8,["onConfirm","disabled"])],64)):_("",!0)]),n(Le,{modelValue:e(C),"onUpdate:modelValue":d[9]||(d[9]=t=>T(C)?C.value=t:null),onChange:e(g),layout:"total, prev, pager, next, jumper"},null,8,["modelValue","onChange"])])]),l.mode=="picker"?(s(),c("div",pl,[o("div",_l,[o("div",vl,[p(" \u5DF2\u9009\u62E9 "+se(e(S).length)+" ",1),e(v)?(s(),c("span",hl,"/"+se(e(v)),1)):_("",!0)]),n(w,{type:"primary",link:"",onClick:e(re)},{default:a(()=>[p("\u6E05\u7A7A")]),_:1},8,["onClick"])]),o("div",gl,[n(ae,{class:"ls-scrollbar"},{default:a(()=>[o("ul",yl,[(s(!0),c(P,null,q(e(S),t=>(s(),c("li",{class:"mb-4",key:t.id},[o("div",Cl,[n(Ee,{onClose:b=>e(Be)(t.id)},{default:a(()=>[n(ie,{uri:t.uri,"file-size":"100px",type:l.type},null,8,["uri","type"])]),_:2},1032,["onClose"])])]))),128))])]),_:1})])])):_("",!0),n(Ut,{modelValue:e(h),"onUpdate:modelValue":d[10]||(d[10]=t=>T(h)?h.value=t:null),url:e(i),type:l.type},null,8,["modelValue","url","type"])])),[[Ue,e(C).loading]])}}});const Rl=Ae(kl,[["__scopeId","data-v-9cc1892d"]]);export{ie as F,Rl as _,Ut as a}; diff --git a/public/admin/assets/index.afdf50a0.js b/public/admin/assets/index.afdf50a0.js new file mode 100644 index 000000000..8a8b8d7ba --- /dev/null +++ b/public/admin/assets/index.afdf50a0.js @@ -0,0 +1 @@ +import{B as Y,C as Z,M as ee,N as te,w as le,D as ae,I as oe,O as ue,P as ne,Q as se}from"./element-plus.4328d892.js";import{_ as ie}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{f as pe,b as de,d as re}from"./index.ed71ac09.js";import{u as me}from"./vue-router.9f65afb1.js";import{u as ce}from"./usePaging.2ad8e1e6.js";import{u as _e}from"./useDictOptions.8d37e54b.js";import{f as fe,a as be}from"./map.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.c34becfa.js";import{d as P,s as Fe,r as w,$ as L,af as ye,o as n,c as E,U as l,L as o,u as e,T as R,a7 as q,K as p,R as f,M as v,a as C,S as ve,k as Be,Q as we,n as I}from"./@vue.51d7f2d8.js";import"./lodash.08438971.js";import{_ as ke}from"./edit.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.c27438b7.js";import{_ as Ee}from"./edit_admin.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.1f2345fb.js";import{d as Ce}from"./dict.6c560e38.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./axios.105476b3.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.b940d6e3.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./dialog_index_personnel.vue_vue_type_script_setup_true_name_companyLists_lang.e9155591.js";import"./role.1c72c4c7.js";const De={class:"mt-4"},Ve={class:"flex mt-4 justify-end"},he=P({name:"taskTemplateLists"}),xe=P({...he,setup(ge){var g,A,T;const m=Fe(),D=w([]),c=w(!1),b=me(),u=L({id:"",company_id:"",title:"",admin_id:"",money:"",type:"",status:"",content:""}),V=w(10);(g=b.query)!=null&&g.id&&(u.id=b.query.id),(A=b.query)!=null&&A.company_id&&(u.company_id=b.query.company_id),((T=b.query)==null?void 0:T.company_type)==41&&(V.value=15);const N=L([{id:1,name:"\u663E\u793A"},{id:2,name:"\u9690\u85CF"}]),k=w([]),M=s=>{k.value=s.map(({id:a})=>a)},{dictData:h}=_e(""),{pager:F,getLists:y,resetParams:O,resetPage:Q}=ce({fetchFun:be,params:u}),j=async()=>{var s,a;c.value=!0,await I(),(s=m.value)==null||s.open("add"),(a=m.value)==null||a.setFormData({company_id:u.company_id})},K=async s=>{var a,d;c.value=!0,await I(),(a=m.value)==null||a.open("edit"),(d=m.value)==null||d.setFormData(s)},x=async s=>{await pe.confirm("\u786E\u5B9A\u8981\u5220\u9664\uFF1F"),await fe({id:s}),y()};return Ce({type_id:10}).then(s=>{D.value=s.lists}),y(),(s,a)=>{const d=Y,r=Z,$=ee,S=te,_=le,z=ae,U=oe,G=de,i=ue,H=ne,J=ie,B=ye("perms"),W=se;return n(),E("div",null,[l(U,{class:"!border-none mb-4",shadow:"never"},{default:o(()=>[l(z,{class:"mb-[-16px] formtabel",model:e(u),inline:""},{default:o(()=>[l(r,{"label-width":"100px",label:"\u4EFB\u52A1\u540D\u79F0",prop:"title"},{default:o(()=>[l(d,{class:"w-[280px]",modelValue:e(u).title,"onUpdate:modelValue":a[0]||(a[0]=t=>e(u).title=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u4EFB\u52A1\u540D\u79F0"},null,8,["modelValue"])]),_:1}),l(r,{"label-width":"100px",label:"\u521B\u5EFA\u4EBA",prop:"admin_id"},{default:o(()=>[l(d,{class:"w-[280px]",modelValue:e(u).admin_id,"onUpdate:modelValue":a[1]||(a[1]=t=>e(u).admin_id=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u521B\u5EFA\u4EBA"},null,8,["modelValue"])]),_:1}),l(r,{"label-width":"100px",label:"\u91D1\u989D",prop:"money"},{default:o(()=>[l(d,{class:"w-[280px]",modelValue:e(u).money,"onUpdate:modelValue":a[2]||(a[2]=t=>e(u).money=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u91D1\u989D"},null,8,["modelValue"])]),_:1}),l(r,{"label-width":"100px",label:"\u4EFB\u52A1\u7C7B\u578B",prop:"type"},{default:o(()=>[l(S,{modelValue:e(u).type,"onUpdate:modelValue":a[3]||(a[3]=t=>e(u).type=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u4EFB\u52A1\u7C7B\u578B"},{default:o(()=>[(n(!0),E(R,null,q(e(D),t=>(n(),p($,{key:t.label,value:t.id,label:t.name},null,8,["value","label"]))),128))]),_:1},8,["modelValue"])]),_:1}),l(r,{"label-width":"100px",label:"\u72B6\u6001",prop:"status"},{default:o(()=>[l(S,{modelValue:e(u).status,"onUpdate:modelValue":a[4]||(a[4]=t=>e(u).status=t),clearable:"",placeholder:"\u8BF7\u9009\u62E9\u72B6\u6001"},{default:o(()=>[(n(!0),E(R,null,q(e(N),t=>(n(),p($,{key:t.label,value:t.id,label:t.name},null,8,["value","label"]))),128))]),_:1},8,["modelValue"])]),_:1}),l(r,{"label-width":"100px",label:"\u4EFB\u52A1\u63CF\u8FF0",prop:"content"},{default:o(()=>[l(d,{class:"w-[280px]",modelValue:e(u).content,"onUpdate:modelValue":a[5]||(a[5]=t=>e(u).content=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u4EFB\u52A1\u63CF\u8FF0"},null,8,["modelValue"])]),_:1}),l(r,{"label-width":"100px",label:""},{default:o(()=>[l(_,{class:"el-btn",type:"primary",onClick:e(Q)},{default:o(()=>[f("\u67E5\u8BE2")]),_:1},8,["onClick"]),l(_,{onClick:e(O)},{default:o(()=>[f("\u91CD\u7F6E")]),_:1},8,["onClick"])]),_:1})]),_:1},8,["model"])]),_:1}),v((n(),p(U,{class:"!border-none",shadow:"never"},{default:o(()=>[v((n(),p(_,{type:"primary",onClick:j},{icon:o(()=>[l(G,{name:"el-icon-Plus"})]),default:o(()=>[f(" \u65B0\u589E ")]),_:1})),[[B,["task_template.task_template/add"]]]),v((n(),p(_,{disabled:!e(k).length,onClick:a[6]||(a[6]=t=>x(e(k)))},{default:o(()=>[f(" \u5220\u9664 ")]),_:1},8,["disabled"])),[[B,["task_template.task_template/delete"]]]),C("div",De,[l(H,{data:e(F).lists,onSelectionChange:M},{default:o(()=>[l(i,{type:"selection",width:"55"}),l(i,{label:"ID",width:"80",prop:"id","show-overflow-tooltip":""}),l(i,{label:"\u4EFB\u52A1\u540D\u79F0",prop:"title","show-overflow-tooltip":""}),l(i,{label:"\u521B\u5EFA\u4EBA",prop:"admin_name","show-overflow-tooltip":""}),l(i,{label:"\u91D1\u989D",prop:"money","show-overflow-tooltip":""}),l(i,{label:"\u4EFB\u52A1\u7C7B\u578B",prop:"type_name","show-overflow-tooltip":""}),l(i,{label:"\u72B6\u6001","show-overflow-tooltip":""},{default:o(({row:t})=>[C("span",null,ve(t.status==1?"\u663E\u793A":"\u9690\u85CF"),1)]),_:1}),l(i,{label:"\u4EFB\u52A1\u63CF\u8FF0",prop:"content","show-overflow-tooltip":""}),l(i,{label:"\u64CD\u4F5C",width:"120",fixed:"right"},{default:o(({row:t})=>[v((n(),p(_,{type:"primary",link:"",onClick:X=>K(t)},{default:o(()=>[f(" \u7F16\u8F91 ")]),_:2},1032,["onClick"])),[[B,["task_template.task_template/edit"]]]),v((n(),p(_,{type:"danger",link:"",onClick:X=>x(t.id)},{default:o(()=>[f(" \u5220\u9664 ")]),_:2},1032,["onClick"])),[[B,["task_template.task_template/delete"]]])]),_:1})]),_:1},8,["data"])]),C("div",Ve,[l(J,{modelValue:e(F),"onUpdate:modelValue":a[7]||(a[7]=t=>Be(F)?F.value=t:null),onChange:e(y)},null,8,["modelValue","onChange"])])]),_:1})),[[W,e(F).loading]]),e(c)&&e(V)!=15?(n(),p(ke,{key:0,ref_key:"editRef",ref:m,"dict-data":e(h),onSuccess:e(y),onClose:a[8]||(a[8]=t=>c.value=!1)},null,8,["dict-data","onSuccess"])):e(c)?(n(),p(Ee,{key:1,ref_key:"editRef",ref:m,"dict-data":e(h),onSuccess:e(y),onClose:a[9]||(a[9]=t=>c.value=!1)},null,8,["dict-data","onSuccess"])):we("",!0)])}}});const wt=re(xe,[["__scopeId","data-v-aefc32bd"]]);export{wt as default}; diff --git a/public/admin/assets/index.b011782e.js b/public/admin/assets/index.b011782e.js new file mode 100644 index 000000000..ec5d4cc11 --- /dev/null +++ b/public/admin/assets/index.b011782e.js @@ -0,0 +1 @@ +import{_ as b}from"./index.13ef78d6.js";import{G as v,H as V,C as x,B as w,D as R,I as k,w as y}from"./element-plus.4328d892.js";import{r as d}from"./index.aa9bb752.js";import{d as I,$ as N,af as U,o as _,c as A,U as o,L as t,u,a as r,R as i,M as G,K as j}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";function q(){return d.get({url:"/recharge.recharge/getConfig"})}function H(s){return d.post({url:"/recharge.recharge/setConfig",params:s})}const K=r("span",{class:"font-extrabold text-lg"},"\u5145\u503C\u8BBE\u7F6E",-1),L=r("div",{class:"form-tips"},"\u5173\u95ED\u6216\u5F00\u542F\u5145\u503C\u529F\u80FD\uFF0C\u5173\u95ED\u540E\u5C06\u4E0D\u663E\u793A\u5145\u503C\u5165\u53E3",-1),M=r("div",{class:"form-tips"}," \u6700\u4F4E\u5145\u503C\u91D1\u989D\u8981\u6C42\uFF0C\u4E0D\u586B\u6216\u586B0\u8868\u793A\u4E0D\u9650\u5236\u6700\u4F4E\u5145\u503C\u91D1\u989D ",-1),bt=I({__name:"index",setup(s){const e=N({status:1,min_amount:""}),l=async()=>{const m=await q();Object.assign(e,m)},f=async()=>{await H(e),l()};return l(),(m,a)=>{const p=v,E=V,c=x,g=w,C=R,D=k,F=y,h=b,B=U("perms");return _(),A("div",null,[o(D,{shadow:"never",class:"!border-none"},{header:t(()=>[K]),default:t(()=>[o(C,{model:u(e),"label-width":"120px"},{default:t(()=>[o(c,{label:"\u72B6\u6001"},{default:t(()=>[r("div",null,[o(E,{modelValue:u(e).status,"onUpdate:modelValue":a[0]||(a[0]=n=>u(e).status=n),class:"ml-4"},{default:t(()=>[o(p,{label:1},{default:t(()=>[i("\u5F00\u542F")]),_:1}),o(p,{label:0},{default:t(()=>[i("\u5173\u95ED")]),_:1})]),_:1},8,["modelValue"]),L])]),_:1}),o(c,{label:"\u6700\u4F4E\u5145\u503C\u91D1\u989D"},{default:t(()=>[r("div",null,[o(g,{modelValue:u(e).min_amount,"onUpdate:modelValue":a[1]||(a[1]=n=>u(e).min_amount=n),placeholder:"\u8BF7\u8F93\u5165\u6700\u4F4E\u5145\u503C\u91D1\u989D",clearable:""},null,8,["modelValue"]),M])]),_:1})]),_:1},8,["model"])]),_:1}),G((_(),j(h,null,{default:t(()=>[o(F,{type:"primary",onClick:f},{default:t(()=>[i("\u4FDD\u5B58")]),_:1})]),_:1})),[[B,["recharge.recharge/setConfig"]]])])}}});export{bt as default}; diff --git a/public/admin/assets/index.b2374399.js b/public/admin/assets/index.b2374399.js new file mode 100644 index 000000000..9fca5bf88 --- /dev/null +++ b/public/admin/assets/index.b2374399.js @@ -0,0 +1 @@ +import{S as L,x as R,y as x,a6 as P,I as V,O as M,w as U,P as O,Q as S}from"./element-plus.4328d892.js";import{a as z}from"./message.39fcd3de.js";import{u as q}from"./usePaging.2ad8e1e6.js";import{k as I}from"./index.aa9bb752.js";import{d as A,r as K,$ as Q,b8 as $,a4 as j,af as G,o as a,c as b,U as t,L as e,u as r,k as H,T as J,a7 as N,M as F,K as l,R as p}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const W=A({name:"notice"}),Vt=A({...W,setup(X){let c;(n=>{n[n.USER=1]="USER",n[n.PLATFORM=2]="PLATFORM"})(c||(c={}));const u=K(1),g=[{name:"\u901A\u77E5\u7528\u6237",type:1},{name:"\u901A\u77E5\u5E73\u53F0",type:2}],h=Q({recipient:u}),{pager:_,getLists:m}=q({fetchFun:z,params:h});return $(()=>{m()}),m(),(n,d)=>{const v=L,f=V,y=R,B=x,i=M,E=P,k=j("router-link"),w=U,C=O,T=G("perms"),D=S;return a(),b("div",null,[t(f,{class:"!border-none",shadow:"never"},{default:e(()=>[t(v,{type:"warning",title:"\u6E29\u99A8\u63D0\u793A\uFF1A\u5E73\u53F0\u914D\u7F6E\u5728\u5404\u4E2A\u573A\u666F\u4E0B\u7684\u901A\u77E5\u53D1\u9001\u65B9\u5F0F\u548C\u5185\u5BB9\u6A21\u677F",closable:!1,"show-icon":""})]),_:1}),t(f,{class:"!border-none mt-4",shadow:"never"},{default:e(()=>[t(B,{modelValue:r(u),"onUpdate:modelValue":d[0]||(d[0]=o=>H(u)?u.value=o:null),onTabChange:r(m)},{default:e(()=>[(a(),b(J,null,N(g,(o,s)=>t(y,{key:s,label:o.name,name:o.type,lazy:""},null,8,["label","name"])),64))]),_:1},8,["modelValue","onTabChange"]),F((a(),l(C,{size:"large",data:r(_).lists},{default:e(()=>[t(i,{label:"\u901A\u77E5\u573A\u666F",prop:"scene_name","min-width":"120"}),t(i,{label:"\u901A\u77E5\u7C7B\u578B",prop:"type_desc","min-width":"160"}),t(i,{label:"\u77ED\u4FE1\u901A\u77E5","min-width":"80"},{default:e(({row:o})=>{var s;return[((s=o.sms_notice)==null?void 0:s.status)==1?(a(),l(E,{key:0},{default:e(()=>[p("\u5F00\u542F")]),_:1})):(a(),l(E,{key:1,type:"danger"},{default:e(()=>[p("\u5173\u95ED")]),_:1}))]}),_:1}),t(i,{label:"\u64CD\u4F5C","min-width":"80",fixed:"right"},{default:e(({row:o})=>[F((a(),l(w,{type:"primary",link:""},{default:e(()=>[t(k,{to:{path:r(I)("notice.notice/set"),query:{id:o.id}}},{default:e(()=>[p(" \u8BBE\u7F6E ")]),_:2},1032,["to"])]),_:2},1024)),[[T,["notice.notice/set"]]])]),_:1})]),_:1},8,["data"])),[[D,r(_).loading]])]),_:1})])}}});export{Vt as default}; diff --git a/public/admin/assets/index.b3d80967.js b/public/admin/assets/index.b3d80967.js new file mode 100644 index 000000000..0d0e90994 --- /dev/null +++ b/public/admin/assets/index.b3d80967.js @@ -0,0 +1 @@ +import{B as O,C as Q,M as j,N as K,w as z,D as G,O as H,P as J,I as W,Q as X}from"./element-plus.4328d892.js";import{_ as Y}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{u as Z}from"./usePaging.2ad8e1e6.js";import{u as ee}from"./useDictOptions.8d37e54b.js";import{a as oe}from"./informationg.d3032a30.js";import{k as te}from"./index.ed71ac09.js";import{_ as ae}from"./editCate.vue_vue_type_script_setup_true_name_flowTypeEdit_lang.255a785b.js";import{d as k,s as le,r as C,$ as ne,a4 as ue,af as re,o as i,c as d,M as w,u as t,K as b,L as a,U as e,T as D,a7 as h,R as m,a as y,S as _,k as ie,Q as me}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.b940d6e3.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./examined.594ad8f6.js";const se={class:"mt-4"},pe={class:"flex mt-4 justify-end"},de=k({name:"flowTypeLists"}),to=k({...de,setup(_e){console.log(te);const E=le(),g=C(!1),n=ne({name:"",company_name:"",nickname:"",brigade:""}),V=C([]),B=v=>{V.value=v.map(({id:l})=>l)},{dictData:x}=ee(""),{pager:s,getLists:c,resetParams:S,resetPage:P}=Z({fetchFun:oe,params:n});return c(),(v,l)=>{const f=O,p=Q,R=j,U=K,F=z,L=G,u=H,N=ue("router-link"),T=J,$=Y,I=W,M=re("perms"),q=X;return i(),d("div",null,[w((i(),b(I,{class:"!border-none",shadow:"never"},{default:a(()=>[e(L,{class:"mb-[-16px]",inline:""},{default:a(()=>[e(p,{label:"\u516C\u53F8\u540D\u79F0",prop:"company_id"},{default:a(()=>[e(f,{class:"w-[280px]",modelValue:t(n).company_name,"onUpdate:modelValue":l[0]||(l[0]=o=>t(n).company_name=o),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u516C\u53F8"},null,8,["modelValue"])]),_:1}),e(p,{label:"\u961F\u957F\u59D3\u540D",prop:"company_id"},{default:a(()=>[e(f,{class:"w-[280px]",modelValue:t(n).nickname,"onUpdate:modelValue":l[1]||(l[1]=o=>t(n).nickname=o),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u961F\u957F\u59D3\u540D"},null,8,["modelValue"])]),_:1}),e(p,{label:"\u6863\u6848\u540D\u79F0",prop:"company_id"},{default:a(()=>[e(f,{class:"w-[280px]",modelValue:t(n).name,"onUpdate:modelValue":l[2]||(l[2]=o=>t(n).name=o),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u6863\u6848\u59D3\u540D"},null,8,["modelValue"])]),_:1}),e(p,{label:"\u5C0F\u961F",prop:"company_id"},{default:a(()=>[e(U,{modelValue:t(n).brigade,"onUpdate:modelValue":l[3]||(l[3]=o=>t(n).brigade=o),placeholder:"\u8BF7\u9009\u62E9\u5C0F\u961F",clearable:"",style:{width:"100%"}},{default:a(()=>[(i(),d(D,null,h([{brigade_name:"1\u961F",id:"1"},{brigade_name:"2\u961F",id:"2"}],(o,r)=>e(R,{key:r,label:o.brigade_name,value:o.id},null,8,["label","value"])),64))]),_:1},8,["modelValue"])]),_:1}),e(p,null,{default:a(()=>[e(F,{type:"primary",onClick:t(P)},{default:a(()=>[m("\u67E5\u8BE2")]),_:1},8,["onClick"]),e(F,{onClick:t(S)},{default:a(()=>[m("\u91CD\u7F6E")]),_:1},8,["onClick"])]),_:1})]),_:1}),y("div",se,[e(T,{data:t(s).lists,onSelectionChange:B},{default:a(()=>[e(u,{label:"\u7F16\u53F7",prop:"id","show-overflow-tooltip":""}),e(u,{label:"\u9547\u516C\u53F8","show-overflow-tooltip":""},{default:a(({row:o})=>{var r;return[m(_((r=o.extend)==null?void 0:r.company_name),1)]}),_:1}),e(u,{width:"260px",label:"\u6240\u5C5E\u5730\u533A","show-overflow-tooltip":""},{default:a(({row:o})=>[m(_(o.area_name+o.street_name+o.village_name)+" ",1),(i(!0),d(D,null,h(o.brigade_name,(r,A)=>(i(),d("text",{key:A},_(r.brigade_name),1))),128))]),_:1}),e(u,{label:"\u961F\u957F\u59D3\u540D",prop:"phone","show-overflow-tooltip":""},{default:a(({row:o})=>{var r;return[m(_((r=o.extend)==null?void 0:r.nickname),1)]}),_:1}),e(u,{label:"\u6863\u6848\u540D\u79F0",prop:"name","show-overflow-tooltip":""}),e(u,{label:"\u8054\u7CFB\u7535\u8BDD",prop:"phone","show-overflow-tooltip":""}),e(u,{label:"\u66F4\u65B0\u65F6\u95F4",prop:"update_time","show-overflow-tooltip":""}),e(u,{label:"\u5EFA\u6863\u65F6\u95F4",prop:"create_time","show-overflow-tooltip":""}),e(u,{label:"\u64CD\u4F5C",align:"center",width:"auto",fixed:"right"},{default:a(({row:o})=>[w((i(),b(F,{type:"primary",link:""},{default:a(()=>[e(N,{to:{path:"user_informationg/details",query:{id:o.id}}},{default:a(()=>[m(" \u8BE6\u60C5 ")]),_:2},1032,["to"])]),_:2},1024)),[[M,["user_informationg.user_informationg/details"]]])]),_:1})]),_:1},8,["data"])]),y("div",pe,[e($,{modelValue:t(s),"onUpdate:modelValue":l[4]||(l[4]=o=>ie(s)?s.value=o:null),onChange:t(c)},null,8,["modelValue","onChange"])])]),_:1})),[[q,t(s).loading]]),t(g)?(i(),b(ae,{key:0,ref_key:"editRef",ref:E,"dict-data":t(x),onSuccess:t(c),onClose:l[5]||(l[5]=o=>g.value=!1)},null,8,["dict-data","onSuccess"])):me("",!0)])}}});export{to as default}; diff --git a/public/admin/assets/index.b55861aa.js b/public/admin/assets/index.b55861aa.js new file mode 100644 index 000000000..850bd2841 --- /dev/null +++ b/public/admin/assets/index.b55861aa.js @@ -0,0 +1 @@ +import{y,_ as g}from"./index.37f7aea6.js";import{w as B,I as b}from"./element-plus.4328d892.js";import{C as E}from"./vue-echarts.91588d37.js";import{d as f,$ as C,j as A,a4 as k,o as l,c as u,a as t,U as a,L as i,S as o,u as e,R as h,T as v,a7 as x,O as D}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./lodash.08438971.js";import"./@amap.8a62addd.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./@element-plus.a074d1f6.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./resize-detector.4e96b72b.js";const O={class:"workbench"},z={class:"lg:flex"},N=t("span",{class:"card-title"},"\u7248\u672C\u4FE1\u606F",-1),S={class:"flex leading-9"},V=t("div",{class:"w-20"},"\u5F53\u524D\u7248\u672C",-1),L={class:"flex leading-9"},T=t("div",{class:"w-20"},"\u57FA\u4E8E\u6846\u67B6",-1),j={class:"flex leading-9"},G=t("div",{class:"w-20"},"\u83B7\u53D6\u6E20\u9053",-1),I=["href"],M=["href"],R=t("span",{class:"card-title"},"\u4ECA\u65E5\u6570\u636E",-1),U={class:"text-tx-secondary text-xs ml-4"},W={class:"flex flex-wrap"},$={class:"w-1/2 md:w-1/4"},q=t("div",{class:"leading-10"},"\u8BBF\u95EE\u91CF(\u4EBA)",-1),H={class:"text-6xl"},J={class:"text-tx-secondary text-xs"},K={class:"w-1/2 md:w-1/4"},P=t("div",{class:"leading-10"},"\u9500\u552E\u989D(\u5143)",-1),Q={class:"text-6xl"},X={class:"text-tx-secondary text-xs"},Y={class:"w-1/2 md:w-1/4"},Z=t("div",{class:"leading-10"},"\u8BA2\u5355\u91CF(\u7B14)",-1),tt={class:"text-6xl"},st={class:"text-tx-secondary text-xs"},et={class:"w-1/2 md:w-1/4"},ot=t("div",{class:"leading-10"},"\u65B0\u589E\u7528\u6237",-1),it={class:"text-6xl"},at={class:"text-tx-secondary text-xs"},nt={class:"function mb-4"},rt=t("span",null,"\u5E38\u7528\u529F\u80FD",-1),dt={class:"flex flex-wrap"},lt={class:"mt-2"},ut={class:"md:flex"},ct=t("span",null,"\u8BBF\u95EE\u91CF\u8D8B\u52BF\u56FE",-1),_t=t("span",null,"\u670D\u52A1\u652F\u6301",-1),pt={class:"ml-2"},mt={class:"text-tx-regular text-xs mt-4"},ht=f({name:"workbench"}),Zt=f({...ht,setup(vt){const s=C({version:{version:"",website:"",based:"",channel:{gitee:"",website:""}},support:[],today:{},menu:[],visitor:[],article:[],visitorOption:{xAxis:{type:"category",data:[0]},yAxis:{type:"value"},legend:{data:["\u8BBF\u95EE\u91CF"]},itemStyle:{color:"red"},tooltip:{trigger:"axis"},series:[{name:"\u8BBF\u95EE\u91CF",data:[0],type:"line",smooth:!0}]}}),F=()=>{y().then(n=>{s.version=n.version,s.today=n.today,s.menu=n.menu,s.visitor=n.visitor,s.support=n.support,s.visitorOption.xAxis.data=[],s.visitorOption.series[0].data=[],n.visitor.date.reverse().forEach(c=>{s.visitorOption.xAxis.data.push(c)}),n.visitor.list[0].data.forEach(c=>{s.visitorOption.series[0].data.push(c)})}).catch(n=>{console.log("err",n)})};return A(()=>{F()}),(n,c)=>{const _=B,d=b,p=g,w=k("router-link");return l(),u("div",O,[t("div",z,[a(d,{class:"!border-none mb-4 lg:mr-4 lg:w-[350px]",shadow:"never"},{header:i(()=>[N]),default:i(()=>[t("div",null,[t("div",S,[V,t("span",null,o(e(s).version.version),1)]),t("div",L,[T,t("span",null,o(e(s).version.based),1)]),t("div",j,[G,t("div",null,[t("a",{href:e(s).version.channel.website,target:"_blank"},[a(_,{type:"success",size:"small"},{default:i(()=>[h("\u5B98\u7F51")]),_:1})],8,I),t("a",{class:"ml-3",href:e(s).version.channel.gitee,target:"_blank"},[a(_,{type:"danger",size:"small"},{default:i(()=>[h("Gitee")]),_:1})],8,M)])])])]),_:1}),a(d,{class:"!border-none mb-4 flex-1",shadow:"never"},{header:i(()=>[t("div",null,[R,t("span",U," \u66F4\u65B0\u65F6\u95F4\uFF1A"+o(e(s).today.time),1)])]),default:i(()=>[t("div",W,[t("div",$,[q,t("div",H,o(e(s).today.today_visitor),1),t("div",J," \u603B\u8BBF\u95EE\u91CF\uFF1A"+o(e(s).today.total_visitor),1)]),t("div",K,[P,t("div",Q,o(e(s).today.today_sales),1),t("div",X," \u603B\u9500\u552E\u989D\uFF1A"+o(e(s).today.total_sales),1)]),t("div",Y,[Z,t("div",tt,o(e(s).today.order_num),1),t("div",st," \u603B\u8BA2\u5355\u91CF\uFF1A"+o(e(s).today.order_sum),1)]),t("div",et,[ot,t("div",it,o(e(s).today.today_new_user),1),t("div",at," \u603B\u8BBF\u7528\u6237\uFF1A"+o(e(s).today.total_new_user),1)])])]),_:1})]),t("div",nt,[a(d,{class:"flex-1 !border-none",shadow:"never"},{header:i(()=>[rt]),default:i(()=>[t("div",dt,[(l(!0),u(v,null,x(e(s).menu,r=>(l(),u("div",{class:"md:w-[12.5%] w-1/4 flex flex-col items-center",key:r},[a(w,{to:r.url,class:"mb-3 flex flex-col items-center"},{default:i(()=>[a(p,{width:"40px",height:"40px",src:r==null?void 0:r.image},null,8,["src"]),t("div",lt,o(r.name),1)]),_:2},1032,["to"])]))),128))])]),_:1})]),t("div",ut,[a(d,{class:"flex-1 !border-none md:mr-4 mb-4",shadow:"never"},{header:i(()=>[ct]),default:i(()=>[t("div",null,[a(e(E),{style:{height:"350px"},option:e(s).visitorOption,autoresize:!0},null,8,["option"])])]),_:1}),a(d,{class:"!border-none mb-4",shadow:"never"},{header:i(()=>[_t]),default:i(()=>[t("div",null,[(l(!0),u(v,null,x(e(s).support,(r,m)=>(l(),u("div",{key:m},[t("div",{class:D(["flex items-center pb-10 pt-10",{"border-b border-br":m==0}])},[a(p,{width:120,height:120,class:"flex-none",src:r.image},null,8,["src"]),t("div",pt,[t("div",null,o(r.title),1),t("div",mt,o(r.desc),1)])],2)]))),128))])]),_:1})])])}}});export{Zt as default}; diff --git a/public/admin/assets/index.b940d6e3.js b/public/admin/assets/index.b940d6e3.js new file mode 100644 index 000000000..8bf153a43 --- /dev/null +++ b/public/admin/assets/index.b940d6e3.js @@ -0,0 +1 @@ +import{w as c,L as f}from"./element-plus.4328d892.js";import{_ as k}from"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import{d as v}from"./index.ed71ac09.js";import{o as a,c as g,a as d,H as i,U as B,a9 as C,L as n,R as s,S as l,K as m,Q as u}from"./@vue.51d7f2d8.js";const y={class:"dialog"},$={class:"dialog-footer"};function V(e,o,b,w,E,T){const r=c,p=f;return a(),g("div",y,[d("div",{class:"dialog__trigger",onClick:o[0]||(o[0]=(...t)=>e.open&&e.open(...t))},[i(e.$slots,"trigger",{},void 0,!0)]),B(p,{modelValue:e.visible,"onUpdate:modelValue":o[3]||(o[3]=t=>e.visible=t),"custom-class":e.customClass,center:e.center,"append-to-body":!0,width:e.width,"close-on-click-modal":e.clickModalClose,onClosed:e.close},C({default:n(()=>[i(e.$slots,"default",{},()=>[s(l(e.content),1)],!0)]),_:2},[e.title?{name:"header",fn:n(()=>[s(l(e.title),1)]),key:"0"}:void 0,e.button?{name:"footer",fn:n(()=>[d("div",$,[e.cancelButtonText?(a(),m(r,{key:0,onClick:o[1]||(o[1]=t=>e.handleEvent("cancel"))},{default:n(()=>[s(l(e.cancelButtonText),1)]),_:1})):u("",!0),e.confirmButtonText?(a(),m(r,{key:1,type:"primary",onClick:o[2]||(o[2]=t=>e.handleEvent("confirm"))},{default:n(()=>[s(l(e.confirmButtonText),1)]),_:1})):u("",!0)])]),key:"1"}:void 0]),1032,["modelValue","custom-class","center","width","close-on-click-modal","onClosed"])])}const L=v(k,[["render",V],["__scopeId","data-v-95d1884e"]]);export{L as P}; diff --git a/public/admin/assets/index.bd6d6417.js b/public/admin/assets/index.bd6d6417.js new file mode 100644 index 000000000..15ea8d3fb --- /dev/null +++ b/public/admin/assets/index.bd6d6417.js @@ -0,0 +1 @@ +import{B as W,C as X,w as Y,D as Z,I as ee,O as te,o as ue,P as oe,L as ae,Q as ne}from"./element-plus.4328d892.js";import{_ as se}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{_ as le}from"./index.vue_vue_type_script_setup_true_lang.5c604000.js";import{u as ie}from"./vue-router.9f65afb1.js";import{d as L,$ as re,r as D,b8 as ce,a4 as pe,af as me,o as a,c as r,U as t,L as u,u as o,a8 as de,R as s,M as f,K as c,S as _e,T as fe,Q as F,k as z,a as g,bf as Ee,be as ye}from"./@vue.51d7f2d8.js";import{u as Fe}from"./usePaging.2ad8e1e6.js";import{k as b,f as S,d as he}from"./index.ed71ac09.js";import{c as q,d as Ce,s as ke}from"./consumer.5e9fbfa1.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.b940d6e3.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const Be=h=>(Ee("data-v-fb9ba9c3"),h=h(),ye(),h),ve={key:0,style:{color:"#67c23a"}},De={key:1,style:{color:"#fe0000"}},be={key:0,style:{color:"#67c23a"}},ge={key:1,style:{color:"#fe0000"}},Ae=Be(()=>g("h1",null,"\u91CD\u8981\u63D0\u9192",-1)),xe={key:0,class:"content"},Ve={key:1,class:"content"},we={class:"btn_menu"},Ie={class:"flex justify-end mt-4"},Pe=L({name:"consumerLists"}),ze=L({...Pe,setup(h){const A=ie(),p=re({keyword:"",channel:"",create_time_start:"",create_time_end:"",company_id:""});A.query.company_id&&(p.company_id=A.query.company_id);const E=D(0),m=D(!1),C=D(!1),k=()=>{m.value=!1,C.value=!1},R=()=>{console.log(E.value),Ce({id:E.value}).then(()=>{S.msgSuccess("\u53D1\u9001\u6210\u529F")}),k()},U=()=>{ke({id:E.value}).then(K=>{S.msgSuccess("\u53D1\u9001\u6210\u529F")}),k()},{pager:d,getLists:B,resetPage:x,resetParams:$}=Fe({fetchFun:q,params:p});return ce(()=>{B()}),B(),(K,_)=>{const N=W,V=X,l=Y,T=le,M=Z,w=ee,n=te,Q=ue,v=pe("router-link"),j=oe,O=ae,G=se,y=me("perms"),H=ne;return a(),r("div",null,[t(w,{class:"!border-none",shadow:"never"},{default:u(()=>[t(M,{ref:"formRef",class:"mb-[-16px]",model:o(p),inline:!0},{default:u(()=>[t(V,{label:"\u7528\u6237\u4FE1\u606F"},{default:u(()=>[t(N,{class:"w-[280px]",modelValue:o(p).keyword,"onUpdate:modelValue":_[0]||(_[0]=e=>o(p).keyword=e),placeholder:"\u7528\u6237\u7F16\u53F7/\u6635\u79F0/\u624B\u673A\u53F7\u7801",clearable:"",onKeyup:de(o(x),["enter"])},null,8,["modelValue","onKeyup"])]),_:1}),t(V,null,{default:u(()=>[t(l,{type:"primary",onClick:o(x)},{default:u(()=>[s("\u67E5\u8BE2")]),_:1},8,["onClick"]),t(l,{onClick:o($)},{default:u(()=>[s("\u91CD\u7F6E")]),_:1},8,["onClick"]),t(T,{class:"ml-2.5","fetch-fun":o(q),params:o(p),"page-size":o(d).size},null,8,["fetch-fun","params","page-size"])]),_:1})]),_:1},8,["model"])]),_:1}),t(w,{class:"!border-none mt-4",shadow:"never"},{default:u(()=>[f((a(),c(j,{size:"large",data:o(d).lists},{default:u(()=>[t(n,{label:"ID",prop:"id","min-width":"100"}),t(n,{label:"\u7528\u6237\u7F16\u53F7",prop:"sn","min-width":"120"}),t(n,{label:"\u5934\u50CF","min-width":"100"},{default:u(({row:e})=>[t(Q,{src:e.avatar,size:50},null,8,["src"])]),_:1}),t(n,{label:"\u8D26\u53F7",prop:"account","min-width":"120"}),t(n,{label:"\u59D3\u540D",prop:"nickname","min-width":"100"}),t(n,{label:"\u8054\u7CFB\u65B9\u5F0F",prop:"mobile","min-width":"120"}),t(n,{label:"\u96B6\u5C5E\u516C\u53F8",prop:"company_name","min-width":"180",align:"center"},{default:u(({row:e})=>{var i;return[s(_e(((i=e.company)==null?void 0:i.company_name)||"/"),1)]}),_:1}),t(n,{label:"\u6240\u5728\u4E61\u9547",prop:"street_name","min-width":"120"}),t(n,{label:"\u6388\u6743\u8EAB\u4EFD",prop:"role_name","min-width":"120"},{default:u(({row:e})=>{var i;return[e.admin_id==((i=e.company)==null?void 0:i.admin_id)?(a(),r("span",ve,"\u516C\u53F8\u540E\u53F0\u7BA1\u7406\u4EBA\u5458")):(a(),r("span",De,"\u65E0"))]}),_:1}),t(n,{label:"\u662F\u5426\u7B7E\u7EA6",prop:"is_contract",align:"center","min-width":"120"},{default:u(({row:e})=>[e.is_contract==1?(a(),r("span",be,"\u5DF2\u7B7E\u7EA6")):(a(),r("span",ge,"\u672A\u7B7E\u7EA6"))]),_:1}),t(n,{label:"\u64CD\u4F5C","min-width":"300",align:"center",fixed:"right"},{default:u(({row:e})=>{var i,I,P;return[f((a(),c(l,{type:"primary",link:""},{default:u(()=>[t(v,{to:{path:o(b)("user.user/detail"),query:{id:e.id}}},{default:u(()=>[s(" \u8BE6\u60C5 ")]),_:2},1032,["to"])]),_:2},1024)),[[y,["user.user/detail"]]]),e.is_contract==0?(a(),r(fe,{key:0},[e.contract?F("",!0):f((a(),c(l,{key:0,type:"primary",link:""},{default:u(()=>[t(v,{to:{path:o(b)("user.user/detail"),query:{id:e.id,mode:"initiate"}}},{default:u(()=>[s(" \u751F\u6210\u5408\u540C ")]),_:2},1032,["to"])]),_:2},1024)),[[y,["user.user/launch"]]]),((i=e.contract)==null?void 0:i.check_status)==1?f((a(),c(l,{key:1,type:"primary",link:""},{default:u(()=>[t(v,{to:{path:o(b)("user.user/detail"),query:{id:e.id,mode:"uplode",mdoeid:e.contract.id}}},{default:u(()=>[s(" \u4E0A\u4F20\u5408\u540C ")]),_:2},1032,["to"])]),_:2},1024)),[[y,["user.user/uplode"]]]):F("",!0),((I=e.contract)==null?void 0:I.check_status)==2?f((a(),c(l,{key:2,type:"primary",link:"",onClick:J=>(m.value=!0,C.value=!0,E.value=e.id)},{default:u(()=>[s("\u53D1\u9001\u5408\u540C")]),_:2},1032,["onClick"])),[[y,["user.user/launch"]]]):F("",!0),e.is_contract==0&&((P=e.contract)==null?void 0:P.check_status)==3?f((a(),c(l,{key:3,type:"primary",link:"",onClick:J=>(m.value=!0,E.value=e.id)},{default:u(()=>[s("\u91CD\u65B0\u53D1\u9001\u77ED\u4FE1")]),_:2},1032,["onClick"])),[[y,["user.user/launch"]]]):F("",!0)],64)):F("",!0)]}),_:1})]),_:1},8,["data"])),[[H,o(d).loading]]),t(O,{modelValue:o(m),"onUpdate:modelValue":_[1]||(_[1]=e=>z(m)?m.value=e:null),onClose:k},{default:u(()=>[Ae,o(C)?(a(),r("div",xe," \u8BF7\u786E\u8BA4\u4FE1\u606F\u662F\u5426\u6709\u8BEF,\u53D1\u9001\u5408\u540C,\u8BF7\u786E\u8BA4\u4FE1\u606F\u662F\u5426\u6709\u8BEF,\u53D1\u9001\u7535\u5B50\u5408\u540C\u540E\u77ED\u65F6\u95F4\u5185\u5C06\u4E0D\u53EF\u518D\u6B21\u53D1\u9001. ")):(a(),r("div",Ve," \u786E\u8BA4\u7B7E\u7EA6\u77ED\u4FE1\u5C06\u572860\u79D2\u540E\u53D1\u9001,\u8BF7\u6CE8\u610F\u67E5\u6536,\u5E76\u70B9\u51FB\u77ED\u4FE1\u94FE\u63A5\u8FDB\u884C\u7EBF\u4E0A\u5408\u540C\u7B7E\u7EA6 ")),g("p",we,[o(C)?(a(),c(l,{key:0,type:"primary",size:"large",onClick:R},{default:u(()=>[s("\u786E\u8BA4\u521B\u5EFA")]),_:1})):(a(),c(l,{key:1,type:"primary",size:"large",onClick:U},{default:u(()=>[s("\u786E\u8BA4")]),_:1})),t(l,{type:"info",size:"large",onClick:k},{default:u(()=>[s("\u8FD4\u56DE")]),_:1})])]),_:1},8,["modelValue"]),g("div",Ie,[t(G,{modelValue:o(d),"onUpdate:modelValue":_[2]||(_[2]=e=>z(d)?d.value=e:null),onChange:o(B)},null,8,["modelValue","onChange"])])]),_:1})])}}});const Ct=he(ze,[["__scopeId","data-v-fb9ba9c3"]]);export{Ct as default}; diff --git a/public/admin/assets/index.be5645df.js b/public/admin/assets/index.be5645df.js new file mode 100644 index 000000000..6edfb3f29 --- /dev/null +++ b/public/admin/assets/index.be5645df.js @@ -0,0 +1 @@ +import{d as t,o as s,c as n,a as _,H as a,_ as d}from"./@vue.51d7f2d8.js";import{d as r}from"./index.ed71ac09.js";const c={class:"footer-btns"},i=t({__name:"index",props:{fixed:{type:Boolean,default:!0}},setup(e){return(o,l)=>(s(),n("div",c,[_("div",{class:"footer-btns__content",style:d(e.fixed?"position: fixed":"")},[a(o.$slots,"default",{},void 0,!0)],4)]))}});const u=r(i,[["__scopeId","data-v-9f638557"]]);export{u as _}; diff --git a/public/admin/assets/index.c38e1dd6.js b/public/admin/assets/index.c38e1dd6.js new file mode 100644 index 000000000..e4c5de8c7 --- /dev/null +++ b/public/admin/assets/index.c38e1dd6.js @@ -0,0 +1 @@ +import{k as je,b as Me,U as Ne,L as We,p as Ge,q as Ye,r as qe,V as Ke,E as Qe,O as Ze,W as Oe,P as Je,Q as Xe,w as He,N as et,B as tt,a as lt,F as nt,M as at}from"./element-plus.4328d892.js";import{_ as ot}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{_ as st}from"./index.f2c7f81b.js";import{r as $,f as Fe,d as Ae,b as xe,i as it}from"./index.ed71ac09.js";import{P as ut}from"./index.b940d6e3.js";import{U as dt}from"./index.9c616a0c.js";import{_ as ct}from"./index.vue_vue_type_script_setup_true_lang.dc835bba.js";import{s as Z,r as D,$ as Se,d as O,o as s,c,a as o,K as V,Q as _,U as n,H as rt,_ as Ve,I as ft,u as e,e as De,w as K,M as Q,V as ue,L as a,k as T,n as we,a3 as mt,C as pt,j as _t,R as p,Z as Y,T as P,a7 as q,a8 as vt,O as be,S as se,bf as ht,be as gt}from"./@vue.51d7f2d8.js";import{u as yt}from"./usePaging.2ad8e1e6.js";import{g as Ct}from"./vue3-video-play.b911321b.js";const kt="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAgCAYAAABgrToAAAACJElEQVRYR+2YMWsUURSFz3m7s+nskjUIQSutbMRi7WzUVjSadMHCbVLkByjmLygaCVYWRqMEUhkFS9Gg0cJfYCPZjYUQFbPs+I7c2R1Q2ZjZfRNYYS4MAzPv3vnmvDvL3kMA2Hl5/CjLI9ckf4ZwY3Zt15C+gfwIao3So0rt3XsJtPUk9M/cAW6y9ap2DIyfAjgCwANwGeoYiEFtk/5e5CvXeer1D2neATcGgiTZM4+t9RNLEKcBtAFEGeBsiRWzl7EoSXo+8rV9gWc/fDc1B1VSEoEnDpj0KTB33tS26DGaEezvZQZpRxmODyoT5+vwBwS3zeTcT4yjTdZNJEiPSykk1bjZX6HeD/WQJ1zUApgq2w+etcsniBuAVlH9vELOx6Yo1VywgkmTB4X1kEGGhyAtg/Ecq3NNqnknDwVTrNBaactEts88OHs5b8Bw/Tof4M+kr4WrwwhoL9n5uRPWhxWwsxPEl+EGNMacP5I8evCPGgVgqKSFgoWCoQqE5hc9WCgYqkBoftGDeSiYz1/+UJLe+foftvh2A2B1fwQIrapkaFoDcK4PVyH0qVnyU4fjGdW4NQ2WlgDE5hLkMoJmQdh9zW9Dk59K5lhtLjyE01TX/jDILP5MGEbvbFPOJroIXvc5PjvTBbx7GM4vAjjd9WdSc2g/IPaqaTv5Aq58haP1TSb2Au20GGErvgTxIqiTAA7tVSnn+2Z9vAXdCsa4bD6Nsf0C/gYA5PMzcW0AAAAASUVORK5CYII=";function Et(l){return $.post({url:"/file/addCate",params:l})}function wt(l){return $.post({url:"/file/editCate",params:l})}function bt(l){return $.post({url:"/file/delCate",params:l})}function Ft(l){return $.get({url:"/file/listCate",params:l})}function At(l){return $.get({url:"/file/lists",params:l})}function xt(l){return $.post({url:"/file/delete",params:l})}function St(l){return $.post({url:"/file/move",params:l})}function Vt(l){return $.post({url:"/file/rename",params:l})}function Dt(l){const F=Z(),k=D([]),r=D(""),v=async()=>{const m=await Ft({page_type:0,type:l}),y=[{name:"\u5168\u90E8",id:""},{name:"\u672A\u5206\u7EC4",id:0}];k.value=m.lists,k.value.unshift(...y),setTimeout(()=>{var f;(f=F.value)==null||f.setCurrentKey(r.value)},0)};return{treeRef:F,cateId:r,cateLists:k,handleAddCate:async m=>{await Et({type:l,name:m,pid:0}),v()},handleEditCate:async(m,y)=>{await wt({id:y,name:m}),v()},handleDeleteCate:async m=>{await Fe.confirm("\u786E\u5B9A\u8981\u5220\u9664\uFF1F"),await bt({id:m}),r.value="",v()},getCateLists:v,handleCatSelect:m=>{r.value=m.id}}}function Bt(l,F,k,r){const v=Z(),x=D("normal"),E=D(0),i=D([]),h=D(!1),m=D(!1),y=Se({name:"",type:F,cid:l}),{pager:f,getLists:L,resetPage:X}=yt({fetchFun:At,params:y,firstLoading:!0,size:r}),U=()=>{L()},H=()=>{X()},ee=u=>!!i.value.find(g=>g.id==u),te=async u=>{await Fe.confirm("\u786E\u8BA4\u5220\u9664\u540E\uFF0C\u672C\u5730\u6216\u4E91\u5B58\u50A8\u6587\u4EF6\u4E5F\u5C06\u540C\u6B65\u5220\u9664\uFF0C\u5982\u6587\u4EF6\u5DF2\u88AB\u4F7F\u7528\uFF0C\u8BF7\u8C28\u614E\u64CD\u4F5C\uFF01");const g=u||i.value.map(R=>R.id);await xt({ids:g}),U(),C()},z=async()=>{const u=i.value.map(g=>g.id);await St({ids:u,cid:E.value}),E.value=0,U(),C()},I=u=>{const g=i.value.findIndex(R=>R.id==u.id);if(g!=-1){i.value.splice(g,1);return}if(i.value.length==k.value){if(k.value==1){i.value=[],i.value.push(u);return}je.warning("\u5DF2\u8FBE\u5230\u9009\u62E9\u4E0A\u9650");return}i.value.push(u)},C=()=>{i.value=[]};return{listShowType:x,tableRef:v,moveId:E,pager:f,fileParams:y,select:i,isCheckAll:h,isIndeterminate:m,getFileList:U,refresh:H,batchFileDelete:te,batchFileMove:z,selectFile:I,isSelect:ee,clearSelect:C,cancelSelete:u=>{i.value=i.value.filter(g=>g.id!=u)},selectAll:u=>{var g;if(m.value=!1,(g=v.value)==null||g.toggleAllSelection(),u){i.value=[...f.lists];return}C()},handleFileRename:async(u,g)=>{await Vt({id:g,name:u}),U()}}}const Rt=O({props:{uri:{type:String},fileSize:{type:String,default:"100px"},type:{type:String,default:"image"}},emits:["close"]});const zt=["src"],It={key:2,class:"absolute left-1/2 top-1/2 translate-x-[-50%] translate-y-[-50%] rounded-full w-5 h-5 flex justify-center items-center bg-[rgba(0,0,0,0.3)]"};function $t(l,F,k,r,v,x){const E=Me,i=xe;return s(),c("div",null,[o("div",{class:"file-item relative",style:Ve({height:l.fileSize,width:l.fileSize})},[l.type=="image"?(s(),V(E,{key:0,class:"image",fit:"contain",src:l.uri},null,8,["src"])):l.type=="video"?(s(),c("video",{key:1,class:"video",src:l.uri},null,8,zt)):_("",!0),l.type=="video"?(s(),c("div",It,[n(i,{name:"el-icon-CaretRight",size:18,color:"#fff"})])):_("",!0),rt(l.$slots,"default",{},void 0,!0)],4)])}const ie=Ae(Rt,[["render",$t],["__scopeId","data-v-5ccc0f84"]]),Pt=O({__name:"index",props:{src:{type:String,required:!0},width:String,height:String,poster:String},setup(l,{expose:F}){const k=l,r=Z(),v=Se({color:"var(--el-color-primary)",muted:!1,webFullScreen:!1,speedRate:["0.75","1.0","1.25","1.5","2.0"],autoPlay:!0,loop:!1,mirror:!1,ligthOff:!1,volume:.3,control:!0,title:"",poster:"",...k}),x=()=>{r.value.play()},E=()=>{r.value.pause()},i=f=>{console.log(f,"\u64AD\u653E")},h=f=>{console.log(f,"\u6682\u505C")},m=f=>{console.log(f,"\u65F6\u95F4\u66F4\u65B0")},y=f=>{console.log(f,"\u53EF\u4EE5\u64AD\u653E")};return F({play:x,pause:E}),(f,L)=>(s(),c("div",null,[n(e(Ct),ft({ref_key:"playerRef",ref:r},v,{src:l.src,onPlay:i,onPause:h,onTimeupdate:m,onCanplay:y}),null,16,["src"])]))}}),Tt={key:0},Lt={key:1},Ut=O({__name:"preview",props:{modelValue:{type:Boolean,default:!1},url:{type:String,default:""},type:{type:String,default:"image"}},emits:["update:modelValue"],setup(l,{emit:F}){const k=l,r=Z(),v=De({get(){return k.modelValue},set(i){F("update:modelValue",i)}}),x=()=>{F("update:modelValue",!1)},E=D([]);return K(()=>k.modelValue,i=>{i?we(()=>{var h;E.value=[k.url],(h=r.value)==null||h.play()}):we(()=>{var h;E.value=[],(h=r.value)==null||h.pause()})}),(i,h)=>{const m=Ne,y=Pt,f=We;return Q((s(),c("div",null,[l.type=="image"?(s(),c("div",Tt,[e(E).length?(s(),V(m,{key:0,"url-list":e(E),"hide-on-click-modal":"",onClose:x},null,8,["url-list"])):_("",!0)])):_("",!0),l.type=="video"?(s(),c("div",Lt,[n(f,{modelValue:e(v),"onUpdate:modelValue":h[0]||(h[0]=L=>T(v)?v.value=L:null),width:"740px",title:"\u89C6\u9891\u9884\u89C8","before-close":x},{default:a(()=>[n(y,{ref_key:"playerRef",ref:r,src:l.url,width:"100%",height:"450px"},null,8,["src"])]),_:1},8,["modelValue"])])):_("",!0)],512)),[[ue,l.modelValue]])}}}),J=l=>(ht("data-v-9cc1892d"),l=l(),gt(),l),jt={class:"material"},Mt={class:"material__left"},Nt={class:"flex-1 min-h-0"},Wt={class:"material-left__content pt-4 p-b-4"},Gt={class:"flex flex-1 items-center min-w-0 pr-4"},Yt=J(()=>o("img",{class:"w-[20px] h-[16px] mr-3",src:kt},null,-1)),qt={class:"flex-1 truncate mr-2"},Kt=J(()=>o("span",{class:"muted m-r-10"},"\xB7\xB7\xB7",-1)),Qt=["onClick"],Zt={class:"flex justify-center p-2 border-t border-br"},Ot={class:"material__center flex flex-col"},Jt={class:"operate-btn flex"},Xt={class:"flex-1 flex"},Ht=J(()=>o("span",{class:"mr-5"},"\u79FB\u52A8\u6587\u4EF6\u81F3",-1)),el={class:"flex items-center ml-2"},tl={key:0,class:"mt-3"},ll={class:"material-center__content flex flex-col flex-1 mb-1 min-h-0"},nl={class:"file-list flex flex-wrap mt-4"},al={key:0,class:"item-selected"},ol={class:"operation-btns flex items-center"},sl={class:"inline-block"},il={class:"inline-block"},ul={class:"inline-block"},dl={key:1,class:"flex flex-1 justify-center items-center"},cl={class:"material-center__footer flex justify-between items-center mt-2"},rl={class:"flex"},fl={class:"mr-3"},ml=J(()=>o("span",{class:"mr-5"},"\u79FB\u52A8\u6587\u4EF6\u81F3",-1)),pl={key:0,class:"material__right"},_l={class:"flex justify-between p-2 flex-wrap"},vl={class:"sm flex items-center"},hl={key:0},gl={class:"flex-1 min-h-0"},yl={class:"select-lists flex flex-col p-t-3"},Cl={class:"select-item"},kl=O({__name:"index",props:{fileSize:{type:String,default:"100px"},limit:{type:Number,default:1},type:{type:String,default:"image"},mode:{type:String,default:"picker"},pageSize:{type:Number,default:15}},emits:["change"],setup(l,{expose:F,emit:k}){const r=l,{limit:v}=mt(r),x=De(()=>{switch(r.type){case"image":return 10;case"video":return 20;case"file":return 30;default:return 0}}),E=pt("visible"),i=D(""),h=D(!1),{treeRef:m,cateId:y,cateLists:f,handleAddCate:L,handleEditCate:X,handleDeleteCate:U,getCateLists:H,handleCatSelect:ee}=Dt(x.value),{tableRef:te,listShowType:z,moveId:I,pager:C,fileParams:M,select:S,isCheckAll:B,isIndeterminate:u,getFileList:g,refresh:R,batchFileDelete:N,batchFileMove:de,selectFile:le,isSelect:ce,clearSelect:re,cancelSelete:Be,selectAll:fe,handleFileRename:me}=Bt(y,x,v,r.pageSize),pe=async()=>{var A;await H(),(A=m.value)==null||A.setCurrentKey(y.value),g()},ne=A=>{i.value=A,h.value=!0};return K(E,async A=>{A&&pe()},{immediate:!0}),K(y,()=>{M.name="",R()}),K(S,A=>{if(k("change",A),A.length==C.lists.length&&A.length!==0){u.value=!1,B.value=!0;return}A.length>0?u.value=!0:(B.value=!1,u.value=!1)},{deep:!0}),_t(()=>{r.mode=="page"&&pe()}),F({clearSelect:re}),(A,d)=>{const _e=it,ve=Ge,W=ct,Re=Ye,ze=qe,Ie=Ke,ae=Qe,w=He,he=dt,ge=at,ye=et,Ce=ut,G=xe,$e=tt,ke=lt,oe=nt,Ee=st,j=Ze,Pe=Oe,Te=Je,Le=ot,Ue=Xe;return Q((s(),c("div",jt,[o("div",Mt,[o("div",Nt,[n(ae,null,{default:a(()=>[o("div",Wt,[n(Ie,{ref_key:"treeRef",ref:m,"node-key":"id",data:e(f),"empty-text":"''","highlight-current":!0,"expand-on-click-node":!1,"current-node-key":e(y),onNodeClick:e(ee)},{default:a(({data:t})=>[o("div",Gt,[Yt,o("span",qt,[n(_e,{content:t.name},null,8,["content"])]),t.id>0?(s(),V(ze,{key:0,"hide-on-click":!1},{dropdown:a(()=>[n(Re,null,{default:a(()=>[n(W,{onConfirm:b=>e(X)(b,t.id),size:"default",value:t.name,width:"400px",limit:20,"show-limit":"",teleported:""},{default:a(()=>[o("div",null,[n(ve,null,{default:a(()=>[p(" \u547D\u540D\u5206\u7EC4 ")]),_:1})])]),_:2},1032,["onConfirm","value"]),o("div",{onClick:b=>e(U)(t.id)},[n(ve,null,{default:a(()=>[p("\u5220\u9664\u5206\u7EC4")]),_:1})],8,Qt)]),_:2},1024)]),default:a(()=>[Kt]),_:2},1024)):_("",!0)])]),_:1},8,["data","current-node-key","onNodeClick"])])]),_:1})]),o("div",Zt,[n(W,{onConfirm:e(L),size:"default",width:"400px",limit:20,"show-limit":"",teleported:""},{default:a(()=>[n(w,null,{default:a(()=>[p(" \u6DFB\u52A0\u5206\u7EC4 ")]),_:1})]),_:1},8,["onConfirm"])])]),o("div",Ot,[o("div",Jt,[o("div",Xt,[l.type=="image"?(s(),V(he,{key:0,class:"mr-3",data:{cid:e(y)},type:l.type,"show-progress":!0,onChange:e(R)},{default:a(()=>[n(w,{type:"primary"},{default:a(()=>[p("\u672C\u5730\u4E0A\u4F20")]),_:1})]),_:1},8,["data","type","onChange"])):_("",!0),l.type=="video"?(s(),V(he,{key:1,class:"mr-3",data:{cid:e(y)},type:l.type,"show-progress":!0,onChange:e(R)},{default:a(()=>[n(w,{type:"primary"},{default:a(()=>[p("\u672C\u5730\u4E0A\u4F20")]),_:1})]),_:1},8,["data","type","onChange"])):_("",!0),l.mode=="page"?(s(),V(w,{key:2,disabled:!e(S).length,onClick:d[0]||(d[0]=Y(t=>e(N)(),["stop"]))},{default:a(()=>[p(" \u5220\u9664 ")]),_:1},8,["disabled"])):_("",!0),l.mode=="page"?(s(),V(Ce,{key:3,class:"ml-3",onConfirm:e(de),disabled:!e(S).length,title:"\u79FB\u52A8\u6587\u4EF6"},{trigger:a(()=>[n(w,{disabled:!e(S).length},{default:a(()=>[p("\u79FB\u52A8")]),_:1},8,["disabled"])]),default:a(()=>[o("div",null,[Ht,n(ye,{modelValue:e(I),"onUpdate:modelValue":d[1]||(d[1]=t=>T(I)?I.value=t:null),placeholder:"\u8BF7\u9009\u62E9"},{default:a(()=>[(s(!0),c(P,null,q(e(f),t=>(s(),c(P,{key:t.id},[t.id!==""?(s(),V(ge,{key:0,label:t.name,value:t.id},null,8,["label","value"])):_("",!0)],64))),128))]),_:1},8,["modelValue"])])]),_:1},8,["onConfirm","disabled"])):_("",!0)]),n($e,{class:"w-60",placeholder:"\u8BF7\u8F93\u5165\u540D\u79F0",modelValue:e(M).name,"onUpdate:modelValue":d[2]||(d[2]=t=>e(M).name=t),onKeyup:vt(e(R),["enter"])},{append:a(()=>[n(w,{onClick:e(R)},{icon:a(()=>[n(G,{name:"el-icon-Search"})]),_:1},8,["onClick"])]),_:1},8,["modelValue","onKeyup"]),o("div",el,[n(ke,{content:"\u5217\u8868\u89C6\u56FE",placement:"top"},{default:a(()=>[o("div",{class:be(["list-icon",{select:e(z)=="table"}]),onClick:d[3]||(d[3]=t=>z.value="table")},[n(G,{name:"local-icon-list-2",size:18})],2)]),_:1}),n(ke,{content:"\u5E73\u94FA\u89C6\u56FE",placement:"top"},{default:a(()=>[o("div",{class:be(["list-icon",{select:e(z)=="normal"}]),onClick:d[4]||(d[4]=t=>z.value="normal")},[n(G,{name:"el-icon-Menu",size:18})],2)]),_:1})])]),l.mode=="page"?(s(),c("div",tl,[n(oe,{disabled:!e(C).lists.length,modelValue:e(B),"onUpdate:modelValue":d[5]||(d[5]=t=>T(B)?B.value=t:null),onChange:e(fe),indeterminate:e(u)},{default:a(()=>[p(" \u5F53\u9875\u5168\u9009 ")]),_:1},8,["disabled","modelValue","onChange","indeterminate"])])):_("",!0),o("div",ll,[e(C).lists.length?Q((s(),V(ae,{key:0},{default:a(()=>[o("ul",nl,[(s(!0),c(P,null,q(e(C).lists,t=>(s(),c("li",{class:"file-item-wrap",key:t.id,style:Ve({width:l.fileSize})},[n(Ee,{onClose:b=>e(N)([t.id])},{default:a(()=>[n(ie,{uri:t.uri,"file-size":l.fileSize,type:l.type,onClick:b=>e(le)(t)},{default:a(()=>[e(ce)(t.id)?(s(),c("div",al,[n(G,{size:24,name:"el-icon-Check",color:"#fff"})])):_("",!0)]),_:2},1032,["uri","file-size","type","onClick"])]),_:2},1032,["onClose"]),n(_e,{class:"mt-1",content:t.name},null,8,["content"]),o("div",ol,[n(W,{onConfirm:b=>e(me)(b,t.id),size:"default",value:t.name,width:"400px",limit:50,"show-limit":"",teleported:""},{default:a(()=>[n(w,{type:"primary",link:""},{default:a(()=>[p(" \u91CD\u547D\u540D ")]),_:1})]),_:2},1032,["onConfirm","value"]),n(w,{type:"primary",link:"",onClick:b=>ne(t.uri)},{default:a(()=>[p(" \u67E5\u770B ")]),_:2},1032,["onClick"])])],4))),128))])]),_:1},512)),[[ue,e(z)=="normal"]]):_("",!0),Q(n(Te,{ref_key:"tableRef",ref:te,class:"mt-4",data:e(C).lists,width:"100%",height:"100%",size:"large",onRowClick:e(le)},{default:a(()=>[n(j,{width:"55"},{default:a(({row:t})=>[n(oe,{modelValue:e(ce)(t.id),onChange:b=>e(le)(t)},null,8,["modelValue","onChange"])]),_:1}),n(j,{label:"\u56FE\u7247",width:"100"},{default:a(({row:t})=>[n(ie,{uri:t.uri,"file-size":"50px",type:l.type},null,8,["uri","type"])]),_:1}),n(j,{label:"\u540D\u79F0","min-width":"100","show-overflow-tooltip":""},{default:a(({row:t})=>[n(Pe,{onClick:Y(b=>ne(t.uri),["stop"]),underline:!1},{default:a(()=>[p(se(t.name),1)]),_:2},1032,["onClick"])]),_:1}),n(j,{prop:"create_time",label:"\u4E0A\u4F20\u65F6\u95F4","min-width":"100"}),n(j,{label:"\u64CD\u4F5C",width:"150",fixed:"right"},{default:a(({row:t})=>[o("div",sl,[n(W,{onConfirm:b=>e(me)(b,t.id),size:"default",value:t.name,width:"400px",limit:50,"show-limit":"",teleported:""},{default:a(()=>[n(w,{type:"primary",link:""},{default:a(()=>[p(" \u91CD\u547D\u540D ")]),_:1})]),_:2},1032,["onConfirm","value"])]),o("div",il,[n(w,{type:"primary",link:"",onClick:Y(b=>ne(t.uri),["stop"])},{default:a(()=>[p(" \u67E5\u770B ")]),_:2},1032,["onClick"])]),o("div",ul,[n(w,{type:"primary",link:"",onClick:Y(b=>e(N)([t.id]),["stop"])},{default:a(()=>[p(" \u5220\u9664 ")]),_:2},1032,["onClick"])])]),_:1})]),_:1},8,["data","onRowClick"]),[[ue,e(z)=="table"]]),!e(C).loading&&!e(C).lists.length?(s(),c("div",dl," \u6682\u65E0\u6570\u636E~ ")):_("",!0)]),o("div",cl,[o("div",rl,[l.mode=="page"?(s(),c(P,{key:0},[o("span",fl,[n(oe,{disabled:!e(C).lists.length,modelValue:e(B),"onUpdate:modelValue":d[6]||(d[6]=t=>T(B)?B.value=t:null),onChange:e(fe),indeterminate:e(u)},{default:a(()=>[p(" \u5F53\u9875\u5168\u9009 ")]),_:1},8,["disabled","modelValue","onChange","indeterminate"])]),n(w,{disabled:!e(S).length,onClick:d[7]||(d[7]=t=>e(N)())},{default:a(()=>[p(" \u5220\u9664 ")]),_:1},8,["disabled"]),n(Ce,{class:"ml-3 inline",onConfirm:e(de),disabled:!e(S).length,title:"\u79FB\u52A8\u6587\u4EF6"},{trigger:a(()=>[n(w,{disabled:!e(S).length},{default:a(()=>[p("\u79FB\u52A8")]),_:1},8,["disabled"])]),default:a(()=>[o("div",null,[ml,n(ye,{modelValue:e(I),"onUpdate:modelValue":d[8]||(d[8]=t=>T(I)?I.value=t:null),placeholder:"\u8BF7\u9009\u62E9"},{default:a(()=>[(s(!0),c(P,null,q(e(f),t=>(s(),c(P,{key:t.id},[t.id!==""?(s(),V(ge,{key:0,label:t.name,value:t.id},null,8,["label","value"])):_("",!0)],64))),128))]),_:1},8,["modelValue"])])]),_:1},8,["onConfirm","disabled"])],64)):_("",!0)]),n(Le,{modelValue:e(C),"onUpdate:modelValue":d[9]||(d[9]=t=>T(C)?C.value=t:null),onChange:e(g),layout:"total, prev, pager, next, jumper"},null,8,["modelValue","onChange"])])]),l.mode=="picker"?(s(),c("div",pl,[o("div",_l,[o("div",vl,[p(" \u5DF2\u9009\u62E9 "+se(e(S).length)+" ",1),e(v)?(s(),c("span",hl,"/"+se(e(v)),1)):_("",!0)]),n(w,{type:"primary",link:"",onClick:e(re)},{default:a(()=>[p("\u6E05\u7A7A")]),_:1},8,["onClick"])]),o("div",gl,[n(ae,{class:"ls-scrollbar"},{default:a(()=>[o("ul",yl,[(s(!0),c(P,null,q(e(S),t=>(s(),c("li",{class:"mb-4",key:t.id},[o("div",Cl,[n(Ee,{onClose:b=>e(Be)(t.id)},{default:a(()=>[n(ie,{uri:t.uri,"file-size":"100px",type:l.type},null,8,["uri","type"])]),_:2},1032,["onClose"])])]))),128))])]),_:1})])])):_("",!0),n(Ut,{modelValue:e(h),"onUpdate:modelValue":d[10]||(d[10]=t=>T(h)?h.value=t:null),url:e(i),type:l.type},null,8,["modelValue","url","type"])])),[[Ue,e(C).loading]])}}});const Rl=Ae(kl,[["__scopeId","data-v-9cc1892d"]]);export{ie as F,Rl as _,Ut as a}; diff --git a/public/admin/assets/index.c47e74f8.js b/public/admin/assets/index.c47e74f8.js new file mode 100644 index 000000000..bf117b549 --- /dev/null +++ b/public/admin/assets/index.c47e74f8.js @@ -0,0 +1 @@ +import{k as je,b as Me,U as Ne,L as We,p as Ge,q as Ye,r as qe,V as Ke,E as Qe,O as Ze,W as Oe,P as Je,Q as Xe,w as He,N as et,B as tt,a as lt,F as nt,M as at}from"./element-plus.4328d892.js";import{_ as ot}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{_ as st}from"./index.a9a11abe.js";import{r as $,f as Fe,d as Ae,b as xe,i as it}from"./index.aa9bb752.js";import{P as ut}from"./index.fa872673.js";import{U as dt}from"./index.a450f1bb.js";import{_ as ct}from"./index.vue_vue_type_script_setup_true_lang.dc835bba.js";import{s as Z,r as D,$ as Se,d as O,o as s,c,a as o,K as V,Q as _,U as n,H as rt,_ as Ve,I as ft,u as e,e as De,w as K,M as Q,V as ue,L as a,k as T,n as we,a3 as mt,C as pt,j as _t,R as p,Z as Y,T as P,a7 as q,a8 as vt,O as be,S as se,bf as ht,be as gt}from"./@vue.51d7f2d8.js";import{u as yt}from"./usePaging.2ad8e1e6.js";import{g as Ct}from"./vue3-video-play.b911321b.js";const kt="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAgCAYAAABgrToAAAACJElEQVRYR+2YMWsUURSFz3m7s+nskjUIQSutbMRi7WzUVjSadMHCbVLkByjmLygaCVYWRqMEUhkFS9Gg0cJfYCPZjYUQFbPs+I7c2R1Q2ZjZfRNYYS4MAzPv3vnmvDvL3kMA2Hl5/CjLI9ckf4ZwY3Zt15C+gfwIao3So0rt3XsJtPUk9M/cAW6y9ap2DIyfAjgCwANwGeoYiEFtk/5e5CvXeer1D2neATcGgiTZM4+t9RNLEKcBtAFEGeBsiRWzl7EoSXo+8rV9gWc/fDc1B1VSEoEnDpj0KTB33tS26DGaEezvZQZpRxmODyoT5+vwBwS3zeTcT4yjTdZNJEiPSykk1bjZX6HeD/WQJ1zUApgq2w+etcsniBuAVlH9vELOx6Yo1VywgkmTB4X1kEGGhyAtg/Ecq3NNqnknDwVTrNBaactEts88OHs5b8Bw/Tof4M+kr4WrwwhoL9n5uRPWhxWwsxPEl+EGNMacP5I8evCPGgVgqKSFgoWCoQqE5hc9WCgYqkBoftGDeSiYz1/+UJLe+foftvh2A2B1fwQIrapkaFoDcK4PVyH0qVnyU4fjGdW4NQ2WlgDE5hLkMoJmQdh9zW9Dk59K5lhtLjyE01TX/jDILP5MGEbvbFPOJroIXvc5PjvTBbx7GM4vAjjd9WdSc2g/IPaqaTv5Aq58haP1TSb2Au20GGErvgTxIqiTAA7tVSnn+2Z9vAXdCsa4bD6Nsf0C/gYA5PMzcW0AAAAASUVORK5CYII=";function Et(l){return $.post({url:"/file/addCate",params:l})}function wt(l){return $.post({url:"/file/editCate",params:l})}function bt(l){return $.post({url:"/file/delCate",params:l})}function Ft(l){return $.get({url:"/file/listCate",params:l})}function At(l){return $.get({url:"/file/lists",params:l})}function xt(l){return $.post({url:"/file/delete",params:l})}function St(l){return $.post({url:"/file/move",params:l})}function Vt(l){return $.post({url:"/file/rename",params:l})}function Dt(l){const F=Z(),k=D([]),r=D(""),v=async()=>{const m=await Ft({page_type:0,type:l}),y=[{name:"\u5168\u90E8",id:""},{name:"\u672A\u5206\u7EC4",id:0}];k.value=m.lists,k.value.unshift(...y),setTimeout(()=>{var f;(f=F.value)==null||f.setCurrentKey(r.value)},0)};return{treeRef:F,cateId:r,cateLists:k,handleAddCate:async m=>{await Et({type:l,name:m,pid:0}),v()},handleEditCate:async(m,y)=>{await wt({id:y,name:m}),v()},handleDeleteCate:async m=>{await Fe.confirm("\u786E\u5B9A\u8981\u5220\u9664\uFF1F"),await bt({id:m}),r.value="",v()},getCateLists:v,handleCatSelect:m=>{r.value=m.id}}}function Bt(l,F,k,r){const v=Z(),x=D("normal"),E=D(0),i=D([]),h=D(!1),m=D(!1),y=Se({name:"",type:F,cid:l}),{pager:f,getLists:L,resetPage:X}=yt({fetchFun:At,params:y,firstLoading:!0,size:r}),U=()=>{L()},H=()=>{X()},ee=u=>!!i.value.find(g=>g.id==u),te=async u=>{await Fe.confirm("\u786E\u8BA4\u5220\u9664\u540E\uFF0C\u672C\u5730\u6216\u4E91\u5B58\u50A8\u6587\u4EF6\u4E5F\u5C06\u540C\u6B65\u5220\u9664\uFF0C\u5982\u6587\u4EF6\u5DF2\u88AB\u4F7F\u7528\uFF0C\u8BF7\u8C28\u614E\u64CD\u4F5C\uFF01");const g=u||i.value.map(R=>R.id);await xt({ids:g}),U(),C()},z=async()=>{const u=i.value.map(g=>g.id);await St({ids:u,cid:E.value}),E.value=0,U(),C()},I=u=>{const g=i.value.findIndex(R=>R.id==u.id);if(g!=-1){i.value.splice(g,1);return}if(i.value.length==k.value){if(k.value==1){i.value=[],i.value.push(u);return}je.warning("\u5DF2\u8FBE\u5230\u9009\u62E9\u4E0A\u9650");return}i.value.push(u)},C=()=>{i.value=[]};return{listShowType:x,tableRef:v,moveId:E,pager:f,fileParams:y,select:i,isCheckAll:h,isIndeterminate:m,getFileList:U,refresh:H,batchFileDelete:te,batchFileMove:z,selectFile:I,isSelect:ee,clearSelect:C,cancelSelete:u=>{i.value=i.value.filter(g=>g.id!=u)},selectAll:u=>{var g;if(m.value=!1,(g=v.value)==null||g.toggleAllSelection(),u){i.value=[...f.lists];return}C()},handleFileRename:async(u,g)=>{await Vt({id:g,name:u}),U()}}}const Rt=O({props:{uri:{type:String},fileSize:{type:String,default:"100px"},type:{type:String,default:"image"}},emits:["close"]});const zt=["src"],It={key:2,class:"absolute left-1/2 top-1/2 translate-x-[-50%] translate-y-[-50%] rounded-full w-5 h-5 flex justify-center items-center bg-[rgba(0,0,0,0.3)]"};function $t(l,F,k,r,v,x){const E=Me,i=xe;return s(),c("div",null,[o("div",{class:"file-item relative",style:Ve({height:l.fileSize,width:l.fileSize})},[l.type=="image"?(s(),V(E,{key:0,class:"image",fit:"contain",src:l.uri},null,8,["src"])):l.type=="video"?(s(),c("video",{key:1,class:"video",src:l.uri},null,8,zt)):_("",!0),l.type=="video"?(s(),c("div",It,[n(i,{name:"el-icon-CaretRight",size:18,color:"#fff"})])):_("",!0),rt(l.$slots,"default",{},void 0,!0)],4)])}const ie=Ae(Rt,[["render",$t],["__scopeId","data-v-5ccc0f84"]]),Pt=O({__name:"index",props:{src:{type:String,required:!0},width:String,height:String,poster:String},setup(l,{expose:F}){const k=l,r=Z(),v=Se({color:"var(--el-color-primary)",muted:!1,webFullScreen:!1,speedRate:["0.75","1.0","1.25","1.5","2.0"],autoPlay:!0,loop:!1,mirror:!1,ligthOff:!1,volume:.3,control:!0,title:"",poster:"",...k}),x=()=>{r.value.play()},E=()=>{r.value.pause()},i=f=>{console.log(f,"\u64AD\u653E")},h=f=>{console.log(f,"\u6682\u505C")},m=f=>{console.log(f,"\u65F6\u95F4\u66F4\u65B0")},y=f=>{console.log(f,"\u53EF\u4EE5\u64AD\u653E")};return F({play:x,pause:E}),(f,L)=>(s(),c("div",null,[n(e(Ct),ft({ref_key:"playerRef",ref:r},v,{src:l.src,onPlay:i,onPause:h,onTimeupdate:m,onCanplay:y}),null,16,["src"])]))}}),Tt={key:0},Lt={key:1},Ut=O({__name:"preview",props:{modelValue:{type:Boolean,default:!1},url:{type:String,default:""},type:{type:String,default:"image"}},emits:["update:modelValue"],setup(l,{emit:F}){const k=l,r=Z(),v=De({get(){return k.modelValue},set(i){F("update:modelValue",i)}}),x=()=>{F("update:modelValue",!1)},E=D([]);return K(()=>k.modelValue,i=>{i?we(()=>{var h;E.value=[k.url],(h=r.value)==null||h.play()}):we(()=>{var h;E.value=[],(h=r.value)==null||h.pause()})}),(i,h)=>{const m=Ne,y=Pt,f=We;return Q((s(),c("div",null,[l.type=="image"?(s(),c("div",Tt,[e(E).length?(s(),V(m,{key:0,"url-list":e(E),"hide-on-click-modal":"",onClose:x},null,8,["url-list"])):_("",!0)])):_("",!0),l.type=="video"?(s(),c("div",Lt,[n(f,{modelValue:e(v),"onUpdate:modelValue":h[0]||(h[0]=L=>T(v)?v.value=L:null),width:"740px",title:"\u89C6\u9891\u9884\u89C8","before-close":x},{default:a(()=>[n(y,{ref_key:"playerRef",ref:r,src:l.url,width:"100%",height:"450px"},null,8,["src"])]),_:1},8,["modelValue"])])):_("",!0)],512)),[[ue,l.modelValue]])}}}),J=l=>(ht("data-v-9cc1892d"),l=l(),gt(),l),jt={class:"material"},Mt={class:"material__left"},Nt={class:"flex-1 min-h-0"},Wt={class:"material-left__content pt-4 p-b-4"},Gt={class:"flex flex-1 items-center min-w-0 pr-4"},Yt=J(()=>o("img",{class:"w-[20px] h-[16px] mr-3",src:kt},null,-1)),qt={class:"flex-1 truncate mr-2"},Kt=J(()=>o("span",{class:"muted m-r-10"},"\xB7\xB7\xB7",-1)),Qt=["onClick"],Zt={class:"flex justify-center p-2 border-t border-br"},Ot={class:"material__center flex flex-col"},Jt={class:"operate-btn flex"},Xt={class:"flex-1 flex"},Ht=J(()=>o("span",{class:"mr-5"},"\u79FB\u52A8\u6587\u4EF6\u81F3",-1)),el={class:"flex items-center ml-2"},tl={key:0,class:"mt-3"},ll={class:"material-center__content flex flex-col flex-1 mb-1 min-h-0"},nl={class:"file-list flex flex-wrap mt-4"},al={key:0,class:"item-selected"},ol={class:"operation-btns flex items-center"},sl={class:"inline-block"},il={class:"inline-block"},ul={class:"inline-block"},dl={key:1,class:"flex flex-1 justify-center items-center"},cl={class:"material-center__footer flex justify-between items-center mt-2"},rl={class:"flex"},fl={class:"mr-3"},ml=J(()=>o("span",{class:"mr-5"},"\u79FB\u52A8\u6587\u4EF6\u81F3",-1)),pl={key:0,class:"material__right"},_l={class:"flex justify-between p-2 flex-wrap"},vl={class:"sm flex items-center"},hl={key:0},gl={class:"flex-1 min-h-0"},yl={class:"select-lists flex flex-col p-t-3"},Cl={class:"select-item"},kl=O({__name:"index",props:{fileSize:{type:String,default:"100px"},limit:{type:Number,default:1},type:{type:String,default:"image"},mode:{type:String,default:"picker"},pageSize:{type:Number,default:15}},emits:["change"],setup(l,{expose:F,emit:k}){const r=l,{limit:v}=mt(r),x=De(()=>{switch(r.type){case"image":return 10;case"video":return 20;case"file":return 30;default:return 0}}),E=pt("visible"),i=D(""),h=D(!1),{treeRef:m,cateId:y,cateLists:f,handleAddCate:L,handleEditCate:X,handleDeleteCate:U,getCateLists:H,handleCatSelect:ee}=Dt(x.value),{tableRef:te,listShowType:z,moveId:I,pager:C,fileParams:M,select:S,isCheckAll:B,isIndeterminate:u,getFileList:g,refresh:R,batchFileDelete:N,batchFileMove:de,selectFile:le,isSelect:ce,clearSelect:re,cancelSelete:Be,selectAll:fe,handleFileRename:me}=Bt(y,x,v,r.pageSize),pe=async()=>{var A;await H(),(A=m.value)==null||A.setCurrentKey(y.value),g()},ne=A=>{i.value=A,h.value=!0};return K(E,async A=>{A&&pe()},{immediate:!0}),K(y,()=>{M.name="",R()}),K(S,A=>{if(k("change",A),A.length==C.lists.length&&A.length!==0){u.value=!1,B.value=!0;return}A.length>0?u.value=!0:(B.value=!1,u.value=!1)},{deep:!0}),_t(()=>{r.mode=="page"&&pe()}),F({clearSelect:re}),(A,d)=>{const _e=it,ve=Ge,W=ct,Re=Ye,ze=qe,Ie=Ke,ae=Qe,w=He,he=dt,ge=at,ye=et,Ce=ut,G=xe,$e=tt,ke=lt,oe=nt,Ee=st,j=Ze,Pe=Oe,Te=Je,Le=ot,Ue=Xe;return Q((s(),c("div",jt,[o("div",Mt,[o("div",Nt,[n(ae,null,{default:a(()=>[o("div",Wt,[n(Ie,{ref_key:"treeRef",ref:m,"node-key":"id",data:e(f),"empty-text":"''","highlight-current":!0,"expand-on-click-node":!1,"current-node-key":e(y),onNodeClick:e(ee)},{default:a(({data:t})=>[o("div",Gt,[Yt,o("span",qt,[n(_e,{content:t.name},null,8,["content"])]),t.id>0?(s(),V(ze,{key:0,"hide-on-click":!1},{dropdown:a(()=>[n(Re,null,{default:a(()=>[n(W,{onConfirm:b=>e(X)(b,t.id),size:"default",value:t.name,width:"400px",limit:20,"show-limit":"",teleported:""},{default:a(()=>[o("div",null,[n(ve,null,{default:a(()=>[p(" \u547D\u540D\u5206\u7EC4 ")]),_:1})])]),_:2},1032,["onConfirm","value"]),o("div",{onClick:b=>e(U)(t.id)},[n(ve,null,{default:a(()=>[p("\u5220\u9664\u5206\u7EC4")]),_:1})],8,Qt)]),_:2},1024)]),default:a(()=>[Kt]),_:2},1024)):_("",!0)])]),_:1},8,["data","current-node-key","onNodeClick"])])]),_:1})]),o("div",Zt,[n(W,{onConfirm:e(L),size:"default",width:"400px",limit:20,"show-limit":"",teleported:""},{default:a(()=>[n(w,null,{default:a(()=>[p(" \u6DFB\u52A0\u5206\u7EC4 ")]),_:1})]),_:1},8,["onConfirm"])])]),o("div",Ot,[o("div",Jt,[o("div",Xt,[l.type=="image"?(s(),V(he,{key:0,class:"mr-3",data:{cid:e(y)},type:l.type,"show-progress":!0,onChange:e(R)},{default:a(()=>[n(w,{type:"primary"},{default:a(()=>[p("\u672C\u5730\u4E0A\u4F20")]),_:1})]),_:1},8,["data","type","onChange"])):_("",!0),l.type=="video"?(s(),V(he,{key:1,class:"mr-3",data:{cid:e(y)},type:l.type,"show-progress":!0,onChange:e(R)},{default:a(()=>[n(w,{type:"primary"},{default:a(()=>[p("\u672C\u5730\u4E0A\u4F20")]),_:1})]),_:1},8,["data","type","onChange"])):_("",!0),l.mode=="page"?(s(),V(w,{key:2,disabled:!e(S).length,onClick:d[0]||(d[0]=Y(t=>e(N)(),["stop"]))},{default:a(()=>[p(" \u5220\u9664 ")]),_:1},8,["disabled"])):_("",!0),l.mode=="page"?(s(),V(Ce,{key:3,class:"ml-3",onConfirm:e(de),disabled:!e(S).length,title:"\u79FB\u52A8\u6587\u4EF6"},{trigger:a(()=>[n(w,{disabled:!e(S).length},{default:a(()=>[p("\u79FB\u52A8")]),_:1},8,["disabled"])]),default:a(()=>[o("div",null,[Ht,n(ye,{modelValue:e(I),"onUpdate:modelValue":d[1]||(d[1]=t=>T(I)?I.value=t:null),placeholder:"\u8BF7\u9009\u62E9"},{default:a(()=>[(s(!0),c(P,null,q(e(f),t=>(s(),c(P,{key:t.id},[t.id!==""?(s(),V(ge,{key:0,label:t.name,value:t.id},null,8,["label","value"])):_("",!0)],64))),128))]),_:1},8,["modelValue"])])]),_:1},8,["onConfirm","disabled"])):_("",!0)]),n($e,{class:"w-60",placeholder:"\u8BF7\u8F93\u5165\u540D\u79F0",modelValue:e(M).name,"onUpdate:modelValue":d[2]||(d[2]=t=>e(M).name=t),onKeyup:vt(e(R),["enter"])},{append:a(()=>[n(w,{onClick:e(R)},{icon:a(()=>[n(G,{name:"el-icon-Search"})]),_:1},8,["onClick"])]),_:1},8,["modelValue","onKeyup"]),o("div",el,[n(ke,{content:"\u5217\u8868\u89C6\u56FE",placement:"top"},{default:a(()=>[o("div",{class:be(["list-icon",{select:e(z)=="table"}]),onClick:d[3]||(d[3]=t=>z.value="table")},[n(G,{name:"local-icon-list-2",size:18})],2)]),_:1}),n(ke,{content:"\u5E73\u94FA\u89C6\u56FE",placement:"top"},{default:a(()=>[o("div",{class:be(["list-icon",{select:e(z)=="normal"}]),onClick:d[4]||(d[4]=t=>z.value="normal")},[n(G,{name:"el-icon-Menu",size:18})],2)]),_:1})])]),l.mode=="page"?(s(),c("div",tl,[n(oe,{disabled:!e(C).lists.length,modelValue:e(B),"onUpdate:modelValue":d[5]||(d[5]=t=>T(B)?B.value=t:null),onChange:e(fe),indeterminate:e(u)},{default:a(()=>[p(" \u5F53\u9875\u5168\u9009 ")]),_:1},8,["disabled","modelValue","onChange","indeterminate"])])):_("",!0),o("div",ll,[e(C).lists.length?Q((s(),V(ae,{key:0},{default:a(()=>[o("ul",nl,[(s(!0),c(P,null,q(e(C).lists,t=>(s(),c("li",{class:"file-item-wrap",key:t.id,style:Ve({width:l.fileSize})},[n(Ee,{onClose:b=>e(N)([t.id])},{default:a(()=>[n(ie,{uri:t.uri,"file-size":l.fileSize,type:l.type,onClick:b=>e(le)(t)},{default:a(()=>[e(ce)(t.id)?(s(),c("div",al,[n(G,{size:24,name:"el-icon-Check",color:"#fff"})])):_("",!0)]),_:2},1032,["uri","file-size","type","onClick"])]),_:2},1032,["onClose"]),n(_e,{class:"mt-1",content:t.name},null,8,["content"]),o("div",ol,[n(W,{onConfirm:b=>e(me)(b,t.id),size:"default",value:t.name,width:"400px",limit:50,"show-limit":"",teleported:""},{default:a(()=>[n(w,{type:"primary",link:""},{default:a(()=>[p(" \u91CD\u547D\u540D ")]),_:1})]),_:2},1032,["onConfirm","value"]),n(w,{type:"primary",link:"",onClick:b=>ne(t.uri)},{default:a(()=>[p(" \u67E5\u770B ")]),_:2},1032,["onClick"])])],4))),128))])]),_:1},512)),[[ue,e(z)=="normal"]]):_("",!0),Q(n(Te,{ref_key:"tableRef",ref:te,class:"mt-4",data:e(C).lists,width:"100%",height:"100%",size:"large",onRowClick:e(le)},{default:a(()=>[n(j,{width:"55"},{default:a(({row:t})=>[n(oe,{modelValue:e(ce)(t.id),onChange:b=>e(le)(t)},null,8,["modelValue","onChange"])]),_:1}),n(j,{label:"\u56FE\u7247",width:"100"},{default:a(({row:t})=>[n(ie,{uri:t.uri,"file-size":"50px",type:l.type},null,8,["uri","type"])]),_:1}),n(j,{label:"\u540D\u79F0","min-width":"100","show-overflow-tooltip":""},{default:a(({row:t})=>[n(Pe,{onClick:Y(b=>ne(t.uri),["stop"]),underline:!1},{default:a(()=>[p(se(t.name),1)]),_:2},1032,["onClick"])]),_:1}),n(j,{prop:"create_time",label:"\u4E0A\u4F20\u65F6\u95F4","min-width":"100"}),n(j,{label:"\u64CD\u4F5C",width:"150",fixed:"right"},{default:a(({row:t})=>[o("div",sl,[n(W,{onConfirm:b=>e(me)(b,t.id),size:"default",value:t.name,width:"400px",limit:50,"show-limit":"",teleported:""},{default:a(()=>[n(w,{type:"primary",link:""},{default:a(()=>[p(" \u91CD\u547D\u540D ")]),_:1})]),_:2},1032,["onConfirm","value"])]),o("div",il,[n(w,{type:"primary",link:"",onClick:Y(b=>ne(t.uri),["stop"])},{default:a(()=>[p(" \u67E5\u770B ")]),_:2},1032,["onClick"])]),o("div",ul,[n(w,{type:"primary",link:"",onClick:Y(b=>e(N)([t.id]),["stop"])},{default:a(()=>[p(" \u5220\u9664 ")]),_:2},1032,["onClick"])])]),_:1})]),_:1},8,["data","onRowClick"]),[[ue,e(z)=="table"]]),!e(C).loading&&!e(C).lists.length?(s(),c("div",dl," \u6682\u65E0\u6570\u636E~ ")):_("",!0)]),o("div",cl,[o("div",rl,[l.mode=="page"?(s(),c(P,{key:0},[o("span",fl,[n(oe,{disabled:!e(C).lists.length,modelValue:e(B),"onUpdate:modelValue":d[6]||(d[6]=t=>T(B)?B.value=t:null),onChange:e(fe),indeterminate:e(u)},{default:a(()=>[p(" \u5F53\u9875\u5168\u9009 ")]),_:1},8,["disabled","modelValue","onChange","indeterminate"])]),n(w,{disabled:!e(S).length,onClick:d[7]||(d[7]=t=>e(N)())},{default:a(()=>[p(" \u5220\u9664 ")]),_:1},8,["disabled"]),n(Ce,{class:"ml-3 inline",onConfirm:e(de),disabled:!e(S).length,title:"\u79FB\u52A8\u6587\u4EF6"},{trigger:a(()=>[n(w,{disabled:!e(S).length},{default:a(()=>[p("\u79FB\u52A8")]),_:1},8,["disabled"])]),default:a(()=>[o("div",null,[ml,n(ye,{modelValue:e(I),"onUpdate:modelValue":d[8]||(d[8]=t=>T(I)?I.value=t:null),placeholder:"\u8BF7\u9009\u62E9"},{default:a(()=>[(s(!0),c(P,null,q(e(f),t=>(s(),c(P,{key:t.id},[t.id!==""?(s(),V(ge,{key:0,label:t.name,value:t.id},null,8,["label","value"])):_("",!0)],64))),128))]),_:1},8,["modelValue"])])]),_:1},8,["onConfirm","disabled"])],64)):_("",!0)]),n(Le,{modelValue:e(C),"onUpdate:modelValue":d[9]||(d[9]=t=>T(C)?C.value=t:null),onChange:e(g),layout:"total, prev, pager, next, jumper"},null,8,["modelValue","onChange"])])]),l.mode=="picker"?(s(),c("div",pl,[o("div",_l,[o("div",vl,[p(" \u5DF2\u9009\u62E9 "+se(e(S).length)+" ",1),e(v)?(s(),c("span",hl,"/"+se(e(v)),1)):_("",!0)]),n(w,{type:"primary",link:"",onClick:e(re)},{default:a(()=>[p("\u6E05\u7A7A")]),_:1},8,["onClick"])]),o("div",gl,[n(ae,{class:"ls-scrollbar"},{default:a(()=>[o("ul",yl,[(s(!0),c(P,null,q(e(S),t=>(s(),c("li",{class:"mb-4",key:t.id},[o("div",Cl,[n(Ee,{onClose:b=>e(Be)(t.id)},{default:a(()=>[n(ie,{uri:t.uri,"file-size":"100px",type:l.type},null,8,["uri","type"])]),_:2},1032,["onClose"])])]))),128))])]),_:1})])])):_("",!0),n(Ut,{modelValue:e(h),"onUpdate:modelValue":d[10]||(d[10]=t=>T(h)?h.value=t:null),url:e(i),type:l.type},null,8,["modelValue","url","type"])])),[[Ue,e(C).loading]])}}});const Rl=Ae(kl,[["__scopeId","data-v-9cc1892d"]]);export{ie as F,Rl as _,Ut as a}; diff --git a/public/admin/assets/index.c642e50f.js b/public/admin/assets/index.c642e50f.js new file mode 100644 index 000000000..fea628218 --- /dev/null +++ b/public/admin/assets/index.c642e50f.js @@ -0,0 +1 @@ +import{k as R,B as Te,C as $e,M as Se,N as qe,w as Re,D as Me,I as Ne,O as je,P as Ge,a1 as Oe,a2 as Qe,L as Ke,Q as He}from"./element-plus.4328d892.js";import{_ as Je}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{a as We,k as g,f as ie,b as Xe}from"./index.ed71ac09.js";import{d as me,r as _,$ as pe,a4 as Ye,af as Ze,o as r,c as B,U as e,L as u,u as t,M as C,V as Y,T as Z,a7 as de,K as E,R as i,a as c,Q as M,S as eu,k as D}from"./@vue.51d7f2d8.js";import{u as uu,a as au}from"./vue-router.9f65afb1.js";import{u as tu}from"./usePaging.2ad8e1e6.js";import{u as lu}from"./useDictOptions.8d37e54b.js";import{o as ou,i as nu,g as su,s as ru,f as iu,h as pu,a as du,c as cu,j as mu}from"./company.8a1c349a.js";import"./lodash.08438971.js";import{d as ce}from"./dict.6c560e38.js";import{d as _u}from"./dict.070e6995.js";import{_ as yu}from"./dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.0b707b28.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./axios.105476b3.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const fu={class:"mt-4"},Fu={key:0,style:{color:"#67c23a"}},Eu={key:3,style:{color:"#fe0000"}},Bu={style:{display:"flex","flex-wrap":"wrap"}},Cu={class:"flex mt-4 justify-end"},vu=c("h1",null,"\u91CD\u8981\u63D0\u9192",-1),bu=c("div",{class:"content"},"\u8BF7\u786E\u8BA4\u4FE1\u606F\u662F\u5426\u6709\u8BEF",-1),hu={class:"btn_menu"},Au=c("h1",null,"\u91CD\u8981\u63D0\u9192",-1),wu={key:0,class:"content"},gu={key:1,class:"content"},Du={class:"btn_menu"},ku=c("h1",null,"\u4F01\u4E1A\u8BA4\u8BC1\u63D0\u9192",-1),Vu=c("div",{style:{"font-size":"18px","font-weight":"bold","padding-bottom":"10px"}}," \u4F01\u4E1A\u8BA4\u8BC1\u524D\uFF0C\u8BF7\u68C0\u67E5\u4EE5\u4E0B\u91CD\u8981\u4FE1\u606F\u662F\u5426\u6B63\u786E ",-1),xu={class:"btn_menu"},Lu=c("h1",null,"\u4EBA\u8138\u91C7\u96C6\u63D0\u9192",-1),Pu=c("div",{style:{"font-size":"18px","font-weight":"bold","padding-bottom":"10px"}}," \u4EBA\u8138\u91C7\u96C6\u524D\uFF0C\u8BF7\u68C0\u67E5\u4EE5\u4E0B\u91CD\u8981\u4FE1\u606F\u662F\u5426\u6B63\u786E ",-1),Uu={class:"btn_menu"},zu=me({name:"companyLists"}),Aa=me({...zu,setup(Iu){var ne;const k=_(!1),_e=o=>{d.value.party_a=o.id,d.value.party_a_name=o.company_name,k.value=!1},U=We();console.log(U.userInfo.company_id);const ee=uu(),ye=au(),z=_(!0),I=_(!1),N=_(!1),T=()=>{I.value=!1,N.value=!1},ue=_(!1),V=_(!1),j=()=>{V.value=!1,ue.value=!1},$=_(""),h=_(!1),ae=()=>{h.value=!1},S=_(!1),G=()=>{S.value=!1},fe=async o=>{await ou({id:o}),G()},te=()=>{ye.push({path:g("company/add:edit"),query:{id:y.value.id,edit:!0}})},d=_({party_a:"",party_a_name:"",party_b:"",party_b_name:"",contract_type:"",contract_no:""}),Fe=_([]),le=_([]),Ee=async o=>{const l=await du({id:o});cu().then(p=>{Fe.value=p}),ce({type_id:7}).then(p=>{le.value=p.lists.filter(n=>_u.find(A=>A==n.id))}),d.value.party_b=l.id,d.value.party_b_name=l.company_name,U.userInfo.company.id?(d.value.party_a=U.userInfo.company.id,d.value.party_a_name=U.userInfo.company.company_name):(d.value.party_a="",d.value.party_a_name="")},Be=o=>{$.value=o.id,Ee(o.id),Ce()},Ce=()=>{ue.value=!0,V.value=!0},ve=async()=>{if(!d.value.party_a)return R.error("\u7532\u65B9\u4E0D\u80FD\u4E3A\u7A7A");if(!d.value.contract_type)return R.error("\u5408\u540C\u7C7B\u578B\u4E0D\u80FD\u4E3A\u7A7A");await nu({id:$.value,...d.value}),b(),j()},be=async()=>{await su({id:$.value}),b(),T()},he=async()=>{await ru({id:$.value}),b(),T()},m=pe({company_name:"",area:"",street:"",company_type:"",area_manager:"",is_contract:""});ee.query.company_type&&(z.value=!1,m.company_type=((ne=ee.query.company_type)==null?void 0:ne.toString())||"");const O=pe({dictTypeLists:[]});(async()=>{const o=await ce({type_id:6});O.dictTypeLists=o.lists})();const Ae=_([]),we=o=>{Ae.value=o.map(({id:l})=>l)};lu("");const{pager:x,getLists:b,resetParams:ge,resetPage:De}=tu({fetchFun:mu,params:m}),ke=async o=>{await ie.confirm("\u786E\u5B9A\u8981\u5220\u9664\uFF1F"),await iu({id:o}),b()},y=_(""),Q=_("\u4F01\u4E1A\u8BA4\u8BC1");let K,q=10;const Ve=o=>{if(K)return R.warning("\u8BA4\u8BC1\u4E2D,\u8BF7\u8010\u5FC3\u7B49\u5F85");y.value=o,h.value=!0},xe=async o=>{await ie.confirm("\u786E\u5B9A\u8981\u8BA4\u8BC1\uFF1F"),await pu({id:o}),K=setInterval(()=>{Q.value=q+"\u79D2\u540E\u5237\u65B0",q==0?(clearInterval(K),Q.value="\u4F01\u4E1A\u8BA4\u8BC1",q=10,b()):q--},1e3),b(),h.value=!1},oe=o=>{R.warning(o==1?"\u8BF7\u7B49\u5F85\u5408\u540C\u5BA1\u6838\u5B8C\u6210!":"\u5408\u540C\u53CC\u65B9\u6B63\u5728\u7B7E\u7EA6!")};return b(),(o,l)=>{const p=Te,n=$e,A=Se,H=qe,s=Re,J=Me,W=Ne,Le=Xe,L=Ye("router-link"),F=je,Pe=Ge,Ue=Je,f=Oe,X=Qe,P=Ke,w=Ze("perms"),ze=He;return r(),B("div",null,[e(W,{class:"!border-none mb-4",shadow:"never"},{default:u(()=>[e(J,{class:"mb-[-16px] formdata",model:t(m),inline:""},{default:u(()=>[e(n,{label:"\u516C\u53F8\u540D\u79F0",prop:"company_name"},{default:u(()=>[e(p,{class:"w-[280px]",modelValue:t(m).company_name,"onUpdate:modelValue":l[0]||(l[0]=a=>t(m).company_name=a),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u516C\u53F8\u540D\u79F0"},null,8,["modelValue"])]),_:1}),C(e(n,{label:"\u533A",prop:"area"},{default:u(()=>[e(p,{class:"w-[280px]",modelValue:t(m).area,"onUpdate:modelValue":l[1]||(l[1]=a=>t(m).area=a),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u533A"},null,8,["modelValue"])]),_:1},512),[[Y,t(z)]]),C(e(n,{label:"\u9547",prop:"street"},{default:u(()=>[e(p,{class:"w-[280px]",modelValue:t(m).street,"onUpdate:modelValue":l[2]||(l[2]=a=>t(m).street=a),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u9547"},null,8,["modelValue"])]),_:1},512),[[Y,t(z)]]),C(e(n,{label:"\u516C\u53F8\u7C7B\u578B",prop:"company_type"},{default:u(()=>[e(H,{modelValue:t(m).company_type,"onUpdate:modelValue":l[3]||(l[3]=a=>t(m).company_type=a),placeholder:"\u8BF7\u9009\u62E9\u516C\u53F8\u7C7B\u578B",clearable:"",class:"w-[280px]"},{default:u(()=>[(r(!0),B(Z,null,de(t(O).dictTypeLists,(a,v)=>(r(),E(A,{key:v,label:a.name,value:a.id},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1},512),[[Y,t(z)]]),e(n,{label:"\u7247\u533A\u7ECF\u7406",prop:"area_manager"},{default:u(()=>[e(p,{class:"w-[280px]",modelValue:t(m).area_manager,"onUpdate:modelValue":l[4]||(l[4]=a=>t(m).area_manager=a),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u7247\u533A\u7ECF\u7406"},null,8,["modelValue"])]),_:1}),e(n,{label:"\u662F\u5426\u7B7E\u7EA6",prop:"is_contract"},{default:u(()=>[e(H,{modelValue:t(m).is_contract,"onUpdate:modelValue":l[5]||(l[5]=a=>t(m).is_contract=a),placeholder:"\u662F\u5426\u7B7E\u7EA6",clearable:"",class:"w-[240px]"},{default:u(()=>[e(A,{label:"\u5DF2\u7B7E\u7EA6",value:"1"}),e(A,{label:"\u672A\u7B7E\u7EA6",value:"0"})]),_:1},8,["modelValue"])]),_:1}),e(n,null,{default:u(()=>[e(s,{type:"primary",onClick:t(De)},{default:u(()=>[i("\u67E5\u8BE2")]),_:1},8,["onClick"]),e(s,{onClick:t(ge)},{default:u(()=>[i("\u91CD\u7F6E")]),_:1},8,["onClick"])]),_:1})]),_:1},8,["model"])]),_:1}),C((r(),E(W,{class:"!border-none",shadow:"never"},{default:u(()=>[C((r(),E(L,{to:{path:t(g)("company/add:edit"),query:{flag:!0}}},{default:u(()=>[e(s,{type:"primary",class:"mb-4"},{icon:u(()=>[e(Le,{name:"el-icon-Plus"})]),default:u(()=>[i(" \u521B\u5EFA ")]),_:1})]),_:1},8,["to"])),[[w,["company/add:edit"]]]),c("div",fu,[e(Pe,{data:t(x).lists,onSelectionChange:we},{default:u(()=>[e(F,{label:"id",prop:"id","show-overflow-tooltip":"",width:"60"}),e(F,{label:"\u516C\u53F8\u540D\u79F0",prop:"company_name",width:"200","show-overflow-tooltip":""}),e(F,{label:"\u516C\u53F8\u7C7B\u578B",prop:"company_type","show-overflow-tooltip":""}),e(F,{label:"\u533A\u53BF",prop:"area","show-overflow-tooltip":""}),e(F,{label:"\u4E61\u9547",prop:"street","show-overflow-tooltip":""}),e(F,{label:"\u4E3B\u8054\u7CFB\u4EBA",prop:"master_name","show-overflow-tooltip":""}),e(F,{label:"\u8054\u7CFB\u65B9\u5F0F",prop:"master_phone","show-overflow-tooltip":""}),e(F,{label:"\u7247\u533A\u7ECF\u7406",prop:"area_manager","show-overflow-tooltip":""}),e(F,{label:"\u662F\u5426\u7B7E\u7EA6",prop:"is_contract","show-overflow-tooltip":""},{default:u(({row:a})=>{var v,se,re;return[a.is_contract==1?(r(),B("span",Fu,"\u5DF2\u7B7E\u7EA6")):((v=a.contract)==null?void 0:v.check_status)==1?(r(),B("span",{key:1,style:{color:"#e6a23c",cursor:"pointer"},onClick:l[6]||(l[6]=Ie=>oe(1))},"\u5BA1\u6838\u4E2D")):((se=a.contract)==null?void 0:se.check_status)==2||((re=a.contract)==null?void 0:re.check_status)==3?(r(),B("span",{key:2,onClick:l[7]||(l[7]=Ie=>oe(2)),style:{color:"#e6a23c",cursor:"pointer"}},"\u7B7E\u7EA6\u4E2D")):(r(),B("span",Eu,"\u672A\u7B7E\u7EA6"))]}),_:1}),e(F,{label:"\u8BA4\u8BC1\u53CD\u9988",prop:"notes","show-overflow-tooltip":""}),e(F,{label:"\u64CD\u4F5C",align:"center",width:"420",fixed:"right"},{default:u(({row:a})=>[c("div",Bu,[e(s,{type:"primary",link:""},{default:u(()=>[e(L,{to:{path:t(g)("user.user/lists"),query:{company_id:a.id,read:!0}}},{default:u(()=>[i("\u67E5\u770B\u6210\u5458")]),_:2},1032,["to"])]),_:2},1024),e(s,{type:"primary",link:""},{default:u(()=>[e(L,{to:{path:t(g)("company/subordinate/lists"),query:{company_id:a.id,read:!0}}},{default:u(()=>[i("\u4E0B\u5C5E\u516C\u53F8")]),_:2},1032,["to"])]),_:2},1024),C((r(),E(s,{type:"primary",link:""},{default:u(()=>[e(L,{to:{path:t(g)("company/add:edit"),query:{id:a.id,read:!0,isshow:!0}}},{default:u(()=>[i("\u8BE6\u60C5")]),_:2},1032,["to"])]),_:2},1024)),[[w,["company/add:edit"]]]),a.is_authentication==0?C((r(),E(s,{key:0,type:"primary",link:""},{default:u(()=>[e(L,{to:{path:t(g)("company/add:edit"),query:{id:a.id,edit:!0}}},{default:u(()=>[i("\u7F16\u8F91")]),_:2},1032,["to"])]),_:2},1024)),[[w,["company/add:edit"]]]):M("",!0),C((r(),E(s,{type:"danger",link:"",onClick:v=>ke(a.id)},{default:u(()=>[i("\u5220\u9664")]),_:2},1032,["onClick"])),[[w,["company/delete"]]]),a.is_authentication==0?C((r(),E(s,{key:1,type:"primary",link:"",onClick:v=>Ve(a)},{default:u(()=>[i(eu(t(Q)),1)]),_:2},1032,["onClick"])),[[w,["company/authentication"]]]):M("",!0),a.is_authentication&&a.is_contract==0?(r(),B(Z,{key:2},[Array.isArray(a.contract)&&a.contract.length==0?C((r(),E(s,{key:0,type:"primary",link:"",onClick:v=>Be(a)},{default:u(()=>[i("\u751F\u6210\u5408\u540C")]),_:2},1032,["onClick"])),[[w,["company/initiate_contract"]]]):M("",!0)],64)):M("",!0)])]),_:1})]),_:1},8,["data"])]),c("div",Cu,[e(Ue,{modelValue:t(x),"onUpdate:modelValue":l[8]||(l[8]=a=>D(x)?x.value=a:null),onChange:t(b)},null,8,["modelValue","onChange"])])]),_:1})),[[ze,t(x).loading]]),e(P,{modelValue:t(V),"onUpdate:modelValue":l[15]||(l[15]=a=>D(V)?V.value=a:null),onClose:j},{default:u(()=>[vu,c("div",null,[bu,e(W,null,{default:u(()=>[e(X,null,{default:u(()=>[e(f,{span:12},{default:u(()=>[e(n,{"label-width":"100px",label:"\u7532\u65B9",prop:"field130"},{default:u(()=>[e(p,{modelValue:t(d).party_a_name,"onUpdate:modelValue":l[9]||(l[9]=a=>t(d).party_a_name=a),placeholder:"\u8BF7\u9009\u62E9\u7532\u65B9",onClick:l[10]||(l[10]=a=>k.value=!0),clearable:"",style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(f,{span:12},{default:u(()=>[e(n,{"label-width":"100px",label:"\u4E59\u65B9",prop:"field131"},{default:u(()=>[e(p,{disabled:!0,modelValue:t(d).party_b_name,"onUpdate:modelValue":l[11]||(l[11]=a=>t(d).party_b_name=a),placeholder:"\u8BF7\u9009\u62E9\u4E59\u65B9",clearable:"",style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(f,{span:12},{default:u(()=>[e(n,{"label-width":"100px",label:"\u5408\u540C\u7C7B\u578B",prop:"contract_type"},{default:u(()=>[e(H,{modelValue:t(d).contract_type,"onUpdate:modelValue":l[12]||(l[12]=a=>t(d).contract_type=a),placeholder:"\u8BF7\u9009\u62E9\u5408\u540C\u7C7B\u578B",clearable:"",style:{width:"100%"}},{default:u(()=>[(r(!0),B(Z,null,de(t(le),(a,v)=>(r(),E(A,{key:v,label:a.name,value:a.id},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(f,{span:12},{default:u(()=>[e(n,{"label-width":"100px",label:"\u5408\u540C\u7F16\u53F7",prop:"field133"},{default:u(()=>[e(p,{placeholder:"\u7CFB\u7EDF\u81EA\u52A8\u751F\u6210",modelValue:t(d).contract_no,"onUpdate:modelValue":l[13]||(l[13]=a=>t(d).contract_no=a),clearable:"",style:{width:"100%"},disabled:!0},null,8,["modelValue"])]),_:1})]),_:1})]),_:1})]),_:1})]),c("p",hu,[e(s,{type:"primary",size:"large",onClick:ve},{default:u(()=>[i("\u786E\u8BA4")]),_:1}),e(s,{type:"info",size:"large",onClick:j},{default:u(()=>[i("\u8FD4\u56DE")]),_:1})]),e(P,{modelValue:t(k),"onUpdate:modelValue":l[14]||(l[14]=a=>D(k)?k.value=a:null)},{default:u(()=>[e(yu,{companyTypeList:t(O).dictTypeLists,type:30,onCustomEvent:_e},null,8,["companyTypeList"])]),_:1},8,["modelValue"])]),_:1},8,["modelValue"]),e(P,{modelValue:t(I),"onUpdate:modelValue":l[16]||(l[16]=a=>D(I)?I.value=a:null),onClose:T},{default:u(()=>[Au,t(N)?(r(),B("div",wu," \u8BF7\u786E\u8BA4\u4FE1\u606F\u662F\u5426\u6709\u8BEF,\u53D1\u9001\u5408\u540C,\u8BF7\u786E\u8BA4\u4FE1\u606F\u662F\u5426\u6709\u8BEF,\u53D1\u9001\u7535\u5B50\u5408\u540C\u540E\u77ED\u65F6\u95F4\u5185\u5C06\u4E0D\u53EF\u518D\u6B21\u53D1\u9001. ")):(r(),B("div",gu," \u786E\u8BA4\u7B7E\u7EA6\u77ED\u4FE1\u5C06\u572860\u79D2\u540E\u53D1\u9001,\u8BF7\u6CE8\u610F\u67E5\u6536,\u5E76\u70B9\u51FB\u77ED\u4FE1\u94FE\u63A5\u8FDB\u884C\u7EBF\u4E0A\u5408\u540C\u7B7E\u7EA6 ")),c("p",Du,[t(N)?(r(),E(s,{key:0,type:"primary",size:"large",onClick:be},{default:u(()=>[i("\u786E\u8BA4")]),_:1})):(r(),E(s,{key:1,type:"primary",size:"large",onClick:he},{default:u(()=>[i("\u786E\u8BA4")]),_:1})),e(s,{type:"info",size:"large",onClick:T},{default:u(()=>[i("\u8FD4\u56DE")]),_:1})])]),_:1},8,["modelValue"]),e(P,{modelValue:t(h),"onUpdate:modelValue":l[18]||(l[18]=a=>D(h)?h.value=a:null),onClose:ae},{default:u(()=>[ku,c("div",null,[Vu,e(J,{ref:"formRef","label-width":"90px"},{default:u(()=>[e(X,null,{default:u(()=>[e(f,{span:12},{default:u(()=>[e(n,{label:"\u516C\u53F8\u540D\u79F0",prop:"company_name"},{default:u(()=>[e(p,{placeholder:"\u8BF7\u8F93\u5165\u516C\u53F8\u540D\u79F0",clearable:"",value:t(y).company_name,readonly:"",style:{width:"100%"}},null,8,["value"])]),_:1})]),_:1}),e(f,{span:12},{default:u(()=>[e(n,{label:"\u4F01\u4E1A\u4EE3\u7801",prop:"company_name"},{default:u(()=>[e(p,{placeholder:"\u8BF7\u8F93\u5165\u4F01\u4E1A\u4EE3\u7801",clearable:"",value:t(y).organization_code,readonly:"",style:{width:"100%"}},null,8,["value"])]),_:1})]),_:1}),e(f,{span:12},{default:u(()=>[e(n,{label:"\u4E3B\u8981\u8054\u7CFB\u4EBA",prop:"company_name"},{default:u(()=>[e(p,{placeholder:"\u8BF7\u8F93\u5165\u4E3B\u8981\u8054\u7CFB\u4EBA",clearable:"",value:t(y).master_name,readonly:"",style:{width:"100%"}},null,8,["value"])]),_:1})]),_:1}),e(f,{span:12},{default:u(()=>[e(n,{label:"\u624B\u673A\u53F7\u7801",prop:"company_name"},{default:u(()=>[e(p,{placeholder:"\u8BF7\u8F93\u5165\u624B\u673A\u53F7\u7801",clearable:"",value:t(y).master_phone,readonly:"",style:{width:"100%"}},null,8,["value"])]),_:1})]),_:1})]),_:1})]),_:1},512)]),c("p",xu,[e(s,{type:"primary",size:"large",onClick:l[17]||(l[17]=a=>xe(t(y).id))},{default:u(()=>[i("\u786E\u8BA4")]),_:1}),e(s,{type:"warning",size:"large",onClick:te},{default:u(()=>[i("\u4FEE\u6539")]),_:1}),e(s,{type:"info",size:"large",onClick:ae},{default:u(()=>[i("\u8FD4\u56DE")]),_:1})])]),_:1},8,["modelValue"]),e(P,{modelValue:t(S),"onUpdate:modelValue":l[20]||(l[20]=a=>D(S)?S.value=a:null),onClose:G},{default:u(()=>[Lu,c("div",null,[Pu,e(J,{ref:"formRef","label-width":"90px"},{default:u(()=>[e(X,null,{default:u(()=>[e(f,{span:24},{default:u(()=>[e(n,{label:"\u516C\u53F8\u540D\u79F0",prop:"company_name"},{default:u(()=>[e(p,{placeholder:"\u8BF7\u8F93\u5165\u516C\u53F8\u540D\u79F0",clearable:"",value:t(y).company_name,readonly:"",style:{width:"100%"}},null,8,["value"])]),_:1})]),_:1}),e(f,{span:12},{default:u(()=>[e(n,{label:"\u4F01\u4E1A\u4EE3\u7801",prop:"organization_code"},{default:u(()=>[e(p,{placeholder:"\u8BF7\u8F93\u5165\u4F01\u4E1A\u4EE3\u7801",clearable:"",value:t(y).organization_code,readonly:"",style:{width:"100%"}},null,8,["value"])]),_:1})]),_:1}),e(f,{span:12},{default:u(()=>[e(n,{label:"\u4E3B\u8981\u8054\u7CFB\u4EBA",prop:"master_name"},{default:u(()=>[e(p,{placeholder:"\u8BF7\u8F93\u5165\u4E3B\u8981\u8054\u7CFB\u4EBA",clearable:"",value:t(y).master_name,readonly:"",style:{width:"100%"}},null,8,["value"])]),_:1})]),_:1}),e(f,{span:12},{default:u(()=>[e(n,{label:"\u624B\u673A\u53F7\u7801",prop:"master_phone"},{default:u(()=>[e(p,{placeholder:"\u8BF7\u8F93\u5165\u624B\u673A\u53F7\u7801",clearable:"",value:t(y).master_phone,readonly:"",style:{width:"100%"}},null,8,["value"])]),_:1})]),_:1}),e(f,{span:12},{default:u(()=>[e(n,{label:"\u90AE\u7BB1",prop:"master_email"},{default:u(()=>[e(p,{placeholder:"\u8BF7\u8F93\u5165\u90AE\u7BB1",clearable:"",value:t(y).master_email,readonly:"",style:{width:"100%"}},null,8,["value"])]),_:1})]),_:1})]),_:1})]),_:1},512)]),c("p",Uu,[e(s,{type:"primary",size:"large",onClick:l[19]||(l[19]=a=>fe(t(y).id))},{default:u(()=>[i("\u786E\u8BA4")]),_:1}),e(s,{type:"warning",size:"large",onClick:te},{default:u(()=>[i("\u4FEE\u6539")]),_:1}),e(s,{type:"info",size:"large",onClick:G},{default:u(()=>[i("\u8FD4\u56DE")]),_:1})])]),_:1},8,["modelValue"])])}}});export{Aa as default}; diff --git a/public/admin/assets/index.c669c12a.js b/public/admin/assets/index.c669c12a.js new file mode 100644 index 000000000..5139351a4 --- /dev/null +++ b/public/admin/assets/index.c669c12a.js @@ -0,0 +1 @@ +import{x as c,y as u,I as f}from"./element-plus.4328d892.js";import{_ as y}from"./index.af446662.js";import{d as i,r as x,o as m,c as a,U as o,L as p,u as b,k as v,T as g,a7 as E}from"./@vue.51d7f2d8.js";import{d as k}from"./index.37f7aea6.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./index.fe1d30dd.js";import"./index.5759a1a6.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.5f944d34.js";import"./index.vue_vue_type_script_setup_true_lang.dc835bba.js";import"./usePaging.2ad8e1e6.js";import"./vue3-video-play.b911321b.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const C={class:"material-index"},T=i({name:"material"}),V=i({...T,setup(z){const n=[{type:"image",name:"\u56FE\u7247"},{type:"video",name:"\u89C6\u9891"}],e=x("image");return(h,r)=>{const s=y,_=c,l=u,d=f;return m(),a("div",C,[o(d,{class:"!border-none",shadow:"never"},{default:p(()=>[o(l,{modelValue:b(e),"onUpdate:modelValue":r[0]||(r[0]=t=>v(e)?e.value=t:null)},{default:p(()=>[(m(),a(g,null,E(n,t=>o(_,{label:t.name,name:t.type,index:t.type,key:t.type,lazy:""},{default:p(()=>[o(s,{type:t.type,mode:"page","file-size":"120px",limit:-1,"page-size":20},null,8,["type"])]),_:2},1032,["label","name","index"])),64))]),_:1},8,["modelValue"])]),_:1})])}}});const xt=k(V,[["__scopeId","data-v-d051c36b"]]);export{xt as default}; diff --git a/public/admin/assets/index.c74feb32.js b/public/admin/assets/index.c74feb32.js new file mode 100644 index 000000000..073214766 --- /dev/null +++ b/public/admin/assets/index.c74feb32.js @@ -0,0 +1 @@ +import{B as oe,C as ue,M as le,N as ne,w as se,D as re,I as pe,O as ie,P as ce,L as de,Q as _e}from"./element-plus.4328d892.js";import{_ as me}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{u as fe}from"./vue-router.9f65afb1.js";import{u as ye}from"./usePaging.2ad8e1e6.js";import{u as Ee}from"./useDictOptions.8d37e54b.js";import{d as Ce,e as Be}from"./contract.152e3bc2.js";import{d as T,s as Fe,r as _,$,a4 as ve,af as be,o as l,c as m,U as t,L as a,u as o,T as D,a7 as M,K as d,R as p,M as w,a as E,S as V,Q as ke,k as R,bf as he,be as ge}from"./@vue.51d7f2d8.js";import"./lodash.08438971.js";import{d as De}from"./index.ed71ac09.js";import{d as we}from"./dict.6c560e38.js";import{g as Ve,s as Ae}from"./company.8a1c349a.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./axios.105476b3.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const xe=F=>(he("data-v-4a76ea26"),F=F(),ge(),F),Pe={class:"mt-4"},Se={key:0,style:{color:"#67c23a"}},Le={key:1,style:{color:"#fe0000"}},Ue={class:"flex mt-4 justify-end"},Ie=xe(()=>E("h1",null,"\u91CD\u8981\u63D0\u9192",-1)),qe={key:0,class:"content"},Ne={key:1,class:"content"},$e={class:"btn_menu"},Me=T({name:"contractLists"}),Re=T({...Me,setup(F){var P;const A=fe();Fe(),_(!1);const x=_([]),f=_(!1),v=_(!1),b=_(""),k=_(""),z=s=>{f.value=!0,v.value=!0,b.value=s.id,k.value=s.party_b},h=()=>{f.value=!1,v.value=!1},O=async()=>{await Ve({id:k.value,contract_id:b.value}),g(),h()},Q=async()=>{await Ae({id:k.value,contract_id:b.value}),g(),h()},n=$({company_id:"",contract_type:"",contract_no:"",status:"",party_a:"",party_b:"",area_manager:"",type:""}),j=$([{id:"1",name:"\u5DF2\u7B7E\u7EA6"},{id:"0",name:"\u672A\u7B7E\u7EA6"}]);A.query.type&&(n.type=(P=A.query.type)==null?void 0:P.toString());const G=_([]),K=s=>{G.value=s.map(({id:u})=>u)};Ee(""),we({type_id:7}).then(s=>{x.value=s.lists});const{pager:C,getLists:g,resetParams:Z,resetPage:H}=ye({fetchFun:Be,params:n});_();const J=s=>{Ce({id:s.id}).then(u=>{W(u.url,"")})},W=(s,u)=>{let i=document.createElement("a");i.href=s,i.download=u,document.body.appendChild(i),i.click(),document.body.removeChild(i)};return g(),(s,u)=>{const i=oe,y=ue,S=le,L=ne,r=se,X=re,U=pe,c=ie,I=ve("router-link"),Y=ce,ee=me,te=de,q=be("perms"),ae=_e;return l(),m("div",null,[t(U,{class:"!border-none mb-4",shadow:"never"},{default:a(()=>[t(X,{class:"mb-[-16px]",model:o(n),inline:""},{default:a(()=>[t(y,{label:"\u516C\u53F8\u540D\u79F0",prop:"company_id"},{default:a(()=>[t(i,{class:"w-[280px]",modelValue:o(n).company_id,"onUpdate:modelValue":u[0]||(u[0]=e=>o(n).company_id=e),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u516C\u53F8"},null,8,["modelValue"])]),_:1}),t(y,{label:"\u5408\u540C\u7C7B\u578B",prop:"contract_type"},{default:a(()=>[t(L,{modelValue:o(n).contract_type,"onUpdate:modelValue":u[1]||(u[1]=e=>o(n).contract_type=e),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u5408\u540C\u7C7B\u578B"},{default:a(()=>[(l(!0),m(D,null,M(o(x),e=>(l(),d(S,{key:e.label,value:e.id,label:e.name},null,8,["value","label"]))),128))]),_:1},8,["modelValue"])]),_:1}),t(y,{label:"\u5408\u540C\u7F16\u53F7",prop:"contract_no"},{default:a(()=>[t(i,{class:"w-[280px]",modelValue:o(n).contract_no,"onUpdate:modelValue":u[2]||(u[2]=e=>o(n).contract_no=e),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u5408\u540C\u7F16\u53F7"},null,8,["modelValue"])]),_:1}),t(y,{label:"\u72B6\u6001",prop:"status"},{default:a(()=>[t(L,{modelValue:o(n).status,"onUpdate:modelValue":u[3]||(u[3]=e=>o(n).status=e),clearable:"",placeholder:"\u8BF7\u9009\u62E9\u72B6\u6001"},{default:a(()=>[(l(!0),m(D,null,M(o(j),e=>(l(),d(S,{key:e.label,value:e.id,label:e.name},null,8,["value","label"]))),128))]),_:1},8,["modelValue"])]),_:1}),t(y,{label:"\u7532\u65B9\u7247\u533A\u7ECF\u7406",prop:"area_manager"},{default:a(()=>[t(i,{class:"w-[280px]",modelValue:o(n).area_manager,"onUpdate:modelValue":u[4]||(u[4]=e=>o(n).area_manager=e),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u7532\u65B9\u7247\u533A\u7ECF\u7406"},null,8,["modelValue"])]),_:1}),t(y,null,{default:a(()=>[t(r,{type:"primary",onClick:o(H)},{default:a(()=>[p("\u67E5\u8BE2")]),_:1},8,["onClick"]),t(r,{onClick:o(Z)},{default:a(()=>[p("\u91CD\u7F6E")]),_:1},8,["onClick"])]),_:1})]),_:1},8,["model"])]),_:1}),w((l(),d(U,{class:"!border-none",shadow:"never"},{default:a(()=>[E("div",Pe,[t(Y,{data:o(C).lists,onSelectionChange:K},{default:a(()=>[t(c,{label:"id",prop:"id","show-overflow-tooltip":""}),t(c,{label:"\u5408\u540C\u7C7B\u578B",prop:"contract_type_name","show-overflow-tooltip":""}),t(c,{label:"\u5408\u540C\u7F16\u53F7",prop:"contract_no","show-overflow-tooltip":""}),t(c,{label:"\u7532\u65B9",prop:"party_a_name","show-overflow-tooltip":""},{default:a(e=>{var B,N;return[E("span",null,V((N=(B=e.row)==null?void 0:B.party_a_info)==null?void 0:N.company_name),1)]}),_:1}),t(c,{label:"\u4E59\u65B9",prop:"party_b_name","show-overflow-tooltip":""}),t(c,{label:"\u7532\u65B9\u7247\u533A\u7ECF\u7406",prop:"area_manager_name","show-overflow-tooltip":""}),t(c,{label:"\u7C7B\u578B",prop:"type","show-overflow-tooltip":""},{default:a(e=>[E("span",null,V(e.row.type==1?"\u516C\u53F8":e.row.type==0?"":"\u4E2A\u4EBA"),1)]),_:1}),t(c,{label:"\u72B6\u6001",prop:"status_name","show-overflow-tooltip":""},{default:a(e=>[e.row.status_name=="\u5DF2\u7B7E\u7EA6"?(l(),m("span",Se,"\u5DF2\u7B7E\u7EA6")):(l(),m("span",Le,"\u672A\u7B7E\u7EA6"))]),_:1}),t(c,{label:"\u64CD\u4F5C",width:"180",fixed:"right",align:"center"},{default:a(({row:e})=>[t(r,{type:"primary",link:""},{default:a(()=>[t(I,{to:{path:"/contract/detail",query:{id:e.id}}},{default:a(()=>[p(V(e.status?"\u8BE6\u60C5":"\u5BA1\u6838"),1)]),_:2},1032,["to"])]),_:2},1024),e.status==0?(l(),m(D,{key:0},[e.check_status==1?(l(),d(r,{key:0,type:"warning",link:""},{default:a(()=>[t(I,{to:{path:"/contract/detail",query:{id:e.id}}},{default:a(()=>[p("\u5F85\u5BA1\u6838")]),_:2},1032,["to"])]),_:2},1024)):e.check_status==2?w((l(),d(r,{key:1,type:"primary",link:"",onClick:B=>z(e)},{default:a(()=>[p("\u53D1\u9001\u5408\u540C")]),_:2},1032,["onClick"])),[[q,["contract.contract/contract_send"]]]):e.check_status==3?w((l(),d(r,{key:2,type:"primary",link:"",onClick:B=>(f.value=!0,k.value=e.party_b,b.value=e.id)},{default:a(()=>[p("\u53D1\u9001\u77ED\u4FE1")]),_:2},1032,["onClick"])),[[q,["contract.contract/contract_send_again"]]]):ke("",!0)],64)):(l(),d(r,{key:1,type:"primary",link:"",onClick:B=>J(e)},{default:a(()=>[p(" \u4E0B\u8F7D\u8BC1\u636E\u5305 ")]),_:2},1032,["onClick"]))]),_:1})]),_:1},8,["data"])]),E("div",Ue,[t(ee,{modelValue:o(C),"onUpdate:modelValue":u[5]||(u[5]=e=>R(C)?C.value=e:null),onChange:o(g)},null,8,["modelValue","onChange"])])]),_:1})),[[ae,o(C).loading]]),t(te,{modelValue:o(f),"onUpdate:modelValue":u[6]||(u[6]=e=>R(f)?f.value=e:null),onClose:h},{default:a(()=>[Ie,o(v)?(l(),m("div",qe," \u8BF7\u786E\u8BA4\u4FE1\u606F\u662F\u5426\u6709\u8BEF,\u53D1\u9001\u5408\u540C,\u8BF7\u786E\u8BA4\u4FE1\u606F\u662F\u5426\u6709\u8BEF,\u53D1\u9001\u7535\u5B50\u5408\u540C\u540E\u77ED\u65F6\u95F4\u5185\u5C06\u4E0D\u53EF\u518D\u6B21\u53D1\u9001. ")):(l(),m("div",Ne," \u786E\u8BA4\u7B7E\u7EA6\u77ED\u4FE1\u5C06\u572860\u79D2\u540E\u53D1\u9001,\u8BF7\u6CE8\u610F\u67E5\u6536,\u5E76\u70B9\u51FB\u77ED\u4FE1\u94FE\u63A5\u8FDB\u884C\u7EBF\u4E0A\u5408\u540C\u7B7E\u7EA6 ")),E("p",$e,[o(v)?(l(),d(r,{key:0,type:"primary",size:"large",onClick:O},{default:a(()=>[p("\u786E\u8BA4")]),_:1})):(l(),d(r,{key:1,type:"primary",size:"large",onClick:Q},{default:a(()=>[p("\u786E\u8BA4")]),_:1})),t(r,{type:"info",size:"large",onClick:h},{default:a(()=>[p("\u8FD4\u56DE")]),_:1})])]),_:1},8,["modelValue"])])}}});const wt=De(Re,[["__scopeId","data-v-4a76ea26"]]);export{wt as default}; diff --git a/public/admin/assets/index.c901182b.js b/public/admin/assets/index.c901182b.js new file mode 100644 index 000000000..a5ef21fa4 --- /dev/null +++ b/public/admin/assets/index.c901182b.js @@ -0,0 +1 @@ +import{a6 as Q,B as j,C as z,M as G,N as H,w as J,D as W,I as X,O as Y,P as Z,Q as ee}from"./element-plus.4328d892.js";import{_ as te}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{k as oe,f as ae,b as le}from"./index.aa9bb752.js";import{d as P,s as ne,r as D,$ as ie,a4 as se,af as ue,o as n,c as x,U as e,L as t,u as o,a8 as T,R as s,a as B,M as p,K as d,k as re,Q as de,n as $}from"./@vue.51d7f2d8.js";import{i as me,f as pe}from"./dict.927f1fc7.js";import{u as ce}from"./usePaging.2ad8e1e6.js";import{_ as _e}from"./edit.vue_vue_type_script_setup_true_lang.1f57918e.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.fa872673.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";const fe={class:"dict-type"},ye={class:"mt-4"},ve={class:"flex justify-end mt-4"},Ce=P({name:"dictType"}),it=P({...Ce,setup(ge){const y=ne(),v=D(!1),u=ie({name:"",type:"",status:""}),{pager:c,getLists:C,resetPage:b,resetParams:R}=ce({fetchFun:pe,params:u}),k=D([]),K=i=>{k.value=i.map(({id:a})=>a)},N=async()=>{var i;v.value=!0,await $(),(i=y.value)==null||i.open("add")},S=async i=>{var a,_;v.value=!0,await $(),(a=y.value)==null||a.open("edit"),(_=y.value)==null||_.setFormData(i)},w=async i=>{await ae.confirm("\u786E\u5B9A\u8981\u5220\u9664\uFF1F"),await me({id:i}),C()};return C(),(i,a)=>{const _=j,g=z,E=G,U=H,m=J,A=W,h=X,F=le,r=Y,V=Q,I=se("router-link"),L=Z,q=te,f=ue("perms"),M=ee;return n(),x("div",fe,[e(h,{class:"!border-none",shadow:"never"},{default:t(()=>[e(A,{ref:"formRef",class:"mb-[-16px]",model:o(u),inline:""},{default:t(()=>[e(g,{label:"\u5B57\u5178\u540D\u79F0"},{default:t(()=>[e(_,{class:"w-[280px]",modelValue:o(u).name,"onUpdate:modelValue":a[0]||(a[0]=l=>o(u).name=l),clearable:"",onKeyup:T(o(b),["enter"])},null,8,["modelValue","onKeyup"])]),_:1}),e(g,{label:"\u5B57\u5178\u7C7B\u578B"},{default:t(()=>[e(_,{class:"w-[280px]",modelValue:o(u).type,"onUpdate:modelValue":a[1]||(a[1]=l=>o(u).type=l),clearable:"",onKeyup:T(o(b),["enter"])},null,8,["modelValue","onKeyup"])]),_:1}),e(g,{label:"\u72B6\u6001"},{default:t(()=>[e(U,{class:"w-[280px]",modelValue:o(u).status,"onUpdate:modelValue":a[2]||(a[2]=l=>o(u).status=l)},{default:t(()=>[e(E,{label:"\u5168\u90E8",value:""}),e(E,{label:"\u6B63\u5E38",value:1}),e(E,{label:"\u505C\u7528",value:0})]),_:1},8,["modelValue"])]),_:1}),e(g,null,{default:t(()=>[e(m,{type:"primary",onClick:o(b)},{default:t(()=>[s("\u67E5\u8BE2")]),_:1},8,["onClick"]),e(m,{onClick:o(R)},{default:t(()=>[s("\u91CD\u7F6E")]),_:1},8,["onClick"])]),_:1})]),_:1},8,["model"])]),_:1}),e(h,{class:"!border-none mt-4",shadow:"never"},{default:t(()=>[B("div",null,[p((n(),d(m,{type:"primary",onClick:N},{icon:t(()=>[e(F,{name:"el-icon-Plus"})]),default:t(()=>[s(" \u65B0\u589E ")]),_:1})),[[f,["setting.dict.dict_type/add"]]]),p((n(),d(m,{disabled:!o(k).length,type:"danger",onClick:a[3]||(a[3]=l=>w(o(k)))},{icon:t(()=>[e(F,{name:"el-icon-Delete"})]),default:t(()=>[s(" \u5220\u9664 ")]),_:1},8,["disabled"])),[[f,["setting.dict.dict_type/delete"]]])]),p((n(),x("div",ye,[B("div",null,[e(L,{data:o(c).lists,size:"large",onSelectionChange:K},{default:t(()=>[e(r,{type:"selection",width:"55"}),e(r,{label:"ID",prop:"id"}),e(r,{label:"\u5B57\u5178\u540D\u79F0",prop:"name","min-width":"120"}),e(r,{label:"\u5B57\u5178\u7C7B\u578B",prop:"type","min-width":"120"}),e(r,{label:"\u72B6\u6001"},{default:t(({row:l})=>[l.status==1?(n(),d(V,{key:0},{default:t(()=>[s("\u6B63\u5E38")]),_:1})):(n(),d(V,{key:1,type:"danger"},{default:t(()=>[s("\u505C\u7528")]),_:1}))]),_:1}),e(r,{label:"\u5907\u6CE8",prop:"remark","show-tooltip-when-overflow":""}),e(r,{label:"\u521B\u5EFA\u65F6\u95F4",prop:"create_time","min-width":"180"}),e(r,{label:"\u64CD\u4F5C",width:"190",fixed:"right"},{default:t(({row:l})=>[p((n(),d(m,{link:"",type:"primary",onClick:O=>S(l)},{default:t(()=>[s(" \u7F16\u8F91 ")]),_:2},1032,["onClick"])),[[f,["setting.dict.dict_type/edit"]]]),p((n(),d(m,{type:"primary",link:""},{default:t(()=>[e(I,{to:{path:o(oe)("setting.dict.dict_data/lists"),query:{id:l.id}}},{default:t(()=>[s(" \u6570\u636E\u7BA1\u7406 ")]),_:2},1032,["to"])]),_:2},1024)),[[f,["setting.dict.dict_data/lists"]]]),p((n(),d(m,{link:"",type:"danger",onClick:O=>w(l.id)},{default:t(()=>[s(" \u5220\u9664 ")]),_:2},1032,["onClick"])),[[f,["setting.dict.dict_type/delete"]]])]),_:1})]),_:1},8,["data"])]),B("div",ve,[e(q,{modelValue:o(c),"onUpdate:modelValue":a[4]||(a[4]=l=>re(c)?c.value=l:null),onChange:o(C)},null,8,["modelValue","onChange"])])])),[[M,o(c).loading]])]),_:1}),o(v)?(n(),d(_e,{key:0,ref_key:"editRef",ref:y,onSuccess:o(C),onClose:a[5]||(a[5]=l=>v.value=!1)},null,8,["onSuccess"])):de("",!0)])}}});export{it as default}; diff --git a/public/admin/assets/index.ca74e5a4.js b/public/admin/assets/index.ca74e5a4.js new file mode 100644 index 000000000..fc4c28caa --- /dev/null +++ b/public/admin/assets/index.ca74e5a4.js @@ -0,0 +1 @@ +import{a6 as Q,B as j,C as z,M as G,N as H,w as J,D as W,I as X,O as Y,P as Z,Q as ee}from"./element-plus.4328d892.js";import{_ as te}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{k as oe,f as ae,b as le}from"./index.37f7aea6.js";import{d as P,s as ne,r as D,$ as ie,a4 as se,af as ue,o as n,c as x,U as e,L as t,u as o,a8 as T,R as s,a as B,M as p,K as d,k as re,Q as de,n as $}from"./@vue.51d7f2d8.js";import{i as me,f as pe}from"./dict.58face92.js";import{u as ce}from"./usePaging.2ad8e1e6.js";import{_ as _e}from"./edit.vue_vue_type_script_setup_true_lang.383f31fa.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.5759a1a6.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";const fe={class:"dict-type"},ye={class:"mt-4"},ve={class:"flex justify-end mt-4"},Ce=P({name:"dictType"}),it=P({...Ce,setup(ge){const y=ne(),v=D(!1),u=ie({name:"",type:"",status:""}),{pager:c,getLists:C,resetPage:b,resetParams:R}=ce({fetchFun:pe,params:u}),k=D([]),K=i=>{k.value=i.map(({id:a})=>a)},N=async()=>{var i;v.value=!0,await $(),(i=y.value)==null||i.open("add")},S=async i=>{var a,_;v.value=!0,await $(),(a=y.value)==null||a.open("edit"),(_=y.value)==null||_.setFormData(i)},w=async i=>{await ae.confirm("\u786E\u5B9A\u8981\u5220\u9664\uFF1F"),await me({id:i}),C()};return C(),(i,a)=>{const _=j,g=z,E=G,U=H,m=J,A=W,h=X,F=le,r=Y,V=Q,I=se("router-link"),L=Z,q=te,f=ue("perms"),M=ee;return n(),x("div",fe,[e(h,{class:"!border-none",shadow:"never"},{default:t(()=>[e(A,{ref:"formRef",class:"mb-[-16px]",model:o(u),inline:""},{default:t(()=>[e(g,{label:"\u5B57\u5178\u540D\u79F0"},{default:t(()=>[e(_,{class:"w-[280px]",modelValue:o(u).name,"onUpdate:modelValue":a[0]||(a[0]=l=>o(u).name=l),clearable:"",onKeyup:T(o(b),["enter"])},null,8,["modelValue","onKeyup"])]),_:1}),e(g,{label:"\u5B57\u5178\u7C7B\u578B"},{default:t(()=>[e(_,{class:"w-[280px]",modelValue:o(u).type,"onUpdate:modelValue":a[1]||(a[1]=l=>o(u).type=l),clearable:"",onKeyup:T(o(b),["enter"])},null,8,["modelValue","onKeyup"])]),_:1}),e(g,{label:"\u72B6\u6001"},{default:t(()=>[e(U,{class:"w-[280px]",modelValue:o(u).status,"onUpdate:modelValue":a[2]||(a[2]=l=>o(u).status=l)},{default:t(()=>[e(E,{label:"\u5168\u90E8",value:""}),e(E,{label:"\u6B63\u5E38",value:1}),e(E,{label:"\u505C\u7528",value:0})]),_:1},8,["modelValue"])]),_:1}),e(g,null,{default:t(()=>[e(m,{type:"primary",onClick:o(b)},{default:t(()=>[s("\u67E5\u8BE2")]),_:1},8,["onClick"]),e(m,{onClick:o(R)},{default:t(()=>[s("\u91CD\u7F6E")]),_:1},8,["onClick"])]),_:1})]),_:1},8,["model"])]),_:1}),e(h,{class:"!border-none mt-4",shadow:"never"},{default:t(()=>[B("div",null,[p((n(),d(m,{type:"primary",onClick:N},{icon:t(()=>[e(F,{name:"el-icon-Plus"})]),default:t(()=>[s(" \u65B0\u589E ")]),_:1})),[[f,["setting.dict.dict_type/add"]]]),p((n(),d(m,{disabled:!o(k).length,type:"danger",onClick:a[3]||(a[3]=l=>w(o(k)))},{icon:t(()=>[e(F,{name:"el-icon-Delete"})]),default:t(()=>[s(" \u5220\u9664 ")]),_:1},8,["disabled"])),[[f,["setting.dict.dict_type/delete"]]])]),p((n(),x("div",ye,[B("div",null,[e(L,{data:o(c).lists,size:"large",onSelectionChange:K},{default:t(()=>[e(r,{type:"selection",width:"55"}),e(r,{label:"ID",prop:"id"}),e(r,{label:"\u5B57\u5178\u540D\u79F0",prop:"name","min-width":"120"}),e(r,{label:"\u5B57\u5178\u7C7B\u578B",prop:"type","min-width":"120"}),e(r,{label:"\u72B6\u6001"},{default:t(({row:l})=>[l.status==1?(n(),d(V,{key:0},{default:t(()=>[s("\u6B63\u5E38")]),_:1})):(n(),d(V,{key:1,type:"danger"},{default:t(()=>[s("\u505C\u7528")]),_:1}))]),_:1}),e(r,{label:"\u5907\u6CE8",prop:"remark","show-tooltip-when-overflow":""}),e(r,{label:"\u521B\u5EFA\u65F6\u95F4",prop:"create_time","min-width":"180"}),e(r,{label:"\u64CD\u4F5C",width:"190",fixed:"right"},{default:t(({row:l})=>[p((n(),d(m,{link:"",type:"primary",onClick:O=>S(l)},{default:t(()=>[s(" \u7F16\u8F91 ")]),_:2},1032,["onClick"])),[[f,["setting.dict.dict_type/edit"]]]),p((n(),d(m,{type:"primary",link:""},{default:t(()=>[e(I,{to:{path:o(oe)("setting.dict.dict_data/lists"),query:{id:l.id}}},{default:t(()=>[s(" \u6570\u636E\u7BA1\u7406 ")]),_:2},1032,["to"])]),_:2},1024)),[[f,["setting.dict.dict_data/lists"]]]),p((n(),d(m,{link:"",type:"danger",onClick:O=>w(l.id)},{default:t(()=>[s(" \u5220\u9664 ")]),_:2},1032,["onClick"])),[[f,["setting.dict.dict_type/delete"]]])]),_:1})]),_:1},8,["data"])]),B("div",ve,[e(q,{modelValue:o(c),"onUpdate:modelValue":a[4]||(a[4]=l=>re(c)?c.value=l:null),onChange:o(C)},null,8,["modelValue","onChange"])])])),[[M,o(c).loading]])]),_:1}),o(v)?(n(),d(_e,{key:0,ref_key:"editRef",ref:y,onSuccess:o(C),onClose:a[5]||(a[5]=l=>v.value=!1)},null,8,["onSuccess"])):de("",!0)])}}});export{it as default}; diff --git a/public/admin/assets/index.d0f511d4.js b/public/admin/assets/index.d0f511d4.js new file mode 100644 index 000000000..035a83b9d --- /dev/null +++ b/public/admin/assets/index.d0f511d4.js @@ -0,0 +1 @@ +import{_ as T}from"./index.be5645df.js";import{r as C,b as N,d as $}from"./index.ed71ac09.js";import{G as z,H as G,C as L,D as q,I as H,w as K,B as M,O,P}from"./element-plus.4328d892.js";import{d as x,$ as j,e as J,af as Q,o as i,c as h,U as t,L as e,u as c,a,R as d,M as E,K as F,T as W,a7 as X,S as Y,bf as Z,be as tt}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./lodash.08438971.js";import"./@amap.8a62addd.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./@element-plus.a074d1f6.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";function et(){return C.get({url:"/setting.hot_search/getConfig"})}function ot(r){return C.post({url:"/setting.hot_search/setConfig",params:r})}const m=r=>(Z("data-v-bd261930"),r=r(),tt(),r),at={class:"hot-search"},st=m(()=>a("div",{class:"form-tips"},"\u9ED8\u8BA4\u5F00\u542F\uFF0C\u5173\u95ED\u5219\u524D\u7AEF\u4E0D\u663E\u793A\u8BE5\u529F\u80FD",-1)),nt={class:"lg:flex"},lt={class:"flex-1 min-w-0"},rt={class:"hot-search-phone mt-4 lg:mt-0 lg:ml-4 flex-none"},ut=m(()=>a("div",{class:"mb-4 text-center"},"- \u70ED\u641C\u9884\u89C8\u56FE -",-1)),it={class:"hot-search-phone-content"},ct={class:"search-com"},dt={class:"search-con flex items-center px-[15px]"},mt=m(()=>a("span",{class:"ml-[5px]"},"\u8BF7\u8F93\u5165\u5173\u952E\u8BCD\u641C\u7D22",-1)),_t=m(()=>a("div",{class:"hot-search-title"},"\u70ED\u95E8\u641C\u7D22",-1)),pt={class:"hot-search-text"},ht=x({name:"search"}),ft=x({...ht,setup(r){const n=j({status:1,data:[]}),B=J(()=>n.data.filter(o=>o.name).sort((o,l)=>l.sort-o.sort)),f=async()=>{try{const o=await et();for(const l in n)n[l]=o[l]}catch(o){console.log("\u83B7\u53D6=>",o)}},y=()=>{n.data.push({name:"",sort:0})},V=o=>{n.data.splice(o,1)},w=async()=>{try{await ot(n),f()}catch(o){console.log("\u4FDD\u5B58=>",o)}};return f(),(o,l)=>{const b=z,k=G,S=L,I=q,g=H,_=K,D=M,p=O,U=P,A=N,R=T,v=Q("perms");return i(),h("div",at,[t(g,{class:"!border-none",shadow:"never"},{default:e(()=>[t(I,{ref:"formRef",model:c(n),"label-width":"100px"},{default:e(()=>[t(S,{label:"\u529F\u80FD\u72B6\u6001",style:{"margin-bottom":"0"}},{default:e(()=>[a("div",null,[t(k,{modelValue:c(n).status,"onUpdate:modelValue":l[0]||(l[0]=s=>c(n).status=s)},{default:e(()=>[t(b,{label:1},{default:e(()=>[d("\u5F00\u542F")]),_:1}),t(b,{label:0},{default:e(()=>[d("\u5173\u95ED")]),_:1})]),_:1},8,["modelValue"]),st])]),_:1})]),_:1},8,["model"])]),_:1}),t(g,{class:"!border-none mt-4",shadow:"never"},{default:e(()=>[a("div",nt,[a("div",lt,[t(_,{type:"primary",class:"mb-4",onClick:y},{default:e(()=>[d("\u6DFB\u52A0")]),_:1}),t(U,{size:"large",data:c(n).data},{default:e(()=>[t(p,{label:"\u5173\u952E\u8BCD",prop:"describe","min-width":"160"},{default:e(({row:s})=>[t(D,{modelValue:s.name,"onUpdate:modelValue":u=>s.name=u,clearable:"",placeholder:"\u8BF7\u8F93\u5165\u5173\u952E\u5B57","show-word-limit":"",maxlength:"30"},null,8,["modelValue","onUpdate:modelValue"])]),_:1}),t(p,{label:"\u6392\u5E8F",prop:"describe","min-width":"160"},{default:e(({row:s})=>[t(D,{modelValue:s.sort,"onUpdate:modelValue":u=>s.sort=u,type:"number"},null,8,["modelValue","onUpdate:modelValue"])]),_:1}),t(p,{label:"\u64CD\u4F5C","min-width":"80",fixed:"right"},{default:e(({$index:s})=>[E((i(),F(_,{type:"danger",link:"",onClick:u=>V(s)},{default:e(()=>[d(" \u5220\u9664 ")]),_:2},1032,["onClick"])),[[v,["setting:storage:edit"]]])]),_:1})]),_:1},8,["data"])]),a("div",rt,[ut,a("div",it,[a("div",ct,[a("div",dt,[t(A,{name:"el-icon-Search",size:17}),mt])]),_t,a("div",pt,[(i(!0),h(W,null,X(c(B),(s,u)=>(i(),h("span",{key:u},Y(s.name),1))),128))])])])])]),_:1}),E((i(),F(R,null,{default:e(()=>[t(_,{type:"primary",onClick:w},{default:e(()=>[d("\u4FDD\u5B58")]),_:1})]),_:1})),[[v,["setting.hot_search/setConfig"]]])])}}});const Yt=$(ft,[["__scopeId","data-v-bd261930"]]);export{Yt as default}; diff --git a/public/admin/assets/index.d8d97bd4.js b/public/admin/assets/index.d8d97bd4.js new file mode 100644 index 000000000..04b565759 --- /dev/null +++ b/public/admin/assets/index.d8d97bd4.js @@ -0,0 +1 @@ +import{a6 as w,O as y,w as C,P as B,I as x,Q as D}from"./element-plus.4328d892.js";import{d as F}from"./message.39fcd3de.js";import{_ as L}from"./edit.vue_vue_type_script_setup_true_lang.4b359fcf.js";import{d as f,s as R,$ as T,af as $,o,c as N,M as d,u,K as a,L as t,U as i,R as l}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.aa9bb752.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.fa872673.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";const S=f({name:"shortLetter"}),kt=f({...S,setup(V){const p=R(),e=T({loading:!1,lists:[]}),c=async()=>{try{e.loading=!0,e.lists=await F(),e.loading=!1}catch{e.loading=!1}},g=r=>{var s;(s=p.value)==null||s.open(r)};return c(),(r,s)=>{const n=y,_=w,h=C,E=B,v=x,b=$("perms"),k=D;return o(),N("div",null,[d((o(),a(v,{class:"!border-none",shadow:"never"},{default:t(()=>[i(E,{size:"large",data:u(e).lists},{default:t(()=>[i(n,{label:"\u77ED\u4FE1\u6E20\u9053",prop:"name","min-width":"120"}),i(n,{label:"\u72B6\u6001","min-width":"120"},{default:t(({row:m})=>[m.status==1?(o(),a(_,{key:0},{default:t(()=>[l("\u5F00\u542F")]),_:1})):(o(),a(_,{key:1,type:"danger"},{default:t(()=>[l("\u5173\u95ED")]),_:1}))]),_:1}),i(n,{label:"\u64CD\u4F5C","min-width":"120",fixed:"right"},{default:t(({row:m})=>[d((o(),a(h,{type:"primary",link:"",onClick:z=>g(m.type)},{default:t(()=>[l(" \u8BBE\u7F6E ")]),_:2},1032,["onClick"])),[[b,["notice.sms_config/setConfig"]]])]),_:1})]),_:1},8,["data"])]),_:1})),[[k,u(e).loading]]),i(L,{ref_key:"editRef",ref:p,onSuccess:c},null,512)])}}});export{kt as default}; diff --git a/public/admin/assets/index.d91ffc2c.js b/public/admin/assets/index.d91ffc2c.js new file mode 100644 index 000000000..a3c221fec --- /dev/null +++ b/public/admin/assets/index.d91ffc2c.js @@ -0,0 +1 @@ +import{S as $,I as R,w as L,O as N,t as T,P as U,Q as P}from"./element-plus.4328d892.js";import{_ as Q}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{f as j,b as z}from"./index.aa9bb752.js";import{d as I,e as K,f as M}from"./article.188d8b86.js";import{u as O}from"./usePaging.2ad8e1e6.js";import{_ as q}from"./edit.vue_vue_type_script_setup_true_lang.390417cc.js";import{d as F,s as G,r as H,af as J,o as n,c as W,U as t,L as i,M as p,u as r,K as d,a as w,R as h,k as X,Q as Y,n as g}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.fa872673.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";const Z={class:"flex justify-end mt-4"},ee=F({name:"articleColumn"}),Ie=F({...ee,setup(te){const _=G(),f=H(!1),{pager:s,getLists:l}=O({fetchFun:M}),b=async()=>{var o;f.value=!0,await g(),(o=_.value)==null||o.open("add")},k=async o=>{var e,u;f.value=!0,await g(),(e=_.value)==null||e.open("edit"),(u=_.value)==null||u.getDetail(o)},y=async o=>{await j.confirm("\u786E\u5B9A\u8981\u5220\u9664\uFF1F"),await I({id:o}),l()},A=async(o,e)=>{try{await K({id:e,is_show:o}),l()}catch{l()}};return l(),(o,e)=>{const u=$,E=R,B=z,v=L,m=N,V=T,D=U,x=Q,C=J("perms"),S=P;return n(),W("div",null,[t(E,{class:"!border-none",shadow:"never"},{default:i(()=>[t(u,{type:"warning",title:"\u6E29\u99A8\u63D0\u793A\uFF1A\u7528\u4E8E\u7BA1\u7406\u7F51\u7AD9\u7684\u5206\u7C7B\uFF0C\u53EA\u53EF\u6DFB\u52A0\u5230\u4E00\u7EA7",closable:!1,"show-icon":""})]),_:1}),p((n(),d(E,{class:"!border-none mt-4",shadow:"never"},{default:i(()=>[w("div",null,[p((n(),d(v,{class:"mb-4",type:"primary",onClick:e[0]||(e[0]=a=>b())},{icon:i(()=>[t(B,{name:"el-icon-Plus"})]),default:i(()=>[h(" \u65B0\u589E ")]),_:1})),[[C,["article.articleCate/add"]]])]),t(D,{size:"large",data:r(s).lists},{default:i(()=>[t(m,{label:"\u680F\u76EE\u540D\u79F0",prop:"name","min-width":"120"}),t(m,{label:"\u6587\u7AE0\u6570",prop:"article_count","min-width":"120"}),t(m,{label:"\u72B6\u6001","min-width":"120"},{default:i(({row:a})=>[p(t(V,{modelValue:a.is_show,"onUpdate:modelValue":c=>a.is_show=c,"active-value":1,"inactive-value":0,onChange:c=>A(c,a.id)},null,8,["modelValue","onUpdate:modelValue","onChange"]),[[C,["article.articleCate/updateStatus"]]])]),_:1}),t(m,{label:"\u6392\u5E8F",prop:"sort","min-width":"120"}),t(m,{label:"\u64CD\u4F5C",width:"120",fixed:"right"},{default:i(({row:a})=>[p((n(),d(v,{type:"primary",link:"",onClick:c=>k(a)},{default:i(()=>[h(" \u7F16\u8F91 ")]),_:2},1032,["onClick"])),[[C,["article.articleCate/edit"]]]),p((n(),d(v,{type:"danger",link:"",onClick:c=>y(a.id)},{default:i(()=>[h(" \u5220\u9664 ")]),_:2},1032,["onClick"])),[[C,["article.articleCate/delete"]]])]),_:1})]),_:1},8,["data"]),w("div",Z,[t(x,{modelValue:r(s),"onUpdate:modelValue":e[1]||(e[1]=a=>X(s)?s.value=a:null),onChange:r(l)},null,8,["modelValue","onChange"])])]),_:1})),[[S,r(s).loading]]),r(f)?(n(),d(q,{key:0,ref_key:"editRef",ref:_,onSuccess:r(l),onClose:e[2]||(e[2]=a=>f.value=!1)},null,8,["onSuccess"])):Y("",!0)])}}});export{Ie as default}; diff --git a/public/admin/assets/index.dc663ded.js b/public/admin/assets/index.dc663ded.js new file mode 100644 index 000000000..75d7be6a2 --- /dev/null +++ b/public/admin/assets/index.dc663ded.js @@ -0,0 +1 @@ +import{_ as V}from"./index.13ef78d6.js";import{I as b,w as C}from"./element-plus.4328d892.js";import I from"./menu.1c60c1a9.js";import N from"./preview.badfc8f1.js";import{_ as P}from"./attr-setting.vue_vue_type_script_setup_true_lang.da407ae8.js";import{w as S}from"./index.85a36c0c.js";import{s as h,a as k}from"./decoration.4be01ffa.js";import{n as F,d as M}from"./index.aa9bb752.js";import{d as x,$ as R,r as f,e as g,w as U,af as A,o as v,c as O,U as i,L as l,a as J,u as m,k as D,M as W,K as $,R as H}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./attr.vue_vue_type_script_setup_true_lang.5697c78f.js";import"./index.a9a11abe.js";import"./picker.c7d50072.js";import"./index.fa872673.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./picker.45aea54f.js";import"./index.c47e74f8.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./index.a450f1bb.js";import"./index.vue_vue_type_script_setup_true_lang.dc835bba.js";import"./usePaging.2ad8e1e6.js";import"./vue3-video-play.b911321b.js";import"./vuedraggable.0cb40d3a.js";import"./vue.5de34049.js";import"./sortablejs.ef73fc5c.js";import"./content.vue_vue_type_script_setup_true_lang.d21cb19e.js";import"./decoration-img.3e95b47f.js";import"./attr.vue_vue_type_script_setup_true_lang.fdded599.js";import"./content.206aab68.js";import"./attr.vue_vue_type_script_setup_true_lang.f3b5265b.js";import"./add-nav.vue_vue_type_script_setup_true_lang.3317a1cd.js";import"./content.b2cebb4d.js";import"./attr.vue_vue_type_script_setup_true_lang.aeb5c0d0.js";import"./content.vue_vue_type_script_setup_true_lang.08763d7f.js";import"./attr.vue_vue_type_script_setup_true_lang.d01577b5.js";import"./content.95faa73b.js";import"./attr.vue_vue_type_script_setup_true_lang.0fc534ba.js";import"./content.84ae04ad.js";import"./attr.vue_vue_type_script_setup_true_lang.3d3efd85.js";import"./content.vue_vue_type_script_setup_true_lang.28911d3e.js";import"./attr.vue_vue_type_script_setup_true_lang.00e826d0.js";import"./content.92456155.js";const K={class:"decoration-pages min-w-[1100px]"},L={class:"flex h-full items-start"},j=x({name:"decorationPages"}),q=x({...j,setup(z){let u;(t=>{t.HOME="1",t.USER="2",t.SERVICE="3"})(u||(u={}));const s=t=>t.map(e=>{var p;return{id:F(),...((p=S[e])==null?void 0:p.options())||{}}}),a=R({[1]:{id:1,type:1,name:"\u9996\u9875\u88C5\u4FEE",pageData:s(["search","banner","nav","news"])},[2]:{id:2,type:2,name:"\u4E2A\u4EBA\u4E2D\u5FC3",pageData:s(["user-info","my-service","user-banner"])},[3]:{id:3,type:3,name:"\u5BA2\u670D\u8BBE\u7F6E",pageData:s(["customer-service"])}}),o=f("1"),r=f(-1),c=g(()=>{var t,e;return(e=(t=a[o.value])==null?void 0:t.pageData)!=null?e:[]}),w=g(()=>{var t,e;return(e=(t=a[o.value])==null?void 0:t.pageData[r.value])!=null?e:""}),d=async()=>{const t=await k({id:o.value});a[String(t.id)].pageData=JSON.parse(t.data)},E=async()=>{await h({...a[o.value],data:JSON.stringify(a[o.value].pageData)}),d()};return U(o,()=>{r.value=c.value.findIndex(t=>!t.disabled),d()},{immediate:!0}),(t,e)=>{const _=b,p=C,y=V,B=A("perms");return v(),O("div",K,[i(_,{shadow:"never",class:"!border-none flex-1 flex","body-style":{flex:1}},{default:l(()=>[J("div",L,[i(I,{modelValue:m(o),"onUpdate:modelValue":e[0]||(e[0]=n=>D(o)?o.value=n:null),menus:m(a)},null,8,["modelValue","menus"]),i(N,{modelValue:m(r),"onUpdate:modelValue":e[1]||(e[1]=n=>D(r)?r.value=n:null),pageData:m(c)},null,8,["modelValue","pageData"]),i(P,{class:"flex-1",widget:m(w)},null,8,["widget"])])]),_:1}),W((v(),$(y,{class:"mt-4",fixed:!1},{default:l(()=>[i(p,{type:"primary",onClick:E},{default:l(()=>[H("\u4FDD\u5B58")]),_:1})]),_:1})),[[B,["decorate:pages:save"]]])])}}});const ce=M(q,[["__scopeId","data-v-c84d2462"]]);export{ce as default}; diff --git a/public/admin/assets/index.dc6c8a7c.js b/public/admin/assets/index.dc6c8a7c.js new file mode 100644 index 000000000..9ff510a92 --- /dev/null +++ b/public/admin/assets/index.dc6c8a7c.js @@ -0,0 +1 @@ +import{S as b,a6 as v,I as A,O as k,w as y,P as D,Q as x}from"./element-plus.4328d892.js";import{_ as L,s as R}from"./edit.vue_vue_type_script_setup_true_lang.34775f0d.js";import{d as f,s as T,$ as S,af as $,o as a,c as N,U as t,L as e,M as d,u as F,K as i,R as l}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.aa9bb752.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.fa872673.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";const V={class:"storage"},z=f({name:"storage"}),bt=f({...z,setup(I){const m=T(),o=S({loading:!1,lists:[]}),p=async()=>{try{o.loading=!0,o.lists=await R(),o.loading=!1}catch{o.loading=!1}},g=r=>{var s;(s=m.value)==null||s.open(r)};return p(),(r,s)=>{const B=b,c=A,u=k,_=v,E=y,h=D,w=$("perms"),C=x;return a(),N("div",V,[t(c,{class:"!border-none",shadow:"never"},{default:e(()=>[t(B,{type:"warning",title:"\u6E29\u99A8\u63D0\u793A\uFF1A1.\u5207\u6362\u5B58\u50A8\u65B9\u5F0F\u540E\uFF0C\u9700\u8981\u5C06\u8D44\u6E90\u6587\u4EF6\u4F20\u8F93\u81F3\u65B0\u7684\u5B58\u50A8\u7AEF\uFF1B2.\u8BF7\u52FF\u968F\u610F\u5207\u6362\u5B58\u50A8\u65B9\u5F0F\uFF0C\u53EF\u80FD\u5BFC\u81F4\u56FE\u7247\u65E0\u6CD5\u67E5\u770B",closable:!1,"show-icon":""})]),_:1}),d((a(),i(c,{class:"!border-none mt-4",shadow:"never"},{default:e(()=>[t(h,{size:"large",data:F(o).lists},{default:e(()=>[t(u,{label:"\u50A8\u5B58\u65B9\u5F0F",prop:"name","min-width":"120"}),t(u,{label:"\u50A8\u5B58\u4F4D\u7F6E",prop:"path","min-width":"160"}),t(u,{label:"\u72B6\u6001","min-width":"80"},{default:e(({row:n})=>[n.status==1?(a(),i(_,{key:0},{default:e(()=>[l("\u5F00\u542F")]),_:1})):(a(),i(_,{key:1,type:"danger"},{default:e(()=>[l("\u5173\u95ED")]),_:1}))]),_:1}),t(u,{label:"\u64CD\u4F5C","min-width":"80",fixed:"right"},{default:e(({row:n})=>[d((a(),i(E,{type:"primary",link:"",onClick:K=>g(n.engine)},{default:e(()=>[l(" \u8BBE\u7F6E ")]),_:2},1032,["onClick"])),[[w,["setting.storage/setup"]]])]),_:1})]),_:1},8,["data"])]),_:1})),[[C,F(o).loading]]),t(L,{ref_key:"editRef",ref:m,onSuccess:p},null,512)])}}});export{bt as default}; diff --git a/public/admin/assets/index.dec772f2.js b/public/admin/assets/index.dec772f2.js new file mode 100644 index 000000000..611b7a17f --- /dev/null +++ b/public/admin/assets/index.dec772f2.js @@ -0,0 +1 @@ +import{a6 as Q,B as j,C as z,M as G,N as H,w as J,D as W,I as X,O as Y,P as Z,Q as ee}from"./element-plus.4328d892.js";import{_ as te}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{k as oe,f as ae,b as le}from"./index.ed71ac09.js";import{d as P,s as ne,r as D,$ as ie,a4 as se,af as ue,o as n,c as x,U as e,L as t,u as o,a8 as T,R as s,a as B,M as p,K as d,k as re,Q as de,n as $}from"./@vue.51d7f2d8.js";import{i as me,f as pe}from"./dict.6c560e38.js";import{u as ce}from"./usePaging.2ad8e1e6.js";import{_ as _e}from"./edit.vue_vue_type_script_setup_true_lang.7728685e.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.b940d6e3.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";const fe={class:"dict-type"},ye={class:"mt-4"},ve={class:"flex justify-end mt-4"},Ce=P({name:"dictType"}),it=P({...Ce,setup(ge){const y=ne(),v=D(!1),u=ie({name:"",type:"",status:""}),{pager:c,getLists:C,resetPage:b,resetParams:R}=ce({fetchFun:pe,params:u}),k=D([]),K=i=>{k.value=i.map(({id:a})=>a)},N=async()=>{var i;v.value=!0,await $(),(i=y.value)==null||i.open("add")},S=async i=>{var a,_;v.value=!0,await $(),(a=y.value)==null||a.open("edit"),(_=y.value)==null||_.setFormData(i)},w=async i=>{await ae.confirm("\u786E\u5B9A\u8981\u5220\u9664\uFF1F"),await me({id:i}),C()};return C(),(i,a)=>{const _=j,g=z,E=G,U=H,m=J,A=W,h=X,F=le,r=Y,V=Q,I=se("router-link"),L=Z,q=te,f=ue("perms"),M=ee;return n(),x("div",fe,[e(h,{class:"!border-none",shadow:"never"},{default:t(()=>[e(A,{ref:"formRef",class:"mb-[-16px]",model:o(u),inline:""},{default:t(()=>[e(g,{label:"\u5B57\u5178\u540D\u79F0"},{default:t(()=>[e(_,{class:"w-[280px]",modelValue:o(u).name,"onUpdate:modelValue":a[0]||(a[0]=l=>o(u).name=l),clearable:"",onKeyup:T(o(b),["enter"])},null,8,["modelValue","onKeyup"])]),_:1}),e(g,{label:"\u5B57\u5178\u7C7B\u578B"},{default:t(()=>[e(_,{class:"w-[280px]",modelValue:o(u).type,"onUpdate:modelValue":a[1]||(a[1]=l=>o(u).type=l),clearable:"",onKeyup:T(o(b),["enter"])},null,8,["modelValue","onKeyup"])]),_:1}),e(g,{label:"\u72B6\u6001"},{default:t(()=>[e(U,{class:"w-[280px]",modelValue:o(u).status,"onUpdate:modelValue":a[2]||(a[2]=l=>o(u).status=l)},{default:t(()=>[e(E,{label:"\u5168\u90E8",value:""}),e(E,{label:"\u6B63\u5E38",value:1}),e(E,{label:"\u505C\u7528",value:0})]),_:1},8,["modelValue"])]),_:1}),e(g,null,{default:t(()=>[e(m,{type:"primary",onClick:o(b)},{default:t(()=>[s("\u67E5\u8BE2")]),_:1},8,["onClick"]),e(m,{onClick:o(R)},{default:t(()=>[s("\u91CD\u7F6E")]),_:1},8,["onClick"])]),_:1})]),_:1},8,["model"])]),_:1}),e(h,{class:"!border-none mt-4",shadow:"never"},{default:t(()=>[B("div",null,[p((n(),d(m,{type:"primary",onClick:N},{icon:t(()=>[e(F,{name:"el-icon-Plus"})]),default:t(()=>[s(" \u65B0\u589E ")]),_:1})),[[f,["setting.dict.dict_type/add"]]]),p((n(),d(m,{disabled:!o(k).length,type:"danger",onClick:a[3]||(a[3]=l=>w(o(k)))},{icon:t(()=>[e(F,{name:"el-icon-Delete"})]),default:t(()=>[s(" \u5220\u9664 ")]),_:1},8,["disabled"])),[[f,["setting.dict.dict_type/delete"]]])]),p((n(),x("div",ye,[B("div",null,[e(L,{data:o(c).lists,size:"large",onSelectionChange:K},{default:t(()=>[e(r,{type:"selection",width:"55"}),e(r,{label:"ID",prop:"id"}),e(r,{label:"\u5B57\u5178\u540D\u79F0",prop:"name","min-width":"120"}),e(r,{label:"\u5B57\u5178\u7C7B\u578B",prop:"type","min-width":"120"}),e(r,{label:"\u72B6\u6001"},{default:t(({row:l})=>[l.status==1?(n(),d(V,{key:0},{default:t(()=>[s("\u6B63\u5E38")]),_:1})):(n(),d(V,{key:1,type:"danger"},{default:t(()=>[s("\u505C\u7528")]),_:1}))]),_:1}),e(r,{label:"\u5907\u6CE8",prop:"remark","show-tooltip-when-overflow":""}),e(r,{label:"\u521B\u5EFA\u65F6\u95F4",prop:"create_time","min-width":"180"}),e(r,{label:"\u64CD\u4F5C",width:"190",fixed:"right"},{default:t(({row:l})=>[p((n(),d(m,{link:"",type:"primary",onClick:O=>S(l)},{default:t(()=>[s(" \u7F16\u8F91 ")]),_:2},1032,["onClick"])),[[f,["setting.dict.dict_type/edit"]]]),p((n(),d(m,{type:"primary",link:""},{default:t(()=>[e(I,{to:{path:o(oe)("setting.dict.dict_data/lists"),query:{id:l.id}}},{default:t(()=>[s(" \u6570\u636E\u7BA1\u7406 ")]),_:2},1032,["to"])]),_:2},1024)),[[f,["setting.dict.dict_data/lists"]]]),p((n(),d(m,{link:"",type:"danger",onClick:O=>w(l.id)},{default:t(()=>[s(" \u5220\u9664 ")]),_:2},1032,["onClick"])),[[f,["setting.dict.dict_type/delete"]]])]),_:1})]),_:1},8,["data"])]),B("div",ve,[e(q,{modelValue:o(c),"onUpdate:modelValue":a[4]||(a[4]=l=>re(c)?c.value=l:null),onChange:o(C)},null,8,["modelValue","onChange"])])])),[[M,o(c).loading]])]),_:1}),o(v)?(n(),d(_e,{key:0,ref_key:"editRef",ref:y,onSuccess:o(C),onClose:a[5]||(a[5]=l=>v.value=!1)},null,8,["onSuccess"])):de("",!0)])}}});export{it as default}; diff --git a/public/admin/assets/index.df3d8ed3.js b/public/admin/assets/index.df3d8ed3.js new file mode 100644 index 000000000..4917c98e2 --- /dev/null +++ b/public/admin/assets/index.df3d8ed3.js @@ -0,0 +1 @@ +import{B as T,C as $,M as O,N as q,w as M,D as Q,I as j,O as z,t as G,P as H,Q as J}from"./element-plus.4328d892.js";import{_ as W}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{k,f as X,b as Y,_ as Z}from"./index.aa9bb752.js";import{d as D,$ as ee,b8 as te,a4 as ae,af as le,o as r,c as V,U as e,L as a,u as l,a8 as oe,T as ie,a7 as ne,K as u,R as p,a as y,M as _,Q as re,k as se}from"./@vue.51d7f2d8.js";import{h as ue,k as me,l as ce,m as de}from"./article.188d8b86.js";import{a as pe}from"./useDictOptions.a61fcf9f.js";import{u as _e}from"./usePaging.2ad8e1e6.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const fe={class:"article-lists"},he={class:"flex justify-end mt-4"},be=D({name:"articleLists"}),lt=D({...be,setup(we){const n=ee({title:"",cid:"",is_show:""}),{pager:m,getLists:s,resetPage:v,resetParams:x}=_e({fetchFun:de,params:n}),{optionsData:B}=pe({article_cate:{api:ue}}),A=async(f,o)=>{try{await me({id:o,is_show:f}),s()}catch{s()}},P=async f=>{await X.confirm("\u786E\u5B9A\u8981\u5220\u9664\uFF1F"),await ce({id:f}),s()};return te(()=>{s()}),s(),(f,o)=>{const E=T,h=$,c=O,C=q,d=M,U=Q,g=j,L=Y,F=ae("router-link"),i=z,N=Z,S=G,I=H,K=W,b=le("perms"),R=J;return r(),V("div",fe,[e(g,{class:"!border-none",shadow:"never"},{default:a(()=>[e(U,{ref:"formRef",class:"mb-[-16px]",model:l(n),inline:!0},{default:a(()=>[e(h,{label:"\u6587\u7AE0\u6807\u9898"},{default:a(()=>[e(E,{class:"w-[280px]",modelValue:l(n).title,"onUpdate:modelValue":o[0]||(o[0]=t=>l(n).title=t),clearable:"",onKeyup:oe(l(v),["enter"])},null,8,["modelValue","onKeyup"])]),_:1}),e(h,{label:"\u680F\u76EE\u540D\u79F0"},{default:a(()=>[e(C,{class:"w-[280px]",modelValue:l(n).cid,"onUpdate:modelValue":o[1]||(o[1]=t=>l(n).cid=t)},{default:a(()=>[e(c,{label:"\u5168\u90E8",value:""}),(r(!0),V(ie,null,ne(l(B).article_cate,t=>(r(),u(c,{key:t.id,label:t.name,value:t.id},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1}),e(h,{label:"\u6587\u7AE0\u72B6\u6001"},{default:a(()=>[e(C,{class:"w-[280px]",modelValue:l(n).is_show,"onUpdate:modelValue":o[2]||(o[2]=t=>l(n).is_show=t)},{default:a(()=>[e(c,{label:"\u5168\u90E8",value:""}),e(c,{label:"\u663E\u793A",value:1}),e(c,{label:"\u9690\u85CF",value:0})]),_:1},8,["modelValue"])]),_:1}),e(h,null,{default:a(()=>[e(d,{type:"primary",onClick:l(v)},{default:a(()=>[p("\u67E5\u8BE2")]),_:1},8,["onClick"]),e(d,{onClick:l(x)},{default:a(()=>[p("\u91CD\u7F6E")]),_:1},8,["onClick"])]),_:1})]),_:1},8,["model"])]),_:1}),e(g,{class:"!border-none mt-4",shadow:"never"},{default:a(()=>[y("div",null,[_((r(),u(F,{to:{path:l(k)("article.article/add:edit")}},{default:a(()=>[e(d,{type:"primary",class:"mb-4"},{icon:a(()=>[e(L,{name:"el-icon-Plus"})]),default:a(()=>[p(" \u53D1\u5E03\u6587\u7AE0 ")]),_:1})]),_:1},8,["to"])),[[b,["article.article/add","article.article/add:edit"]]])]),_((r(),u(I,{size:"large",data:l(m).lists},{default:a(()=>[e(i,{label:"ID",prop:"id","min-width":"80"}),e(i,{label:"\u5C01\u9762","min-width":"100"},{default:a(({row:t})=>[t.image?(r(),u(N,{key:0,src:t.image,width:60,height:45,"preview-src-list":[t.image],"preview-teleported":"",fit:"contain"},null,8,["src","preview-src-list"])):re("",!0)]),_:1}),e(i,{label:"\u6807\u9898",prop:"title","min-width":"160","show-tooltip-when-overflow":""}),e(i,{label:"\u680F\u76EE",prop:"cate_name","min-width":"100"}),e(i,{label:"\u4F5C\u8005",prop:"author","min-width":"120"}),e(i,{label:"\u6D4F\u89C8\u91CF",prop:"click","min-width":"100"}),e(i,{label:"\u72B6\u6001","min-width":"100"},{default:a(({row:t})=>[_(e(S,{modelValue:t.is_show,"onUpdate:modelValue":w=>t.is_show=w,"active-value":1,"inactive-value":0,onChange:w=>A(w,t.id)},null,8,["modelValue","onUpdate:modelValue","onChange"]),[[b,["article.article/updateStatus"]]])]),_:1}),e(i,{label:"\u6392\u5E8F",prop:"sort","min-width":"100"}),e(i,{label:"\u53D1\u5E03\u65F6\u95F4",prop:"create_time","min-width":"120"}),e(i,{label:"\u64CD\u4F5C",width:"120",fixed:"right"},{default:a(({row:t})=>[_((r(),u(d,{type:"primary",link:""},{default:a(()=>[e(F,{to:{path:l(k)("article.article/add:edit"),query:{id:t.id}}},{default:a(()=>[p(" \u7F16\u8F91 ")]),_:2},1032,["to"])]),_:2},1024)),[[b,["article.article/edit","article.article/add:edit"]]]),_((r(),u(d,{type:"danger",link:"",onClick:w=>P(t.id)},{default:a(()=>[p(" \u5220\u9664 ")]),_:2},1032,["onClick"])),[[b,["article.article/delete"]]])]),_:1})]),_:1},8,["data"])),[[R,l(m).loading]]),y("div",he,[e(K,{modelValue:l(m),"onUpdate:modelValue":o[3]||(o[3]=t=>se(m)?m.value=t:null),onChange:l(s)},null,8,["modelValue","onChange"])])]),_:1})])}}});export{lt as default}; diff --git a/public/admin/assets/index.df7a386a.js b/public/admin/assets/index.df7a386a.js new file mode 100644 index 000000000..8ba636f07 --- /dev/null +++ b/public/admin/assets/index.df7a386a.js @@ -0,0 +1 @@ +import{B as le,C as ie,M as se,N as me,w as re,D as ce,I as pe,O as de,o as _e,t as fe,P as Ee,L as Fe,Q as ve}from"./element-plus.4328d892.js";import{_ as he}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{f as V,b as ye,d as Ce}from"./index.aa9bb752.js";import{_ as ge}from"./index.vue_vue_type_script_setup_true_lang.f3cc5114.js";import{u as Be}from"./vue-router.9f65afb1.js";import{d as N,s as De,$ as be,r as C,j as ke,af as we,o as n,c as E,U as t,L as a,u as o,a8 as Ae,T as Ve,a7 as xe,K as s,R as m,M as F,a as g,S as Se,Q as x,k as R,n as S,bf as Ie,be as $e}from"./@vue.51d7f2d8.js";import{a as M,g as Pe,s as ze,b as Ue,e as Le}from"./admin.1cd61358.js";import{r as Re}from"./role.41d5883e.js";import{a as Me}from"./useDictOptions.a61fcf9f.js";import{u as Ne}from"./usePaging.2ad8e1e6.js";import{_ as Te}from"./edit.vue_vue_type_style_index_0_lang.0c12de95.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.fa872673.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./post.5d32b419.js";import"./department.5076f65d.js";import"./common.86798ce6.js";import"./dict.927f1fc7.js";import"./dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.8548f463.js";import"./company.b7ec1bf9.js";const Ke=B=>(Ie("data-v-f5328fb9"),B=B(),$e(),B),Oe={class:"admin"},je={class:"mt-4"},qe={key:0,style:{color:"#67c23a"}},Qe={key:1,style:{color:"#fe0000"}},Ge={style:{display:"flex"}},He={class:"flex mt-4 justify-end"},Je=Ke(()=>g("h1",null,"\u91CD\u8981\u63D0\u9192",-1)),We={key:0,class:"content"},Xe={key:1,class:"content"},Ye={class:"btn_menu"},Ze=N({name:"admin"}),et=N({...Ze,setup(B){var z;const I=Be(),_=De(),p=be({name:"",role_id:"",company_id:""}),$=C("");I.query.company_id&&(p.company_id=(z=I.query.company_id)==null?void 0:z.toString());const D=C(!1),w=C(!1),b=()=>{D.value=!1,w.value=!1},T=()=>{Pe({id:$.value}).then(()=>{V.msgSuccess("\u53D1\u9001\u6210\u529F")}),b()},K=()=>{ze({id:$.value}).then(u=>{V.msgSuccess("\u53D1\u9001\u6210\u529F")}),b()},v=C(!1),{pager:f,getLists:h,resetParams:O,resetPage:P}=Ne({fetchFun:M,params:p}),j=u=>{Ue({id:u.id,account:u.account,name:u.name,role_id:u.role_id,disable:u.disable,multipoint_login:u.multipoint_login}).finally(()=>{h()})},k=C(!1),q=async()=>{var u;k.value=!1,v.value=!0,await S(),(u=_.value)==null||u.open("add")},Q=async u=>{var l,d;k.value=!1,v.value=!0,await S(),(l=_.value)==null||l.open("edit"),(d=_.value)==null||d.setFormData(u)},G=async u=>{var l,d;k.value=!1,v.value=!0,await S(),(l=_.value)==null||l.open("view"),(d=_.value)==null||d.setFormData(u)},H=async u=>{await V.confirm("\u786E\u5B9A\u8981\u5220\u9664\uFF1F"),await Le({id:u}),h()},{optionsData:J}=Me({role:{api:Re}});return ke(()=>{h()}),(u,l)=>{const d=le,A=ie,U=se,W=me,c=re,X=ge,Y=ce,L=pe,Z=ye,i=de,ee=_e,te=fe,ae=Ee,oe=he,ue=Fe,y=we("perms"),ne=ve;return n(),E("div",Oe,[t(L,{class:"!border-none",shadow:"never"},{default:a(()=>[t(Y,{class:"mb-[-16px]",model:o(p),inline:""},{default:a(()=>[t(A,{label:"\u7BA1\u7406\u5458\u540D\u79F0"},{default:a(()=>[t(d,{modelValue:o(p).name,"onUpdate:modelValue":l[0]||(l[0]=e=>o(p).name=e),class:"w-[280px]",clearable:"",onKeyup:Ae(o(P),["enter"])},null,8,["modelValue","onKeyup"])]),_:1}),t(A,{label:"\u7BA1\u7406\u5458\u89D2\u8272"},{default:a(()=>[t(W,{class:"w-[280px]",modelValue:o(p).role_id,"onUpdate:modelValue":l[1]||(l[1]=e=>o(p).role_id=e)},{default:a(()=>[t(U,{label:"\u5168\u90E8",value:""}),(n(!0),E(Ve,null,xe(o(J).role,(e,r)=>(n(),s(U,{key:r,label:e.name,value:e.id},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1}),t(A,null,{default:a(()=>[t(c,{type:"primary",onClick:o(P)},{default:a(()=>[m("\u67E5\u8BE2")]),_:1},8,["onClick"]),t(c,{onClick:o(O)},{default:a(()=>[m("\u91CD\u7F6E")]),_:1},8,["onClick"]),t(X,{class:"ml-2.5","fetch-fun":o(M),params:o(p),"page-size":o(f).size},null,8,["fetch-fun","params","page-size"])]),_:1})]),_:1},8,["model"])]),_:1}),F((n(),s(L,{class:"mt-4 !border-none",shadow:"never"},{default:a(()=>[F((n(),s(c,{type:"primary",onClick:q},{icon:a(()=>[t(Z,{name:"el-icon-Plus"})]),default:a(()=>[m(" \u65B0\u589E ")]),_:1})),[[y,["auth.admin/add"]]]),g("div",je,[t(ae,{data:o(f).lists,size:"large"},{default:a(()=>[t(i,{label:"ID",prop:"id","min-width":"60"}),m("> "),t(i,{label:"\u5934\u50CF","min-width":"100"},{default:a(({row:e})=>[t(ee,{size:50,src:e.avatar},null,8,["src"])]),_:1}),t(i,{label:"\u59D3\u540D",prop:"name","min-width":"100"}),t(i,{label:"\u8054\u7CFB\u65B9\u5F0F",prop:"account","min-width":"130"}),t(i,{label:"\u96B6\u5C5E\u516C\u53F8",prop:"company.company_name","min-width":"120",align:"center"},{default:a(({row:e})=>{var r;return[m(Se(((r=e==null?void 0:e.company)==null?void 0:r.company_name)||"/"),1)]}),_:1}),t(i,{label:"\u6240\u5728\u4E61\u9547",prop:"street_name","min-width":"120"}),t(i,{label:"\u6388\u6743\u8EAB\u4EFD",prop:"role_name","min-width":"120"}),t(i,{label:"\u662F\u5426\u7B7E\u7EA6",prop:"is_contract",align:"center","min-width":"120"},{default:a(({row:e})=>[e.is_contract==1?(n(),E("span",qe,"\u5DF2\u7B7E\u7EA6")):(n(),E("span",Qe,"\u672A\u7B7E\u7EA6"))]),_:1}),t(i,{label:"\u6700\u8FD1\u767B\u5F55\u65F6\u95F4",prop:"login_time","min-width":"180"}),t(i,{label:"\u521B\u5EFA\u65F6\u95F4",prop:"create_time","min-width":"180",align:"center"}),t(i,{label:"\u6700\u8FD1\u767B\u5F55IP",prop:"login_ip","min-width":"120"}),F((n(),s(i,{label:"\u8D26\u53F7\u72B6\u6001","min-width":"100"},{default:a(({row:e})=>[e.root!=1?(n(),s(te,{key:0,modelValue:e.disable,"onUpdate:modelValue":r=>e.disable=r,"active-value":0,"inactive-value":1,onChange:r=>j(e)},null,8,["modelValue","onUpdate:modelValue","onChange"])):x("",!0)]),_:1})),[[y,["auth.admin/edit"]]]),t(i,{label:"\u64CD\u4F5C",width:"230",align:"center",fixed:"right"},{default:a(({row:e})=>[g("div",Ge,[F((n(),s(c,{type:"primary",link:"",onClick:r=>G(e)},{default:a(()=>[m("\u67E5\u770B")]),_:2},1032,["onClick"])),[[y,["auth.admin/view"]]]),F((n(),s(c,{type:"primary",link:"",onClick:r=>Q(e)},{default:a(()=>[m("\u7F16\u8F91")]),_:2},1032,["onClick"])),[[y,["auth.admin/edit"]]]),e.root!=1?F((n(),s(c,{key:0,type:"danger",link:"",onClick:r=>H(e.id)},{default:a(()=>[m("\u5220\u9664")]),_:2},1032,["onClick"])),[[y,["auth.admin/delete"]]]):x("",!0)])]),_:1})]),_:1},8,["data"])]),g("div",He,[t(oe,{modelValue:o(f),"onUpdate:modelValue":l[2]||(l[2]=e=>R(f)?f.value=e:null),onChange:o(h)},null,8,["modelValue","onChange"])])]),_:1})),[[ne,o(f).loading]]),o(v)?(n(),s(Te,{key:0,ref_key:"editRef",ref:_,isCheck:o(k),onSuccess:o(h),onClose:l[3]||(l[3]=e=>v.value=!1)},null,8,["isCheck","onSuccess"])):x("",!0),t(ue,{modelValue:o(D),"onUpdate:modelValue":l[4]||(l[4]=e=>R(D)?D.value=e:null),onClose:b},{default:a(()=>[Je,o(w)?(n(),E("div",We," \u8BF7\u786E\u8BA4\u4FE1\u606F\u662F\u5426\u6709\u8BEF,\u53D1\u9001\u5408\u540C,\u8BF7\u786E\u8BA4\u4FE1\u606F\u662F\u5426\u6709\u8BEF,\u53D1\u9001\u7535\u5B50\u5408\u540C\u540E\u77ED\u65F6\u95F4\u5185\u5C06\u4E0D\u53EF\u518D\u6B21\u53D1\u9001. ")):(n(),E("div",Xe," \u786E\u8BA4\u7B7E\u7EA6\u77ED\u4FE1\u5C06\u572860\u79D2\u540E\u53D1\u9001,\u8BF7\u6CE8\u610F\u67E5\u6536,\u5E76\u70B9\u51FB\u77ED\u4FE1\u94FE\u63A5\u8FDB\u884C\u7EBF\u4E0A\u5408\u540C\u7B7E\u7EA6 ")),g("p",Ye,[o(w)?(n(),s(c,{key:0,type:"primary",size:"large",onClick:T},{default:a(()=>[m("\u786E\u8BA4\u521B\u5EFA")]),_:1})):(n(),s(c,{key:1,type:"primary",size:"large",onClick:K},{default:a(()=>[m("\u786E\u8BA4")]),_:1})),t(c,{type:"info",size:"large",onClick:b},{default:a(()=>[m("\u8FD4\u56DE")]),_:1})])]),_:1},8,["modelValue"])])}}});const Wt=Ce(et,[["__scopeId","data-v-f5328fb9"]]);export{Wt as default}; diff --git a/public/admin/assets/index.e0d98d6b.js b/public/admin/assets/index.e0d98d6b.js new file mode 100644 index 000000000..9d8301d10 --- /dev/null +++ b/public/admin/assets/index.e0d98d6b.js @@ -0,0 +1 @@ +import{x as c,y as u,I as f}from"./element-plus.4328d892.js";import{_ as y}from"./index.c47e74f8.js";import{d as i,r as x,o as m,c as a,U as o,L as p,u as b,k as v,T as g,a7 as E}from"./@vue.51d7f2d8.js";import{d as k}from"./index.aa9bb752.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./index.a9a11abe.js";import"./index.fa872673.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.a450f1bb.js";import"./index.vue_vue_type_script_setup_true_lang.dc835bba.js";import"./usePaging.2ad8e1e6.js";import"./vue3-video-play.b911321b.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const C={class:"material-index"},T=i({name:"material"}),V=i({...T,setup(z){const n=[{type:"image",name:"\u56FE\u7247"},{type:"video",name:"\u89C6\u9891"}],e=x("image");return(h,r)=>{const s=y,_=c,l=u,d=f;return m(),a("div",C,[o(d,{class:"!border-none",shadow:"never"},{default:p(()=>[o(l,{modelValue:b(e),"onUpdate:modelValue":r[0]||(r[0]=t=>v(e)?e.value=t:null)},{default:p(()=>[(m(),a(g,null,E(n,t=>o(_,{label:t.name,name:t.type,index:t.type,key:t.type,lazy:""},{default:p(()=>[o(s,{type:t.type,mode:"page","file-size":"120px",limit:-1,"page-size":20},null,8,["type"])]),_:2},1032,["label","name","index"])),64))]),_:1},8,["modelValue"])]),_:1})])}}});const xt=k(V,[["__scopeId","data-v-d051c36b"]]);export{xt as default}; diff --git a/public/admin/assets/index.e27abe90.js b/public/admin/assets/index.e27abe90.js new file mode 100644 index 000000000..c42378ebd --- /dev/null +++ b/public/admin/assets/index.e27abe90.js @@ -0,0 +1 @@ +import{a6 as O,w as V,O as P,P as z,I as Q,Q as S}from"./element-plus.4328d892.js";import{M as h,f as G,b as I}from"./index.37f7aea6.js";import{e as K,a as j}from"./menu.90f89e87.js";import{u as q}from"./usePaging.2ad8e1e6.js";import{_ as H}from"./edit.vue_vue_type_script_setup_true_lang.07156ced.js";import{d as N,s as x,r as J,af as W,o as i,c as v,U as n,L as o,a as D,M as c,K as r,R as m,u as p,Q as E,n as T}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./picker.vue_vue_type_script_setup_true_lang.8519155b.js";import"./index.5759a1a6.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";const X={class:"menu-lists"},Y={key:0},Z={key:1},ee={key:2},te={class:"flex"},oe=N({name:"menu"}),Ie=N({...oe,setup(ae){const b=x(),d=x();let y=!1;const _=J(!1),{pager:k,getLists:C}=q({fetchFun:j,params:{page_type:0}}),g=async e=>{var a,s;_.value=!0,await T(),e&&((a=d.value)==null||a.setFormData({pid:e})),(s=d.value)==null||s.open("add")},R=async e=>{var a,s;_.value=!0,await T(),(a=d.value)==null||a.open("edit"),(s=d.value)==null||s.getDetail(e)},$=async e=>{await G.confirm("\u786E\u5B9A\u8981\u5220\u9664\uFF1F"),await K({id:e}),C()},A=()=>{y=!y,w(k.lists,y)},w=(e,a=!0)=>{var s;for(const l in e)(s=b.value)==null||s.toggleRowExpansion(e[l],a),e[l].children&&w(e[l].children,a)};return C().then(e=>{console.log(e)}),(e,a)=>{const s=I,l=V,u=P,B=O,L=z,U=Q,f=W("perms"),M=S;return i(),v("div",X,[n(U,{class:"!border-none",shadow:"never"},{default:o(()=>[D("div",null,[c((i(),r(l,{type:"primary",onClick:a[0]||(a[0]=t=>g())},{icon:o(()=>[n(s,{name:"el-icon-Plus"})]),default:o(()=>[m(" \u65B0\u589E ")]),_:1})),[[f,["auth.menu/add"]]]),n(l,{onClick:A},{default:o(()=>[m(" \u5C55\u5F00/\u6298\u53E0 ")]),_:1})]),c((i(),r(L,{ref_key:"tableRef",ref:b,class:"mt-4",size:"large",data:p(k).lists,"row-key":"id","tree-props":{children:"children",hasChildren:"hasChildren"}},{default:o(()=>[n(u,{label:"\u83DC\u5355\u540D\u79F0",prop:"name","min-width":"150","show-overflow-tooltip":""}),n(u,{label:"\u7C7B\u578B",prop:"type","min-width":"80"},{default:o(({row:t})=>[t.type==p(h).CATALOGUE?(i(),v("div",Y,"\u76EE\u5F55")):t.type==p(h).MENU?(i(),v("div",Z,"\u83DC\u5355")):t.type==p(h).BUTTON?(i(),v("div",ee,"\u6309\u94AE")):E("",!0)]),_:1}),n(u,{label:"\u56FE\u6807",prop:"icon","min-width":"80"},{default:o(({row:t})=>[D("div",te,[n(s,{name:t.icon,size:20},null,8,["name"])])]),_:1}),n(u,{label:"\u6743\u9650\u6807\u8BC6",prop:"perms","min-width":"150","show-overflow-tooltip":""}),n(u,{label:"\u72B6\u6001",prop:"is_disable","min-width":"100"},{default:o(({row:t})=>[t.is_disable==0?(i(),r(B,{key:0},{default:o(()=>[m("\u6B63\u5E38")]),_:1})):(i(),r(B,{key:1,type:"danger"},{default:o(()=>[m("\u505C\u7528")]),_:1}))]),_:1}),n(u,{label:"\u6392\u5E8F",prop:"sort","min-width":"100"}),n(u,{label:"\u66F4\u65B0\u65F6\u95F4",prop:"update_time","min-width":"180"}),n(u,{label:"\u64CD\u4F5C",width:"160",fixed:"right"},{default:o(({row:t})=>[t.type!==p(h).BUTTON?c((i(),r(l,{key:0,type:"primary",link:"",onClick:F=>g(t.id)},{default:o(()=>[m(" \u65B0\u589E ")]),_:2},1032,["onClick"])),[[f,["auth.menu/add"]]]):E("",!0),c((i(),r(l,{type:"primary",link:"",onClick:F=>R(t)},{default:o(()=>[m(" \u7F16\u8F91 ")]),_:2},1032,["onClick"])),[[f,["auth.menu/edit"]]]),c((i(),r(l,{type:"danger",link:"",onClick:F=>$(t.id)},{default:o(()=>[m(" \u5220\u9664 ")]),_:2},1032,["onClick"])),[[f,["auth.menu/delete"]]])]),_:1})]),_:1},8,["data"])),[[M,p(k).loading]])]),_:1}),p(_)?(i(),r(H,{key:0,ref_key:"editRef",ref:d,onSuccess:p(C),onClose:a[1]||(a[1]=t=>_.value=!1)},null,8,["onSuccess"])):E("",!0)])}}});export{Ie as default}; diff --git a/public/admin/assets/index.e408cb8f.js b/public/admin/assets/index.e408cb8f.js new file mode 100644 index 000000000..433500825 --- /dev/null +++ b/public/admin/assets/index.e408cb8f.js @@ -0,0 +1 @@ +import{a6 as I,B as Q,C as j,w as q,D as K,I as O,O as z,P as G,Q as H}from"./element-plus.4328d892.js";import{_ as J}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{f as W,b as X}from"./index.aa9bb752.js";import{u as Y}from"./usePaging.2ad8e1e6.js";import{u as Z}from"./useDictOptions.a61fcf9f.js";import{d as ee,e as oe}from"./user_menu.121458b5.js";import"./lodash.08438971.js";import te from"./edit.da73b172.js";import{d as F,s as ae,r as y,$ as le,w as se,af as ne,o as n,c as re,U as o,L as e,u as l,R as u,M as v,K as p,a as b,k as ie,Q as ue,n as D}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.fa872673.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";const pe={class:"mt-4"},me=["src"],de={class:"flex mt-4 justify-end"},ce=F({name:"userMenuLists"}),to=F({...ce,setup(_e){const _=ae(),f=y(!1),h=le({pid:"",type:"",name:"",icon:"",sort:"",paths:"",params:"",is_show:"",is_disable:""}),g=y([]),x=t=>{g.value=t.map(({id:s})=>s)},{dictData:B}=Z(""),{pager:m,getLists:C,resetParams:L,resetPage:P}=Y({fetchFun:oe,params:h}),V=async()=>{var t;f.value=!0,await D(),(t=_.value)==null||t.open("add")},$=async t=>{var s,r;f.value=!0,await D(),(s=_.value)==null||s.open("edit"),(r=_.value)==null||r.setFormData(t)},N=async t=>{await W.confirm("\u786E\u5B9A\u8981\u5220\u9664\uFF1F"),await ee({id:t}),C()};return C(),se(()=>m.lists,(t,s)=>{t==null||t.forEach(r=>{var c;(c=r==null?void 0:r.children)==null||c.forEach(d=>{d.parentName=r.name})})}),(t,s)=>{const r=Q,c=j,d=q,R=K,k=O,T=X,i=z,w=I,U=G,A=J,E=ne("perms"),M=H;return n(),re("div",null,[o(k,{class:"!border-none mb-4",shadow:"never"},{default:e(()=>[o(R,{class:"mb-[-16px]",model:l(h),inline:""},{default:e(()=>[o(c,{label:"\u83DC\u5355\u540D\u79F0",prop:"name"},{default:e(()=>[o(r,{class:"w-[280px]",modelValue:l(h).name,"onUpdate:modelValue":s[0]||(s[0]=a=>l(h).name=a),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u83DC\u5355\u540D\u79F0"},null,8,["modelValue"])]),_:1}),o(c,null,{default:e(()=>[o(d,{type:"primary",onClick:l(P)},{default:e(()=>[u("\u67E5\u8BE2")]),_:1},8,["onClick"]),o(d,{onClick:l(L)},{default:e(()=>[u("\u91CD\u7F6E")]),_:1},8,["onClick"])]),_:1})]),_:1},8,["model"])]),_:1}),v((n(),p(k,{class:"!border-none",shadow:"never"},{default:e(()=>[v((n(),p(d,{type:"primary",onClick:V},{icon:e(()=>[o(T,{name:"el-icon-Plus"})]),default:e(()=>[u(" \u65B0\u589E ")]),_:1})),[[E,["user.user_menu/add"]]]),b("div",pe,[o(U,{data:l(m).lists,onSelectionChange:x,"row-key":"id","tree-props":{children:"children",hasChildren:"hasChildren"}},{default:e(()=>[o(i,{label:"\u83DC\u5355\u540D\u79F0",prop:"name","show-overflow-tooltip":""}),o(i,{label:"\u83DC\u5355\u56FE\u6807",prop:"icon","show-overflow-tooltip":""},{default:e(({row:a})=>[b("img",{src:a.icon,style:{width:"50px",height:"50px"}},null,8,me)]),_:1}),o(i,{label:"\u83DC\u5355\u5907\u6CE8",prop:"notes","show-overflow-tooltip":""}),o(i,{label:"\u83DC\u5355\u6392\u5E8F",prop:"sort","show-overflow-tooltip":""}),o(i,{label:"\u8DEF\u7531\u5730\u5740",prop:"paths","show-overflow-tooltip":"",width:"320px"}),o(i,{label:"\u8DEF\u7531\u53C2\u6570",prop:"params","show-overflow-tooltip":""}),o(i,{label:"\u662F\u5426\u663E\u793A",prop:"is_show","show-overflow-tooltip":""},{default:e(({row:a})=>[a.is_show==1?(n(),p(w,{key:0},{default:e(()=>[u("\u663E\u793A")]),_:1})):(n(),p(w,{key:1,type:"danger"},{default:e(()=>[u("\u9690\u85CF")]),_:1}))]),_:1}),o(i,{label:"\u662F\u5426\u7981\u7528",prop:"is_disable","show-overflow-tooltip":""},{default:e(({row:a})=>[a.is_disable==0?(n(),p(w,{key:0},{default:e(()=>[u("\u6B63\u5E38")]),_:1})):(n(),p(w,{key:1,type:"danger"},{default:e(()=>[u("\u7981\u7528")]),_:1}))]),_:1}),o(i,{label:"\u64CD\u4F5C",width:"120",fixed:"right"},{default:e(({row:a})=>[v((n(),p(d,{type:"primary",link:"",onClick:S=>$(a)},{default:e(()=>[u(" \u7F16\u8F91 ")]),_:2},1032,["onClick"])),[[E,["user.user_menu/edit"]]]),v((n(),p(d,{type:"danger",link:"",onClick:S=>N(a.id)},{default:e(()=>[u(" \u5220\u9664 ")]),_:2},1032,["onClick"])),[[E,["user.user_menu/delete"]]])]),_:1})]),_:1},8,["data"])]),b("div",de,[o(A,{modelValue:l(m),"onUpdate:modelValue":s[1]||(s[1]=a=>ie(m)?m.value=a:null),onChange:l(C)},null,8,["modelValue","onChange"])])]),_:1})),[[M,l(m).loading]]),l(f)?(n(),p(te,{key:0,ref_key:"editRef",ref:_,"dict-data":l(B),menuList:l(m).lists,onSuccess:l(C),onClose:s[2]||(s[2]=a=>f.value=!1)},null,8,["dict-data","menuList","onSuccess"])):ue("",!0)])}}});export{to as default}; diff --git a/public/admin/assets/index.e9059dc3.js b/public/admin/assets/index.e9059dc3.js new file mode 100644 index 000000000..dce8efa36 --- /dev/null +++ b/public/admin/assets/index.e9059dc3.js @@ -0,0 +1 @@ +import{a6 as A,B as I,C as M,M as O,N as Q,w as q,D as G,I as H,O as J,P as W,Q as X}from"./element-plus.4328d892.js";import{_ as Y}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{f as Z,b as ee}from"./index.ed71ac09.js";import{_ as te}from"./index.vue_vue_type_script_setup_true_lang.5c604000.js";import{d as h,s as oe,r as ae,$ as le,af as se,o as r,c as ne,U as e,L as o,u as t,a8 as g,R as m,a as k,M as v,K as c,S as ue,k as ie,Q as re,n as D}from"./@vue.51d7f2d8.js";import{c as V,d as me}from"./post.53815820.js";import{u as pe}from"./usePaging.2ad8e1e6.js";import{_ as de}from"./edit.vue_vue_type_script_setup_true_lang.076f3b55.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.b940d6e3.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";const ce={class:"post-lists"},_e={class:"flex justify-end mt-4"},fe=h({name:"post"}),lt=h({...fe,setup(be){const _=oe(),f=ae(!1),s=le({code:"",name:"",status:""}),{pager:i,getLists:b,resetPage:F,resetParams:B}=pe({fetchFun:V,params:s}),x=async()=>{var n;f.value=!0,await D(),(n=_.value)==null||n.open("add")},$=async n=>{var a,p;f.value=!0,await D(),(a=_.value)==null||a.open("edit"),(p=_.value)==null||p.getDetail(n)},j=async n=>{await Z.confirm("\u786E\u5B9A\u8981\u5220\u9664\uFF1F"),await me({id:n}),b()};return b(),(n,a)=>{const p=I,C=M,w=O,K=Q,d=q,P=te,R=G,E=H,N=ee,u=J,S=A,T=W,U=Y,y=se("perms"),z=X;return r(),ne("div",ce,[e(E,{class:"!border-none",shadow:"never"},{default:o(()=>[e(R,{ref:"formRef",class:"mb-[-16px]",model:t(s),inline:!0},{default:o(()=>[e(C,{label:"\u5C97\u4F4D\u7F16\u7801"},{default:o(()=>[e(p,{class:"w-[280px]",modelValue:t(s).code,"onUpdate:modelValue":a[0]||(a[0]=l=>t(s).code=l),clearable:"",onKeyup:g(t(F),["enter"])},null,8,["modelValue","onKeyup"])]),_:1}),e(C,{label:"\u5C97\u4F4D\u540D\u79F0"},{default:o(()=>[e(p,{class:"w-[280px]",modelValue:t(s).name,"onUpdate:modelValue":a[1]||(a[1]=l=>t(s).name=l),clearable:"",onKeyup:g(t(F),["enter"])},null,8,["modelValue","onKeyup"])]),_:1}),e(C,{label:"\u5C97\u4F4D\u72B6\u6001"},{default:o(()=>[e(K,{class:"w-[280px]",modelValue:t(s).status,"onUpdate:modelValue":a[2]||(a[2]=l=>t(s).status=l)},{default:o(()=>[e(w,{label:"\u5168\u90E8",value:""}),e(w,{label:"\u6B63\u5E38",value:1}),e(w,{label:"\u505C\u7528",value:0})]),_:1},8,["modelValue"])]),_:1}),e(C,null,{default:o(()=>[e(d,{type:"primary",onClick:t(F)},{default:o(()=>[m("\u67E5\u8BE2")]),_:1},8,["onClick"]),e(d,{onClick:t(B)},{default:o(()=>[m("\u91CD\u7F6E")]),_:1},8,["onClick"]),e(P,{class:"ml-2.5","fetch-fun":t(V),params:t(s),"page-size":t(i).size},null,8,["fetch-fun","params","page-size"])]),_:1})]),_:1},8,["model"])]),_:1}),e(E,{class:"!border-none mt-4",shadow:"never"},{default:o(()=>[k("div",null,[v((r(),c(d,{type:"primary",onClick:a[3]||(a[3]=l=>x())},{icon:o(()=>[e(N,{name:"el-icon-Plus"})]),default:o(()=>[m(" \u65B0\u589E ")]),_:1})),[[y,["dept.jobs/add"]]])]),v((r(),c(T,{class:"mt-4",size:"large",data:t(i).lists},{default:o(()=>[e(u,{label:"\u5C97\u4F4D\u7F16\u7801",prop:"code","min-width":"100"}),e(u,{label:"\u5C97\u4F4D\u540D\u79F0",prop:"name","min-width":"100"}),e(u,{label:"\u6392\u5E8F",prop:"sort","min-width":"100"}),e(u,{label:"\u5907\u6CE8",prop:"remark","min-width":"100","show-overflow-tooltip":""}),e(u,{label:"\u6DFB\u52A0\u65F6\u95F4",prop:"create_time","min-width":"180"}),e(u,{label:"\u72B6\u6001",prop:"status","min-width":"100"},{default:o(({row:l})=>[e(S,{class:"ml-2",type:l.status?"":"danger"},{default:o(()=>[m(ue(l.status_desc),1)]),_:2},1032,["type"])]),_:1}),e(u,{label:"\u64CD\u4F5C",width:"120",fixed:"right"},{default:o(({row:l})=>[v((r(),c(d,{type:"primary",link:"",onClick:L=>$(l)},{default:o(()=>[m(" \u7F16\u8F91 ")]),_:2},1032,["onClick"])),[[y,["dept.jobs/edit"]]]),v((r(),c(d,{type:"danger",link:"",onClick:L=>j(l.id)},{default:o(()=>[m(" \u5220\u9664 ")]),_:2},1032,["onClick"])),[[y,["dept.jobs/delete"]]])]),_:1})]),_:1},8,["data"])),[[z,t(i).loading]]),k("div",_e,[e(U,{modelValue:t(i),"onUpdate:modelValue":a[4]||(a[4]=l=>ie(i)?i.value=l:null),onChange:t(b)},null,8,["modelValue","onChange"])])]),_:1}),t(f)?(r(),c(de,{key:0,ref_key:"editRef",ref:_,onSuccess:t(b),onClose:a[5]||(a[5]=l=>f.value=!1)},null,8,["onSuccess"])):re("",!0)])}}});export{lt as default}; diff --git a/public/admin/assets/index.e94931bd.js b/public/admin/assets/index.e94931bd.js new file mode 100644 index 000000000..783f0a514 --- /dev/null +++ b/public/admin/assets/index.e94931bd.js @@ -0,0 +1 @@ +import{S as L,x as R,y as x,a6 as P,I as V,O as M,w as U,P as O,Q as S}from"./element-plus.4328d892.js";import{a as z}from"./message.8c449686.js";import{u as q}from"./usePaging.2ad8e1e6.js";import{k as I}from"./index.37f7aea6.js";import{d as A,r as K,$ as Q,b8 as $,a4 as j,af as G,o as a,c as b,U as t,L as e,u as r,k as H,T as J,a7 as N,M as F,K as l,R as p}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const W=A({name:"notice"}),Vt=A({...W,setup(X){let c;(n=>{n[n.USER=1]="USER",n[n.PLATFORM=2]="PLATFORM"})(c||(c={}));const u=K(1),g=[{name:"\u901A\u77E5\u7528\u6237",type:1},{name:"\u901A\u77E5\u5E73\u53F0",type:2}],h=Q({recipient:u}),{pager:_,getLists:m}=q({fetchFun:z,params:h});return $(()=>{m()}),m(),(n,d)=>{const v=L,f=V,y=R,B=x,i=M,E=P,k=j("router-link"),w=U,C=O,T=G("perms"),D=S;return a(),b("div",null,[t(f,{class:"!border-none",shadow:"never"},{default:e(()=>[t(v,{type:"warning",title:"\u6E29\u99A8\u63D0\u793A\uFF1A\u5E73\u53F0\u914D\u7F6E\u5728\u5404\u4E2A\u573A\u666F\u4E0B\u7684\u901A\u77E5\u53D1\u9001\u65B9\u5F0F\u548C\u5185\u5BB9\u6A21\u677F",closable:!1,"show-icon":""})]),_:1}),t(f,{class:"!border-none mt-4",shadow:"never"},{default:e(()=>[t(B,{modelValue:r(u),"onUpdate:modelValue":d[0]||(d[0]=o=>H(u)?u.value=o:null),onTabChange:r(m)},{default:e(()=>[(a(),b(J,null,N(g,(o,s)=>t(y,{key:s,label:o.name,name:o.type,lazy:""},null,8,["label","name"])),64))]),_:1},8,["modelValue","onTabChange"]),F((a(),l(C,{size:"large",data:r(_).lists},{default:e(()=>[t(i,{label:"\u901A\u77E5\u573A\u666F",prop:"scene_name","min-width":"120"}),t(i,{label:"\u901A\u77E5\u7C7B\u578B",prop:"type_desc","min-width":"160"}),t(i,{label:"\u77ED\u4FE1\u901A\u77E5","min-width":"80"},{default:e(({row:o})=>{var s;return[((s=o.sms_notice)==null?void 0:s.status)==1?(a(),l(E,{key:0},{default:e(()=>[p("\u5F00\u542F")]),_:1})):(a(),l(E,{key:1,type:"danger"},{default:e(()=>[p("\u5173\u95ED")]),_:1}))]}),_:1}),t(i,{label:"\u64CD\u4F5C","min-width":"80",fixed:"right"},{default:e(({row:o})=>[F((a(),l(w,{type:"primary",link:""},{default:e(()=>[t(k,{to:{path:r(I)("notice.notice/set"),query:{id:o.id}}},{default:e(()=>[p(" \u8BBE\u7F6E ")]),_:2},1032,["to"])]),_:2},1024)),[[T,["notice.notice/set"]]])]),_:1})]),_:1},8,["data"])),[[D,r(_).loading]])]),_:1})])}}});export{Vt as default}; diff --git a/public/admin/assets/index.eb10fc3a.js b/public/admin/assets/index.eb10fc3a.js new file mode 100644 index 000000000..21ce20d11 --- /dev/null +++ b/public/admin/assets/index.eb10fc3a.js @@ -0,0 +1 @@ +import{a6 as j,B as q,C as z,M as G,N as H,w as J,D as W,I as X,O as Y,P as Z,Q as ee}from"./element-plus.4328d892.js";import{f as te,b as ae}from"./index.ed71ac09.js";import{d as K,s as F,r as h,$ as oe,j as le,n as g,af as ne,o as p,c as se,U as e,L as t,u as s,a8 as ie,R as i,a as re,M as E,K as c,S as ue,Q as T}from"./@vue.51d7f2d8.js";import{_ as pe}from"./edit.vue_vue_type_script_setup_true_lang.d84dd9bf.js";import{e as me,f as de}from"./department.4e17bcb6.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.b940d6e3.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./useDictOptions.8d37e54b.js";const ce={class:"department"},_e=K({name:"department"}),tt=K({..._e,setup(fe){const B=F(),_=F(),x=F();let k=!1;const C=h(!1),b=h([]),m=oe({status:"",name:""}),v=h(!1),d=async()=>{C.value=!0,b.value=await me(m),C.value=!1},L=()=>{var o;(o=x.value)==null||o.resetFields(),d()},D=async o=>{var a,n;v.value=!0,await g(),o&&((a=_.value)==null||a.setFormData({pid:o})),(n=_.value)==null||n.open("add")},P=async o=>{var a,n;v.value=!0,await g(),(a=_.value)==null||a.open("edit"),(n=_.value)==null||n.getDetail(o)},S=async o=>{await te.confirm("\u786E\u5B9A\u8981\u5220\u9664\uFF1F"),await de({id:o}),d()},V=()=>{k=!k,R(b.value,k)},R=(o,a=!0)=>{var n;for(const r in o)(n=B.value)==null||n.toggleRowExpansion(o[r],a),o[r].children&&R(o[r].children,a)};return le(async()=>{await d(),g(()=>{V()})}),(o,a)=>{const n=q,r=z,w=G,I=H,u=J,M=W,$=X,U=ae,f=Y,A=j,O=Z,y=ne("perms"),Q=ee;return p(),se("div",ce,[e($,{class:"!border-none",shadow:"never"},{default:t(()=>[e(M,{ref_key:"formRef",ref:x,class:"mb-[-16px]",model:s(m),inline:!0},{default:t(()=>[e(r,{label:"\u90E8\u95E8\u540D\u79F0",prop:"name"},{default:t(()=>[e(n,{class:"w-[280px]",modelValue:s(m).name,"onUpdate:modelValue":a[0]||(a[0]=l=>s(m).name=l),clearable:"",onKeyup:ie(d,["enter"])},null,8,["modelValue","onKeyup"])]),_:1}),e(r,{label:"\u90E8\u95E8\u72B6\u6001",prop:"status"},{default:t(()=>[e(I,{class:"w-[280px]",modelValue:s(m).status,"onUpdate:modelValue":a[1]||(a[1]=l=>s(m).status=l)},{default:t(()=>[e(w,{label:"\u5168\u90E8",value:""}),e(w,{label:"\u6B63\u5E38",value:"1"}),e(w,{label:"\u505C\u7528",value:"0"})]),_:1},8,["modelValue"])]),_:1}),e(r,null,{default:t(()=>[e(u,{type:"primary",onClick:d},{default:t(()=>[i("\u67E5\u8BE2")]),_:1}),e(u,{onClick:L},{default:t(()=>[i("\u91CD\u7F6E")]),_:1})]),_:1})]),_:1},8,["model"])]),_:1}),e($,{class:"!border-none mt-4",shadow:"never"},{default:t(()=>[re("div",null,[E((p(),c(u,{type:"primary",onClick:a[2]||(a[2]=l=>D())},{icon:t(()=>[e(U,{name:"el-icon-Plus"})]),default:t(()=>[i(" \u65B0\u589E ")]),_:1})),[[y,["dept.dept/add"]]]),e(u,{onClick:V},{default:t(()=>[i(" \u5C55\u5F00/\u6298\u53E0 ")]),_:1})]),E((p(),c(O,{ref_key:"tableRef",ref:B,class:"mt-4",size:"large",data:s(b),"row-key":"id","tree-props":{children:"children",hasChildren:"hasChildren"}},{default:t(()=>[e(f,{label:"\u90E8\u95E8\u540D\u79F0",prop:"name","min-width":"150","show-overflow-tooltip":""}),e(f,{label:"\u90E8\u95E8\u72B6\u6001",prop:"status","min-width":"100"},{default:t(({row:l})=>[e(A,{class:"ml-2",type:l.status?"":"danger"},{default:t(()=>[i(ue(l.status_desc),1)]),_:2},1032,["type"])]),_:1}),e(f,{label:"\u6392\u5E8F",prop:"sort","min-width":"100"}),e(f,{label:"\u66F4\u65B0\u65F6\u95F4",prop:"update_time","min-width":"180"}),e(f,{label:"\u64CD\u4F5C",width:"160",fixed:"right"},{default:t(({row:l})=>[E((p(),c(u,{type:"primary",link:"",onClick:N=>D(l.id)},{default:t(()=>[i(" \u65B0\u589E ")]),_:2},1032,["onClick"])),[[y,["dept.dept/add"]]]),E((p(),c(u,{type:"primary",link:"",onClick:N=>P(l)},{default:t(()=>[i(" \u7F16\u8F91 ")]),_:2},1032,["onClick"])),[[y,["dept.dept/edit"]]]),l.pid!==0?E((p(),c(u,{key:0,type:"danger",link:"",onClick:N=>S(l.id)},{default:t(()=>[i(" \u5220\u9664 ")]),_:2},1032,["onClick"])),[[y,["dept.dept/delete"]]]):T("",!0)]),_:1})]),_:1},8,["data"])),[[Q,s(C)]])]),_:1}),s(v)?(p(),c(pe,{key:0,ref_key:"editRef",ref:_,onSuccess:d,onClose:a[3]||(a[3]=l=>v.value=!1)},null,512)):T("",!0)])}}});export{tt as default}; diff --git a/public/admin/assets/index.ecb54cf8.js b/public/admin/assets/index.ecb54cf8.js new file mode 100644 index 000000000..383701df2 --- /dev/null +++ b/public/admin/assets/index.ecb54cf8.js @@ -0,0 +1 @@ +import{a6 as A,B as I,C as M,M as O,N as Q,w as q,D as G,I as H,O as J,P as W,Q as X}from"./element-plus.4328d892.js";import{_ as Y}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{f as Z,b as ee}from"./index.aa9bb752.js";import{_ as te}from"./index.vue_vue_type_script_setup_true_lang.f3cc5114.js";import{d as h,s as oe,r as ae,$ as le,af as se,o as r,c as ne,U as e,L as o,u as t,a8 as g,R as m,a as k,M as v,K as c,S as ue,k as ie,Q as re,n as D}from"./@vue.51d7f2d8.js";import{c as V,d as me}from"./post.5d32b419.js";import{u as pe}from"./usePaging.2ad8e1e6.js";import{_ as de}from"./edit.vue_vue_type_script_setup_true_lang.2571bf25.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.fa872673.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";const ce={class:"post-lists"},_e={class:"flex justify-end mt-4"},fe=h({name:"post"}),lt=h({...fe,setup(be){const _=oe(),f=ae(!1),s=le({code:"",name:"",status:""}),{pager:i,getLists:b,resetPage:F,resetParams:B}=pe({fetchFun:V,params:s}),x=async()=>{var n;f.value=!0,await D(),(n=_.value)==null||n.open("add")},$=async n=>{var a,p;f.value=!0,await D(),(a=_.value)==null||a.open("edit"),(p=_.value)==null||p.getDetail(n)},j=async n=>{await Z.confirm("\u786E\u5B9A\u8981\u5220\u9664\uFF1F"),await me({id:n}),b()};return b(),(n,a)=>{const p=I,C=M,w=O,K=Q,d=q,P=te,R=G,E=H,N=ee,u=J,S=A,T=W,U=Y,y=se("perms"),z=X;return r(),ne("div",ce,[e(E,{class:"!border-none",shadow:"never"},{default:o(()=>[e(R,{ref:"formRef",class:"mb-[-16px]",model:t(s),inline:!0},{default:o(()=>[e(C,{label:"\u5C97\u4F4D\u7F16\u7801"},{default:o(()=>[e(p,{class:"w-[280px]",modelValue:t(s).code,"onUpdate:modelValue":a[0]||(a[0]=l=>t(s).code=l),clearable:"",onKeyup:g(t(F),["enter"])},null,8,["modelValue","onKeyup"])]),_:1}),e(C,{label:"\u5C97\u4F4D\u540D\u79F0"},{default:o(()=>[e(p,{class:"w-[280px]",modelValue:t(s).name,"onUpdate:modelValue":a[1]||(a[1]=l=>t(s).name=l),clearable:"",onKeyup:g(t(F),["enter"])},null,8,["modelValue","onKeyup"])]),_:1}),e(C,{label:"\u5C97\u4F4D\u72B6\u6001"},{default:o(()=>[e(K,{class:"w-[280px]",modelValue:t(s).status,"onUpdate:modelValue":a[2]||(a[2]=l=>t(s).status=l)},{default:o(()=>[e(w,{label:"\u5168\u90E8",value:""}),e(w,{label:"\u6B63\u5E38",value:1}),e(w,{label:"\u505C\u7528",value:0})]),_:1},8,["modelValue"])]),_:1}),e(C,null,{default:o(()=>[e(d,{type:"primary",onClick:t(F)},{default:o(()=>[m("\u67E5\u8BE2")]),_:1},8,["onClick"]),e(d,{onClick:t(B)},{default:o(()=>[m("\u91CD\u7F6E")]),_:1},8,["onClick"]),e(P,{class:"ml-2.5","fetch-fun":t(V),params:t(s),"page-size":t(i).size},null,8,["fetch-fun","params","page-size"])]),_:1})]),_:1},8,["model"])]),_:1}),e(E,{class:"!border-none mt-4",shadow:"never"},{default:o(()=>[k("div",null,[v((r(),c(d,{type:"primary",onClick:a[3]||(a[3]=l=>x())},{icon:o(()=>[e(N,{name:"el-icon-Plus"})]),default:o(()=>[m(" \u65B0\u589E ")]),_:1})),[[y,["dept.jobs/add"]]])]),v((r(),c(T,{class:"mt-4",size:"large",data:t(i).lists},{default:o(()=>[e(u,{label:"\u5C97\u4F4D\u7F16\u7801",prop:"code","min-width":"100"}),e(u,{label:"\u5C97\u4F4D\u540D\u79F0",prop:"name","min-width":"100"}),e(u,{label:"\u6392\u5E8F",prop:"sort","min-width":"100"}),e(u,{label:"\u5907\u6CE8",prop:"remark","min-width":"100","show-overflow-tooltip":""}),e(u,{label:"\u6DFB\u52A0\u65F6\u95F4",prop:"create_time","min-width":"180"}),e(u,{label:"\u72B6\u6001",prop:"status","min-width":"100"},{default:o(({row:l})=>[e(S,{class:"ml-2",type:l.status?"":"danger"},{default:o(()=>[m(ue(l.status_desc),1)]),_:2},1032,["type"])]),_:1}),e(u,{label:"\u64CD\u4F5C",width:"120",fixed:"right"},{default:o(({row:l})=>[v((r(),c(d,{type:"primary",link:"",onClick:L=>$(l)},{default:o(()=>[m(" \u7F16\u8F91 ")]),_:2},1032,["onClick"])),[[y,["dept.jobs/edit"]]]),v((r(),c(d,{type:"danger",link:"",onClick:L=>j(l.id)},{default:o(()=>[m(" \u5220\u9664 ")]),_:2},1032,["onClick"])),[[y,["dept.jobs/delete"]]])]),_:1})]),_:1},8,["data"])),[[z,t(i).loading]]),k("div",_e,[e(U,{modelValue:t(i),"onUpdate:modelValue":a[4]||(a[4]=l=>ie(i)?i.value=l:null),onChange:t(b)},null,8,["modelValue","onChange"])])]),_:1}),t(f)?(r(),c(de,{key:0,ref_key:"editRef",ref:_,onSuccess:t(b),onClose:a[5]||(a[5]=l=>f.value=!1)},null,8,["onSuccess"])):re("",!0)])}}});export{lt as default}; diff --git a/public/admin/assets/index.ed71ac09.js b/public/admin/assets/index.ed71ac09.js new file mode 100644 index 000000000..454eb01a6 --- /dev/null +++ b/public/admin/assets/index.ed71ac09.js @@ -0,0 +1 @@ +var _1=Object.defineProperty;var v1=(a,o,e)=>o in a?_1(a,o,{enumerable:!0,configurable:!0,writable:!0,value:e}):a[o]=e;var F=(a,o,e)=>(v1(a,typeof o!="symbol"?o+"":o,e),e);import{u as r,v as F3,d as g,e as v,a4 as l3,o as _,c as y,U as u,L as p,a as m,K as A,aK as p1,P as G3,Q as O,s as z1,r as E3,I as M3,S as e3,_ as i3,M as U3,V as Y3,O as W3,W as b1,H as y1,ag as g1,ah as w1,h as A1,T as Z,a7 as c3,k as D,w as Z3,R as Y,bf as f1,be as V1,n as x1,j as E1,aq as M1}from"./@vue.51d7f2d8.js";import{E as X3,u as L1,a as H1,i as T1,b as O1,c as B1,d as I1,e as D1,f as R1,g as $3,h as P1,j as C1,k as s3,l as W,m as n3,n as S1,o as k1,p as K3,q as J3,r as Q3,s as j1,t as N1,v as q1,w as F1,x as G1,y as U1,z as Y1,A as W1}from"./element-plus.4328d892.js";import{c as Z1,l as X1,m as a1,n as $1,p as K1,f as J1}from"./@vueuse.ec90c285.js";import{l as T}from"./lodash.08438971.js";import{a as o1,b as r3}from"./axios.105476b3.js";import{u as L3,a as H3,c as Q1,b as a0,R as w3}from"./vue-router.9f65afb1.js";import{d as _3,c as o0}from"./pinia.56356cb7.js";import{l as e0}from"./css-color-function.7ac6f233.js";import{H as e1}from"./@element-plus.a074d1f6.js";import{N as G}from"./nprogress.f73355d0.js";import{u as l0}from"./vue-clipboard3.dca5bca3.js";import{u as i0,a as c0,b as t0,c as s0,d as n0,e as r0,f as u0,g as m0,h as d0,j as h0,k as _0,l as v0,m as p0,n as z0,o as b0,p as y0,q as g0,r as w0,s as A0,v as f0,w as V0,x as x0,y as E0,z as M0,A as L0}from"./echarts.ac57a99a.js";import"./highlight.js.dba6fa1b.js";import{o as H0}from"./@highlightjs.40d5feba.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./vue-demi.b3a9cad9.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./clipboard.16e4491b.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";(function(){const o=document.createElement("link").relList;if(o&&o.supports&&o.supports("modulepreload"))return;for(const c of document.querySelectorAll('link[rel="modulepreload"]'))i(c);new MutationObserver(c=>{for(const t of c)if(t.type==="childList")for(const s of t.addedNodes)s.tagName==="LINK"&&s.rel==="modulepreload"&&i(s)}).observe(document,{childList:!0,subtree:!0});function e(c){const t={};return c.integrity&&(t.integrity=c.integrity),c.referrerpolicy&&(t.referrerPolicy=c.referrerpolicy),c.crossorigin==="use-credentials"?t.credentials="include":c.crossorigin==="anonymous"?t.credentials="omit":t.credentials="same-origin",t}function i(c){if(c.ep)return;c.ep=!0;const t=e(c);fetch(c.href,t)}})();const R={terminal:1,title:"\u540E\u53F0\u7BA1\u7406\u7CFB\u7EDF",version:"1.6.0",baseUrl:"/",urlPrefix:"adminapi",timeout:20*1e3};var l1=(a=>(a.JSON="application/json;charset=UTF-8",a.FORM_DATA="multipart/form-data;charset=UTF-8",a))(l1||{}),a3=(a=>(a.GET="GET",a.POST="POST",a))(a3||{}),Q=(a=>(a[a.SUCCESS=1]="SUCCESS",a[a.FAIL=0]="FAIL",a[a.LOGIN_FAILURE=-1]="LOGIN_FAILURE",a[a.OPEN_NEW_PAGE=2]="OPEN_NEW_PAGE",a))(Q||{});const J=new Map,I3=class{static createInstance(){var o;return(o=this.instance)!=null?o:this.instance=new I3}add(o){const e=o.url;this.remove(e),o.cancelToken=new o1.CancelToken(i=>{J.has(e)||J.set(e,i)})}remove(o){if(J.has(o)){const e=J.get(o);e&&e(o),J.delete(o)}}};let u3=I3;F(u3,"instance");const R3=u3.createInstance();class T0{constructor(o){F(this,"axiosInstance");F(this,"config");F(this,"options");this.config=o,this.options=o.requestOptions,this.axiosInstance=o1.create(o),this.setupInterceptors()}getAxiosInstance(){return this.axiosInstance}setupInterceptors(){if(!this.config.axiosHooks)return;const{requestInterceptorsHook:o,requestInterceptorsCatchHook:e,responseInterceptorsHook:i,responseInterceptorsCatchHook:c}=this.config.axiosHooks;this.axiosInstance.interceptors.request.use(t=>(this.addCancelToken(t),T.exports.isFunction(o)&&(t=o(t)),t),t=>(T.exports.isFunction(e)&&e(t),t)),this.axiosInstance.interceptors.response.use(t=>(this.removeCancelToken(t.config.url),T.exports.isFunction(i)&&(t=i(t)),t),t=>{var s;return T.exports.isFunction(c)&&c(t),t.code!=r3.exports.AxiosError.ERR_CANCELED&&this.removeCancelToken((s=t.config)==null?void 0:s.url),t.code==r3.exports.AxiosError.ECONNABORTED||t.code==r3.exports.AxiosError.ERR_NETWORK?new Promise(n=>setTimeout(n,500)).then(()=>this.retryRequest(t)):Promise.reject(t)})}addCancelToken(o){const{ignoreCancelToken:e}=o.requestOptions;!e&&R3.add(o)}removeCancelToken(o){R3.remove(o)}retryRequest(o){var t,s;const e=o.config,{retryCount:i,isOpenRetry:c}=e.requestOptions;return!c||((t=e.method)==null?void 0:t.toUpperCase())==a3.POST||(e.retryCount=(s=e.retryCount)!=null?s:0,e.retryCount>=i)?Promise.reject(o):(e.retryCount++,this.axiosInstance.request(e))}get(o,e){return this.request({...o,method:a3.GET},e)}post(o,e){return this.request({...o,method:a3.POST},e)}request(o,e){const i=T.exports.merge({},this.options,e),c={...T.exports.cloneDeep(o),requestOptions:i},{urlPrefix:t}=i;return t&&(c.url=`${t}${o.url}`),new Promise((s,n)=>{this.axiosInstance.request(c).then(h=>{s(h)}).catch(h=>{n(h)})})}}const T3="token",O0="account",A3="setting",B0="modulepreload",I0=function(a){return"/admin/"+a},P3={},l=function(o,e,i){if(!e||e.length===0)return o();const c=document.getElementsByTagName("link");return Promise.all(e.map(t=>{if(t=I0(t),t in P3)return;P3[t]=!0;const s=t.endsWith(".css"),n=s?'[rel="stylesheet"]':"";if(!!i)for(let z=c.length-1;z>=0;z--){const w=c[z];if(w.href===t&&(!s||w.rel==="stylesheet"))return}else if(document.querySelector(`link[href="${t}"]${n}`))return;const d=document.createElement("link");if(d.rel=s?"stylesheet":B0,s||(d.as="script",d.crossOrigin=""),d.href=t,document.head.appendChild(d),s)return new Promise((z,w)=>{d.addEventListener("load",z),d.addEventListener("error",()=>w(new Error(`Unable to preload CSS for ${t}`)))})})).then(()=>o())};var i1=(a=>(a.LIGHT="light",a.DARK="dark",a))(i1||{}),d3=(a=>(a.CATALOGUE="M",a.MENU="C",a.BUTTON="A",a))(d3||{}),f3=(a=>(a[a.SM=640]="SM",a[a.MD=768]="MD",a[a.LG=1024]="LG",a[a.XL=1280]="XL",a[a["2XL"]=1536]="2XL",a))(f3||{});function X(a){return/^(https?:|mailto:|tel:)/.test(a)}var E=(a=>(a.LOGIN="/login",a.ERROR_403="/403",a.INDEX="/",a))(E||{});const D0=(a,o)=>o.findIndex(e=>e.fullPath==a),R0=(a,o)=>{const{path:e,meta:i,name:c}=a;return!!(!e||X(e)||i!=null&&i.hideTab||!o.hasRoute(c)||[E.LOGIN,E.ERROR_403].includes(e))},P0=(a,o)=>o.findIndex(e=>e.fullPath===a),z3=a=>{var o,e,i;return(i=(e=(o=a.matched.at(-1))==null?void 0:o.components)==null?void 0:e.default)==null?void 0:i.name},c1=a=>{const{params:o,path:e,query:i}=a;return{params:o||{},path:e,query:i||{}}},t3=_3({id:"tabs",state:()=>({cacheTabList:new Set,tabList:[],tasMap:{},indexRouteName:""}),getters:{getTabList(){return this.tabList},getCacheTabList(){return Array.from(this.cacheTabList)}},actions:{setRouteName(a){this.indexRouteName=a},addCache(a){a&&this.cacheTabList.add(a)},removeCache(a){a&&this.cacheTabList.has(a)&&this.cacheTabList.delete(a)},clearCache(){this.cacheTabList.clear()},resetState(){this.cacheTabList=new Set,this.tabList=[],this.tasMap={},this.indexRouteName=""},addTab(a){const o=r(a.currentRoute),{name:e,query:i,meta:c,params:t,fullPath:s,path:n}=o;if(R0(o,a))return;const h=D0(s,this.tabList),d=z3(o),z={name:e,path:n,fullPath:s,title:c==null?void 0:c.title,query:i,params:t};this.tasMap[s]=z,c!=null&&c.keepAlive&&(console.log(d),this.addCache(d)),h==-1&&this.tabList.push(z)},removeTab(a,o){const{currentRoute:e,push:i}=o,c=P0(a,this.tabList);this.tabList.length>1&&c!==-1&&this.tabList.splice(c,1);const t=z3(e.value);if(this.removeCache(t),a!==e.value.fullPath)return;let s=null;c===0?s=this.tabList[c]:s=this.tabList[c-1];const n=c1(s);i(n)},removeOtherTab(a){this.tabList=this.tabList.filter(e=>e.fullPath==a.fullPath);const o=z3(a);this.cacheTabList.forEach(e=>{o!==e&&this.removeCache(e)})},removeAllTab(a){const{push:o,currentRoute:e}=a,{name:i}=r(e);if(i==this.indexRouteName){this.removeOtherTab(e.value);return}this.tabList=[],this.clearCache(),o(E.INDEX)}}}),b3={showCrumb:!0,showLogo:!0,isUniqueOpened:!1,sideWidth:200,sideTheme:"light",sideDarkColor:"#1d2124",openMultipleTabs:!0,theme:"#4A5DFF",successTheme:"#67c23a",warningTheme:"#e6a23c",dangerTheme:"#f56c6c",errorTheme:"#f56c6c",infoTheme:"#909399"},P={key:"like_admin_",set(a,o,e){a=this.getKey(a);let i={expire:e?this.time()+e:"",value:o};typeof i=="object"&&(i=JSON.stringify(i));try{window.localStorage.setItem(a,i)}catch{return null}},get(a){a=this.getKey(a);try{const o=window.localStorage.getItem(a);if(!o)return null;const{value:e,expire:i}=JSON.parse(o);return i&&i{const i={[`--el-color-${o}`]:a},c=e?S0:C0;for(const t in c)i[`--el-color-${o}-${t}`]=`color(${a} ${c[t]})`;return i},j0=(a,o=!1)=>{const e=Object.keys(a).reduce((t,s)=>Object.assign(t,k0(a[s],s,o)),{});let i=Object.keys(e).reduce((t,s)=>{const n=e0.convert(e[s]);return`${t}${s}:${n};`},"");i=`:root{${i}}`;let c=document.getElementById(C3);if(c){c.innerHTML=i;return}c=document.createElement("style"),c.setAttribute("type","text/css"),c.setAttribute("id",C3),c.innerHTML=i,document.head.append(c)},S3=P.get(A3),C=_3({id:"setting",state:()=>{const a={showDrawer:!1,...b3};return F3(S3)&&Object.assign(a,S3),a},actions:{setSetting(a){const{key:o,value:e}=a;this.hasOwnProperty(o)&&(this[o]=e);const i=Object.assign({},this.$state);delete i.showDrawer,P.set(A3,i)},setTheme(a){j0({primary:this.theme,success:this.successTheme,warning:this.warningTheme,danger:this.dangerTheme,error:this.errorTheme,info:this.infoTheme},a)},resetTheme(){for(const a in b3)this[a]=b3[a];P.remove(A3)}}}),N0={class:"main-wrap h-full bg-page"},q0={class:"p-4"},F0=g({__name:"main",setup(a){const o=N(),e=t3(),i=C(),c=v(()=>o.isRouteShow),t=v(()=>i.openMultipleTabs?e.getCacheTabList:[]);return(s,n)=>{const h=l3("router-view"),d=X3;return _(),y("main",N0,[u(d,null,{default:p(()=>[m("div",q0,[r(c)?(_(),A(h,{key:0},{default:p(({Component:z,route:w})=>[(_(),A(p1,{include:r(t),max:20},[(_(),A(G3(z),{key:w.fullPath}))],1032,["include"]))]),_:1})):O("",!0)])]),_:1})])}}});function G0(a){return j.post({url:"/login/account",params:{...a,terminal:R.terminal}})}function U0(){return j.post({url:"/login/logout"})}function Y0(){return j.get({url:"/auth.admin/mySelf"})}function M4(a){return j.post({url:"/auth.admin/editSelf",params:a})}function L4(a){return j.get({url:"/user.user/lists",params:a})}const $=_3({id:"user",state:()=>({token:u1()||"",userInfo:{},routes:[],perms:[]}),getters:{},actions:{resetState(){this.token="",this.userInfo={},this.perms=[]},login(a){const{account:o,password:e}=a;return new Promise((i,c)=>{G0({account:o.trim(),password:e}).then(t=>{this.token=t.token,P.set(T3,t.token),i(t)}).catch(t=>{c(t)})})},logout(){return new Promise((a,o)=>{U0().then(async e=>{this.token="",await L.push(E.LOGIN),h3(),a(e)}).catch(e=>{o(e)})})},getUserInfo(){return new Promise((a,o)=>{Y0().then(e=>{this.userInfo=e.user,this.perms=e.permissions,this.routes=n1(e.menu),a(e)}).catch(e=>{o(e)})})}}}),W0=g({__name:"index",props:{...L1,teleported:{type:Boolean,default:!1},placement:{type:String,default:"top"},overfloType:{type:String,default:"ellipsis"}},setup(a){const o=a,e=z1(),i=E3(!1);return Z1(e,"mouseenter",()=>{var c,t;((c=e.value)==null?void 0:c.scrollWidth)>((t=e.value)==null?void 0:t.offsetWidth)?i.value=!1:i.value=!0}),(c,t)=>{const s=H1;return _(),y("div",null,[u(s,M3(o,{disabled:r(i)}),{default:p(()=>[m("div",{ref_key:"textRef",ref:e,class:"overflow-text truncate",style:i3({textOverflow:a.overfloType})},e3(c.content),5)]),_:1},16,["disabled"])])}}}),o3=(a,o="px")=>Object.is(Number(a),NaN)?a:`${a}${o}`,k3=a=>a==null&&typeof a>"u",H4=(a,o={children:"children"})=>{a=T.exports.cloneDeep(a);const{children:e}=o,i=[],c=[];for(a.forEach(t=>c.push(t));c.length;){const t=c.shift();t[e]&&(t[e].forEach(s=>c.push(s)),delete t[e]),i.push(t)}return i},T4=(a,o={id:"id",parentId:"pid",children:"children"})=>{a=T.exports.cloneDeep(a);const{id:e,parentId:i,children:c}=o,t=[],s=new Map;return a.forEach(n=>{var d;s.set(n[e],n);const h=s.get(n[i]);h?(h[c]=(d=h[c])!=null?d:[],h[c].push(n)):t.push(n)}),t};function Z0(a){if(a.length===0||!a||a=="undefined")return a;const o=a.replace("//","/"),e=o.length;return o[e-1]==="/"?o.slice(0,e-1):o}function X0(a){let o="";for(const e of Object.keys(a)){const i=a[e],c=encodeURIComponent(e)+"=";if(!k3(i))if(F3(i)){for(const t of Object.keys(i))if(!k3(i[t])){const s=e+"["+t+"]",n=encodeURIComponent(s)+"=";o+=n+encodeURIComponent(i[t])+"&"}}else o+=c+encodeURIComponent(i)+"&"}return o.slice(0,-1)}const O4=(a,o="yyyy-mm-dd")=>{a||(a=Number(new Date)),a.toString().length==10&&(a*=1e3);const e=new Date(a);let i;const c={"y+":e.getFullYear().toString(),"m+":(e.getMonth()+1).toString(),"d+":e.getDate().toString(),"h+":e.getHours().toString(),"M+":e.getMinutes().toString(),"s+":e.getSeconds().toString()};for(const t in c)i=new RegExp("("+t+")").exec(o),i&&(o=o.replace(i[1],i[1].length==1?c[t]:c[t].padStart(i[1].length,"0")));return o},B4=(a=8)=>{let o=Date.now().toString(36);return o+=Math.random().toString(36).substring(3,a),o},$0=g({__name:"index",props:{width:{type:[String,Number],default:"auto"},height:{type:[String,Number],default:"auto"},radius:{type:[String,Number],default:0},...T1},setup(a){const o=a,e=v(()=>({width:o3(o.width),height:o3(o.height),borderRadius:o3(o.radius)}));return(i,c)=>{const t=O1;return _(),A(t,M3({style:e.value},o),null,16,["style"])}}});const B=(a,o)=>{const e=a.__vccOpts||a;for(const[i,c]of o)e[i]=c;return e},K0=B($0,[["__scopeId","data-v-503f53ec"]]),J0={class:"logo"},Q0=g({__name:"logo",props:{szie:{type:Number,default:34},title:{type:String},theme:{type:String},showTitle:{type:Boolean,default:!0}},setup(a){const o=N(),e=v(()=>o.config);return(i,c)=>{const t=K0,s=W0;return _(),y("div",J0,[u(t,{width:a.szie,height:a.szie,src:r(e).web_logo},null,8,["width","height","src"]),u(b1,{name:"title-width"},{default:p(()=>[U3(m("div",{class:W3(["logo-title overflow-hidden whitespace-nowrap",{"text-white":a.theme==r(i1).DARK}]),style:i3({left:`${a.szie+16}px`})},[u(s,{content:a.title||r(e).web_name,teleported:!0,placement:"bottom","overflo-type":"unset"},null,8,["content"])],6),[[Y3,a.showTitle]])]),_:1})])}}});const a2=B(Q0,[["__scopeId","data-v-cb33a7bb"]]),o2=g({__name:"index",props:{to:{},replace:{type:Boolean}},setup(a){const o=a,e=v(()=>typeof o.to!="object"&&X(o.to)),i=v(()=>e.value?"a":"router-link"),c=v(()=>e.value?{href:o.to,target:"_blank"}:o);return(t,s)=>(_(),A(G3(r(i)),g1(w1(r(c))),{default:p(()=>[y1(t.$slots,"default")]),_:3},16))}}),e2=["local-icon-a-tixingdengpao","local-icon-Androidfanhui","local-icon-anquan","local-icon-anquan_mian","local-icon-anquan_mian1","local-icon-banxing_mian","local-icon-baoxian","local-icon-bendishenghuodaxue","local-icon-bianji","local-icon-biaoqing","local-icon-bukejian","local-icon-caipinguanli","local-icon-caiwu","local-icon-caiwu_jifen","local-icon-caiwu_tixian","local-icon-canyinfuwu","local-icon-carryout","local-icon-chexiao","local-icon-chihuohongbao","local-icon-chuangyiwuliao","local-icon-close","local-icon-daiyunying","local-icon-danwei","local-icon-danxuankuang","local-icon-danxuanxuanzhong","local-icon-dayin","local-icon-dayin_mian","local-icon-del","local-icon-diancanshezhi","local-icon-dianhua","local-icon-dianhua_mian","local-icon-dianputuijian","local-icon-dianpu_fengge","local-icon-dianzifapiao","local-icon-dingcan","local-icon-dingdan","local-icon-dingdan1","local-icon-dingdan_mian","local-icon-dingwei","local-icon-dingwei_mian","local-icon-ditu","local-icon-ditu_mian","local-icon-duizhang","local-icon-elemo","local-icon-ezhanggui","local-icon-falvfuwubaoxiaohei","local-icon-fengniaopaotui","local-icon-fenxiang","local-icon-fukuan","local-icon-fukuan_mian","local-icon-fullscreen-exit","local-icon-fullscreen","local-icon-fuwushichang","local-icon-fuzhi","local-icon-gaode","local-icon-gengduo","local-icon-gengduoandroid","local-icon-gift","local-icon-gongyingshang","local-icon-goods","local-icon-gou","local-icon-gouwuche","local-icon-gouxuan","local-icon-gouxuan_mian","local-icon-guanbi","local-icon-guanli","local-icon-guanli_mian","local-icon-gukefapiao","local-icon-haibaosheji","local-icon-heshoujilu","local-icon-heshoujilu1","local-icon-hexiao_order","local-icon-hide-2","local-icon-hide","local-icon-hongbao","local-icon-huiche","local-icon-huiyuanyingxiao","local-icon-huodongbaoming","local-icon-huodongguanli","local-icon-huodongzhongxin","local-icon-huojian","local-icon-huojian_mian","local-icon-huolala","local-icon-iOSfanhui","local-icon-jia","local-icon-jian","local-icon-jianpan","local-icon-jianpanshanchu","local-icon-jianshao","local-icon-jian_mian","local-icon-jiaopeiwangputong","local-icon-jiaoyi","local-icon-jia_mian","local-icon-jiedan","local-icon-jiekuan","local-icon-jingshi","local-icon-jingshi_mian","local-icon-jingshi_mian1","local-icon-jingyin","local-icon-jingying","local-icon-jingyinggonglve","local-icon-jingying_mian","local-icon-jingyin_mian","local-icon-jingzhunyingxiao","local-icon-jinhuo","local-icon-kaitongwaimai","local-icon-kanjia","local-icon-kefu","local-icon-kejian","local-icon-kejian_mian","local-icon-keziyuyue","local-icon-kezizhongxin","local-icon-KMSguanli","local-icon-koubei","local-icon-KTVyuding","local-icon-kuaijiehuifu","local-icon-ladu_mian","local-icon-lanyadingwei","local-icon-list-2","local-icon-mendiandongtai","local-icon-mishiyuding","local-icon-mishiyuding1","local-icon-notice_buyer","local-icon-open","local-icon-paiduiquhao","local-icon-paimai","local-icon-pingjia","local-icon-pingtaifapiao","local-icon-pinpai","local-icon-qianbao","local-icon-qianbao_mian","local-icon-qiehuan","local-icon-qingchu","local-icon-qingchu_mian","local-icon-qishoupeisong","local-icon-qiyedingcan","local-icon-qiyedingcan1","local-icon-quanbu","local-icon-quanping","local-icon-qudao","local-icon-qudao_xiaochengxu","local-icon-rencaizhaopin","local-icon-rili","local-icon-rili2","local-icon-rizhi","local-icon-saoma","local-icon-set_pay","local-icon-set_peisong","local-icon-set_user","local-icon-set_weihu","local-icon-shanchu","local-icon-shanchu_mian","local-icon-shangchuan","local-icon-shangchuanzhaopian","local-icon-shangpinguanli","local-icon-shangpinzhushou","local-icon-shangpuyuding","local-icon-shebeiguanli","local-icon-shengfuwangputong","local-icon-shengyin","local-icon-shengyin_mian","local-icon-shezhi","local-icon-shezhi_mian","local-icon-shichang","local-icon-shichang_mian","local-icon-shijian","local-icon-shijian_mian","local-icon-shoudan","local-icon-shouqi","local-icon-shouqi_mian","local-icon-shouye","local-icon-shouye_mian","local-icon-shouyiren","local-icon-show","local-icon-shuangjiantouxiangyou","local-icon-shuangjiantouxiangzuo","local-icon-shuaxin","local-icon-shuju","local-icon-shuju2","local-icon-shuju_liuliang","local-icon-shuju_mian","local-icon-sort","local-icon-sousuo","local-icon-sucai","local-icon-tianjia","local-icon-tishi","local-icon-tishi_mian","local-icon-tongxunlu_mian","local-icon-tongzhi","local-icon-tongzhi_mian","local-icon-tuichuquanping","local-icon-tuiguang","local-icon-tuiguang_mian","local-icon-tupian","local-icon-tupian_mian","local-icon-user_biaoqian","local-icon-user_gaikuang","local-icon-user_guanli","local-icon-wangpudiandan","local-icon-weixin","local-icon-weixin_mian","local-icon-wode","local-icon-wode_mian","local-icon-xiangji","local-icon-xiaoxi","local-icon-xiazai","local-icon-xitongquanxian","local-icon-yingxiao_qipao","local-icon-yingyezizhi","local-icon-yinhangka","local-icon-yiwen","local-icon-youhui","local-icon-youjian","local-icon-youjiantou","local-icon-yulibao","local-icon-yuyin","local-icon-yuyueguanli","local-icon-yuyueguanlishezhi","local-icon-zhankai","local-icon-zhankai_mian","local-icon-zhibo","local-icon-zhibo_mian","local-icon-zhuangxiu","local-icon-zhuangxiu_mian","local-icon-zhuoweiguanli","local-icon-zichanzhuanrang","local-icon-zuliao","local-icon-zuliaoyuding"],l2="local-icon-",V3="el-icon-",t1=[];for(const[,a]of Object.entries(e1))t1.push(`${V3}${a.name}`);function I4(){return t1}function D4(){return e2}const i2=g({props:{name:{type:String,required:!0},size:{type:[Number,String],default:16},color:{type:String,default:"inherit"}},setup(a){const o=v(()=>`#${a.name}`),e=v(()=>({width:o3(a.size),height:o3(a.size),color:a.color}));return{symbolId:o,styles:e}}}),c2=["xlink:href"];function t2(a,o,e,i,c,t){return _(),y("svg",{"aria-hidden":"true",style:i3(a.styles)},[m("use",{"xlink:href":a.symbolId,fill:"currentColor"},null,8,c2)],4)}const s2=B(i2,[["render",t2]]),S=g({name:"Icon",props:{name:{type:String,required:!0},size:{type:[String,Number],default:"14px"},color:{type:String,default:"inherit"}},setup(a){if(a.name.indexOf(V3)===0)return()=>u(B1,{size:a.size,color:a.color},()=>[u(l3(a.name.replace(V3,"")))]);if(a.name.indexOf(l2)===0)return()=>A1("i",{class:["local-icon"]},u(s2,{...a}))}}),n2=g({__name:"menu-item",props:{route:{},routePath:{},popperClass:{}},setup(a){const o=a,e=v(()=>{var n;return!!((n=o.route.children)!=null?n:[]).filter(h=>{var d;return!((d=h.meta)!=null&&d.hidden)}).length}),i=v(()=>o.route.meta),c=s=>X(s)?s:Z0(`${o.routePath}/${s}`),t=v(()=>{var n;const s=(n=o.route.meta)==null?void 0:n.query;try{const h=JSON.parse(s);return X0(h)}catch{return s}});return(s,n)=>{var I;const h=S,d=I1,z=o2,w=l3("menu-item",!0),H=D1;return(I=s.route.meta)!=null&&I.hidden?O("",!0):(_(),y(Z,{key:0},[r(e)?(_(),A(H,{key:1,index:s.routePath,"popper-class":s.popperClass},{title:p(()=>{var x,M,b;return[(x=r(i))!=null&&x.icon?(_(),A(h,{key:0,class:"menu-item-icon",size:16,name:(M=r(i))==null?void 0:M.icon},null,8,["name"])):O("",!0),m("span",null,e3((b=r(i))==null?void 0:b.title),1)]}),default:p(()=>{var x;return[(_(!0),y(Z,null,c3((x=s.route)==null?void 0:x.children,M=>(_(),A(w,{key:c(M.path),route:M,"route-path":c(M.path),"popper-class":s.popperClass},null,8,["route","route-path","popper-class"]))),128))]}),_:1},8,["index","popper-class"])):(_(),A(z,{key:0,to:`${s.routePath}?${r(t)}`},{default:p(()=>[u(d,{index:s.routePath},{title:p(()=>{var x;return[m("span",null,e3((x=r(i))==null?void 0:x.title),1)]}),default:p(()=>{var x,M;return[(x=r(i))!=null&&x.icon?(_(),A(h,{key:0,class:"menu-item-icon",size:16,name:(M=r(i))==null?void 0:M.icon},null,8,["name"])):O("",!0)]}),_:1},8,["index"])]),_:1},8,["to"]))],64))}}});const r2=B(n2,[["__scopeId","data-v-c1c686f0"]]),u2=g({__name:"menu",props:{routes:{type:Object},config:{type:Object},uniqueOpened:{type:Boolean,default:!1},isCollapsed:{type:Boolean,default:!1},theme:{type:String},width:{type:Number,default:200}},emits:["select"],setup(a){const o=a,e=L3(),i=v(()=>{var t;return((t=e.meta)==null?void 0:t.activeMenu)||e.path}),c=v(()=>`theme-${o.theme}`);return(t,s)=>{const n=R1,h=X3;return _(),y("div",{class:W3(["menu flex-1 min-h-0",r(c)]),style:i3(a.isCollapsed?"":`--aside-width: ${a.width}px`)},[u(h,null,{default:p(()=>[u(n,M3(a.config,{"default-active":r(i),collapse:a.isCollapsed,mode:"vertical","unique-opened":a.uniqueOpened,onSelect:s[0]||(s[0]=d=>t.$emit("select"))}),{default:p(()=>[(_(!0),y(Z,null,c3(a.routes,d=>(_(),A(r2,{key:d.path,route:d,"route-path":d.path,"popper-class":r(c)},null,8,["route","route-path","popper-class"]))),128))]),_:1},16,["default-active","collapse","unique-opened"])]),_:1})],6)}}});const m2=B(u2,[["__scopeId","data-v-b6e626d9"]]),d2=g({__name:"side",setup(a){const o=N(),e=v(()=>o.isMobile?!1:o.isCollapsed),i=C(),c=v(()=>i.sideTheme),t=$(),s=v(()=>t.routes),n=v(()=>c.value=="dark"?{"--side-dark-color":i.sideDarkColor}:""),h=v(()=>({backgroundColor:c.value=="dark"?i.sideDarkColor:"",textColor:c.value=="dark"?"var(--el-color-white)":"",activeTextColor:c.value=="dark"?"var(--el-color-white)":""})),d=()=>{o.isMobile&&o.toggleCollapsed(!0)};return(z,w)=>(_(),y("div",{class:"side",style:i3(r(n))},[r(i).showLogo?(_(),A(a2,{key:0,"show-title":!r(e),theme:r(c)},null,8,["show-title","theme"])):O("",!0),u(m2,{routes:r(s),"is-collapsed":r(e),width:r(i).sideWidth,"unique-opened":r(i).isUniqueOpened,config:r(h),theme:r(c),onSelect:d},null,8,["routes","is-collapsed","width","unique-opened","config","theme"])],4))}});const j3=B(d2,[["__scopeId","data-v-d9b05b11"]]),h2={class:"sidebar h-full"},_2=g({__name:"index",setup(a){const o=N(),e=C(),i=v(()=>o.isMobile),c=v({get(){return!o.isCollapsed&&i.value},set(s){o.toggleCollapsed(!s)}}),t=v(()=>`${e.sideWidth+1}px`);return(s,n)=>{const h=$3;return _(),y("aside",h2,[u(h,{modelValue:r(c),"onUpdate:modelValue":n[0]||(n[0]=d=>D(c)?c.value=d:null),direction:"ltr",size:r(t),title:"\u4E3B\u9898\u8BBE\u7F6E","with-header":!1},{default:p(()=>[u(j3)]),_:1},8,["modelValue","size"]),U3(u(j3,null,null,512),[[Y3,!r(i)]])])}}});const v2=B(_2,[["__scopeId","data-v-7bab31f7"]]),p2=g({__name:"fold",setup(a){const o=N(),e=v(()=>o.isCollapsed),i=()=>{o.toggleCollapsed()};return(c,t)=>{const s=S;return _(),y("div",{class:"fold h-full cursor-pointer flex items-center px-2",onClick:i},[u(s,{name:`local-icon-${r(e)?"close":"open"}`,size:20},null,8,["name"])])}}}),z2=g({__name:"refresh",setup(a){const o=N(),e=()=>{o.refreshView()};return(i,c)=>{const t=S;return _(),y("div",{class:"refresh cursor-pointer h-full flex items-center px-2",onClick:e},[u(t,{name:"el-icon-RefreshRight",size:18})])}}});function s1(a){const o=L3();return Z3(o,()=>{a(o)},{immediate:!0}),{route:o}}const b2=g({__name:"breadcrumb",setup(a){const o=E3([]),e=i=>{const c=i.matched.filter(t=>t.meta&&t.meta.title);o.value=c};return s1(i=>{e(i)}),(i,c)=>{const t=P1,s=C1;return _(),A(s,{class:"app-breadcrumb"},{default:p(()=>[(_(!0),y(Z,null,c3(r(o),n=>(_(),A(t,{key:n.path},{default:p(()=>[Y(e3(n.meta.title),1)]),_:2},1024))),128))]),_:1})}}}),y2=g({__name:"full-screen",setup(a){const{toggle:o,isFullscreen:e}=X1();return(i,c)=>{const t=S;return _(),y("div",{class:"full-screen h-full cursor-pointer flex items-center px-2",onClick:c[0]||(c[0]=(...s)=>r(o)&&r(o)(...s))},[u(t,{size:16,name:`local-icon-${r(e)?"fullscreen-exit":"fullscreen"}`},null,8,["name"])])}}}),D3=class{constructor(){F(this,"loadingInstance",null)}static getInstance(){var o;return(o=this.instance)!=null?o:this.instance=new D3}msg(o){s3.info(o)}msgError(o){s3.error(o)}msgSuccess(o){s3.success(o)}msgWarning(o){s3.warning(o)}alert(o){W.alert(o,"\u7CFB\u7EDF\u63D0\u793A")}alertError(o){W.alert(o,"\u7CFB\u7EDF\u63D0\u793A",{type:"error"})}alertSuccess(o){W.alert(o,"\u7CFB\u7EDF\u63D0\u793A",{type:"success"})}alertWarning(o){W.alert(o,"\u7CFB\u7EDF\u63D0\u793A",{type:"warning"})}notify(o){n3.info(o)}notifyError(o){n3.error(o)}notifySuccess(o){n3.success(o)}notifyWarning(o){n3.warning(o)}confirm(o){return W.confirm(o,"\u6E29\u99A8\u63D0\u793A",{confirmButtonText:"\u786E\u5B9A",cancelButtonText:"\u53D6\u6D88",type:"warning"})}prompt(o,e,i){return W.prompt(o,e,{confirmButtonText:"\u786E\u5B9A",cancelButtonText:"\u53D6\u6D88",...i})}loading(o){this.loadingInstance=S1.service({lock:!0,text:o})}closeLoading(){var o;(o=this.loadingInstance)==null||o.close()}};let m3=D3;F(m3,"instance",null);const U=m3.getInstance(),g2={class:"flex items-center"},w2={class:"ml-3 mr-1"},A2=g({__name:"user-drop-down",setup(a){const o=$(),e=v(()=>o.userInfo),i=async c=>{switch(c){case"logout":await U.confirm("\u786E\u5B9A\u9000\u51FA\u767B\u5F55\u5417\uFF1F"),P.set("logout",P.get(O0).account),o.logout()}};return(c,t)=>{const s=k1,n=S,h=K3,d=l3("router-link"),z=J3,w=Q3;return _(),A(w,{class:"px-2",onCommand:i},{dropdown:p(()=>[u(z,null,{default:p(()=>[u(d,{to:"/user/setting"},{default:p(()=>[u(h,null,{default:p(()=>[Y("\u4E2A\u4EBA\u8BBE\u7F6E")]),_:1})]),_:1}),u(h,{command:"logout"},{default:p(()=>[Y("\u9000\u51FA\u767B\u5F55")]),_:1})]),_:1})]),default:p(()=>[m("div",g2,[u(s,{size:34,src:r(e).avatar},null,8,["src"]),m("div",w2,e3(r(e).name),1),u(n,{name:"el-icon-ArrowDown"})])]),_:1})}}}),f2="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAALcAAACHCAYAAABUFMgyAAAABHNCSVQICAgIfAhkiAAACbZJREFUeF7t201oXFUUB/DMRyJNpE0JuJqYTWtQs2pLqxSzcWGiK8FNceOqiLiMOxe1i0IFXdhFIXSli6agoJS6aBEM2o2QlbXFfkBNhRBNbRIyTTOTzHjv8O5wc3Pf55x578y7/0LI1+S8c8/95eTMfdNCH/6hAjmtQCGn68KyUIE+4AaC3FYAuHO7tVhYWrjTug52tHcq0Ox2qlToqOJ0e72I3zsV6Bg/FcqgOFTX6J1tQaZRKxAEOFPcJtqgzwE86na78zgdrwk57PNIVYqLzvZ49TX9e34fR0oKD3KmAn7A48D3LVanuOXP67ht0OXF417Hmd11eKF+3Vl+XX3PfC/LFXlciYPOhGuibkG/d+/eK5VKZWZgYOBEs9ksp7F5Ozs7641GYzWNa+EayStQKBRsMOtbW1s379+//83Ro0cfeXgVcD/kkYBHwW0bMVTHbgOv1WrXy+XypFhAlJjJK4SfzG0FRIPaevbs2ddDQ0MfG91bRx40suyqTRSIto7dxr24uPia6NQ3hOmB3FYdC0u1AuIv8fKDBw/eGh8fv2N0cjWW2MaVPTmG4Q6CXRR/Tr4V48c7mKlT3XsnLiZG2sbGxsb5/fv3f+YBbwR0c2tN4uDWR5GiBC3+jKyhYzthLZNFbm9vr/T3948auP3m8Y46t8TdQi3f1+v1X8SMfSyTVeOizlRgc3PzyuDg4Adiwapz+3XwRLj1jq2AF8WfjSrGEWeMZbZQ4axWLBaHPdwKtt69fU9OoowlCne7a9+9e/f44cOHfwbuzPbcpQs3FxYWjol/ty3dO/CJZRBua8eWI8nTp09n9+3b975LFcZas6vA6urq2YMHD57XurfZwWVyezq4H27zBk27a0vcYtC/UyqVXsxuubiySxUQc/evYu6eMnDrwBPj3gXbw30buF3ile1afXCruVsi7wi3BN5+E537D+DOdsNdurqH+22x5h3LaBILt3m7fRdsEbwkcN8Cbpd4ZbtWDbeErAOX3Vvh3tO9bTO3/jVzJCl5YwlwZ7vfTl1dHGDcFK83mda6tgKeGPeeI0DZteWbeJHULe/OkVNFxmKzqYCHWx9LJG4F2/YS2VaiQZ1bx62PJsCdzR47e1ULbjmK+N2xbNcpCe6yfP2teMHUq85WGwtPtQIebvkCPdmxbTO39WZOXNytsURc7Lq4iXM81RXiYs5WIFXc1Wr1mjhUP+lstbHwVCtg4NZPTPS5O9ZpiW3mbnVu4E51b52/GHA7TyC/BQDu/O6t8ysDbucJ5LcAwJ3fvXV+ZU7jFv9buk+83sV5BHktgDjAmBsZGflQO+M2b7/TnXNzOy0RLwfoEzeW8rq3zq/ryZMnn4+NjZ0Dbucp5K8AwI3OnT/V3oqAG7iB2/h/lIleW4KZO7eOWC4MnRudmyVMiqSAG7gpHLGMAdzAzRImRVLADdwUjljGAG7gZgmTIingBm4KRyxjADdws4RJkRRwAzeFI5YxgBu4WcKkSAq4gZvCEcsYwA3cLGFSJAXcwE3hiGUM4AZuljApkgJu4KZwxDIGcAM3S5gUSQE3cFM4YhkDuIGbJUyKpIAbuCkcsYwB3MDNEiZFUsAN3BSOWMYAbuBmCZMiKeAGbgpHLGMAN3CzhEmRFHADN4UjljGAG7hZwqRICriBm8IRyxjADdwsYVIkBdzATeGIZQzgBm6WMCmSAm7gpnDEMgZwAzdLmBRJATdwUzhiGQO4gZslTIqkgBu4KRyxjAHcwM0SJkVSwA3cFI5YxgBu4GYJkyIp4AZuCkcsYwA3cLOESZEUcAM3hSOWMYAbuFnCpEgKuIGbwhHLGMAN3CxhUiQF3MBN4YhlDOAGbpYwKZICbuCmcMQyBnADN0uYFEkBN3BTOGIZA7iBmyVMiqSAG7gpHLGMAdzAzRImRVLADdwUjljGAG7gZgmTIingBm4KRyxjADdws4RJkRRwAzeFI5YxgBu4WcKkSAq4gZvCEcsYwA3cLGFSJAXcwE3hiGUM4AZuljApkgJu4KZwxDIGcAM3S5gUSQE3cFM4YhkDuIGbJUyKpIAbuCkcsYwB3MDNEiZFUsAN3BSOWMYwcO+IJBveW1N7L3OXn7f/FSyrUV+T7+Vb0XgrV6vVa4ODgye5VKJWq/VtATeX7SDPI03cJYH7R+Am30ME9KnA2tra+dHR0XPi23rXlt2bpHOrDl4SAUsrKyufjIyMfMplN9C5uexEd/JYXFx8b2Ji4oaGWyLXYatxJPJYIjOVI4k+mrRwz8/PT0xOTt7szlLiRwXu+DXrpZ+Ym5sbP3369JLIWc3aqoNLzOpNLikWbnPmlrhbM3ij0fivUCjIjzP/B9yZb0HXEmg2m/8cOHDgJQtsfSxR1w/FLR+oP6nUu3erc0vcGxsb3w0NDb3ZtVXFCAzcMYrVYw8VTybPjo2Nfenhlh3b7NoS+Z6urSM2l+yHW52clCqVSvnhw4d/lUql57OuF3BnvQPdub44AZs/dOjQu+IJpY5aPwZUc3di3Go0MWfv4sLCwhtHjhz5wRtVurPCCFGBO0KReuwhYuxdvXTp0uszMzP6rK1gm8A7wm0772518atXr748NTX1fblcfiGr+gF3VpXvznU3Nzd/unjx4kdnzpz5VxtD/GBbT0qCxhJz7rZ17/aIImf0x48ffzE8PHyqWCw+150l+0cF7rQr3p3r1ev1P5eWlr4Sx35XvBlbgtZn7EhHgCo72x1KPXN1l1J/b96x3HVcODs7W5menj4loJ8QgfpVMPGsN+xaiSsmftP/Xl9ff5Q4AH4w1QqIU7b2qYb4uLa8vPz75cuXf7tw4cKaSETN0WanNkcR8xhwzxrCwCnUqpOb597qc31s0X8R1M+FXSfV4uJiLCpgnk/rWM3XjgS9lmTX8Z/ZmYNWar7ORH+9iT6qmB+bvxTAzcITqyTCcKvvm7fZA2/cJMGtd2ATuO1zs2PruAGdlbFUk9G7rP5E0PxYgTa7uW0USdy5bU8sbdD1zg3YqXrpuYt1Alwu1vd2u1mJKF3U7LrmqGLO4/ovRNDHPbcrSJikAjbcCq16rzq3DbPfz8d+QmkbYXTcti5uggZwEhO5CBIGW8ds69C+Z9q26kTp3H4zuh/yMNy52CUsouMKBEE3EUfu1n5Yo2Rr/jKYwAE7ShXxGFUB88mgrTP7PSa0inE7twroh9yG2+9rocnhAbmugO2Uw2/s8D0RCapQUtxmzKA4VNfI9U47vDg/uIlAdzKW+O0BADuss0tLZ4M7bH3AH1Yh977fMd6wkgFdWIXw/Z6tAHD37NYh8bAKAHdYhfD9nq0AcPfs1iHxsAr8D7xvfQ8bZ0PpAAAAAElFTkSuQmCC",V2="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAALcAAACHCAYAAABUFMgyAAAABHNCSVQICAgIfAhkiAAACbtJREFUeF7tm39olVUYx++92wo0ZiL0V2v/SKMcVMzUtMTyjzL/KUpwWCpuzbZVxpikIWQLBIMUnLiMSWXYJhSYsiA1dNaQCSqkadGGOQdj/dpubM79uPf2nts9l7Oz8/66976/nvsdXO6v957zPM/53A/Pe967cAh/qADRCoSJ5oW0UIEQ4AYEZCsAuMkuLRJzC2635sGKBqcCCadDzRV0uRrH6XwxfnAqkDX8uYLSaJxczRGcZUGkVitgBLCncMvQGj0H4FaXO3+OE+GVQTZ7bqlKdqFTHc9fE9/Te2wpKByUNxXQA9wO+LrFyhZu9nkRbhXobHK78+TN6uZxonp2Zq/z9+R7Vi7L7Yod6GRwZaiToLe0fP5wJBJu/HsounhqcrLQjcV7fNFj/65YvmTYjbkwR+YVCIfDKjAnx8fHu3p6er6oqKi4lYKXA64HuSXArcCtajG4sdOA72s+dPK7k+eW37jRZ2XMzCuk+GR93YZQXe2GnI6JwdyvQDweH79z587h2bNnvyHZW4TcqGWZFrQVEFXGTsPd2npkSdf5S6e6uy/d5X45/p+xrnZ9qL5uo1fTY94cVyAWiw329vY+W1ZWdl0yOW9LVO3KjCjM4DYCO3LgwGdfHWk7tnpoKGo2To7Tnz4c4Ha0vJ4Mnkgk4iMjI7uLi4vfTwEeN7C5MkYzKJV9tTZSRLuFN25qiF64cNkzY/OMALcn/Dk+6dTU1F9FRUUlEtx6/XhW5magJ6Fm93v2Hvyh9VD7QscztDAB4LZQpIAeMjY2dnTWrFms5+Tm1jN4RnCLJ48c8Miq1a+O3rzZb2Z+V0oKuF0psyeTaO3JRCQSuTcFNwdbtLfuzokZnCLYaWvv39+6qOXgl2e1ic0+70pBALcrZfZqksTFixcXan/XFPY2PLE0glNpbNaStHx8+JPm/Z+u8ypbeV7A7ZeVcCaO4eHhprlz5+4W7C0bnE08w+B6cMsnkmlrM7ibPth7vf3o8QecScX+qIDbfs2C9Amt7/5R67ufk+AWAc8Y7mlgp+C+BriDhEewY9WBm/fdDPKs4GaAp2+auX8G3MEGJkjRp+B+Xos5pmhNbMEtX26fBrY2eIEG91XAHSQ8gh2rADcDWQSc2ZvDPcPeqp5bfE1uSQpSbQngDjYvgYr+9u3bXdrvTVYJ1uaAZww33y0RAWdwa+beo8F9gl058sUfTih9sQyOBZGCW2xLGNwcbNVPZJOxGJlbhFtsTQC3Y8uIgVUVUMDNWhG9K5bpITKBu3Db9l1dx0+cWuCXpYC5/bISzsSRgnt1qt9W9dzKizl24U62JW+9vePk6dNdi5xJxf6ogNt+zYL0CVfhrq3f1tHZ2b3MLwUC3H5ZCWfikOAWd0zEvptNPu0qZUbmBtzOLCJGVVcAcOM/cch+NwA34AbcaEvIMkA2MZgb5gbcFM29uWZdaHPNK2QXN98TGx0dbZ83b97rqX3u/Notqa5aG6quqsx3BsjmPzQ09GFpaekuwE12ifM3McANc5OlH3ADbsBN8YQSPTdZrpOJwdwwN1nCATfgBtxoS8gyQDYxmBvmBtwwN1kGyCYGc8PcgBvmJssA2cRgbpgbcMPcZBkgmxjMDXMDbpibLANkE4O5YW7ADXOTZYBsYjA3zA24YW6yDJBNDOaGuQE3zE2WAbKJwdwwN+CGuckyQDYxmBvmBtwwN1kGyCYGc8PcgBvmJssA2cRgbpgbcMPcZBkgmxjMDXMDbpibLANkE4O5YW7ADXOTZYBsYjA3zA24YW6yDJBNDOaGuQE3zE2WAbKJwdwwN+CGuckyQDYxmBvmBtwwN1kGyCYGc8PcgBvmJssA2cRgbpgbcMPcZBkgmxjMDXMDbpibLANkE4O5YW7ADXOTZYBsYjA3zA24YW6yDJBNDOaGuQE3zE2WAbKJwdwwN+CGuckyQDYxmBvmBtwwN1kGyCYGc8PcgBvmJssA2cRgbpgbcMPcZBkgmxjMDXMDbpibLANkE4O5YW7ADXOTZYBsYjA3zA24YW6yDJBNDOaGuQE3zE2WAbKJwdwwN+CGuckyQDYxmBvmzhe4Y1qi8dQtIdyz/Nnz9F9YURH+Grtnt4h0K6yt39bR2dm9zC/VrK5aG6oG3H5ZjpzHIZnbUbgLNLi/Bdw5X0MMqFOBaDS6u6SkZJf2tgg2s3dOzM0NXqANWLD1naatHR1ndvhlNWBuv6yEM3H09fW9XF5efkqAm0Eugs3bEcttCYuUtSRia5KEu66uofzsuctdzqRif1TAbb9mQfpEe3t7WU1NzYAWM++1ucEZzPzGUrIFt9xzM7iTPfjSJ1/4Z3g4yh57/ge4PV8CxwJIJBJ/zJkz50EF2GJbwuc3hZsdKJ5UivZOmpvBXf/mu1+fOXN+pWNZ2RgYcNsoVsAO1U4mm0pLS/ek4GbGlq3NIJ9hbRFiOWU9uPnOSUFxcXHhiqdfutnT+/s9XtcLcHu9As7MPz4+3jl//vwXtRNKEWpxG5D33RnDzVsTufeObNmy/anz3Ve+GRkZ9bQ9AdzOwOXlqPF4fLi1tfWJxsZGsdfmYMuAZwW3ar87afH1mzY/NDEWOfbTlV/u86oYgNuryjsz79jY2PctLS11O3fu/FNoQ/TAVu6UGLUlct+tsne6RWE9ekPDex9dvfZbZX//wN3OpKw/6mvVlaGqTWvdnhbz5bgCk5OTvw4MDOzTtv2OpnpsBrTYY1vaAuRhqa5QiiHzq5TivXzFctp24Zo1G+/XNtwrJyZji2OxWBEfLBFKmM2VcakefWRB/8pnlt7KeAB80NUKhMPh9K6G9nhicHDwSltb24Xm5uaoFgjvo2VTy62IvA04Iwcz4DjU3OTyvjd/LrYt4heBf85sHleLi8l8UQF5f1qEVf7tiNFvSaZt/8lmNspU/p2J+HsTsVWRH8tfCsDtC558FYQZ3Px9+TK74YWbTOAWDSwDrnouG1uEG6D7ijFXgxEtK54Iyo850LLNVa1IxuZWnViqQBfNDbBd5SVwk2UDOEtW93K7XAkrFpWtK7cqcj8ufiGMHgduVRBwTiqggptDy++5uVUw633e9gmlqoUR4VZZXAYagOeECRKDmIEtwqwytO6etqo6Vsyt16PrQW4GN4lVQhJZV8AIdBliy7bWg9VKtPKXQQYcYFupIo7hFZBPBlVm1jvGtIp2zc0H1INcBbfea6bB4QDSFVDtcui1Hbo7IkYVyhRueUyjcXI1B+mVzuPk9MDNCOhs2hK9NQDAeUynQ6n7Bm6z/AC/WYXy7/2s4TUrGaAzqxDeD2wFAHdglw6Bm1UAcJtVCO8HtgKAO7BLh8DNKvAfR+rWAIVxGVEAAAAASUVORK5CYII=",k=a=>(f1("data-v-de23e12b"),a=a(),V1(),a),x2={class:"setting-drawer"},E2={class:"setting-item mb-5"},M2=k(()=>m("span",{class:"text-tx-secondary"},"\u98CE\u683C\u8BBE\u7F6E",-1)),L2={class:"flex mt-4 cursor-pointer"},H2=["onClick"],T2=["src"],O2={class:"setting-item mb-5 flex justify-between items-center"},B2=k(()=>m("span",{class:"text-tx-secondary"},"\u4E3B\u9898\u989C\u8272",-1)),I2={class:"setting-item mb-5 flex justify-between items-center"},D2=k(()=>m("span",{class:"text-tx-secondary"},"\u5F00\u542F\u9ED1\u6697\u6A21\u5F0F",-1)),R2={class:"setting-item mb-5 flex justify-between items-center"},P2=k(()=>m("span",{class:"text-tx-secondary"},"\u5F00\u542F\u591A\u9875\u7B7E\u680F",-1)),C2={class:"setting-item mb-5 flex justify-between items-center"},S2=k(()=>m("span",{class:"text-tx-secondary"},"\u53EA\u5C55\u5F00\u4E00\u4E2A\u4E00\u7EA7\u83DC\u5355",-1)),k2={class:"setting-item mb-5 flex justify-between items-center"},j2=k(()=>m("div",{class:"text-tx-secondary flex-none mr-3"},"\u83DC\u5355\u680F\u5BBD\u5EA6",-1)),N2={class:"setting-item mb-5 flex justify-between items-center"},q2=k(()=>m("div",{class:"text-tx-secondary flex-none mr-3"},"\u663E\u793ALOGO",-1)),F2={class:"setting-item mb-5 flex justify-between items-center"},G2=k(()=>m("div",{class:"text-tx-secondary flex-none mr-3"},"\u663E\u793A\u9762\u5305\u5C51",-1)),U2={class:"setting-item mb-5 flex justify-between items-center"},Y2=g({__name:"drawer",setup(a){const o=C(),e=E3(["#409EFF","#28C76F","#EA5455","#FF9F43","#01CFE8","#4A5DFF"]),i=[{type:"dark",image:V2},{type:"light",image:f2}],c=v({get(){return o.sideTheme},set(b){o.setSetting({key:"sideTheme",value:b})}}),t=v({get(){return o.openMultipleTabs},set(b){o.setSetting({key:"openMultipleTabs",value:b})}}),s=v({get(){return o.isUniqueOpened},set(b){o.setSetting({key:"isUniqueOpened",value:b})}}),n=v({get(){return o.sideWidth},set(b){o.setSetting({key:"sideWidth",value:b})}}),h=v({get(){return o.showDrawer},set(b){o.setSetting({key:"showDrawer",value:b})}}),d=v({get(){return o.theme},set(b){o.setSetting({key:"theme",value:b}),I()}}),z=v({get(){return o.showLogo},set(b){o.setSetting({key:"showLogo",value:b})}}),w=v({get(){return o.showCrumb},set(b){o.setSetting({key:"showCrumb",value:b})}}),H=a1(),I=()=>{o.setTheme(H.value)},x=()=>{$1(H)(),I()},M=()=>{H.value=!1,o.resetTheme(),I()};return(b,V)=>{const p3=S,q=j1,K=N1,m1=q1,d1=F1,h1=$3;return _(),y("div",x2,[u(h1,{modelValue:r(h),"onUpdate:modelValue":V[6]||(V[6]=f=>D(h)?h.value=f:null),"append-to-body":"",direction:"rtl",size:"250px",title:"\u4E3B\u9898\u8BBE\u7F6E"},{default:p(()=>[m("div",E2,[M2,m("div",L2,[(_(),y(Z,null,c3(i,f=>m("div",{class:"mr-4 flex relative text-primary",key:f.type,onClick:Y6=>c.value=f.type},[m("img",{src:f.image,width:"52",height:"36"},null,8,T2),r(c)==f.type?(_(),A(p3,{key:0,class:"icon-select",name:"el-icon-Select"})):O("",!0)],8,H2)),64))])]),m("div",O2,[B2,m("div",null,[u(q,{modelValue:r(d),"onUpdate:modelValue":V[0]||(V[0]=f=>D(d)?d.value=f:null),predefine:r(e)},null,8,["modelValue","predefine"])])]),m("div",I2,[D2,m("div",null,[u(K,{"model-value":r(H),onChange:x},null,8,["model-value"])])]),m("div",R2,[P2,m("div",null,[u(K,{modelValue:r(t),"onUpdate:modelValue":V[1]||(V[1]=f=>D(t)?t.value=f:null),"active-value":!0,"inactive-value":!1},null,8,["modelValue"])])]),m("div",C2,[S2,m("div",null,[u(K,{modelValue:r(s),"onUpdate:modelValue":V[2]||(V[2]=f=>D(s)?s.value=f:null),"active-value":!0,"inactive-value":!1},null,8,["modelValue"])])]),m("div",k2,[j2,m("div",null,[u(m1,{modelValue:r(n),"onUpdate:modelValue":V[3]||(V[3]=f=>D(n)?n.value=f:null),min:180,max:250},null,8,["modelValue"])])]),m("div",N2,[q2,m("div",null,[u(K,{modelValue:r(z),"onUpdate:modelValue":V[4]||(V[4]=f=>D(z)?z.value=f:null),"active-value":!0,"inactive-value":!1},null,8,["modelValue"])])]),m("div",F2,[G2,m("div",null,[u(K,{modelValue:r(w),"onUpdate:modelValue":V[5]||(V[5]=f=>D(w)?w.value=f:null),"active-value":!0,"inactive-value":!1},null,8,["modelValue"])])]),m("div",U2,[u(d1,{onClick:M},{default:p(()=>[Y("\u91CD\u7F6E\u4E3B\u9898")]),_:1})])]),_:1},8,["modelValue"])])}}});const W2=B(Y2,[["__scopeId","data-v-de23e12b"]]),Z2=g({__name:"index",setup(a){const o=C(),e=()=>{o.setSetting({key:"showDrawer",value:!0})};return(i,c)=>{const t=S;return _(),y("div",{class:"setting flex cursor-pointer h-full items-center px-2",onClick:e},[u(t,{size:16,name:"el-icon-Setting"}),u(W2)])}}});function X2(){const a=H3(),o=L3(),e=t3(),i=C(),c=v(()=>e.getTabList),t=v(()=>o.fullPath);return{tabsLists:c,currentTab:t,addTab:()=>{!i.openMultipleTabs||e.addTab(a)},removeTab:z=>{!i.openMultipleTabs||(z=z!=null?z:o.fullPath,e.removeTab(z,a))},removeOtherTab:()=>{!i.openMultipleTabs||e.removeOtherTab(o)},removeAllTab:()=>{!i.openMultipleTabs||e.removeAllTab(a)}}}const $2={class:"app-tabs pl-4 flex bg-body"},K2={class:"flex-1 min-w-0"},J2={class:"flex items-center px-3"},Q2=g({__name:"multiple-tabs",setup(a){const o=H3(),e=t3(),{removeOtherTab:i,addTab:c,removeAllTab:t,removeTab:s,tabsLists:n,currentTab:h}=X2();s1(()=>{c()});const d=w=>{const H=e.tasMap[w];o.push(c1(H))},z=w=>{switch(w){case"closeCurrent":s();break;case"closeOther":i();break;case"closeAll":t();break}};return(w,H)=>{const I=G1,x=U1,M=S,b=K3,V=J3,p3=Q3;return _(),y("div",$2,[m("div",K2,[u(x,{"model-value":r(h),closable:r(n).length>1,onTabChange:d,onTabRemove:H[0]||(H[0]=q=>r(s)(q))},{default:p(()=>[(_(!0),y(Z,null,c3(r(n),q=>(_(),A(I,{key:q.fullPath,label:q.title,name:q.fullPath},null,8,["label","name"]))),128))]),_:1},8,["model-value","closable"])]),u(p3,{onCommand:z},{dropdown:p(()=>[u(V,null,{default:p(()=>[u(b,{command:"closeCurrent"},{default:p(()=>[Y(" \u5173\u95ED\u5F53\u524D ")]),_:1}),u(b,{command:"closeOther"},{default:p(()=>[Y(" \u5173\u95ED\u5176\u4ED6 ")]),_:1}),u(b,{command:"closeAll"},{default:p(()=>[Y(" \u5173\u95ED\u5168\u90E8 ")]),_:1})]),_:1})]),default:p(()=>[m("span",J2,[u(M,{size:16,name:"el-icon-arrow-down"})])]),_:1})])}}});const a6=B(Q2,[["__scopeId","data-v-b3197fe5"]]),o6={class:"header"},e6={class:"navbar"},l6={class:"flex-1 flex"},i6={class:"navbar-item"},c6={class:"navbar-item"},t6={key:0,class:"flex items-center px-2"},s6={class:"flex"},n6={key:0,class:"navbar-item"},r6={class:"navbar-item"},u6={class:"navbar-item"},m6=g({__name:"index",setup(a){const o=N(),e=v(()=>o.isMobile),i=C();return(c,t)=>(_(),y("header",o6,[m("div",e6,[m("div",l6,[m("div",i6,[u(p2)]),m("div",c6,[u(z2)]),!r(e)&&r(i).showCrumb?(_(),y("div",t6,[u(b2)])):O("",!0)]),m("div",s6,[r(e)?O("",!0):(_(),y("div",n6,[u(y2)])),m("div",r6,[u(A2)]),m("div",u6,[u(Z2)])])]),r(i).openMultipleTabs?(_(),A(a6,{key:0})):O("",!0)]))}});const d6={class:"layout-default flex h-screen w-full"},h6={class:"app-aside"},_6={class:"flex-1 flex flex-col min-w-0"},v6={class:"app-header"},p6={class:"app-main flex-1 min-h-0"},z6=g({__name:"index",setup(a){return(o,e)=>(_(),y("div",d6,[m("div",h6,[u(v2)]),m("div",_6,[m("div",v6,[u(m6)]),m("div",p6,[u(F0)])])]))}}),O3=()=>Promise.resolve(z6),B3=Symbol(),b6=[{path:"/:pathMatch(.*)*",component:()=>l(()=>import("./404.a81ca3a0.js"),["assets/404.a81ca3a0.js","assets/error.ab90784a.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/vue-router.9f65afb1.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/error.1aaeb02c.css"])},{path:E.ERROR_403,component:()=>l(()=>import("./403.0c7dfb1d.js"),["assets/403.0c7dfb1d.js","assets/error.ab90784a.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/vue-router.9f65afb1.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/error.1aaeb02c.css"])},{path:E.LOGIN,component:()=>l(()=>import("./login.81b1228f.js"),["assets/login.81b1228f.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/vue-router.9f65afb1.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/login.ba2fa480.css"])},{path:"/user",component:O3,children:[{path:"setting",component:()=>l(()=>import("./setting.d9b52d7c.js"),["assets/setting.d9b52d7c.js","assets/index.be5645df.js","assets/@vue.51d7f2d8.js","assets/index.8d99c3e6.css","assets/element-plus.4328d892.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/picker.597494a6.js","assets/index.b940d6e3.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/index.c38e1dd6.js","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/index.f2c7f81b.js","assets/index.bb3c88e6.css","assets/index.9c616a0c.js","assets/index.vue_vue_type_script_setup_true_lang.dc835bba.js","assets/usePaging.2ad8e1e6.js","assets/vue3-video-play.b911321b.js","assets/vue3-video-play.74881f83.css","assets/index.be52e81c.css","assets/vuedraggable.0cb40d3a.js","assets/vue.5de34049.js","assets/sortablejs.ef73fc5c.js","assets/picker.f0cb09c5.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),name:Symbol(),meta:{title:"\u4E2A\u4EBA\u8BBE\u7F6E"}},{path:"user_informationgdetil",component:()=>l(()=>import("./detil.dfd0c90d.js"),["assets/detil.dfd0c90d.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/vue-router.9f65afb1.js","assets/informationg.d3032a30.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/detil.9f66ded4.css"]),name:Symbol(),meta:{title:"\u6863\u6848\u8BE6\u60C5"}}]}],N3={path:E.INDEX,component:O3,name:B3},x3=Object.assign({"/src/views/account/login.vue":()=>l(()=>import("./login.81b1228f.js"),["assets/login.81b1228f.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/vue-router.9f65afb1.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/login.ba2fa480.css"]),"/src/views/app/recharge/index.vue":()=>l(()=>import("./index.a3be6197.js"),["assets/index.a3be6197.js","assets/index.be5645df.js","assets/@vue.51d7f2d8.js","assets/index.8d99c3e6.css","assets/element-plus.4328d892.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/app_update/edit.vue":()=>l(()=>import("./edit.758a9910.js"),["assets/edit.758a9910.js","assets/edit.vue_vue_type_script_setup_true_name_appUpdateEdit_lang.696a9d48.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.b940d6e3.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/app_update/index.vue":()=>l(()=>import("./index.1af29d6e.js"),["assets/index.1af29d6e.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/index.vue_vue_type_script_setup_true_lang.17266fa4.js","assets/usePaging.2ad8e1e6.js","assets/useDictOptions.8d37e54b.js","assets/edit.vue_vue_type_script_setup_true_name_appUpdateEdit_lang.696a9d48.js","assets/index.b940d6e3.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/article/column/edit.vue":()=>l(()=>import("./edit.c5be948e.js"),["assets/edit.c5be948e.js","assets/edit.vue_vue_type_script_setup_true_lang.84d0829e.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/article.a2ac2e4b.js","assets/index.b940d6e3.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/article/column/index.vue":()=>l(()=>import("./index.092e97aa.js"),["assets/index.092e97aa.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/article.a2ac2e4b.js","assets/usePaging.2ad8e1e6.js","assets/edit.vue_vue_type_script_setup_true_lang.84d0829e.js","assets/index.b940d6e3.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/article/lists/edit.vue":()=>l(()=>import("./edit.89f435ba.js"),["assets/edit.89f435ba.js","assets/index.be5645df.js","assets/@vue.51d7f2d8.js","assets/index.8d99c3e6.css","assets/element-plus.4328d892.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_style_index_0_lang.2f5b0088.js","assets/@wangeditor.afd76521.js","assets/@wangeditor.4f35b623.css","assets/picker.597494a6.js","assets/index.b940d6e3.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/index.c38e1dd6.js","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/index.f2c7f81b.js","assets/index.bb3c88e6.css","assets/index.9c616a0c.js","assets/index.vue_vue_type_script_setup_true_lang.dc835bba.js","assets/usePaging.2ad8e1e6.js","assets/vue3-video-play.b911321b.js","assets/vue3-video-play.74881f83.css","assets/index.be52e81c.css","assets/vuedraggable.0cb40d3a.js","assets/vue.5de34049.js","assets/sortablejs.ef73fc5c.js","assets/picker.f0cb09c5.css","assets/index.0d25a475.css","assets/vue-router.9f65afb1.js","assets/useDictOptions.8d37e54b.js","assets/article.a2ac2e4b.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/article/lists/index.vue":()=>l(()=>import("./index.1b771a99.js"),["assets/index.1b771a99.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/article.a2ac2e4b.js","assets/useDictOptions.8d37e54b.js","assets/usePaging.2ad8e1e6.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/category_business/edit.vue":()=>l(()=>import("./edit.afda18bd.js"),["assets/edit.afda18bd.js","assets/edit.vue_vue_type_script_setup_true_name_categoryBusinessEdit_lang.5b1401eb.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.b940d6e3.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/category_business/index.vue":()=>l(()=>import("./index.a56b8584.js"),["assets/index.a56b8584.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/index.vue_vue_type_script_setup_true_lang.17266fa4.js","assets/usePaging.2ad8e1e6.js","assets/useDictOptions.8d37e54b.js","assets/edit.vue_vue_type_script_setup_true_name_categoryBusinessEdit_lang.5b1401eb.js","assets/index.b940d6e3.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/channel/h5.vue":()=>l(()=>import("./h5.ae391178.js"),["assets/h5.ae391178.js","assets/index.be5645df.js","assets/@vue.51d7f2d8.js","assets/index.8d99c3e6.css","assets/element-plus.4328d892.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/channel/open_setting.vue":()=>l(()=>import("./open_setting.53eca91f.js"),["assets/open_setting.53eca91f.js","assets/index.be5645df.js","assets/@vue.51d7f2d8.js","assets/index.8d99c3e6.css","assets/element-plus.4328d892.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/channel/weapp.vue":()=>l(()=>import("./weapp.de9432eb.js"),["assets/weapp.de9432eb.js","assets/index.be5645df.js","assets/@vue.51d7f2d8.js","assets/index.8d99c3e6.css","assets/element-plus.4328d892.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/picker.597494a6.js","assets/index.b940d6e3.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/index.c38e1dd6.js","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/index.f2c7f81b.js","assets/index.bb3c88e6.css","assets/index.9c616a0c.js","assets/index.vue_vue_type_script_setup_true_lang.dc835bba.js","assets/usePaging.2ad8e1e6.js","assets/vue3-video-play.b911321b.js","assets/vue3-video-play.74881f83.css","assets/index.be52e81c.css","assets/vuedraggable.0cb40d3a.js","assets/vue.5de34049.js","assets/sortablejs.ef73fc5c.js","assets/picker.f0cb09c5.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/channel/wx_oa/config.vue":()=>l(()=>import("./config.d930156a.js"),["assets/config.d930156a.js","assets/index.be5645df.js","assets/@vue.51d7f2d8.js","assets/index.8d99c3e6.css","assets/element-plus.4328d892.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/picker.597494a6.js","assets/index.b940d6e3.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/index.c38e1dd6.js","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/index.f2c7f81b.js","assets/index.bb3c88e6.css","assets/index.9c616a0c.js","assets/index.vue_vue_type_script_setup_true_lang.dc835bba.js","assets/usePaging.2ad8e1e6.js","assets/vue3-video-play.b911321b.js","assets/vue3-video-play.74881f83.css","assets/index.be52e81c.css","assets/vuedraggable.0cb40d3a.js","assets/vue.5de34049.js","assets/sortablejs.ef73fc5c.js","assets/picker.f0cb09c5.css","assets/wx_oa.ec356b57.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/channel/wx_oa/menu.vue":()=>l(()=>import("./menu.e362b7db.js"),["assets/menu.e362b7db.js","assets/index.be5645df.js","assets/@vue.51d7f2d8.js","assets/index.8d99c3e6.css","assets/element-plus.4328d892.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/oa-phone.da93a36e.js","assets/useMenuOa.652835b4.js","assets/wx_oa.ec356b57.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/oa-phone.231c030b.css","assets/oa-attr.48be6774.js","assets/index.f2c7f81b.js","assets/index.bb3c88e6.css","assets/index.b940d6e3.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/oa-menu-form.vue_vue_type_script_setup_true_lang.a89c7407.js","assets/oa-menu-form-edit.vue_vue_type_script_setup_true_lang.bf3ef651.js"]),"/src/views/channel/wx_oa/menu_com/oa-attr.vue":()=>l(()=>import("./oa-attr.48be6774.js"),["assets/oa-attr.48be6774.js","assets/index.f2c7f81b.js","assets/@vue.51d7f2d8.js","assets/index.bb3c88e6.css","assets/index.b940d6e3.js","assets/element-plus.4328d892.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/useMenuOa.652835b4.js","assets/wx_oa.ec356b57.js","assets/oa-menu-form.vue_vue_type_script_setup_true_lang.a89c7407.js","assets/oa-menu-form-edit.vue_vue_type_script_setup_true_lang.bf3ef651.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/channel/wx_oa/menu_com/oa-menu-form-edit.vue":()=>l(()=>import("./oa-menu-form-edit.a51c7c71.js"),["assets/oa-menu-form-edit.a51c7c71.js","assets/oa-menu-form-edit.vue_vue_type_script_setup_true_lang.bf3ef651.js","assets/index.b940d6e3.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/oa-menu-form.vue_vue_type_script_setup_true_lang.a89c7407.js","assets/useMenuOa.652835b4.js","assets/wx_oa.ec356b57.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/channel/wx_oa/menu_com/oa-menu-form.vue":()=>l(()=>import("./oa-menu-form.508e1d1c.js"),["assets/oa-menu-form.508e1d1c.js","assets/oa-menu-form.vue_vue_type_script_setup_true_lang.a89c7407.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/useMenuOa.652835b4.js","assets/wx_oa.ec356b57.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/channel/wx_oa/menu_com/oa-phone.vue":()=>l(()=>import("./oa-phone.da93a36e.js"),["assets/oa-phone.da93a36e.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/useMenuOa.652835b4.js","assets/wx_oa.ec356b57.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/oa-phone.231c030b.css"]),"/src/views/channel/wx_oa/reply/default_reply.vue":()=>l(()=>import("./default_reply.fa14912b.js"),["assets/default_reply.fa14912b.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/wx_oa.ec356b57.js","assets/usePaging.2ad8e1e6.js","assets/edit.vue_vue_type_script_setup_true_lang.7913183a.js","assets/index.b940d6e3.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/channel/wx_oa/reply/edit.vue":()=>l(()=>import("./edit.3130a2d8.js"),["assets/edit.3130a2d8.js","assets/edit.vue_vue_type_script_setup_true_lang.7913183a.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/wx_oa.ec356b57.js","assets/index.b940d6e3.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/channel/wx_oa/reply/follow_reply.vue":()=>l(()=>import("./follow_reply.38a6c8e9.js"),["assets/follow_reply.38a6c8e9.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/wx_oa.ec356b57.js","assets/usePaging.2ad8e1e6.js","assets/edit.vue_vue_type_script_setup_true_lang.7913183a.js","assets/index.b940d6e3.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/channel/wx_oa/reply/keyword_reply.vue":()=>l(()=>import("./keyword_reply.5f1270fa.js"),["assets/keyword_reply.5f1270fa.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/wx_oa.ec356b57.js","assets/usePaging.2ad8e1e6.js","assets/edit.vue_vue_type_script_setup_true_lang.7913183a.js","assets/index.b940d6e3.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/company/dialog.vue":()=>l(()=>import("./dialog.3882feb2.js"),["assets/dialog.3882feb2.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/dialog.6aac509b.css"]),"/src/views/company/dialog_index.vue":()=>l(()=>import("./dialog_index.e3a90926.js"),["assets/dialog_index.e3a90926.js","assets/dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.0b707b28.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/usePaging.2ad8e1e6.js","assets/company.8a1c349a.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/company/dialog_index_man.vue":()=>l(()=>import("./dialog_index_man.ec5d66bf.js"),["assets/dialog_index_man.ec5d66bf.js","assets/dialog_index_man.vue_vue_type_script_setup_true_name_companyLists_lang.be34fc0b.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/usePaging.2ad8e1e6.js","assets/role.1c72c4c7.js","assets/useDictOptions.8d37e54b.js","assets/admin.f28da7a1.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/company/dialog_index_personnel.vue":()=>l(()=>import("./dialog_index_personnel.2d243adb.js"),["assets/dialog_index_personnel.2d243adb.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/usePaging.2ad8e1e6.js","assets/role.1c72c4c7.js","assets/useDictOptions.8d37e54b.js","assets/admin.f28da7a1.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/company/edit.vue":()=>l(()=>import("./edit.29c3c764.js"),["assets/edit.29c3c764.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/vue-router.9f65afb1.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/company.8a1c349a.js","assets/common.ac78ede6.js","assets/dict.6c560e38.js","assets/lodash.08438971.js","assets/dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.0b707b28.js","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/usePaging.2ad8e1e6.js","assets/dialog_index_man.vue_vue_type_script_setup_true_name_companyLists_lang.be34fc0b.js","assets/role.1c72c4c7.js","assets/useDictOptions.8d37e54b.js","assets/admin.f28da7a1.js","assets/axios.105476b3.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/edit.a8bfff6c.css"]),"/src/views/company/index.vue":()=>l(()=>import("./index.c642e50f.js"),["assets/index.c642e50f.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/vue-router.9f65afb1.js","assets/usePaging.2ad8e1e6.js","assets/useDictOptions.8d37e54b.js","assets/company.8a1c349a.js","assets/lodash.08438971.js","assets/dict.6c560e38.js","assets/dict.070e6995.js","assets/dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.0b707b28.js","assets/axios.105476b3.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/index.ed16e5c3.css"]),"/src/views/company/subordinate.vue":()=>l(()=>import("./subordinate.4e9298bd.js"),["assets/subordinate.4e9298bd.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/vue-router.9f65afb1.js","assets/usePaging.2ad8e1e6.js","assets/useDictOptions.8d37e54b.js","assets/company.8a1c349a.js","assets/admin.f28da7a1.js","assets/lodash.08438971.js","assets/dict.6c560e38.js","assets/axios.105476b3.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/subordinate.a60ba8ed.css"]),"/src/views/company_complaint_feedback/edit.vue":()=>l(()=>import("./edit.025e17b9.js"),["assets/edit.025e17b9.js","assets/edit.vue_vue_type_script_setup_true_name_companyComplaintFeedbackEdit_lang.bc8f5151.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.b940d6e3.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/company_complaint_feedback/index.vue":()=>l(()=>import("./index.57418120.js"),["assets/index.57418120.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/usePaging.2ad8e1e6.js","assets/useDictOptions.8d37e54b.js","assets/edit.vue_vue_type_script_setup_true_name_companyComplaintFeedbackEdit_lang.bc8f5151.js","assets/index.b940d6e3.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/company_form/edit.vue":()=>l(()=>import("./edit.ce797638.js"),["assets/edit.ce797638.js","assets/edit.vue_vue_type_script_setup_true_name_companyFormEdit_lang.1520b33c.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.b940d6e3.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/company_form/index.vue":()=>l(()=>import("./index.7055130a.js"),["assets/index.7055130a.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/usePaging.2ad8e1e6.js","assets/useDictOptions.8d37e54b.js","assets/edit.vue_vue_type_script_setup_true_name_companyFormEdit_lang.1520b33c.js","assets/index.b940d6e3.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/consumer/components/account-adjust.vue":()=>l(()=>import("./account-adjust.7c04e4c5.js"),["assets/account-adjust.7c04e4c5.js","assets/account-adjust.vue_vue_type_script_setup_true_lang.2709fbc4.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.b940d6e3.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/consumer/lists/detail copy.vue":()=>l(()=>import("./detail copy.2b0d408e.js"),["assets/detail copy.2b0d408e.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.dc835bba.js","assets/vue-router.9f65afb1.js","assets/consumer.5e9fbfa1.js","assets/account-adjust.vue_vue_type_script_setup_true_lang.2709fbc4.js","assets/index.b940d6e3.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/consumer/lists/detail.vue":()=>l(()=>import("./detail.41c27cbc.js"),["assets/detail.41c27cbc.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/vue-router.9f65afb1.js","assets/consumer.5e9fbfa1.js","assets/common.ac78ede6.js","assets/dict.6c560e38.js","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/usePaging.2ad8e1e6.js","assets/company.8a1c349a.js","assets/lodash.08438971.js","assets/account-adjust.vue_vue_type_script_setup_true_lang.2709fbc4.js","assets/index.b940d6e3.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/axios.105476b3.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/detail.91395de5.css"]),"/src/views/consumer/lists/index.vue":()=>l(()=>import("./index.bd6d6417.js"),["assets/index.bd6d6417.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/index.vue_vue_type_script_setup_true_lang.5c604000.js","assets/index.b940d6e3.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/vue-router.9f65afb1.js","assets/usePaging.2ad8e1e6.js","assets/consumer.5e9fbfa1.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/index.5e13ecf8.css"]),"/src/views/contract/company.vue":()=>l(()=>import("./company.7f823bd3.js"),["assets/company.7f823bd3.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/vue-router.9f65afb1.js","assets/usePaging.2ad8e1e6.js","assets/useDictOptions.8d37e54b.js","assets/company.8a1c349a.js","assets/lodash.08438971.js","assets/dict.6c560e38.js","assets/dict.070e6995.js","assets/dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.c1d31e4b.js","assets/axios.105476b3.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/company.ed16e5c3.css"]),"/src/views/contract/contractDetil.vue":()=>l(()=>import("./contractDetil.cbb6ef30.js"),["assets/contractDetil.cbb6ef30.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/vue-router.9f65afb1.js","assets/contract.152e3bc2.js","assets/consumer.5e9fbfa1.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/contractDetil.82bc7784.css"]),"/src/views/contract/dialog_index.vue":()=>l(()=>import("./dialog_index.326998c3.js"),["assets/dialog_index.326998c3.js","assets/dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.c1d31e4b.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/usePaging.2ad8e1e6.js","assets/company.8a1c349a.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/contract/edit.vue":()=>l(()=>import("./edit.991839d7.js"),["assets/edit.991839d7.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.b940d6e3.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/contract.152e3bc2.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/contract/index.vue":()=>l(()=>import("./index.c74feb32.js"),["assets/index.c74feb32.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/vue-router.9f65afb1.js","assets/usePaging.2ad8e1e6.js","assets/useDictOptions.8d37e54b.js","assets/contract.152e3bc2.js","assets/lodash.08438971.js","assets/dict.6c560e38.js","assets/company.8a1c349a.js","assets/axios.105476b3.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/index.0414e924.css"]),"/src/views/contract/vehicle_detail.vue":()=>l(()=>import("./vehicle_detail.03ba78b6.js"),["assets/vehicle_detail.03ba78b6.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/vue-router.9f65afb1.js","assets/contract.152e3bc2.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/vehicle_detail.7aa08ed6.css"]),"/src/views/contract/vehicle_list.vue":()=>l(()=>import("./vehicle_list.60ceb897.js"),["assets/vehicle_list.60ceb897.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/usePaging.2ad8e1e6.js","assets/useDictOptions.8d37e54b.js","assets/contract.152e3bc2.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/vehicle_list.4db1527d.css"]),"/src/views/decoration/component/add-nav.vue":()=>l(()=>import("./add-nav.e7dd3477.js"),["assets/add-nav.e7dd3477.js","assets/add-nav.vue_vue_type_script_setup_true_lang.a0ca03a3.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.f2c7f81b.js","assets/index.bb3c88e6.css","assets/picker.47d21da2.js","assets/index.b940d6e3.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/picker.d164339d.css","assets/picker.597494a6.js","assets/index.c38e1dd6.js","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/index.9c616a0c.js","assets/index.vue_vue_type_script_setup_true_lang.dc835bba.js","assets/usePaging.2ad8e1e6.js","assets/vue3-video-play.b911321b.js","assets/vue3-video-play.74881f83.css","assets/index.be52e81c.css","assets/vuedraggable.0cb40d3a.js","assets/vue.5de34049.js","assets/sortablejs.ef73fc5c.js","assets/picker.f0cb09c5.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/decoration/component/decoration-img.vue":()=>l(()=>import("./decoration-img.82b482b3.js"),["assets/decoration-img.82b482b3.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/decoration-img.e03f874f.css"]),"/src/views/decoration/component/pages/attr-setting.vue":()=>l(()=>import("./attr-setting.d7888079.js"),["assets/attr-setting.d7888079.js","assets/attr-setting.vue_vue_type_script_setup_true_lang.165968f9.js","assets/index.017d9ee1.js","assets/attr.vue_vue_type_script_setup_true_lang.8394104e.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.f2c7f81b.js","assets/index.bb3c88e6.css","assets/picker.47d21da2.js","assets/index.b940d6e3.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/picker.d164339d.css","assets/picker.597494a6.js","assets/index.c38e1dd6.js","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/index.9c616a0c.js","assets/index.vue_vue_type_script_setup_true_lang.dc835bba.js","assets/usePaging.2ad8e1e6.js","assets/vue3-video-play.b911321b.js","assets/vue3-video-play.74881f83.css","assets/index.be52e81c.css","assets/vuedraggable.0cb40d3a.js","assets/vue.5de34049.js","assets/sortablejs.ef73fc5c.js","assets/picker.f0cb09c5.css","assets/content.vue_vue_type_script_setup_true_lang.84d28a88.js","assets/decoration-img.82b482b3.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/decoration-img.e03f874f.css","assets/attr.vue_vue_type_script_setup_true_lang.be7eaab3.js","assets/content.b8657a15.js","assets/content.3c393d61.css","assets/attr.vue_vue_type_script_setup_true_lang.5e1d2ee6.js","assets/add-nav.vue_vue_type_script_setup_true_lang.a0ca03a3.js","assets/content.de68a2a6.js","assets/content.4bb46171.css","assets/attr.vue_vue_type_script_setup_true_lang.19311265.js","assets/content.vue_vue_type_script_setup_true_lang.c8560c8f.js","assets/attr.vue_vue_type_script_setup_true_lang.d01577b5.js","assets/content.54b16038.js","assets/decoration.6a408574.js","assets/content.199cf006.css","assets/attr.vue_vue_type_script_setup_true_lang.0fc534ba.js","assets/content.fb432a0e.js","assets/content.0b4d2f25.css","assets/attr.vue_vue_type_script_setup_true_lang.103310f1.js","assets/content.vue_vue_type_script_setup_true_lang.e9fe6f66.js","assets/attr.vue_vue_type_script_setup_true_lang.00e826d0.js","assets/content.0dcb8921.js","assets/content.93b4d62b.css"]),"/src/views/decoration/component/pages/menu.vue":()=>l(()=>import("./menu.e12cd2ff.js"),["assets/menu.e12cd2ff.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/menu.c64cbd13.css"]),"/src/views/decoration/component/pages/preview-pc.vue":()=>l(()=>import("./preview-pc.b441bd47.js"),["assets/preview-pc.b441bd47.js","assets/index.017d9ee1.js","assets/attr.vue_vue_type_script_setup_true_lang.8394104e.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.f2c7f81b.js","assets/index.bb3c88e6.css","assets/picker.47d21da2.js","assets/index.b940d6e3.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/picker.d164339d.css","assets/picker.597494a6.js","assets/index.c38e1dd6.js","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/index.9c616a0c.js","assets/index.vue_vue_type_script_setup_true_lang.dc835bba.js","assets/usePaging.2ad8e1e6.js","assets/vue3-video-play.b911321b.js","assets/vue3-video-play.74881f83.css","assets/index.be52e81c.css","assets/vuedraggable.0cb40d3a.js","assets/vue.5de34049.js","assets/sortablejs.ef73fc5c.js","assets/picker.f0cb09c5.css","assets/content.vue_vue_type_script_setup_true_lang.84d28a88.js","assets/decoration-img.82b482b3.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/decoration-img.e03f874f.css","assets/attr.vue_vue_type_script_setup_true_lang.be7eaab3.js","assets/content.b8657a15.js","assets/content.3c393d61.css","assets/attr.vue_vue_type_script_setup_true_lang.5e1d2ee6.js","assets/add-nav.vue_vue_type_script_setup_true_lang.a0ca03a3.js","assets/content.de68a2a6.js","assets/content.4bb46171.css","assets/attr.vue_vue_type_script_setup_true_lang.19311265.js","assets/content.vue_vue_type_script_setup_true_lang.c8560c8f.js","assets/attr.vue_vue_type_script_setup_true_lang.d01577b5.js","assets/content.54b16038.js","assets/decoration.6a408574.js","assets/content.199cf006.css","assets/attr.vue_vue_type_script_setup_true_lang.0fc534ba.js","assets/content.fb432a0e.js","assets/content.0b4d2f25.css","assets/attr.vue_vue_type_script_setup_true_lang.103310f1.js","assets/content.vue_vue_type_script_setup_true_lang.e9fe6f66.js","assets/attr.vue_vue_type_script_setup_true_lang.00e826d0.js","assets/content.0dcb8921.js","assets/content.93b4d62b.css","assets/preview-pc.77355e30.css"]),"/src/views/decoration/component/pages/preview.vue":()=>l(()=>import("./preview.c7c0f0ab.js"),["assets/preview.c7c0f0ab.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.017d9ee1.js","assets/attr.vue_vue_type_script_setup_true_lang.8394104e.js","assets/index.f2c7f81b.js","assets/index.bb3c88e6.css","assets/picker.47d21da2.js","assets/index.b940d6e3.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/picker.d164339d.css","assets/picker.597494a6.js","assets/index.c38e1dd6.js","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/index.9c616a0c.js","assets/index.vue_vue_type_script_setup_true_lang.dc835bba.js","assets/usePaging.2ad8e1e6.js","assets/vue3-video-play.b911321b.js","assets/vue3-video-play.74881f83.css","assets/index.be52e81c.css","assets/vuedraggable.0cb40d3a.js","assets/vue.5de34049.js","assets/sortablejs.ef73fc5c.js","assets/picker.f0cb09c5.css","assets/content.vue_vue_type_script_setup_true_lang.84d28a88.js","assets/decoration-img.82b482b3.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/decoration-img.e03f874f.css","assets/attr.vue_vue_type_script_setup_true_lang.be7eaab3.js","assets/content.b8657a15.js","assets/content.3c393d61.css","assets/attr.vue_vue_type_script_setup_true_lang.5e1d2ee6.js","assets/add-nav.vue_vue_type_script_setup_true_lang.a0ca03a3.js","assets/content.de68a2a6.js","assets/content.4bb46171.css","assets/attr.vue_vue_type_script_setup_true_lang.19311265.js","assets/content.vue_vue_type_script_setup_true_lang.c8560c8f.js","assets/attr.vue_vue_type_script_setup_true_lang.d01577b5.js","assets/content.54b16038.js","assets/decoration.6a408574.js","assets/content.199cf006.css","assets/attr.vue_vue_type_script_setup_true_lang.0fc534ba.js","assets/content.fb432a0e.js","assets/content.0b4d2f25.css","assets/attr.vue_vue_type_script_setup_true_lang.103310f1.js","assets/content.vue_vue_type_script_setup_true_lang.e9fe6f66.js","assets/attr.vue_vue_type_script_setup_true_lang.00e826d0.js","assets/content.0dcb8921.js","assets/content.93b4d62b.css","assets/preview.705e23a4.css"]),"/src/views/decoration/component/widgets/banner/attr.vue":()=>l(()=>import("./attr.765bdfe4.js"),["assets/attr.765bdfe4.js","assets/attr.vue_vue_type_script_setup_true_lang.8394104e.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.f2c7f81b.js","assets/index.bb3c88e6.css","assets/picker.47d21da2.js","assets/index.b940d6e3.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/picker.d164339d.css","assets/picker.597494a6.js","assets/index.c38e1dd6.js","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/index.9c616a0c.js","assets/index.vue_vue_type_script_setup_true_lang.dc835bba.js","assets/usePaging.2ad8e1e6.js","assets/vue3-video-play.b911321b.js","assets/vue3-video-play.74881f83.css","assets/index.be52e81c.css","assets/vuedraggable.0cb40d3a.js","assets/vue.5de34049.js","assets/sortablejs.ef73fc5c.js","assets/picker.f0cb09c5.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/decoration/component/widgets/banner/content.vue":()=>l(()=>import("./content.efbf9a62.js"),["assets/content.efbf9a62.js","assets/content.vue_vue_type_script_setup_true_lang.84d28a88.js","assets/decoration-img.82b482b3.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/decoration-img.e03f874f.css"]),"/src/views/decoration/component/widgets/customer-service/attr.vue":()=>l(()=>import("./attr.839bcc4e.js"),["assets/attr.839bcc4e.js","assets/attr.vue_vue_type_script_setup_true_lang.be7eaab3.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/picker.597494a6.js","assets/index.b940d6e3.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/index.c38e1dd6.js","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/index.f2c7f81b.js","assets/index.bb3c88e6.css","assets/index.9c616a0c.js","assets/index.vue_vue_type_script_setup_true_lang.dc835bba.js","assets/usePaging.2ad8e1e6.js","assets/vue3-video-play.b911321b.js","assets/vue3-video-play.74881f83.css","assets/index.be52e81c.css","assets/vuedraggable.0cb40d3a.js","assets/vue.5de34049.js","assets/sortablejs.ef73fc5c.js","assets/picker.f0cb09c5.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/decoration/component/widgets/customer-service/content.vue":()=>l(()=>import("./content.b8657a15.js"),["assets/content.b8657a15.js","assets/decoration-img.82b482b3.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/decoration-img.e03f874f.css","assets/content.3c393d61.css"]),"/src/views/decoration/component/widgets/my-service/attr.vue":()=>l(()=>import("./attr.a711bfd6.js"),["assets/attr.a711bfd6.js","assets/attr.vue_vue_type_script_setup_true_lang.5e1d2ee6.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/add-nav.vue_vue_type_script_setup_true_lang.a0ca03a3.js","assets/index.f2c7f81b.js","assets/index.bb3c88e6.css","assets/picker.47d21da2.js","assets/index.b940d6e3.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/picker.d164339d.css","assets/picker.597494a6.js","assets/index.c38e1dd6.js","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/index.9c616a0c.js","assets/index.vue_vue_type_script_setup_true_lang.dc835bba.js","assets/usePaging.2ad8e1e6.js","assets/vue3-video-play.b911321b.js","assets/vue3-video-play.74881f83.css","assets/index.be52e81c.css","assets/vuedraggable.0cb40d3a.js","assets/vue.5de34049.js","assets/sortablejs.ef73fc5c.js","assets/picker.f0cb09c5.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/decoration/component/widgets/my-service/content.vue":()=>l(()=>import("./content.de68a2a6.js"),["assets/content.de68a2a6.js","assets/decoration-img.82b482b3.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/decoration-img.e03f874f.css","assets/content.4bb46171.css"]),"/src/views/decoration/component/widgets/nav/attr.vue":()=>l(()=>import("./attr.b46231e3.js"),["assets/attr.b46231e3.js","assets/attr.vue_vue_type_script_setup_true_lang.19311265.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/add-nav.vue_vue_type_script_setup_true_lang.a0ca03a3.js","assets/index.f2c7f81b.js","assets/index.bb3c88e6.css","assets/picker.47d21da2.js","assets/index.b940d6e3.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/picker.d164339d.css","assets/picker.597494a6.js","assets/index.c38e1dd6.js","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/index.9c616a0c.js","assets/index.vue_vue_type_script_setup_true_lang.dc835bba.js","assets/usePaging.2ad8e1e6.js","assets/vue3-video-play.b911321b.js","assets/vue3-video-play.74881f83.css","assets/index.be52e81c.css","assets/vuedraggable.0cb40d3a.js","assets/vue.5de34049.js","assets/sortablejs.ef73fc5c.js","assets/picker.f0cb09c5.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/decoration/component/widgets/nav/content.vue":()=>l(()=>import("./content.b4d20e23.js"),["assets/content.b4d20e23.js","assets/content.vue_vue_type_script_setup_true_lang.c8560c8f.js","assets/decoration-img.82b482b3.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/decoration-img.e03f874f.css"]),"/src/views/decoration/component/widgets/news/attr.vue":()=>l(()=>import("./attr.11db8aff.js"),["assets/attr.11db8aff.js","assets/attr.vue_vue_type_script_setup_true_lang.d01577b5.js","assets/@vue.51d7f2d8.js"]),"/src/views/decoration/component/widgets/news/content.vue":()=>l(()=>import("./content.54b16038.js"),["assets/content.54b16038.js","assets/decoration.6a408574.js","assets/@vue.51d7f2d8.js","assets/element-plus.4328d892.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/content.199cf006.css"]),"/src/views/decoration/component/widgets/search/attr.vue":()=>l(()=>import("./attr.b0ec395b.js"),["assets/attr.b0ec395b.js","assets/attr.vue_vue_type_script_setup_true_lang.0fc534ba.js","assets/@vue.51d7f2d8.js"]),"/src/views/decoration/component/widgets/search/content.vue":()=>l(()=>import("./content.fb432a0e.js"),["assets/content.fb432a0e.js","assets/@vue.51d7f2d8.js","assets/element-plus.4328d892.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/content.0b4d2f25.css"]),"/src/views/decoration/component/widgets/user-banner/attr.vue":()=>l(()=>import("./attr.7ce81e4d.js"),["assets/attr.7ce81e4d.js","assets/attr.vue_vue_type_script_setup_true_lang.103310f1.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.f2c7f81b.js","assets/index.bb3c88e6.css","assets/picker.47d21da2.js","assets/index.b940d6e3.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/picker.d164339d.css","assets/picker.597494a6.js","assets/index.c38e1dd6.js","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/index.9c616a0c.js","assets/index.vue_vue_type_script_setup_true_lang.dc835bba.js","assets/usePaging.2ad8e1e6.js","assets/vue3-video-play.b911321b.js","assets/vue3-video-play.74881f83.css","assets/index.be52e81c.css","assets/vuedraggable.0cb40d3a.js","assets/vue.5de34049.js","assets/sortablejs.ef73fc5c.js","assets/picker.f0cb09c5.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/decoration/component/widgets/user-banner/content.vue":()=>l(()=>import("./content.e5c2e527.js"),["assets/content.e5c2e527.js","assets/content.vue_vue_type_script_setup_true_lang.e9fe6f66.js","assets/decoration-img.82b482b3.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/decoration-img.e03f874f.css"]),"/src/views/decoration/component/widgets/user-info/attr.vue":()=>l(()=>import("./attr.7e74e28a.js"),["assets/attr.7e74e28a.js","assets/attr.vue_vue_type_script_setup_true_lang.00e826d0.js","assets/@vue.51d7f2d8.js"]),"/src/views/decoration/component/widgets/user-info/content.vue":()=>l(()=>import("./content.0dcb8921.js"),["assets/content.0dcb8921.js","assets/@vue.51d7f2d8.js","assets/element-plus.4328d892.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/content.93b4d62b.css"]),"/src/views/decoration/pages/index.vue":()=>l(()=>import("./index.99236694.js"),["assets/index.99236694.js","assets/index.be5645df.js","assets/@vue.51d7f2d8.js","assets/index.8d99c3e6.css","assets/element-plus.4328d892.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/menu.e12cd2ff.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/menu.c64cbd13.css","assets/preview.c7c0f0ab.js","assets/index.017d9ee1.js","assets/attr.vue_vue_type_script_setup_true_lang.8394104e.js","assets/index.f2c7f81b.js","assets/index.bb3c88e6.css","assets/picker.47d21da2.js","assets/index.b940d6e3.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/picker.d164339d.css","assets/picker.597494a6.js","assets/index.c38e1dd6.js","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/index.9c616a0c.js","assets/index.vue_vue_type_script_setup_true_lang.dc835bba.js","assets/usePaging.2ad8e1e6.js","assets/vue3-video-play.b911321b.js","assets/vue3-video-play.74881f83.css","assets/index.be52e81c.css","assets/vuedraggable.0cb40d3a.js","assets/vue.5de34049.js","assets/sortablejs.ef73fc5c.js","assets/picker.f0cb09c5.css","assets/content.vue_vue_type_script_setup_true_lang.84d28a88.js","assets/decoration-img.82b482b3.js","assets/decoration-img.e03f874f.css","assets/attr.vue_vue_type_script_setup_true_lang.be7eaab3.js","assets/content.b8657a15.js","assets/content.3c393d61.css","assets/attr.vue_vue_type_script_setup_true_lang.5e1d2ee6.js","assets/add-nav.vue_vue_type_script_setup_true_lang.a0ca03a3.js","assets/content.de68a2a6.js","assets/content.4bb46171.css","assets/attr.vue_vue_type_script_setup_true_lang.19311265.js","assets/content.vue_vue_type_script_setup_true_lang.c8560c8f.js","assets/attr.vue_vue_type_script_setup_true_lang.d01577b5.js","assets/content.54b16038.js","assets/decoration.6a408574.js","assets/content.199cf006.css","assets/attr.vue_vue_type_script_setup_true_lang.0fc534ba.js","assets/content.fb432a0e.js","assets/content.0b4d2f25.css","assets/attr.vue_vue_type_script_setup_true_lang.103310f1.js","assets/content.vue_vue_type_script_setup_true_lang.e9fe6f66.js","assets/attr.vue_vue_type_script_setup_true_lang.00e826d0.js","assets/content.0dcb8921.js","assets/content.93b4d62b.css","assets/preview.705e23a4.css","assets/attr-setting.vue_vue_type_script_setup_true_lang.165968f9.js","assets/index.7d5fac29.css"]),"/src/views/decoration/pc.vue":()=>l(()=>import("./pc.04cb4de2.js"),["assets/pc.04cb4de2.js","assets/index.be5645df.js","assets/@vue.51d7f2d8.js","assets/index.8d99c3e6.css","assets/element-plus.4328d892.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/menu.e12cd2ff.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/menu.c64cbd13.css","assets/preview-pc.b441bd47.js","assets/index.017d9ee1.js","assets/attr.vue_vue_type_script_setup_true_lang.8394104e.js","assets/index.f2c7f81b.js","assets/index.bb3c88e6.css","assets/picker.47d21da2.js","assets/index.b940d6e3.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/picker.d164339d.css","assets/picker.597494a6.js","assets/index.c38e1dd6.js","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/index.9c616a0c.js","assets/index.vue_vue_type_script_setup_true_lang.dc835bba.js","assets/usePaging.2ad8e1e6.js","assets/vue3-video-play.b911321b.js","assets/vue3-video-play.74881f83.css","assets/index.be52e81c.css","assets/vuedraggable.0cb40d3a.js","assets/vue.5de34049.js","assets/sortablejs.ef73fc5c.js","assets/picker.f0cb09c5.css","assets/content.vue_vue_type_script_setup_true_lang.84d28a88.js","assets/decoration-img.82b482b3.js","assets/decoration-img.e03f874f.css","assets/attr.vue_vue_type_script_setup_true_lang.be7eaab3.js","assets/content.b8657a15.js","assets/content.3c393d61.css","assets/attr.vue_vue_type_script_setup_true_lang.5e1d2ee6.js","assets/add-nav.vue_vue_type_script_setup_true_lang.a0ca03a3.js","assets/content.de68a2a6.js","assets/content.4bb46171.css","assets/attr.vue_vue_type_script_setup_true_lang.19311265.js","assets/content.vue_vue_type_script_setup_true_lang.c8560c8f.js","assets/attr.vue_vue_type_script_setup_true_lang.d01577b5.js","assets/content.54b16038.js","assets/decoration.6a408574.js","assets/content.199cf006.css","assets/attr.vue_vue_type_script_setup_true_lang.0fc534ba.js","assets/content.fb432a0e.js","assets/content.0b4d2f25.css","assets/attr.vue_vue_type_script_setup_true_lang.103310f1.js","assets/content.vue_vue_type_script_setup_true_lang.e9fe6f66.js","assets/attr.vue_vue_type_script_setup_true_lang.00e826d0.js","assets/content.0dcb8921.js","assets/content.93b4d62b.css","assets/preview-pc.77355e30.css","assets/attr-setting.vue_vue_type_script_setup_true_lang.165968f9.js","assets/pc.594dbc93.css"]),"/src/views/decoration/tabbar.vue":()=>l(()=>import("./tabbar.c788ba1a.js"),["assets/tabbar.c788ba1a.js","assets/index.be5645df.js","assets/@vue.51d7f2d8.js","assets/index.8d99c3e6.css","assets/element-plus.4328d892.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.f2c7f81b.js","assets/index.bb3c88e6.css","assets/picker.47d21da2.js","assets/index.b940d6e3.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/picker.d164339d.css","assets/picker.597494a6.js","assets/index.c38e1dd6.js","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/index.9c616a0c.js","assets/index.vue_vue_type_script_setup_true_lang.dc835bba.js","assets/usePaging.2ad8e1e6.js","assets/vue3-video-play.b911321b.js","assets/vue3-video-play.74881f83.css","assets/index.be52e81c.css","assets/vuedraggable.0cb40d3a.js","assets/vue.5de34049.js","assets/sortablejs.ef73fc5c.js","assets/picker.f0cb09c5.css","assets/decoration.6a408574.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/tabbar.094d2543.css"]),"/src/views/dev_tools/code/edit.vue":()=>l(()=>import("./edit.c4857980.js"),["assets/edit.c4857980.js","assets/index.be5645df.js","assets/@vue.51d7f2d8.js","assets/index.8d99c3e6.css","assets/element-plus.4328d892.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.17266fa4.js","assets/vue-router.9f65afb1.js","assets/code.7deeaac3.js","assets/useDictOptions.8d37e54b.js","assets/dict.6c560e38.js","assets/menu.a3f35001.js","assets/relations-add.vue_vue_type_script_setup_true_lang.6e9422b0.js","assets/index.b940d6e3.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/dev_tools/code/index.vue":()=>l(()=>import("./index.a98abbee.js"),["assets/index.a98abbee.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/code.7deeaac3.js","assets/usePaging.2ad8e1e6.js","assets/data-table.vue_vue_type_script_setup_true_lang.1dc8d879.js","assets/index.b940d6e3.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/code-preview.vue_vue_type_script_setup_true_lang.9bab2a34.js","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/dev_tools/components/code-preview.vue":()=>l(()=>import("./code-preview.c908c1e0.js"),["assets/code-preview.c908c1e0.js","assets/code-preview.vue_vue_type_script_setup_true_lang.9bab2a34.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/dev_tools/components/data-table.vue":()=>l(()=>import("./data-table.760b71c0.js"),["assets/data-table.760b71c0.js","assets/data-table.vue_vue_type_script_setup_true_lang.1dc8d879.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.b940d6e3.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/usePaging.2ad8e1e6.js","assets/code.7deeaac3.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/dev_tools/components/relations-add.vue":()=>l(()=>import("./relations-add.13b2fe78.js"),["assets/relations-add.13b2fe78.js","assets/relations-add.vue_vue_type_script_setup_true_lang.6e9422b0.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.b940d6e3.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/useDictOptions.8d37e54b.js","assets/code.7deeaac3.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/error/403.vue":()=>l(()=>import("./403.0c7dfb1d.js"),["assets/403.0c7dfb1d.js","assets/error.ab90784a.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/vue-router.9f65afb1.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/error.1aaeb02c.css"]),"/src/views/error/404.vue":()=>l(()=>import("./404.a81ca3a0.js"),["assets/404.a81ca3a0.js","assets/error.ab90784a.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/vue-router.9f65afb1.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/error.1aaeb02c.css"]),"/src/views/error/components/error.vue":()=>l(()=>import("./error.ab90784a.js"),["assets/error.ab90784a.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/vue-router.9f65afb1.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/error.1aaeb02c.css"]),"/src/views/examined/dialog_index.vue":()=>l(()=>import("./dialog_index.7f5017e4.js"),["assets/dialog_index.7f5017e4.js","assets/dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.67886d67.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/usePaging.2ad8e1e6.js","assets/admin.f28da7a1.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/examined/editCate.vue":()=>l(()=>import("./editCate.aa91a307.js"),["assets/editCate.aa91a307.js","assets/editCate.vue_vue_type_script_setup_true_name_flowTypeEdit_lang.50c156e7.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.b940d6e3.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/examined.594ad8f6.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/examined/editFlow.vue":()=>l(()=>import("./editFlow.ef5f0f64.js"),["assets/editFlow.ef5f0f64.js","assets/editFlow.vue_vue_type_script_setup_true_name_flowEdit_lang.fa903e6a.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.b940d6e3.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/examined.594ad8f6.js","assets/lodash.08438971.js","assets/dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.67886d67.js","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/usePaging.2ad8e1e6.js","assets/admin.f28da7a1.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/examined/examined.vue":()=>l(()=>import("./examined.af9b2757.js"),["assets/examined.af9b2757.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/usePaging.2ad8e1e6.js","assets/useDictOptions.8d37e54b.js","assets/examined.594ad8f6.js","assets/lodash.08438971.js","assets/editCate.vue_vue_type_script_setup_true_name_flowTypeEdit_lang.50c156e7.js","assets/index.b940d6e3.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/examined/examinedFlow.vue":()=>l(()=>import("./examinedFlow.0853126f.js"),["assets/examinedFlow.0853126f.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/usePaging.2ad8e1e6.js","assets/useDictOptions.8d37e54b.js","assets/examined.594ad8f6.js","assets/lodash.08438971.js","assets/editFlow.vue_vue_type_script_setup_true_name_flowEdit_lang.fa903e6a.js","assets/index.b940d6e3.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.67886d67.js","assets/admin.f28da7a1.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/examined/index_list.vue":()=>l(()=>import("./index_list.f5e34705.js"),["assets/index_list.f5e34705.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/usePaging.2ad8e1e6.js","assets/useDictOptions.8d37e54b.js","assets/examined.594ad8f6.js","assets/lodash.08438971.js","assets/index_list_popup.45f00dd2.js","assets/index.b940d6e3.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/index_list_popup.0c1c7f93.css"]),"/src/views/examined/index_list_popup.vue":()=>l(()=>import("./index_list_popup.45f00dd2.js"),["assets/index_list_popup.45f00dd2.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.b940d6e3.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/examined.594ad8f6.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/index_list_popup.0c1c7f93.css"]),"/src/views/finance/Withdrawal.vue":()=>l(()=>import("./Withdrawal.872208f6.js"),["assets/Withdrawal.872208f6.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/usePaging.2ad8e1e6.js","assets/useDictOptions.8d37e54b.js","assets/withdraw.046913b9.js","assets/lodash.08438971.js","assets/edit.vue_vue_type_script_setup_true_name_withdrawEdit_lang.d8e42481.js","assets/index.b940d6e3.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/audit.vue_vue_type_script_setup_true_name_withdrawEdit_lang.c495c275.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/finance/audit.vue":()=>l(()=>import("./audit.4ba06f9c.js"),["assets/audit.4ba06f9c.js","assets/audit.vue_vue_type_script_setup_true_name_withdrawEdit_lang.c495c275.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.b940d6e3.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/withdraw.046913b9.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/finance/balance_details.vue":()=>l(()=>import("./balance_details.13ed1501.js"),["assets/balance_details.13ed1501.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/index.vue_vue_type_script_setup_true_lang.5c604000.js","assets/index.b940d6e3.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/index.vue_vue_type_script_setup_true_lang.3ab411d6.js","assets/finance.5215ca02.js","assets/useDictOptions.8d37e54b.js","assets/usePaging.2ad8e1e6.js","assets/vue-router.9f65afb1.js","assets/people.vue_vue_type_script_setup_true_name_peopleMoney_lang.685e727c.js","assets/user_role.813f0de8.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/finance/company.vue":()=>l(()=>import("./company.9c62bd6b.js"),["assets/company.9c62bd6b.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/vue-router.9f65afb1.js","assets/usePaging.2ad8e1e6.js","assets/useDictOptions.8d37e54b.js","assets/company.8a1c349a.js","assets/lodash.08438971.js","assets/dict.6c560e38.js","assets/axios.105476b3.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/company.ed16e5c3.css"]),"/src/views/finance/component/people.vue":()=>l(()=>import("./people.ab7fc2ab.js"),["assets/people.ab7fc2ab.js","assets/people.vue_vue_type_script_setup_true_name_peopleMoney_lang.685e727c.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css"]),"/src/views/finance/component/refund-log.vue":()=>l(()=>import("./refund-log.8deeff17.js"),["assets/refund-log.8deeff17.js","assets/refund-log.vue_vue_type_script_setup_true_lang.9cd304d5.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/finance.5215ca02.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/finance/edit.vue":()=>l(()=>import("./edit.13207847.js"),["assets/edit.13207847.js","assets/edit.vue_vue_type_script_setup_true_name_withdrawEdit_lang.d8e42481.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.b940d6e3.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/withdraw.046913b9.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/finance/recharge_record.vue":()=>l(()=>import("./recharge_record.6567ee7a.js"),["assets/recharge_record.6567ee7a.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/index.vue_vue_type_script_setup_true_lang.5c604000.js","assets/index.b940d6e3.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/index.vue_vue_type_script_setup_true_lang.3ab411d6.js","assets/finance.5215ca02.js","assets/usePaging.2ad8e1e6.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/finance/refund_record.vue":()=>l(()=>import("./refund_record.47998da0.js"),["assets/refund_record.47998da0.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/index.vue_vue_type_script_setup_true_lang.3ab411d6.js","assets/finance.5215ca02.js","assets/usePaging.2ad8e1e6.js","assets/refund-log.vue_vue_type_script_setup_true_lang.9cd304d5.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/material/index.vue":()=>l(()=>import("./index.79fc3071.js"),["assets/index.79fc3071.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.c38e1dd6.js","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/index.f2c7f81b.js","assets/index.bb3c88e6.css","assets/index.b940d6e3.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/index.9c616a0c.js","assets/index.vue_vue_type_script_setup_true_lang.dc835bba.js","assets/usePaging.2ad8e1e6.js","assets/vue3-video-play.b911321b.js","assets/vue3-video-play.74881f83.css","assets/index.be52e81c.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/index.aaba22cf.css"]),"/src/views/message/notice/edit.vue":()=>l(()=>import("./edit.3c2a03db.js"),["assets/edit.3c2a03db.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.be5645df.js","assets/index.8d99c3e6.css","assets/vue-router.9f65afb1.js","assets/message.f1110fc7.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/message/notice/index.vue":()=>l(()=>import("./index.0544b75a.js"),["assets/index.0544b75a.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/message.f1110fc7.js","assets/usePaging.2ad8e1e6.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/message/short_letter/edit.vue":()=>l(()=>import("./edit.0a787ba3.js"),["assets/edit.0a787ba3.js","assets/edit.vue_vue_type_script_setup_true_lang.7740595e.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/message.f1110fc7.js","assets/index.b940d6e3.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/message/short_letter/index.vue":()=>l(()=>import("./index.754e05b2.js"),["assets/index.754e05b2.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/message.f1110fc7.js","assets/edit.vue_vue_type_script_setup_true_lang.7740595e.js","assets/index.b940d6e3.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/organization/department/edit.vue":()=>l(()=>import("./edit.8331762b.js"),["assets/edit.8331762b.js","assets/edit.vue_vue_type_script_setup_true_lang.d84dd9bf.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/department.4e17bcb6.js","assets/index.b940d6e3.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/useDictOptions.8d37e54b.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/organization/department/index.vue":()=>l(()=>import("./index.eb10fc3a.js"),["assets/index.eb10fc3a.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/edit.vue_vue_type_script_setup_true_lang.d84dd9bf.js","assets/department.4e17bcb6.js","assets/index.b940d6e3.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/useDictOptions.8d37e54b.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/organization/post/edit.vue":()=>l(()=>import("./edit.8a7ffd04.js"),["assets/edit.8a7ffd04.js","assets/edit.vue_vue_type_script_setup_true_lang.076f3b55.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/post.53815820.js","assets/index.b940d6e3.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/organization/post/index.vue":()=>l(()=>import("./index.e9059dc3.js"),["assets/index.e9059dc3.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/index.vue_vue_type_script_setup_true_lang.5c604000.js","assets/index.b940d6e3.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/post.53815820.js","assets/usePaging.2ad8e1e6.js","assets/edit.vue_vue_type_script_setup_true_lang.076f3b55.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/permission/admin/dialog_index.vue":()=>l(()=>import("./dialog_index.14404c9e.js"),["assets/dialog_index.14404c9e.js","assets/dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.dac5c88f.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/usePaging.2ad8e1e6.js","assets/company.8a1c349a.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/permission/admin/edit copy 2.vue":()=>l(()=>import("./edit copy 2.995f0b09.js"),["assets/edit copy 2.995f0b09.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.b940d6e3.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/useDictOptions.8d37e54b.js","assets/admin.f28da7a1.js","assets/role.1c72c4c7.js","assets/post.53815820.js","assets/department.4e17bcb6.js","assets/common.ac78ede6.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/permission/admin/edit copy.vue":()=>l(()=>import("./edit copy.5bc84b23.js"),["assets/edit copy.5bc84b23.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/picker.597494a6.js","assets/index.b940d6e3.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/index.c38e1dd6.js","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/index.f2c7f81b.js","assets/index.bb3c88e6.css","assets/index.9c616a0c.js","assets/index.vue_vue_type_script_setup_true_lang.dc835bba.js","assets/usePaging.2ad8e1e6.js","assets/vue3-video-play.b911321b.js","assets/vue3-video-play.74881f83.css","assets/index.be52e81c.css","assets/vuedraggable.0cb40d3a.js","assets/vue.5de34049.js","assets/sortablejs.ef73fc5c.js","assets/picker.f0cb09c5.css","assets/useDictOptions.8d37e54b.js","assets/admin.f28da7a1.js","assets/role.1c72c4c7.js","assets/post.53815820.js","assets/department.4e17bcb6.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/permission/admin/edit.vue":()=>l(()=>import("./edit.3eb8c3f8.js"),["assets/edit.3eb8c3f8.js","assets/edit.vue_vue_type_style_index_0_lang.c20ff989.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.b940d6e3.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/useDictOptions.8d37e54b.js","assets/admin.f28da7a1.js","assets/role.1c72c4c7.js","assets/post.53815820.js","assets/department.4e17bcb6.js","assets/common.ac78ede6.js","assets/dict.6c560e38.js","assets/dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.dac5c88f.js","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/usePaging.2ad8e1e6.js","assets/company.8a1c349a.js","assets/edit.91395de5.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/permission/admin/index.vue":()=>l(()=>import("./index.1582c042.js"),["assets/index.1582c042.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/index.vue_vue_type_script_setup_true_lang.5c604000.js","assets/index.b940d6e3.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/vue-router.9f65afb1.js","assets/admin.f28da7a1.js","assets/role.1c72c4c7.js","assets/useDictOptions.8d37e54b.js","assets/usePaging.2ad8e1e6.js","assets/edit.vue_vue_type_style_index_0_lang.c20ff989.js","assets/post.53815820.js","assets/department.4e17bcb6.js","assets/common.ac78ede6.js","assets/dict.6c560e38.js","assets/dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.dac5c88f.js","assets/company.8a1c349a.js","assets/edit.91395de5.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/index.a62562b3.css"]),"/src/views/permission/menu/edit.vue":()=>l(()=>import("./edit.880142e8.js"),["assets/edit.880142e8.js","assets/edit.vue_vue_type_script_setup_true_lang.a6b599ae.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/picker.vue_vue_type_script_setup_true_lang.150460d1.js","assets/menu.a3f35001.js","assets/index.b940d6e3.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/permission/menu/index.vue":()=>l(()=>import("./index.0b12e07f.js"),["assets/index.0b12e07f.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/menu.a3f35001.js","assets/usePaging.2ad8e1e6.js","assets/edit.vue_vue_type_script_setup_true_lang.a6b599ae.js","assets/picker.vue_vue_type_script_setup_true_lang.150460d1.js","assets/index.b940d6e3.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/permission/role/auth.vue":()=>l(()=>import("./auth.e3e85e12.js"),["assets/auth.e3e85e12.js","assets/auth.vue_vue_type_script_setup_true_lang.61ccbfa5.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/role.1c72c4c7.js","assets/index.b940d6e3.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/menu.a3f35001.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/permission/role/edit.vue":()=>l(()=>import("./edit.a4250648.js"),["assets/edit.a4250648.js","assets/edit.vue_vue_type_script_setup_true_lang.7bb39860.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/role.1c72c4c7.js","assets/index.b940d6e3.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/permission/role/index.vue":()=>l(()=>import("./index.f81735a4.js"),["assets/index.f81735a4.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/role.1c72c4c7.js","assets/usePaging.2ad8e1e6.js","assets/edit.vue_vue_type_script_setup_true_lang.7bb39860.js","assets/index.b940d6e3.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/auth.vue_vue_type_script_setup_true_lang.61ccbfa5.js","assets/menu.a3f35001.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/setting/dict/data/edit.vue":()=>l(()=>import("./edit.c60bff58.js"),["assets/edit.c60bff58.js","assets/edit.vue_vue_type_script_setup_true_lang.9c4c98df.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.b940d6e3.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/dict.6c560e38.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/setting/dict/data/index.vue":()=>l(()=>import("./index.10ee3b4a.js"),["assets/index.10ee3b4a.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/vue-router.9f65afb1.js","assets/dict.6c560e38.js","assets/usePaging.2ad8e1e6.js","assets/edit.vue_vue_type_script_setup_true_lang.9c4c98df.js","assets/index.b940d6e3.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/setting/dict/type/edit.vue":()=>l(()=>import("./edit.0c56d24e.js"),["assets/edit.0c56d24e.js","assets/edit.vue_vue_type_script_setup_true_lang.7728685e.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.b940d6e3.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/dict.6c560e38.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/setting/dict/type/index.vue":()=>l(()=>import("./index.dec772f2.js"),["assets/index.dec772f2.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/dict.6c560e38.js","assets/usePaging.2ad8e1e6.js","assets/edit.vue_vue_type_script_setup_true_lang.7728685e.js","assets/index.b940d6e3.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/setting/pay/config/edit.vue":()=>l(()=>import("./edit.6e729f1a.js"),["assets/edit.6e729f1a.js","assets/edit.vue_vue_type_script_setup_true_lang.bb74dbfc.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/picker.597494a6.js","assets/index.b940d6e3.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/index.c38e1dd6.js","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/index.f2c7f81b.js","assets/index.bb3c88e6.css","assets/index.9c616a0c.js","assets/index.vue_vue_type_script_setup_true_lang.dc835bba.js","assets/usePaging.2ad8e1e6.js","assets/vue3-video-play.b911321b.js","assets/vue3-video-play.74881f83.css","assets/index.be52e81c.css","assets/vuedraggable.0cb40d3a.js","assets/vue.5de34049.js","assets/sortablejs.ef73fc5c.js","assets/picker.f0cb09c5.css","assets/pay.28eb6ca6.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/setting/pay/config/index.vue":()=>l(()=>import("./index.7a2efcb9.js"),["assets/index.7a2efcb9.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/pay.28eb6ca6.js","assets/edit.vue_vue_type_script_setup_true_lang.bb74dbfc.js","assets/picker.597494a6.js","assets/index.b940d6e3.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/index.c38e1dd6.js","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/index.f2c7f81b.js","assets/index.bb3c88e6.css","assets/index.9c616a0c.js","assets/index.vue_vue_type_script_setup_true_lang.dc835bba.js","assets/usePaging.2ad8e1e6.js","assets/vue3-video-play.b911321b.js","assets/vue3-video-play.74881f83.css","assets/index.be52e81c.css","assets/vuedraggable.0cb40d3a.js","assets/vue.5de34049.js","assets/sortablejs.ef73fc5c.js","assets/picker.f0cb09c5.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/setting/pay/method/index.vue":()=>l(()=>import("./index.05c18161.js"),["assets/index.05c18161.js","assets/index.be5645df.js","assets/@vue.51d7f2d8.js","assets/index.8d99c3e6.css","assets/element-plus.4328d892.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/pay.28eb6ca6.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/setting/search/index.vue":()=>l(()=>import("./index.d0f511d4.js"),["assets/index.d0f511d4.js","assets/index.be5645df.js","assets/@vue.51d7f2d8.js","assets/index.8d99c3e6.css","assets/element-plus.4328d892.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/index.451e702f.css"]),"/src/views/setting/storage/edit.vue":()=>l(()=>import("./edit.4f737b07.js"),["assets/edit.4f737b07.js","assets/edit.vue_vue_type_script_setup_true_lang.fdb9299c.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.b940d6e3.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/setting/storage/index.vue":()=>l(()=>import("./index.8a145ad9.js"),["assets/index.8a145ad9.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/edit.vue_vue_type_script_setup_true_lang.fdb9299c.js","assets/index.b940d6e3.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/setting/system/cache.vue":()=>l(()=>import("./cache.7754317a.js"),["assets/cache.7754317a.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/system.1f3b2cc7.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/setting/system/environment.vue":()=>l(()=>import("./environment.a003c219.js"),["assets/environment.a003c219.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/system.1f3b2cc7.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/setting/system/journal.vue":()=>l(()=>import("./journal.4fb17990.js"),["assets/journal.4fb17990.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/index.vue_vue_type_script_setup_true_lang.5c604000.js","assets/index.b940d6e3.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/index.vue_vue_type_script_setup_true_lang.3ab411d6.js","assets/system.1f3b2cc7.js","assets/usePaging.2ad8e1e6.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/setting/system/scheduled_task/edit.vue":()=>l(()=>import("./edit.17451ae3.js"),["assets/edit.17451ae3.js","assets/index.be5645df.js","assets/@vue.51d7f2d8.js","assets/index.8d99c3e6.css","assets/element-plus.4328d892.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/vue-router.9f65afb1.js","assets/system.1f3b2cc7.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/setting/system/scheduled_task/index.vue":()=>l(()=>import("./index.4a8622b8.js"),["assets/index.4a8622b8.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/system.1f3b2cc7.js","assets/usePaging.2ad8e1e6.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/setting/user/login_register.vue":()=>l(()=>import("./login_register.9ac9bc2c.js"),["assets/login_register.9ac9bc2c.js","assets/index.be5645df.js","assets/@vue.51d7f2d8.js","assets/index.8d99c3e6.css","assets/element-plus.4328d892.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/user.c65c609e.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/setting/user/setup.vue":()=>l(()=>import("./setup.5963378a.js"),["assets/setup.5963378a.js","assets/index.be5645df.js","assets/@vue.51d7f2d8.js","assets/index.8d99c3e6.css","assets/element-plus.4328d892.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/picker.597494a6.js","assets/index.b940d6e3.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/index.c38e1dd6.js","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/index.f2c7f81b.js","assets/index.bb3c88e6.css","assets/index.9c616a0c.js","assets/index.vue_vue_type_script_setup_true_lang.dc835bba.js","assets/usePaging.2ad8e1e6.js","assets/vue3-video-play.b911321b.js","assets/vue3-video-play.74881f83.css","assets/index.be52e81c.css","assets/vuedraggable.0cb40d3a.js","assets/vue.5de34049.js","assets/sortablejs.ef73fc5c.js","assets/picker.f0cb09c5.css","assets/user.c65c609e.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/setting/website/filing.vue":()=>l(()=>import("./filing.047e56b5.js"),["assets/filing.047e56b5.js","assets/index.be5645df.js","assets/@vue.51d7f2d8.js","assets/index.8d99c3e6.css","assets/element-plus.4328d892.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.f2c7f81b.js","assets/index.bb3c88e6.css","assets/website.3e3234e6.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/setting/website/information.vue":()=>l(()=>import("./information.b7b09e43.js"),["assets/information.b7b09e43.js","assets/index.be5645df.js","assets/@vue.51d7f2d8.js","assets/index.8d99c3e6.css","assets/element-plus.4328d892.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/picker.597494a6.js","assets/index.b940d6e3.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/index.c38e1dd6.js","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/index.f2c7f81b.js","assets/index.bb3c88e6.css","assets/index.9c616a0c.js","assets/index.vue_vue_type_script_setup_true_lang.dc835bba.js","assets/usePaging.2ad8e1e6.js","assets/vue3-video-play.b911321b.js","assets/vue3-video-play.74881f83.css","assets/index.be52e81c.css","assets/vuedraggable.0cb40d3a.js","assets/vue.5de34049.js","assets/sortablejs.ef73fc5c.js","assets/picker.f0cb09c5.css","assets/website.3e3234e6.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/setting/website/protocol.vue":()=>l(()=>import("./protocol.6d305945.js"),["assets/protocol.6d305945.js","assets/index.be5645df.js","assets/@vue.51d7f2d8.js","assets/index.8d99c3e6.css","assets/element-plus.4328d892.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_style_index_0_lang.2f5b0088.js","assets/@wangeditor.afd76521.js","assets/@wangeditor.4f35b623.css","assets/picker.597494a6.js","assets/index.b940d6e3.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/index.c38e1dd6.js","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/index.f2c7f81b.js","assets/index.bb3c88e6.css","assets/index.9c616a0c.js","assets/index.vue_vue_type_script_setup_true_lang.dc835bba.js","assets/usePaging.2ad8e1e6.js","assets/vue3-video-play.b911321b.js","assets/vue3-video-play.74881f83.css","assets/index.be52e81c.css","assets/vuedraggable.0cb40d3a.js","assets/vue.5de34049.js","assets/sortablejs.ef73fc5c.js","assets/picker.f0cb09c5.css","assets/index.0d25a475.css","assets/website.3e3234e6.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/shop_contract/details.vue":()=>l(()=>import("./details.eccb2df9.js"),["assets/details.eccb2df9.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/vue-router.9f65afb1.js","assets/shop_contract.c24a8510.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/details.5079768a.css"]),"/src/views/shop_contract/edit.vue":()=>l(()=>import("./edit.f2439296.js"),["assets/edit.f2439296.js","assets/edit.vue_vue_type_script_setup_true_name_shopContractEdit_lang.84a1c3a4.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.b940d6e3.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/shop_contract.c24a8510.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/shop_contract/index.vue":()=>l(()=>import("./index.5d5e6117.js"),["assets/index.5d5e6117.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/usePaging.2ad8e1e6.js","assets/useDictOptions.8d37e54b.js","assets/shop_contract.c24a8510.js","assets/lodash.08438971.js","assets/edit.vue_vue_type_script_setup_true_name_shopContractEdit_lang.84a1c3a4.js","assets/index.b940d6e3.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/index.4b64339d.css"]),"/src/views/shop_merchant/edit.vue":()=>l(()=>import("./edit.f2402a7f.js"),["assets/edit.f2402a7f.js","assets/edit.vue_vue_type_script_setup_true_name_shopMerchantEdit_lang.605ed377.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.b940d6e3.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/shop_merchant/index.vue":()=>l(()=>import("./index.38858664.js"),["assets/index.38858664.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/usePaging.2ad8e1e6.js","assets/useDictOptions.8d37e54b.js","assets/edit.vue_vue_type_script_setup_true_name_shopMerchantEdit_lang.605ed377.js","assets/index.b940d6e3.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/task/calendar.vue":()=>l(()=>import("./calendar.a4ad1da4.js"),["assets/calendar.a4ad1da4.js","assets/calendar.vue_vue_type_style_index_0_lang.da31ccbb.js","assets/vue-simple-calendar.4032adb4.js","assets/@vue.51d7f2d8.js","assets/calendar.b5f127b2.css"]),"/src/views/task/editTow.vue":()=>l(()=>import("./editTow.5182e788.js").then(a=>a.e),["assets/editTow.5182e788.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/vue-router.9f65afb1.js","assets/index.b940d6e3.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/list_two.e2f85723.js","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/usePaging.2ad8e1e6.js","assets/useDictOptions.8d37e54b.js","assets/map.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.c34becfa.js","assets/lodash.08438971.js","assets/map.7a716409.css","assets/edit.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.c27438b7.js","assets/dialog_index_personnel.vue_vue_type_script_setup_true_name_companyLists_lang.e9155591.js","assets/role.1c72c4c7.js","assets/axios.105476b3.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/list_two.5a114e61.css","assets/editTow.406abbe9.css"]),"/src/views/task/taskCalendar.vue":()=>l(()=>import("./taskCalendar.3f419726.js"),["assets/taskCalendar.3f419726.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/vue-router.9f65afb1.js","assets/editTow.5182e788.js","assets/index.b940d6e3.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/list_two.e2f85723.js","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/usePaging.2ad8e1e6.js","assets/useDictOptions.8d37e54b.js","assets/map.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.c34becfa.js","assets/lodash.08438971.js","assets/map.7a716409.css","assets/edit.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.c27438b7.js","assets/dialog_index_personnel.vue_vue_type_script_setup_true_name_companyLists_lang.e9155591.js","assets/role.1c72c4c7.js","assets/axios.105476b3.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/list_two.5a114e61.css","assets/editTow.406abbe9.css","assets/calendar.vue_vue_type_style_index_0_lang.da31ccbb.js","assets/vue-simple-calendar.4032adb4.js","assets/calendar.b5f127b2.css","assets/taskCalendar.f66f9a1d.css"]),"/src/views/task_scheduling/dialog_index.vue":()=>l(()=>import("./dialog_index.cb5bb101.js"),["assets/dialog_index.cb5bb101.js","assets/dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.bd8cad2b.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/usePaging.2ad8e1e6.js","assets/company.8a1c349a.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/task_scheduling/edit.vue":()=>l(()=>import("./edit.db6a43dd.js"),["assets/edit.db6a43dd.js","assets/edit.vue_vue_type_script_setup_true_name_taskSchedulingEdit_lang.98340b3b.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.b940d6e3.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/task_scheduling.1b21dca9.js","assets/lodash.08438971.js","assets/dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.bd8cad2b.js","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/usePaging.2ad8e1e6.js","assets/company.8a1c349a.js","assets/dict.6c560e38.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/task_scheduling/index.vue":()=>l(()=>import("./index.aaa0ca94.js"),["assets/index.aaa0ca94.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/usePaging.2ad8e1e6.js","assets/useDictOptions.8d37e54b.js","assets/task_scheduling.1b21dca9.js","assets/lodash.08438971.js","assets/edit.vue_vue_type_script_setup_true_name_taskSchedulingEdit_lang.98340b3b.js","assets/index.b940d6e3.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.bd8cad2b.js","assets/company.8a1c349a.js","assets/dict.6c560e38.js","assets/money.vue_vue_type_script_setup_true_name_taskSchedulingEdit_lang.4480c61c.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/index.97a58b39.css"]),"/src/views/task_scheduling/money.vue":()=>l(()=>import("./money.eb8fd289.js"),["assets/money.eb8fd289.js","assets/money.vue_vue_type_script_setup_true_name_taskSchedulingEdit_lang.4480c61c.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.b940d6e3.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/task_scheduling.1b21dca9.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/task_template/dialog_index_personnel.vue":()=>l(()=>import("./dialog_index_personnel.365a3ede.js"),["assets/dialog_index_personnel.365a3ede.js","assets/dialog_index_personnel.vue_vue_type_script_setup_true_name_companyLists_lang.e9155591.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/usePaging.2ad8e1e6.js","assets/role.1c72c4c7.js","assets/useDictOptions.8d37e54b.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/task_template/edit.vue":()=>l(()=>import("./edit.1f44f432.js"),["assets/edit.1f44f432.js","assets/edit.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.c27438b7.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/vue-router.9f65afb1.js","assets/index.b940d6e3.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/map.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.c34becfa.js","assets/lodash.08438971.js","assets/map.7a716409.css","assets/dialog_index_personnel.vue_vue_type_script_setup_true_name_companyLists_lang.e9155591.js","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/usePaging.2ad8e1e6.js","assets/role.1c72c4c7.js","assets/useDictOptions.8d37e54b.js","assets/axios.105476b3.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/task_template/edit_admin.vue":()=>l(()=>import("./edit_admin.27216728.js"),["assets/edit_admin.27216728.js","assets/edit_admin.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.1f2345fb.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/vue-router.9f65afb1.js","assets/index.b940d6e3.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/map.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.c34becfa.js","assets/lodash.08438971.js","assets/map.7a716409.css","assets/dialog_index_personnel.vue_vue_type_script_setup_true_name_companyLists_lang.e9155591.js","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/usePaging.2ad8e1e6.js","assets/role.1c72c4c7.js","assets/useDictOptions.8d37e54b.js","assets/axios.105476b3.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/task_template/index.vue":()=>l(()=>import("./index.afdf50a0.js"),["assets/index.afdf50a0.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/vue-router.9f65afb1.js","assets/usePaging.2ad8e1e6.js","assets/useDictOptions.8d37e54b.js","assets/map.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.c34becfa.js","assets/index.b940d6e3.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/lodash.08438971.js","assets/map.7a716409.css","assets/edit.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.c27438b7.js","assets/dialog_index_personnel.vue_vue_type_script_setup_true_name_companyLists_lang.e9155591.js","assets/role.1c72c4c7.js","assets/edit_admin.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.1f2345fb.js","assets/dict.6c560e38.js","assets/axios.105476b3.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/index.75c115fc.css"]),"/src/views/task_template/list_two.vue":()=>l(()=>import("./list_two.e2f85723.js"),["assets/list_two.e2f85723.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/usePaging.2ad8e1e6.js","assets/useDictOptions.8d37e54b.js","assets/map.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.c34becfa.js","assets/index.b940d6e3.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/lodash.08438971.js","assets/map.7a716409.css","assets/edit.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.c27438b7.js","assets/vue-router.9f65afb1.js","assets/dialog_index_personnel.vue_vue_type_script_setup_true_name_companyLists_lang.e9155591.js","assets/role.1c72c4c7.js","assets/axios.105476b3.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/list_two.5a114e61.css"]),"/src/views/task_template/map.vue":()=>l(()=>import("./map.e3af983e.js"),["assets/map.e3af983e.js","assets/map.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.c34becfa.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.b940d6e3.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/lodash.08438971.js","assets/map.7a716409.css","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/template/component/file.vue":()=>l(()=>import("./file.0a761939.js"),["assets/file.0a761939.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/picker.597494a6.js","assets/index.b940d6e3.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/index.c38e1dd6.js","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/index.f2c7f81b.js","assets/index.bb3c88e6.css","assets/index.9c616a0c.js","assets/index.vue_vue_type_script_setup_true_lang.dc835bba.js","assets/usePaging.2ad8e1e6.js","assets/vue3-video-play.b911321b.js","assets/vue3-video-play.74881f83.css","assets/index.be52e81c.css","assets/vuedraggable.0cb40d3a.js","assets/vue.5de34049.js","assets/sortablejs.ef73fc5c.js","assets/picker.f0cb09c5.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/template/component/icon.vue":()=>l(()=>import("./icon.742a9b95.js"),["assets/icon.742a9b95.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/picker.vue_vue_type_script_setup_true_lang.150460d1.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/template/component/link.vue":()=>l(()=>import("./link.878bc2e4.js"),["assets/link.878bc2e4.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/picker.47d21da2.js","assets/index.b940d6e3.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/picker.d164339d.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/template/component/overflow.vue":()=>l(()=>import("./overflow.f8bb1c52.js"),["assets/overflow.f8bb1c52.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/template/component/popover_input.vue":()=>l(()=>import("./popover_input.00cb05ed.js"),["assets/popover_input.00cb05ed.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.dc835bba.js"]),"/src/views/template/component/rich_text.vue":()=>l(()=>import("./rich_text.a7121283.js"),["assets/rich_text.a7121283.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_style_index_0_lang.2f5b0088.js","assets/@wangeditor.afd76521.js","assets/@wangeditor.4f35b623.css","assets/picker.597494a6.js","assets/index.b940d6e3.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/index.c38e1dd6.js","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/index.f2c7f81b.js","assets/index.bb3c88e6.css","assets/index.9c616a0c.js","assets/index.vue_vue_type_script_setup_true_lang.dc835bba.js","assets/usePaging.2ad8e1e6.js","assets/vue3-video-play.b911321b.js","assets/vue3-video-play.74881f83.css","assets/index.be52e81c.css","assets/vuedraggable.0cb40d3a.js","assets/vue.5de34049.js","assets/sortablejs.ef73fc5c.js","assets/picker.f0cb09c5.css","assets/index.0d25a475.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/template/component/upload.vue":()=>l(()=>import("./upload.8b9524a1.js"),["assets/upload.8b9524a1.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.9c616a0c.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/user/setting.vue":()=>l(()=>import("./setting.d9b52d7c.js"),["assets/setting.d9b52d7c.js","assets/index.be5645df.js","assets/@vue.51d7f2d8.js","assets/index.8d99c3e6.css","assets/element-plus.4328d892.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/picker.597494a6.js","assets/index.b940d6e3.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/index.c38e1dd6.js","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/index.f2c7f81b.js","assets/index.bb3c88e6.css","assets/index.9c616a0c.js","assets/index.vue_vue_type_script_setup_true_lang.dc835bba.js","assets/usePaging.2ad8e1e6.js","assets/vue3-video-play.b911321b.js","assets/vue3-video-play.74881f83.css","assets/index.be52e81c.css","assets/vuedraggable.0cb40d3a.js","assets/vue.5de34049.js","assets/sortablejs.ef73fc5c.js","assets/picker.f0cb09c5.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/user_informationg/component/banquetBirthday.vue":()=>l(()=>import("./banquetBirthday.4a89ca8d.js"),["assets/banquetBirthday.4a89ca8d.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/banquetBirthday.a5efd6b9.css"]),"/src/views/user_informationg/component/banquetFullMoon.vue":()=>l(()=>import("./banquetFullMoon.087a55f4.js"),["assets/banquetFullMoon.087a55f4.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/banquetFullMoon.f507e889.css"]),"/src/views/user_informationg/component/banquetFuneral.vue":()=>l(()=>import("./banquetFuneral.7cf4d815.js"),["assets/banquetFuneral.7cf4d815.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/banquetFuneral.c9d3d060.css"]),"/src/views/user_informationg/component/banquetMarry.vue":()=>l(()=>import("./banquetMarry.f6e2a9a1.js"),["assets/banquetMarry.f6e2a9a1.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/banquetMarry.59f41e4c.css"]),"/src/views/user_informationg/component/banquetOther.vue":()=>l(()=>import("./banquetOther.9224a376.js"),["assets/banquetOther.9224a376.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/banquetOther.a725fcc7.css"]),"/src/views/user_informationg/component/breeding.vue":()=>l(()=>import("./breeding.df10d103.js"),["assets/breeding.df10d103.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/breeding.a4e9299c.css"]),"/src/views/user_informationg/component/deepProcessing.vue":()=>l(()=>import("./deepProcessing.66eb2640.js"),["assets/deepProcessing.66eb2640.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/deepProcessing.97a063ac.css"]),"/src/views/user_informationg/component/houseDecoration.vue":()=>l(()=>import("./houseDecoration.d3f002c4.js"),["assets/houseDecoration.d3f002c4.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/houseDecoration.3c271882.css"]),"/src/views/user_informationg/component/houseRenovate.vue":()=>l(()=>import("./houseRenovate.6deede8a.js"),["assets/houseRenovate.6deede8a.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/houseRenovate.70227ad6.css"]),"/src/views/user_informationg/component/houseRepair.vue":()=>l(()=>import("./houseRepair.f318223d.js"),["assets/houseRepair.f318223d.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/houseRepair.3393a738.css"]),"/src/views/user_informationg/component/houseTransaction.vue":()=>l(()=>import("./houseTransaction.8e0d315a.js"),["assets/houseTransaction.8e0d315a.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/houseTransaction.8e3b4247.css"]),"/src/views/user_informationg/component/plant.vue":()=>l(()=>import("./plant.c310a4b1.js"),["assets/plant.c310a4b1.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/plant.b0a87cba.css"]),"/src/views/user_informationg/component/store.vue":()=>l(()=>import("./store.fd0d23f9.js"),["assets/store.fd0d23f9.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/store.d48590b9.css"]),"/src/views/user_informationg/component/thickProcessing.vue":()=>l(()=>import("./thickProcessing.2ca73e55.js"),["assets/thickProcessing.2ca73e55.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/thickProcessing.0da8e53a.css"]),"/src/views/user_informationg/details.vue":()=>l(()=>import("./details.3560c752.js"),["assets/details.3560c752.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/vue-router.9f65afb1.js","assets/store.fd0d23f9.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/store.d48590b9.css","assets/breeding.df10d103.js","assets/breeding.a4e9299c.css","assets/plant.c310a4b1.js","assets/plant.b0a87cba.css","assets/houseTransaction.8e0d315a.js","assets/houseTransaction.8e3b4247.css","assets/houseRenovate.6deede8a.js","assets/houseRenovate.70227ad6.css","assets/houseDecoration.d3f002c4.js","assets/houseDecoration.3c271882.css","assets/houseRepair.f318223d.js","assets/houseRepair.3393a738.css","assets/banquetMarry.f6e2a9a1.js","assets/banquetMarry.59f41e4c.css","assets/banquetOther.9224a376.js","assets/banquetOther.a725fcc7.css","assets/banquetFuneral.7cf4d815.js","assets/banquetFuneral.c9d3d060.css","assets/banquetFullMoon.087a55f4.js","assets/banquetFullMoon.f507e889.css","assets/banquetBirthday.4a89ca8d.js","assets/banquetBirthday.a5efd6b9.css","assets/thickProcessing.2ca73e55.js","assets/thickProcessing.0da8e53a.css","assets/deepProcessing.66eb2640.js","assets/deepProcessing.97a063ac.css","assets/informationg.d3032a30.js","assets/details.784cfc63.css"]),"/src/views/user_informationg/detil.vue":()=>l(()=>import("./detil.dfd0c90d.js"),["assets/detil.dfd0c90d.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/vue-router.9f65afb1.js","assets/informationg.d3032a30.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/detil.9f66ded4.css"]),"/src/views/user_informationg/editCate.vue":()=>l(()=>import("./editCate.036f4298.js"),["assets/editCate.036f4298.js","assets/editCate.vue_vue_type_script_setup_true_name_flowTypeEdit_lang.255a785b.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.b940d6e3.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/examined.594ad8f6.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/user_informationg/index.vue":()=>l(()=>import("./index.b3d80967.js"),["assets/index.b3d80967.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/usePaging.2ad8e1e6.js","assets/useDictOptions.8d37e54b.js","assets/informationg.d3032a30.js","assets/editCate.vue_vue_type_script_setup_true_name_flowTypeEdit_lang.255a785b.js","assets/index.b940d6e3.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/examined.594ad8f6.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/user_menu/edit.vue":()=>l(()=>import("./edit.b35b03ab.js"),["assets/edit.b35b03ab.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.b940d6e3.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/user_menu.aabbc7a8.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/edit.d2670ecb.css"]),"/src/views/user_menu/index.vue":()=>l(()=>import("./index.025b4b64.js"),["assets/index.025b4b64.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/usePaging.2ad8e1e6.js","assets/useDictOptions.8d37e54b.js","assets/user_menu.aabbc7a8.js","assets/lodash.08438971.js","assets/edit.b35b03ab.js","assets/index.b940d6e3.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js","assets/edit.d2670ecb.css"]),"/src/views/user_role/auth.vue":()=>l(()=>import("./auth.50325803.js"),["assets/auth.50325803.js","assets/auth.vue_vue_type_script_setup_true_lang.4521aeca.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.b940d6e3.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/lodash.08438971.js","assets/user_menu.aabbc7a8.js","assets/user_role.813f0de8.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/user_role/edit.vue":()=>l(()=>import("./edit.fd584dc5.js"),["assets/edit.fd584dc5.js","assets/edit.vue_vue_type_script_setup_true_name_userRoleEdit_lang.98d78f95.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.b940d6e3.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/user_role.813f0de8.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/user_role/index.vue":()=>l(()=>import("./index.a66c361d.js"),["assets/index.a66c361d.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/index.vue_vue_type_script_setup_true_lang.f93228b5.js","assets/usePaging.2ad8e1e6.js","assets/useDictOptions.8d37e54b.js","assets/user_role.813f0de8.js","assets/lodash.08438971.js","assets/edit.vue_vue_type_script_setup_true_name_userRoleEdit_lang.98d78f95.js","assets/index.b940d6e3.js","assets/index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js","assets/index.4c8b5536.css","assets/auth.vue_vue_type_script_setup_true_lang.4521aeca.js","assets/user_menu.aabbc7a8.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"]),"/src/views/workbench/index.vue":()=>l(()=>import("./index.ee73c288.js"),["assets/index.ee73c288.js","assets/element-plus.4328d892.js","assets/@vue.51d7f2d8.js","assets/@vueuse.ec90c285.js","assets/@element-plus.a074d1f6.js","assets/lodash-es.29c53eac.js","assets/dayjs.e873ead7.js","assets/@amap.8a62addd.js","assets/async-validator.fb49d0f5.js","assets/@ctrl.82a509e0.js","assets/escape-html.e5dfadb9.js","assets/normalize-wheel-es.8aeb3683.js","assets/element-plus.5529d89e.css","assets/vue-echarts.91588d37.js","assets/resize-detector.4e96b72b.js","assets/echarts.ac57a99a.js","assets/zrender.d54ce080.js","assets/tslib.60310f1a.js","assets/lodash.08438971.js","assets/axios.105476b3.js","assets/vue-router.9f65afb1.js","assets/pinia.56356cb7.js","assets/vue-demi.b3a9cad9.js","assets/css-color-function.7ac6f233.js","assets/color.44a05936.js","assets/clone.0afcbf90.js","assets/color-convert.755d189f.js","assets/color-name.e7a4e1d3.js","assets/color-string.e356f5de.js","assets/balanced-match.d2a36341.js","assets/debug.86067895.js","assets/ms.a9ae1d6d.js","assets/nprogress.f73355d0.js","assets/nprogress.f5128a35.css","assets/vue-clipboard3.dca5bca3.js","assets/clipboard.16e4491b.js","assets/highlight.js.dba6fa1b.js","assets/highlight.5f5db245.css","assets/@highlightjs.40d5feba.js"])});function R4(){return Object.keys(x3).map(a=>a.replace("/src/views/","").replace(".vue",""))}function n1(a,o=!0){return a.map(e=>{const i=y6(e,o);return e.children!=null&&e.children&&e.children.length&&(i.children=n1(e.children,!1)),i})}function y6(a,o){const e={path:X(a.paths)?a.paths:o?`/${a.paths}`:a.paths,name:Symbol(a.paths),meta:{hidden:!a.is_show,keepAlive:!!a.is_cache,title:a.name,perms:a.perms,query:a.params,icon:a.icon,type:a.type,activeMenu:a.selected}};switch(a.type){case d3.CATALOGUE:e.component=o?O3:w3,a.children||(e.component=w3);break;case d3.MENU:e.component=g6(a.component);break}return e}function g6(a){try{const o=Object.keys(x3).find(e=>e.includes(`${a}.vue`));if(o)return x3[o];throw Error(`\u627E\u4E0D\u5230\u7EC4\u4EF6${a}\uFF0C\u8BF7\u786E\u4FDD\u7EC4\u4EF6\u8DEF\u5F84\u6B63\u786E`)}catch(o){return console.error(o),w3}}function r1(a){var o,e;for(const i of a){if(((o=i.meta)==null?void 0:o.type)==d3.MENU&&!((e=i.meta)!=null&&e.hidden)&&!X(i.path))return i.name;if(i.children){const c=r1(i.children);if(c)return c}}}function P4(a){var e;return((e=(H3()||L).getRoutes().find(i=>{var c;return((c=i.meta)==null?void 0:c.perms)==a}))==null?void 0:e.path)||""}function w6(){L.removeRoute(B3);const{routes:a}=$();a.forEach(o=>{const e=o.name;e&&L.hasRoute(e)&&L.removeRoute(e)})}const L=Q1({history:a0("/admin/"),routes:b6});function u1(){return P.get(T3)}function h3(){const a=$(),o=t3();a.resetState(),o.resetState(),P.remove(T3),w6()}const A6={requestInterceptorsHook(a){var t;G.start();const{withToken:o,isParamsToData:e}=a.requestOptions,i=a.params||{},c=a.headers||{};if(o){const s=u1();c.token=s}return e&&!Reflect.has(a,"data")&&((t=a.method)==null?void 0:t.toUpperCase())===a3.POST&&(a.data=i,a.params={}),a.headers=c,a},requestInterceptorsCatchHook(a){return G.done(),a},async responseInterceptorsHook(a){G.done();const{isTransformResponse:o,isReturnDefaultResponse:e}=a.config.requestOptions;if(e)return a;if(!o)return a.data;const{code:i,data:c,show:t,msg:s}=a.data;switch(i){case Q.SUCCESS:return t&&s&&U.msgSuccess(s),c;case Q.FAIL:return t&&s&&U.msgError(s),Promise.reject(c);case Q.LOGIN_FAILURE:return h3(),L.push(E.LOGIN),Promise.reject();case Q.OPEN_NEW_PAGE:return window.location.href=c.url,c;default:return c}},responseInterceptorsCatchHook(a){return G.done(),a.code!==r3.exports.AxiosError.ERR_CANCELED&&(a.message.indexOf("timeout")!==-1?U.msgError("\u8BF7\u6C42\u8D85\u65F6!!!"):a.message&&U.msgError(a.message)),Promise.reject(a)}},f6={timeout:R.timeout,baseURL:R.baseUrl,headers:{"Content-Type":l1.JSON,version:R.version},axiosHooks:A6,requestOptions:{isParamsToData:!0,isReturnDefaultResponse:!1,isTransformResponse:!0,urlPrefix:R.urlPrefix,ignoreCancelToken:!1,withToken:!0,isOpenRetry:!0,retryCount:2}};function V6(a){return new T0(T.exports.merge(f6,a||{}))}const x6=V6(),j=x6;function E6(){return j.get({url:"/config/getConfig"})}function C4(){return j.get({url:"/workbench/index"})}function S4(a){return j.get({url:"/config/dict",params:a})}const N=_3({id:"app",state:()=>({config:{},isMobile:!0,isCollapsed:!1,isRouteShow:!0}),actions:{getImageUrl(a){return a?`${this.config.oss_domain}${a}`:""},getConfig(){return new Promise((a,o)=>{E6().then(e=>{this.config=e,a(e)}).catch(e=>{o(e)})})},setMobile(a){this.isMobile=a},toggleCollapsed(a){this.isCollapsed=a!=null?a:!this.isCollapsed},refreshView(){this.isRouteShow=!1,x1(()=>{this.isRouteShow=!0})}}}),M6=g({__name:"App",setup(a){const o=N(),e=C(),i={zIndex:3e3,locale:W1},c=a1();E1(async()=>{e.setTheme(c.value);const s=await o.getConfig();let n=document.querySelector('link[rel="icon"]');if(n){n.href=s.web_favicon;return}n=document.createElement("link"),n.rel="icon",n.href=s.web_favicon,document.head.appendChild(n)});const{width:t}=K1();return Z3(t,J1(s=>{s>f3.SM?(o.setMobile(!1),o.toggleCollapsed(!1)):(o.setMobile(!0),o.toggleCollapsed(!0)),s{const h=l3("router-view"),d=Y1;return _(),A(d,{locale:i.locale,"z-index":i.zIndex},{default:p(()=>[u(h)]),_:1},8,["locale","z-index"])}}}),y3="data-clipboard-text",L6={mounted:(a,o)=>{a.setAttribute(y3,o.value);const{toClipboard:e}=l0();a.onclick=()=>{e(a.getAttribute(y3)).then(()=>{U.msgSuccess("\u590D\u5236\u6210\u529F")}).catch(()=>{U.msgError("\u590D\u5236\u5931\u8D25")})}},updated:(a,o)=>{a.setAttribute(y3,o.value)}},H6=Object.freeze(Object.defineProperty({__proto__:null,default:L6},Symbol.toStringTag,{value:"Module"})),T6={mounted:(a,o)=>{const{value:e}=o,c=$().perms,t="*";if(Array.isArray(e))e.length>0&&(c.some(n=>t==n||e.includes(n))||a.parentNode&&a.parentNode.removeChild(a));else throw new Error(`like v-perms="['auth.menu/edit']"`)}},O6=Object.freeze(Object.defineProperty({__proto__:null,default:T6},Symbol.toStringTag,{value:"Module"}));i0([c0,t0,s0,n0,r0,u0,m0,d0,h0,_0,v0,p0,z0,b0,y0,g0,w0,A0,f0,V0,x0,E0,M0,L0]);const B6=Object.freeze(Object.defineProperty({__proto__:null},Symbol.toStringTag,{value:"Module"})),I6=a=>{for(const[o,e]of Object.entries(e1))a.component(o,e)},D6=Object.freeze(Object.defineProperty({__proto__:null,default:I6},Symbol.toStringTag,{value:"Module"})),R6=a=>{a.use(H0)},P6=Object.freeze(Object.defineProperty({__proto__:null,default:R6},Symbol.toStringTag,{value:"Module"})),C6=o0(),S6=a=>{a.use(C6)},k6=Object.freeze(Object.defineProperty({__proto__:null,default:S6},Symbol.toStringTag,{value:"Module"})),j6=a=>{a.use(L)},N6=Object.freeze(Object.defineProperty({__proto__:null,default:j6},Symbol.toStringTag,{value:"Module"})),q3=Object.assign({"./directives/copy.ts":H6,"./directives/perms.ts":O6,"./plugins/echart.ts":B6,"./plugins/element.ts":D6,"./plugins/hljs.ts":P6,"./plugins/pinia.ts":k6,"./plugins/router.ts":N6});function q6(a){Object.keys(q3).forEach(o=>{const e=o.replace(/(.*\/)*([^.]+).*/gi,"$2"),i=o.replace(/^\.\/([\w-]+).*/gi,"$1"),c=q3[o];if(c.default)switch(i){case"directives":a.directive(e,c.default);break;case"plugins":typeof c.default=="function"&&c.default(a);break}})}const F6={install:q6};G.configure({showSpinner:!1});const g3=E.LOGIN,G6=E.INDEX,U6=[E.LOGIN,E.ERROR_403];L.beforeEach(async(a,o,e)=>{var t;G.start(),document.title=(t=a.meta.title)!=null?t:R.title;const i=$(),c=t3();if(U6.includes(a.path))e();else if(i.token)if(Object.keys(i.userInfo).length!==0)a.path===g3?e({path:G6}):e();else try{await i.getUserInfo();const n=i.routes,h=r1(n);if(!h){h3(),e(E.ERROR_403);return}c.setRouteName(h),N3.redirect={name:h},L.addRoute(N3),n.forEach(d=>{if(!X(d.path)){if(!d.children){L.addRoute(B3,d);return}L.addRoute(d)}}),e({...a,replace:!0})}catch{h3(),e({path:g3,query:{redirect:a.fullPath}})}else e({path:g3,query:{redirect:a.fullPath}})});L.afterEach(()=>{G.done()});if(typeof window<"u"){let a=function(){var o=document.body,e=document.getElementById("__svg__icons__dom__");e||(e=document.createElementNS("http://www.w3.org/2000/svg","svg"),e.style.position="absolute",e.style.width="0",e.style.height="0",e.id="__svg__icons__dom__",e.setAttribute("xmlns","http://www.w3.org/2000/svg"),e.setAttribute("xmlns:link","http://www.w3.org/1999/xlink")),e.innerHTML='',o.insertBefore(e,o.lastChild)};document.readyState==="loading"?document.addEventListener("DOMContentLoaded",a):a()}window._AMapSecurityConfig={securityJsCode:"e8b6cb44e8e431d68052c8e10db99264"};const v3=M1(M6);v3.use(F6);v3.provide("base_url",R.baseUrl+R.urlPrefix);v3.mount("#app");v3.config.warnHandler=()=>null;export{O0 as A,d3 as M,E as P,Q as R,K0 as _,$ as a,S as b,P as c,B as d,X2 as e,U as f,S4 as g,o3 as h,W0 as i,R as j,P4 as k,C as l,k3 as m,B4 as n,R4 as o,T4 as p,I4 as q,j as r,D4 as s,H4 as t,N as u,O4 as v,L4 as w,M4 as x,C4 as y}; diff --git a/public/admin/assets/index.ed883b72.js b/public/admin/assets/index.ed883b72.js new file mode 100644 index 000000000..e3c6f04e3 --- /dev/null +++ b/public/admin/assets/index.ed883b72.js @@ -0,0 +1 @@ +import{a6 as x,w as D,O as V,P as T,I as L,Q as N}from"./element-plus.4328d892.js";import{_ as P}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{k as F,f as R,b as $}from"./index.aa9bb752.js";import{g as Q,h as U}from"./system.02fce13c.js";import{u as j}from"./usePaging.2ad8e1e6.js";import{d as C,a4 as q,af as A,o as i,c as I,U as t,L as e,M as p,K as r,u as n,R as l,Q as _,a as y,k as K}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const M={class:"flex"},O={class:"flex justify-end mt-4"},z=C({name:"scheduledTask"}),Lt=C({...z,setup(G){const{pager:s,getLists:m}=j({fetchFun:U,params:{}}),g=async f=>{await R.confirm("\u786E\u5B9A\u8981\u5220\u9664\uFF1F"),await Q({id:f}),m()};return m(),(f,b)=>{const k=$,u=D,h=q("router-link"),o=V,d=x,w=T,E=P,v=L,c=A("perms"),B=N;return i(),I("div",null,[t(v,{shadow:"never",class:"!border-none"},{default:e(()=>[p((i(),r(h,{to:n(F)("crontab.crontab/add:edit")},{default:e(()=>[t(u,{type:"primary",class:"mb-[16px]"},{icon:e(()=>[t(k,{name:"el-icon-Plus"})]),default:e(()=>[l(" \u65B0\u589E ")]),_:1})]),_:1},8,["to"])),[[c,["crontab.crontab/add","crontab.crontab/add:edit"]]]),p((i(),r(w,{ref:"paneTable",class:"m-t-24",data:n(s).lists,style:{width:"100%"}},{default:e(()=>[t(o,{prop:"name",label:"\u540D\u79F0","min-width":"120"}),t(o,{prop:"type_desc",label:"\u7C7B\u578B","min-width":"100"}),t(o,{prop:"command",label:"\u547D\u4EE4","min-width":"100"}),t(o,{prop:"params",label:"\u53C2\u6570","min-width":"80"}),t(o,{prop:"expression",label:"\u89C4\u5219","min-width":"100"}),t(o,{prop:"status",label:"\u72B6\u6001","min-width":"100"},{default:e(({row:a})=>[a.status==1?(i(),r(d,{key:0,type:"success"},{default:e(()=>[l("\u8FD0\u884C\u4E2D")]),_:1})):_("",!0),a.status==2?(i(),r(d,{key:1,type:"info"},{default:e(()=>[l("\u5DF2\u505C\u6B62")]),_:1})):_("",!0),a.status==3?(i(),r(d,{key:2,type:"danger"},{default:e(()=>[l("\u9519\u8BEF")]),_:1})):_("",!0)]),_:1}),t(o,{prop:"error",label:"\u9519\u8BEF\u539F\u56E0","min-width":"120"}),t(o,{prop:"last_time",label:"\u6700\u540E\u6267\u884C\u65F6\u95F4",width:"180"}),t(o,{prop:"time",label:"\u65F6\u957F","min-width":"100"}),t(o,{prop:"max_time",label:"\u6700\u5927\u65F6\u957F","min-width":"100"}),t(o,{label:"\u64CD\u4F5C",width:"120",fixed:"right"},{default:e(({row:a})=>[y("div",M,[t(u,{type:"primary",link:""},{default:e(()=>[p((i(),r(h,{to:{path:n(F)("crontab.crontab/add:edit"),query:{id:a.id}}},{default:e(()=>[t(u,{type:"primary",link:""},{default:e(()=>[l(" \u7F16\u8F91 ")]),_:1})]),_:2},1032,["to"])),[[c,["crontab.crontab/edit","crontab.crontab/add:edit"]]])]),_:2},1024),p((i(),r(u,{type:"danger",link:"",onClick:H=>g(a.id)},{default:e(()=>[l(" \u5220\u9664 ")]),_:2},1032,["onClick"])),[[c,["crontab.crontab/delete"]]])])]),_:1})]),_:1},8,["data"])),[[B,n(s).loading]]),y("div",O,[t(E,{modelValue:n(s),"onUpdate:modelValue":b[0]||(b[0]=a=>K(s)?s.value=a:null),onChange:n(m)},null,8,["modelValue","onChange"])])]),_:1})])}}});export{Lt as default}; diff --git a/public/admin/assets/index.ee70975b.js b/public/admin/assets/index.ee70975b.js new file mode 100644 index 000000000..c7bf05ce3 --- /dev/null +++ b/public/admin/assets/index.ee70975b.js @@ -0,0 +1 @@ +import{a6 as A,B as I,C as M,M as O,N as Q,w as q,D as G,I as H,O as J,P as W,Q as X}from"./element-plus.4328d892.js";import{_ as Y}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{f as Z,b as ee}from"./index.37f7aea6.js";import{_ as te}from"./index.vue_vue_type_script_setup_true_lang.7ac7ce7d.js";import{d as h,s as oe,r as ae,$ as le,af as se,o as r,c as ne,U as e,L as o,u as t,a8 as g,R as m,a as k,M as v,K as c,S as ue,k as ie,Q as re,n as D}from"./@vue.51d7f2d8.js";import{c as V,d as me}from"./post.34f40c78.js";import{u as pe}from"./usePaging.2ad8e1e6.js";import{_ as de}from"./edit.vue_vue_type_script_setup_true_lang.acc86aef.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.5759a1a6.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";const ce={class:"post-lists"},_e={class:"flex justify-end mt-4"},fe=h({name:"post"}),lt=h({...fe,setup(be){const _=oe(),f=ae(!1),s=le({code:"",name:"",status:""}),{pager:i,getLists:b,resetPage:F,resetParams:B}=pe({fetchFun:V,params:s}),x=async()=>{var n;f.value=!0,await D(),(n=_.value)==null||n.open("add")},$=async n=>{var a,p;f.value=!0,await D(),(a=_.value)==null||a.open("edit"),(p=_.value)==null||p.getDetail(n)},j=async n=>{await Z.confirm("\u786E\u5B9A\u8981\u5220\u9664\uFF1F"),await me({id:n}),b()};return b(),(n,a)=>{const p=I,C=M,w=O,K=Q,d=q,P=te,R=G,E=H,N=ee,u=J,S=A,T=W,U=Y,y=se("perms"),z=X;return r(),ne("div",ce,[e(E,{class:"!border-none",shadow:"never"},{default:o(()=>[e(R,{ref:"formRef",class:"mb-[-16px]",model:t(s),inline:!0},{default:o(()=>[e(C,{label:"\u5C97\u4F4D\u7F16\u7801"},{default:o(()=>[e(p,{class:"w-[280px]",modelValue:t(s).code,"onUpdate:modelValue":a[0]||(a[0]=l=>t(s).code=l),clearable:"",onKeyup:g(t(F),["enter"])},null,8,["modelValue","onKeyup"])]),_:1}),e(C,{label:"\u5C97\u4F4D\u540D\u79F0"},{default:o(()=>[e(p,{class:"w-[280px]",modelValue:t(s).name,"onUpdate:modelValue":a[1]||(a[1]=l=>t(s).name=l),clearable:"",onKeyup:g(t(F),["enter"])},null,8,["modelValue","onKeyup"])]),_:1}),e(C,{label:"\u5C97\u4F4D\u72B6\u6001"},{default:o(()=>[e(K,{class:"w-[280px]",modelValue:t(s).status,"onUpdate:modelValue":a[2]||(a[2]=l=>t(s).status=l)},{default:o(()=>[e(w,{label:"\u5168\u90E8",value:""}),e(w,{label:"\u6B63\u5E38",value:1}),e(w,{label:"\u505C\u7528",value:0})]),_:1},8,["modelValue"])]),_:1}),e(C,null,{default:o(()=>[e(d,{type:"primary",onClick:t(F)},{default:o(()=>[m("\u67E5\u8BE2")]),_:1},8,["onClick"]),e(d,{onClick:t(B)},{default:o(()=>[m("\u91CD\u7F6E")]),_:1},8,["onClick"]),e(P,{class:"ml-2.5","fetch-fun":t(V),params:t(s),"page-size":t(i).size},null,8,["fetch-fun","params","page-size"])]),_:1})]),_:1},8,["model"])]),_:1}),e(E,{class:"!border-none mt-4",shadow:"never"},{default:o(()=>[k("div",null,[v((r(),c(d,{type:"primary",onClick:a[3]||(a[3]=l=>x())},{icon:o(()=>[e(N,{name:"el-icon-Plus"})]),default:o(()=>[m(" \u65B0\u589E ")]),_:1})),[[y,["dept.jobs/add"]]])]),v((r(),c(T,{class:"mt-4",size:"large",data:t(i).lists},{default:o(()=>[e(u,{label:"\u5C97\u4F4D\u7F16\u7801",prop:"code","min-width":"100"}),e(u,{label:"\u5C97\u4F4D\u540D\u79F0",prop:"name","min-width":"100"}),e(u,{label:"\u6392\u5E8F",prop:"sort","min-width":"100"}),e(u,{label:"\u5907\u6CE8",prop:"remark","min-width":"100","show-overflow-tooltip":""}),e(u,{label:"\u6DFB\u52A0\u65F6\u95F4",prop:"create_time","min-width":"180"}),e(u,{label:"\u72B6\u6001",prop:"status","min-width":"100"},{default:o(({row:l})=>[e(S,{class:"ml-2",type:l.status?"":"danger"},{default:o(()=>[m(ue(l.status_desc),1)]),_:2},1032,["type"])]),_:1}),e(u,{label:"\u64CD\u4F5C",width:"120",fixed:"right"},{default:o(({row:l})=>[v((r(),c(d,{type:"primary",link:"",onClick:L=>$(l)},{default:o(()=>[m(" \u7F16\u8F91 ")]),_:2},1032,["onClick"])),[[y,["dept.jobs/edit"]]]),v((r(),c(d,{type:"danger",link:"",onClick:L=>j(l.id)},{default:o(()=>[m(" \u5220\u9664 ")]),_:2},1032,["onClick"])),[[y,["dept.jobs/delete"]]])]),_:1})]),_:1},8,["data"])),[[z,t(i).loading]]),k("div",_e,[e(U,{modelValue:t(i),"onUpdate:modelValue":a[4]||(a[4]=l=>ie(i)?i.value=l:null),onChange:t(b)},null,8,["modelValue","onChange"])])]),_:1}),t(f)?(r(),c(de,{key:0,ref_key:"editRef",ref:_,onSuccess:t(b),onClose:a[5]||(a[5]=l=>f.value=!1)},null,8,["onSuccess"])):re("",!0)])}}});export{lt as default}; diff --git a/public/admin/assets/index.ee73c288.js b/public/admin/assets/index.ee73c288.js new file mode 100644 index 000000000..5b74ab88a --- /dev/null +++ b/public/admin/assets/index.ee73c288.js @@ -0,0 +1 @@ +import{y,_ as g}from"./index.ed71ac09.js";import{w as B,I as b}from"./element-plus.4328d892.js";import{C as E}from"./vue-echarts.91588d37.js";import{d as f,$ as C,j as A,a4 as k,o as l,c as u,a as t,U as a,L as i,S as o,u as e,R as h,T as v,a7 as x,O as D}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./lodash.08438971.js";import"./@amap.8a62addd.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./@element-plus.a074d1f6.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./resize-detector.4e96b72b.js";const O={class:"workbench"},z={class:"lg:flex"},N=t("span",{class:"card-title"},"\u7248\u672C\u4FE1\u606F",-1),S={class:"flex leading-9"},V=t("div",{class:"w-20"},"\u5F53\u524D\u7248\u672C",-1),L={class:"flex leading-9"},T=t("div",{class:"w-20"},"\u57FA\u4E8E\u6846\u67B6",-1),j={class:"flex leading-9"},G=t("div",{class:"w-20"},"\u83B7\u53D6\u6E20\u9053",-1),I=["href"],M=["href"],R=t("span",{class:"card-title"},"\u4ECA\u65E5\u6570\u636E",-1),U={class:"text-tx-secondary text-xs ml-4"},W={class:"flex flex-wrap"},$={class:"w-1/2 md:w-1/4"},q=t("div",{class:"leading-10"},"\u8BBF\u95EE\u91CF(\u4EBA)",-1),H={class:"text-6xl"},J={class:"text-tx-secondary text-xs"},K={class:"w-1/2 md:w-1/4"},P=t("div",{class:"leading-10"},"\u9500\u552E\u989D(\u5143)",-1),Q={class:"text-6xl"},X={class:"text-tx-secondary text-xs"},Y={class:"w-1/2 md:w-1/4"},Z=t("div",{class:"leading-10"},"\u8BA2\u5355\u91CF(\u7B14)",-1),tt={class:"text-6xl"},st={class:"text-tx-secondary text-xs"},et={class:"w-1/2 md:w-1/4"},ot=t("div",{class:"leading-10"},"\u65B0\u589E\u7528\u6237",-1),it={class:"text-6xl"},at={class:"text-tx-secondary text-xs"},nt={class:"function mb-4"},rt=t("span",null,"\u5E38\u7528\u529F\u80FD",-1),dt={class:"flex flex-wrap"},lt={class:"mt-2"},ut={class:"md:flex"},ct=t("span",null,"\u8BBF\u95EE\u91CF\u8D8B\u52BF\u56FE",-1),_t=t("span",null,"\u670D\u52A1\u652F\u6301",-1),pt={class:"ml-2"},mt={class:"text-tx-regular text-xs mt-4"},ht=f({name:"workbench"}),Zt=f({...ht,setup(vt){const s=C({version:{version:"",website:"",based:"",channel:{gitee:"",website:""}},support:[],today:{},menu:[],visitor:[],article:[],visitorOption:{xAxis:{type:"category",data:[0]},yAxis:{type:"value"},legend:{data:["\u8BBF\u95EE\u91CF"]},itemStyle:{color:"red"},tooltip:{trigger:"axis"},series:[{name:"\u8BBF\u95EE\u91CF",data:[0],type:"line",smooth:!0}]}}),F=()=>{y().then(n=>{s.version=n.version,s.today=n.today,s.menu=n.menu,s.visitor=n.visitor,s.support=n.support,s.visitorOption.xAxis.data=[],s.visitorOption.series[0].data=[],n.visitor.date.reverse().forEach(c=>{s.visitorOption.xAxis.data.push(c)}),n.visitor.list[0].data.forEach(c=>{s.visitorOption.series[0].data.push(c)})}).catch(n=>{console.log("err",n)})};return A(()=>{F()}),(n,c)=>{const _=B,d=b,p=g,w=k("router-link");return l(),u("div",O,[t("div",z,[a(d,{class:"!border-none mb-4 lg:mr-4 lg:w-[350px]",shadow:"never"},{header:i(()=>[N]),default:i(()=>[t("div",null,[t("div",S,[V,t("span",null,o(e(s).version.version),1)]),t("div",L,[T,t("span",null,o(e(s).version.based),1)]),t("div",j,[G,t("div",null,[t("a",{href:e(s).version.channel.website,target:"_blank"},[a(_,{type:"success",size:"small"},{default:i(()=>[h("\u5B98\u7F51")]),_:1})],8,I),t("a",{class:"ml-3",href:e(s).version.channel.gitee,target:"_blank"},[a(_,{type:"danger",size:"small"},{default:i(()=>[h("Gitee")]),_:1})],8,M)])])])]),_:1}),a(d,{class:"!border-none mb-4 flex-1",shadow:"never"},{header:i(()=>[t("div",null,[R,t("span",U," \u66F4\u65B0\u65F6\u95F4\uFF1A"+o(e(s).today.time),1)])]),default:i(()=>[t("div",W,[t("div",$,[q,t("div",H,o(e(s).today.today_visitor),1),t("div",J," \u603B\u8BBF\u95EE\u91CF\uFF1A"+o(e(s).today.total_visitor),1)]),t("div",K,[P,t("div",Q,o(e(s).today.today_sales),1),t("div",X," \u603B\u9500\u552E\u989D\uFF1A"+o(e(s).today.total_sales),1)]),t("div",Y,[Z,t("div",tt,o(e(s).today.order_num),1),t("div",st," \u603B\u8BA2\u5355\u91CF\uFF1A"+o(e(s).today.order_sum),1)]),t("div",et,[ot,t("div",it,o(e(s).today.today_new_user),1),t("div",at," \u603B\u8BBF\u7528\u6237\uFF1A"+o(e(s).today.total_new_user),1)])])]),_:1})]),t("div",nt,[a(d,{class:"flex-1 !border-none",shadow:"never"},{header:i(()=>[rt]),default:i(()=>[t("div",dt,[(l(!0),u(v,null,x(e(s).menu,r=>(l(),u("div",{class:"md:w-[12.5%] w-1/4 flex flex-col items-center",key:r},[a(w,{to:r.url,class:"mb-3 flex flex-col items-center"},{default:i(()=>[a(p,{width:"40px",height:"40px",src:r==null?void 0:r.image},null,8,["src"]),t("div",lt,o(r.name),1)]),_:2},1032,["to"])]))),128))])]),_:1})]),t("div",ut,[a(d,{class:"flex-1 !border-none md:mr-4 mb-4",shadow:"never"},{header:i(()=>[ct]),default:i(()=>[t("div",null,[a(e(E),{style:{height:"350px"},option:e(s).visitorOption,autoresize:!0},null,8,["option"])])]),_:1}),a(d,{class:"!border-none mb-4",shadow:"never"},{header:i(()=>[_t]),default:i(()=>[t("div",null,[(l(!0),u(v,null,x(e(s).support,(r,m)=>(l(),u("div",{key:m},[t("div",{class:D(["flex items-center pb-10 pt-10",{"border-b border-br":m==0}])},[a(p,{width:120,height:120,class:"flex-none",src:r.image},null,8,["src"]),t("div",pt,[t("div",null,o(r.title),1),t("div",mt,o(r.desc),1)])],2)]))),128))])]),_:1})])])}}});export{Zt as default}; diff --git a/public/admin/assets/index.efba88ae.js b/public/admin/assets/index.efba88ae.js new file mode 100644 index 000000000..9072a1368 --- /dev/null +++ b/public/admin/assets/index.efba88ae.js @@ -0,0 +1 @@ +import{k as R,B as Te,C as $e,M as Se,N as qe,w as Re,D as Me,I as Ne,O as je,P as Ge,a1 as Oe,a2 as Qe,L as Ke,Q as He}from"./element-plus.4328d892.js";import{_ as Je}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{a as We,k as D,f as ie,b as Xe}from"./index.37f7aea6.js";import{d as me,r as _,$ as pe,a4 as Ye,af as Ze,o as r,c as B,U as e,L as u,u as t,M as C,V as Y,T as Z,a7 as de,K as E,R as i,a as c,Q as M,S as eu,k as g}from"./@vue.51d7f2d8.js";import{u as uu,a as au}from"./vue-router.9f65afb1.js";import{u as tu}from"./usePaging.2ad8e1e6.js";import{u as lu}from"./useDictOptions.a45fc8ac.js";import{o as ou,i as nu,f as su,s as ru,h as iu,j as pu,a as du,c as cu,k as mu}from"./company.d1e8fc82.js";import"./lodash.08438971.js";import{d as ce}from"./dict.58face92.js";import{d as _u}from"./dict.070e6995.js";import{_ as yu}from"./dialog_index.vue_vue_type_script_setup_true_name_companyLists_lang.383436e1.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./axios.105476b3.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const fu={class:"mt-4"},Fu={key:0,style:{color:"#67c23a"}},Eu={key:3,style:{color:"#fe0000"}},Bu={style:{display:"flex","flex-wrap":"wrap"}},Cu={class:"flex mt-4 justify-end"},vu=c("h1",null,"\u91CD\u8981\u63D0\u9192",-1),bu=c("div",{class:"content"},"\u8BF7\u786E\u8BA4\u4FE1\u606F\u662F\u5426\u6709\u8BEF",-1),hu={class:"btn_menu"},Au=c("h1",null,"\u91CD\u8981\u63D0\u9192",-1),wu={key:0,class:"content"},Du={key:1,class:"content"},gu={class:"btn_menu"},ku=c("h1",null,"\u4F01\u4E1A\u8BA4\u8BC1\u63D0\u9192",-1),Vu=c("div",{style:{"font-size":"18px","font-weight":"bold","padding-bottom":"10px"}}," \u4F01\u4E1A\u8BA4\u8BC1\u524D\uFF0C\u8BF7\u68C0\u67E5\u4EE5\u4E0B\u91CD\u8981\u4FE1\u606F\u662F\u5426\u6B63\u786E ",-1),xu={class:"btn_menu"},Lu=c("h1",null,"\u4EBA\u8138\u91C7\u96C6\u63D0\u9192",-1),Pu=c("div",{style:{"font-size":"18px","font-weight":"bold","padding-bottom":"10px"}}," \u4EBA\u8138\u91C7\u96C6\u524D\uFF0C\u8BF7\u68C0\u67E5\u4EE5\u4E0B\u91CD\u8981\u4FE1\u606F\u662F\u5426\u6B63\u786E ",-1),Uu={class:"btn_menu"},zu=me({name:"companyLists"}),Aa=me({...zu,setup(Iu){var ne;const k=_(!1),_e=o=>{d.value.party_a=o.id,d.value.party_a_name=o.company_name,k.value=!1},U=We();console.log(U.userInfo.company_id);const ee=uu(),ye=au(),z=_(!0),I=_(!1),N=_(!1),T=()=>{I.value=!1,N.value=!1},ue=_(!1),V=_(!1),j=()=>{V.value=!1,ue.value=!1},$=_(""),h=_(!1),ae=()=>{h.value=!1},S=_(!1),G=()=>{S.value=!1},fe=async o=>{await ou({id:o}),G()},te=()=>{ye.push({path:D("company/add:edit"),query:{id:y.value.id,edit:!0}})},d=_({party_a:"",party_a_name:"",party_b:"",party_b_name:"",contract_type:"",contract_no:""}),Fe=_([]),le=_([]),Ee=async o=>{const l=await du({id:o});cu().then(p=>{Fe.value=p}),ce({type_id:7}).then(p=>{le.value=p.lists.filter(n=>_u.find(A=>A==n.id))}),d.value.party_b=l.id,d.value.party_b_name=l.company_name,U.userInfo.company.id?(d.value.party_a=U.userInfo.company.id,d.value.party_a_name=U.userInfo.company.company_name):(d.value.party_a="",d.value.party_a_name="")},Be=o=>{$.value=o.id,Ee(o.id),Ce()},Ce=()=>{ue.value=!0,V.value=!0},ve=async()=>{if(!d.value.party_a)return R.error("\u7532\u65B9\u4E0D\u80FD\u4E3A\u7A7A");if(!d.value.contract_type)return R.error("\u5408\u540C\u7C7B\u578B\u4E0D\u80FD\u4E3A\u7A7A");await nu({id:$.value,...d.value}),b(),j()},be=async()=>{await su({id:$.value}),b(),T()},he=async()=>{await ru({id:$.value}),b(),T()},m=pe({company_name:"",area:"",street:"",company_type:"",area_manager:"",is_contract:""});ee.query.company_type&&(z.value=!1,m.company_type=((ne=ee.query.company_type)==null?void 0:ne.toString())||"");const O=pe({dictTypeLists:[]});(async()=>{const o=await ce({type_id:6});O.dictTypeLists=o.lists})();const Ae=_([]),we=o=>{Ae.value=o.map(({id:l})=>l)};lu("");const{pager:x,getLists:b,resetParams:De,resetPage:ge}=tu({fetchFun:mu,params:m}),ke=async o=>{await ie.confirm("\u786E\u5B9A\u8981\u5220\u9664\uFF1F"),await iu({id:o}),b()},y=_(""),Q=_("\u4F01\u4E1A\u8BA4\u8BC1");let K,q=10;const Ve=o=>{if(K)return R.warning("\u8BA4\u8BC1\u4E2D,\u8BF7\u8010\u5FC3\u7B49\u5F85");y.value=o,h.value=!0},xe=async o=>{await ie.confirm("\u786E\u5B9A\u8981\u8BA4\u8BC1\uFF1F"),await pu({id:o}),K=setInterval(()=>{Q.value=q+"\u79D2\u540E\u5237\u65B0",q==0?(clearInterval(K),Q.value="\u4F01\u4E1A\u8BA4\u8BC1",q=10,b()):q--},1e3),b(),h.value=!1},oe=o=>{R.warning(o==1?"\u8BF7\u7B49\u5F85\u5408\u540C\u5BA1\u6838\u5B8C\u6210!":"\u5408\u540C\u53CC\u65B9\u6B63\u5728\u7B7E\u7EA6!")};return b(),(o,l)=>{const p=Te,n=$e,A=Se,H=qe,s=Re,J=Me,W=Ne,Le=Xe,L=Ye("router-link"),F=je,Pe=Ge,Ue=Je,f=Oe,X=Qe,P=Ke,w=Ze("perms"),ze=He;return r(),B("div",null,[e(W,{class:"!border-none mb-4",shadow:"never"},{default:u(()=>[e(J,{class:"mb-[-16px] formdata",model:t(m),inline:""},{default:u(()=>[e(n,{label:"\u516C\u53F8\u540D\u79F0",prop:"company_name"},{default:u(()=>[e(p,{class:"w-[280px]",modelValue:t(m).company_name,"onUpdate:modelValue":l[0]||(l[0]=a=>t(m).company_name=a),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u516C\u53F8\u540D\u79F0"},null,8,["modelValue"])]),_:1}),C(e(n,{label:"\u533A",prop:"area"},{default:u(()=>[e(p,{class:"w-[280px]",modelValue:t(m).area,"onUpdate:modelValue":l[1]||(l[1]=a=>t(m).area=a),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u533A"},null,8,["modelValue"])]),_:1},512),[[Y,t(z)]]),C(e(n,{label:"\u9547",prop:"street"},{default:u(()=>[e(p,{class:"w-[280px]",modelValue:t(m).street,"onUpdate:modelValue":l[2]||(l[2]=a=>t(m).street=a),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u9547"},null,8,["modelValue"])]),_:1},512),[[Y,t(z)]]),C(e(n,{label:"\u516C\u53F8\u7C7B\u578B",prop:"company_type"},{default:u(()=>[e(H,{modelValue:t(m).company_type,"onUpdate:modelValue":l[3]||(l[3]=a=>t(m).company_type=a),placeholder:"\u8BF7\u9009\u62E9\u516C\u53F8\u7C7B\u578B",clearable:"",class:"w-[280px]"},{default:u(()=>[(r(!0),B(Z,null,de(t(O).dictTypeLists,(a,v)=>(r(),E(A,{key:v,label:a.name,value:a.id},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1},512),[[Y,t(z)]]),e(n,{label:"\u7247\u533A\u7ECF\u7406",prop:"area_manager"},{default:u(()=>[e(p,{class:"w-[280px]",modelValue:t(m).area_manager,"onUpdate:modelValue":l[4]||(l[4]=a=>t(m).area_manager=a),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u7247\u533A\u7ECF\u7406"},null,8,["modelValue"])]),_:1}),e(n,{label:"\u662F\u5426\u7B7E\u7EA6",prop:"is_contract"},{default:u(()=>[e(H,{modelValue:t(m).is_contract,"onUpdate:modelValue":l[5]||(l[5]=a=>t(m).is_contract=a),placeholder:"\u662F\u5426\u7B7E\u7EA6",clearable:"",class:"w-[240px]"},{default:u(()=>[e(A,{label:"\u5DF2\u7B7E\u7EA6",value:"1"}),e(A,{label:"\u672A\u7B7E\u7EA6",value:"0"})]),_:1},8,["modelValue"])]),_:1}),e(n,null,{default:u(()=>[e(s,{type:"primary",onClick:t(ge)},{default:u(()=>[i("\u67E5\u8BE2")]),_:1},8,["onClick"]),e(s,{onClick:t(De)},{default:u(()=>[i("\u91CD\u7F6E")]),_:1},8,["onClick"])]),_:1})]),_:1},8,["model"])]),_:1}),C((r(),E(W,{class:"!border-none",shadow:"never"},{default:u(()=>[C((r(),E(L,{to:{path:t(D)("company/add:edit"),query:{flag:!0}}},{default:u(()=>[e(s,{type:"primary",class:"mb-4"},{icon:u(()=>[e(Le,{name:"el-icon-Plus"})]),default:u(()=>[i(" \u521B\u5EFA ")]),_:1})]),_:1},8,["to"])),[[w,["company/add:edit"]]]),c("div",fu,[e(Pe,{data:t(x).lists,onSelectionChange:we},{default:u(()=>[e(F,{label:"id",prop:"id","show-overflow-tooltip":"",width:"60"}),e(F,{label:"\u516C\u53F8\u540D\u79F0",prop:"company_name",width:"200","show-overflow-tooltip":""}),e(F,{label:"\u516C\u53F8\u7C7B\u578B",prop:"company_type","show-overflow-tooltip":""}),e(F,{label:"\u533A\u53BF",prop:"area","show-overflow-tooltip":""}),e(F,{label:"\u4E61\u9547",prop:"street","show-overflow-tooltip":""}),e(F,{label:"\u4E3B\u8054\u7CFB\u4EBA",prop:"master_name","show-overflow-tooltip":""}),e(F,{label:"\u8054\u7CFB\u65B9\u5F0F",prop:"master_phone","show-overflow-tooltip":""}),e(F,{label:"\u7247\u533A\u7ECF\u7406",prop:"area_manager","show-overflow-tooltip":""}),e(F,{label:"\u662F\u5426\u7B7E\u7EA6",prop:"is_contract","show-overflow-tooltip":""},{default:u(({row:a})=>{var v,se,re;return[a.is_contract==1?(r(),B("span",Fu,"\u5DF2\u7B7E\u7EA6")):((v=a.contract)==null?void 0:v.check_status)==1?(r(),B("span",{key:1,style:{color:"#e6a23c",cursor:"pointer"},onClick:l[6]||(l[6]=Ie=>oe(1))},"\u5BA1\u6838\u4E2D")):((se=a.contract)==null?void 0:se.check_status)==2||((re=a.contract)==null?void 0:re.check_status)==3?(r(),B("span",{key:2,onClick:l[7]||(l[7]=Ie=>oe(2)),style:{color:"#e6a23c",cursor:"pointer"}},"\u7B7E\u7EA6\u4E2D")):(r(),B("span",Eu,"\u672A\u7B7E\u7EA6"))]}),_:1}),e(F,{label:"\u8BA4\u8BC1\u53CD\u9988",prop:"notes","show-overflow-tooltip":""}),e(F,{label:"\u64CD\u4F5C",align:"center",width:"420",fixed:"right"},{default:u(({row:a})=>[c("div",Bu,[e(s,{type:"primary",link:""},{default:u(()=>[e(L,{to:{path:t(D)("user.user/lists"),query:{company_id:a.id,read:!0}}},{default:u(()=>[i("\u67E5\u770B\u6210\u5458")]),_:2},1032,["to"])]),_:2},1024),e(s,{type:"primary",link:""},{default:u(()=>[e(L,{to:{path:t(D)("company/subordinate/lists"),query:{company_id:a.id,read:!0}}},{default:u(()=>[i("\u4E0B\u5C5E\u516C\u53F8")]),_:2},1032,["to"])]),_:2},1024),C((r(),E(s,{type:"primary",link:""},{default:u(()=>[e(L,{to:{path:t(D)("company/add:edit"),query:{id:a.id,read:!0,isshow:!0}}},{default:u(()=>[i("\u8BE6\u60C5")]),_:2},1032,["to"])]),_:2},1024)),[[w,["company/add:edit"]]]),a.is_authentication==0?C((r(),E(s,{key:0,type:"primary",link:""},{default:u(()=>[e(L,{to:{path:t(D)("company/add:edit"),query:{id:a.id,edit:!0}}},{default:u(()=>[i("\u7F16\u8F91")]),_:2},1032,["to"])]),_:2},1024)),[[w,["company/add:edit"]]]):M("",!0),C((r(),E(s,{type:"danger",link:"",onClick:v=>ke(a.id)},{default:u(()=>[i("\u5220\u9664")]),_:2},1032,["onClick"])),[[w,["company/delete"]]]),a.is_authentication==0?C((r(),E(s,{key:1,type:"primary",link:"",onClick:v=>Ve(a)},{default:u(()=>[i(eu(t(Q)),1)]),_:2},1032,["onClick"])),[[w,["company/authentication"]]]):M("",!0),a.is_authentication&&a.is_contract==0?(r(),B(Z,{key:2},[Array.isArray(a.contract)&&a.contract.length==0?C((r(),E(s,{key:0,type:"primary",link:"",onClick:v=>Be(a)},{default:u(()=>[i("\u751F\u6210\u5408\u540C")]),_:2},1032,["onClick"])),[[w,["company/initiate_contract"]]]):M("",!0)],64)):M("",!0)])]),_:1})]),_:1},8,["data"])]),c("div",Cu,[e(Ue,{modelValue:t(x),"onUpdate:modelValue":l[8]||(l[8]=a=>g(x)?x.value=a:null),onChange:t(b)},null,8,["modelValue","onChange"])])]),_:1})),[[ze,t(x).loading]]),e(P,{modelValue:t(V),"onUpdate:modelValue":l[15]||(l[15]=a=>g(V)?V.value=a:null),onClose:j},{default:u(()=>[vu,c("div",null,[bu,e(W,null,{default:u(()=>[e(X,null,{default:u(()=>[e(f,{span:12},{default:u(()=>[e(n,{"label-width":"100px",label:"\u7532\u65B9",prop:"field130"},{default:u(()=>[e(p,{modelValue:t(d).party_a_name,"onUpdate:modelValue":l[9]||(l[9]=a=>t(d).party_a_name=a),placeholder:"\u8BF7\u9009\u62E9\u7532\u65B9",onClick:l[10]||(l[10]=a=>k.value=!0),clearable:"",style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(f,{span:12},{default:u(()=>[e(n,{"label-width":"100px",label:"\u4E59\u65B9",prop:"field131"},{default:u(()=>[e(p,{disabled:!0,modelValue:t(d).party_b_name,"onUpdate:modelValue":l[11]||(l[11]=a=>t(d).party_b_name=a),placeholder:"\u8BF7\u9009\u62E9\u4E59\u65B9",clearable:"",style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(f,{span:12},{default:u(()=>[e(n,{"label-width":"100px",label:"\u5408\u540C\u7C7B\u578B",prop:"contract_type"},{default:u(()=>[e(H,{modelValue:t(d).contract_type,"onUpdate:modelValue":l[12]||(l[12]=a=>t(d).contract_type=a),placeholder:"\u8BF7\u9009\u62E9\u5408\u540C\u7C7B\u578B",clearable:"",style:{width:"100%"}},{default:u(()=>[(r(!0),B(Z,null,de(t(le),(a,v)=>(r(),E(A,{key:v,label:a.name,value:a.id},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(f,{span:12},{default:u(()=>[e(n,{"label-width":"100px",label:"\u5408\u540C\u7F16\u53F7",prop:"field133"},{default:u(()=>[e(p,{placeholder:"\u7CFB\u7EDF\u81EA\u52A8\u751F\u6210",modelValue:t(d).contract_no,"onUpdate:modelValue":l[13]||(l[13]=a=>t(d).contract_no=a),clearable:"",style:{width:"100%"},disabled:!0},null,8,["modelValue"])]),_:1})]),_:1})]),_:1})]),_:1})]),c("p",hu,[e(s,{type:"primary",size:"large",onClick:ve},{default:u(()=>[i("\u786E\u8BA4")]),_:1}),e(s,{type:"info",size:"large",onClick:j},{default:u(()=>[i("\u8FD4\u56DE")]),_:1})]),e(P,{modelValue:t(k),"onUpdate:modelValue":l[14]||(l[14]=a=>g(k)?k.value=a:null)},{default:u(()=>[e(yu,{companyTypeList:t(O).dictTypeLists,type:30,onCustomEvent:_e},null,8,["companyTypeList"])]),_:1},8,["modelValue"])]),_:1},8,["modelValue"]),e(P,{modelValue:t(I),"onUpdate:modelValue":l[16]||(l[16]=a=>g(I)?I.value=a:null),onClose:T},{default:u(()=>[Au,t(N)?(r(),B("div",wu," \u8BF7\u786E\u8BA4\u4FE1\u606F\u662F\u5426\u6709\u8BEF,\u53D1\u9001\u5408\u540C,\u8BF7\u786E\u8BA4\u4FE1\u606F\u662F\u5426\u6709\u8BEF,\u53D1\u9001\u7535\u5B50\u5408\u540C\u540E\u77ED\u65F6\u95F4\u5185\u5C06\u4E0D\u53EF\u518D\u6B21\u53D1\u9001. ")):(r(),B("div",Du," \u786E\u8BA4\u7B7E\u7EA6\u77ED\u4FE1\u5C06\u572860\u79D2\u540E\u53D1\u9001,\u8BF7\u6CE8\u610F\u67E5\u6536,\u5E76\u70B9\u51FB\u77ED\u4FE1\u94FE\u63A5\u8FDB\u884C\u7EBF\u4E0A\u5408\u540C\u7B7E\u7EA6 ")),c("p",gu,[t(N)?(r(),E(s,{key:0,type:"primary",size:"large",onClick:be},{default:u(()=>[i("\u786E\u8BA4")]),_:1})):(r(),E(s,{key:1,type:"primary",size:"large",onClick:he},{default:u(()=>[i("\u786E\u8BA4")]),_:1})),e(s,{type:"info",size:"large",onClick:T},{default:u(()=>[i("\u8FD4\u56DE")]),_:1})])]),_:1},8,["modelValue"]),e(P,{modelValue:t(h),"onUpdate:modelValue":l[18]||(l[18]=a=>g(h)?h.value=a:null),onClose:ae},{default:u(()=>[ku,c("div",null,[Vu,e(J,{ref:"formRef","label-width":"90px"},{default:u(()=>[e(X,null,{default:u(()=>[e(f,{span:12},{default:u(()=>[e(n,{label:"\u516C\u53F8\u540D\u79F0",prop:"company_name"},{default:u(()=>[e(p,{placeholder:"\u8BF7\u8F93\u5165\u516C\u53F8\u540D\u79F0",clearable:"",value:t(y).company_name,readonly:"",style:{width:"100%"}},null,8,["value"])]),_:1})]),_:1}),e(f,{span:12},{default:u(()=>[e(n,{label:"\u4F01\u4E1A\u4EE3\u7801",prop:"company_name"},{default:u(()=>[e(p,{placeholder:"\u8BF7\u8F93\u5165\u4F01\u4E1A\u4EE3\u7801",clearable:"",value:t(y).organization_code,readonly:"",style:{width:"100%"}},null,8,["value"])]),_:1})]),_:1}),e(f,{span:12},{default:u(()=>[e(n,{label:"\u4E3B\u8981\u8054\u7CFB\u4EBA",prop:"company_name"},{default:u(()=>[e(p,{placeholder:"\u8BF7\u8F93\u5165\u4E3B\u8981\u8054\u7CFB\u4EBA",clearable:"",value:t(y).master_name,readonly:"",style:{width:"100%"}},null,8,["value"])]),_:1})]),_:1}),e(f,{span:12},{default:u(()=>[e(n,{label:"\u624B\u673A\u53F7\u7801",prop:"company_name"},{default:u(()=>[e(p,{placeholder:"\u8BF7\u8F93\u5165\u624B\u673A\u53F7\u7801",clearable:"",value:t(y).master_phone,readonly:"",style:{width:"100%"}},null,8,["value"])]),_:1})]),_:1})]),_:1})]),_:1},512)]),c("p",xu,[e(s,{type:"primary",size:"large",onClick:l[17]||(l[17]=a=>xe(t(y).id))},{default:u(()=>[i("\u786E\u8BA4")]),_:1}),e(s,{type:"warning",size:"large",onClick:te},{default:u(()=>[i("\u4FEE\u6539")]),_:1}),e(s,{type:"info",size:"large",onClick:ae},{default:u(()=>[i("\u8FD4\u56DE")]),_:1})])]),_:1},8,["modelValue"]),e(P,{modelValue:t(S),"onUpdate:modelValue":l[20]||(l[20]=a=>g(S)?S.value=a:null),onClose:G},{default:u(()=>[Lu,c("div",null,[Pu,e(J,{ref:"formRef","label-width":"90px"},{default:u(()=>[e(X,null,{default:u(()=>[e(f,{span:24},{default:u(()=>[e(n,{label:"\u516C\u53F8\u540D\u79F0",prop:"company_name"},{default:u(()=>[e(p,{placeholder:"\u8BF7\u8F93\u5165\u516C\u53F8\u540D\u79F0",clearable:"",value:t(y).company_name,readonly:"",style:{width:"100%"}},null,8,["value"])]),_:1})]),_:1}),e(f,{span:12},{default:u(()=>[e(n,{label:"\u4F01\u4E1A\u4EE3\u7801",prop:"organization_code"},{default:u(()=>[e(p,{placeholder:"\u8BF7\u8F93\u5165\u4F01\u4E1A\u4EE3\u7801",clearable:"",value:t(y).organization_code,readonly:"",style:{width:"100%"}},null,8,["value"])]),_:1})]),_:1}),e(f,{span:12},{default:u(()=>[e(n,{label:"\u4E3B\u8981\u8054\u7CFB\u4EBA",prop:"master_name"},{default:u(()=>[e(p,{placeholder:"\u8BF7\u8F93\u5165\u4E3B\u8981\u8054\u7CFB\u4EBA",clearable:"",value:t(y).master_name,readonly:"",style:{width:"100%"}},null,8,["value"])]),_:1})]),_:1}),e(f,{span:12},{default:u(()=>[e(n,{label:"\u624B\u673A\u53F7\u7801",prop:"master_phone"},{default:u(()=>[e(p,{placeholder:"\u8BF7\u8F93\u5165\u624B\u673A\u53F7\u7801",clearable:"",value:t(y).master_phone,readonly:"",style:{width:"100%"}},null,8,["value"])]),_:1})]),_:1}),e(f,{span:12},{default:u(()=>[e(n,{label:"\u90AE\u7BB1",prop:"master_email"},{default:u(()=>[e(p,{placeholder:"\u8BF7\u8F93\u5165\u90AE\u7BB1",clearable:"",value:t(y).master_email,readonly:"",style:{width:"100%"}},null,8,["value"])]),_:1})]),_:1})]),_:1})]),_:1},512)]),c("p",Uu,[e(s,{type:"primary",size:"large",onClick:l[19]||(l[19]=a=>fe(t(y).id))},{default:u(()=>[i("\u786E\u8BA4")]),_:1}),e(s,{type:"warning",size:"large",onClick:te},{default:u(()=>[i("\u4FEE\u6539")]),_:1}),e(s,{type:"info",size:"large",onClick:G},{default:u(()=>[i("\u8FD4\u56DE")]),_:1})])]),_:1},8,["modelValue"])])}}});export{Aa as default}; diff --git a/public/admin/assets/index.f2c7f81b.js b/public/admin/assets/index.f2c7f81b.js new file mode 100644 index 000000000..8e0ed9f3e --- /dev/null +++ b/public/admin/assets/index.f2c7f81b.js @@ -0,0 +1 @@ +import{d,b as c}from"./index.ed71ac09.js";import{d as r,o as s,c as n,H as p,Z as _,U as i,Q as m}from"./@vue.51d7f2d8.js";const u=r({props:{showClose:{type:Boolean,default:!0}},emits:["close"],setup(e,{emit:o}){return{handleClose:()=>{o("close")}}}});const f={class:"del-wrap"};function C(e,o,t,h,v,$){const a=c;return s(),n("div",f,[p(e.$slots,"default",{},void 0,!0),e.showClose?(s(),n("div",{key:0,class:"icon-close",onClick:o[0]||(o[0]=_((...l)=>e.handleClose&&e.handleClose(...l),["stop"]))},[i(a,{size:12,name:"el-icon-CloseBold"})])):m("",!0)])}const y=d(u,[["render",C],["__scopeId","data-v-acafd744"]]);export{y as _}; diff --git a/public/admin/assets/index.f2e98aa7.js b/public/admin/assets/index.f2e98aa7.js new file mode 100644 index 000000000..79574e3ca --- /dev/null +++ b/public/admin/assets/index.f2e98aa7.js @@ -0,0 +1 @@ +import{B as O,C as Q,M as j,N as K,w as z,D as G,O as H,P as J,I as W,Q as X}from"./element-plus.4328d892.js";import{_ as Y}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{u as Z}from"./usePaging.2ad8e1e6.js";import{u as ee}from"./useDictOptions.a45fc8ac.js";import{a as oe}from"./informationg.0fb089cd.js";import{k as te}from"./index.37f7aea6.js";import{_ as ae}from"./editCate.vue_vue_type_script_setup_true_name_flowTypeEdit_lang.d4d5c066.js";import{d as k,s as le,r as C,$ as ne,a4 as ue,af as re,o as i,c as d,M as w,u as t,K as b,L as a,U as e,T as D,a7 as h,R as m,a as y,S as _,k as ie,Q as me}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.5759a1a6.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./examined.28c87019.js";const se={class:"mt-4"},pe={class:"flex mt-4 justify-end"},de=k({name:"flowTypeLists"}),to=k({...de,setup(_e){console.log(te);const E=le(),g=C(!1),n=ne({name:"",company_name:"",nickname:"",brigade:""}),V=C([]),B=v=>{V.value=v.map(({id:l})=>l)},{dictData:x}=ee(""),{pager:s,getLists:c,resetParams:S,resetPage:P}=Z({fetchFun:oe,params:n});return c(),(v,l)=>{const f=O,p=Q,R=j,U=K,F=z,L=G,u=H,N=ue("router-link"),T=J,$=Y,I=W,M=re("perms"),q=X;return i(),d("div",null,[w((i(),b(I,{class:"!border-none",shadow:"never"},{default:a(()=>[e(L,{class:"mb-[-16px]",inline:""},{default:a(()=>[e(p,{label:"\u516C\u53F8\u540D\u79F0",prop:"company_id"},{default:a(()=>[e(f,{class:"w-[280px]",modelValue:t(n).company_name,"onUpdate:modelValue":l[0]||(l[0]=o=>t(n).company_name=o),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u516C\u53F8"},null,8,["modelValue"])]),_:1}),e(p,{label:"\u961F\u957F\u59D3\u540D",prop:"company_id"},{default:a(()=>[e(f,{class:"w-[280px]",modelValue:t(n).nickname,"onUpdate:modelValue":l[1]||(l[1]=o=>t(n).nickname=o),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u961F\u957F\u59D3\u540D"},null,8,["modelValue"])]),_:1}),e(p,{label:"\u6863\u6848\u540D\u79F0",prop:"company_id"},{default:a(()=>[e(f,{class:"w-[280px]",modelValue:t(n).name,"onUpdate:modelValue":l[2]||(l[2]=o=>t(n).name=o),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u6863\u6848\u59D3\u540D"},null,8,["modelValue"])]),_:1}),e(p,{label:"\u5C0F\u961F",prop:"company_id"},{default:a(()=>[e(U,{modelValue:t(n).brigade,"onUpdate:modelValue":l[3]||(l[3]=o=>t(n).brigade=o),placeholder:"\u8BF7\u9009\u62E9\u5C0F\u961F",clearable:"",style:{width:"100%"}},{default:a(()=>[(i(),d(D,null,h([{brigade_name:"1\u961F",id:"1"},{brigade_name:"2\u961F",id:"2"}],(o,r)=>e(R,{key:r,label:o.brigade_name,value:o.id},null,8,["label","value"])),64))]),_:1},8,["modelValue"])]),_:1}),e(p,null,{default:a(()=>[e(F,{type:"primary",onClick:t(P)},{default:a(()=>[m("\u67E5\u8BE2")]),_:1},8,["onClick"]),e(F,{onClick:t(S)},{default:a(()=>[m("\u91CD\u7F6E")]),_:1},8,["onClick"])]),_:1})]),_:1}),y("div",se,[e(T,{data:t(s).lists,onSelectionChange:B},{default:a(()=>[e(u,{label:"\u7F16\u53F7",prop:"id","show-overflow-tooltip":""}),e(u,{label:"\u9547\u516C\u53F8","show-overflow-tooltip":""},{default:a(({row:o})=>{var r;return[m(_((r=o.extend)==null?void 0:r.company_name),1)]}),_:1}),e(u,{width:"260px",label:"\u6240\u5C5E\u5730\u533A","show-overflow-tooltip":""},{default:a(({row:o})=>[m(_(o.area_name+o.street_name+o.village_name)+" ",1),(i(!0),d(D,null,h(o.brigade_name,(r,A)=>(i(),d("text",{key:A},_(r.brigade_name),1))),128))]),_:1}),e(u,{label:"\u961F\u957F\u59D3\u540D",prop:"phone","show-overflow-tooltip":""},{default:a(({row:o})=>{var r;return[m(_((r=o.extend)==null?void 0:r.nickname),1)]}),_:1}),e(u,{label:"\u6863\u6848\u540D\u79F0",prop:"name","show-overflow-tooltip":""}),e(u,{label:"\u8054\u7CFB\u7535\u8BDD",prop:"phone","show-overflow-tooltip":""}),e(u,{label:"\u66F4\u65B0\u65F6\u95F4",prop:"update_time","show-overflow-tooltip":""}),e(u,{label:"\u5EFA\u6863\u65F6\u95F4",prop:"create_time","show-overflow-tooltip":""}),e(u,{label:"\u64CD\u4F5C",align:"center",width:"auto",fixed:"right"},{default:a(({row:o})=>[w((i(),b(F,{type:"primary",link:""},{default:a(()=>[e(N,{to:{path:"user_informationg/details",query:{id:o.id}}},{default:a(()=>[m(" \u8BE6\u60C5 ")]),_:2},1032,["to"])]),_:2},1024)),[[M,["user_informationg.user_informationg/details"]]])]),_:1})]),_:1},8,["data"])]),y("div",pe,[e($,{modelValue:t(s),"onUpdate:modelValue":l[4]||(l[4]=o=>ie(s)?s.value=o:null),onChange:t(c)},null,8,["modelValue","onChange"])])]),_:1})),[[q,t(s).loading]]),t(g)?(i(),b(ae,{key:0,ref_key:"editRef",ref:E,"dict-data":t(x),onSuccess:t(c),onClose:l[5]||(l[5]=o=>g.value=!1)},null,8,["dict-data","onSuccess"])):me("",!0)])}}});export{to as default}; diff --git a/public/admin/assets/index.f81735a4.js b/public/admin/assets/index.f81735a4.js new file mode 100644 index 000000000..567803dbc --- /dev/null +++ b/public/admin/assets/index.f81735a4.js @@ -0,0 +1 @@ +import{w as T,O as P,P as I,I as Q,Q as U}from"./element-plus.4328d892.js";import{_ as j}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{f as z,b as K}from"./index.ed71ac09.js";import{c as M,d as O}from"./role.1c72c4c7.js";import{u as q}from"./usePaging.2ad8e1e6.js";import{_ as G}from"./edit.vue_vue_type_script_setup_true_lang.7bb39860.js";import{_ as H}from"./auth.vue_vue_type_script_setup_true_lang.61ccbfa5.js";import{d as D,s as F,r as g,af as J,o as a,c as E,U as t,L as i,a as C,M as c,K as u,R as h,u as n,k as W,Q as B,n as y}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.b940d6e3.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./menu.a3f35001.js";const X={class:"role-lists"},Y={class:"mt-4"},Z={class:"flex justify-end mt-4"},ee=D({name:"role"}),Me=D({...ee,setup(te){const d=F(),k=F(),_=g(!1),w=g(!1),{pager:m,getLists:p}=q({fetchFun:O}),$=async()=>{var o;_.value=!0,await y(),(o=d.value)==null||o.open("add")},x=async o=>{var e,l;_.value=!0,await y(),(e=d.value)==null||e.open("edit"),(l=d.value)==null||l.setFormData(o)},A=async o=>{var e,l;w.value=!0,await y(),(e=k.value)==null||e.open(),(l=k.value)==null||l.setFormData(o)},R=async o=>{await z.confirm("\u786E\u5B9A\u8981\u5220\u9664\uFF1F"),await M({id:o}),p()};return p(),(o,e)=>{const l=K,f=T,s=P,V=I,L=j,N=Q,v=J("perms"),S=U;return a(),E("div",X,[t(N,{class:"!border-none",shadow:"never"},{default:i(()=>[C("div",null,[c((a(),u(f,{type:"primary",onClick:$},{icon:i(()=>[t(l,{name:"el-icon-Plus"})]),default:i(()=>[h(" \u65B0\u589E ")]),_:1})),[[v,["auth.role/add"]]])]),c((a(),E("div",Y,[C("div",null,[t(V,{data:n(m).lists,size:"large"},{default:i(()=>[t(s,{prop:"id",label:"ID","min-width":"100"}),t(s,{prop:"name",label:"\u540D\u79F0","min-width":"150"}),t(s,{prop:"desc",label:"\u5907\u6CE8","min-width":"150","show-overflow-tooltip":""}),t(s,{prop:"sort",label:"\u6392\u5E8F","min-width":"100"}),t(s,{prop:"num",label:"\u7BA1\u7406\u5458\u4EBA\u6570","min-width":"100"}),t(s,{prop:"create_time",label:"\u521B\u5EFA\u65F6\u95F4","min-width":"180"}),t(s,{label:"\u64CD\u4F5C",width:"200",fixed:"right"},{default:i(({row:r})=>[c((a(),u(f,{link:"",type:"primary",onClick:b=>x(r)},{default:i(()=>[h(" \u7F16\u8F91 ")]),_:2},1032,["onClick"])),[[v,["auth.role/edit"]]]),c((a(),u(f,{link:"",type:"primary",onClick:b=>A(r)},{default:i(()=>[h(" \u5206\u914D\u6743\u9650 ")]),_:2},1032,["onClick"])),[[v,["auth.role/edit"]]]),c((a(),u(f,{link:"",type:"danger",onClick:b=>R(r.id)},{default:i(()=>[h(" \u5220\u9664 ")]),_:2},1032,["onClick"])),[[v,["auth.role/delete"]]])]),_:1})]),_:1},8,["data"])]),C("div",Z,[t(L,{modelValue:n(m),"onUpdate:modelValue":e[0]||(e[0]=r=>W(m)?m.value=r:null),onChange:n(p)},null,8,["modelValue","onChange"])])])),[[S,n(m).loading]])]),_:1}),n(_)?(a(),u(G,{key:0,ref_key:"editRef",ref:d,onSuccess:n(p),onClose:e[1]||(e[1]=r=>_.value=!1)},null,8,["onSuccess"])):B("",!0),n(w)?(a(),u(H,{key:1,ref_key:"authRef",ref:k,onSuccess:n(p),onClose:e[2]||(e[2]=r=>w.value=!1)},null,8,["onSuccess"])):B("",!0)])}}});export{Me as default}; diff --git a/public/admin/assets/index.fa872673.js b/public/admin/assets/index.fa872673.js new file mode 100644 index 000000000..ce700d08c --- /dev/null +++ b/public/admin/assets/index.fa872673.js @@ -0,0 +1 @@ +import{w as c,L as f}from"./element-plus.4328d892.js";import{_ as k}from"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import{d as v}from"./index.aa9bb752.js";import{o as a,c as g,a as d,H as i,U as B,a9 as C,L as n,R as s,S as l,K as m,Q as u}from"./@vue.51d7f2d8.js";const y={class:"dialog"},$={class:"dialog-footer"};function V(e,o,b,w,E,T){const r=c,p=f;return a(),g("div",y,[d("div",{class:"dialog__trigger",onClick:o[0]||(o[0]=(...t)=>e.open&&e.open(...t))},[i(e.$slots,"trigger",{},void 0,!0)]),B(p,{modelValue:e.visible,"onUpdate:modelValue":o[3]||(o[3]=t=>e.visible=t),"custom-class":e.customClass,center:e.center,"append-to-body":!0,width:e.width,"close-on-click-modal":e.clickModalClose,onClosed:e.close},C({default:n(()=>[i(e.$slots,"default",{},()=>[s(l(e.content),1)],!0)]),_:2},[e.title?{name:"header",fn:n(()=>[s(l(e.title),1)]),key:"0"}:void 0,e.button?{name:"footer",fn:n(()=>[d("div",$,[e.cancelButtonText?(a(),m(r,{key:0,onClick:o[1]||(o[1]=t=>e.handleEvent("cancel"))},{default:n(()=>[s(l(e.cancelButtonText),1)]),_:1})):u("",!0),e.confirmButtonText?(a(),m(r,{key:1,type:"primary",onClick:o[2]||(o[2]=t=>e.handleEvent("confirm"))},{default:n(()=>[s(l(e.confirmButtonText),1)]),_:1})):u("",!0)])]),key:"1"}:void 0]),1032,["modelValue","custom-class","center","width","close-on-click-modal","onClosed"])])}const L=v(k,[["render",V],["__scopeId","data-v-95d1884e"]]);export{L as P}; diff --git a/public/admin/assets/index.fd04a214.js b/public/admin/assets/index.fd04a214.js new file mode 100644 index 000000000..c1de3163c --- /dev/null +++ b/public/admin/assets/index.fd04a214.js @@ -0,0 +1 @@ +import{d as t,o as s,c as n,a as _,H as a,_ as d}from"./@vue.51d7f2d8.js";import{d as r}from"./index.37f7aea6.js";const c={class:"footer-btns"},i=t({__name:"index",props:{fixed:{type:Boolean,default:!0}},setup(e){return(o,l)=>(s(),n("div",c,[_("div",{class:"footer-btns__content",style:d(e.fixed?"position: fixed":"")},[a(o.$slots,"default",{},void 0,!0)],4)]))}});const u=r(i,[["__scopeId","data-v-9f638557"]]);export{u as _}; diff --git a/public/admin/assets/index.fe1d30dd.js b/public/admin/assets/index.fe1d30dd.js new file mode 100644 index 000000000..8f0d04c1e --- /dev/null +++ b/public/admin/assets/index.fe1d30dd.js @@ -0,0 +1 @@ +import{d,b as c}from"./index.37f7aea6.js";import{d as r,o as s,c as n,H as p,Z as _,U as i,Q as m}from"./@vue.51d7f2d8.js";const u=r({props:{showClose:{type:Boolean,default:!0}},emits:["close"],setup(e,{emit:o}){return{handleClose:()=>{o("close")}}}});const f={class:"del-wrap"};function C(e,o,t,h,v,$){const a=c;return s(),n("div",f,[p(e.$slots,"default",{},void 0,!0),e.showClose?(s(),n("div",{key:0,class:"icon-close",onClick:o[0]||(o[0]=_((...l)=>e.handleClose&&e.handleClose(...l),["stop"]))},[i(a,{size:12,name:"el-icon-CloseBold"})])):m("",!0)])}const y=d(u,[["render",C],["__scopeId","data-v-acafd744"]]);export{y as _}; diff --git a/public/admin/assets/index.vue_vue_type_script_setup_true_lang.5c604000.js b/public/admin/assets/index.vue_vue_type_script_setup_true_lang.5c604000.js new file mode 100644 index 000000000..97f855fb9 --- /dev/null +++ b/public/admin/assets/index.vue_vue_type_script_setup_true_lang.5c604000.js @@ -0,0 +1 @@ +import{w as D,C as v,G as z,H as R,B as k,D as N}from"./element-plus.4328d892.js";import{f as i}from"./index.ed71ac09.js";import{P as S}from"./index.b940d6e3.js";import{d as U,s as E,$ as x,o as y,c as q,U as u,L as o,R as _,a as f,u as a,S as m,K as L,Q as O}from"./@vue.51d7f2d8.js";const j={class:"export-data"},G={class:"flex"},I=f("span",{class:"flex-none ml-2 mr-2"},"\u9875\uFF0C\u81F3",-1),Q=U({__name:"index",props:{params:{type:Object,default:()=>({})},pageSize:{type:Number,default:25},fetchFun:{type:Function,required:!0}},setup(A){const p=A,c=E(),g=E(),t=x({page_type:0,page_start:1,page_end:200,file_name:""}),b={page_start:[{required:!0,message:"\u8BF7\u8F93\u5165\u8D77\u59CB\u9875\u7801"},{type:"number",message:"\u9875\u7801\u5FC5\u987B\u662F\u6574\u6570"},{validator:(l,e,r)=>{if(e<=0)return r(new Error("\u9875\u7801\u5FC5\u987B\u5927\u4E8E0"));r()}}],page_end:[{required:!0,message:"\u8BF7\u8F93\u5165\u7ED3\u675F\u9875\u7801"},{type:"number",message:"\u9875\u7801\u5FC5\u987B\u662F\u6574\u6570"},{validator:(l,e,r)=>{if(e<=0)return r(new Error("\u9875\u7801\u5FC5\u987B\u5927\u4E8E0"));r()}}]},d=x({count:0,sum_page:0,page_size:0,max_page:0,all_max_size:0}),B=async()=>{const l=await p.fetchFun({...p.params,page_size:p.pageSize,export:1});Object.assign(d,l),t.file_name=l.file_name,t.page_end=l.page_end,t.page_start=l.page_start},V=async()=>{var l,e;await((l=c.value)==null?void 0:l.validate()),i.loading("\u6B63\u5728\u5BFC\u51FA\u4E2D...");try{await p.fetchFun({...p.params,...t,page_size:p.pageSize,export:2}),(e=g.value)==null||e.close(),i.closeLoading()}catch{i.closeLoading()}};return B(),(l,e)=>{const r=D,n=v,C=z,w=R,F=k,h=N;return y(),q("div",j,[u(S,{ref_key:"popupRef",ref:g,title:"\u5BFC\u51FA\u8BBE\u7F6E",width:"500px","confirm-button-text":"\u786E\u8BA4\u5BFC\u51FA",onConfirm:V,async:!0,onOpen:B},{trigger:o(()=>[u(r,null,{default:o(()=>[_("\u5BFC\u51FA")]),_:1})]),default:o(()=>[f("div",null,[u(h,{ref_key:"formRef",ref:c,model:a(t),"label-width":"120px",rules:b},{default:o(()=>[u(n,{label:"\u6570\u636E\u91CF\uFF1A"},{default:o(()=>[_(" \u9884\u8BA1\u5BFC\u51FA"+m(a(d).count)+"\u6761\u6570\u636E\uFF0C \u5171"+m(a(d).sum_page)+"\u9875\uFF0C\u6BCF\u9875"+m(a(d).page_size)+"\u6761\u6570\u636E ",1)]),_:1}),u(n,{label:"\u5BFC\u51FA\u9650\u5236\uFF1A"},{default:o(()=>[_(" \u6BCF\u6B21\u5BFC\u51FA\u6700\u5927\u5141\u8BB8"+m(a(d).max_page)+"\u9875\uFF0C\u5171"+m(a(d).all_max_size)+"\u6761\u6570\u636E ",1)]),_:1}),u(n,{prop:"page_type",label:"\u5BFC\u51FA\u8303\u56F4\uFF1A",required:""},{default:o(()=>[u(w,{modelValue:a(t).page_type,"onUpdate:modelValue":e[0]||(e[0]=s=>a(t).page_type=s)},{default:o(()=>[u(C,{label:0},{default:o(()=>[_("\u5168\u90E8\u5BFC\u51FA")]),_:1}),u(C,{label:1},{default:o(()=>[_("\u5206\u9875\u5BFC\u51FA")]),_:1})]),_:1},8,["modelValue"])]),_:1}),a(t).page_type==1?(y(),L(n,{key:0,label:"\u5206\u9875\u8303\u56F4\uFF1A"},{default:o(()=>[f("div",G,[u(n,{prop:"page_start"},{default:o(()=>[u(F,{style:{width:"140px"},modelValue:a(t).page_start,"onUpdate:modelValue":e[1]||(e[1]=s=>a(t).page_start=s),modelModifiers:{number:!0},placeholder:""},null,8,["modelValue"])]),_:1}),I,u(n,{prop:"page_end"},{default:o(()=>[u(F,{style:{width:"140px"},modelValue:a(t).page_end,"onUpdate:modelValue":e[2]||(e[2]=s=>a(t).page_end=s),modelModifiers:{number:!0},placeholder:""},null,8,["modelValue"])]),_:1})])]),_:1})):O("",!0),u(n,{label:"\u5BFC\u51FA\u6587\u4EF6\u540D\u79F0\uFF1A",prop:"file_name"},{default:o(()=>[u(F,{modelValue:a(t).file_name,"onUpdate:modelValue":e[3]||(e[3]=s=>a(t).file_name=s),placeholder:"\u8BF7\u8F93\u5165\u5BFC\u51FA\u6587\u4EF6\u540D\u79F0"},null,8,["modelValue"])]),_:1})]),_:1},8,["model"])])]),_:1},512)])}}});export{Q as _}; diff --git a/public/admin/assets/index.vue_vue_type_script_setup_true_lang.7ac7ce7d.js b/public/admin/assets/index.vue_vue_type_script_setup_true_lang.7ac7ce7d.js new file mode 100644 index 000000000..23a85a224 --- /dev/null +++ b/public/admin/assets/index.vue_vue_type_script_setup_true_lang.7ac7ce7d.js @@ -0,0 +1 @@ +import{w as D,C as v,G as z,H as R,B as k,D as N}from"./element-plus.4328d892.js";import{f as i}from"./index.37f7aea6.js";import{P as S}from"./index.5759a1a6.js";import{d as U,s as E,$ as x,o as y,c as q,U as u,L as o,R as _,a as f,u as a,S as m,K as L,Q as O}from"./@vue.51d7f2d8.js";const j={class:"export-data"},G={class:"flex"},I=f("span",{class:"flex-none ml-2 mr-2"},"\u9875\uFF0C\u81F3",-1),Q=U({__name:"index",props:{params:{type:Object,default:()=>({})},pageSize:{type:Number,default:25},fetchFun:{type:Function,required:!0}},setup(A){const p=A,c=E(),g=E(),t=x({page_type:0,page_start:1,page_end:200,file_name:""}),b={page_start:[{required:!0,message:"\u8BF7\u8F93\u5165\u8D77\u59CB\u9875\u7801"},{type:"number",message:"\u9875\u7801\u5FC5\u987B\u662F\u6574\u6570"},{validator:(l,e,r)=>{if(e<=0)return r(new Error("\u9875\u7801\u5FC5\u987B\u5927\u4E8E0"));r()}}],page_end:[{required:!0,message:"\u8BF7\u8F93\u5165\u7ED3\u675F\u9875\u7801"},{type:"number",message:"\u9875\u7801\u5FC5\u987B\u662F\u6574\u6570"},{validator:(l,e,r)=>{if(e<=0)return r(new Error("\u9875\u7801\u5FC5\u987B\u5927\u4E8E0"));r()}}]},d=x({count:0,sum_page:0,page_size:0,max_page:0,all_max_size:0}),B=async()=>{const l=await p.fetchFun({...p.params,page_size:p.pageSize,export:1});Object.assign(d,l),t.file_name=l.file_name,t.page_end=l.page_end,t.page_start=l.page_start},V=async()=>{var l,e;await((l=c.value)==null?void 0:l.validate()),i.loading("\u6B63\u5728\u5BFC\u51FA\u4E2D...");try{await p.fetchFun({...p.params,...t,page_size:p.pageSize,export:2}),(e=g.value)==null||e.close(),i.closeLoading()}catch{i.closeLoading()}};return B(),(l,e)=>{const r=D,n=v,C=z,w=R,F=k,h=N;return y(),q("div",j,[u(S,{ref_key:"popupRef",ref:g,title:"\u5BFC\u51FA\u8BBE\u7F6E",width:"500px","confirm-button-text":"\u786E\u8BA4\u5BFC\u51FA",onConfirm:V,async:!0,onOpen:B},{trigger:o(()=>[u(r,null,{default:o(()=>[_("\u5BFC\u51FA")]),_:1})]),default:o(()=>[f("div",null,[u(h,{ref_key:"formRef",ref:c,model:a(t),"label-width":"120px",rules:b},{default:o(()=>[u(n,{label:"\u6570\u636E\u91CF\uFF1A"},{default:o(()=>[_(" \u9884\u8BA1\u5BFC\u51FA"+m(a(d).count)+"\u6761\u6570\u636E\uFF0C \u5171"+m(a(d).sum_page)+"\u9875\uFF0C\u6BCF\u9875"+m(a(d).page_size)+"\u6761\u6570\u636E ",1)]),_:1}),u(n,{label:"\u5BFC\u51FA\u9650\u5236\uFF1A"},{default:o(()=>[_(" \u6BCF\u6B21\u5BFC\u51FA\u6700\u5927\u5141\u8BB8"+m(a(d).max_page)+"\u9875\uFF0C\u5171"+m(a(d).all_max_size)+"\u6761\u6570\u636E ",1)]),_:1}),u(n,{prop:"page_type",label:"\u5BFC\u51FA\u8303\u56F4\uFF1A",required:""},{default:o(()=>[u(w,{modelValue:a(t).page_type,"onUpdate:modelValue":e[0]||(e[0]=s=>a(t).page_type=s)},{default:o(()=>[u(C,{label:0},{default:o(()=>[_("\u5168\u90E8\u5BFC\u51FA")]),_:1}),u(C,{label:1},{default:o(()=>[_("\u5206\u9875\u5BFC\u51FA")]),_:1})]),_:1},8,["modelValue"])]),_:1}),a(t).page_type==1?(y(),L(n,{key:0,label:"\u5206\u9875\u8303\u56F4\uFF1A"},{default:o(()=>[f("div",G,[u(n,{prop:"page_start"},{default:o(()=>[u(F,{style:{width:"140px"},modelValue:a(t).page_start,"onUpdate:modelValue":e[1]||(e[1]=s=>a(t).page_start=s),modelModifiers:{number:!0},placeholder:""},null,8,["modelValue"])]),_:1}),I,u(n,{prop:"page_end"},{default:o(()=>[u(F,{style:{width:"140px"},modelValue:a(t).page_end,"onUpdate:modelValue":e[2]||(e[2]=s=>a(t).page_end=s),modelModifiers:{number:!0},placeholder:""},null,8,["modelValue"])]),_:1})])]),_:1})):O("",!0),u(n,{label:"\u5BFC\u51FA\u6587\u4EF6\u540D\u79F0\uFF1A",prop:"file_name"},{default:o(()=>[u(F,{modelValue:a(t).file_name,"onUpdate:modelValue":e[3]||(e[3]=s=>a(t).file_name=s),placeholder:"\u8BF7\u8F93\u5165\u5BFC\u51FA\u6587\u4EF6\u540D\u79F0"},null,8,["modelValue"])]),_:1})]),_:1},8,["model"])])]),_:1},512)])}}});export{Q as _}; diff --git a/public/admin/assets/index.vue_vue_type_script_setup_true_lang.f3cc5114.js b/public/admin/assets/index.vue_vue_type_script_setup_true_lang.f3cc5114.js new file mode 100644 index 000000000..dddea23fe --- /dev/null +++ b/public/admin/assets/index.vue_vue_type_script_setup_true_lang.f3cc5114.js @@ -0,0 +1 @@ +import{w as D,C as v,G as z,H as R,B as k,D as N}from"./element-plus.4328d892.js";import{f as i}from"./index.aa9bb752.js";import{P as S}from"./index.fa872673.js";import{d as U,s as E,$ as x,o as y,c as q,U as u,L as o,R as _,a as f,u as a,S as m,K as L,Q as O}from"./@vue.51d7f2d8.js";const j={class:"export-data"},G={class:"flex"},I=f("span",{class:"flex-none ml-2 mr-2"},"\u9875\uFF0C\u81F3",-1),Q=U({__name:"index",props:{params:{type:Object,default:()=>({})},pageSize:{type:Number,default:25},fetchFun:{type:Function,required:!0}},setup(A){const p=A,c=E(),g=E(),t=x({page_type:0,page_start:1,page_end:200,file_name:""}),b={page_start:[{required:!0,message:"\u8BF7\u8F93\u5165\u8D77\u59CB\u9875\u7801"},{type:"number",message:"\u9875\u7801\u5FC5\u987B\u662F\u6574\u6570"},{validator:(l,e,r)=>{if(e<=0)return r(new Error("\u9875\u7801\u5FC5\u987B\u5927\u4E8E0"));r()}}],page_end:[{required:!0,message:"\u8BF7\u8F93\u5165\u7ED3\u675F\u9875\u7801"},{type:"number",message:"\u9875\u7801\u5FC5\u987B\u662F\u6574\u6570"},{validator:(l,e,r)=>{if(e<=0)return r(new Error("\u9875\u7801\u5FC5\u987B\u5927\u4E8E0"));r()}}]},d=x({count:0,sum_page:0,page_size:0,max_page:0,all_max_size:0}),B=async()=>{const l=await p.fetchFun({...p.params,page_size:p.pageSize,export:1});Object.assign(d,l),t.file_name=l.file_name,t.page_end=l.page_end,t.page_start=l.page_start},V=async()=>{var l,e;await((l=c.value)==null?void 0:l.validate()),i.loading("\u6B63\u5728\u5BFC\u51FA\u4E2D...");try{await p.fetchFun({...p.params,...t,page_size:p.pageSize,export:2}),(e=g.value)==null||e.close(),i.closeLoading()}catch{i.closeLoading()}};return B(),(l,e)=>{const r=D,n=v,C=z,w=R,F=k,h=N;return y(),q("div",j,[u(S,{ref_key:"popupRef",ref:g,title:"\u5BFC\u51FA\u8BBE\u7F6E",width:"500px","confirm-button-text":"\u786E\u8BA4\u5BFC\u51FA",onConfirm:V,async:!0,onOpen:B},{trigger:o(()=>[u(r,null,{default:o(()=>[_("\u5BFC\u51FA")]),_:1})]),default:o(()=>[f("div",null,[u(h,{ref_key:"formRef",ref:c,model:a(t),"label-width":"120px",rules:b},{default:o(()=>[u(n,{label:"\u6570\u636E\u91CF\uFF1A"},{default:o(()=>[_(" \u9884\u8BA1\u5BFC\u51FA"+m(a(d).count)+"\u6761\u6570\u636E\uFF0C \u5171"+m(a(d).sum_page)+"\u9875\uFF0C\u6BCF\u9875"+m(a(d).page_size)+"\u6761\u6570\u636E ",1)]),_:1}),u(n,{label:"\u5BFC\u51FA\u9650\u5236\uFF1A"},{default:o(()=>[_(" \u6BCF\u6B21\u5BFC\u51FA\u6700\u5927\u5141\u8BB8"+m(a(d).max_page)+"\u9875\uFF0C\u5171"+m(a(d).all_max_size)+"\u6761\u6570\u636E ",1)]),_:1}),u(n,{prop:"page_type",label:"\u5BFC\u51FA\u8303\u56F4\uFF1A",required:""},{default:o(()=>[u(w,{modelValue:a(t).page_type,"onUpdate:modelValue":e[0]||(e[0]=s=>a(t).page_type=s)},{default:o(()=>[u(C,{label:0},{default:o(()=>[_("\u5168\u90E8\u5BFC\u51FA")]),_:1}),u(C,{label:1},{default:o(()=>[_("\u5206\u9875\u5BFC\u51FA")]),_:1})]),_:1},8,["modelValue"])]),_:1}),a(t).page_type==1?(y(),L(n,{key:0,label:"\u5206\u9875\u8303\u56F4\uFF1A"},{default:o(()=>[f("div",G,[u(n,{prop:"page_start"},{default:o(()=>[u(F,{style:{width:"140px"},modelValue:a(t).page_start,"onUpdate:modelValue":e[1]||(e[1]=s=>a(t).page_start=s),modelModifiers:{number:!0},placeholder:""},null,8,["modelValue"])]),_:1}),I,u(n,{prop:"page_end"},{default:o(()=>[u(F,{style:{width:"140px"},modelValue:a(t).page_end,"onUpdate:modelValue":e[2]||(e[2]=s=>a(t).page_end=s),modelModifiers:{number:!0},placeholder:""},null,8,["modelValue"])]),_:1})])]),_:1})):O("",!0),u(n,{label:"\u5BFC\u51FA\u6587\u4EF6\u540D\u79F0\uFF1A",prop:"file_name"},{default:o(()=>[u(F,{modelValue:a(t).file_name,"onUpdate:modelValue":e[3]||(e[3]=s=>a(t).file_name=s),placeholder:"\u8BF7\u8F93\u5165\u5BFC\u51FA\u6587\u4EF6\u540D\u79F0"},null,8,["modelValue"])]),_:1})]),_:1},8,["model"])])]),_:1},512)])}}});export{Q as _}; diff --git a/public/admin/assets/index.vue_vue_type_style_index_0_lang.2f5b0088.js b/public/admin/assets/index.vue_vue_type_style_index_0_lang.2f5b0088.js new file mode 100644 index 000000000..e01b9b100 --- /dev/null +++ b/public/admin/assets/index.vue_vue_type_style_index_0_lang.2f5b0088.js @@ -0,0 +1 @@ +import{T as y,E as b}from"./@wangeditor.afd76521.js";import{_ as w}from"./picker.597494a6.js";import{h as i}from"./index.ed71ac09.js";import{d as V,s as m,r as U,e as f,E as k,o as E,c as x,U as u,u as t,k as B,_ as R}from"./@vue.51d7f2d8.js";const F=V({__name:"index",props:{modelValue:{default:""},mode:{default:"default"},height:{default:"100%"},width:{default:"auto"},toolbarConfig:{default:()=>({})}},emits:["update:modelValue"],setup(p,{emit:c}){const l=p,a=m(),d=m(),n=U("");let r;const h={MENU_CONF:{uploadImage:{customBrowseAndUpload(e){var o;n.value="image",(o=d.value)==null||o.showPopup(-1),r=e}},uploadVideo:{customBrowseAndUpload(e){var o;n.value="video",(o=d.value)==null||o.showPopup(-1),r=e}}}},_=f(()=>({height:i(l.height),width:i(l.width)})),s=f({get(){return l.modelValue},set(e){c("update:modelValue",e)}}),g=e=>{e.forEach(o=>{r(o)})};k(()=>{const e=a.value;e!=null&&e.destroy()});const v=e=>{a.value=e};return(e,o)=>(E(),x("div",{class:"border border-br flex flex-col",style:R(t(_))},[u(t(y),{class:"border-b border-br",editor:t(a),defaultConfig:e.toolbarConfig,mode:e.mode},null,8,["editor","defaultConfig","mode"]),u(t(b),{class:"overflow-y-auto flex-1",modelValue:t(s),"onUpdate:modelValue":o[0]||(o[0]=C=>B(s)?s.value=C:null),defaultConfig:h,mode:e.mode,onOnCreated:v},null,8,["modelValue","mode"]),u(w,{ref_key:"materialPickerRef",ref:d,type:t(n),limit:-1,"hidden-upload":"",onChange:g},null,8,["type"])],4))}});export{F as _}; diff --git a/public/admin/assets/index.vue_vue_type_style_index_0_lang.60c96350.js b/public/admin/assets/index.vue_vue_type_style_index_0_lang.60c96350.js new file mode 100644 index 000000000..9d44e5b99 --- /dev/null +++ b/public/admin/assets/index.vue_vue_type_style_index_0_lang.60c96350.js @@ -0,0 +1 @@ +import{T as y,E as b}from"./@wangeditor.afd76521.js";import{_ as w}from"./picker.3821e495.js";import{h as i}from"./index.37f7aea6.js";import{d as V,s as m,r as U,e as f,E as k,o as E,c as x,U as u,u as t,k as B,_ as R}from"./@vue.51d7f2d8.js";const F=V({__name:"index",props:{modelValue:{default:""},mode:{default:"default"},height:{default:"100%"},width:{default:"auto"},toolbarConfig:{default:()=>({})}},emits:["update:modelValue"],setup(p,{emit:c}){const l=p,a=m(),d=m(),n=U("");let r;const h={MENU_CONF:{uploadImage:{customBrowseAndUpload(e){var o;n.value="image",(o=d.value)==null||o.showPopup(-1),r=e}},uploadVideo:{customBrowseAndUpload(e){var o;n.value="video",(o=d.value)==null||o.showPopup(-1),r=e}}}},_=f(()=>({height:i(l.height),width:i(l.width)})),s=f({get(){return l.modelValue},set(e){c("update:modelValue",e)}}),g=e=>{e.forEach(o=>{r(o)})};k(()=>{const e=a.value;e!=null&&e.destroy()});const v=e=>{a.value=e};return(e,o)=>(E(),x("div",{class:"border border-br flex flex-col",style:R(t(_))},[u(t(y),{class:"border-b border-br",editor:t(a),defaultConfig:e.toolbarConfig,mode:e.mode},null,8,["editor","defaultConfig","mode"]),u(t(b),{class:"overflow-y-auto flex-1",modelValue:t(s),"onUpdate:modelValue":o[0]||(o[0]=C=>B(s)?s.value=C:null),defaultConfig:h,mode:e.mode,onOnCreated:v},null,8,["modelValue","mode"]),u(w,{ref_key:"materialPickerRef",ref:d,type:t(n),limit:-1,"hidden-upload":"",onChange:g},null,8,["type"])],4))}});export{F as _}; diff --git a/public/admin/assets/index.vue_vue_type_style_index_0_lang.8e405d58.js b/public/admin/assets/index.vue_vue_type_style_index_0_lang.8e405d58.js new file mode 100644 index 000000000..e1004243f --- /dev/null +++ b/public/admin/assets/index.vue_vue_type_style_index_0_lang.8e405d58.js @@ -0,0 +1 @@ +import{T as y,E as b}from"./@wangeditor.afd76521.js";import{_ as w}from"./picker.45aea54f.js";import{h as i}from"./index.aa9bb752.js";import{d as V,s as m,r as U,e as f,E as k,o as E,c as x,U as u,u as t,k as B,_ as R}from"./@vue.51d7f2d8.js";const F=V({__name:"index",props:{modelValue:{default:""},mode:{default:"default"},height:{default:"100%"},width:{default:"auto"},toolbarConfig:{default:()=>({})}},emits:["update:modelValue"],setup(p,{emit:c}){const l=p,a=m(),d=m(),n=U("");let r;const h={MENU_CONF:{uploadImage:{customBrowseAndUpload(e){var o;n.value="image",(o=d.value)==null||o.showPopup(-1),r=e}},uploadVideo:{customBrowseAndUpload(e){var o;n.value="video",(o=d.value)==null||o.showPopup(-1),r=e}}}},_=f(()=>({height:i(l.height),width:i(l.width)})),s=f({get(){return l.modelValue},set(e){c("update:modelValue",e)}}),g=e=>{e.forEach(o=>{r(o)})};k(()=>{const e=a.value;e!=null&&e.destroy()});const v=e=>{a.value=e};return(e,o)=>(E(),x("div",{class:"border border-br flex flex-col",style:R(t(_))},[u(t(y),{class:"border-b border-br",editor:t(a),defaultConfig:e.toolbarConfig,mode:e.mode},null,8,["editor","defaultConfig","mode"]),u(t(b),{class:"overflow-y-auto flex-1",modelValue:t(s),"onUpdate:modelValue":o[0]||(o[0]=C=>B(s)?s.value=C:null),defaultConfig:h,mode:e.mode,onOnCreated:v},null,8,["modelValue","mode"]),u(w,{ref_key:"materialPickerRef",ref:d,type:t(n),limit:-1,"hidden-upload":"",onChange:g},null,8,["type"])],4))}});export{F as _}; diff --git a/public/admin/assets/index_list.573fdb25.js b/public/admin/assets/index_list.573fdb25.js new file mode 100644 index 000000000..f03da8c28 --- /dev/null +++ b/public/admin/assets/index_list.573fdb25.js @@ -0,0 +1 @@ +import{B as M,C as O,M as Q,N as j,w as q,D as K,I as z,O as G,P as H,Q as J}from"./element-plus.4328d892.js";import{_ as W}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{u as X}from"./usePaging.2ad8e1e6.js";import{u as Y}from"./useDictOptions.a61fcf9f.js";import{h as Z}from"./examined.fccbde31.js";import"./lodash.08438971.js";import"./index.aa9bb752.js";import ee from"./index_list_popup.4e457b91.js";import{d as A,s as te,r as E,$ as oe,af as ae,o as s,c as p,U as e,L as a,u as o,T as le,a7 as ue,K as m,R as f,M as B,a as y,Q as k,k as se,n as ne}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.fa872673.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";const re={class:"mt-4"},ie={key:0,style:{color:"#f56c6c"}},pe={key:1,style:{color:"#67c23a"}},me={key:2,style:{color:"#e6a23c"}},ce={class:"flex mt-4 justify-end"},de=A({name:"flowLists"}),ot=A({...de,setup(_e){const F=te(),h=E(!1),n=oe({name:"",check_status:"",type:1}),D=E([{id:1,name:"\u5F85\u5BA1\u6838"},{id:2,name:"\u5DF2\u901A\u8FC7"},{id:3,name:"\u672A\u901A\u8FC7"}]),g=E([]),V=c=>{g.value=c.map(({id:l})=>l)},{dictData:x}=Y(""),{pager:i,getLists:v,resetParams:L,resetPage:P}=X({fetchFun:Z,params:n}),b=async(c,l="edit")=>{var d,r;h.value=!0,await ne(),(d=F.value)==null||d.open(l),(r=F.value)==null||r.setFormData(c)};return v(),(c,l)=>{const d=M,r=O,S=Q,N=j,_=q,R=K,w=z,u=G,T=H,$=W,I=ae("perms"),U=J;return s(),p("div",null,[e(w,{class:"!border-none mb-4",shadow:"never"},{default:a(()=>[e(R,{class:"mb-[-16px]",model:o(n),inline:""},{default:a(()=>[e(r,{label:"\u4EFB\u52A1\u540D\u79F0",prop:"name"},{default:a(()=>[e(d,{class:"w-[280px]",modelValue:o(n).name,"onUpdate:modelValue":l[0]||(l[0]=t=>o(n).name=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u4EFB\u52A1\u540D\u79F0"},null,8,["modelValue"])]),_:1}),e(r,{label:"\u5BA1\u6838\u72B6\u6001",prop:"name"},{default:a(()=>[e(N,{modelValue:o(n).check_status,"onUpdate:modelValue":l[1]||(l[1]=t=>o(n).check_status=t),placeholder:"\u8BF7\u9009\u62E9\u5BA1\u6838\u72B6\u6001",clearable:"",class:"w-[280px]"},{default:a(()=>[(s(!0),p(le,null,ue(o(D),(t,C)=>(s(),m(S,{key:C,label:t.name,value:t.id},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1}),e(r,null,{default:a(()=>[e(_,{type:"primary",onClick:o(P)},{default:a(()=>[f("\u67E5\u8BE2")]),_:1},8,["onClick"]),e(_,{onClick:o(L)},{default:a(()=>[f("\u91CD\u7F6E")]),_:1},8,["onClick"])]),_:1})]),_:1},8,["model"])]),_:1}),B((s(),m(w,{class:"!border-none",shadow:"never"},{default:a(()=>[y("div",re,[e(T,{data:o(i).lists,onSelectionChange:V},{default:a(()=>[e(u,{label:"ID",prop:"id"}),e(u,{label:"\u4EFB\u52A1\u540D\u79F0",prop:"task.title","show-overflow-tooltip":""}),e(u,{label:"\u4EFB\u52A1\u63CF\u8FF0",prop:"task.content","show-overflow-tooltip":""}),e(u,{label:"\u4EFB\u52A1\u91D1\u989D",prop:"task.money","show-overflow-tooltip":""}),e(u,{label:"\u4EFB\u52A1\u63D0\u4EA4\u65F6\u95F4",prop:"task.update_time","show-overflow-tooltip":""}),e(u,{label:"\u516C\u53F8\u540D\u79F0",prop:"company_name","show-overflow-tooltip":""}),e(u,{label:"\u7247\u533A\u7ECF\u7406",prop:"area_manager","show-overflow-tooltip":""}),e(u,{label:"\u5BA1\u6838\u72B6\u6001",prop:"check_status","show-overflow-tooltip":""},{default:a(({row:t})=>[t.check_status==3?(s(),p("span",ie,"\u672A\u901A\u8FC7")):k("",!0),t.check_status==2?(s(),p("span",pe,"\u5DF2\u901A\u8FC7")):k("",!0),t.check_status==1?(s(),p("span",me,"\u5F85\u5BA1\u6838")):k("",!0)]),_:1}),e(u,{label:"\u5907\u6CE8",prop:"remark","show-overflow-tooltip":""}),e(u,{label:"\u64CD\u4F5C",width:"120",fixed:"right"},{default:a(({row:t})=>[t.check_status<=1?B((s(),m(_,{key:0,type:"primary",link:"",onClick:C=>b(t,"edit")},{default:a(()=>[f(" \u5BA1\u6838 ")]),_:2},1032,["onClick"])),[[I,["flow/edit"]]]):(s(),m(_,{key:1,type:"primary",link:"",onClick:C=>b(t,"details")},{default:a(()=>[f(" \u8BE6\u60C5 ")]),_:2},1032,["onClick"]))]),_:1})]),_:1},8,["data"])]),y("div",ce,[e($,{modelValue:o(i),"onUpdate:modelValue":l[2]||(l[2]=t=>se(i)?i.value=t:null),onChange:o(v)},null,8,["modelValue","onChange"])])]),_:1})),[[U,o(i).loading]]),o(h)?(s(),m(ee,{key:0,ref_key:"editRef",ref:F,"dict-data":o(x),onSuccess:o(v),onClose:l[3]||(l[3]=t=>h.value=!1)},null,8,["dict-data","onSuccess"])):k("",!0)])}}});export{ot as default}; diff --git a/public/admin/assets/index_list.8668e646.js b/public/admin/assets/index_list.8668e646.js new file mode 100644 index 000000000..23ccd5e3b --- /dev/null +++ b/public/admin/assets/index_list.8668e646.js @@ -0,0 +1 @@ +import{B as M,C as O,M as Q,N as j,w as q,D as K,I as z,O as G,P as H,Q as J}from"./element-plus.4328d892.js";import{_ as W}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{u as X}from"./usePaging.2ad8e1e6.js";import{u as Y}from"./useDictOptions.a45fc8ac.js";import{h as Z}from"./examined.28c87019.js";import"./lodash.08438971.js";import"./index.37f7aea6.js";import ee from"./index_list_popup.83ac90c2.js";import{d as A,s as te,r as E,$ as oe,af as ae,o as s,c as p,U as e,L as a,u as o,T as le,a7 as ue,K as m,R as f,M as B,a as y,Q as k,k as se,n as ne}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.5759a1a6.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";const re={class:"mt-4"},ie={key:0,style:{color:"#f56c6c"}},pe={key:1,style:{color:"#67c23a"}},me={key:2,style:{color:"#e6a23c"}},ce={class:"flex mt-4 justify-end"},de=A({name:"flowLists"}),ot=A({...de,setup(_e){const F=te(),h=E(!1),n=oe({name:"",check_status:"",type:1}),D=E([{id:1,name:"\u5F85\u5BA1\u6838"},{id:2,name:"\u5DF2\u901A\u8FC7"},{id:3,name:"\u672A\u901A\u8FC7"}]),g=E([]),V=c=>{g.value=c.map(({id:l})=>l)},{dictData:x}=Y(""),{pager:i,getLists:v,resetParams:L,resetPage:P}=X({fetchFun:Z,params:n}),b=async(c,l="edit")=>{var d,r;h.value=!0,await ne(),(d=F.value)==null||d.open(l),(r=F.value)==null||r.setFormData(c)};return v(),(c,l)=>{const d=M,r=O,S=Q,N=j,_=q,R=K,w=z,u=G,T=H,$=W,I=ae("perms"),U=J;return s(),p("div",null,[e(w,{class:"!border-none mb-4",shadow:"never"},{default:a(()=>[e(R,{class:"mb-[-16px]",model:o(n),inline:""},{default:a(()=>[e(r,{label:"\u4EFB\u52A1\u540D\u79F0",prop:"name"},{default:a(()=>[e(d,{class:"w-[280px]",modelValue:o(n).name,"onUpdate:modelValue":l[0]||(l[0]=t=>o(n).name=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u4EFB\u52A1\u540D\u79F0"},null,8,["modelValue"])]),_:1}),e(r,{label:"\u5BA1\u6838\u72B6\u6001",prop:"name"},{default:a(()=>[e(N,{modelValue:o(n).check_status,"onUpdate:modelValue":l[1]||(l[1]=t=>o(n).check_status=t),placeholder:"\u8BF7\u9009\u62E9\u5BA1\u6838\u72B6\u6001",clearable:"",class:"w-[280px]"},{default:a(()=>[(s(!0),p(le,null,ue(o(D),(t,C)=>(s(),m(S,{key:C,label:t.name,value:t.id},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1}),e(r,null,{default:a(()=>[e(_,{type:"primary",onClick:o(P)},{default:a(()=>[f("\u67E5\u8BE2")]),_:1},8,["onClick"]),e(_,{onClick:o(L)},{default:a(()=>[f("\u91CD\u7F6E")]),_:1},8,["onClick"])]),_:1})]),_:1},8,["model"])]),_:1}),B((s(),m(w,{class:"!border-none",shadow:"never"},{default:a(()=>[y("div",re,[e(T,{data:o(i).lists,onSelectionChange:V},{default:a(()=>[e(u,{label:"ID",prop:"id"}),e(u,{label:"\u4EFB\u52A1\u540D\u79F0",prop:"task.title","show-overflow-tooltip":""}),e(u,{label:"\u4EFB\u52A1\u63CF\u8FF0",prop:"task.content","show-overflow-tooltip":""}),e(u,{label:"\u4EFB\u52A1\u91D1\u989D",prop:"task.money","show-overflow-tooltip":""}),e(u,{label:"\u4EFB\u52A1\u63D0\u4EA4\u65F6\u95F4",prop:"task.update_time","show-overflow-tooltip":""}),e(u,{label:"\u516C\u53F8\u540D\u79F0",prop:"company_name","show-overflow-tooltip":""}),e(u,{label:"\u7247\u533A\u7ECF\u7406",prop:"area_manager","show-overflow-tooltip":""}),e(u,{label:"\u5BA1\u6838\u72B6\u6001",prop:"check_status","show-overflow-tooltip":""},{default:a(({row:t})=>[t.check_status==3?(s(),p("span",ie,"\u672A\u901A\u8FC7")):k("",!0),t.check_status==2?(s(),p("span",pe,"\u5DF2\u901A\u8FC7")):k("",!0),t.check_status==1?(s(),p("span",me,"\u5F85\u5BA1\u6838")):k("",!0)]),_:1}),e(u,{label:"\u5907\u6CE8",prop:"remark","show-overflow-tooltip":""}),e(u,{label:"\u64CD\u4F5C",width:"120",fixed:"right"},{default:a(({row:t})=>[t.check_status<=1?B((s(),m(_,{key:0,type:"primary",link:"",onClick:C=>b(t,"edit")},{default:a(()=>[f(" \u5BA1\u6838 ")]),_:2},1032,["onClick"])),[[I,["flow/edit"]]]):(s(),m(_,{key:1,type:"primary",link:"",onClick:C=>b(t,"details")},{default:a(()=>[f(" \u8BE6\u60C5 ")]),_:2},1032,["onClick"]))]),_:1})]),_:1},8,["data"])]),y("div",ce,[e($,{modelValue:o(i),"onUpdate:modelValue":l[2]||(l[2]=t=>se(i)?i.value=t:null),onChange:o(v)},null,8,["modelValue","onChange"])])]),_:1})),[[U,o(i).loading]]),o(h)?(s(),m(ee,{key:0,ref_key:"editRef",ref:F,"dict-data":o(x),onSuccess:o(v),onClose:l[3]||(l[3]=t=>h.value=!1)},null,8,["dict-data","onSuccess"])):k("",!0)])}}});export{ot as default}; diff --git a/public/admin/assets/index_list.f5e34705.js b/public/admin/assets/index_list.f5e34705.js new file mode 100644 index 000000000..a4fb20c0d --- /dev/null +++ b/public/admin/assets/index_list.f5e34705.js @@ -0,0 +1 @@ +import{B as M,C as O,M as Q,N as j,w as q,D as K,I as z,O as G,P as H,Q as J}from"./element-plus.4328d892.js";import{_ as W}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{u as X}from"./usePaging.2ad8e1e6.js";import{u as Y}from"./useDictOptions.8d37e54b.js";import{h as Z}from"./examined.594ad8f6.js";import"./lodash.08438971.js";import"./index.ed71ac09.js";import ee from"./index_list_popup.45f00dd2.js";import{d as A,s as te,r as E,$ as oe,af as ae,o as s,c as p,U as e,L as a,u as o,T as le,a7 as ue,K as m,R as f,M as B,a as y,Q as k,k as se,n as ne}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.b940d6e3.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";const re={class:"mt-4"},ie={key:0,style:{color:"#f56c6c"}},pe={key:1,style:{color:"#67c23a"}},me={key:2,style:{color:"#e6a23c"}},ce={class:"flex mt-4 justify-end"},de=A({name:"flowLists"}),ot=A({...de,setup(_e){const F=te(),h=E(!1),n=oe({name:"",check_status:"",type:1}),D=E([{id:1,name:"\u5F85\u5BA1\u6838"},{id:2,name:"\u5DF2\u901A\u8FC7"},{id:3,name:"\u672A\u901A\u8FC7"}]),g=E([]),V=c=>{g.value=c.map(({id:l})=>l)},{dictData:x}=Y(""),{pager:i,getLists:v,resetParams:L,resetPage:P}=X({fetchFun:Z,params:n}),b=async(c,l="edit")=>{var d,r;h.value=!0,await ne(),(d=F.value)==null||d.open(l),(r=F.value)==null||r.setFormData(c)};return v(),(c,l)=>{const d=M,r=O,S=Q,N=j,_=q,R=K,w=z,u=G,T=H,$=W,I=ae("perms"),U=J;return s(),p("div",null,[e(w,{class:"!border-none mb-4",shadow:"never"},{default:a(()=>[e(R,{class:"mb-[-16px]",model:o(n),inline:""},{default:a(()=>[e(r,{label:"\u4EFB\u52A1\u540D\u79F0",prop:"name"},{default:a(()=>[e(d,{class:"w-[280px]",modelValue:o(n).name,"onUpdate:modelValue":l[0]||(l[0]=t=>o(n).name=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u4EFB\u52A1\u540D\u79F0"},null,8,["modelValue"])]),_:1}),e(r,{label:"\u5BA1\u6838\u72B6\u6001",prop:"name"},{default:a(()=>[e(N,{modelValue:o(n).check_status,"onUpdate:modelValue":l[1]||(l[1]=t=>o(n).check_status=t),placeholder:"\u8BF7\u9009\u62E9\u5BA1\u6838\u72B6\u6001",clearable:"",class:"w-[280px]"},{default:a(()=>[(s(!0),p(le,null,ue(o(D),(t,C)=>(s(),m(S,{key:C,label:t.name,value:t.id},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1}),e(r,null,{default:a(()=>[e(_,{type:"primary",onClick:o(P)},{default:a(()=>[f("\u67E5\u8BE2")]),_:1},8,["onClick"]),e(_,{onClick:o(L)},{default:a(()=>[f("\u91CD\u7F6E")]),_:1},8,["onClick"])]),_:1})]),_:1},8,["model"])]),_:1}),B((s(),m(w,{class:"!border-none",shadow:"never"},{default:a(()=>[y("div",re,[e(T,{data:o(i).lists,onSelectionChange:V},{default:a(()=>[e(u,{label:"ID",prop:"id"}),e(u,{label:"\u4EFB\u52A1\u540D\u79F0",prop:"task.title","show-overflow-tooltip":""}),e(u,{label:"\u4EFB\u52A1\u63CF\u8FF0",prop:"task.content","show-overflow-tooltip":""}),e(u,{label:"\u4EFB\u52A1\u91D1\u989D",prop:"task.money","show-overflow-tooltip":""}),e(u,{label:"\u4EFB\u52A1\u63D0\u4EA4\u65F6\u95F4",prop:"task.update_time","show-overflow-tooltip":""}),e(u,{label:"\u516C\u53F8\u540D\u79F0",prop:"company_name","show-overflow-tooltip":""}),e(u,{label:"\u7247\u533A\u7ECF\u7406",prop:"area_manager","show-overflow-tooltip":""}),e(u,{label:"\u5BA1\u6838\u72B6\u6001",prop:"check_status","show-overflow-tooltip":""},{default:a(({row:t})=>[t.check_status==3?(s(),p("span",ie,"\u672A\u901A\u8FC7")):k("",!0),t.check_status==2?(s(),p("span",pe,"\u5DF2\u901A\u8FC7")):k("",!0),t.check_status==1?(s(),p("span",me,"\u5F85\u5BA1\u6838")):k("",!0)]),_:1}),e(u,{label:"\u5907\u6CE8",prop:"remark","show-overflow-tooltip":""}),e(u,{label:"\u64CD\u4F5C",width:"120",fixed:"right"},{default:a(({row:t})=>[t.check_status<=1?B((s(),m(_,{key:0,type:"primary",link:"",onClick:C=>b(t,"edit")},{default:a(()=>[f(" \u5BA1\u6838 ")]),_:2},1032,["onClick"])),[[I,["flow/edit"]]]):(s(),m(_,{key:1,type:"primary",link:"",onClick:C=>b(t,"details")},{default:a(()=>[f(" \u8BE6\u60C5 ")]),_:2},1032,["onClick"]))]),_:1})]),_:1},8,["data"])]),y("div",ce,[e($,{modelValue:o(i),"onUpdate:modelValue":l[2]||(l[2]=t=>se(i)?i.value=t:null),onChange:o(v)},null,8,["modelValue","onChange"])])]),_:1})),[[U,o(i).loading]]),o(h)?(s(),m(ee,{key:0,ref_key:"editRef",ref:F,"dict-data":o(x),onSuccess:o(v),onClose:l[3]||(l[3]=t=>h.value=!1)},null,8,["dict-data","onSuccess"])):k("",!0)])}}});export{ot as default}; diff --git a/public/admin/assets/index_list_popup.45f00dd2.js b/public/admin/assets/index_list_popup.45f00dd2.js new file mode 100644 index 000000000..d9b3d13eb --- /dev/null +++ b/public/admin/assets/index_list_popup.45f00dd2.js @@ -0,0 +1 @@ +import{a4 as L,k as N,B as j,C as q,a1 as H,a2 as K,b as O,G as S,H as $,D as z}from"./element-plus.4328d892.js";import{P as J}from"./index.b940d6e3.js";import{i as Q}from"./examined.594ad8f6.js";import"./lodash.08438971.js";import{d as A,r as k,s as F,e as W,$ as v,o as m,c as _,U as e,L as a,u as o,T as C,a7 as x,K as X,R as B}from"./@vue.51d7f2d8.js";import{d as Y}from"./index.ed71ac09.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const Z={class:"edit-popup"},ee=["src"],te=A({name:"flowEdit"}),ae=A({...te,props:{dictData:{type:Object,default:()=>({})}},emits:["success","close"],setup(le,{expose:w,emit:y}){k(!1);const E=F(),c=F(),p=k("add"),D=W(()=>p.value=="edit"?"\u5BA1\u6838":"\u8BE6\u60C5");k([{content:"\u4EFB\u52A1\u5B8C\u6210",timestamp:"2023-8-28 13:30:00"},{content:"\u5F20\u4E09\u4E09\u5BA1\u6838",timestamp:"2023-8-28 13:30:00"},{content:"\u674E\u601D\u601D\u5BA1\u6838",timestamp:"2023-8-28 13:30:00",type:"primary",hollow:!0}]);const l=v({id:"",task:{},company_name:"",area_manager:"",check_status:1,remark:""}),g=v({check_status:[{required:!0,validator:(d,t,r)=>{t!=2&&t!=3?r("\u8BF7\u9009\u62E9\u5BA1\u6838\u72B6\u6001"):r()},trigger:["blur"]}]}),R=async d=>{for(const t in l)d[t]!=null&&d[t]!=null&&(l[t]=d[t])},U=async d=>{},h=async()=>{var d,t;if(await((d=E.value)==null?void 0:d.validate()),l.check_status==3&&l.remark=="")return N.error("\u9A73\u56DE\u5FC5\u987B\u586B\u5199\u5907\u6CE8");await Q({id:l.id,check_status:l.check_status,remark:l.remark}),(t=c.value)==null||t.close(),y("success")},I=(d="add")=>{var t;p.value=d,(t=c.value)==null||t.open()},M=()=>{y("close")};return w({open:I,setFormData:R,getDetail:U}),(d,t)=>{const r=j,n=q,s=H,f=K,b=L,P=O,V=S,T=$,G=z;return m(),_("div",Z,[e(J,{ref_key:"popupRef",ref:c,title:o(D),async:!0,width:"800px",onConfirm:h,onClose:M,button:o(p)=="edit",clickModalClose:o(p)=="details"},{default:a(()=>[e(G,{ref_key:"formRef",ref:E,model:o(l),rules:o(g),"label-width":"120px"},{default:a(()=>[e(f,null,{default:a(()=>[e(s,{span:12},{default:a(()=>[e(n,{label:"ID",prop:"id"},{default:a(()=>[e(r,{readonly:"",modelValue:o(l).id,"onUpdate:modelValue":t[0]||(t[0]=u=>o(l).id=u)},null,8,["modelValue"])]),_:1})]),_:1}),e(s,{span:12},{default:a(()=>[e(n,{label:"\u4EFB\u52A1\u540D\u79F0",prop:"task.title"},{default:a(()=>[e(r,{readonly:"",modelValue:o(l).task.title,"onUpdate:modelValue":t[1]||(t[1]=u=>o(l).task.title=u)},null,8,["modelValue"])]),_:1})]),_:1}),e(s,{span:12},{default:a(()=>[e(n,{label:"\u4EFB\u52A1\u91D1\u989D",prop:"task.money"},{default:a(()=>[e(r,{readonly:"",modelValue:o(l).task.money,"onUpdate:modelValue":t[2]||(t[2]=u=>o(l).task.money=u)},null,8,["modelValue"])]),_:1})]),_:1}),e(s,{span:12},{default:a(()=>[e(n,{label:"\u6240\u5C5E\u516C\u53F8",prop:"company_name"},{default:a(()=>[e(r,{readonly:"",modelValue:o(l).company_name,"onUpdate:modelValue":t[3]||(t[3]=u=>o(l).company_name=u)},null,8,["modelValue"])]),_:1})]),_:1}),e(s,{span:24},{default:a(()=>[e(n,{label:"\u4EFB\u52A1\u63CF\u8FF0",prop:"task.content"},{default:a(()=>[e(r,{readonly:"",modelValue:o(l).task.content,"onUpdate:modelValue":t[4]||(t[4]=u=>o(l).task.content=u),clearable:"",type:"textarea"},null,8,["modelValue"])]),_:1})]),_:1}),e(s,{span:12},{default:a(()=>[e(n,{label:"\u4EFB\u52A1\u63D0\u4EA4\u65F6\u95F4",prop:"id"},{default:a(()=>[e(r,{readonly:"",modelValue:o(l).task.update_time,"onUpdate:modelValue":t[5]||(t[5]=u=>o(l).task.update_time=u)},null,8,["modelValue"])]),_:1})]),_:1}),e(s,{span:12},{default:a(()=>[e(n,{label:"\u7247\u533A\u7ECF\u7406",prop:"flow_cate"},{default:a(()=>[e(r,{readonly:"",modelValue:o(l).area_manager,"onUpdate:modelValue":t[6]||(t[6]=u=>o(l).area_manager=u)},null,8,["modelValue"])]),_:1})]),_:1})]),_:1}),e(b),e(f,null,{default:a(()=>[e(s,{span:24},{default:a(()=>[e(n,{label:"\u8BE6\u60C5\u63CF\u8FF0",prop:"remark"},{default:a(()=>{var u;return[e(r,{readonly:"",value:(u=o(l).task)==null?void 0:u.extend.other.note,clearable:"",type:"textarea"},null,8,["value"])]}),_:1})]),_:1}),e(s,{span:24},{default:a(()=>[e(n,{label:"\u56FE\u7247\u9644\u4EF6"},{default:a(()=>[(m(!0),_(C,null,x(o(l).task.extend.other.annex,(u,i)=>(m(),X(P,{class:"attachment",key:i,src:u,"preview-src-list":o(l).task.extend.other.annex,"initial-index":i,fit:"cover"},null,8,["src","preview-src-list","initial-index"]))),128))]),_:1})]),_:1}),e(s,{span:24},{default:a(()=>[e(n,{label:"\u89C6\u9891\u9644\u4EF6"},{default:a(()=>[(m(!0),_(C,null,x(o(l).task.extend.other.video_annex,(u,i)=>(m(),_("video",{class:"video",src:u,key:i,controls:""},null,8,ee))),128))]),_:1})]),_:1})]),_:1}),e(b),e(s,{span:12},{default:a(()=>[e(n,{label:"\u5BA1\u6838",prop:"check_status",clearable:"",style:{width:"100%"}},{default:a(()=>[e(T,{disabled:o(p)=="details",modelValue:o(l).check_status,"onUpdate:modelValue":t[7]||(t[7]=u=>o(l).check_status=u)},{default:a(()=>[e(V,{label:2},{default:a(()=>[B("\u901A\u8FC7")]),_:1}),e(V,{label:3},{default:a(()=>[B("\u9A73\u56DE")]),_:1})]),_:1},8,["disabled","modelValue"])]),_:1})]),_:1}),e(f,null,{default:a(()=>[e(s,null,{default:a(()=>[e(n,{label:"\u5907\u6CE8",prop:"remark"},{default:a(()=>[e(r,{readonly:o(p)=="details",modelValue:o(l).remark,"onUpdate:modelValue":t[8]||(t[8]=u=>o(l).remark=u),clearable:"",type:"textarea"},null,8,["readonly","modelValue"])]),_:1})]),_:1})]),_:1})]),_:1},8,["model","rules"])]),_:1},8,["title","button","clickModalClose"])])}}});const qe=Y(ae,[["__scopeId","data-v-707b58fb"]]);export{qe as default}; diff --git a/public/admin/assets/index_list_popup.4e457b91.js b/public/admin/assets/index_list_popup.4e457b91.js new file mode 100644 index 000000000..197fbb319 --- /dev/null +++ b/public/admin/assets/index_list_popup.4e457b91.js @@ -0,0 +1 @@ +import{a4 as L,k as N,B as j,C as q,a1 as H,a2 as K,b as O,G as S,H as $,D as z}from"./element-plus.4328d892.js";import{P as J}from"./index.fa872673.js";import{i as Q}from"./examined.fccbde31.js";import"./lodash.08438971.js";import{d as A,r as k,s as F,e as W,$ as v,o as m,c as _,U as e,L as a,u as o,T as C,a7 as x,K as X,R as B}from"./@vue.51d7f2d8.js";import{d as Y}from"./index.aa9bb752.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const Z={class:"edit-popup"},ee=["src"],te=A({name:"flowEdit"}),ae=A({...te,props:{dictData:{type:Object,default:()=>({})}},emits:["success","close"],setup(le,{expose:w,emit:y}){k(!1);const E=F(),c=F(),p=k("add"),D=W(()=>p.value=="edit"?"\u5BA1\u6838":"\u8BE6\u60C5");k([{content:"\u4EFB\u52A1\u5B8C\u6210",timestamp:"2023-8-28 13:30:00"},{content:"\u5F20\u4E09\u4E09\u5BA1\u6838",timestamp:"2023-8-28 13:30:00"},{content:"\u674E\u601D\u601D\u5BA1\u6838",timestamp:"2023-8-28 13:30:00",type:"primary",hollow:!0}]);const l=v({id:"",task:{},company_name:"",area_manager:"",check_status:1,remark:""}),g=v({check_status:[{required:!0,validator:(d,t,r)=>{t!=2&&t!=3?r("\u8BF7\u9009\u62E9\u5BA1\u6838\u72B6\u6001"):r()},trigger:["blur"]}]}),R=async d=>{for(const t in l)d[t]!=null&&d[t]!=null&&(l[t]=d[t])},U=async d=>{},h=async()=>{var d,t;if(await((d=E.value)==null?void 0:d.validate()),l.check_status==3&&l.remark=="")return N.error("\u9A73\u56DE\u5FC5\u987B\u586B\u5199\u5907\u6CE8");await Q({id:l.id,check_status:l.check_status,remark:l.remark}),(t=c.value)==null||t.close(),y("success")},I=(d="add")=>{var t;p.value=d,(t=c.value)==null||t.open()},M=()=>{y("close")};return w({open:I,setFormData:R,getDetail:U}),(d,t)=>{const r=j,n=q,s=H,f=K,b=L,P=O,V=S,T=$,G=z;return m(),_("div",Z,[e(J,{ref_key:"popupRef",ref:c,title:o(D),async:!0,width:"800px",onConfirm:h,onClose:M,button:o(p)=="edit",clickModalClose:o(p)=="details"},{default:a(()=>[e(G,{ref_key:"formRef",ref:E,model:o(l),rules:o(g),"label-width":"120px"},{default:a(()=>[e(f,null,{default:a(()=>[e(s,{span:12},{default:a(()=>[e(n,{label:"ID",prop:"id"},{default:a(()=>[e(r,{readonly:"",modelValue:o(l).id,"onUpdate:modelValue":t[0]||(t[0]=u=>o(l).id=u)},null,8,["modelValue"])]),_:1})]),_:1}),e(s,{span:12},{default:a(()=>[e(n,{label:"\u4EFB\u52A1\u540D\u79F0",prop:"task.title"},{default:a(()=>[e(r,{readonly:"",modelValue:o(l).task.title,"onUpdate:modelValue":t[1]||(t[1]=u=>o(l).task.title=u)},null,8,["modelValue"])]),_:1})]),_:1}),e(s,{span:12},{default:a(()=>[e(n,{label:"\u4EFB\u52A1\u91D1\u989D",prop:"task.money"},{default:a(()=>[e(r,{readonly:"",modelValue:o(l).task.money,"onUpdate:modelValue":t[2]||(t[2]=u=>o(l).task.money=u)},null,8,["modelValue"])]),_:1})]),_:1}),e(s,{span:12},{default:a(()=>[e(n,{label:"\u6240\u5C5E\u516C\u53F8",prop:"company_name"},{default:a(()=>[e(r,{readonly:"",modelValue:o(l).company_name,"onUpdate:modelValue":t[3]||(t[3]=u=>o(l).company_name=u)},null,8,["modelValue"])]),_:1})]),_:1}),e(s,{span:24},{default:a(()=>[e(n,{label:"\u4EFB\u52A1\u63CF\u8FF0",prop:"task.content"},{default:a(()=>[e(r,{readonly:"",modelValue:o(l).task.content,"onUpdate:modelValue":t[4]||(t[4]=u=>o(l).task.content=u),clearable:"",type:"textarea"},null,8,["modelValue"])]),_:1})]),_:1}),e(s,{span:12},{default:a(()=>[e(n,{label:"\u4EFB\u52A1\u63D0\u4EA4\u65F6\u95F4",prop:"id"},{default:a(()=>[e(r,{readonly:"",modelValue:o(l).task.update_time,"onUpdate:modelValue":t[5]||(t[5]=u=>o(l).task.update_time=u)},null,8,["modelValue"])]),_:1})]),_:1}),e(s,{span:12},{default:a(()=>[e(n,{label:"\u7247\u533A\u7ECF\u7406",prop:"flow_cate"},{default:a(()=>[e(r,{readonly:"",modelValue:o(l).area_manager,"onUpdate:modelValue":t[6]||(t[6]=u=>o(l).area_manager=u)},null,8,["modelValue"])]),_:1})]),_:1})]),_:1}),e(b),e(f,null,{default:a(()=>[e(s,{span:24},{default:a(()=>[e(n,{label:"\u8BE6\u60C5\u63CF\u8FF0",prop:"remark"},{default:a(()=>{var u;return[e(r,{readonly:"",value:(u=o(l).task)==null?void 0:u.extend.other.note,clearable:"",type:"textarea"},null,8,["value"])]}),_:1})]),_:1}),e(s,{span:24},{default:a(()=>[e(n,{label:"\u56FE\u7247\u9644\u4EF6"},{default:a(()=>[(m(!0),_(C,null,x(o(l).task.extend.other.annex,(u,i)=>(m(),X(P,{class:"attachment",key:i,src:u,"preview-src-list":o(l).task.extend.other.annex,"initial-index":i,fit:"cover"},null,8,["src","preview-src-list","initial-index"]))),128))]),_:1})]),_:1}),e(s,{span:24},{default:a(()=>[e(n,{label:"\u89C6\u9891\u9644\u4EF6"},{default:a(()=>[(m(!0),_(C,null,x(o(l).task.extend.other.video_annex,(u,i)=>(m(),_("video",{class:"video",src:u,key:i,controls:""},null,8,ee))),128))]),_:1})]),_:1})]),_:1}),e(b),e(s,{span:12},{default:a(()=>[e(n,{label:"\u5BA1\u6838",prop:"check_status",clearable:"",style:{width:"100%"}},{default:a(()=>[e(T,{disabled:o(p)=="details",modelValue:o(l).check_status,"onUpdate:modelValue":t[7]||(t[7]=u=>o(l).check_status=u)},{default:a(()=>[e(V,{label:2},{default:a(()=>[B("\u901A\u8FC7")]),_:1}),e(V,{label:3},{default:a(()=>[B("\u9A73\u56DE")]),_:1})]),_:1},8,["disabled","modelValue"])]),_:1})]),_:1}),e(f,null,{default:a(()=>[e(s,null,{default:a(()=>[e(n,{label:"\u5907\u6CE8",prop:"remark"},{default:a(()=>[e(r,{readonly:o(p)=="details",modelValue:o(l).remark,"onUpdate:modelValue":t[8]||(t[8]=u=>o(l).remark=u),clearable:"",type:"textarea"},null,8,["readonly","modelValue"])]),_:1})]),_:1})]),_:1})]),_:1},8,["model","rules"])]),_:1},8,["title","button","clickModalClose"])])}}});const qe=Y(ae,[["__scopeId","data-v-707b58fb"]]);export{qe as default}; diff --git a/public/admin/assets/index_list_popup.83ac90c2.js b/public/admin/assets/index_list_popup.83ac90c2.js new file mode 100644 index 000000000..391aa5bce --- /dev/null +++ b/public/admin/assets/index_list_popup.83ac90c2.js @@ -0,0 +1 @@ +import{a4 as L,k as N,B as j,C as q,a1 as H,a2 as K,b as O,G as S,H as $,D as z}from"./element-plus.4328d892.js";import{P as J}from"./index.5759a1a6.js";import{i as Q}from"./examined.28c87019.js";import"./lodash.08438971.js";import{d as A,r as k,s as F,e as W,$ as v,o as m,c as _,U as e,L as a,u as o,T as C,a7 as x,K as X,R as B}from"./@vue.51d7f2d8.js";import{d as Y}from"./index.37f7aea6.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const Z={class:"edit-popup"},ee=["src"],te=A({name:"flowEdit"}),ae=A({...te,props:{dictData:{type:Object,default:()=>({})}},emits:["success","close"],setup(le,{expose:w,emit:y}){k(!1);const E=F(),c=F(),p=k("add"),D=W(()=>p.value=="edit"?"\u5BA1\u6838":"\u8BE6\u60C5");k([{content:"\u4EFB\u52A1\u5B8C\u6210",timestamp:"2023-8-28 13:30:00"},{content:"\u5F20\u4E09\u4E09\u5BA1\u6838",timestamp:"2023-8-28 13:30:00"},{content:"\u674E\u601D\u601D\u5BA1\u6838",timestamp:"2023-8-28 13:30:00",type:"primary",hollow:!0}]);const l=v({id:"",task:{},company_name:"",area_manager:"",check_status:1,remark:""}),g=v({check_status:[{required:!0,validator:(d,t,r)=>{t!=2&&t!=3?r("\u8BF7\u9009\u62E9\u5BA1\u6838\u72B6\u6001"):r()},trigger:["blur"]}]}),R=async d=>{for(const t in l)d[t]!=null&&d[t]!=null&&(l[t]=d[t])},U=async d=>{},h=async()=>{var d,t;if(await((d=E.value)==null?void 0:d.validate()),l.check_status==3&&l.remark=="")return N.error("\u9A73\u56DE\u5FC5\u987B\u586B\u5199\u5907\u6CE8");await Q({id:l.id,check_status:l.check_status,remark:l.remark}),(t=c.value)==null||t.close(),y("success")},I=(d="add")=>{var t;p.value=d,(t=c.value)==null||t.open()},M=()=>{y("close")};return w({open:I,setFormData:R,getDetail:U}),(d,t)=>{const r=j,n=q,s=H,f=K,b=L,P=O,V=S,T=$,G=z;return m(),_("div",Z,[e(J,{ref_key:"popupRef",ref:c,title:o(D),async:!0,width:"800px",onConfirm:h,onClose:M,button:o(p)=="edit",clickModalClose:o(p)=="details"},{default:a(()=>[e(G,{ref_key:"formRef",ref:E,model:o(l),rules:o(g),"label-width":"120px"},{default:a(()=>[e(f,null,{default:a(()=>[e(s,{span:12},{default:a(()=>[e(n,{label:"ID",prop:"id"},{default:a(()=>[e(r,{readonly:"",modelValue:o(l).id,"onUpdate:modelValue":t[0]||(t[0]=u=>o(l).id=u)},null,8,["modelValue"])]),_:1})]),_:1}),e(s,{span:12},{default:a(()=>[e(n,{label:"\u4EFB\u52A1\u540D\u79F0",prop:"task.title"},{default:a(()=>[e(r,{readonly:"",modelValue:o(l).task.title,"onUpdate:modelValue":t[1]||(t[1]=u=>o(l).task.title=u)},null,8,["modelValue"])]),_:1})]),_:1}),e(s,{span:12},{default:a(()=>[e(n,{label:"\u4EFB\u52A1\u91D1\u989D",prop:"task.money"},{default:a(()=>[e(r,{readonly:"",modelValue:o(l).task.money,"onUpdate:modelValue":t[2]||(t[2]=u=>o(l).task.money=u)},null,8,["modelValue"])]),_:1})]),_:1}),e(s,{span:12},{default:a(()=>[e(n,{label:"\u6240\u5C5E\u516C\u53F8",prop:"company_name"},{default:a(()=>[e(r,{readonly:"",modelValue:o(l).company_name,"onUpdate:modelValue":t[3]||(t[3]=u=>o(l).company_name=u)},null,8,["modelValue"])]),_:1})]),_:1}),e(s,{span:24},{default:a(()=>[e(n,{label:"\u4EFB\u52A1\u63CF\u8FF0",prop:"task.content"},{default:a(()=>[e(r,{readonly:"",modelValue:o(l).task.content,"onUpdate:modelValue":t[4]||(t[4]=u=>o(l).task.content=u),clearable:"",type:"textarea"},null,8,["modelValue"])]),_:1})]),_:1}),e(s,{span:12},{default:a(()=>[e(n,{label:"\u4EFB\u52A1\u63D0\u4EA4\u65F6\u95F4",prop:"id"},{default:a(()=>[e(r,{readonly:"",modelValue:o(l).task.update_time,"onUpdate:modelValue":t[5]||(t[5]=u=>o(l).task.update_time=u)},null,8,["modelValue"])]),_:1})]),_:1}),e(s,{span:12},{default:a(()=>[e(n,{label:"\u7247\u533A\u7ECF\u7406",prop:"flow_cate"},{default:a(()=>[e(r,{readonly:"",modelValue:o(l).area_manager,"onUpdate:modelValue":t[6]||(t[6]=u=>o(l).area_manager=u)},null,8,["modelValue"])]),_:1})]),_:1})]),_:1}),e(b),e(f,null,{default:a(()=>[e(s,{span:24},{default:a(()=>[e(n,{label:"\u8BE6\u60C5\u63CF\u8FF0",prop:"remark"},{default:a(()=>{var u;return[e(r,{readonly:"",value:(u=o(l).task)==null?void 0:u.extend.other.note,clearable:"",type:"textarea"},null,8,["value"])]}),_:1})]),_:1}),e(s,{span:24},{default:a(()=>[e(n,{label:"\u56FE\u7247\u9644\u4EF6"},{default:a(()=>[(m(!0),_(C,null,x(o(l).task.extend.other.annex,(u,i)=>(m(),X(P,{class:"attachment",key:i,src:u,"preview-src-list":o(l).task.extend.other.annex,"initial-index":i,fit:"cover"},null,8,["src","preview-src-list","initial-index"]))),128))]),_:1})]),_:1}),e(s,{span:24},{default:a(()=>[e(n,{label:"\u89C6\u9891\u9644\u4EF6"},{default:a(()=>[(m(!0),_(C,null,x(o(l).task.extend.other.video_annex,(u,i)=>(m(),_("video",{class:"video",src:u,key:i,controls:""},null,8,ee))),128))]),_:1})]),_:1})]),_:1}),e(b),e(s,{span:12},{default:a(()=>[e(n,{label:"\u5BA1\u6838",prop:"check_status",clearable:"",style:{width:"100%"}},{default:a(()=>[e(T,{disabled:o(p)=="details",modelValue:o(l).check_status,"onUpdate:modelValue":t[7]||(t[7]=u=>o(l).check_status=u)},{default:a(()=>[e(V,{label:2},{default:a(()=>[B("\u901A\u8FC7")]),_:1}),e(V,{label:3},{default:a(()=>[B("\u9A73\u56DE")]),_:1})]),_:1},8,["disabled","modelValue"])]),_:1})]),_:1}),e(f,null,{default:a(()=>[e(s,null,{default:a(()=>[e(n,{label:"\u5907\u6CE8",prop:"remark"},{default:a(()=>[e(r,{readonly:o(p)=="details",modelValue:o(l).remark,"onUpdate:modelValue":t[8]||(t[8]=u=>o(l).remark=u),clearable:"",type:"textarea"},null,8,["readonly","modelValue"])]),_:1})]),_:1})]),_:1})]),_:1},8,["model","rules"])]),_:1},8,["title","button","clickModalClose"])])}}});const qe=Y(ae,[["__scopeId","data-v-707b58fb"]]);export{qe as default}; diff --git a/public/admin/assets/information.12b4785a.js b/public/admin/assets/information.12b4785a.js new file mode 100644 index 000000000..bb0680fc9 --- /dev/null +++ b/public/admin/assets/information.12b4785a.js @@ -0,0 +1 @@ +import{_ as w}from"./index.13ef78d6.js";import{B as D,C as v,I as V,D as h,w as x}from"./element-plus.4328d892.js";import{_ as j}from"./picker.45aea54f.js";import{a as q,b as U}from"./website.dab3e7a6.js";import{u as k}from"./index.aa9bb752.js";import{d as g,r as y,$ as O,af as M,o as _,c as P,U as e,L as r,a as i,u as t,M as L,K as G,R as I}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.fa872673.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.c47e74f8.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./index.a9a11abe.js";import"./index.a450f1bb.js";import"./index.vue_vue_type_script_setup_true_lang.dc835bba.js";import"./usePaging.2ad8e1e6.js";import"./vue3-video-play.b911321b.js";import"./vuedraggable.0cb40d3a.js";import"./vue.5de34049.js";import"./sortablejs.ef73fc5c.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const N={class:"website-information"},R=i("div",{class:"text-xl font-medium mb-[20px]"},"\u540E\u53F0\u8BBE\u7F6E",-1),S={class:"w-80"},W=i("div",{class:"form-tips"},"\u5EFA\u8BAE\u5C3A\u5BF8\uFF1A100*100\u50CF\u7D20\uFF0C\u652F\u6301jpg\uFF0Cjpeg\uFF0Cpng\u683C\u5F0F",-1),K=i("div",{class:"form-tips"},"\u5EFA\u8BAE\u5C3A\u5BF8\uFF1A100*100\u50CF\u7D20\uFF0C\u652F\u6301jpg\uFF0Cjpeg\uFF0Cpng\u683C\u5F0F",-1),T=i("div",{class:"form-tips"},"\u5EFA\u8BAE\u5C3A\u5BF8\uFF1A100*100\u50CF\u7D20\uFF0C\u652F\u6301jpg\uFF0Cjpeg\uFF0Cpng\u683C\u5F0F",-1),$=i("div",{class:"text-xl font-medium mb-[20px]"},"\u524D\u53F0\u8BBE\u7F6E",-1),z={class:"w-80"},H=i("div",{class:"form-tips"},"\u5EFA\u8BAE\u5C3A\u5BF8\uFF1A100*100px\uFF0C\u652F\u6301jpg\uFF0Cjpeg\uFF0Cpng\u683C\u5F0F",-1),J=i("div",{class:"text-xl font-medium mb-[20px]"},"PC\u7AEF\u8BBE\u7F6E",-1),Q=i("div",{class:"form-tips"},"\u5EFA\u8BAE\u5C3A\u5BF8\uFF1A120*28px\uFF0C\u652F\u6301jpg\uFF0Cjpeg\uFF0Cpng\u683C\u5F0F",-1),X={class:"w-80"},Y=i("div",{class:"form-tips"},"\u5EFA\u8BAE\u5C3A\u5BF8\uFF1A100*100\u50CF\u7D20\uFF0C\u652F\u6301jpg\uFF0Cjpeg\uFF0Cpng\u683C\u5F0F",-1),Z={class:"w-80"},ee={class:"w-80"},ue=g({name:"webInformation"}),Ye=g({...ue,setup(oe){const F=y(),c=k(),u=O({name:"",web_favicon:"",web_logo:"",login_image:"",shop_name:"",shop_logo:"",pc_logo:"",pc_title:"",pc_desc:"",pc_ico:"",pc_keywords:""}),f={name:[{required:!0,message:"\u8BF7\u8F93\u5165\u7F51\u7AD9\u540D\u79F0",trigger:["blur"]}],web_favicon:[{required:!0,message:"\u8BF7\u9009\u62E9\u7F51\u7AD9\u56FE\u6807",trigger:["change"]}],web_logo:[{required:!0,message:"\u8BF7\u9009\u62E9\u7F51\u7AD9logo",trigger:["change"]}],login_image:[{required:!0,message:"\u8BF7\u9009\u62E9\u767B\u5F55\u9875\u5E7F\u544A\u56FE",trigger:["change"]}],shop_name:[{required:!0,message:"\u8BF7\u8F93\u5165\u5E97\u94FA/\u5546\u57CE\u540D\u79F0",trigger:["blur"]}],shop_logo:[{required:!0,message:"\u8BF7\u9009\u62E9\u5546\u57CELOGO",trigger:["change"]}],pc_logo:[{required:!0,message:"\u8BF7\u9009\u62E9PC\u7AEFLOGO",trigger:["change"]}],pc_title:[{required:!0,message:"\u8BF7\u8F93\u5165PC\u7AEF\u7F51\u7AD9\u6807\u9898",trigger:["blur"]}],pc_ico:[{required:!0,message:"\u8BF7\u9009\u62E9PC\u7AEF\u7F51\u7AD9\u56FE\u6807",trigger:["change"]}]},n=async()=>{const a=await q();for(const o in u)u[o]=a[o]},C=async()=>{var a;await((a=F.value)==null?void 0:a.validate()),await U(u),c.getConfig(),n()};return n(),(a,o)=>{const p=D,s=v,m=j,d=V,A=h,E=x,B=w,b=M("perms");return _(),P("div",N,[e(A,{ref_key:"formRef",ref:F,rules:f,class:"ls-form",model:t(u),"label-width":"120px"},{default:r(()=>[e(d,{shadow:"never",class:"!border-none"},{default:r(()=>[R,e(s,{label:"\u7F51\u7AD9\u540D\u79F0",prop:"name"},{default:r(()=>[i("div",S,[e(p,{modelValue:t(u).name,"onUpdate:modelValue":o[0]||(o[0]=l=>t(u).name=l),modelModifiers:{trim:!0},placeholder:"\u8BF7\u8F93\u5165\u7F51\u7AD9\u540D\u79F0",maxlength:"30","show-word-limit":""},null,8,["modelValue"])])]),_:1}),e(s,{label:"\u7F51\u7AD9\u56FE\u6807",prop:"web_favicon",required:""},{default:r(()=>[i("div",null,[e(m,{modelValue:t(u).web_favicon,"onUpdate:modelValue":o[1]||(o[1]=l=>t(u).web_favicon=l),limit:1},null,8,["modelValue"]),W])]),_:1}),e(s,{label:"\u7F51\u7AD9LOGO",prop:"web_logo",required:""},{default:r(()=>[i("div",null,[e(m,{modelValue:t(u).web_logo,"onUpdate:modelValue":o[2]||(o[2]=l=>t(u).web_logo=l),modelModifiers:{trim:!0},limit:1},null,8,["modelValue"]),K])]),_:1}),e(s,{label:"\u767B\u5F55\u9875\u5E7F\u544A\u56FE",prop:"login_image",required:""},{default:r(()=>[i("div",null,[e(m,{modelValue:t(u).login_image,"onUpdate:modelValue":o[3]||(o[3]=l=>t(u).login_image=l),modelModifiers:{trim:!0},limit:1},null,8,["modelValue"]),T])]),_:1})]),_:1}),e(d,{shadow:"never",class:"!border-none mt-4"},{default:r(()=>[$,e(s,{label:"\u524D\u53F0\u540D\u79F0",prop:"shop_name"},{default:r(()=>[i("div",z,[e(p,{modelValue:t(u).shop_name,"onUpdate:modelValue":o[4]||(o[4]=l=>t(u).shop_name=l),modelModifiers:{trim:!0},placeholder:"\u8BF7\u8F93\u5165\u524D\u53F0\u540D\u79F0",maxlength:"30","show-word-limit":""},null,8,["modelValue"])])]),_:1}),e(s,{label:"\u524D\u53F0LOGO",prop:"shop_logo"},{default:r(()=>[i("div",null,[e(m,{modelValue:t(u).shop_logo,"onUpdate:modelValue":o[5]||(o[5]=l=>t(u).shop_logo=l),limit:1},null,8,["modelValue"]),H])]),_:1})]),_:1}),e(d,{shadow:"never",class:"!border-none mt-4"},{default:r(()=>[J,e(s,{label:"PC\u7AEFLOGO",prop:"pc_logo"},{default:r(()=>[i("div",null,[e(m,{modelValue:t(u).pc_logo,"onUpdate:modelValue":o[6]||(o[6]=l=>t(u).pc_logo=l),limit:1},null,8,["modelValue"]),Q])]),_:1}),e(s,{label:"\u7F51\u7AD9\u6807\u9898",prop:"pc_title"},{default:r(()=>[i("div",X,[e(p,{modelValue:t(u).pc_title,"onUpdate:modelValue":o[7]||(o[7]=l=>t(u).pc_title=l),modelModifiers:{trim:!0},placeholder:"\u8BF7\u8F93\u5165PC\u7AEF\u7F51\u7AD9\u6807\u9898",maxlength:"30","show-word-limit":""},null,8,["modelValue"])])]),_:1}),e(s,{label:"\u7F51\u7AD9\u56FE\u6807",prop:"pc_ico"},{default:r(()=>[i("div",null,[e(m,{modelValue:t(u).pc_ico,"onUpdate:modelValue":o[8]||(o[8]=l=>t(u).pc_ico=l),limit:1},null,8,["modelValue"]),Y])]),_:1}),e(s,{label:"\u7F51\u7AD9\u63CF\u8FF0",prop:"pc_desc"},{default:r(()=>[i("div",Z,[e(p,{modelValue:t(u).pc_desc,"onUpdate:modelValue":o[9]||(o[9]=l=>t(u).pc_desc=l),modelModifiers:{trim:!0},placeholder:"\u8BF7\u8F93\u5165PC\u7AEF\u7F51\u7AD9\u63CF\u8FF0"},null,8,["modelValue"])])]),_:1}),e(s,{label:"\u7F51\u7AD9\u5173\u952E\u8BCD",prop:"pc_keywords"},{default:r(()=>[i("div",ee,[e(p,{modelValue:t(u).pc_keywords,"onUpdate:modelValue":o[10]||(o[10]=l=>t(u).pc_keywords=l),modelModifiers:{trim:!0},placeholder:"\u8BF7\u8F93\u5165PC\u7AEF\u7F51\u7AD9\u5173\u952E\u8BCD"},null,8,["modelValue"])])]),_:1})]),_:1})]),_:1},8,["model"]),L((_(),G(B,null,{default:r(()=>[e(E,{type:"primary",onClick:C},{default:r(()=>[I("\u4FDD\u5B58")]),_:1})]),_:1})),[[b,["setting.web.web_setting/setWebsite"]]])])}}});export{Ye as default}; diff --git a/public/admin/assets/information.3f7ab377.js b/public/admin/assets/information.3f7ab377.js new file mode 100644 index 000000000..cd087f558 --- /dev/null +++ b/public/admin/assets/information.3f7ab377.js @@ -0,0 +1 @@ +import{_ as w}from"./index.fd04a214.js";import{B as D,C as v,I as V,D as h,w as x}from"./element-plus.4328d892.js";import{_ as j}from"./picker.3821e495.js";import{a as q,b as U}from"./website.7956cd42.js";import{u as k}from"./index.37f7aea6.js";import{d as g,r as y,$ as O,af as M,o as _,c as P,U as e,L as r,a as i,u as t,M as L,K as G,R as I}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.5759a1a6.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.af446662.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./index.fe1d30dd.js";import"./index.5f944d34.js";import"./index.vue_vue_type_script_setup_true_lang.dc835bba.js";import"./usePaging.2ad8e1e6.js";import"./vue3-video-play.b911321b.js";import"./vuedraggable.0cb40d3a.js";import"./vue.5de34049.js";import"./sortablejs.ef73fc5c.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const N={class:"website-information"},R=i("div",{class:"text-xl font-medium mb-[20px]"},"\u540E\u53F0\u8BBE\u7F6E",-1),S={class:"w-80"},W=i("div",{class:"form-tips"},"\u5EFA\u8BAE\u5C3A\u5BF8\uFF1A100*100\u50CF\u7D20\uFF0C\u652F\u6301jpg\uFF0Cjpeg\uFF0Cpng\u683C\u5F0F",-1),K=i("div",{class:"form-tips"},"\u5EFA\u8BAE\u5C3A\u5BF8\uFF1A100*100\u50CF\u7D20\uFF0C\u652F\u6301jpg\uFF0Cjpeg\uFF0Cpng\u683C\u5F0F",-1),T=i("div",{class:"form-tips"},"\u5EFA\u8BAE\u5C3A\u5BF8\uFF1A100*100\u50CF\u7D20\uFF0C\u652F\u6301jpg\uFF0Cjpeg\uFF0Cpng\u683C\u5F0F",-1),$=i("div",{class:"text-xl font-medium mb-[20px]"},"\u524D\u53F0\u8BBE\u7F6E",-1),z={class:"w-80"},H=i("div",{class:"form-tips"},"\u5EFA\u8BAE\u5C3A\u5BF8\uFF1A100*100px\uFF0C\u652F\u6301jpg\uFF0Cjpeg\uFF0Cpng\u683C\u5F0F",-1),J=i("div",{class:"text-xl font-medium mb-[20px]"},"PC\u7AEF\u8BBE\u7F6E",-1),Q=i("div",{class:"form-tips"},"\u5EFA\u8BAE\u5C3A\u5BF8\uFF1A120*28px\uFF0C\u652F\u6301jpg\uFF0Cjpeg\uFF0Cpng\u683C\u5F0F",-1),X={class:"w-80"},Y=i("div",{class:"form-tips"},"\u5EFA\u8BAE\u5C3A\u5BF8\uFF1A100*100\u50CF\u7D20\uFF0C\u652F\u6301jpg\uFF0Cjpeg\uFF0Cpng\u683C\u5F0F",-1),Z={class:"w-80"},ee={class:"w-80"},ue=g({name:"webInformation"}),Ye=g({...ue,setup(oe){const F=y(),c=k(),u=O({name:"",web_favicon:"",web_logo:"",login_image:"",shop_name:"",shop_logo:"",pc_logo:"",pc_title:"",pc_desc:"",pc_ico:"",pc_keywords:""}),f={name:[{required:!0,message:"\u8BF7\u8F93\u5165\u7F51\u7AD9\u540D\u79F0",trigger:["blur"]}],web_favicon:[{required:!0,message:"\u8BF7\u9009\u62E9\u7F51\u7AD9\u56FE\u6807",trigger:["change"]}],web_logo:[{required:!0,message:"\u8BF7\u9009\u62E9\u7F51\u7AD9logo",trigger:["change"]}],login_image:[{required:!0,message:"\u8BF7\u9009\u62E9\u767B\u5F55\u9875\u5E7F\u544A\u56FE",trigger:["change"]}],shop_name:[{required:!0,message:"\u8BF7\u8F93\u5165\u5E97\u94FA/\u5546\u57CE\u540D\u79F0",trigger:["blur"]}],shop_logo:[{required:!0,message:"\u8BF7\u9009\u62E9\u5546\u57CELOGO",trigger:["change"]}],pc_logo:[{required:!0,message:"\u8BF7\u9009\u62E9PC\u7AEFLOGO",trigger:["change"]}],pc_title:[{required:!0,message:"\u8BF7\u8F93\u5165PC\u7AEF\u7F51\u7AD9\u6807\u9898",trigger:["blur"]}],pc_ico:[{required:!0,message:"\u8BF7\u9009\u62E9PC\u7AEF\u7F51\u7AD9\u56FE\u6807",trigger:["change"]}]},n=async()=>{const a=await q();for(const o in u)u[o]=a[o]},C=async()=>{var a;await((a=F.value)==null?void 0:a.validate()),await U(u),c.getConfig(),n()};return n(),(a,o)=>{const p=D,s=v,m=j,d=V,A=h,E=x,B=w,b=M("perms");return _(),P("div",N,[e(A,{ref_key:"formRef",ref:F,rules:f,class:"ls-form",model:t(u),"label-width":"120px"},{default:r(()=>[e(d,{shadow:"never",class:"!border-none"},{default:r(()=>[R,e(s,{label:"\u7F51\u7AD9\u540D\u79F0",prop:"name"},{default:r(()=>[i("div",S,[e(p,{modelValue:t(u).name,"onUpdate:modelValue":o[0]||(o[0]=l=>t(u).name=l),modelModifiers:{trim:!0},placeholder:"\u8BF7\u8F93\u5165\u7F51\u7AD9\u540D\u79F0",maxlength:"30","show-word-limit":""},null,8,["modelValue"])])]),_:1}),e(s,{label:"\u7F51\u7AD9\u56FE\u6807",prop:"web_favicon",required:""},{default:r(()=>[i("div",null,[e(m,{modelValue:t(u).web_favicon,"onUpdate:modelValue":o[1]||(o[1]=l=>t(u).web_favicon=l),limit:1},null,8,["modelValue"]),W])]),_:1}),e(s,{label:"\u7F51\u7AD9LOGO",prop:"web_logo",required:""},{default:r(()=>[i("div",null,[e(m,{modelValue:t(u).web_logo,"onUpdate:modelValue":o[2]||(o[2]=l=>t(u).web_logo=l),modelModifiers:{trim:!0},limit:1},null,8,["modelValue"]),K])]),_:1}),e(s,{label:"\u767B\u5F55\u9875\u5E7F\u544A\u56FE",prop:"login_image",required:""},{default:r(()=>[i("div",null,[e(m,{modelValue:t(u).login_image,"onUpdate:modelValue":o[3]||(o[3]=l=>t(u).login_image=l),modelModifiers:{trim:!0},limit:1},null,8,["modelValue"]),T])]),_:1})]),_:1}),e(d,{shadow:"never",class:"!border-none mt-4"},{default:r(()=>[$,e(s,{label:"\u524D\u53F0\u540D\u79F0",prop:"shop_name"},{default:r(()=>[i("div",z,[e(p,{modelValue:t(u).shop_name,"onUpdate:modelValue":o[4]||(o[4]=l=>t(u).shop_name=l),modelModifiers:{trim:!0},placeholder:"\u8BF7\u8F93\u5165\u524D\u53F0\u540D\u79F0",maxlength:"30","show-word-limit":""},null,8,["modelValue"])])]),_:1}),e(s,{label:"\u524D\u53F0LOGO",prop:"shop_logo"},{default:r(()=>[i("div",null,[e(m,{modelValue:t(u).shop_logo,"onUpdate:modelValue":o[5]||(o[5]=l=>t(u).shop_logo=l),limit:1},null,8,["modelValue"]),H])]),_:1})]),_:1}),e(d,{shadow:"never",class:"!border-none mt-4"},{default:r(()=>[J,e(s,{label:"PC\u7AEFLOGO",prop:"pc_logo"},{default:r(()=>[i("div",null,[e(m,{modelValue:t(u).pc_logo,"onUpdate:modelValue":o[6]||(o[6]=l=>t(u).pc_logo=l),limit:1},null,8,["modelValue"]),Q])]),_:1}),e(s,{label:"\u7F51\u7AD9\u6807\u9898",prop:"pc_title"},{default:r(()=>[i("div",X,[e(p,{modelValue:t(u).pc_title,"onUpdate:modelValue":o[7]||(o[7]=l=>t(u).pc_title=l),modelModifiers:{trim:!0},placeholder:"\u8BF7\u8F93\u5165PC\u7AEF\u7F51\u7AD9\u6807\u9898",maxlength:"30","show-word-limit":""},null,8,["modelValue"])])]),_:1}),e(s,{label:"\u7F51\u7AD9\u56FE\u6807",prop:"pc_ico"},{default:r(()=>[i("div",null,[e(m,{modelValue:t(u).pc_ico,"onUpdate:modelValue":o[8]||(o[8]=l=>t(u).pc_ico=l),limit:1},null,8,["modelValue"]),Y])]),_:1}),e(s,{label:"\u7F51\u7AD9\u63CF\u8FF0",prop:"pc_desc"},{default:r(()=>[i("div",Z,[e(p,{modelValue:t(u).pc_desc,"onUpdate:modelValue":o[9]||(o[9]=l=>t(u).pc_desc=l),modelModifiers:{trim:!0},placeholder:"\u8BF7\u8F93\u5165PC\u7AEF\u7F51\u7AD9\u63CF\u8FF0"},null,8,["modelValue"])])]),_:1}),e(s,{label:"\u7F51\u7AD9\u5173\u952E\u8BCD",prop:"pc_keywords"},{default:r(()=>[i("div",ee,[e(p,{modelValue:t(u).pc_keywords,"onUpdate:modelValue":o[10]||(o[10]=l=>t(u).pc_keywords=l),modelModifiers:{trim:!0},placeholder:"\u8BF7\u8F93\u5165PC\u7AEF\u7F51\u7AD9\u5173\u952E\u8BCD"},null,8,["modelValue"])])]),_:1})]),_:1})]),_:1},8,["model"]),L((_(),G(B,null,{default:r(()=>[e(E,{type:"primary",onClick:C},{default:r(()=>[I("\u4FDD\u5B58")]),_:1})]),_:1})),[[b,["setting.web.web_setting/setWebsite"]]])])}}});export{Ye as default}; diff --git a/public/admin/assets/information.b7b09e43.js b/public/admin/assets/information.b7b09e43.js new file mode 100644 index 000000000..e74157f7c --- /dev/null +++ b/public/admin/assets/information.b7b09e43.js @@ -0,0 +1 @@ +import{_ as w}from"./index.be5645df.js";import{B as D,C as v,I as V,D as h,w as x}from"./element-plus.4328d892.js";import{_ as j}from"./picker.597494a6.js";import{a as q,b as U}from"./website.3e3234e6.js";import{u as k}from"./index.ed71ac09.js";import{d as g,r as y,$ as O,af as M,o as _,c as P,U as e,L as r,a as i,u as t,M as L,K as G,R as I}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.b940d6e3.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.c38e1dd6.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./index.f2c7f81b.js";import"./index.9c616a0c.js";import"./index.vue_vue_type_script_setup_true_lang.dc835bba.js";import"./usePaging.2ad8e1e6.js";import"./vue3-video-play.b911321b.js";import"./vuedraggable.0cb40d3a.js";import"./vue.5de34049.js";import"./sortablejs.ef73fc5c.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const N={class:"website-information"},R=i("div",{class:"text-xl font-medium mb-[20px]"},"\u540E\u53F0\u8BBE\u7F6E",-1),S={class:"w-80"},W=i("div",{class:"form-tips"},"\u5EFA\u8BAE\u5C3A\u5BF8\uFF1A100*100\u50CF\u7D20\uFF0C\u652F\u6301jpg\uFF0Cjpeg\uFF0Cpng\u683C\u5F0F",-1),K=i("div",{class:"form-tips"},"\u5EFA\u8BAE\u5C3A\u5BF8\uFF1A100*100\u50CF\u7D20\uFF0C\u652F\u6301jpg\uFF0Cjpeg\uFF0Cpng\u683C\u5F0F",-1),T=i("div",{class:"form-tips"},"\u5EFA\u8BAE\u5C3A\u5BF8\uFF1A100*100\u50CF\u7D20\uFF0C\u652F\u6301jpg\uFF0Cjpeg\uFF0Cpng\u683C\u5F0F",-1),$=i("div",{class:"text-xl font-medium mb-[20px]"},"\u524D\u53F0\u8BBE\u7F6E",-1),z={class:"w-80"},H=i("div",{class:"form-tips"},"\u5EFA\u8BAE\u5C3A\u5BF8\uFF1A100*100px\uFF0C\u652F\u6301jpg\uFF0Cjpeg\uFF0Cpng\u683C\u5F0F",-1),J=i("div",{class:"text-xl font-medium mb-[20px]"},"PC\u7AEF\u8BBE\u7F6E",-1),Q=i("div",{class:"form-tips"},"\u5EFA\u8BAE\u5C3A\u5BF8\uFF1A120*28px\uFF0C\u652F\u6301jpg\uFF0Cjpeg\uFF0Cpng\u683C\u5F0F",-1),X={class:"w-80"},Y=i("div",{class:"form-tips"},"\u5EFA\u8BAE\u5C3A\u5BF8\uFF1A100*100\u50CF\u7D20\uFF0C\u652F\u6301jpg\uFF0Cjpeg\uFF0Cpng\u683C\u5F0F",-1),Z={class:"w-80"},ee={class:"w-80"},ue=g({name:"webInformation"}),Ye=g({...ue,setup(oe){const F=y(),c=k(),u=O({name:"",web_favicon:"",web_logo:"",login_image:"",shop_name:"",shop_logo:"",pc_logo:"",pc_title:"",pc_desc:"",pc_ico:"",pc_keywords:""}),f={name:[{required:!0,message:"\u8BF7\u8F93\u5165\u7F51\u7AD9\u540D\u79F0",trigger:["blur"]}],web_favicon:[{required:!0,message:"\u8BF7\u9009\u62E9\u7F51\u7AD9\u56FE\u6807",trigger:["change"]}],web_logo:[{required:!0,message:"\u8BF7\u9009\u62E9\u7F51\u7AD9logo",trigger:["change"]}],login_image:[{required:!0,message:"\u8BF7\u9009\u62E9\u767B\u5F55\u9875\u5E7F\u544A\u56FE",trigger:["change"]}],shop_name:[{required:!0,message:"\u8BF7\u8F93\u5165\u5E97\u94FA/\u5546\u57CE\u540D\u79F0",trigger:["blur"]}],shop_logo:[{required:!0,message:"\u8BF7\u9009\u62E9\u5546\u57CELOGO",trigger:["change"]}],pc_logo:[{required:!0,message:"\u8BF7\u9009\u62E9PC\u7AEFLOGO",trigger:["change"]}],pc_title:[{required:!0,message:"\u8BF7\u8F93\u5165PC\u7AEF\u7F51\u7AD9\u6807\u9898",trigger:["blur"]}],pc_ico:[{required:!0,message:"\u8BF7\u9009\u62E9PC\u7AEF\u7F51\u7AD9\u56FE\u6807",trigger:["change"]}]},n=async()=>{const a=await q();for(const o in u)u[o]=a[o]},C=async()=>{var a;await((a=F.value)==null?void 0:a.validate()),await U(u),c.getConfig(),n()};return n(),(a,o)=>{const p=D,s=v,m=j,d=V,A=h,E=x,B=w,b=M("perms");return _(),P("div",N,[e(A,{ref_key:"formRef",ref:F,rules:f,class:"ls-form",model:t(u),"label-width":"120px"},{default:r(()=>[e(d,{shadow:"never",class:"!border-none"},{default:r(()=>[R,e(s,{label:"\u7F51\u7AD9\u540D\u79F0",prop:"name"},{default:r(()=>[i("div",S,[e(p,{modelValue:t(u).name,"onUpdate:modelValue":o[0]||(o[0]=l=>t(u).name=l),modelModifiers:{trim:!0},placeholder:"\u8BF7\u8F93\u5165\u7F51\u7AD9\u540D\u79F0",maxlength:"30","show-word-limit":""},null,8,["modelValue"])])]),_:1}),e(s,{label:"\u7F51\u7AD9\u56FE\u6807",prop:"web_favicon",required:""},{default:r(()=>[i("div",null,[e(m,{modelValue:t(u).web_favicon,"onUpdate:modelValue":o[1]||(o[1]=l=>t(u).web_favicon=l),limit:1},null,8,["modelValue"]),W])]),_:1}),e(s,{label:"\u7F51\u7AD9LOGO",prop:"web_logo",required:""},{default:r(()=>[i("div",null,[e(m,{modelValue:t(u).web_logo,"onUpdate:modelValue":o[2]||(o[2]=l=>t(u).web_logo=l),modelModifiers:{trim:!0},limit:1},null,8,["modelValue"]),K])]),_:1}),e(s,{label:"\u767B\u5F55\u9875\u5E7F\u544A\u56FE",prop:"login_image",required:""},{default:r(()=>[i("div",null,[e(m,{modelValue:t(u).login_image,"onUpdate:modelValue":o[3]||(o[3]=l=>t(u).login_image=l),modelModifiers:{trim:!0},limit:1},null,8,["modelValue"]),T])]),_:1})]),_:1}),e(d,{shadow:"never",class:"!border-none mt-4"},{default:r(()=>[$,e(s,{label:"\u524D\u53F0\u540D\u79F0",prop:"shop_name"},{default:r(()=>[i("div",z,[e(p,{modelValue:t(u).shop_name,"onUpdate:modelValue":o[4]||(o[4]=l=>t(u).shop_name=l),modelModifiers:{trim:!0},placeholder:"\u8BF7\u8F93\u5165\u524D\u53F0\u540D\u79F0",maxlength:"30","show-word-limit":""},null,8,["modelValue"])])]),_:1}),e(s,{label:"\u524D\u53F0LOGO",prop:"shop_logo"},{default:r(()=>[i("div",null,[e(m,{modelValue:t(u).shop_logo,"onUpdate:modelValue":o[5]||(o[5]=l=>t(u).shop_logo=l),limit:1},null,8,["modelValue"]),H])]),_:1})]),_:1}),e(d,{shadow:"never",class:"!border-none mt-4"},{default:r(()=>[J,e(s,{label:"PC\u7AEFLOGO",prop:"pc_logo"},{default:r(()=>[i("div",null,[e(m,{modelValue:t(u).pc_logo,"onUpdate:modelValue":o[6]||(o[6]=l=>t(u).pc_logo=l),limit:1},null,8,["modelValue"]),Q])]),_:1}),e(s,{label:"\u7F51\u7AD9\u6807\u9898",prop:"pc_title"},{default:r(()=>[i("div",X,[e(p,{modelValue:t(u).pc_title,"onUpdate:modelValue":o[7]||(o[7]=l=>t(u).pc_title=l),modelModifiers:{trim:!0},placeholder:"\u8BF7\u8F93\u5165PC\u7AEF\u7F51\u7AD9\u6807\u9898",maxlength:"30","show-word-limit":""},null,8,["modelValue"])])]),_:1}),e(s,{label:"\u7F51\u7AD9\u56FE\u6807",prop:"pc_ico"},{default:r(()=>[i("div",null,[e(m,{modelValue:t(u).pc_ico,"onUpdate:modelValue":o[8]||(o[8]=l=>t(u).pc_ico=l),limit:1},null,8,["modelValue"]),Y])]),_:1}),e(s,{label:"\u7F51\u7AD9\u63CF\u8FF0",prop:"pc_desc"},{default:r(()=>[i("div",Z,[e(p,{modelValue:t(u).pc_desc,"onUpdate:modelValue":o[9]||(o[9]=l=>t(u).pc_desc=l),modelModifiers:{trim:!0},placeholder:"\u8BF7\u8F93\u5165PC\u7AEF\u7F51\u7AD9\u63CF\u8FF0"},null,8,["modelValue"])])]),_:1}),e(s,{label:"\u7F51\u7AD9\u5173\u952E\u8BCD",prop:"pc_keywords"},{default:r(()=>[i("div",ee,[e(p,{modelValue:t(u).pc_keywords,"onUpdate:modelValue":o[10]||(o[10]=l=>t(u).pc_keywords=l),modelModifiers:{trim:!0},placeholder:"\u8BF7\u8F93\u5165PC\u7AEF\u7F51\u7AD9\u5173\u952E\u8BCD"},null,8,["modelValue"])])]),_:1})]),_:1})]),_:1},8,["model"]),L((_(),G(B,null,{default:r(()=>[e(E,{type:"primary",onClick:C},{default:r(()=>[I("\u4FDD\u5B58")]),_:1})]),_:1})),[[b,["setting.web.web_setting/setWebsite"]]])])}}});export{Ye as default}; diff --git a/public/admin/assets/informationg.0fb089cd.js b/public/admin/assets/informationg.0fb089cd.js new file mode 100644 index 000000000..464cf7d99 --- /dev/null +++ b/public/admin/assets/informationg.0fb089cd.js @@ -0,0 +1 @@ +import{r}from"./index.37f7aea6.js";function n(i){return r.get({url:"/informationg.user_informationg/lists",params:i})}function e(i){return r.get({url:"/informationg.user_informationg/detail",params:i})}export{n as a,e as f}; diff --git a/public/admin/assets/informationg.b648c8df.js b/public/admin/assets/informationg.b648c8df.js new file mode 100644 index 000000000..b78e8d058 --- /dev/null +++ b/public/admin/assets/informationg.b648c8df.js @@ -0,0 +1 @@ +import{r}from"./index.aa9bb752.js";function n(i){return r.get({url:"/informationg.user_informationg/lists",params:i})}function e(i){return r.get({url:"/informationg.user_informationg/detail",params:i})}export{n as a,e as f}; diff --git a/public/admin/assets/informationg.d3032a30.js b/public/admin/assets/informationg.d3032a30.js new file mode 100644 index 000000000..12abd0abc --- /dev/null +++ b/public/admin/assets/informationg.d3032a30.js @@ -0,0 +1 @@ +import{r}from"./index.ed71ac09.js";function n(i){return r.get({url:"/informationg.user_informationg/lists",params:i})}function e(i){return r.get({url:"/informationg.user_informationg/detail",params:i})}export{n as a,e as f}; diff --git a/public/admin/assets/journal.4fb17990.js b/public/admin/assets/journal.4fb17990.js new file mode 100644 index 000000000..4e060efc5 --- /dev/null +++ b/public/admin/assets/journal.4fb17990.js @@ -0,0 +1 @@ +import{B as L,C as P,M as A,N as j,w as z,D as N,I as M,O as $,P as O,Q as R}from"./element-plus.4328d892.js";import{_ as Q}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{_ as S}from"./index.vue_vue_type_script_setup_true_lang.5c604000.js";import{_ as q}from"./index.vue_vue_type_script_setup_true_lang.3ab411d6.js";import{d as V,r as b,j as G,o as i,c as E,U as e,L as n,u as t,a8 as d,T as H,a7 as J,K as F,R as B,M as W,a as v,k as X}from"./@vue.51d7f2d8.js";import{b as g}from"./system.1f3b2cc7.js";import{u as Y}from"./usePaging.2ad8e1e6.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.ed71ac09.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.b940d6e3.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";const Z={class:"journal"},ee={class:"flex mt-4 justify-end"},te=V({name:"journal"}),Se=V({...te,setup(le){const o=b({admin_name:"",url:"",ip:"",type:"",start_time:"",end_time:""}),w=b([{label:"\u5168\u90E8",value:""},{label:"get",value:"get"},{label:"post",value:"post"},{label:"put",value:"put"},{label:"delete",value:"delete"},{label:"option",value:"option"}]),{pager:m,getLists:_,resetParams:y,resetPage:p}=Y({fetchFun:g,params:o.value});return G(()=>{_()}),(oe,a)=>{const s=L,r=P,C=A,T=j,h=q,c=z,k=S,x=N,f=M,u=$,D=O,K=Q,U=R;return i(),E("div",Z,[e(f,{class:"!border-none",shadow:"never"},{default:n(()=>[e(x,{class:"ls-form",model:t(o),inline:""},{default:n(()=>[e(r,{label:"\u7BA1\u7406\u5458"},{default:n(()=>[e(s,{class:"w-[280px]",placeholder:"\u8BF7\u8F93\u5165",modelValue:t(o).admin_name,"onUpdate:modelValue":a[0]||(a[0]=l=>t(o).admin_name=l),clearable:"",onKeyup:d(t(p),["enter"])},null,8,["modelValue","onKeyup"])]),_:1}),e(r,{label:"\u8BBF\u95EE\u65B9\u5F0F"},{default:n(()=>[e(T,{class:"w-[280px]",modelValue:t(o).type,"onUpdate:modelValue":a[1]||(a[1]=l=>t(o).type=l),placeholder:"\u8BF7\u9009\u62E9"},{default:n(()=>[(i(!0),E(H,null,J(t(w),(l,I)=>(i(),F(C,{key:I,label:l.label,value:l.value},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1}),e(r,{label:"\u6765\u6E90IP"},{default:n(()=>[e(s,{class:"w-[280px]",placeholder:"\u8BF7\u8F93\u5165",modelValue:t(o).ip,"onUpdate:modelValue":a[2]||(a[2]=l=>t(o).ip=l),clearable:"",onKeyup:d(t(p),["enter"])},null,8,["modelValue","onKeyup"])]),_:1}),e(r,{label:"\u8BBF\u95EE\u65F6\u95F4"},{default:n(()=>[e(h,{startTime:t(o).start_time,"onUpdate:startTime":a[3]||(a[3]=l=>t(o).start_time=l),endTime:t(o).end_time,"onUpdate:endTime":a[4]||(a[4]=l=>t(o).end_time=l)},null,8,["startTime","endTime"])]),_:1}),e(r,{label:"\u8BBF\u95EE\u94FE\u63A5"},{default:n(()=>[e(s,{class:"w-[280px]",placeholder:"\u8BF7\u8F93\u5165",modelValue:t(o).url,"onUpdate:modelValue":a[5]||(a[5]=l=>t(o).url=l),clearable:"",onKeyup:d(t(p),["enter"])},null,8,["modelValue","onKeyup"])]),_:1}),e(r,null,{default:n(()=>[e(c,{type:"primary",onClick:t(p)},{default:n(()=>[B("\u67E5\u8BE2")]),_:1},8,["onClick"]),e(c,{onClick:t(y)},{default:n(()=>[B("\u91CD\u7F6E")]),_:1},8,["onClick"]),e(k,{class:"ml-2.5","fetch-fun":t(g),params:t(o),"page-size":t(m).size},null,8,["fetch-fun","params","page-size"])]),_:1})]),_:1},8,["model"])]),_:1}),W((i(),F(f,{class:"!border-none mt-4",shadow:"never"},{default:n(()=>[v("div",null,[e(D,{data:t(m).lists,size:"large"},{default:n(()=>[e(u,{label:"\u8BB0\u5F55ID",prop:"id"}),e(u,{label:"\u64CD\u4F5C",prop:"action","min-width":"120"}),e(u,{label:"\u7BA1\u7406\u5458",prop:"admin_name","min-width":"120"}),e(u,{label:"\u7BA1\u7406\u5458ID",prop:"admin_id","min-width":"120"}),e(u,{label:"\u8BBF\u95EE\u94FE\u63A5",prop:"url","min-width":"160"}),e(u,{label:"\u8BBF\u95EE\u65B9\u5F0F",prop:"type"}),e(u,{label:"\u8BBF\u95EE\u53C2\u6570",prop:"params","min-width":"160"}),e(u,{label:"\u6765\u6E90IP",prop:"ip","min-width":"160"}),e(u,{label:"\u65E5\u5FD7\u65F6\u95F4",prop:"create_time","min-width":"180"})]),_:1},8,["data"])]),v("div",ee,[e(K,{modelValue:t(m),"onUpdate:modelValue":a[6]||(a[6]=l=>X(m)?m.value=l:null),onChange:t(_)},null,8,["modelValue","onChange"])])]),_:1})),[[U,t(m).loading]])])}}});export{Se as default}; diff --git a/public/admin/assets/journal.f1bf30e7.js b/public/admin/assets/journal.f1bf30e7.js new file mode 100644 index 000000000..7730ab616 --- /dev/null +++ b/public/admin/assets/journal.f1bf30e7.js @@ -0,0 +1 @@ +import{B as L,C as P,M as A,N as j,w as z,D as N,I as M,O as $,P as O,Q as R}from"./element-plus.4328d892.js";import{_ as Q}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{_ as S}from"./index.vue_vue_type_script_setup_true_lang.7ac7ce7d.js";import{_ as q}from"./index.vue_vue_type_script_setup_true_lang.3ab411d6.js";import{d as V,r as b,j as G,o as i,c as E,U as e,L as n,u as t,a8 as d,T as H,a7 as J,K as F,R as B,M as W,a as v,k as X}from"./@vue.51d7f2d8.js";import{b as g}from"./system.7bc7010f.js";import{u as Y}from"./usePaging.2ad8e1e6.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.37f7aea6.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.5759a1a6.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";const Z={class:"journal"},ee={class:"flex mt-4 justify-end"},te=V({name:"journal"}),Se=V({...te,setup(le){const o=b({admin_name:"",url:"",ip:"",type:"",start_time:"",end_time:""}),w=b([{label:"\u5168\u90E8",value:""},{label:"get",value:"get"},{label:"post",value:"post"},{label:"put",value:"put"},{label:"delete",value:"delete"},{label:"option",value:"option"}]),{pager:m,getLists:_,resetParams:y,resetPage:p}=Y({fetchFun:g,params:o.value});return G(()=>{_()}),(oe,a)=>{const s=L,r=P,C=A,T=j,h=q,c=z,k=S,x=N,f=M,u=$,D=O,K=Q,U=R;return i(),E("div",Z,[e(f,{class:"!border-none",shadow:"never"},{default:n(()=>[e(x,{class:"ls-form",model:t(o),inline:""},{default:n(()=>[e(r,{label:"\u7BA1\u7406\u5458"},{default:n(()=>[e(s,{class:"w-[280px]",placeholder:"\u8BF7\u8F93\u5165",modelValue:t(o).admin_name,"onUpdate:modelValue":a[0]||(a[0]=l=>t(o).admin_name=l),clearable:"",onKeyup:d(t(p),["enter"])},null,8,["modelValue","onKeyup"])]),_:1}),e(r,{label:"\u8BBF\u95EE\u65B9\u5F0F"},{default:n(()=>[e(T,{class:"w-[280px]",modelValue:t(o).type,"onUpdate:modelValue":a[1]||(a[1]=l=>t(o).type=l),placeholder:"\u8BF7\u9009\u62E9"},{default:n(()=>[(i(!0),E(H,null,J(t(w),(l,I)=>(i(),F(C,{key:I,label:l.label,value:l.value},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1}),e(r,{label:"\u6765\u6E90IP"},{default:n(()=>[e(s,{class:"w-[280px]",placeholder:"\u8BF7\u8F93\u5165",modelValue:t(o).ip,"onUpdate:modelValue":a[2]||(a[2]=l=>t(o).ip=l),clearable:"",onKeyup:d(t(p),["enter"])},null,8,["modelValue","onKeyup"])]),_:1}),e(r,{label:"\u8BBF\u95EE\u65F6\u95F4"},{default:n(()=>[e(h,{startTime:t(o).start_time,"onUpdate:startTime":a[3]||(a[3]=l=>t(o).start_time=l),endTime:t(o).end_time,"onUpdate:endTime":a[4]||(a[4]=l=>t(o).end_time=l)},null,8,["startTime","endTime"])]),_:1}),e(r,{label:"\u8BBF\u95EE\u94FE\u63A5"},{default:n(()=>[e(s,{class:"w-[280px]",placeholder:"\u8BF7\u8F93\u5165",modelValue:t(o).url,"onUpdate:modelValue":a[5]||(a[5]=l=>t(o).url=l),clearable:"",onKeyup:d(t(p),["enter"])},null,8,["modelValue","onKeyup"])]),_:1}),e(r,null,{default:n(()=>[e(c,{type:"primary",onClick:t(p)},{default:n(()=>[B("\u67E5\u8BE2")]),_:1},8,["onClick"]),e(c,{onClick:t(y)},{default:n(()=>[B("\u91CD\u7F6E")]),_:1},8,["onClick"]),e(k,{class:"ml-2.5","fetch-fun":t(g),params:t(o),"page-size":t(m).size},null,8,["fetch-fun","params","page-size"])]),_:1})]),_:1},8,["model"])]),_:1}),W((i(),F(f,{class:"!border-none mt-4",shadow:"never"},{default:n(()=>[v("div",null,[e(D,{data:t(m).lists,size:"large"},{default:n(()=>[e(u,{label:"\u8BB0\u5F55ID",prop:"id"}),e(u,{label:"\u64CD\u4F5C",prop:"action","min-width":"120"}),e(u,{label:"\u7BA1\u7406\u5458",prop:"admin_name","min-width":"120"}),e(u,{label:"\u7BA1\u7406\u5458ID",prop:"admin_id","min-width":"120"}),e(u,{label:"\u8BBF\u95EE\u94FE\u63A5",prop:"url","min-width":"160"}),e(u,{label:"\u8BBF\u95EE\u65B9\u5F0F",prop:"type"}),e(u,{label:"\u8BBF\u95EE\u53C2\u6570",prop:"params","min-width":"160"}),e(u,{label:"\u6765\u6E90IP",prop:"ip","min-width":"160"}),e(u,{label:"\u65E5\u5FD7\u65F6\u95F4",prop:"create_time","min-width":"180"})]),_:1},8,["data"])]),v("div",ee,[e(K,{modelValue:t(m),"onUpdate:modelValue":a[6]||(a[6]=l=>X(m)?m.value=l:null),onChange:t(_)},null,8,["modelValue","onChange"])])]),_:1})),[[U,t(m).loading]])])}}});export{Se as default}; diff --git a/public/admin/assets/journal.f565025e.js b/public/admin/assets/journal.f565025e.js new file mode 100644 index 000000000..fa55a6634 --- /dev/null +++ b/public/admin/assets/journal.f565025e.js @@ -0,0 +1 @@ +import{B as L,C as P,M as A,N as j,w as z,D as N,I as M,O as $,P as O,Q as R}from"./element-plus.4328d892.js";import{_ as Q}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{_ as S}from"./index.vue_vue_type_script_setup_true_lang.f3cc5114.js";import{_ as q}from"./index.vue_vue_type_script_setup_true_lang.3ab411d6.js";import{d as V,r as b,j as G,o as i,c as E,U as e,L as n,u as t,a8 as d,T as H,a7 as J,K as F,R as B,M as W,a as v,k as X}from"./@vue.51d7f2d8.js";import{b as g}from"./system.02fce13c.js";import{u as Y}from"./usePaging.2ad8e1e6.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.aa9bb752.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.fa872673.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";const Z={class:"journal"},ee={class:"flex mt-4 justify-end"},te=V({name:"journal"}),Se=V({...te,setup(le){const o=b({admin_name:"",url:"",ip:"",type:"",start_time:"",end_time:""}),w=b([{label:"\u5168\u90E8",value:""},{label:"get",value:"get"},{label:"post",value:"post"},{label:"put",value:"put"},{label:"delete",value:"delete"},{label:"option",value:"option"}]),{pager:m,getLists:_,resetParams:y,resetPage:p}=Y({fetchFun:g,params:o.value});return G(()=>{_()}),(oe,a)=>{const s=L,r=P,C=A,T=j,h=q,c=z,k=S,x=N,f=M,u=$,D=O,K=Q,U=R;return i(),E("div",Z,[e(f,{class:"!border-none",shadow:"never"},{default:n(()=>[e(x,{class:"ls-form",model:t(o),inline:""},{default:n(()=>[e(r,{label:"\u7BA1\u7406\u5458"},{default:n(()=>[e(s,{class:"w-[280px]",placeholder:"\u8BF7\u8F93\u5165",modelValue:t(o).admin_name,"onUpdate:modelValue":a[0]||(a[0]=l=>t(o).admin_name=l),clearable:"",onKeyup:d(t(p),["enter"])},null,8,["modelValue","onKeyup"])]),_:1}),e(r,{label:"\u8BBF\u95EE\u65B9\u5F0F"},{default:n(()=>[e(T,{class:"w-[280px]",modelValue:t(o).type,"onUpdate:modelValue":a[1]||(a[1]=l=>t(o).type=l),placeholder:"\u8BF7\u9009\u62E9"},{default:n(()=>[(i(!0),E(H,null,J(t(w),(l,I)=>(i(),F(C,{key:I,label:l.label,value:l.value},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1}),e(r,{label:"\u6765\u6E90IP"},{default:n(()=>[e(s,{class:"w-[280px]",placeholder:"\u8BF7\u8F93\u5165",modelValue:t(o).ip,"onUpdate:modelValue":a[2]||(a[2]=l=>t(o).ip=l),clearable:"",onKeyup:d(t(p),["enter"])},null,8,["modelValue","onKeyup"])]),_:1}),e(r,{label:"\u8BBF\u95EE\u65F6\u95F4"},{default:n(()=>[e(h,{startTime:t(o).start_time,"onUpdate:startTime":a[3]||(a[3]=l=>t(o).start_time=l),endTime:t(o).end_time,"onUpdate:endTime":a[4]||(a[4]=l=>t(o).end_time=l)},null,8,["startTime","endTime"])]),_:1}),e(r,{label:"\u8BBF\u95EE\u94FE\u63A5"},{default:n(()=>[e(s,{class:"w-[280px]",placeholder:"\u8BF7\u8F93\u5165",modelValue:t(o).url,"onUpdate:modelValue":a[5]||(a[5]=l=>t(o).url=l),clearable:"",onKeyup:d(t(p),["enter"])},null,8,["modelValue","onKeyup"])]),_:1}),e(r,null,{default:n(()=>[e(c,{type:"primary",onClick:t(p)},{default:n(()=>[B("\u67E5\u8BE2")]),_:1},8,["onClick"]),e(c,{onClick:t(y)},{default:n(()=>[B("\u91CD\u7F6E")]),_:1},8,["onClick"]),e(k,{class:"ml-2.5","fetch-fun":t(g),params:t(o),"page-size":t(m).size},null,8,["fetch-fun","params","page-size"])]),_:1})]),_:1},8,["model"])]),_:1}),W((i(),F(f,{class:"!border-none mt-4",shadow:"never"},{default:n(()=>[v("div",null,[e(D,{data:t(m).lists,size:"large"},{default:n(()=>[e(u,{label:"\u8BB0\u5F55ID",prop:"id"}),e(u,{label:"\u64CD\u4F5C",prop:"action","min-width":"120"}),e(u,{label:"\u7BA1\u7406\u5458",prop:"admin_name","min-width":"120"}),e(u,{label:"\u7BA1\u7406\u5458ID",prop:"admin_id","min-width":"120"}),e(u,{label:"\u8BBF\u95EE\u94FE\u63A5",prop:"url","min-width":"160"}),e(u,{label:"\u8BBF\u95EE\u65B9\u5F0F",prop:"type"}),e(u,{label:"\u8BBF\u95EE\u53C2\u6570",prop:"params","min-width":"160"}),e(u,{label:"\u6765\u6E90IP",prop:"ip","min-width":"160"}),e(u,{label:"\u65E5\u5FD7\u65F6\u95F4",prop:"create_time","min-width":"180"})]),_:1},8,["data"])]),v("div",ee,[e(K,{modelValue:t(m),"onUpdate:modelValue":a[6]||(a[6]=l=>X(m)?m.value=l:null),onChange:t(_)},null,8,["modelValue","onChange"])])]),_:1})),[[U,t(m).loading]])])}}});export{Se as default}; diff --git a/public/admin/assets/keyword_reply.0d9964f6.js b/public/admin/assets/keyword_reply.0d9964f6.js new file mode 100644 index 000000000..8f7e53de1 --- /dev/null +++ b/public/admin/assets/keyword_reply.0d9964f6.js @@ -0,0 +1 @@ +import{S as x,I as T,w as L,O as N,t as U,P as O,Q as P}from"./element-plus.4328d892.js";import{_ as M}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{f as Q,b as j}from"./index.aa9bb752.js";import{o as z,d as I,e as K}from"./wx_oa.dfa7359b.js";import{u as q}from"./usePaging.2ad8e1e6.js";import{_ as G}from"./edit.vue_vue_type_script_setup_true_lang.caf54865.js";import{d as H,s as J,r as W,e as F,o as f,c as X,U as e,L as a,a as E,R as r,M as Y,K as h,u as n,S as y,k as Z,Q as ee,n as D}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.fa872673.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";const te={class:"flex justify-end mt-4"},ze=H({__name:"keyword_reply",setup(ue){const m=J(),p=W(!1),g=F(()=>u=>{switch(u){case 1:return"\u5168\u5339\u914D";case 2:return"\u6A21\u7CCA\u5339\u914D"}}),v=F(()=>u=>{switch(u){case 1:return"\u6587\u672C"}}),{pager:s,getLists:l}=q({fetchFun:K,params:{reply_type:2}}),w=async()=>{var u;p.value=!0,await D(),(u=m.value)==null||u.open("add",2)},B=async u=>{var o,c;p.value=!0,await D(),(o=m.value)==null||o.open("edit",2),(c=m.value)==null||c.getDetail(u)},b=async u=>{await Q.confirm("\u786E\u5B9A\u8981\u5220\u9664\uFF1F"),await z({id:u}),l()},k=async u=>{try{await I({id:u}),l()}catch{l()}};return l(),(u,o)=>{const c=x,C=T,A=j,_=L,i=N,V=U,R=O,S=M,$=P;return f(),X("div",null,[e(C,{class:"!border-none",shadow:"never"},{default:a(()=>[e(c,{type:"warning",title:"\u6E29\u99A8\u63D0\u793A\uFF1A1.\u7C89\u4E1D\u5728\u516C\u4F17\u53F7\u53D1\u9001\u5185\u5BB9\u65F6\uFF0C\u901A\u8FC7\u5173\u952E\u8BCD\u53EF\u89E6\u53D1\u5173\u952E\u8BCD\u56DE\u590D\uFF1B2.\u540C\u65F6\u53EF\u542F\u7528\u591A\u4E2A\u5173\u952E\u8BCD\u56DE\u590D\uFF0C\u6709\u591A\u6761\u5173\u952E\u8BCD\u5339\u914D\u65F6\u4F18\u9009\u9009\u62E9\u6392\u5E8F\u9760\u524D\u7684\u4E00\u6761",closable:!1,"show-icon":""})]),_:1}),e(C,{class:"!border-none mt-4",shadow:"never"},{default:a(()=>[E("div",null,[e(_,{class:"mb-4",type:"primary",onClick:o[0]||(o[0]=t=>w())},{icon:a(()=>[e(A,{name:"el-icon-Plus"})]),default:a(()=>[r(" \u65B0\u589E ")]),_:1})]),Y((f(),h(R,{size:"large",data:n(s).lists},{default:a(()=>[e(i,{label:"\u89C4\u5219\u540D\u79F0",prop:"name","min-width":"120"}),e(i,{label:"\u5173\u952E\u8BCD",prop:"keyword","min-width":"120"}),e(i,{label:"\u5339\u914D\u65B9\u5F0F","min-width":"120"},{default:a(({row:t})=>[r(y(n(g)(t.matching_type)),1)]),_:1}),e(i,{label:"\u56DE\u590D\u7C7B\u578B","min-width":"120"},{default:a(({row:t})=>[r(y(n(v)(t.content_type)),1)]),_:1}),e(i,{label:"\u72B6\u6001","min-width":"120"},{default:a(({row:t})=>[e(V,{modelValue:t.status,"onUpdate:modelValue":d=>t.status=d,"active-value":1,"inactive-value":0,onChange:d=>k(t.id)},null,8,["modelValue","onUpdate:modelValue","onChange"])]),_:1}),e(i,{label:"\u6392\u5E8F",prop:"sort","min-width":"120"}),e(i,{label:"\u64CD\u4F5C",width:"120",fixed:"right"},{default:a(({row:t})=>[e(_,{type:"primary",link:"",onClick:d=>B(t)},{default:a(()=>[r(" \u7F16\u8F91 ")]),_:2},1032,["onClick"]),e(_,{type:"danger",link:"",onClick:d=>b(t.id)},{default:a(()=>[r(" \u5220\u9664 ")]),_:2},1032,["onClick"])]),_:1})]),_:1},8,["data"])),[[$,n(s).loading]]),E("div",te,[e(S,{modelValue:n(s),"onUpdate:modelValue":o[1]||(o[1]=t=>Z(s)?s.value=t:null),onChange:n(l)},null,8,["modelValue","onChange"])])]),_:1}),n(p)?(f(),h(G,{key:0,ref_key:"editRef",ref:m,onSuccess:n(l),onClose:o[2]||(o[2]=t=>p.value=!1)},null,8,["onSuccess"])):ee("",!0)])}}});export{ze as default}; diff --git a/public/admin/assets/keyword_reply.5f1270fa.js b/public/admin/assets/keyword_reply.5f1270fa.js new file mode 100644 index 000000000..4bfdd0507 --- /dev/null +++ b/public/admin/assets/keyword_reply.5f1270fa.js @@ -0,0 +1 @@ +import{S as x,I as T,w as L,O as N,t as U,P as O,Q as P}from"./element-plus.4328d892.js";import{_ as M}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{f as Q,b as j}from"./index.ed71ac09.js";import{o as z,d as I,e as K}from"./wx_oa.ec356b57.js";import{u as q}from"./usePaging.2ad8e1e6.js";import{_ as G}from"./edit.vue_vue_type_script_setup_true_lang.7913183a.js";import{d as H,s as J,r as W,e as F,o as f,c as X,U as e,L as a,a as E,R as r,M as Y,K as h,u as n,S as y,k as Z,Q as ee,n as D}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.b940d6e3.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";const te={class:"flex justify-end mt-4"},ze=H({__name:"keyword_reply",setup(ue){const m=J(),p=W(!1),g=F(()=>u=>{switch(u){case 1:return"\u5168\u5339\u914D";case 2:return"\u6A21\u7CCA\u5339\u914D"}}),v=F(()=>u=>{switch(u){case 1:return"\u6587\u672C"}}),{pager:s,getLists:l}=q({fetchFun:K,params:{reply_type:2}}),w=async()=>{var u;p.value=!0,await D(),(u=m.value)==null||u.open("add",2)},B=async u=>{var o,c;p.value=!0,await D(),(o=m.value)==null||o.open("edit",2),(c=m.value)==null||c.getDetail(u)},b=async u=>{await Q.confirm("\u786E\u5B9A\u8981\u5220\u9664\uFF1F"),await z({id:u}),l()},k=async u=>{try{await I({id:u}),l()}catch{l()}};return l(),(u,o)=>{const c=x,C=T,A=j,_=L,i=N,V=U,R=O,S=M,$=P;return f(),X("div",null,[e(C,{class:"!border-none",shadow:"never"},{default:a(()=>[e(c,{type:"warning",title:"\u6E29\u99A8\u63D0\u793A\uFF1A1.\u7C89\u4E1D\u5728\u516C\u4F17\u53F7\u53D1\u9001\u5185\u5BB9\u65F6\uFF0C\u901A\u8FC7\u5173\u952E\u8BCD\u53EF\u89E6\u53D1\u5173\u952E\u8BCD\u56DE\u590D\uFF1B2.\u540C\u65F6\u53EF\u542F\u7528\u591A\u4E2A\u5173\u952E\u8BCD\u56DE\u590D\uFF0C\u6709\u591A\u6761\u5173\u952E\u8BCD\u5339\u914D\u65F6\u4F18\u9009\u9009\u62E9\u6392\u5E8F\u9760\u524D\u7684\u4E00\u6761",closable:!1,"show-icon":""})]),_:1}),e(C,{class:"!border-none mt-4",shadow:"never"},{default:a(()=>[E("div",null,[e(_,{class:"mb-4",type:"primary",onClick:o[0]||(o[0]=t=>w())},{icon:a(()=>[e(A,{name:"el-icon-Plus"})]),default:a(()=>[r(" \u65B0\u589E ")]),_:1})]),Y((f(),h(R,{size:"large",data:n(s).lists},{default:a(()=>[e(i,{label:"\u89C4\u5219\u540D\u79F0",prop:"name","min-width":"120"}),e(i,{label:"\u5173\u952E\u8BCD",prop:"keyword","min-width":"120"}),e(i,{label:"\u5339\u914D\u65B9\u5F0F","min-width":"120"},{default:a(({row:t})=>[r(y(n(g)(t.matching_type)),1)]),_:1}),e(i,{label:"\u56DE\u590D\u7C7B\u578B","min-width":"120"},{default:a(({row:t})=>[r(y(n(v)(t.content_type)),1)]),_:1}),e(i,{label:"\u72B6\u6001","min-width":"120"},{default:a(({row:t})=>[e(V,{modelValue:t.status,"onUpdate:modelValue":d=>t.status=d,"active-value":1,"inactive-value":0,onChange:d=>k(t.id)},null,8,["modelValue","onUpdate:modelValue","onChange"])]),_:1}),e(i,{label:"\u6392\u5E8F",prop:"sort","min-width":"120"}),e(i,{label:"\u64CD\u4F5C",width:"120",fixed:"right"},{default:a(({row:t})=>[e(_,{type:"primary",link:"",onClick:d=>B(t)},{default:a(()=>[r(" \u7F16\u8F91 ")]),_:2},1032,["onClick"]),e(_,{type:"danger",link:"",onClick:d=>b(t.id)},{default:a(()=>[r(" \u5220\u9664 ")]),_:2},1032,["onClick"])]),_:1})]),_:1},8,["data"])),[[$,n(s).loading]]),E("div",te,[e(S,{modelValue:n(s),"onUpdate:modelValue":o[1]||(o[1]=t=>Z(s)?s.value=t:null),onChange:n(l)},null,8,["modelValue","onChange"])])]),_:1}),n(p)?(f(),h(G,{key:0,ref_key:"editRef",ref:m,onSuccess:n(l),onClose:o[2]||(o[2]=t=>p.value=!1)},null,8,["onSuccess"])):ee("",!0)])}}});export{ze as default}; diff --git a/public/admin/assets/keyword_reply.cb844484.js b/public/admin/assets/keyword_reply.cb844484.js new file mode 100644 index 000000000..564d43dc9 --- /dev/null +++ b/public/admin/assets/keyword_reply.cb844484.js @@ -0,0 +1 @@ +import{S as x,I as T,w as L,O as N,t as U,P as O,Q as P}from"./element-plus.4328d892.js";import{_ as M}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{f as Q,b as j}from"./index.37f7aea6.js";import{o as z,d as I,e as K}from"./wx_oa.115c1d98.js";import{u as q}from"./usePaging.2ad8e1e6.js";import{_ as G}from"./edit.vue_vue_type_script_setup_true_lang.cfc20a70.js";import{d as H,s as J,r as W,e as F,o as f,c as X,U as e,L as a,a as E,R as r,M as Y,K as h,u as n,S as y,k as Z,Q as ee,n as D}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.5759a1a6.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";const te={class:"flex justify-end mt-4"},ze=H({__name:"keyword_reply",setup(ue){const m=J(),p=W(!1),g=F(()=>u=>{switch(u){case 1:return"\u5168\u5339\u914D";case 2:return"\u6A21\u7CCA\u5339\u914D"}}),v=F(()=>u=>{switch(u){case 1:return"\u6587\u672C"}}),{pager:s,getLists:l}=q({fetchFun:K,params:{reply_type:2}}),w=async()=>{var u;p.value=!0,await D(),(u=m.value)==null||u.open("add",2)},B=async u=>{var o,c;p.value=!0,await D(),(o=m.value)==null||o.open("edit",2),(c=m.value)==null||c.getDetail(u)},b=async u=>{await Q.confirm("\u786E\u5B9A\u8981\u5220\u9664\uFF1F"),await z({id:u}),l()},k=async u=>{try{await I({id:u}),l()}catch{l()}};return l(),(u,o)=>{const c=x,C=T,A=j,_=L,i=N,V=U,R=O,S=M,$=P;return f(),X("div",null,[e(C,{class:"!border-none",shadow:"never"},{default:a(()=>[e(c,{type:"warning",title:"\u6E29\u99A8\u63D0\u793A\uFF1A1.\u7C89\u4E1D\u5728\u516C\u4F17\u53F7\u53D1\u9001\u5185\u5BB9\u65F6\uFF0C\u901A\u8FC7\u5173\u952E\u8BCD\u53EF\u89E6\u53D1\u5173\u952E\u8BCD\u56DE\u590D\uFF1B2.\u540C\u65F6\u53EF\u542F\u7528\u591A\u4E2A\u5173\u952E\u8BCD\u56DE\u590D\uFF0C\u6709\u591A\u6761\u5173\u952E\u8BCD\u5339\u914D\u65F6\u4F18\u9009\u9009\u62E9\u6392\u5E8F\u9760\u524D\u7684\u4E00\u6761",closable:!1,"show-icon":""})]),_:1}),e(C,{class:"!border-none mt-4",shadow:"never"},{default:a(()=>[E("div",null,[e(_,{class:"mb-4",type:"primary",onClick:o[0]||(o[0]=t=>w())},{icon:a(()=>[e(A,{name:"el-icon-Plus"})]),default:a(()=>[r(" \u65B0\u589E ")]),_:1})]),Y((f(),h(R,{size:"large",data:n(s).lists},{default:a(()=>[e(i,{label:"\u89C4\u5219\u540D\u79F0",prop:"name","min-width":"120"}),e(i,{label:"\u5173\u952E\u8BCD",prop:"keyword","min-width":"120"}),e(i,{label:"\u5339\u914D\u65B9\u5F0F","min-width":"120"},{default:a(({row:t})=>[r(y(n(g)(t.matching_type)),1)]),_:1}),e(i,{label:"\u56DE\u590D\u7C7B\u578B","min-width":"120"},{default:a(({row:t})=>[r(y(n(v)(t.content_type)),1)]),_:1}),e(i,{label:"\u72B6\u6001","min-width":"120"},{default:a(({row:t})=>[e(V,{modelValue:t.status,"onUpdate:modelValue":d=>t.status=d,"active-value":1,"inactive-value":0,onChange:d=>k(t.id)},null,8,["modelValue","onUpdate:modelValue","onChange"])]),_:1}),e(i,{label:"\u6392\u5E8F",prop:"sort","min-width":"120"}),e(i,{label:"\u64CD\u4F5C",width:"120",fixed:"right"},{default:a(({row:t})=>[e(_,{type:"primary",link:"",onClick:d=>B(t)},{default:a(()=>[r(" \u7F16\u8F91 ")]),_:2},1032,["onClick"]),e(_,{type:"danger",link:"",onClick:d=>b(t.id)},{default:a(()=>[r(" \u5220\u9664 ")]),_:2},1032,["onClick"])]),_:1})]),_:1},8,["data"])),[[$,n(s).loading]]),E("div",te,[e(S,{modelValue:n(s),"onUpdate:modelValue":o[1]||(o[1]=t=>Z(s)?s.value=t:null),onChange:n(l)},null,8,["modelValue","onChange"])])]),_:1}),n(p)?(f(),h(G,{key:0,ref_key:"editRef",ref:m,onSuccess:n(l),onClose:o[2]||(o[2]=t=>p.value=!1)},null,8,["onSuccess"])):ee("",!0)])}}});export{ze as default}; diff --git a/public/admin/assets/link.2c976e15.js b/public/admin/assets/link.2c976e15.js new file mode 100644 index 000000000..6c5878494 --- /dev/null +++ b/public/admin/assets/link.2c976e15.js @@ -0,0 +1 @@ +import{I as n}from"./element-plus.4328d892.js";import{_ as a}from"./picker.c7d50072.js";import{d as l,$ as s,o as u,c as _,U as r,L as c,u as m}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.aa9bb752.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.fa872673.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";const Z=l({__name:"link",setup(d){const o=s({value1:{}});return(f,t)=>{const p=a,i=n;return u(),_("div",null,[r(i,{header:"\u57FA\u7840\u4F7F\u7528",shadow:"none",class:"!border-none"},{default:c(()=>[r(p,{modelValue:m(o).value1,"onUpdate:modelValue":t[0]||(t[0]=e=>m(o).value1=e)},null,8,["modelValue"])]),_:1})])}}});export{Z as default}; diff --git a/public/admin/assets/link.878bc2e4.js b/public/admin/assets/link.878bc2e4.js new file mode 100644 index 000000000..3deba5dfc --- /dev/null +++ b/public/admin/assets/link.878bc2e4.js @@ -0,0 +1 @@ +import{I as n}from"./element-plus.4328d892.js";import{_ as a}from"./picker.47d21da2.js";import{d as l,$ as s,o as u,c as _,U as r,L as c,u as m}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.ed71ac09.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.b940d6e3.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";const Z=l({__name:"link",setup(d){const o=s({value1:{}});return(f,t)=>{const p=a,i=n;return u(),_("div",null,[r(i,{header:"\u57FA\u7840\u4F7F\u7528",shadow:"none",class:"!border-none"},{default:c(()=>[r(p,{modelValue:m(o).value1,"onUpdate:modelValue":t[0]||(t[0]=e=>m(o).value1=e)},null,8,["modelValue"])]),_:1})])}}});export{Z as default}; diff --git a/public/admin/assets/link.ea6826dc.js b/public/admin/assets/link.ea6826dc.js new file mode 100644 index 000000000..9eb9ea578 --- /dev/null +++ b/public/admin/assets/link.ea6826dc.js @@ -0,0 +1 @@ +import{I as n}from"./element-plus.4328d892.js";import{_ as a}from"./picker.d415e27a.js";import{d as l,$ as s,o as u,c as _,U as r,L as c,u as m}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.37f7aea6.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.5759a1a6.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";const Z=l({__name:"link",setup(d){const o=s({value1:{}});return(f,t)=>{const p=a,i=n;return u(),_("div",null,[r(i,{header:"\u57FA\u7840\u4F7F\u7528",shadow:"none",class:"!border-none"},{default:c(()=>[r(p,{modelValue:m(o).value1,"onUpdate:modelValue":t[0]||(t[0]=e=>m(o).value1=e)},null,8,["modelValue"])]),_:1})])}}});export{Z as default}; diff --git a/public/admin/assets/list_two.0f9732b7.js b/public/admin/assets/list_two.0f9732b7.js new file mode 100644 index 000000000..7e9583398 --- /dev/null +++ b/public/admin/assets/list_two.0f9732b7.js @@ -0,0 +1 @@ +import{B as P,C as R,w as S,D as N,I as $,O as U,P as Q,Q as j}from"./element-plus.4328d892.js";import{_ as q}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{u as K}from"./usePaging.2ad8e1e6.js";import{u as M}from"./useDictOptions.a45fc8ac.js";import{a as O}from"./map.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.0177b6b6.js";import{d as F,s as z,r,$ as E,o as p,c as G,U as o,L as e,u as t,R as b,M as H,K as C,a as u,S as J,k as W,Q as X}from"./@vue.51d7f2d8.js";import"./lodash.08438971.js";import{d as Y}from"./index.37f7aea6.js";import{_ as Z}from"./edit.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.43063e2b.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.5759a1a6.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./dialog_index_personnel.vue_vue_type_script_setup_true_name_companyLists_lang.7fc490f9.js";import"./role.8d2a6d5e.js";const oo={class:"mt-4"},to={class:"flex mt-4 justify-end"},eo=F({name:"taskTemplateLists"}),ao=F({...eo,props:["company_id"],emits:["customEvent"],setup(y,{emit:B}){const c=y,h=z();r([]);const d=r(!1),n=E({title:"",admin_id:"",money:"",type:"",status:"",content:"",company_id:""});c.company_id&&(n.company_id=c.company_id),E([{id:1,name:"\u663E\u793A"},{id:2,name:"\u9690\u85CF"}]),r([]);const g=_=>{B("customEvent",_)},{dictData:k}=M(""),{pager:i,getLists:m,resetParams:D,resetPage:x}=K({fetchFun:O,params:n});return m(),(_,a)=>{const V=P,f=R,v=S,A=N,w=$,l=U,T=Q,I=q,L=j;return p(),G("div",null,[o(w,{class:"!border-none mb-4",shadow:"never"},{default:e(()=>[o(A,{class:"mb-[-16px] formtabel",model:t(n),inline:""},{default:e(()=>[o(f,{"label-width":"100px",label:"\u4EFB\u52A1\u540D\u79F0",prop:"title"},{default:e(()=>[o(V,{class:"w-[280px]",modelValue:t(n).title,"onUpdate:modelValue":a[0]||(a[0]=s=>t(n).title=s),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u4EFB\u52A1\u540D\u79F0"},null,8,["modelValue"])]),_:1}),o(f,{"label-width":"100px",label:""},{default:e(()=>[o(v,{class:"el-btn",type:"primary",onClick:t(x)},{default:e(()=>[b("\u67E5\u8BE2")]),_:1},8,["onClick"]),o(v,{onClick:t(D)},{default:e(()=>[b("\u91CD\u7F6E")]),_:1},8,["onClick"])]),_:1})]),_:1},8,["model"])]),_:1}),H((p(),C(w,{class:"!border-none",shadow:"never"},{default:e(()=>[u("div",oo,[o(T,{data:t(i).lists,onCellClick:g},{default:e(()=>[o(l,{label:"\u4EFB\u52A1\u540D\u79F0",prop:"title","show-overflow-tooltip":""}),o(l,{label:"\u521B\u5EFA\u4EBA",prop:"admin_name","show-overflow-tooltip":""}),o(l,{label:"\u91D1\u989D",prop:"money","show-overflow-tooltip":""}),o(l,{label:"\u4EFB\u52A1\u7C7B\u578B",prop:"type_name","show-overflow-tooltip":""}),o(l,{label:"\u72B6\u6001","show-overflow-tooltip":""},{default:e(({row:s})=>[u("span",null,J(s.status==1?"\u663E\u793A":"\u9690\u85CF"),1)]),_:1}),o(l,{label:"\u4EFB\u52A1\u63CF\u8FF0",prop:"content","show-overflow-tooltip":""})]),_:1},8,["data"])]),u("div",to,[o(I,{modelValue:t(i),"onUpdate:modelValue":a[1]||(a[1]=s=>W(i)?i.value=s:null),onChange:t(m)},null,8,["modelValue","onChange"])])]),_:1})),[[L,t(i).loading]]),t(d)?(p(),C(Z,{key:0,ref_key:"editRef",ref:h,"dict-data":t(k),onSuccess:t(m),onClose:a[2]||(a[2]=s=>d.value=!1)},null,8,["dict-data","onSuccess"])):X("",!0)])}}});const Ho=Y(ao,[["__scopeId","data-v-f50a47c2"]]);export{Ho as default}; diff --git a/public/admin/assets/list_two.c6a9842f.js b/public/admin/assets/list_two.c6a9842f.js new file mode 100644 index 000000000..d3163d255 --- /dev/null +++ b/public/admin/assets/list_two.c6a9842f.js @@ -0,0 +1 @@ +import{B as P,C as R,w as S,D as N,I as $,O as U,P as Q,Q as j}from"./element-plus.4328d892.js";import{_ as q}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{u as K}from"./usePaging.2ad8e1e6.js";import{u as M}from"./useDictOptions.a61fcf9f.js";import{a as O}from"./map.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.9d7f531d.js";import{d as F,s as z,r,$ as E,o as p,c as G,U as o,L as e,u as t,R as b,M as H,K as C,a as u,S as J,k as W,Q as X}from"./@vue.51d7f2d8.js";import"./lodash.08438971.js";import{d as Y}from"./index.aa9bb752.js";import{_ as Z}from"./edit.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.656c3f7f.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.fa872673.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./dialog_index_personnel.vue_vue_type_script_setup_true_name_companyLists_lang.ddb96626.js";import"./role.41d5883e.js";const oo={class:"mt-4"},to={class:"flex mt-4 justify-end"},eo=F({name:"taskTemplateLists"}),ao=F({...eo,props:["company_id"],emits:["customEvent"],setup(y,{emit:B}){const c=y,h=z();r([]);const d=r(!1),n=E({title:"",admin_id:"",money:"",type:"",status:"",content:"",company_id:""});c.company_id&&(n.company_id=c.company_id),E([{id:1,name:"\u663E\u793A"},{id:2,name:"\u9690\u85CF"}]),r([]);const g=_=>{B("customEvent",_)},{dictData:k}=M(""),{pager:i,getLists:m,resetParams:D,resetPage:x}=K({fetchFun:O,params:n});return m(),(_,a)=>{const V=P,f=R,v=S,A=N,w=$,l=U,T=Q,I=q,L=j;return p(),G("div",null,[o(w,{class:"!border-none mb-4",shadow:"never"},{default:e(()=>[o(A,{class:"mb-[-16px] formtabel",model:t(n),inline:""},{default:e(()=>[o(f,{"label-width":"100px",label:"\u4EFB\u52A1\u540D\u79F0",prop:"title"},{default:e(()=>[o(V,{class:"w-[280px]",modelValue:t(n).title,"onUpdate:modelValue":a[0]||(a[0]=s=>t(n).title=s),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u4EFB\u52A1\u540D\u79F0"},null,8,["modelValue"])]),_:1}),o(f,{"label-width":"100px",label:""},{default:e(()=>[o(v,{class:"el-btn",type:"primary",onClick:t(x)},{default:e(()=>[b("\u67E5\u8BE2")]),_:1},8,["onClick"]),o(v,{onClick:t(D)},{default:e(()=>[b("\u91CD\u7F6E")]),_:1},8,["onClick"])]),_:1})]),_:1},8,["model"])]),_:1}),H((p(),C(w,{class:"!border-none",shadow:"never"},{default:e(()=>[u("div",oo,[o(T,{data:t(i).lists,onCellClick:g},{default:e(()=>[o(l,{label:"\u4EFB\u52A1\u540D\u79F0",prop:"title","show-overflow-tooltip":""}),o(l,{label:"\u521B\u5EFA\u4EBA",prop:"admin_name","show-overflow-tooltip":""}),o(l,{label:"\u91D1\u989D",prop:"money","show-overflow-tooltip":""}),o(l,{label:"\u4EFB\u52A1\u7C7B\u578B",prop:"type_name","show-overflow-tooltip":""}),o(l,{label:"\u72B6\u6001","show-overflow-tooltip":""},{default:e(({row:s})=>[u("span",null,J(s.status==1?"\u663E\u793A":"\u9690\u85CF"),1)]),_:1}),o(l,{label:"\u4EFB\u52A1\u63CF\u8FF0",prop:"content","show-overflow-tooltip":""})]),_:1},8,["data"])]),u("div",to,[o(I,{modelValue:t(i),"onUpdate:modelValue":a[1]||(a[1]=s=>W(i)?i.value=s:null),onChange:t(m)},null,8,["modelValue","onChange"])])]),_:1})),[[L,t(i).loading]]),t(d)?(p(),C(Z,{key:0,ref_key:"editRef",ref:h,"dict-data":t(k),onSuccess:t(m),onClose:a[2]||(a[2]=s=>d.value=!1)},null,8,["dict-data","onSuccess"])):X("",!0)])}}});const Ho=Y(ao,[["__scopeId","data-v-f50a47c2"]]);export{Ho as default}; diff --git a/public/admin/assets/list_two.e2f85723.js b/public/admin/assets/list_two.e2f85723.js new file mode 100644 index 000000000..fffba0a75 --- /dev/null +++ b/public/admin/assets/list_two.e2f85723.js @@ -0,0 +1 @@ +import{B as P,C as R,w as S,D as N,I as $,O as U,P as Q,Q as j}from"./element-plus.4328d892.js";import{_ as q}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{u as K}from"./usePaging.2ad8e1e6.js";import{u as M}from"./useDictOptions.8d37e54b.js";import{a as O}from"./map.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.c34becfa.js";import{d as F,s as z,r,$ as E,o as p,c as G,U as o,L as e,u as t,R as b,M as H,K as C,a as u,S as J,k as W,Q as X}from"./@vue.51d7f2d8.js";import"./lodash.08438971.js";import{d as Y}from"./index.ed71ac09.js";import{_ as Z}from"./edit.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.c27438b7.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.b940d6e3.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./dialog_index_personnel.vue_vue_type_script_setup_true_name_companyLists_lang.e9155591.js";import"./role.1c72c4c7.js";const oo={class:"mt-4"},to={class:"flex mt-4 justify-end"},eo=F({name:"taskTemplateLists"}),ao=F({...eo,props:["company_id"],emits:["customEvent"],setup(y,{emit:B}){const c=y,h=z();r([]);const d=r(!1),n=E({title:"",admin_id:"",money:"",type:"",status:"",content:"",company_id:""});c.company_id&&(n.company_id=c.company_id),E([{id:1,name:"\u663E\u793A"},{id:2,name:"\u9690\u85CF"}]),r([]);const g=_=>{B("customEvent",_)},{dictData:k}=M(""),{pager:i,getLists:m,resetParams:D,resetPage:x}=K({fetchFun:O,params:n});return m(),(_,a)=>{const V=P,f=R,v=S,A=N,w=$,l=U,T=Q,I=q,L=j;return p(),G("div",null,[o(w,{class:"!border-none mb-4",shadow:"never"},{default:e(()=>[o(A,{class:"mb-[-16px] formtabel",model:t(n),inline:""},{default:e(()=>[o(f,{"label-width":"100px",label:"\u4EFB\u52A1\u540D\u79F0",prop:"title"},{default:e(()=>[o(V,{class:"w-[280px]",modelValue:t(n).title,"onUpdate:modelValue":a[0]||(a[0]=s=>t(n).title=s),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u4EFB\u52A1\u540D\u79F0"},null,8,["modelValue"])]),_:1}),o(f,{"label-width":"100px",label:""},{default:e(()=>[o(v,{class:"el-btn",type:"primary",onClick:t(x)},{default:e(()=>[b("\u67E5\u8BE2")]),_:1},8,["onClick"]),o(v,{onClick:t(D)},{default:e(()=>[b("\u91CD\u7F6E")]),_:1},8,["onClick"])]),_:1})]),_:1},8,["model"])]),_:1}),H((p(),C(w,{class:"!border-none",shadow:"never"},{default:e(()=>[u("div",oo,[o(T,{data:t(i).lists,onCellClick:g},{default:e(()=>[o(l,{label:"\u4EFB\u52A1\u540D\u79F0",prop:"title","show-overflow-tooltip":""}),o(l,{label:"\u521B\u5EFA\u4EBA",prop:"admin_name","show-overflow-tooltip":""}),o(l,{label:"\u91D1\u989D",prop:"money","show-overflow-tooltip":""}),o(l,{label:"\u4EFB\u52A1\u7C7B\u578B",prop:"type_name","show-overflow-tooltip":""}),o(l,{label:"\u72B6\u6001","show-overflow-tooltip":""},{default:e(({row:s})=>[u("span",null,J(s.status==1?"\u663E\u793A":"\u9690\u85CF"),1)]),_:1}),o(l,{label:"\u4EFB\u52A1\u63CF\u8FF0",prop:"content","show-overflow-tooltip":""})]),_:1},8,["data"])]),u("div",to,[o(I,{modelValue:t(i),"onUpdate:modelValue":a[1]||(a[1]=s=>W(i)?i.value=s:null),onChange:t(m)},null,8,["modelValue","onChange"])])]),_:1})),[[L,t(i).loading]]),t(d)?(p(),C(Z,{key:0,ref_key:"editRef",ref:h,"dict-data":t(k),onSuccess:t(m),onClose:a[2]||(a[2]=s=>d.value=!1)},null,8,["dict-data","onSuccess"])):X("",!0)])}}});const Ho=Y(ao,[["__scopeId","data-v-f50a47c2"]]);export{Ho as default}; diff --git a/public/admin/assets/login.186db4ce.js b/public/admin/assets/login.186db4ce.js new file mode 100644 index 000000000..841686fb1 --- /dev/null +++ b/public/admin/assets/login.186db4ce.js @@ -0,0 +1 @@ +import{B as T,C as z,D as P,F as X,w as M}from"./element-plus.4328d892.js";import{u as C,a as O,c as h,A as b,_ as Y,b as G,P as B,d as H}from"./index.37f7aea6.js";import{u as J,a as Q}from"./vue-router.9f65afb1.js";import{d as D,e as L,o as _,c as f,a as r,T as W,a7 as Z,u as y,S as R,r as S,s as V,$ as ee,j as oe,U as o,L as c,a8 as E,R as te}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const se={class:"layout-footer"},ne={class:"text-center p-2 text-xs text-tx-secondary max-w-[900px] mx-auto"},re=["href"],ae=D({__name:"footer",setup(g){const t=C(),u=L(()=>t.config.copyright_config||[]);return(m,a)=>(_(),f("footer",se,[r("div",ne,[(_(!0),f(W,null,Z(y(u),l=>(_(),f("a",{class:"mx-1 hover:underline",href:l.value,target:"_blank",key:l.key},R(l.key),9,re))),128))])]))}});function ce(g){const t=S(!1);return{isLock:t,lockFn:async(...m)=>{if(!t.value){t.value=!0;try{const a=await g(...m);return t.value=!1,a}catch(a){throw t.value=!1,a}}}}}const ue={class:"login flex flex-col"},le={class:"flex-1 flex items-center justify-center"},ie={class:"login-card flex rounded-md"},pe={class:"flex-1 h-full hidden md:inline-block"},me={class:"login-form bg-body flex flex-col justify-center px-10 py-10 md:w-[400px] w-[375px] flex-none mx-auto"},de={class:"text-center text-3xl font-medium mb-8"},_e={class:"mb-5"},fe=D({__name:"login",setup(g){const t=V(),u=V(),m=C(),a=O(),l=J(),U=Q(),i=S(!1),v=L(()=>m.config),s=ee({account:"",password:""}),K={account:[{required:!0,message:"\u8BF7\u8F93\u5165\u8D26\u53F7",trigger:["blur"]}],password:[{required:!0,message:"\u8BF7\u8F93\u5165\u5BC6\u7801",trigger:["blur"]}]},N=()=>{var e;if(!s.password)return(e=t.value)==null?void 0:e.focus();x()},x=async()=>{var d;await((d=u.value)==null?void 0:d.validate()),h.set(b,{remember:i.value,account:i.value?s.account:""}),await a.login(s);const{query:{redirect:e}}=l,n=typeof e=="string"?e:B.INDEX;U.push(h.get("logout")==s.account||typeof e=="string"?n:B.INDEX)},{isLock:$,lockFn:I}=ce(x);return oe(()=>{const e=h.get(b);e!=null&&e.remember&&(i.value=e.remember,s.account=e.account)}),(e,n)=>{const d=Y,w=G,F=T,k=z,A=P,j=X,q=M;return _(),f("div",ue,[r("div",le,[r("div",ie,[r("div",pe,[o(d,{src:v.value.login_image,width:400,height:"100%"},null,8,["src"])]),r("div",me,[r("div",de,R(v.value.web_name),1),o(A,{ref_key:"formRef",ref:u,model:s,size:"large",rules:K},{default:c(()=>[o(k,{prop:"account"},{default:c(()=>[o(F,{modelValue:s.account,"onUpdate:modelValue":n[0]||(n[0]=p=>s.account=p),placeholder:"\u8BF7\u8F93\u5165\u8D26\u53F7",onKeyup:E(N,["enter"])},{prepend:c(()=>[o(w,{name:"el-icon-User"})]),_:1},8,["modelValue","onKeyup"])]),_:1}),o(k,{prop:"password"},{default:c(()=>[o(F,{ref_key:"passwordRef",ref:t,modelValue:s.password,"onUpdate:modelValue":n[1]||(n[1]=p=>s.password=p),"show-password":"",placeholder:"\u8BF7\u8F93\u5165\u5BC6\u7801",onKeyup:E(x,["enter"])},{prepend:c(()=>[o(w,{name:"el-icon-Lock"})]),_:1},8,["modelValue","onKeyup"])]),_:1})]),_:1},8,["model"]),r("div",_e,[o(j,{modelValue:i.value,"onUpdate:modelValue":n[2]||(n[2]=p=>i.value=p),label:"\u8BB0\u4F4F\u8D26\u53F7"},null,8,["modelValue"])]),o(q,{type:"primary",size:"large",loading:y($),onClick:y(I)},{default:c(()=>[te(" \u767B\u5F55 ")]),_:1},8,["loading","onClick"])])])]),o(ae)])}}});const Je=H(fe,[["__scopeId","data-v-d7e9ffb7"]]);export{Je as default}; diff --git a/public/admin/assets/login.81b1228f.js b/public/admin/assets/login.81b1228f.js new file mode 100644 index 000000000..2bf862237 --- /dev/null +++ b/public/admin/assets/login.81b1228f.js @@ -0,0 +1 @@ +import{B as T,C as z,D as P,F as X,w as M}from"./element-plus.4328d892.js";import{u as C,a as O,c as h,A as b,_ as Y,b as G,P as B,d as H}from"./index.ed71ac09.js";import{u as J,a as Q}from"./vue-router.9f65afb1.js";import{d as D,e as L,o as _,c as f,a as r,T as W,a7 as Z,u as y,S as R,r as S,s as V,$ as ee,j as oe,U as o,L as c,a8 as E,R as te}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const se={class:"layout-footer"},ne={class:"text-center p-2 text-xs text-tx-secondary max-w-[900px] mx-auto"},re=["href"],ae=D({__name:"footer",setup(g){const t=C(),u=L(()=>t.config.copyright_config||[]);return(m,a)=>(_(),f("footer",se,[r("div",ne,[(_(!0),f(W,null,Z(y(u),l=>(_(),f("a",{class:"mx-1 hover:underline",href:l.value,target:"_blank",key:l.key},R(l.key),9,re))),128))])]))}});function ce(g){const t=S(!1);return{isLock:t,lockFn:async(...m)=>{if(!t.value){t.value=!0;try{const a=await g(...m);return t.value=!1,a}catch(a){throw t.value=!1,a}}}}}const ue={class:"login flex flex-col"},le={class:"flex-1 flex items-center justify-center"},ie={class:"login-card flex rounded-md"},pe={class:"flex-1 h-full hidden md:inline-block"},me={class:"login-form bg-body flex flex-col justify-center px-10 py-10 md:w-[400px] w-[375px] flex-none mx-auto"},de={class:"text-center text-3xl font-medium mb-8"},_e={class:"mb-5"},fe=D({__name:"login",setup(g){const t=V(),u=V(),m=C(),a=O(),l=J(),U=Q(),i=S(!1),v=L(()=>m.config),s=ee({account:"",password:""}),K={account:[{required:!0,message:"\u8BF7\u8F93\u5165\u8D26\u53F7",trigger:["blur"]}],password:[{required:!0,message:"\u8BF7\u8F93\u5165\u5BC6\u7801",trigger:["blur"]}]},N=()=>{var e;if(!s.password)return(e=t.value)==null?void 0:e.focus();x()},x=async()=>{var d;await((d=u.value)==null?void 0:d.validate()),h.set(b,{remember:i.value,account:i.value?s.account:""}),await a.login(s);const{query:{redirect:e}}=l,n=typeof e=="string"?e:B.INDEX;U.push(h.get("logout")==s.account||typeof e=="string"?n:B.INDEX)},{isLock:$,lockFn:I}=ce(x);return oe(()=>{const e=h.get(b);e!=null&&e.remember&&(i.value=e.remember,s.account=e.account)}),(e,n)=>{const d=Y,w=G,F=T,k=z,A=P,j=X,q=M;return _(),f("div",ue,[r("div",le,[r("div",ie,[r("div",pe,[o(d,{src:v.value.login_image,width:400,height:"100%"},null,8,["src"])]),r("div",me,[r("div",de,R(v.value.web_name),1),o(A,{ref_key:"formRef",ref:u,model:s,size:"large",rules:K},{default:c(()=>[o(k,{prop:"account"},{default:c(()=>[o(F,{modelValue:s.account,"onUpdate:modelValue":n[0]||(n[0]=p=>s.account=p),placeholder:"\u8BF7\u8F93\u5165\u8D26\u53F7",onKeyup:E(N,["enter"])},{prepend:c(()=>[o(w,{name:"el-icon-User"})]),_:1},8,["modelValue","onKeyup"])]),_:1}),o(k,{prop:"password"},{default:c(()=>[o(F,{ref_key:"passwordRef",ref:t,modelValue:s.password,"onUpdate:modelValue":n[1]||(n[1]=p=>s.password=p),"show-password":"",placeholder:"\u8BF7\u8F93\u5165\u5BC6\u7801",onKeyup:E(x,["enter"])},{prepend:c(()=>[o(w,{name:"el-icon-Lock"})]),_:1},8,["modelValue","onKeyup"])]),_:1})]),_:1},8,["model"]),r("div",_e,[o(j,{modelValue:i.value,"onUpdate:modelValue":n[2]||(n[2]=p=>i.value=p),label:"\u8BB0\u4F4F\u8D26\u53F7"},null,8,["modelValue"])]),o(q,{type:"primary",size:"large",loading:y($),onClick:y(I)},{default:c(()=>[te(" \u767B\u5F55 ")]),_:1},8,["loading","onClick"])])])]),o(ae)])}}});const Je=H(fe,[["__scopeId","data-v-d7e9ffb7"]]);export{Je as default}; diff --git a/public/admin/assets/login.9e1d48b4.js b/public/admin/assets/login.9e1d48b4.js new file mode 100644 index 000000000..53f635d85 --- /dev/null +++ b/public/admin/assets/login.9e1d48b4.js @@ -0,0 +1 @@ +import{B as T,C as z,D as P,F as X,w as M}from"./element-plus.4328d892.js";import{u as C,a as O,c as h,A as b,_ as Y,b as G,P as B,d as H}from"./index.aa9bb752.js";import{u as J,a as Q}from"./vue-router.9f65afb1.js";import{d as D,e as L,o as _,c as f,a as r,T as W,a7 as Z,u as y,S as R,r as S,s as V,$ as ee,j as oe,U as o,L as c,a8 as E,R as te}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const se={class:"layout-footer"},ne={class:"text-center p-2 text-xs text-tx-secondary max-w-[900px] mx-auto"},re=["href"],ae=D({__name:"footer",setup(g){const t=C(),u=L(()=>t.config.copyright_config||[]);return(m,a)=>(_(),f("footer",se,[r("div",ne,[(_(!0),f(W,null,Z(y(u),l=>(_(),f("a",{class:"mx-1 hover:underline",href:l.value,target:"_blank",key:l.key},R(l.key),9,re))),128))])]))}});function ce(g){const t=S(!1);return{isLock:t,lockFn:async(...m)=>{if(!t.value){t.value=!0;try{const a=await g(...m);return t.value=!1,a}catch(a){throw t.value=!1,a}}}}}const ue={class:"login flex flex-col"},le={class:"flex-1 flex items-center justify-center"},ie={class:"login-card flex rounded-md"},pe={class:"flex-1 h-full hidden md:inline-block"},me={class:"login-form bg-body flex flex-col justify-center px-10 py-10 md:w-[400px] w-[375px] flex-none mx-auto"},de={class:"text-center text-3xl font-medium mb-8"},_e={class:"mb-5"},fe=D({__name:"login",setup(g){const t=V(),u=V(),m=C(),a=O(),l=J(),U=Q(),i=S(!1),v=L(()=>m.config),s=ee({account:"",password:""}),K={account:[{required:!0,message:"\u8BF7\u8F93\u5165\u8D26\u53F7",trigger:["blur"]}],password:[{required:!0,message:"\u8BF7\u8F93\u5165\u5BC6\u7801",trigger:["blur"]}]},N=()=>{var e;if(!s.password)return(e=t.value)==null?void 0:e.focus();x()},x=async()=>{var d;await((d=u.value)==null?void 0:d.validate()),h.set(b,{remember:i.value,account:i.value?s.account:""}),await a.login(s);const{query:{redirect:e}}=l,n=typeof e=="string"?e:B.INDEX;U.push(h.get("logout")==s.account||typeof e=="string"?n:B.INDEX)},{isLock:$,lockFn:I}=ce(x);return oe(()=>{const e=h.get(b);e!=null&&e.remember&&(i.value=e.remember,s.account=e.account)}),(e,n)=>{const d=Y,w=G,F=T,k=z,A=P,j=X,q=M;return _(),f("div",ue,[r("div",le,[r("div",ie,[r("div",pe,[o(d,{src:v.value.login_image,width:400,height:"100%"},null,8,["src"])]),r("div",me,[r("div",de,R(v.value.web_name),1),o(A,{ref_key:"formRef",ref:u,model:s,size:"large",rules:K},{default:c(()=>[o(k,{prop:"account"},{default:c(()=>[o(F,{modelValue:s.account,"onUpdate:modelValue":n[0]||(n[0]=p=>s.account=p),placeholder:"\u8BF7\u8F93\u5165\u8D26\u53F7",onKeyup:E(N,["enter"])},{prepend:c(()=>[o(w,{name:"el-icon-User"})]),_:1},8,["modelValue","onKeyup"])]),_:1}),o(k,{prop:"password"},{default:c(()=>[o(F,{ref_key:"passwordRef",ref:t,modelValue:s.password,"onUpdate:modelValue":n[1]||(n[1]=p=>s.password=p),"show-password":"",placeholder:"\u8BF7\u8F93\u5165\u5BC6\u7801",onKeyup:E(x,["enter"])},{prepend:c(()=>[o(w,{name:"el-icon-Lock"})]),_:1},8,["modelValue","onKeyup"])]),_:1})]),_:1},8,["model"]),r("div",_e,[o(j,{modelValue:i.value,"onUpdate:modelValue":n[2]||(n[2]=p=>i.value=p),label:"\u8BB0\u4F4F\u8D26\u53F7"},null,8,["modelValue"])]),o(q,{type:"primary",size:"large",loading:y($),onClick:y(I)},{default:c(()=>[te(" \u767B\u5F55 ")]),_:1},8,["loading","onClick"])])])]),o(ae)])}}});const Je=H(fe,[["__scopeId","data-v-d7e9ffb7"]]);export{Je as default}; diff --git a/public/admin/assets/login_register.0621be69.js b/public/admin/assets/login_register.0621be69.js new file mode 100644 index 000000000..fa7c42715 --- /dev/null +++ b/public/admin/assets/login_register.0621be69.js @@ -0,0 +1 @@ +import{_ as w}from"./index.13ef78d6.js";import{F as y,a0 as V,C as k,t as x,I as q,w as U,D as R}from"./element-plus.4328d892.js";import{g as S,s as W}from"./user.31e34ccc.js";import{d as C,r as L,$ as f,af as N,o as g,c as P,U as t,L as l,a as u,u as a,R as r,S as d,M as I,K as j}from"./@vue.51d7f2d8.js";import"./index.aa9bb752.js";import"./@vueuse.ec90c285.js";import"./lodash.08438971.js";import"./@amap.8a62addd.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./@element-plus.a074d1f6.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";const G={class:"login-register"},K=u("div",{class:"font-medium mb-7"},"\u901A\u7528\u8BBE\u7F6E",-1),M=u("div",{class:"form-tips"},"\u7CFB\u7EDF\u901A\u7528\u767B\u5F55\u65B9\u5F0F\uFF0C\u81F3\u5C11\u9009\u62E9\u4E00\u9879",-1),T={class:"mt-1 ml-2"},$=u("div",{class:"form-tips"},[r(" 1\u3001\u5982\u679C\u5F00\u542F\uFF0C\u5219\u65B0\u7528\u6237\u5728\u6CE8\u518C\u5B8C\u6210\u4E4B\u540E\u8981\u5F3A\u5236\u7ED1\u5B9A\u624B\u673A\u53F7"),u("br"),r(" 2\u3001\u8001\u7528\u6237\u767B\u5F55\u65F6\u5982\u679C\u68C0\u6D4B\u5230\u6CA1\u6709\u7ED1\u5B9A\u624B\u673A\uFF0C\u5219\u8981\u91CD\u65B0\u7ED1\u5B9A\u624B\u673A\u53F7 ")],-1),z={class:"mt-1 ml-2"},H=u("div",{class:"form-tips"},"\u767B\u5F55/\u6CE8\u518C\u4F1A\u5458\u65F6\uFF0C\u662F\u5426\u663E\u793A\u670D\u52A1\u534F\u8BAE\u548C\u9690\u79C1\u653F\u7B56",-1),J=u("div",{class:"font-medium mb-7"},"\u7B2C\u4E09\u65B9\u8BBE\u7F6E",-1),O={class:"mt-1 ml-2"},Q=u("div",{class:"form-tips"},"\u767B\u5F55\u65F6\u652F\u6301\u7B2C\u4E09\u65B9\u767B\u5F55\uFF0C\u65B0\u7528\u6237\u6388\u6743\u5373\u81EA\u52A8\u6CE8\u518C\u8D26\u53F7",-1),X={href:"https://open.weixin.qq.com/",target:"_blank"},Y=u("div",{class:"form-tips"},[r(" 1\u3001\u5728\u5404\u6E20\u9053\u4F7F\u7528\u5FAE\u4FE1\u6388\u6743\u767B\u5F55\u65F6\uFF0C\u5F3A\u70C8\u5EFA\u8BAE\u914D\u7F6E\u5FAE\u4FE1\u5F00\u653E\u5E73\u53F0"),u("br"),r(" 2\u3001\u5FAE\u4FE1\u5F00\u653E\u5E73\u53F0\u5173\u8054\u516C\u4F17\u53F7\u3001\u5C0F\u7A0B\u5E8F\u548CAPP\u540E\uFF0C\u53EF\u5B9E\u73B0\u5404\u7AEF\u7528\u6237\u8D26\u53F7\u7EDF\u4E00\uFF0C\u8BC6\u522B\u4E70\u5BB6\u552F\u4E00\u5FAE\u4FE1\u8EAB\u4EFD"),u("br"),r(" 3\u3001\u6CA1\u6709\u914D\u7F6E\u5FAE\u4FE1\u5F00\u653E\u5E73\u53F0\uFF0C\u540C\u4E00\u5FAE\u4FE1\u53F7\u4F1A\u751F\u6210\u591A\u4E2A\u7528\u6237\uFF0C\u914D\u7F6E\u5FAE\u4FE1\u5F00\u653E\u5E73\u53F0\u540E\u5DF2\u751F\u6210\u7684\u7528\u6237\u8D26\u53F7\u65E0\u6CD5\u5408\u5E76 ")],-1),Z=C({name:"loginRegister"}),Nu=C({...Z,setup(uu){const m=L(),e=f({login_way:[],coerce_mobile:0,login_agreement:0,third_auth:0,wechat_auth:0,qq_auth:0}),A=f({loginWay:[{required:!0,validator:(n,o,s)=>{if(e.login_way.join("").length===0)s(new Error("\u767B\u5F55\u65B9\u5F0F\u81F3\u5C11\u9009\u62E9\u4E00\u9879\uFF01"));else{if(e.login_way!==""){if(!m.value)return;m.value.validateField("checkPass",()=>null)}s()}},trigger:"change"}],coerce_mobile:[{required:!0,trigger:"blur"}],login_agreement:[{required:!0,trigger:"blur"}],third_auth:[{required:!0,trigger:"blur"}]}),c=async()=>{try{const n=await S();for(const o in e)e[o]=n[o]}catch(n){console.log("\u83B7\u53D6=>",n)}},h=async()=>{var n;await((n=m.value)==null?void 0:n.validate());try{await W(e),c()}catch(o){console.log("\u4FDD\u5B58=>",o)}};return c(),(n,o)=>{const s=y,E=V,F=k,_=x,p=q,B=U,v=R,D=w,b=N("perms");return g(),P("div",G,[t(v,{ref_key:"formRef",ref:m,rules:a(A),model:a(e),"label-width":"120px"},{default:l(()=>[t(p,{shadow:"never",class:"!border-none"},{default:l(()=>[K,t(F,{label:"\u767B\u5F55\u65B9\u5F0F",prop:"loginWay"},{default:l(()=>[u("div",null,[t(E,{modelValue:a(e).login_way,"onUpdate:modelValue":o[0]||(o[0]=i=>a(e).login_way=i)},{default:l(()=>[t(s,{label:"1"},{default:l(()=>[r("\u8D26\u53F7\u5BC6\u7801\u767B\u5F55")]),_:1}),t(s,{label:"2"},{default:l(()=>[r("\u624B\u673A\u9A8C\u8BC1\u7801\u767B\u5F55")]),_:1})]),_:1},8,["modelValue"]),M])]),_:1}),t(F,{label:"\u5F3A\u5236\u7ED1\u5B9A\u624B\u673A",prop:"coerce_mobile"},{default:l(()=>[u("div",null,[t(_,{modelValue:a(e).coerce_mobile,"onUpdate:modelValue":o[1]||(o[1]=i=>a(e).coerce_mobile=i),"active-value":1,"inactive-value":0},null,8,["modelValue"]),u("span",T,d(a(e).coerce_mobile?"\u5F00\u542F":"\u5173\u95ED"),1),$])]),_:1}),t(F,{label:"\u653F\u7B56\u534F\u8BAE",prop:"login_agreement"},{default:l(()=>[u("div",null,[t(_,{modelValue:a(e).login_agreement,"onUpdate:modelValue":o[2]||(o[2]=i=>a(e).login_agreement=i),"active-value":1,"inactive-value":0},null,8,["modelValue"]),u("span",z,d(a(e).login_agreement?"\u5F00\u542F":"\u5173\u95ED"),1),H])]),_:1})]),_:1}),t(p,{shadow:"never",class:"!border-none mt-4"},{default:l(()=>[J,t(F,{label:"\u7B2C\u4E09\u65B9\u767B\u5F55",prop:"third_auth"},{default:l(()=>[u("div",null,[t(_,{modelValue:a(e).third_auth,"onUpdate:modelValue":o[3]||(o[3]=i=>a(e).third_auth=i),"active-value":1,"inactive-value":0},null,8,["modelValue"]),u("span",O,d(a(e).third_auth?"\u5F00\u542F":"\u5173\u95ED"),1),Q,u("div",null,[t(s,{modelValue:a(e).wechat_auth,"onUpdate:modelValue":o[4]||(o[4]=i=>a(e).wechat_auth=i),"true-label":1,"false-label":0},{default:l(()=>[r(" \u5FAE\u4FE1\u767B\u5F55 ")]),_:1},8,["modelValue"])])])]),_:1}),t(F,{label:"\u5FAE\u4FE1\u5F00\u653E\u5E73\u53F0"},{default:l(()=>[u("div",null,[u("a",X,[t(B,{type:"primary",link:"",class:"underline"},{default:l(()=>[r(" \u524D\u5F80\u5FAE\u4FE1\u5F00\u653E\u5E73\u53F0 ")]),_:1})]),Y])]),_:1})]),_:1})]),_:1},8,["rules","model"]),I((g(),j(D,null,{default:l(()=>[t(B,{type:"primary",onClick:h},{default:l(()=>[r("\u4FDD\u5B58")]),_:1})]),_:1})),[[b,["setting.user.user/setRegisterConfig"]]])])}}});export{Nu as default}; diff --git a/public/admin/assets/login_register.9ac9bc2c.js b/public/admin/assets/login_register.9ac9bc2c.js new file mode 100644 index 000000000..f97f7b915 --- /dev/null +++ b/public/admin/assets/login_register.9ac9bc2c.js @@ -0,0 +1 @@ +import{_ as w}from"./index.be5645df.js";import{F as y,a0 as V,C as k,t as x,I as q,w as U,D as R}from"./element-plus.4328d892.js";import{g as S,s as W}from"./user.c65c609e.js";import{d as C,r as L,$ as f,af as N,o as g,c as P,U as t,L as l,a as u,u as a,R as r,S as d,M as I,K as j}from"./@vue.51d7f2d8.js";import"./index.ed71ac09.js";import"./@vueuse.ec90c285.js";import"./lodash.08438971.js";import"./@amap.8a62addd.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./@element-plus.a074d1f6.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";const G={class:"login-register"},K=u("div",{class:"font-medium mb-7"},"\u901A\u7528\u8BBE\u7F6E",-1),M=u("div",{class:"form-tips"},"\u7CFB\u7EDF\u901A\u7528\u767B\u5F55\u65B9\u5F0F\uFF0C\u81F3\u5C11\u9009\u62E9\u4E00\u9879",-1),T={class:"mt-1 ml-2"},$=u("div",{class:"form-tips"},[r(" 1\u3001\u5982\u679C\u5F00\u542F\uFF0C\u5219\u65B0\u7528\u6237\u5728\u6CE8\u518C\u5B8C\u6210\u4E4B\u540E\u8981\u5F3A\u5236\u7ED1\u5B9A\u624B\u673A\u53F7"),u("br"),r(" 2\u3001\u8001\u7528\u6237\u767B\u5F55\u65F6\u5982\u679C\u68C0\u6D4B\u5230\u6CA1\u6709\u7ED1\u5B9A\u624B\u673A\uFF0C\u5219\u8981\u91CD\u65B0\u7ED1\u5B9A\u624B\u673A\u53F7 ")],-1),z={class:"mt-1 ml-2"},H=u("div",{class:"form-tips"},"\u767B\u5F55/\u6CE8\u518C\u4F1A\u5458\u65F6\uFF0C\u662F\u5426\u663E\u793A\u670D\u52A1\u534F\u8BAE\u548C\u9690\u79C1\u653F\u7B56",-1),J=u("div",{class:"font-medium mb-7"},"\u7B2C\u4E09\u65B9\u8BBE\u7F6E",-1),O={class:"mt-1 ml-2"},Q=u("div",{class:"form-tips"},"\u767B\u5F55\u65F6\u652F\u6301\u7B2C\u4E09\u65B9\u767B\u5F55\uFF0C\u65B0\u7528\u6237\u6388\u6743\u5373\u81EA\u52A8\u6CE8\u518C\u8D26\u53F7",-1),X={href:"https://open.weixin.qq.com/",target:"_blank"},Y=u("div",{class:"form-tips"},[r(" 1\u3001\u5728\u5404\u6E20\u9053\u4F7F\u7528\u5FAE\u4FE1\u6388\u6743\u767B\u5F55\u65F6\uFF0C\u5F3A\u70C8\u5EFA\u8BAE\u914D\u7F6E\u5FAE\u4FE1\u5F00\u653E\u5E73\u53F0"),u("br"),r(" 2\u3001\u5FAE\u4FE1\u5F00\u653E\u5E73\u53F0\u5173\u8054\u516C\u4F17\u53F7\u3001\u5C0F\u7A0B\u5E8F\u548CAPP\u540E\uFF0C\u53EF\u5B9E\u73B0\u5404\u7AEF\u7528\u6237\u8D26\u53F7\u7EDF\u4E00\uFF0C\u8BC6\u522B\u4E70\u5BB6\u552F\u4E00\u5FAE\u4FE1\u8EAB\u4EFD"),u("br"),r(" 3\u3001\u6CA1\u6709\u914D\u7F6E\u5FAE\u4FE1\u5F00\u653E\u5E73\u53F0\uFF0C\u540C\u4E00\u5FAE\u4FE1\u53F7\u4F1A\u751F\u6210\u591A\u4E2A\u7528\u6237\uFF0C\u914D\u7F6E\u5FAE\u4FE1\u5F00\u653E\u5E73\u53F0\u540E\u5DF2\u751F\u6210\u7684\u7528\u6237\u8D26\u53F7\u65E0\u6CD5\u5408\u5E76 ")],-1),Z=C({name:"loginRegister"}),Nu=C({...Z,setup(uu){const m=L(),e=f({login_way:[],coerce_mobile:0,login_agreement:0,third_auth:0,wechat_auth:0,qq_auth:0}),A=f({loginWay:[{required:!0,validator:(n,o,s)=>{if(e.login_way.join("").length===0)s(new Error("\u767B\u5F55\u65B9\u5F0F\u81F3\u5C11\u9009\u62E9\u4E00\u9879\uFF01"));else{if(e.login_way!==""){if(!m.value)return;m.value.validateField("checkPass",()=>null)}s()}},trigger:"change"}],coerce_mobile:[{required:!0,trigger:"blur"}],login_agreement:[{required:!0,trigger:"blur"}],third_auth:[{required:!0,trigger:"blur"}]}),c=async()=>{try{const n=await S();for(const o in e)e[o]=n[o]}catch(n){console.log("\u83B7\u53D6=>",n)}},h=async()=>{var n;await((n=m.value)==null?void 0:n.validate());try{await W(e),c()}catch(o){console.log("\u4FDD\u5B58=>",o)}};return c(),(n,o)=>{const s=y,E=V,F=k,_=x,p=q,B=U,v=R,D=w,b=N("perms");return g(),P("div",G,[t(v,{ref_key:"formRef",ref:m,rules:a(A),model:a(e),"label-width":"120px"},{default:l(()=>[t(p,{shadow:"never",class:"!border-none"},{default:l(()=>[K,t(F,{label:"\u767B\u5F55\u65B9\u5F0F",prop:"loginWay"},{default:l(()=>[u("div",null,[t(E,{modelValue:a(e).login_way,"onUpdate:modelValue":o[0]||(o[0]=i=>a(e).login_way=i)},{default:l(()=>[t(s,{label:"1"},{default:l(()=>[r("\u8D26\u53F7\u5BC6\u7801\u767B\u5F55")]),_:1}),t(s,{label:"2"},{default:l(()=>[r("\u624B\u673A\u9A8C\u8BC1\u7801\u767B\u5F55")]),_:1})]),_:1},8,["modelValue"]),M])]),_:1}),t(F,{label:"\u5F3A\u5236\u7ED1\u5B9A\u624B\u673A",prop:"coerce_mobile"},{default:l(()=>[u("div",null,[t(_,{modelValue:a(e).coerce_mobile,"onUpdate:modelValue":o[1]||(o[1]=i=>a(e).coerce_mobile=i),"active-value":1,"inactive-value":0},null,8,["modelValue"]),u("span",T,d(a(e).coerce_mobile?"\u5F00\u542F":"\u5173\u95ED"),1),$])]),_:1}),t(F,{label:"\u653F\u7B56\u534F\u8BAE",prop:"login_agreement"},{default:l(()=>[u("div",null,[t(_,{modelValue:a(e).login_agreement,"onUpdate:modelValue":o[2]||(o[2]=i=>a(e).login_agreement=i),"active-value":1,"inactive-value":0},null,8,["modelValue"]),u("span",z,d(a(e).login_agreement?"\u5F00\u542F":"\u5173\u95ED"),1),H])]),_:1})]),_:1}),t(p,{shadow:"never",class:"!border-none mt-4"},{default:l(()=>[J,t(F,{label:"\u7B2C\u4E09\u65B9\u767B\u5F55",prop:"third_auth"},{default:l(()=>[u("div",null,[t(_,{modelValue:a(e).third_auth,"onUpdate:modelValue":o[3]||(o[3]=i=>a(e).third_auth=i),"active-value":1,"inactive-value":0},null,8,["modelValue"]),u("span",O,d(a(e).third_auth?"\u5F00\u542F":"\u5173\u95ED"),1),Q,u("div",null,[t(s,{modelValue:a(e).wechat_auth,"onUpdate:modelValue":o[4]||(o[4]=i=>a(e).wechat_auth=i),"true-label":1,"false-label":0},{default:l(()=>[r(" \u5FAE\u4FE1\u767B\u5F55 ")]),_:1},8,["modelValue"])])])]),_:1}),t(F,{label:"\u5FAE\u4FE1\u5F00\u653E\u5E73\u53F0"},{default:l(()=>[u("div",null,[u("a",X,[t(B,{type:"primary",link:"",class:"underline"},{default:l(()=>[r(" \u524D\u5F80\u5FAE\u4FE1\u5F00\u653E\u5E73\u53F0 ")]),_:1})]),Y])]),_:1})]),_:1})]),_:1},8,["rules","model"]),I((g(),j(D,null,{default:l(()=>[t(B,{type:"primary",onClick:h},{default:l(()=>[r("\u4FDD\u5B58")]),_:1})]),_:1})),[[b,["setting.user.user/setRegisterConfig"]]])])}}});export{Nu as default}; diff --git a/public/admin/assets/login_register.dc093486.js b/public/admin/assets/login_register.dc093486.js new file mode 100644 index 000000000..17561ec51 --- /dev/null +++ b/public/admin/assets/login_register.dc093486.js @@ -0,0 +1 @@ +import{_ as w}from"./index.fd04a214.js";import{F as y,a0 as V,C as k,t as x,I as q,w as U,D as R}from"./element-plus.4328d892.js";import{g as S,s as W}from"./user.12a6ca53.js";import{d as C,r as L,$ as f,af as N,o as g,c as P,U as t,L as l,a as u,u as a,R as r,S as d,M as I,K as j}from"./@vue.51d7f2d8.js";import"./index.37f7aea6.js";import"./@vueuse.ec90c285.js";import"./lodash.08438971.js";import"./@amap.8a62addd.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./@element-plus.a074d1f6.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";const G={class:"login-register"},K=u("div",{class:"font-medium mb-7"},"\u901A\u7528\u8BBE\u7F6E",-1),M=u("div",{class:"form-tips"},"\u7CFB\u7EDF\u901A\u7528\u767B\u5F55\u65B9\u5F0F\uFF0C\u81F3\u5C11\u9009\u62E9\u4E00\u9879",-1),T={class:"mt-1 ml-2"},$=u("div",{class:"form-tips"},[r(" 1\u3001\u5982\u679C\u5F00\u542F\uFF0C\u5219\u65B0\u7528\u6237\u5728\u6CE8\u518C\u5B8C\u6210\u4E4B\u540E\u8981\u5F3A\u5236\u7ED1\u5B9A\u624B\u673A\u53F7"),u("br"),r(" 2\u3001\u8001\u7528\u6237\u767B\u5F55\u65F6\u5982\u679C\u68C0\u6D4B\u5230\u6CA1\u6709\u7ED1\u5B9A\u624B\u673A\uFF0C\u5219\u8981\u91CD\u65B0\u7ED1\u5B9A\u624B\u673A\u53F7 ")],-1),z={class:"mt-1 ml-2"},H=u("div",{class:"form-tips"},"\u767B\u5F55/\u6CE8\u518C\u4F1A\u5458\u65F6\uFF0C\u662F\u5426\u663E\u793A\u670D\u52A1\u534F\u8BAE\u548C\u9690\u79C1\u653F\u7B56",-1),J=u("div",{class:"font-medium mb-7"},"\u7B2C\u4E09\u65B9\u8BBE\u7F6E",-1),O={class:"mt-1 ml-2"},Q=u("div",{class:"form-tips"},"\u767B\u5F55\u65F6\u652F\u6301\u7B2C\u4E09\u65B9\u767B\u5F55\uFF0C\u65B0\u7528\u6237\u6388\u6743\u5373\u81EA\u52A8\u6CE8\u518C\u8D26\u53F7",-1),X={href:"https://open.weixin.qq.com/",target:"_blank"},Y=u("div",{class:"form-tips"},[r(" 1\u3001\u5728\u5404\u6E20\u9053\u4F7F\u7528\u5FAE\u4FE1\u6388\u6743\u767B\u5F55\u65F6\uFF0C\u5F3A\u70C8\u5EFA\u8BAE\u914D\u7F6E\u5FAE\u4FE1\u5F00\u653E\u5E73\u53F0"),u("br"),r(" 2\u3001\u5FAE\u4FE1\u5F00\u653E\u5E73\u53F0\u5173\u8054\u516C\u4F17\u53F7\u3001\u5C0F\u7A0B\u5E8F\u548CAPP\u540E\uFF0C\u53EF\u5B9E\u73B0\u5404\u7AEF\u7528\u6237\u8D26\u53F7\u7EDF\u4E00\uFF0C\u8BC6\u522B\u4E70\u5BB6\u552F\u4E00\u5FAE\u4FE1\u8EAB\u4EFD"),u("br"),r(" 3\u3001\u6CA1\u6709\u914D\u7F6E\u5FAE\u4FE1\u5F00\u653E\u5E73\u53F0\uFF0C\u540C\u4E00\u5FAE\u4FE1\u53F7\u4F1A\u751F\u6210\u591A\u4E2A\u7528\u6237\uFF0C\u914D\u7F6E\u5FAE\u4FE1\u5F00\u653E\u5E73\u53F0\u540E\u5DF2\u751F\u6210\u7684\u7528\u6237\u8D26\u53F7\u65E0\u6CD5\u5408\u5E76 ")],-1),Z=C({name:"loginRegister"}),Nu=C({...Z,setup(uu){const m=L(),e=f({login_way:[],coerce_mobile:0,login_agreement:0,third_auth:0,wechat_auth:0,qq_auth:0}),A=f({loginWay:[{required:!0,validator:(n,o,s)=>{if(e.login_way.join("").length===0)s(new Error("\u767B\u5F55\u65B9\u5F0F\u81F3\u5C11\u9009\u62E9\u4E00\u9879\uFF01"));else{if(e.login_way!==""){if(!m.value)return;m.value.validateField("checkPass",()=>null)}s()}},trigger:"change"}],coerce_mobile:[{required:!0,trigger:"blur"}],login_agreement:[{required:!0,trigger:"blur"}],third_auth:[{required:!0,trigger:"blur"}]}),c=async()=>{try{const n=await S();for(const o in e)e[o]=n[o]}catch(n){console.log("\u83B7\u53D6=>",n)}},h=async()=>{var n;await((n=m.value)==null?void 0:n.validate());try{await W(e),c()}catch(o){console.log("\u4FDD\u5B58=>",o)}};return c(),(n,o)=>{const s=y,E=V,F=k,_=x,p=q,B=U,v=R,D=w,b=N("perms");return g(),P("div",G,[t(v,{ref_key:"formRef",ref:m,rules:a(A),model:a(e),"label-width":"120px"},{default:l(()=>[t(p,{shadow:"never",class:"!border-none"},{default:l(()=>[K,t(F,{label:"\u767B\u5F55\u65B9\u5F0F",prop:"loginWay"},{default:l(()=>[u("div",null,[t(E,{modelValue:a(e).login_way,"onUpdate:modelValue":o[0]||(o[0]=i=>a(e).login_way=i)},{default:l(()=>[t(s,{label:"1"},{default:l(()=>[r("\u8D26\u53F7\u5BC6\u7801\u767B\u5F55")]),_:1}),t(s,{label:"2"},{default:l(()=>[r("\u624B\u673A\u9A8C\u8BC1\u7801\u767B\u5F55")]),_:1})]),_:1},8,["modelValue"]),M])]),_:1}),t(F,{label:"\u5F3A\u5236\u7ED1\u5B9A\u624B\u673A",prop:"coerce_mobile"},{default:l(()=>[u("div",null,[t(_,{modelValue:a(e).coerce_mobile,"onUpdate:modelValue":o[1]||(o[1]=i=>a(e).coerce_mobile=i),"active-value":1,"inactive-value":0},null,8,["modelValue"]),u("span",T,d(a(e).coerce_mobile?"\u5F00\u542F":"\u5173\u95ED"),1),$])]),_:1}),t(F,{label:"\u653F\u7B56\u534F\u8BAE",prop:"login_agreement"},{default:l(()=>[u("div",null,[t(_,{modelValue:a(e).login_agreement,"onUpdate:modelValue":o[2]||(o[2]=i=>a(e).login_agreement=i),"active-value":1,"inactive-value":0},null,8,["modelValue"]),u("span",z,d(a(e).login_agreement?"\u5F00\u542F":"\u5173\u95ED"),1),H])]),_:1})]),_:1}),t(p,{shadow:"never",class:"!border-none mt-4"},{default:l(()=>[J,t(F,{label:"\u7B2C\u4E09\u65B9\u767B\u5F55",prop:"third_auth"},{default:l(()=>[u("div",null,[t(_,{modelValue:a(e).third_auth,"onUpdate:modelValue":o[3]||(o[3]=i=>a(e).third_auth=i),"active-value":1,"inactive-value":0},null,8,["modelValue"]),u("span",O,d(a(e).third_auth?"\u5F00\u542F":"\u5173\u95ED"),1),Q,u("div",null,[t(s,{modelValue:a(e).wechat_auth,"onUpdate:modelValue":o[4]||(o[4]=i=>a(e).wechat_auth=i),"true-label":1,"false-label":0},{default:l(()=>[r(" \u5FAE\u4FE1\u767B\u5F55 ")]),_:1},8,["modelValue"])])])]),_:1}),t(F,{label:"\u5FAE\u4FE1\u5F00\u653E\u5E73\u53F0"},{default:l(()=>[u("div",null,[u("a",X,[t(B,{type:"primary",link:"",class:"underline"},{default:l(()=>[r(" \u524D\u5F80\u5FAE\u4FE1\u5F00\u653E\u5E73\u53F0 ")]),_:1})]),Y])]),_:1})]),_:1})]),_:1},8,["rules","model"]),I((g(),j(D,null,{default:l(()=>[t(B,{type:"primary",onClick:h},{default:l(()=>[r("\u4FDD\u5B58")]),_:1})]),_:1})),[[b,["setting.user.user/setRegisterConfig"]]])])}}});export{Nu as default}; diff --git a/public/admin/assets/map.6694c455.js b/public/admin/assets/map.6694c455.js new file mode 100644 index 000000000..205e5ef40 --- /dev/null +++ b/public/admin/assets/map.6694c455.js @@ -0,0 +1 @@ +import"./map.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.0177b6b6.js";import{_ as N}from"./map.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.0177b6b6.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.5759a1a6.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.37f7aea6.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";export{N as default}; diff --git a/public/admin/assets/map.b3321cb5.js b/public/admin/assets/map.b3321cb5.js new file mode 100644 index 000000000..c8dd650a1 --- /dev/null +++ b/public/admin/assets/map.b3321cb5.js @@ -0,0 +1 @@ +import"./map.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.9d7f531d.js";import{_ as N}from"./map.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.9d7f531d.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.fa872673.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.aa9bb752.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";export{N as default}; diff --git a/public/admin/assets/map.e3af983e.js b/public/admin/assets/map.e3af983e.js new file mode 100644 index 000000000..27fe389a8 --- /dev/null +++ b/public/admin/assets/map.e3af983e.js @@ -0,0 +1 @@ +import"./map.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.c34becfa.js";import{_ as N}from"./map.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.c34becfa.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.b940d6e3.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.ed71ac09.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";export{N as default}; diff --git a/public/admin/assets/map.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.0177b6b6.js b/public/admin/assets/map.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.0177b6b6.js new file mode 100644 index 000000000..526fb3424 --- /dev/null +++ b/public/admin/assets/map.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.0177b6b6.js @@ -0,0 +1 @@ +import{k as b,B as V,w as L,C as P,D as N}from"./element-plus.4328d892.js";import{P as G}from"./index.5759a1a6.js";import{r as h,d as I}from"./index.37f7aea6.js";import"./lodash.08438971.js";import{A as O}from"./@amap.8a62addd.js";import{d as M,s as F,j as $,o as A,c as R,r as k,U as i,L as d,u as E,k as z,R as B,n as j}from"./@vue.51d7f2d8.js";function ae(o){return h.get({url:"/task_template.task_template/lists",params:o})}function le(o){return h.post({url:"/task_template.task_template/add",params:o})}function ne(o){return h.post({url:"/task_template.task_template/edit",params:o})}function oe(o){return h.post({url:"/task_template.task_template/delete",params:o})}function J(o){return h.get({url:"/task_template.task_template/detail",params:o})}function se(o){return h.get({url:"/setting.dict.dict_data/lists",params:o})}const U=M({name:"mapContainer"}),q=M({...U,emits:["changeMaps"],setup(o,{expose:x,emit:m}){const l=F(null);let n=null,u=[],p=0,_=null,s=null;const f=()=>{var r;try{u=[],(r=l.value)==null||r.clearMap(),p=0,m("changeMaps",u)}catch(a){console.log(a)}},w=async()=>{n=await O.load({key:"4f8f55618010007147aab96fc72bb408",version:"2.0"}),l.value=new n.Map("container",{zoom:13,viewMode:"2D",center:[105.4423,28.8717]}),n.plugin("AMap.Geocoder",function(){_=new n.Geocoder({radius:10,extensions:"all"})}),n.plugin("AMap.Geolocation",function(){let a=new n.Geolocation({enableHighAccuracy:!0,timeout:1e4,buttonPosition:"RB",zoomToAccuracy:!0});l.value.addControl(a)}),l.value.setFitView(),l.value.on("click",a=>{var c;p>=1&&((c=l.value)==null||c.remove(s),p=0),y(a.lnglat.lng,a.lnglat.lat,a),s=new n.Marker({position:a.lnglat,offset:new n.Pixel(0,0),title:"\u4F4D\u7F6E"}),l.value.add(s),p++,s.on("click",e=>{u=[],m("changeMaps",u),l.value.remove(s),p--,s=null})})},g=r=>{n.plugin("AMap.PlaceSearch",async function(){try{const a=new n.PlaceSearch({pageSize:5,pageIndex:1,city:"510500",citylimit:!0,map:l.value,panel:!1,autoFitView:!0});n.Event.addListener(a,"markerClick",c=>{var e;s&&((e=l.value)==null||e.remove(s)),y(c.event.lnglat.lng,c.event.lnglat.lat,c.event)}),a.search(r)}catch{b.error("\u6CA1\u627E\u5230")}})},y=(r,a,c)=>{_.getAddress([r,a],function(e,t){e==="complete"&&t.info==="OK"?(u=[],u.push({lnglat:c.lnglat,address:t.regeocode.formattedAddress}),m("changeMaps",u)):b.error("\u9006\u5730\u7406\u7F16\u7801\u5931\u8D25")})};return x({resetMap:f,searchMap:g}),$(()=>{w()}),(r,a)=>(A(),R("div",{id:"container",ref_key:"map",ref:l},null,512))}});const H=I(q,[["__scopeId","data-v-8c2b7737"]]),K={class:"edit-popup"},Q=M({name:"taskTemplateEdit"}),ue=M({...Q,props:{dictData:{type:Object,default:()=>({})}},emits:["success","close"],setup(o,{expose:x,emit:m}){F();const l=F();k("add"),k([]);const n=k(""),u=async e=>{for(const t in formData)e[t]!=null&&e[t]!=null&&(formData[t]=e[t])},p=async e=>{const t=await J({id:e.id});u(t)},_=k(null),s=()=>{_.value.resetMap()},f=k(""),w=()=>{_.value.searchMap(f.value)},g=k([]),y=e=>{g.value=JSON.parse(JSON.stringify(e))},r=async()=>{var e;if(g.value.length<1)return b.error("\u8BF7\u5148\u9009\u62E9\u5730\u70B9");(e=l.value)==null||e.close(),m("success",g.value)},a=async(e="\u5730\u70B9")=>{var t;n.value="\u9009\u62E9"+e,(t=l.value)==null||t.open(),await j(),s()},c=()=>{m("close")};return x({open:a,setFormData:u,getDetail:p}),(e,t)=>{const T=V,D=L,C=P,S=N;return A(),R("div",K,[i(G,{ref_key:"popupRef",ref:l,title:E(n),async:!0,width:"550px",onConfirm:r,onClose:c},{default:d(()=>[i(S,null,{default:d(()=>[i(C,{label:""},{default:d(()=>[i(T,{style:{width:"300px","margin-right":"16px"},placeholder:"\u8BF7\u8F93\u5165\u8981\u641C\u7D22\u7684\u5730\u5740",modelValue:E(f),"onUpdate:modelValue":t[0]||(t[0]=v=>z(f)?f.value=v:null),clearable:""},null,8,["modelValue"]),i(D,{type:"primary",onClick:t[1]||(t[1]=v=>w())},{default:d(()=>[B("\u641C\u7D22")]),_:1}),i(D,{onClick:t[2]||(t[2]=v=>s())},{default:d(()=>[B("\u91CD\u7F6E")]),_:1})]),_:1}),i(C,{"label-width":"80px",label:"\u5730\u56FE"},{default:d(()=>[i(H,{ref_key:"mapRef",ref:_,onChangeMaps:y},null,512)]),_:1}),i(C,{"label-width":"80px",label:"\u5DF2\u9009\u5730\u70B9"},{default:d(()=>{var v;return[i(T,{style:{width:"350px","margin-right":"16px"},placeholder:"\u8BF7\u70B9\u51FB\u4E0A\u65B9\u5730\u56FE\u9009\u62E9\u5730\u70B9",readonly:"",value:(v=E(g)[0])==null?void 0:v.address},null,8,["value"])]}),_:1})]),_:1})]),_:1},8,["title"])])}}});export{ue as _,ae as a,se as b,J as c,ne as d,le as e,oe as f}; diff --git a/public/admin/assets/map.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.9d7f531d.js b/public/admin/assets/map.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.9d7f531d.js new file mode 100644 index 000000000..76c273d51 --- /dev/null +++ b/public/admin/assets/map.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.9d7f531d.js @@ -0,0 +1 @@ +import{k as b,B as V,w as L,C as P,D as N}from"./element-plus.4328d892.js";import{P as G}from"./index.fa872673.js";import{r as h,d as I}from"./index.aa9bb752.js";import"./lodash.08438971.js";import{A as O}from"./@amap.8a62addd.js";import{d as M,s as F,j as $,o as A,c as R,r as k,U as i,L as d,u as E,k as z,R as B,n as j}from"./@vue.51d7f2d8.js";function ae(o){return h.get({url:"/task_template.task_template/lists",params:o})}function le(o){return h.post({url:"/task_template.task_template/add",params:o})}function ne(o){return h.post({url:"/task_template.task_template/edit",params:o})}function oe(o){return h.post({url:"/task_template.task_template/delete",params:o})}function J(o){return h.get({url:"/task_template.task_template/detail",params:o})}function se(o){return h.get({url:"/setting.dict.dict_data/lists",params:o})}const U=M({name:"mapContainer"}),q=M({...U,emits:["changeMaps"],setup(o,{expose:x,emit:m}){const l=F(null);let n=null,u=[],p=0,_=null,s=null;const f=()=>{var r;try{u=[],(r=l.value)==null||r.clearMap(),p=0,m("changeMaps",u)}catch(a){console.log(a)}},w=async()=>{n=await O.load({key:"4f8f55618010007147aab96fc72bb408",version:"2.0"}),l.value=new n.Map("container",{zoom:13,viewMode:"2D",center:[105.4423,28.8717]}),n.plugin("AMap.Geocoder",function(){_=new n.Geocoder({radius:10,extensions:"all"})}),n.plugin("AMap.Geolocation",function(){let a=new n.Geolocation({enableHighAccuracy:!0,timeout:1e4,buttonPosition:"RB",zoomToAccuracy:!0});l.value.addControl(a)}),l.value.setFitView(),l.value.on("click",a=>{var c;p>=1&&((c=l.value)==null||c.remove(s),p=0),y(a.lnglat.lng,a.lnglat.lat,a),s=new n.Marker({position:a.lnglat,offset:new n.Pixel(0,0),title:"\u4F4D\u7F6E"}),l.value.add(s),p++,s.on("click",e=>{u=[],m("changeMaps",u),l.value.remove(s),p--,s=null})})},g=r=>{n.plugin("AMap.PlaceSearch",async function(){try{const a=new n.PlaceSearch({pageSize:5,pageIndex:1,city:"510500",citylimit:!0,map:l.value,panel:!1,autoFitView:!0});n.Event.addListener(a,"markerClick",c=>{var e;s&&((e=l.value)==null||e.remove(s)),y(c.event.lnglat.lng,c.event.lnglat.lat,c.event)}),a.search(r)}catch{b.error("\u6CA1\u627E\u5230")}})},y=(r,a,c)=>{_.getAddress([r,a],function(e,t){e==="complete"&&t.info==="OK"?(u=[],u.push({lnglat:c.lnglat,address:t.regeocode.formattedAddress}),m("changeMaps",u)):b.error("\u9006\u5730\u7406\u7F16\u7801\u5931\u8D25")})};return x({resetMap:f,searchMap:g}),$(()=>{w()}),(r,a)=>(A(),R("div",{id:"container",ref_key:"map",ref:l},null,512))}});const H=I(q,[["__scopeId","data-v-8c2b7737"]]),K={class:"edit-popup"},Q=M({name:"taskTemplateEdit"}),ue=M({...Q,props:{dictData:{type:Object,default:()=>({})}},emits:["success","close"],setup(o,{expose:x,emit:m}){F();const l=F();k("add"),k([]);const n=k(""),u=async e=>{for(const t in formData)e[t]!=null&&e[t]!=null&&(formData[t]=e[t])},p=async e=>{const t=await J({id:e.id});u(t)},_=k(null),s=()=>{_.value.resetMap()},f=k(""),w=()=>{_.value.searchMap(f.value)},g=k([]),y=e=>{g.value=JSON.parse(JSON.stringify(e))},r=async()=>{var e;if(g.value.length<1)return b.error("\u8BF7\u5148\u9009\u62E9\u5730\u70B9");(e=l.value)==null||e.close(),m("success",g.value)},a=async(e="\u5730\u70B9")=>{var t;n.value="\u9009\u62E9"+e,(t=l.value)==null||t.open(),await j(),s()},c=()=>{m("close")};return x({open:a,setFormData:u,getDetail:p}),(e,t)=>{const T=V,D=L,C=P,S=N;return A(),R("div",K,[i(G,{ref_key:"popupRef",ref:l,title:E(n),async:!0,width:"550px",onConfirm:r,onClose:c},{default:d(()=>[i(S,null,{default:d(()=>[i(C,{label:""},{default:d(()=>[i(T,{style:{width:"300px","margin-right":"16px"},placeholder:"\u8BF7\u8F93\u5165\u8981\u641C\u7D22\u7684\u5730\u5740",modelValue:E(f),"onUpdate:modelValue":t[0]||(t[0]=v=>z(f)?f.value=v:null),clearable:""},null,8,["modelValue"]),i(D,{type:"primary",onClick:t[1]||(t[1]=v=>w())},{default:d(()=>[B("\u641C\u7D22")]),_:1}),i(D,{onClick:t[2]||(t[2]=v=>s())},{default:d(()=>[B("\u91CD\u7F6E")]),_:1})]),_:1}),i(C,{"label-width":"80px",label:"\u5730\u56FE"},{default:d(()=>[i(H,{ref_key:"mapRef",ref:_,onChangeMaps:y},null,512)]),_:1}),i(C,{"label-width":"80px",label:"\u5DF2\u9009\u5730\u70B9"},{default:d(()=>{var v;return[i(T,{style:{width:"350px","margin-right":"16px"},placeholder:"\u8BF7\u70B9\u51FB\u4E0A\u65B9\u5730\u56FE\u9009\u62E9\u5730\u70B9",readonly:"",value:(v=E(g)[0])==null?void 0:v.address},null,8,["value"])]}),_:1})]),_:1})]),_:1},8,["title"])])}}});export{ue as _,ae as a,se as b,J as c,ne as d,le as e,oe as f}; diff --git a/public/admin/assets/map.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.c34becfa.js b/public/admin/assets/map.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.c34becfa.js new file mode 100644 index 000000000..3d58f0336 --- /dev/null +++ b/public/admin/assets/map.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.c34becfa.js @@ -0,0 +1 @@ +import{k as b,B as V,w as L,C as P,D as N}from"./element-plus.4328d892.js";import{P as G}from"./index.b940d6e3.js";import{r as h,d as I}from"./index.ed71ac09.js";import"./lodash.08438971.js";import{A as O}from"./@amap.8a62addd.js";import{d as M,s as F,j as $,o as A,c as R,r as k,U as i,L as d,u as E,k as z,R as B,n as j}from"./@vue.51d7f2d8.js";function ae(o){return h.get({url:"/task_template.task_template/lists",params:o})}function le(o){return h.post({url:"/task_template.task_template/add",params:o})}function ne(o){return h.post({url:"/task_template.task_template/edit",params:o})}function oe(o){return h.post({url:"/task_template.task_template/delete",params:o})}function J(o){return h.get({url:"/task_template.task_template/detail",params:o})}function se(o){return h.get({url:"/setting.dict.dict_data/lists",params:o})}const U=M({name:"mapContainer"}),q=M({...U,emits:["changeMaps"],setup(o,{expose:x,emit:m}){const l=F(null);let n=null,u=[],p=0,_=null,s=null;const f=()=>{var r;try{u=[],(r=l.value)==null||r.clearMap(),p=0,m("changeMaps",u)}catch(a){console.log(a)}},w=async()=>{n=await O.load({key:"4f8f55618010007147aab96fc72bb408",version:"2.0"}),l.value=new n.Map("container",{zoom:13,viewMode:"2D",center:[105.4423,28.8717]}),n.plugin("AMap.Geocoder",function(){_=new n.Geocoder({radius:10,extensions:"all"})}),n.plugin("AMap.Geolocation",function(){let a=new n.Geolocation({enableHighAccuracy:!0,timeout:1e4,buttonPosition:"RB",zoomToAccuracy:!0});l.value.addControl(a)}),l.value.setFitView(),l.value.on("click",a=>{var c;p>=1&&((c=l.value)==null||c.remove(s),p=0),y(a.lnglat.lng,a.lnglat.lat,a),s=new n.Marker({position:a.lnglat,offset:new n.Pixel(0,0),title:"\u4F4D\u7F6E"}),l.value.add(s),p++,s.on("click",e=>{u=[],m("changeMaps",u),l.value.remove(s),p--,s=null})})},g=r=>{n.plugin("AMap.PlaceSearch",async function(){try{const a=new n.PlaceSearch({pageSize:5,pageIndex:1,city:"510500",citylimit:!0,map:l.value,panel:!1,autoFitView:!0});n.Event.addListener(a,"markerClick",c=>{var e;s&&((e=l.value)==null||e.remove(s)),y(c.event.lnglat.lng,c.event.lnglat.lat,c.event)}),a.search(r)}catch{b.error("\u6CA1\u627E\u5230")}})},y=(r,a,c)=>{_.getAddress([r,a],function(e,t){e==="complete"&&t.info==="OK"?(u=[],u.push({lnglat:c.lnglat,address:t.regeocode.formattedAddress}),m("changeMaps",u)):b.error("\u9006\u5730\u7406\u7F16\u7801\u5931\u8D25")})};return x({resetMap:f,searchMap:g}),$(()=>{w()}),(r,a)=>(A(),R("div",{id:"container",ref_key:"map",ref:l},null,512))}});const H=I(q,[["__scopeId","data-v-8c2b7737"]]),K={class:"edit-popup"},Q=M({name:"taskTemplateEdit"}),ue=M({...Q,props:{dictData:{type:Object,default:()=>({})}},emits:["success","close"],setup(o,{expose:x,emit:m}){F();const l=F();k("add"),k([]);const n=k(""),u=async e=>{for(const t in formData)e[t]!=null&&e[t]!=null&&(formData[t]=e[t])},p=async e=>{const t=await J({id:e.id});u(t)},_=k(null),s=()=>{_.value.resetMap()},f=k(""),w=()=>{_.value.searchMap(f.value)},g=k([]),y=e=>{g.value=JSON.parse(JSON.stringify(e))},r=async()=>{var e;if(g.value.length<1)return b.error("\u8BF7\u5148\u9009\u62E9\u5730\u70B9");(e=l.value)==null||e.close(),m("success",g.value)},a=async(e="\u5730\u70B9")=>{var t;n.value="\u9009\u62E9"+e,(t=l.value)==null||t.open(),await j(),s()},c=()=>{m("close")};return x({open:a,setFormData:u,getDetail:p}),(e,t)=>{const T=V,D=L,C=P,S=N;return A(),R("div",K,[i(G,{ref_key:"popupRef",ref:l,title:E(n),async:!0,width:"550px",onConfirm:r,onClose:c},{default:d(()=>[i(S,null,{default:d(()=>[i(C,{label:""},{default:d(()=>[i(T,{style:{width:"300px","margin-right":"16px"},placeholder:"\u8BF7\u8F93\u5165\u8981\u641C\u7D22\u7684\u5730\u5740",modelValue:E(f),"onUpdate:modelValue":t[0]||(t[0]=v=>z(f)?f.value=v:null),clearable:""},null,8,["modelValue"]),i(D,{type:"primary",onClick:t[1]||(t[1]=v=>w())},{default:d(()=>[B("\u641C\u7D22")]),_:1}),i(D,{onClick:t[2]||(t[2]=v=>s())},{default:d(()=>[B("\u91CD\u7F6E")]),_:1})]),_:1}),i(C,{"label-width":"80px",label:"\u5730\u56FE"},{default:d(()=>[i(H,{ref_key:"mapRef",ref:_,onChangeMaps:y},null,512)]),_:1}),i(C,{"label-width":"80px",label:"\u5DF2\u9009\u5730\u70B9"},{default:d(()=>{var v;return[i(T,{style:{width:"350px","margin-right":"16px"},placeholder:"\u8BF7\u70B9\u51FB\u4E0A\u65B9\u5730\u56FE\u9009\u62E9\u5730\u70B9",readonly:"",value:(v=E(g)[0])==null?void 0:v.address},null,8,["value"])]}),_:1})]),_:1})]),_:1},8,["title"])])}}});export{ue as _,ae as a,se as b,J as c,ne as d,le as e,oe as f}; diff --git a/public/admin/assets/menu.072eb1d3.js b/public/admin/assets/menu.072eb1d3.js new file mode 100644 index 000000000..cc557dccd --- /dev/null +++ b/public/admin/assets/menu.072eb1d3.js @@ -0,0 +1 @@ +import{r as t}from"./index.aa9bb752.js";function n(u){return t.get({url:"/auth.menu/lists",params:u})}function r(u){return t.get({url:"/auth.menu/all",params:u})}function a(u){return t.post({url:"/auth.menu/add",params:u})}function l(u){return t.post({url:"/auth.menu/edit",params:u})}function m(u){return t.post({url:"/auth.menu/delete",params:u})}function s(u){return t.get({url:"/auth.menu/detail",params:u})}export{n as a,l as b,a as c,s as d,m as e,r as m}; diff --git a/public/admin/assets/menu.124c50be.js b/public/admin/assets/menu.124c50be.js new file mode 100644 index 000000000..e4d98200c --- /dev/null +++ b/public/admin/assets/menu.124c50be.js @@ -0,0 +1 @@ +import{_ as h}from"./index.fd04a214.js";import{S as v,I as C,w as E}from"./element-plus.4328d892.js";import x from"./oa-phone.d9c736e3.js";import D from"./oa-attr.76d371a3.js";import{u as B}from"./useMenuOa.d8466380.js";import{d as c,af as w,o as e,c as b,U as o,L as t,a as n,M as a,K as p,u as s,R as u}from"./@vue.51d7f2d8.js";import{d as k}from"./index.37f7aea6.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.fe1d30dd.js";import"./index.5759a1a6.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./oa-menu-form.vue_vue_type_script_setup_true_lang.87d0840e.js";import"./oa-menu-form-edit.vue_vue_type_script_setup_true_lang.610f90ea.js";import"./wx_oa.115c1d98.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const y={class:"menu-oa"},g={class:"lg:flex flex-1"},M={class:"mt-4 lg:mt-0 max-w-[400px]"},A=c({name:"wxOaMenu"}),O=c({...A,setup(N){const{getOaMenuFunc:_,handleSave:l,handlePublish:d}=B(void 0);return _(),(V,I)=>{const f=v,r=C,i=E,F=h,m=w("perms");return e(),b("div",y,[o(r,{class:"!border-none",shadow:"never"},{default:t(()=>[o(f,{type:"warning",title:"\u914D\u7F6E\u5FAE\u4FE1\u516C\u4F17\u53F7\u83DC\u5355\uFF0C\u70B9\u51FB\u786E\u8BA4\uFF0C\u4FDD\u5B58\u83DC\u5355\u5E76\u53D1\u5E03\u81F3\u5FAE\u4FE1\u516C\u4F17\u53F7",closable:!1,"show-icon":""})]),_:1}),o(r,{class:"!border-none mt-4",shadow:"never"},{default:t(()=>[n("div",g,[o(x),n("div",M,[o(D)])])]),_:1}),o(F,null,{default:t(()=>[a((e(),p(i,{type:"primary",onClick:s(l)},{default:t(()=>[u(" \u4FDD\u5B58 ")]),_:1},8,["onClick"])),[[m,["channel:oaMenu:save"]]]),a((e(),p(i,{type:"primary",onClick:s(d)},{default:t(()=>[u(" \u53D1\u5E03 ")]),_:1},8,["onClick"])),[[m,["channel:oaMenu:publish"]]])]),_:1})])}}});const ko=k(O,[["__scopeId","data-v-cc6f2f7e"]]);export{ko as default}; diff --git a/public/admin/assets/menu.1c60c1a9.js b/public/admin/assets/menu.1c60c1a9.js new file mode 100644 index 000000000..c245d839a --- /dev/null +++ b/public/admin/assets/menu.1c60c1a9.js @@ -0,0 +1 @@ +import{d as u,f as c}from"./element-plus.4328d892.js";import{d,o as t,K as r,L as p,c as _,T as f,a7 as x,a as y,S as g}from"./@vue.51d7f2d8.js";import{d as v}from"./index.aa9bb752.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const S=d({__name:"menu",props:{menus:{type:Object,default:()=>({})},modelValue:{type:String,default:"1"}},emits:["update:modelValue"],setup(e,{emit:a}){const i=o=>{a("update:modelValue",o)};return(o,V)=>{const n=u,s=c;return t(),r(s,{"default-active":e.modelValue,class:"w-[160px] min-h-[668px] pages-menu",onSelect:i},{default:p(()=>[(t(!0),_(f,null,x(e.menus,(m,l)=>(t(),r(n,{index:l,key:m.id},{default:p(()=>[y("span",null,g(m.name),1)]),_:2},1032,["index"]))),128))]),_:1},8,["default-active"])}}});const ot=v(S,[["__scopeId","data-v-95544a93"]]);export{ot as default}; diff --git a/public/admin/assets/menu.6829f7a9.js b/public/admin/assets/menu.6829f7a9.js new file mode 100644 index 000000000..ff4c6ab4c --- /dev/null +++ b/public/admin/assets/menu.6829f7a9.js @@ -0,0 +1 @@ +import{d as u,f as c}from"./element-plus.4328d892.js";import{d,o as t,K as r,L as p,c as _,T as f,a7 as x,a as y,S as g}from"./@vue.51d7f2d8.js";import{d as v}from"./index.37f7aea6.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const S=d({__name:"menu",props:{menus:{type:Object,default:()=>({})},modelValue:{type:String,default:"1"}},emits:["update:modelValue"],setup(e,{emit:a}){const i=o=>{a("update:modelValue",o)};return(o,V)=>{const n=u,s=c;return t(),r(s,{"default-active":e.modelValue,class:"w-[160px] min-h-[668px] pages-menu",onSelect:i},{default:p(()=>[(t(!0),_(f,null,x(e.menus,(m,l)=>(t(),r(n,{index:l,key:m.id},{default:p(()=>[y("span",null,g(m.name),1)]),_:2},1032,["index"]))),128))]),_:1},8,["default-active"])}}});const ot=v(S,[["__scopeId","data-v-95544a93"]]);export{ot as default}; diff --git a/public/admin/assets/menu.74d913bc.js b/public/admin/assets/menu.74d913bc.js new file mode 100644 index 000000000..7bcf5acc9 --- /dev/null +++ b/public/admin/assets/menu.74d913bc.js @@ -0,0 +1 @@ +import{_ as h}from"./index.13ef78d6.js";import{S as v,I as C,w as E}from"./element-plus.4328d892.js";import x from"./oa-phone.16d84123.js";import D from"./oa-attr.84c9ec92.js";import{u as B}from"./useMenuOa.7c4cd755.js";import{d as c,af as w,o as e,c as b,U as o,L as t,a as n,M as a,K as p,u as s,R as u}from"./@vue.51d7f2d8.js";import{d as k}from"./index.aa9bb752.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.a9a11abe.js";import"./index.fa872673.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./oa-menu-form.vue_vue_type_script_setup_true_lang.4623da76.js";import"./oa-menu-form-edit.vue_vue_type_script_setup_true_lang.0a826763.js";import"./wx_oa.dfa7359b.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const y={class:"menu-oa"},g={class:"lg:flex flex-1"},M={class:"mt-4 lg:mt-0 max-w-[400px]"},A=c({name:"wxOaMenu"}),O=c({...A,setup(N){const{getOaMenuFunc:_,handleSave:l,handlePublish:d}=B(void 0);return _(),(V,I)=>{const f=v,r=C,i=E,F=h,m=w("perms");return e(),b("div",y,[o(r,{class:"!border-none",shadow:"never"},{default:t(()=>[o(f,{type:"warning",title:"\u914D\u7F6E\u5FAE\u4FE1\u516C\u4F17\u53F7\u83DC\u5355\uFF0C\u70B9\u51FB\u786E\u8BA4\uFF0C\u4FDD\u5B58\u83DC\u5355\u5E76\u53D1\u5E03\u81F3\u5FAE\u4FE1\u516C\u4F17\u53F7",closable:!1,"show-icon":""})]),_:1}),o(r,{class:"!border-none mt-4",shadow:"never"},{default:t(()=>[n("div",g,[o(x),n("div",M,[o(D)])])]),_:1}),o(F,null,{default:t(()=>[a((e(),p(i,{type:"primary",onClick:s(l)},{default:t(()=>[u(" \u4FDD\u5B58 ")]),_:1},8,["onClick"])),[[m,["channel:oaMenu:save"]]]),a((e(),p(i,{type:"primary",onClick:s(d)},{default:t(()=>[u(" \u53D1\u5E03 ")]),_:1},8,["onClick"])),[[m,["channel:oaMenu:publish"]]])]),_:1})])}}});const ko=k(O,[["__scopeId","data-v-cc6f2f7e"]]);export{ko as default}; diff --git a/public/admin/assets/menu.90f89e87.js b/public/admin/assets/menu.90f89e87.js new file mode 100644 index 000000000..ea7318ef4 --- /dev/null +++ b/public/admin/assets/menu.90f89e87.js @@ -0,0 +1 @@ +import{r as t}from"./index.37f7aea6.js";function n(u){return t.get({url:"/auth.menu/lists",params:u})}function r(u){return t.get({url:"/auth.menu/all",params:u})}function a(u){return t.post({url:"/auth.menu/add",params:u})}function l(u){return t.post({url:"/auth.menu/edit",params:u})}function m(u){return t.post({url:"/auth.menu/delete",params:u})}function s(u){return t.get({url:"/auth.menu/detail",params:u})}export{n as a,l as b,a as c,s as d,m as e,r as m}; diff --git a/public/admin/assets/menu.a3f35001.js b/public/admin/assets/menu.a3f35001.js new file mode 100644 index 000000000..a9afbf431 --- /dev/null +++ b/public/admin/assets/menu.a3f35001.js @@ -0,0 +1 @@ +import{r as t}from"./index.ed71ac09.js";function n(u){return t.get({url:"/auth.menu/lists",params:u})}function r(u){return t.get({url:"/auth.menu/all",params:u})}function a(u){return t.post({url:"/auth.menu/add",params:u})}function l(u){return t.post({url:"/auth.menu/edit",params:u})}function m(u){return t.post({url:"/auth.menu/delete",params:u})}function s(u){return t.get({url:"/auth.menu/detail",params:u})}export{n as a,l as b,a as c,s as d,m as e,r as m}; diff --git a/public/admin/assets/menu.e12cd2ff.js b/public/admin/assets/menu.e12cd2ff.js new file mode 100644 index 000000000..fcc5d1d02 --- /dev/null +++ b/public/admin/assets/menu.e12cd2ff.js @@ -0,0 +1 @@ +import{d as u,f as c}from"./element-plus.4328d892.js";import{d,o as t,K as r,L as p,c as _,T as f,a7 as x,a as y,S as g}from"./@vue.51d7f2d8.js";import{d as v}from"./index.ed71ac09.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const S=d({__name:"menu",props:{menus:{type:Object,default:()=>({})},modelValue:{type:String,default:"1"}},emits:["update:modelValue"],setup(e,{emit:a}){const i=o=>{a("update:modelValue",o)};return(o,V)=>{const n=u,s=c;return t(),r(s,{"default-active":e.modelValue,class:"w-[160px] min-h-[668px] pages-menu",onSelect:i},{default:p(()=>[(t(!0),_(f,null,x(e.menus,(m,l)=>(t(),r(n,{index:l,key:m.id},{default:p(()=>[y("span",null,g(m.name),1)]),_:2},1032,["index"]))),128))]),_:1},8,["default-active"])}}});const ot=v(S,[["__scopeId","data-v-95544a93"]]);export{ot as default}; diff --git a/public/admin/assets/menu.e362b7db.js b/public/admin/assets/menu.e362b7db.js new file mode 100644 index 000000000..0867db811 --- /dev/null +++ b/public/admin/assets/menu.e362b7db.js @@ -0,0 +1 @@ +import{_ as h}from"./index.be5645df.js";import{S as v,I as C,w as E}from"./element-plus.4328d892.js";import x from"./oa-phone.da93a36e.js";import D from"./oa-attr.48be6774.js";import{u as B}from"./useMenuOa.652835b4.js";import{d as c,af as w,o as e,c as b,U as o,L as t,a as n,M as a,K as p,u as s,R as u}from"./@vue.51d7f2d8.js";import{d as k}from"./index.ed71ac09.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.f2c7f81b.js";import"./index.b940d6e3.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./oa-menu-form.vue_vue_type_script_setup_true_lang.a89c7407.js";import"./oa-menu-form-edit.vue_vue_type_script_setup_true_lang.bf3ef651.js";import"./wx_oa.ec356b57.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const y={class:"menu-oa"},g={class:"lg:flex flex-1"},M={class:"mt-4 lg:mt-0 max-w-[400px]"},A=c({name:"wxOaMenu"}),O=c({...A,setup(N){const{getOaMenuFunc:_,handleSave:l,handlePublish:d}=B(void 0);return _(),(V,I)=>{const f=v,r=C,i=E,F=h,m=w("perms");return e(),b("div",y,[o(r,{class:"!border-none",shadow:"never"},{default:t(()=>[o(f,{type:"warning",title:"\u914D\u7F6E\u5FAE\u4FE1\u516C\u4F17\u53F7\u83DC\u5355\uFF0C\u70B9\u51FB\u786E\u8BA4\uFF0C\u4FDD\u5B58\u83DC\u5355\u5E76\u53D1\u5E03\u81F3\u5FAE\u4FE1\u516C\u4F17\u53F7",closable:!1,"show-icon":""})]),_:1}),o(r,{class:"!border-none mt-4",shadow:"never"},{default:t(()=>[n("div",g,[o(x),n("div",M,[o(D)])])]),_:1}),o(F,null,{default:t(()=>[a((e(),p(i,{type:"primary",onClick:s(l)},{default:t(()=>[u(" \u4FDD\u5B58 ")]),_:1},8,["onClick"])),[[m,["channel:oaMenu:save"]]]),a((e(),p(i,{type:"primary",onClick:s(d)},{default:t(()=>[u(" \u53D1\u5E03 ")]),_:1},8,["onClick"])),[[m,["channel:oaMenu:publish"]]])]),_:1})])}}});const ko=k(O,[["__scopeId","data-v-cc6f2f7e"]]);export{ko as default}; diff --git a/public/admin/assets/message.39fcd3de.js b/public/admin/assets/message.39fcd3de.js new file mode 100644 index 000000000..dd21cb2aa --- /dev/null +++ b/public/admin/assets/message.39fcd3de.js @@ -0,0 +1 @@ +import{r as n}from"./index.aa9bb752.js";function i(t){return n.get({url:"/notice.notice/settingLists",params:t})}function s(t){return n.get({url:"/notice.notice/detail",params:t})}function o(t){return n.post({url:"/notice.notice/set",params:t})}function r(){return n.get({url:"/notice.sms_config/getConfig"})}function c(t){return n.get({url:"/notice.sms_config/detail",params:t})}function u(t){return n.post({url:"/notice.sms_config/setConfig",params:t})}export{i as a,u as b,c,r as d,s as n,o as s}; diff --git a/public/admin/assets/message.8c449686.js b/public/admin/assets/message.8c449686.js new file mode 100644 index 000000000..12d50f9f7 --- /dev/null +++ b/public/admin/assets/message.8c449686.js @@ -0,0 +1 @@ +import{r as n}from"./index.37f7aea6.js";function i(t){return n.get({url:"/notice.notice/settingLists",params:t})}function s(t){return n.get({url:"/notice.notice/detail",params:t})}function o(t){return n.post({url:"/notice.notice/set",params:t})}function r(){return n.get({url:"/notice.sms_config/getConfig"})}function c(t){return n.get({url:"/notice.sms_config/detail",params:t})}function u(t){return n.post({url:"/notice.sms_config/setConfig",params:t})}export{i as a,u as b,c,r as d,s as n,o as s}; diff --git a/public/admin/assets/message.f1110fc7.js b/public/admin/assets/message.f1110fc7.js new file mode 100644 index 000000000..4d272c3d9 --- /dev/null +++ b/public/admin/assets/message.f1110fc7.js @@ -0,0 +1 @@ +import{r as n}from"./index.ed71ac09.js";function i(t){return n.get({url:"/notice.notice/settingLists",params:t})}function s(t){return n.get({url:"/notice.notice/detail",params:t})}function o(t){return n.post({url:"/notice.notice/set",params:t})}function r(){return n.get({url:"/notice.sms_config/getConfig"})}function c(t){return n.get({url:"/notice.sms_config/detail",params:t})}function u(t){return n.post({url:"/notice.sms_config/setConfig",params:t})}export{i as a,u as b,c,r as d,s as n,o as s}; diff --git a/public/admin/assets/money.07d3efc9.js b/public/admin/assets/money.07d3efc9.js new file mode 100644 index 000000000..48be226ac --- /dev/null +++ b/public/admin/assets/money.07d3efc9.js @@ -0,0 +1 @@ +import"./money.vue_vue_type_script_setup_true_name_taskSchedulingEdit_lang.e5a2c787.js";import{_ as O}from"./money.vue_vue_type_script_setup_true_name_taskSchedulingEdit_lang.e5a2c787.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.fa872673.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.aa9bb752.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./task_scheduling.46c64d43.js";export{O as default}; diff --git a/public/admin/assets/money.0c17d2ff.js b/public/admin/assets/money.0c17d2ff.js new file mode 100644 index 000000000..de03e7d3f --- /dev/null +++ b/public/admin/assets/money.0c17d2ff.js @@ -0,0 +1 @@ +import"./money.vue_vue_type_script_setup_true_name_taskSchedulingEdit_lang.bddf61dd.js";import{_ as O}from"./money.vue_vue_type_script_setup_true_name_taskSchedulingEdit_lang.bddf61dd.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.5759a1a6.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.37f7aea6.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./task_scheduling.7035f2c0.js";export{O as default}; diff --git a/public/admin/assets/money.eb8fd289.js b/public/admin/assets/money.eb8fd289.js new file mode 100644 index 000000000..f7bfee588 --- /dev/null +++ b/public/admin/assets/money.eb8fd289.js @@ -0,0 +1 @@ +import"./money.vue_vue_type_script_setup_true_name_taskSchedulingEdit_lang.4480c61c.js";import{_ as O}from"./money.vue_vue_type_script_setup_true_name_taskSchedulingEdit_lang.4480c61c.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.b940d6e3.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.ed71ac09.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./task_scheduling.1b21dca9.js";export{O as default}; diff --git a/public/admin/assets/money.vue_vue_type_script_setup_true_name_taskSchedulingEdit_lang.4480c61c.js b/public/admin/assets/money.vue_vue_type_script_setup_true_name_taskSchedulingEdit_lang.4480c61c.js new file mode 100644 index 000000000..9b128a87c --- /dev/null +++ b/public/admin/assets/money.vue_vue_type_script_setup_true_name_taskSchedulingEdit_lang.4480c61c.js @@ -0,0 +1 @@ +import{B as R,C as g,D as x}from"./element-plus.4328d892.js";import{P as b}from"./index.b940d6e3.js";import{e as w}from"./task_scheduling.1b21dca9.js";import{d as i,s as p,r as V,e as k,$ as d,o as A,c as S,U as s,L as n,u as t,R as T}from"./@vue.51d7f2d8.js";const I={class:"edit-popup"},N=i({name:"taskSchedulingEdit"}),M=i({...N,emits:["success","close"],setup(P,{expose:f,emit:r}){const c=p(),l=p(),m=V("add"),_=k(()=>m.value=="edit"?"\u7F16\u8F91\u4EFB\u52A1\u516C\u53F8\u91D1\u989D":"\u65B0\u589E\u4EFB\u52A1\u516C\u53F8\u91D1\u989D"),u=d({id:"",money:""}),F=o=>{Object.keys(u).forEach(e=>{o[e]!=null&&o[e]!=null&&(u[e]=o[e])})},D=d({money:{required:!0,message:"\u8BF7\u8F93\u5165\u6B63\u786E\u91D1\u989D",trigger:"change"}}),E=async()=>{var e,a;await((e=c.value)==null?void 0:e.validate());const o={...u};await w(o),(a=l.value)==null||a.close(),r("success")},h=(o="add")=>{var e;m.value=o,(e=l.value)==null||e.open()},B=()=>{r("close")};return f({open:h,setFormData:F}),(o,e)=>{const a=R,C=g,v=x;return A(),S("div",I,[s(b,{ref_key:"popupRef",ref:l,title:t(_),async:!0,width:"500px",onConfirm:E,onClose:B},{default:n(()=>[s(v,{ref_key:"formRef",ref:c,model:t(u),rules:t(D)},{default:n(()=>[s(C,{label:"\u91D1\u989D",prop:"money"},{default:n(()=>[s(a,{modelValue:t(u).money,"onUpdate:modelValue":e[0]||(e[0]=y=>t(u).money=y),type:"number",clearable:"",placeholder:"\u8BF7\u8F93\u5165\u516C\u53F8\u6BCF\u5929\u6700\u591A\u7684\u91D1\u989D"},{append:n(()=>[T("\u5143")]),_:1},8,["modelValue"])]),_:1})]),_:1},8,["model","rules"])]),_:1},8,["title"])])}}});export{M as _}; diff --git a/public/admin/assets/money.vue_vue_type_script_setup_true_name_taskSchedulingEdit_lang.bddf61dd.js b/public/admin/assets/money.vue_vue_type_script_setup_true_name_taskSchedulingEdit_lang.bddf61dd.js new file mode 100644 index 000000000..58a79105b --- /dev/null +++ b/public/admin/assets/money.vue_vue_type_script_setup_true_name_taskSchedulingEdit_lang.bddf61dd.js @@ -0,0 +1 @@ +import{B as R,C as g,D as x}from"./element-plus.4328d892.js";import{P as b}from"./index.5759a1a6.js";import{e as w}from"./task_scheduling.7035f2c0.js";import{d as i,s as p,r as V,e as k,$ as d,o as A,c as S,U as s,L as n,u as t,R as T}from"./@vue.51d7f2d8.js";const I={class:"edit-popup"},N=i({name:"taskSchedulingEdit"}),M=i({...N,emits:["success","close"],setup(P,{expose:f,emit:r}){const c=p(),l=p(),m=V("add"),_=k(()=>m.value=="edit"?"\u7F16\u8F91\u4EFB\u52A1\u516C\u53F8\u91D1\u989D":"\u65B0\u589E\u4EFB\u52A1\u516C\u53F8\u91D1\u989D"),u=d({id:"",money:""}),F=o=>{Object.keys(u).forEach(e=>{o[e]!=null&&o[e]!=null&&(u[e]=o[e])})},D=d({money:{required:!0,message:"\u8BF7\u8F93\u5165\u6B63\u786E\u91D1\u989D",trigger:"change"}}),E=async()=>{var e,a;await((e=c.value)==null?void 0:e.validate());const o={...u};await w(o),(a=l.value)==null||a.close(),r("success")},h=(o="add")=>{var e;m.value=o,(e=l.value)==null||e.open()},B=()=>{r("close")};return f({open:h,setFormData:F}),(o,e)=>{const a=R,C=g,v=x;return A(),S("div",I,[s(b,{ref_key:"popupRef",ref:l,title:t(_),async:!0,width:"500px",onConfirm:E,onClose:B},{default:n(()=>[s(v,{ref_key:"formRef",ref:c,model:t(u),rules:t(D)},{default:n(()=>[s(C,{label:"\u91D1\u989D",prop:"money"},{default:n(()=>[s(a,{modelValue:t(u).money,"onUpdate:modelValue":e[0]||(e[0]=y=>t(u).money=y),type:"number",clearable:"",placeholder:"\u8BF7\u8F93\u5165\u516C\u53F8\u6BCF\u5929\u6700\u591A\u7684\u91D1\u989D"},{append:n(()=>[T("\u5143")]),_:1},8,["modelValue"])]),_:1})]),_:1},8,["model","rules"])]),_:1},8,["title"])])}}});export{M as _}; diff --git a/public/admin/assets/money.vue_vue_type_script_setup_true_name_taskSchedulingEdit_lang.e5a2c787.js b/public/admin/assets/money.vue_vue_type_script_setup_true_name_taskSchedulingEdit_lang.e5a2c787.js new file mode 100644 index 000000000..cda23d8b7 --- /dev/null +++ b/public/admin/assets/money.vue_vue_type_script_setup_true_name_taskSchedulingEdit_lang.e5a2c787.js @@ -0,0 +1 @@ +import{B as R,C as g,D as x}from"./element-plus.4328d892.js";import{P as b}from"./index.fa872673.js";import{e as w}from"./task_scheduling.46c64d43.js";import{d as i,s as p,r as V,e as k,$ as d,o as A,c as S,U as s,L as n,u as t,R as T}from"./@vue.51d7f2d8.js";const I={class:"edit-popup"},N=i({name:"taskSchedulingEdit"}),M=i({...N,emits:["success","close"],setup(P,{expose:f,emit:r}){const c=p(),l=p(),m=V("add"),_=k(()=>m.value=="edit"?"\u7F16\u8F91\u4EFB\u52A1\u516C\u53F8\u91D1\u989D":"\u65B0\u589E\u4EFB\u52A1\u516C\u53F8\u91D1\u989D"),u=d({id:"",money:""}),F=o=>{Object.keys(u).forEach(e=>{o[e]!=null&&o[e]!=null&&(u[e]=o[e])})},D=d({money:{required:!0,message:"\u8BF7\u8F93\u5165\u6B63\u786E\u91D1\u989D",trigger:"change"}}),E=async()=>{var e,a;await((e=c.value)==null?void 0:e.validate());const o={...u};await w(o),(a=l.value)==null||a.close(),r("success")},h=(o="add")=>{var e;m.value=o,(e=l.value)==null||e.open()},B=()=>{r("close")};return f({open:h,setFormData:F}),(o,e)=>{const a=R,C=g,v=x;return A(),S("div",I,[s(b,{ref_key:"popupRef",ref:l,title:t(_),async:!0,width:"500px",onConfirm:E,onClose:B},{default:n(()=>[s(v,{ref_key:"formRef",ref:c,model:t(u),rules:t(D)},{default:n(()=>[s(C,{label:"\u91D1\u989D",prop:"money"},{default:n(()=>[s(a,{modelValue:t(u).money,"onUpdate:modelValue":e[0]||(e[0]=y=>t(u).money=y),type:"number",clearable:"",placeholder:"\u8BF7\u8F93\u5165\u516C\u53F8\u6BCF\u5929\u6700\u591A\u7684\u91D1\u989D"},{append:n(()=>[T("\u5143")]),_:1},8,["modelValue"])]),_:1})]),_:1},8,["model","rules"])]),_:1},8,["title"])])}}});export{M as _}; diff --git a/public/admin/assets/oa-attr.48be6774.js b/public/admin/assets/oa-attr.48be6774.js new file mode 100644 index 000000000..bb53a3e75 --- /dev/null +++ b/public/admin/assets/oa-attr.48be6774.js @@ -0,0 +1 @@ +import{_ as B}from"./index.f2c7f81b.js";import{P as A}from"./index.b940d6e3.js";import{c as M,w as R}from"./element-plus.4328d892.js";import{d as V,s as $,a4 as y,o as s,c as u,a7 as g,M as L,V as N,u as p,U as t,L as n,a,T as v,S as b,R as U,bf as O,be as j}from"./@vue.51d7f2d8.js";import{u as q}from"./useMenuOa.652835b4.js";import{_ as z}from"./oa-menu-form.vue_vue_type_script_setup_true_lang.a89c7407.js";import{_ as D}from"./oa-menu-form-edit.vue_vue_type_script_setup_true_lang.bf3ef651.js";import{d as G}from"./index.ed71ac09.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./wx_oa.ec356b57.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const H=i=>(O("data-v-e635fdee"),i=i(),j(),i),J=H(()=>a("div",{class:"text-base oa-attr-title"},"\u83DC\u5355\u914D\u7F6E",-1)),K={class:"flex items-center w-full p-4 mt-4 rounded bg-fill-light"},Q={class:"flex-1"},W={class:"mr-auto"},X=V({__name:"oa-attr",setup(i){const m=$(),{menuList:x,menuIndex:r,handleAddSubMenu:T,handleEditSubMenu:w,handleDelMenu:C,handleDelSubMenu:E}=q(m);return(Y,_)=>{const S=y("EditPen"),c=M,d=R,k=y("Delete"),F=A,P=B;return s(!0),u(v,null,g(p(x),(e,f)=>L((s(),u("div",{key:f,class:"flex-1 oa-attr min-w-0"},[J,t(P,{onClose:_[0]||(_[0]=o=>p(C)(p(r)))},{default:n(()=>[a("div",K,[t(z,{ref_for:!0,ref_key:"menuRef",ref:m,modular:"master",name:e.name,"onUpdate:name":o=>e.name=o,menuType:e.has_menu,"onUpdate:menuType":o=>e.has_menu=o,visitType:e.type,"onUpdate:visitType":o=>e.type=o,url:e.url,"onUpdate:url":o=>e.url=o,appId:e.appid,"onUpdate:appId":o=>e.appid=o,pagePath:e.pagepath,"onUpdate:pagePath":o=>e.pagepath=o},{default:n(()=>[a("div",Q,[a("ul",null,[(s(!0),u(v,null,g(e.sub_button,(o,l)=>(s(),u("li",{class:"flex",key:l,style:{padding:"8px"}},[a("span",W,b(o.name),1),t(D,{modular:"edit",subItem:o,onEdit:h=>p(w)(h,l)},{default:n(()=>[t(d,{link:""},{default:n(()=>[t(c,null,{default:n(()=>[t(S)]),_:1})]),_:1})]),_:2},1032,["subItem","onEdit"]),t(F,{onConfirm:h=>p(E)(p(r),l)},{trigger:n(()=>[t(d,{link:""},{default:n(()=>[t(c,{class:"ml-5"},{default:n(()=>[t(k)]),_:1})]),_:1})]),default:n(()=>[U(" \u662F\u5426\u5220\u9664\u5F53\u524D\u5B50\u83DC\u5355\uFF1F ")]),_:2},1032,["onConfirm"])]))),128))]),t(D,{modular:"add",onAdd:p(T)},{default:n(()=>[t(d,{type:"primary",link:"",disabled:e.sub_button.length>=5},{default:n(()=>[U(" \u6DFB\u52A0\u5B50\u83DC\u5355("+b(e.sub_button.length)+"/5) ",1)]),_:2},1032,["disabled"])]),_:2},1032,["onAdd"])])]),_:2},1032,["name","onUpdate:name","menuType","onUpdate:menuType","visitType","onUpdate:visitType","url","onUpdate:url","appId","onUpdate:appId","pagePath","onUpdate:pagePath"])])]),_:2},1024)],512)),[[N,f===p(r)]])),128)}}});const Ne=G(X,[["__scopeId","data-v-e635fdee"]]);export{Ne as default}; diff --git a/public/admin/assets/oa-attr.76d371a3.js b/public/admin/assets/oa-attr.76d371a3.js new file mode 100644 index 000000000..a6f57df64 --- /dev/null +++ b/public/admin/assets/oa-attr.76d371a3.js @@ -0,0 +1 @@ +import{_ as B}from"./index.fe1d30dd.js";import{P as A}from"./index.5759a1a6.js";import{c as M,w as R}from"./element-plus.4328d892.js";import{d as V,s as $,a4 as y,o as s,c as u,a7 as g,M as L,V as N,u as p,U as t,L as n,a,T as v,S as b,R as U,bf as O,be as j}from"./@vue.51d7f2d8.js";import{u as q}from"./useMenuOa.d8466380.js";import{_ as z}from"./oa-menu-form.vue_vue_type_script_setup_true_lang.87d0840e.js";import{_ as D}from"./oa-menu-form-edit.vue_vue_type_script_setup_true_lang.610f90ea.js";import{d as G}from"./index.37f7aea6.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./wx_oa.115c1d98.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const H=i=>(O("data-v-e635fdee"),i=i(),j(),i),J=H(()=>a("div",{class:"text-base oa-attr-title"},"\u83DC\u5355\u914D\u7F6E",-1)),K={class:"flex items-center w-full p-4 mt-4 rounded bg-fill-light"},Q={class:"flex-1"},W={class:"mr-auto"},X=V({__name:"oa-attr",setup(i){const m=$(),{menuList:x,menuIndex:r,handleAddSubMenu:T,handleEditSubMenu:w,handleDelMenu:C,handleDelSubMenu:E}=q(m);return(Y,_)=>{const S=y("EditPen"),c=M,d=R,k=y("Delete"),F=A,P=B;return s(!0),u(v,null,g(p(x),(e,f)=>L((s(),u("div",{key:f,class:"flex-1 oa-attr min-w-0"},[J,t(P,{onClose:_[0]||(_[0]=o=>p(C)(p(r)))},{default:n(()=>[a("div",K,[t(z,{ref_for:!0,ref_key:"menuRef",ref:m,modular:"master",name:e.name,"onUpdate:name":o=>e.name=o,menuType:e.has_menu,"onUpdate:menuType":o=>e.has_menu=o,visitType:e.type,"onUpdate:visitType":o=>e.type=o,url:e.url,"onUpdate:url":o=>e.url=o,appId:e.appid,"onUpdate:appId":o=>e.appid=o,pagePath:e.pagepath,"onUpdate:pagePath":o=>e.pagepath=o},{default:n(()=>[a("div",Q,[a("ul",null,[(s(!0),u(v,null,g(e.sub_button,(o,l)=>(s(),u("li",{class:"flex",key:l,style:{padding:"8px"}},[a("span",W,b(o.name),1),t(D,{modular:"edit",subItem:o,onEdit:h=>p(w)(h,l)},{default:n(()=>[t(d,{link:""},{default:n(()=>[t(c,null,{default:n(()=>[t(S)]),_:1})]),_:1})]),_:2},1032,["subItem","onEdit"]),t(F,{onConfirm:h=>p(E)(p(r),l)},{trigger:n(()=>[t(d,{link:""},{default:n(()=>[t(c,{class:"ml-5"},{default:n(()=>[t(k)]),_:1})]),_:1})]),default:n(()=>[U(" \u662F\u5426\u5220\u9664\u5F53\u524D\u5B50\u83DC\u5355\uFF1F ")]),_:2},1032,["onConfirm"])]))),128))]),t(D,{modular:"add",onAdd:p(T)},{default:n(()=>[t(d,{type:"primary",link:"",disabled:e.sub_button.length>=5},{default:n(()=>[U(" \u6DFB\u52A0\u5B50\u83DC\u5355("+b(e.sub_button.length)+"/5) ",1)]),_:2},1032,["disabled"])]),_:2},1032,["onAdd"])])]),_:2},1032,["name","onUpdate:name","menuType","onUpdate:menuType","visitType","onUpdate:visitType","url","onUpdate:url","appId","onUpdate:appId","pagePath","onUpdate:pagePath"])])]),_:2},1024)],512)),[[N,f===p(r)]])),128)}}});const Ne=G(X,[["__scopeId","data-v-e635fdee"]]);export{Ne as default}; diff --git a/public/admin/assets/oa-attr.84c9ec92.js b/public/admin/assets/oa-attr.84c9ec92.js new file mode 100644 index 000000000..a3dd7f882 --- /dev/null +++ b/public/admin/assets/oa-attr.84c9ec92.js @@ -0,0 +1 @@ +import{_ as B}from"./index.a9a11abe.js";import{P as A}from"./index.fa872673.js";import{c as M,w as R}from"./element-plus.4328d892.js";import{d as V,s as $,a4 as y,o as s,c as u,a7 as g,M as L,V as N,u as p,U as t,L as n,a,T as v,S as b,R as U,bf as O,be as j}from"./@vue.51d7f2d8.js";import{u as q}from"./useMenuOa.7c4cd755.js";import{_ as z}from"./oa-menu-form.vue_vue_type_script_setup_true_lang.4623da76.js";import{_ as D}from"./oa-menu-form-edit.vue_vue_type_script_setup_true_lang.0a826763.js";import{d as G}from"./index.aa9bb752.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./wx_oa.dfa7359b.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const H=i=>(O("data-v-e635fdee"),i=i(),j(),i),J=H(()=>a("div",{class:"text-base oa-attr-title"},"\u83DC\u5355\u914D\u7F6E",-1)),K={class:"flex items-center w-full p-4 mt-4 rounded bg-fill-light"},Q={class:"flex-1"},W={class:"mr-auto"},X=V({__name:"oa-attr",setup(i){const m=$(),{menuList:x,menuIndex:r,handleAddSubMenu:T,handleEditSubMenu:w,handleDelMenu:C,handleDelSubMenu:E}=q(m);return(Y,_)=>{const S=y("EditPen"),c=M,d=R,k=y("Delete"),F=A,P=B;return s(!0),u(v,null,g(p(x),(e,f)=>L((s(),u("div",{key:f,class:"flex-1 oa-attr min-w-0"},[J,t(P,{onClose:_[0]||(_[0]=o=>p(C)(p(r)))},{default:n(()=>[a("div",K,[t(z,{ref_for:!0,ref_key:"menuRef",ref:m,modular:"master",name:e.name,"onUpdate:name":o=>e.name=o,menuType:e.has_menu,"onUpdate:menuType":o=>e.has_menu=o,visitType:e.type,"onUpdate:visitType":o=>e.type=o,url:e.url,"onUpdate:url":o=>e.url=o,appId:e.appid,"onUpdate:appId":o=>e.appid=o,pagePath:e.pagepath,"onUpdate:pagePath":o=>e.pagepath=o},{default:n(()=>[a("div",Q,[a("ul",null,[(s(!0),u(v,null,g(e.sub_button,(o,l)=>(s(),u("li",{class:"flex",key:l,style:{padding:"8px"}},[a("span",W,b(o.name),1),t(D,{modular:"edit",subItem:o,onEdit:h=>p(w)(h,l)},{default:n(()=>[t(d,{link:""},{default:n(()=>[t(c,null,{default:n(()=>[t(S)]),_:1})]),_:1})]),_:2},1032,["subItem","onEdit"]),t(F,{onConfirm:h=>p(E)(p(r),l)},{trigger:n(()=>[t(d,{link:""},{default:n(()=>[t(c,{class:"ml-5"},{default:n(()=>[t(k)]),_:1})]),_:1})]),default:n(()=>[U(" \u662F\u5426\u5220\u9664\u5F53\u524D\u5B50\u83DC\u5355\uFF1F ")]),_:2},1032,["onConfirm"])]))),128))]),t(D,{modular:"add",onAdd:p(T)},{default:n(()=>[t(d,{type:"primary",link:"",disabled:e.sub_button.length>=5},{default:n(()=>[U(" \u6DFB\u52A0\u5B50\u83DC\u5355("+b(e.sub_button.length)+"/5) ",1)]),_:2},1032,["disabled"])]),_:2},1032,["onAdd"])])]),_:2},1032,["name","onUpdate:name","menuType","onUpdate:menuType","visitType","onUpdate:visitType","url","onUpdate:url","appId","onUpdate:appId","pagePath","onUpdate:pagePath"])])]),_:2},1024)],512)),[[N,f===p(r)]])),128)}}});const Ne=G(X,[["__scopeId","data-v-e635fdee"]]);export{Ne as default}; diff --git a/public/admin/assets/oa-menu-form-edit.24b5a45e.js b/public/admin/assets/oa-menu-form-edit.24b5a45e.js new file mode 100644 index 000000000..fe565cc85 --- /dev/null +++ b/public/admin/assets/oa-menu-form-edit.24b5a45e.js @@ -0,0 +1 @@ +import"./oa-menu-form-edit.vue_vue_type_script_setup_true_lang.0a826763.js";import{_ as Q}from"./oa-menu-form-edit.vue_vue_type_script_setup_true_lang.0a826763.js";import"./index.fa872673.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.aa9bb752.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./oa-menu-form.vue_vue_type_script_setup_true_lang.4623da76.js";import"./useMenuOa.7c4cd755.js";import"./wx_oa.dfa7359b.js";export{Q as default}; diff --git a/public/admin/assets/oa-menu-form-edit.a51c7c71.js b/public/admin/assets/oa-menu-form-edit.a51c7c71.js new file mode 100644 index 000000000..4ee32a937 --- /dev/null +++ b/public/admin/assets/oa-menu-form-edit.a51c7c71.js @@ -0,0 +1 @@ +import"./oa-menu-form-edit.vue_vue_type_script_setup_true_lang.bf3ef651.js";import{_ as Q}from"./oa-menu-form-edit.vue_vue_type_script_setup_true_lang.bf3ef651.js";import"./index.b940d6e3.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.ed71ac09.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./oa-menu-form.vue_vue_type_script_setup_true_lang.a89c7407.js";import"./useMenuOa.652835b4.js";import"./wx_oa.ec356b57.js";export{Q as default}; diff --git a/public/admin/assets/oa-menu-form-edit.b07e5e33.js b/public/admin/assets/oa-menu-form-edit.b07e5e33.js new file mode 100644 index 000000000..6339bbc9b --- /dev/null +++ b/public/admin/assets/oa-menu-form-edit.b07e5e33.js @@ -0,0 +1 @@ +import"./oa-menu-form-edit.vue_vue_type_script_setup_true_lang.610f90ea.js";import{_ as Q}from"./oa-menu-form-edit.vue_vue_type_script_setup_true_lang.610f90ea.js";import"./index.5759a1a6.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.37f7aea6.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./oa-menu-form.vue_vue_type_script_setup_true_lang.87d0840e.js";import"./useMenuOa.d8466380.js";import"./wx_oa.115c1d98.js";export{Q as default}; diff --git a/public/admin/assets/oa-menu-form-edit.vue_vue_type_script_setup_true_lang.0a826763.js b/public/admin/assets/oa-menu-form-edit.vue_vue_type_script_setup_true_lang.0a826763.js new file mode 100644 index 000000000..340f10eae --- /dev/null +++ b/public/admin/assets/oa-menu-form-edit.vue_vue_type_script_setup_true_lang.0a826763.js @@ -0,0 +1 @@ +import{P as f}from"./index.fa872673.js";import{_ as y}from"./oa-menu-form.vue_vue_type_script_setup_true_lang.4623da76.js";import{d as g,s as u,l as F,o as v,K as R,L as d,H as k,U as P}from"./@vue.51d7f2d8.js";const w=g({__name:"oa-menu-form-edit",props:{modular:{default:"edit"},subItem:{default:{}}},emits:["add","edit"],setup(m,{emit:s}){const p=m,n=u(),r=u(),e={name:"",type:"view",url:"",appid:"",pagepath:""};F(()=>{if(Object.keys(p.subItem).length!=0)for(const o in e)e[o]=p.subItem[o]});const l=async()=>{await n.value.menuFormRef.validate(),p.modular==="edit"?s("edit",{...e}):s("add",{...e}),r.value.close(),n.value.menuFormRef.resetFields()};return(o,t)=>{const i=f;return v(),R(i,{ref_key:"menuFromPopupRef",ref:r,async:"",clickModalClose:!1,title:`${o.modular==="add"?"\u65B0\u589E":"\u7F16\u8F91"}\u5B50\u83DC\u5355`,onConfirm:l},{trigger:d(()=>[k(o.$slots,"default")]),default:d(()=>[P(y,{ref_key:"menuFormEditRef",ref:n,modular:"secondary",name:e.name,"onUpdate:name":t[0]||(t[0]=a=>e.name=a),visitType:e.type,"onUpdate:visitType":t[1]||(t[1]=a=>e.type=a),url:e.url,"onUpdate:url":t[2]||(t[2]=a=>e.url=a),appId:e.appid,"onUpdate:appId":t[3]||(t[3]=a=>e.appid=a),pagePath:e.pagepath,"onUpdate:pagePath":t[4]||(t[4]=a=>e.pagepath=a)},null,8,["name","visitType","url","appId","pagePath"])]),_:3},8,["title"])}}});export{w as _}; diff --git a/public/admin/assets/oa-menu-form-edit.vue_vue_type_script_setup_true_lang.610f90ea.js b/public/admin/assets/oa-menu-form-edit.vue_vue_type_script_setup_true_lang.610f90ea.js new file mode 100644 index 000000000..1d4ad7b49 --- /dev/null +++ b/public/admin/assets/oa-menu-form-edit.vue_vue_type_script_setup_true_lang.610f90ea.js @@ -0,0 +1 @@ +import{P as f}from"./index.5759a1a6.js";import{_ as y}from"./oa-menu-form.vue_vue_type_script_setup_true_lang.87d0840e.js";import{d as g,s as u,l as F,o as v,K as R,L as d,H as k,U as P}from"./@vue.51d7f2d8.js";const w=g({__name:"oa-menu-form-edit",props:{modular:{default:"edit"},subItem:{default:{}}},emits:["add","edit"],setup(m,{emit:s}){const p=m,n=u(),r=u(),e={name:"",type:"view",url:"",appid:"",pagepath:""};F(()=>{if(Object.keys(p.subItem).length!=0)for(const o in e)e[o]=p.subItem[o]});const l=async()=>{await n.value.menuFormRef.validate(),p.modular==="edit"?s("edit",{...e}):s("add",{...e}),r.value.close(),n.value.menuFormRef.resetFields()};return(o,t)=>{const i=f;return v(),R(i,{ref_key:"menuFromPopupRef",ref:r,async:"",clickModalClose:!1,title:`${o.modular==="add"?"\u65B0\u589E":"\u7F16\u8F91"}\u5B50\u83DC\u5355`,onConfirm:l},{trigger:d(()=>[k(o.$slots,"default")]),default:d(()=>[P(y,{ref_key:"menuFormEditRef",ref:n,modular:"secondary",name:e.name,"onUpdate:name":t[0]||(t[0]=a=>e.name=a),visitType:e.type,"onUpdate:visitType":t[1]||(t[1]=a=>e.type=a),url:e.url,"onUpdate:url":t[2]||(t[2]=a=>e.url=a),appId:e.appid,"onUpdate:appId":t[3]||(t[3]=a=>e.appid=a),pagePath:e.pagepath,"onUpdate:pagePath":t[4]||(t[4]=a=>e.pagepath=a)},null,8,["name","visitType","url","appId","pagePath"])]),_:3},8,["title"])}}});export{w as _}; diff --git a/public/admin/assets/oa-menu-form-edit.vue_vue_type_script_setup_true_lang.bf3ef651.js b/public/admin/assets/oa-menu-form-edit.vue_vue_type_script_setup_true_lang.bf3ef651.js new file mode 100644 index 000000000..951356ea6 --- /dev/null +++ b/public/admin/assets/oa-menu-form-edit.vue_vue_type_script_setup_true_lang.bf3ef651.js @@ -0,0 +1 @@ +import{P as f}from"./index.b940d6e3.js";import{_ as y}from"./oa-menu-form.vue_vue_type_script_setup_true_lang.a89c7407.js";import{d as g,s as u,l as F,o as v,K as R,L as d,H as k,U as P}from"./@vue.51d7f2d8.js";const w=g({__name:"oa-menu-form-edit",props:{modular:{default:"edit"},subItem:{default:{}}},emits:["add","edit"],setup(m,{emit:s}){const p=m,n=u(),r=u(),e={name:"",type:"view",url:"",appid:"",pagepath:""};F(()=>{if(Object.keys(p.subItem).length!=0)for(const o in e)e[o]=p.subItem[o]});const l=async()=>{await n.value.menuFormRef.validate(),p.modular==="edit"?s("edit",{...e}):s("add",{...e}),r.value.close(),n.value.menuFormRef.resetFields()};return(o,t)=>{const i=f;return v(),R(i,{ref_key:"menuFromPopupRef",ref:r,async:"",clickModalClose:!1,title:`${o.modular==="add"?"\u65B0\u589E":"\u7F16\u8F91"}\u5B50\u83DC\u5355`,onConfirm:l},{trigger:d(()=>[k(o.$slots,"default")]),default:d(()=>[P(y,{ref_key:"menuFormEditRef",ref:n,modular:"secondary",name:e.name,"onUpdate:name":t[0]||(t[0]=a=>e.name=a),visitType:e.type,"onUpdate:visitType":t[1]||(t[1]=a=>e.type=a),url:e.url,"onUpdate:url":t[2]||(t[2]=a=>e.url=a),appId:e.appid,"onUpdate:appId":t[3]||(t[3]=a=>e.appid=a),pagePath:e.pagepath,"onUpdate:pagePath":t[4]||(t[4]=a=>e.pagepath=a)},null,8,["name","visitType","url","appId","pagePath"])]),_:3},8,["title"])}}});export{w as _}; diff --git a/public/admin/assets/oa-menu-form.3f7fad6e.js b/public/admin/assets/oa-menu-form.3f7fad6e.js new file mode 100644 index 000000000..575b2e7ea --- /dev/null +++ b/public/admin/assets/oa-menu-form.3f7fad6e.js @@ -0,0 +1 @@ +import"./oa-menu-form.vue_vue_type_script_setup_true_lang.4623da76.js";import{_ as N}from"./oa-menu-form.vue_vue_type_script_setup_true_lang.4623da76.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./useMenuOa.7c4cd755.js";import"./index.aa9bb752.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./wx_oa.dfa7359b.js";export{N as default}; diff --git a/public/admin/assets/oa-menu-form.508e1d1c.js b/public/admin/assets/oa-menu-form.508e1d1c.js new file mode 100644 index 000000000..f1d41faa3 --- /dev/null +++ b/public/admin/assets/oa-menu-form.508e1d1c.js @@ -0,0 +1 @@ +import"./oa-menu-form.vue_vue_type_script_setup_true_lang.a89c7407.js";import{_ as N}from"./oa-menu-form.vue_vue_type_script_setup_true_lang.a89c7407.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./useMenuOa.652835b4.js";import"./index.ed71ac09.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./wx_oa.ec356b57.js";export{N as default}; diff --git a/public/admin/assets/oa-menu-form.b34f360f.js b/public/admin/assets/oa-menu-form.b34f360f.js new file mode 100644 index 000000000..12d156ca8 --- /dev/null +++ b/public/admin/assets/oa-menu-form.b34f360f.js @@ -0,0 +1 @@ +import"./oa-menu-form.vue_vue_type_script_setup_true_lang.87d0840e.js";import{_ as N}from"./oa-menu-form.vue_vue_type_script_setup_true_lang.87d0840e.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./useMenuOa.d8466380.js";import"./index.37f7aea6.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./wx_oa.115c1d98.js";export{N as default}; diff --git a/public/admin/assets/oa-menu-form.vue_vue_type_script_setup_true_lang.4623da76.js b/public/admin/assets/oa-menu-form.vue_vue_type_script_setup_true_lang.4623da76.js new file mode 100644 index 000000000..fda2c10b0 --- /dev/null +++ b/public/admin/assets/oa-menu-form.vue_vue_type_script_setup_true_lang.4623da76.js @@ -0,0 +1 @@ +import{B as D,C,G as g,H as I,D as k}from"./element-plus.4328d892.js";import{r as w}from"./useMenuOa.7c4cd755.js";import{d as P,s as U,r as R,w as A,l as N,o as r,K as _,L as l,U as u,u as a,R as f,Q as i,H as c,c as T,T as v}from"./@vue.51d7f2d8.js";const h=P({__name:"oa-menu-form",props:{modular:{default:"master"},name:{default:""},menuType:{type:Boolean,default:!1},visitType:{default:"view"},url:{default:""},appId:{default:""},pagePath:{default:""}},emits:["update:name","update:menuType","update:visitType","update:url","update:appId","update:pagePath"],setup(E,{expose:b,emit:d}){const y=E,V=U(),e=R({...y});return A(()=>y,m=>{e.value=m},{immediate:!0}),N(()=>{y.modular==="master"&&d("update:menuType",e.value.menuType),d("update:name",e.value.name),d("update:visitType",e.value.visitType),d("update:url",e.value.url),d("update:appId",e.value.appId),d("update:pagePath",e.value.pagePath)}),b({menuFormRef:V}),(m,t)=>{const n=D,p=C,s=g,F=I,B=k;return r(),_(B,{ref_key:"menuFormRef",ref:V,rules:a(w),model:a(e),"label-width":"100px"},{default:l(()=>[u(p,{label:m.modular==="master"?"\u4E3B\u83DC\u5355\u540D\u79F0":"\u5B50\u83DC\u5355\u540D\u79F0",prop:"name"},{default:l(()=>[u(n,{modelValue:a(e).name,"onUpdate:modelValue":t[0]||(t[0]=o=>a(e).name=o)},null,8,["modelValue"])]),_:1},8,["label"]),m.modular==="master"?(r(),_(p,{key:0,label:"\u4E3B\u83DC\u5355\u7C7B\u578B",prop:"menuType"},{default:l(()=>[u(F,{modelValue:a(e).menuType,"onUpdate:modelValue":t[1]||(t[1]=o=>a(e).menuType=o)},{default:l(()=>[u(s,{label:!1},{default:l(()=>[f("\u4E0D\u914D\u7F6E\u5B50\u83DC\u5355")]),_:1}),u(s,{label:!0},{default:l(()=>[f("\u914D\u7F6E\u5B50\u83DC\u5355")]),_:1})]),_:1},8,["modelValue"])]),_:1})):i("",!0),a(e).menuType&&m.modular==="master"?(r(),_(p,{key:1,label:""},{default:l(()=>[c(m.$slots,"default")]),_:3})):i("",!0),a(e).menuType?i("",!0):(r(),T(v,{key:2},[u(p,{label:"\u8DF3\u8F6C\u94FE\u63A5",prop:"visitType"},{default:l(()=>[u(F,{modelValue:a(e).visitType,"onUpdate:modelValue":t[2]||(t[2]=o=>a(e).visitType=o)},{default:l(()=>[u(s,{label:"view"},{default:l(()=>[f("\u7F51\u9875")]),_:1}),u(s,{label:"miniprogram"},{default:l(()=>[f("\u5C0F\u7A0B\u5E8F")]),_:1})]),_:1},8,["modelValue"])]),_:1}),u(p,{label:"\u7F51\u5740",prop:"url"},{default:l(()=>[u(n,{modelValue:a(e).url,"onUpdate:modelValue":t[3]||(t[3]=o=>a(e).url=o)},null,8,["modelValue"])]),_:1}),a(e).visitType=="miniprogram"?(r(),T(v,{key:0},[u(p,{label:"AppId",prop:"appId"},{default:l(()=>[u(n,{modelValue:a(e).appId,"onUpdate:modelValue":t[4]||(t[4]=o=>a(e).appId=o)},null,8,["modelValue"])]),_:1}),u(p,{label:"\u8DEF\u5F84",prop:"pagePath"},{default:l(()=>[u(n,{modelValue:a(e).pagePath,"onUpdate:modelValue":t[5]||(t[5]=o=>a(e).pagePath=o)},null,8,["modelValue"])]),_:1})],64)):i("",!0)],64))]),_:3},8,["rules","model"])}}});export{h as _}; diff --git a/public/admin/assets/oa-menu-form.vue_vue_type_script_setup_true_lang.87d0840e.js b/public/admin/assets/oa-menu-form.vue_vue_type_script_setup_true_lang.87d0840e.js new file mode 100644 index 000000000..3f0390cc3 --- /dev/null +++ b/public/admin/assets/oa-menu-form.vue_vue_type_script_setup_true_lang.87d0840e.js @@ -0,0 +1 @@ +import{B as D,C,G as g,H as I,D as k}from"./element-plus.4328d892.js";import{r as w}from"./useMenuOa.d8466380.js";import{d as P,s as U,r as R,w as A,l as N,o as r,K as _,L as l,U as u,u as a,R as f,Q as i,H as c,c as T,T as v}from"./@vue.51d7f2d8.js";const h=P({__name:"oa-menu-form",props:{modular:{default:"master"},name:{default:""},menuType:{type:Boolean,default:!1},visitType:{default:"view"},url:{default:""},appId:{default:""},pagePath:{default:""}},emits:["update:name","update:menuType","update:visitType","update:url","update:appId","update:pagePath"],setup(E,{expose:b,emit:d}){const y=E,V=U(),e=R({...y});return A(()=>y,m=>{e.value=m},{immediate:!0}),N(()=>{y.modular==="master"&&d("update:menuType",e.value.menuType),d("update:name",e.value.name),d("update:visitType",e.value.visitType),d("update:url",e.value.url),d("update:appId",e.value.appId),d("update:pagePath",e.value.pagePath)}),b({menuFormRef:V}),(m,t)=>{const n=D,p=C,s=g,F=I,B=k;return r(),_(B,{ref_key:"menuFormRef",ref:V,rules:a(w),model:a(e),"label-width":"100px"},{default:l(()=>[u(p,{label:m.modular==="master"?"\u4E3B\u83DC\u5355\u540D\u79F0":"\u5B50\u83DC\u5355\u540D\u79F0",prop:"name"},{default:l(()=>[u(n,{modelValue:a(e).name,"onUpdate:modelValue":t[0]||(t[0]=o=>a(e).name=o)},null,8,["modelValue"])]),_:1},8,["label"]),m.modular==="master"?(r(),_(p,{key:0,label:"\u4E3B\u83DC\u5355\u7C7B\u578B",prop:"menuType"},{default:l(()=>[u(F,{modelValue:a(e).menuType,"onUpdate:modelValue":t[1]||(t[1]=o=>a(e).menuType=o)},{default:l(()=>[u(s,{label:!1},{default:l(()=>[f("\u4E0D\u914D\u7F6E\u5B50\u83DC\u5355")]),_:1}),u(s,{label:!0},{default:l(()=>[f("\u914D\u7F6E\u5B50\u83DC\u5355")]),_:1})]),_:1},8,["modelValue"])]),_:1})):i("",!0),a(e).menuType&&m.modular==="master"?(r(),_(p,{key:1,label:""},{default:l(()=>[c(m.$slots,"default")]),_:3})):i("",!0),a(e).menuType?i("",!0):(r(),T(v,{key:2},[u(p,{label:"\u8DF3\u8F6C\u94FE\u63A5",prop:"visitType"},{default:l(()=>[u(F,{modelValue:a(e).visitType,"onUpdate:modelValue":t[2]||(t[2]=o=>a(e).visitType=o)},{default:l(()=>[u(s,{label:"view"},{default:l(()=>[f("\u7F51\u9875")]),_:1}),u(s,{label:"miniprogram"},{default:l(()=>[f("\u5C0F\u7A0B\u5E8F")]),_:1})]),_:1},8,["modelValue"])]),_:1}),u(p,{label:"\u7F51\u5740",prop:"url"},{default:l(()=>[u(n,{modelValue:a(e).url,"onUpdate:modelValue":t[3]||(t[3]=o=>a(e).url=o)},null,8,["modelValue"])]),_:1}),a(e).visitType=="miniprogram"?(r(),T(v,{key:0},[u(p,{label:"AppId",prop:"appId"},{default:l(()=>[u(n,{modelValue:a(e).appId,"onUpdate:modelValue":t[4]||(t[4]=o=>a(e).appId=o)},null,8,["modelValue"])]),_:1}),u(p,{label:"\u8DEF\u5F84",prop:"pagePath"},{default:l(()=>[u(n,{modelValue:a(e).pagePath,"onUpdate:modelValue":t[5]||(t[5]=o=>a(e).pagePath=o)},null,8,["modelValue"])]),_:1})],64)):i("",!0)],64))]),_:3},8,["rules","model"])}}});export{h as _}; diff --git a/public/admin/assets/oa-menu-form.vue_vue_type_script_setup_true_lang.a89c7407.js b/public/admin/assets/oa-menu-form.vue_vue_type_script_setup_true_lang.a89c7407.js new file mode 100644 index 000000000..10ed736d3 --- /dev/null +++ b/public/admin/assets/oa-menu-form.vue_vue_type_script_setup_true_lang.a89c7407.js @@ -0,0 +1 @@ +import{B as D,C,G as g,H as I,D as k}from"./element-plus.4328d892.js";import{r as w}from"./useMenuOa.652835b4.js";import{d as P,s as U,r as R,w as A,l as N,o as r,K as _,L as l,U as u,u as a,R as f,Q as i,H as c,c as T,T as v}from"./@vue.51d7f2d8.js";const h=P({__name:"oa-menu-form",props:{modular:{default:"master"},name:{default:""},menuType:{type:Boolean,default:!1},visitType:{default:"view"},url:{default:""},appId:{default:""},pagePath:{default:""}},emits:["update:name","update:menuType","update:visitType","update:url","update:appId","update:pagePath"],setup(E,{expose:b,emit:d}){const y=E,V=U(),e=R({...y});return A(()=>y,m=>{e.value=m},{immediate:!0}),N(()=>{y.modular==="master"&&d("update:menuType",e.value.menuType),d("update:name",e.value.name),d("update:visitType",e.value.visitType),d("update:url",e.value.url),d("update:appId",e.value.appId),d("update:pagePath",e.value.pagePath)}),b({menuFormRef:V}),(m,t)=>{const n=D,p=C,s=g,F=I,B=k;return r(),_(B,{ref_key:"menuFormRef",ref:V,rules:a(w),model:a(e),"label-width":"100px"},{default:l(()=>[u(p,{label:m.modular==="master"?"\u4E3B\u83DC\u5355\u540D\u79F0":"\u5B50\u83DC\u5355\u540D\u79F0",prop:"name"},{default:l(()=>[u(n,{modelValue:a(e).name,"onUpdate:modelValue":t[0]||(t[0]=o=>a(e).name=o)},null,8,["modelValue"])]),_:1},8,["label"]),m.modular==="master"?(r(),_(p,{key:0,label:"\u4E3B\u83DC\u5355\u7C7B\u578B",prop:"menuType"},{default:l(()=>[u(F,{modelValue:a(e).menuType,"onUpdate:modelValue":t[1]||(t[1]=o=>a(e).menuType=o)},{default:l(()=>[u(s,{label:!1},{default:l(()=>[f("\u4E0D\u914D\u7F6E\u5B50\u83DC\u5355")]),_:1}),u(s,{label:!0},{default:l(()=>[f("\u914D\u7F6E\u5B50\u83DC\u5355")]),_:1})]),_:1},8,["modelValue"])]),_:1})):i("",!0),a(e).menuType&&m.modular==="master"?(r(),_(p,{key:1,label:""},{default:l(()=>[c(m.$slots,"default")]),_:3})):i("",!0),a(e).menuType?i("",!0):(r(),T(v,{key:2},[u(p,{label:"\u8DF3\u8F6C\u94FE\u63A5",prop:"visitType"},{default:l(()=>[u(F,{modelValue:a(e).visitType,"onUpdate:modelValue":t[2]||(t[2]=o=>a(e).visitType=o)},{default:l(()=>[u(s,{label:"view"},{default:l(()=>[f("\u7F51\u9875")]),_:1}),u(s,{label:"miniprogram"},{default:l(()=>[f("\u5C0F\u7A0B\u5E8F")]),_:1})]),_:1},8,["modelValue"])]),_:1}),u(p,{label:"\u7F51\u5740",prop:"url"},{default:l(()=>[u(n,{modelValue:a(e).url,"onUpdate:modelValue":t[3]||(t[3]=o=>a(e).url=o)},null,8,["modelValue"])]),_:1}),a(e).visitType=="miniprogram"?(r(),T(v,{key:0},[u(p,{label:"AppId",prop:"appId"},{default:l(()=>[u(n,{modelValue:a(e).appId,"onUpdate:modelValue":t[4]||(t[4]=o=>a(e).appId=o)},null,8,["modelValue"])]),_:1}),u(p,{label:"\u8DEF\u5F84",prop:"pagePath"},{default:l(()=>[u(n,{modelValue:a(e).pagePath,"onUpdate:modelValue":t[5]||(t[5]=o=>a(e).pagePath=o)},null,8,["modelValue"])]),_:1})],64)):i("",!0)],64))]),_:3},8,["rules","model"])}}});export{h as _}; diff --git a/public/admin/assets/oa-phone.16d84123.js b/public/admin/assets/oa-phone.16d84123.js new file mode 100644 index 000000000..07fc9029e --- /dev/null +++ b/public/admin/assets/oa-phone.16d84123.js @@ -0,0 +1 @@ +import{c as V}from"./element-plus.4328d892.js";import{d as P,bH as j,u as e,e as B,a4 as _,o,c as s,a as n,U as r,L as f,T as h,a7 as v,O as D,S as x,M as F,V as I,Q as L,bf as M,be as N}from"./@vue.51d7f2d8.js";import{u as C}from"./useMenuOa.7c4cd755.js";import{l as O,d as A}from"./index.aa9bb752.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./wx_oa.dfa7359b.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const E=i=>(M("data-v-d95f9d8f"),i=i(),N(),i),G={class:"oa-phone mr-[35px]"},z=E(()=>n("div",{class:"oa-phone-content"},null,-1)),H={class:"flex oa-phone-menu"},Q={class:"flex items-center justify-center oa-phone-menu-switch"},T=["onClick"],U={class:"oa-phone-menu-subitem"},$=P({__name:"oa-phone",setup(i){j(S=>({"591d956f":e(y)}));const b=O(),y=B(()=>b.theme||"#4A5DFF"),{menuList:m,menuIndex:p,handleAddMenu:c}=C(C);return(S,l)=>{const k=_("Grid"),d=V,g=_("Plus");return o(),s("div",G,[z,n("div",H,[n("div",Q,[r(d,null,{default:f(()=>[r(k)]),_:1})]),(o(!0),s(h,null,v(e(m),(t,a)=>(o(),s("div",{key:a,class:"relative flex-1",onClick:u=>p.value=a},[n("div",{class:D(["flex items-center justify-center flex-1 text-sm oa-phone-menu-item",{"active-menu":e(p)===a}])},x(t.name),3),F(n("div",U,[(o(!0),s(h,null,v(t.sub_button,(u,w)=>(o(),s("div",{key:w,class:"oa-phone-menu-subitem-title"},x(u.name),1))),128))],512),[[I,t.sub_button.length&&t.has_menu]])],8,T))),128)),e(m).length<=2?(o(),s("div",{key:0,class:"flex items-center justify-center flex-1 h-full",onClick:l[0]||(l[0]=(...t)=>e(c)&&e(c)(...t))},[r(d,null,{default:f(()=>[r(g)]),_:1})])):L("",!0)])])}}});const jt=A($,[["__scopeId","data-v-d95f9d8f"]]);export{jt as default}; diff --git a/public/admin/assets/oa-phone.d9c736e3.js b/public/admin/assets/oa-phone.d9c736e3.js new file mode 100644 index 000000000..b6a186660 --- /dev/null +++ b/public/admin/assets/oa-phone.d9c736e3.js @@ -0,0 +1 @@ +import{c as V}from"./element-plus.4328d892.js";import{d as P,bH as j,u as e,e as B,a4 as _,o,c as s,a as n,U as r,L as f,T as h,a7 as v,O as D,S as x,M as F,V as I,Q as L,bf as M,be as N}from"./@vue.51d7f2d8.js";import{u as C}from"./useMenuOa.d8466380.js";import{l as O,d as A}from"./index.37f7aea6.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./wx_oa.115c1d98.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const E=i=>(M("data-v-d95f9d8f"),i=i(),N(),i),G={class:"oa-phone mr-[35px]"},z=E(()=>n("div",{class:"oa-phone-content"},null,-1)),H={class:"flex oa-phone-menu"},Q={class:"flex items-center justify-center oa-phone-menu-switch"},T=["onClick"],U={class:"oa-phone-menu-subitem"},$=P({__name:"oa-phone",setup(i){j(S=>({"591d956f":e(y)}));const b=O(),y=B(()=>b.theme||"#4A5DFF"),{menuList:m,menuIndex:p,handleAddMenu:c}=C(C);return(S,l)=>{const k=_("Grid"),d=V,g=_("Plus");return o(),s("div",G,[z,n("div",H,[n("div",Q,[r(d,null,{default:f(()=>[r(k)]),_:1})]),(o(!0),s(h,null,v(e(m),(t,a)=>(o(),s("div",{key:a,class:"relative flex-1",onClick:u=>p.value=a},[n("div",{class:D(["flex items-center justify-center flex-1 text-sm oa-phone-menu-item",{"active-menu":e(p)===a}])},x(t.name),3),F(n("div",U,[(o(!0),s(h,null,v(t.sub_button,(u,w)=>(o(),s("div",{key:w,class:"oa-phone-menu-subitem-title"},x(u.name),1))),128))],512),[[I,t.sub_button.length&&t.has_menu]])],8,T))),128)),e(m).length<=2?(o(),s("div",{key:0,class:"flex items-center justify-center flex-1 h-full",onClick:l[0]||(l[0]=(...t)=>e(c)&&e(c)(...t))},[r(d,null,{default:f(()=>[r(g)]),_:1})])):L("",!0)])])}}});const jt=A($,[["__scopeId","data-v-d95f9d8f"]]);export{jt as default}; diff --git a/public/admin/assets/oa-phone.da93a36e.js b/public/admin/assets/oa-phone.da93a36e.js new file mode 100644 index 000000000..a9dc1ce6d --- /dev/null +++ b/public/admin/assets/oa-phone.da93a36e.js @@ -0,0 +1 @@ +import{c as V}from"./element-plus.4328d892.js";import{d as P,bH as j,u as e,e as B,a4 as _,o,c as s,a as n,U as r,L as f,T as h,a7 as v,O as D,S as x,M as F,V as I,Q as L,bf as M,be as N}from"./@vue.51d7f2d8.js";import{u as C}from"./useMenuOa.652835b4.js";import{l as O,d as A}from"./index.ed71ac09.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./wx_oa.ec356b57.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const E=i=>(M("data-v-d95f9d8f"),i=i(),N(),i),G={class:"oa-phone mr-[35px]"},z=E(()=>n("div",{class:"oa-phone-content"},null,-1)),H={class:"flex oa-phone-menu"},Q={class:"flex items-center justify-center oa-phone-menu-switch"},T=["onClick"],U={class:"oa-phone-menu-subitem"},$=P({__name:"oa-phone",setup(i){j(S=>({"591d956f":e(y)}));const b=O(),y=B(()=>b.theme||"#4A5DFF"),{menuList:m,menuIndex:p,handleAddMenu:c}=C(C);return(S,l)=>{const k=_("Grid"),d=V,g=_("Plus");return o(),s("div",G,[z,n("div",H,[n("div",Q,[r(d,null,{default:f(()=>[r(k)]),_:1})]),(o(!0),s(h,null,v(e(m),(t,a)=>(o(),s("div",{key:a,class:"relative flex-1",onClick:u=>p.value=a},[n("div",{class:D(["flex items-center justify-center flex-1 text-sm oa-phone-menu-item",{"active-menu":e(p)===a}])},x(t.name),3),F(n("div",U,[(o(!0),s(h,null,v(t.sub_button,(u,w)=>(o(),s("div",{key:w,class:"oa-phone-menu-subitem-title"},x(u.name),1))),128))],512),[[I,t.sub_button.length&&t.has_menu]])],8,T))),128)),e(m).length<=2?(o(),s("div",{key:0,class:"flex items-center justify-center flex-1 h-full",onClick:l[0]||(l[0]=(...t)=>e(c)&&e(c)(...t))},[r(d,null,{default:f(()=>[r(g)]),_:1})])):L("",!0)])])}}});const jt=A($,[["__scopeId","data-v-d95f9d8f"]]);export{jt as default}; diff --git a/public/admin/assets/open_setting.45f47746.js b/public/admin/assets/open_setting.45f47746.js new file mode 100644 index 000000000..b301d4b53 --- /dev/null +++ b/public/admin/assets/open_setting.45f47746.js @@ -0,0 +1 @@ +import{_ as w}from"./index.fd04a214.js";import{S as C,I as b,B as V,C as y,D as S,w as k}from"./element-plus.4328d892.js";import{r as f}from"./index.37f7aea6.js";import{d as F,$ as x,s as I,af as R,o as d,c as q,U as e,L as u,a as p,u as n,M as N,K as U,R as O}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";function K(s){return f.post({url:"/channel.open_setting/setConfig",params:s})}function L(){return f.get({url:"/channel.open_setting/getConfig"})}const M=p("div",{class:"font-medium mb-7"},"\u7F51\u7AD9\u5E94\u7528",-1),T={class:"w-80"},$={class:"w-80"},j=F({name:"wxDevConfig"}),Ce=F({...j,setup(s){const t=x({app_id:"",app_secret:""}),i=I(),E={app_id:[{required:!0,message:"\u8BF7\u8F93\u5165AppID",trigger:["blur","change"]}],app_secret:[{required:!0,message:"\u8BF7\u8F93\u5165AppSecret",trigger:["blur","change"]}]},l=async()=>{const r=await L();for(const o in t)t[o]=r[o]},g=async()=>{var r;await((r=i.value)==null?void 0:r.validate()),await K(t),l()};return l(),(r,o)=>{const B=C,m=b,c=V,_=y,D=S,A=k,v=w,h=R("perms");return d(),q("div",null,[e(m,{class:"!border-none",shadow:"never"},{default:u(()=>[e(B,{type:"warning",title:"\u6E29\u99A8\u63D0\u793A\uFF1A\u586B\u5199\u5FAE\u4FE1\u5F00\u653E\u5E73\u53F0\u5F00\u53D1\u914D\u7F6E\uFF0C\u8BF7\u524D\u5F80\u5FAE\u4FE1\u5F00\u653E\u5E73\u53F0\u521B\u5EFA\u5E94\u7528\u5E76\u5B8C\u6210\u8BA4\u8BC1\uFF1B\u7F51\u7AD9\u5E94\u7528\u914D\u7F6E\u4E3B\u8981\u7528\u4E8E\u7F51\u7AD9\u5FAE\u4FE1\u767B\u5F55\u548C\u5FAE\u4FE1\u652F\u4ED8",closable:!1,"show-icon":""})]),_:1}),e(D,{ref_key:"formRef",ref:i,model:n(t),rules:E,"label-width":"160px"},{default:u(()=>[e(m,{class:"!border-none mt-4",shadow:"never"},{default:u(()=>[M,e(_,{label:"AppID",prop:"app_id"},{default:u(()=>[p("div",T,[e(c,{modelValue:n(t).app_id,"onUpdate:modelValue":o[0]||(o[0]=a=>n(t).app_id=a),placeholder:"\u8BF7\u8F93\u5165AppID"},null,8,["modelValue"])])]),_:1}),e(_,{label:"AppSecret",prop:"app_secret"},{default:u(()=>[p("div",null,[p("div",$,[e(c,{modelValue:n(t).app_secret,"onUpdate:modelValue":o[1]||(o[1]=a=>n(t).app_secret=a),placeholder:"\u8BF7\u8F93\u5165AppSecret"},null,8,["modelValue"])])])]),_:1})]),_:1})]),_:1},8,["model"]),N((d(),U(v,null,{default:u(()=>[e(A,{type:"primary",onClick:g},{default:u(()=>[O("\u4FDD\u5B58")]),_:1})]),_:1})),[[h,["channel.open_setting/setConfig"]]])])}}});export{Ce as default}; diff --git a/public/admin/assets/open_setting.53eca91f.js b/public/admin/assets/open_setting.53eca91f.js new file mode 100644 index 000000000..a3e6fcaf0 --- /dev/null +++ b/public/admin/assets/open_setting.53eca91f.js @@ -0,0 +1 @@ +import{_ as w}from"./index.be5645df.js";import{S as C,I as b,B as V,C as y,D as S,w as k}from"./element-plus.4328d892.js";import{r as f}from"./index.ed71ac09.js";import{d as F,$ as x,s as I,af as R,o as d,c as q,U as e,L as u,a as p,u as n,M as N,K as U,R as O}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";function K(s){return f.post({url:"/channel.open_setting/setConfig",params:s})}function L(){return f.get({url:"/channel.open_setting/getConfig"})}const M=p("div",{class:"font-medium mb-7"},"\u7F51\u7AD9\u5E94\u7528",-1),T={class:"w-80"},$={class:"w-80"},j=F({name:"wxDevConfig"}),Ce=F({...j,setup(s){const t=x({app_id:"",app_secret:""}),i=I(),E={app_id:[{required:!0,message:"\u8BF7\u8F93\u5165AppID",trigger:["blur","change"]}],app_secret:[{required:!0,message:"\u8BF7\u8F93\u5165AppSecret",trigger:["blur","change"]}]},l=async()=>{const r=await L();for(const o in t)t[o]=r[o]},g=async()=>{var r;await((r=i.value)==null?void 0:r.validate()),await K(t),l()};return l(),(r,o)=>{const B=C,m=b,c=V,_=y,D=S,A=k,v=w,h=R("perms");return d(),q("div",null,[e(m,{class:"!border-none",shadow:"never"},{default:u(()=>[e(B,{type:"warning",title:"\u6E29\u99A8\u63D0\u793A\uFF1A\u586B\u5199\u5FAE\u4FE1\u5F00\u653E\u5E73\u53F0\u5F00\u53D1\u914D\u7F6E\uFF0C\u8BF7\u524D\u5F80\u5FAE\u4FE1\u5F00\u653E\u5E73\u53F0\u521B\u5EFA\u5E94\u7528\u5E76\u5B8C\u6210\u8BA4\u8BC1\uFF1B\u7F51\u7AD9\u5E94\u7528\u914D\u7F6E\u4E3B\u8981\u7528\u4E8E\u7F51\u7AD9\u5FAE\u4FE1\u767B\u5F55\u548C\u5FAE\u4FE1\u652F\u4ED8",closable:!1,"show-icon":""})]),_:1}),e(D,{ref_key:"formRef",ref:i,model:n(t),rules:E,"label-width":"160px"},{default:u(()=>[e(m,{class:"!border-none mt-4",shadow:"never"},{default:u(()=>[M,e(_,{label:"AppID",prop:"app_id"},{default:u(()=>[p("div",T,[e(c,{modelValue:n(t).app_id,"onUpdate:modelValue":o[0]||(o[0]=a=>n(t).app_id=a),placeholder:"\u8BF7\u8F93\u5165AppID"},null,8,["modelValue"])])]),_:1}),e(_,{label:"AppSecret",prop:"app_secret"},{default:u(()=>[p("div",null,[p("div",$,[e(c,{modelValue:n(t).app_secret,"onUpdate:modelValue":o[1]||(o[1]=a=>n(t).app_secret=a),placeholder:"\u8BF7\u8F93\u5165AppSecret"},null,8,["modelValue"])])])]),_:1})]),_:1})]),_:1},8,["model"]),N((d(),U(v,null,{default:u(()=>[e(A,{type:"primary",onClick:g},{default:u(()=>[O("\u4FDD\u5B58")]),_:1})]),_:1})),[[h,["channel.open_setting/setConfig"]]])])}}});export{Ce as default}; diff --git a/public/admin/assets/open_setting.d819b3cc.js b/public/admin/assets/open_setting.d819b3cc.js new file mode 100644 index 000000000..adaa50c4e --- /dev/null +++ b/public/admin/assets/open_setting.d819b3cc.js @@ -0,0 +1 @@ +import{_ as w}from"./index.13ef78d6.js";import{S as C,I as b,B as V,C as y,D as S,w as k}from"./element-plus.4328d892.js";import{r as f}from"./index.aa9bb752.js";import{d as F,$ as x,s as I,af as R,o as d,c as q,U as e,L as u,a as p,u as n,M as N,K as U,R as O}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";function K(s){return f.post({url:"/channel.open_setting/setConfig",params:s})}function L(){return f.get({url:"/channel.open_setting/getConfig"})}const M=p("div",{class:"font-medium mb-7"},"\u7F51\u7AD9\u5E94\u7528",-1),T={class:"w-80"},$={class:"w-80"},j=F({name:"wxDevConfig"}),Ce=F({...j,setup(s){const t=x({app_id:"",app_secret:""}),i=I(),E={app_id:[{required:!0,message:"\u8BF7\u8F93\u5165AppID",trigger:["blur","change"]}],app_secret:[{required:!0,message:"\u8BF7\u8F93\u5165AppSecret",trigger:["blur","change"]}]},l=async()=>{const r=await L();for(const o in t)t[o]=r[o]},g=async()=>{var r;await((r=i.value)==null?void 0:r.validate()),await K(t),l()};return l(),(r,o)=>{const B=C,m=b,c=V,_=y,D=S,A=k,v=w,h=R("perms");return d(),q("div",null,[e(m,{class:"!border-none",shadow:"never"},{default:u(()=>[e(B,{type:"warning",title:"\u6E29\u99A8\u63D0\u793A\uFF1A\u586B\u5199\u5FAE\u4FE1\u5F00\u653E\u5E73\u53F0\u5F00\u53D1\u914D\u7F6E\uFF0C\u8BF7\u524D\u5F80\u5FAE\u4FE1\u5F00\u653E\u5E73\u53F0\u521B\u5EFA\u5E94\u7528\u5E76\u5B8C\u6210\u8BA4\u8BC1\uFF1B\u7F51\u7AD9\u5E94\u7528\u914D\u7F6E\u4E3B\u8981\u7528\u4E8E\u7F51\u7AD9\u5FAE\u4FE1\u767B\u5F55\u548C\u5FAE\u4FE1\u652F\u4ED8",closable:!1,"show-icon":""})]),_:1}),e(D,{ref_key:"formRef",ref:i,model:n(t),rules:E,"label-width":"160px"},{default:u(()=>[e(m,{class:"!border-none mt-4",shadow:"never"},{default:u(()=>[M,e(_,{label:"AppID",prop:"app_id"},{default:u(()=>[p("div",T,[e(c,{modelValue:n(t).app_id,"onUpdate:modelValue":o[0]||(o[0]=a=>n(t).app_id=a),placeholder:"\u8BF7\u8F93\u5165AppID"},null,8,["modelValue"])])]),_:1}),e(_,{label:"AppSecret",prop:"app_secret"},{default:u(()=>[p("div",null,[p("div",$,[e(c,{modelValue:n(t).app_secret,"onUpdate:modelValue":o[1]||(o[1]=a=>n(t).app_secret=a),placeholder:"\u8BF7\u8F93\u5165AppSecret"},null,8,["modelValue"])])])]),_:1})]),_:1})]),_:1},8,["model"]),N((d(),U(v,null,{default:u(()=>[e(A,{type:"primary",onClick:g},{default:u(()=>[O("\u4FDD\u5B58")]),_:1})]),_:1})),[[h,["channel.open_setting/setConfig"]]])])}}});export{Ce as default}; diff --git a/public/admin/assets/overflow.41d822ca.js b/public/admin/assets/overflow.41d822ca.js new file mode 100644 index 000000000..178d77e26 --- /dev/null +++ b/public/admin/assets/overflow.41d822ca.js @@ -0,0 +1 @@ +import{I as m}from"./element-plus.4328d892.js";import{d as i,i as p}from"./index.aa9bb752.js";import{o as e,c as n,U as o,L as c}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const s={};function a(_,l){const t=p,r=m;return e(),n("div",null,[o(r,{header:"\u57FA\u7840\u4F7F\u7528",shadow:"none",class:"!border-none"},{default:c(()=>[o(t,{class:"w-20 m-4",content:"\u8D85\u51FA\u81EA\u52A8\u6253\u70B9\uFF0C\u60AC\u6D6E\u5F39\u7A97\u663E\u793A\u5168\u90E8\u5185\u5BB9"}),o(t,{class:"w-60 m-4",content:"\u8D85\u51FA\u81EA\u52A8\u6253\u70B9\uFF0C\u60AC\u6D6E\u5F39\u7A97\u663E\u793A\u5168\u90E8\u5185\u5BB9"})]),_:1})])}const R=i(s,[["render",a]]);export{R as default}; diff --git a/public/admin/assets/overflow.b30a8261.js b/public/admin/assets/overflow.b30a8261.js new file mode 100644 index 000000000..00b82c35d --- /dev/null +++ b/public/admin/assets/overflow.b30a8261.js @@ -0,0 +1 @@ +import{I as m}from"./element-plus.4328d892.js";import{d as i,i as p}from"./index.37f7aea6.js";import{o as e,c as n,U as o,L as c}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const s={};function a(_,l){const t=p,r=m;return e(),n("div",null,[o(r,{header:"\u57FA\u7840\u4F7F\u7528",shadow:"none",class:"!border-none"},{default:c(()=>[o(t,{class:"w-20 m-4",content:"\u8D85\u51FA\u81EA\u52A8\u6253\u70B9\uFF0C\u60AC\u6D6E\u5F39\u7A97\u663E\u793A\u5168\u90E8\u5185\u5BB9"}),o(t,{class:"w-60 m-4",content:"\u8D85\u51FA\u81EA\u52A8\u6253\u70B9\uFF0C\u60AC\u6D6E\u5F39\u7A97\u663E\u793A\u5168\u90E8\u5185\u5BB9"})]),_:1})])}const R=i(s,[["render",a]]);export{R as default}; diff --git a/public/admin/assets/overflow.f8bb1c52.js b/public/admin/assets/overflow.f8bb1c52.js new file mode 100644 index 000000000..bdf71d988 --- /dev/null +++ b/public/admin/assets/overflow.f8bb1c52.js @@ -0,0 +1 @@ +import{I as m}from"./element-plus.4328d892.js";import{d as i,i as p}from"./index.ed71ac09.js";import{o as e,c as n,U as o,L as c}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const s={};function a(_,l){const t=p,r=m;return e(),n("div",null,[o(r,{header:"\u57FA\u7840\u4F7F\u7528",shadow:"none",class:"!border-none"},{default:c(()=>[o(t,{class:"w-20 m-4",content:"\u8D85\u51FA\u81EA\u52A8\u6253\u70B9\uFF0C\u60AC\u6D6E\u5F39\u7A97\u663E\u793A\u5168\u90E8\u5185\u5BB9"}),o(t,{class:"w-60 m-4",content:"\u8D85\u51FA\u81EA\u52A8\u6253\u70B9\uFF0C\u60AC\u6D6E\u5F39\u7A97\u663E\u793A\u5168\u90E8\u5185\u5BB9"})]),_:1})])}const R=i(s,[["render",a]]);export{R as default}; diff --git a/public/admin/assets/pay.28eb6ca6.js b/public/admin/assets/pay.28eb6ca6.js new file mode 100644 index 000000000..5f5f12ca5 --- /dev/null +++ b/public/admin/assets/pay.28eb6ca6.js @@ -0,0 +1 @@ +import{r as a}from"./index.ed71ac09.js";function e(){return a.get({url:"/setting.pay.pay_way/getPayWay"})}function s(t){return a.post({url:"/setting.pay.pay_way/setPayWay",params:t})}function y(){return a.get({url:"/setting.pay.pay_config/lists"})}function g(t){return a.post({url:"/setting.pay.pay_config/setConfig",params:t})}function i(t){return a.get({url:"/setting.pay.pay_config/getConfig",params:t})}export{y as a,e as b,s as c,i as g,g as s}; diff --git a/public/admin/assets/pay.63666d5f.js b/public/admin/assets/pay.63666d5f.js new file mode 100644 index 000000000..ea9b6ba9b --- /dev/null +++ b/public/admin/assets/pay.63666d5f.js @@ -0,0 +1 @@ +import{r as a}from"./index.aa9bb752.js";function e(){return a.get({url:"/setting.pay.pay_way/getPayWay"})}function s(t){return a.post({url:"/setting.pay.pay_way/setPayWay",params:t})}function y(){return a.get({url:"/setting.pay.pay_config/lists"})}function g(t){return a.post({url:"/setting.pay.pay_config/setConfig",params:t})}function i(t){return a.get({url:"/setting.pay.pay_config/getConfig",params:t})}export{y as a,e as b,s as c,i as g,g as s}; diff --git a/public/admin/assets/pay.b01bd8e2.js b/public/admin/assets/pay.b01bd8e2.js new file mode 100644 index 000000000..2bcb0188f --- /dev/null +++ b/public/admin/assets/pay.b01bd8e2.js @@ -0,0 +1 @@ +import{r as a}from"./index.37f7aea6.js";function e(){return a.get({url:"/setting.pay.pay_way/getPayWay"})}function s(t){return a.post({url:"/setting.pay.pay_way/setPayWay",params:t})}function y(){return a.get({url:"/setting.pay.pay_config/lists"})}function g(t){return a.post({url:"/setting.pay.pay_config/setConfig",params:t})}function i(t){return a.get({url:"/setting.pay.pay_config/getConfig",params:t})}export{y as a,e as b,s as c,i as g,g as s}; diff --git a/public/admin/assets/pc.04cb4de2.js b/public/admin/assets/pc.04cb4de2.js new file mode 100644 index 000000000..438988c32 --- /dev/null +++ b/public/admin/assets/pc.04cb4de2.js @@ -0,0 +1 @@ +import{_ as E}from"./index.be5645df.js";import{I as b,w as B}from"./element-plus.4328d892.js";import P from"./menu.e12cd2ff.js";import k from"./preview-pc.b441bd47.js";import{_ as C}from"./attr-setting.vue_vue_type_script_setup_true_lang.165968f9.js";import"./index.017d9ee1.js";import{s as I,a as N}from"./decoration.6a408574.js";import"./lodash.08438971.js";import{d as v,$ as h,r as d,e as u,w as M,af as S,o as _,c as O,U as i,L as n,a as U,u as p,k as f,M as F,K as J,R}from"./@vue.51d7f2d8.js";import{d as T}from"./index.ed71ac09.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./attr.vue_vue_type_script_setup_true_lang.8394104e.js";import"./index.f2c7f81b.js";import"./picker.47d21da2.js";import"./index.b940d6e3.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./picker.597494a6.js";import"./index.c38e1dd6.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./index.9c616a0c.js";import"./index.vue_vue_type_script_setup_true_lang.dc835bba.js";import"./usePaging.2ad8e1e6.js";import"./vue3-video-play.b911321b.js";import"./vuedraggable.0cb40d3a.js";import"./vue.5de34049.js";import"./sortablejs.ef73fc5c.js";import"./content.vue_vue_type_script_setup_true_lang.84d28a88.js";import"./decoration-img.82b482b3.js";import"./attr.vue_vue_type_script_setup_true_lang.be7eaab3.js";import"./content.b8657a15.js";import"./attr.vue_vue_type_script_setup_true_lang.5e1d2ee6.js";import"./add-nav.vue_vue_type_script_setup_true_lang.a0ca03a3.js";import"./content.de68a2a6.js";import"./attr.vue_vue_type_script_setup_true_lang.19311265.js";import"./content.vue_vue_type_script_setup_true_lang.c8560c8f.js";import"./attr.vue_vue_type_script_setup_true_lang.d01577b5.js";import"./content.54b16038.js";import"./attr.vue_vue_type_script_setup_true_lang.0fc534ba.js";import"./content.fb432a0e.js";import"./attr.vue_vue_type_script_setup_true_lang.103310f1.js";import"./content.vue_vue_type_script_setup_true_lang.e9fe6f66.js";import"./attr.vue_vue_type_script_setup_true_lang.00e826d0.js";import"./content.0dcb8921.js";const W={class:"decoration-pages min-w-[1100px]"},$={class:"flex h-full items-start"},H=v({name:"decorationPc"}),K=v({...H,setup(L){let l;(t=>{t.HOME="4"})(l||(l={}));const a=h({[4]:{id:4,type:4,name:"\u9996\u9875\u88C5\u4FEE",pageData:[]}}),o=d("4"),r=d(0),m=u(()=>{var t,e;return(e=(t=a[o.value])==null?void 0:t.pageData)!=null?e:[]}),g=u(()=>{var t,e;return(e=(t=a[o.value])==null?void 0:t.pageData[r.value])!=null?e:""}),c=async()=>{const t=await N({id:o.value});a[String(t.id)].pageData=JSON.parse(t.data),r.value=m.value.findIndex(e=>!e.disabled)},x=async()=>{await I({...a[o.value],data:JSON.stringify(a[o.value].pageData)}),c()};return M(o,()=>{r.value=m.value.findIndex(t=>!t.disabled),c()},{immediate:!0}),(t,e)=>{const D=b,w=B,y=E,V=S("perms");return _(),O("div",W,[i(D,{shadow:"never",class:"!border-none flex-1 flex","body-style":{flex:1}},{default:n(()=>[U("div",$,[i(P,{modelValue:p(o),"onUpdate:modelValue":e[0]||(e[0]=s=>f(o)?o.value=s:null),menus:p(a)},null,8,["modelValue","menus"]),i(k,{class:"mx-4",modelValue:p(r),"onUpdate:modelValue":e[1]||(e[1]=s=>f(r)?r.value=s:null),pageData:p(m)},null,8,["modelValue","pageData"]),i(C,{class:"flex-1",widget:p(g),type:"pc"},null,8,["widget"])])]),_:1}),F((_(),J(y,{class:"mt-4",fixed:!1},{default:n(()=>[i(w,{type:"primary",onClick:x},{default:n(()=>[R("\u4FDD\u5B58")]),_:1})]),_:1})),[[V,["decorate:pages:save"]]])])}}});const ne=T(K,[["__scopeId","data-v-0627c615"]]);export{ne as default}; diff --git a/public/admin/assets/pc.4421617e.js b/public/admin/assets/pc.4421617e.js new file mode 100644 index 000000000..9b6e5316d --- /dev/null +++ b/public/admin/assets/pc.4421617e.js @@ -0,0 +1 @@ +import{_ as E}from"./index.13ef78d6.js";import{I as b,w as B}from"./element-plus.4328d892.js";import P from"./menu.1c60c1a9.js";import k from"./preview-pc.10dd6ed7.js";import{_ as C}from"./attr-setting.vue_vue_type_script_setup_true_lang.da407ae8.js";import"./index.85a36c0c.js";import{s as I,a as N}from"./decoration.4be01ffa.js";import"./lodash.08438971.js";import{d as v,$ as h,r as d,e as u,w as M,af as S,o as _,c as O,U as i,L as n,a as U,u as p,k as f,M as F,K as J,R}from"./@vue.51d7f2d8.js";import{d as T}from"./index.aa9bb752.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./attr.vue_vue_type_script_setup_true_lang.5697c78f.js";import"./index.a9a11abe.js";import"./picker.c7d50072.js";import"./index.fa872673.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./picker.45aea54f.js";import"./index.c47e74f8.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./index.a450f1bb.js";import"./index.vue_vue_type_script_setup_true_lang.dc835bba.js";import"./usePaging.2ad8e1e6.js";import"./vue3-video-play.b911321b.js";import"./vuedraggable.0cb40d3a.js";import"./vue.5de34049.js";import"./sortablejs.ef73fc5c.js";import"./content.vue_vue_type_script_setup_true_lang.d21cb19e.js";import"./decoration-img.3e95b47f.js";import"./attr.vue_vue_type_script_setup_true_lang.fdded599.js";import"./content.206aab68.js";import"./attr.vue_vue_type_script_setup_true_lang.f3b5265b.js";import"./add-nav.vue_vue_type_script_setup_true_lang.3317a1cd.js";import"./content.b2cebb4d.js";import"./attr.vue_vue_type_script_setup_true_lang.aeb5c0d0.js";import"./content.vue_vue_type_script_setup_true_lang.08763d7f.js";import"./attr.vue_vue_type_script_setup_true_lang.d01577b5.js";import"./content.95faa73b.js";import"./attr.vue_vue_type_script_setup_true_lang.0fc534ba.js";import"./content.84ae04ad.js";import"./attr.vue_vue_type_script_setup_true_lang.3d3efd85.js";import"./content.vue_vue_type_script_setup_true_lang.28911d3e.js";import"./attr.vue_vue_type_script_setup_true_lang.00e826d0.js";import"./content.92456155.js";const W={class:"decoration-pages min-w-[1100px]"},$={class:"flex h-full items-start"},H=v({name:"decorationPc"}),K=v({...H,setup(L){let l;(t=>{t.HOME="4"})(l||(l={}));const a=h({[4]:{id:4,type:4,name:"\u9996\u9875\u88C5\u4FEE",pageData:[]}}),o=d("4"),r=d(0),m=u(()=>{var t,e;return(e=(t=a[o.value])==null?void 0:t.pageData)!=null?e:[]}),g=u(()=>{var t,e;return(e=(t=a[o.value])==null?void 0:t.pageData[r.value])!=null?e:""}),c=async()=>{const t=await N({id:o.value});a[String(t.id)].pageData=JSON.parse(t.data),r.value=m.value.findIndex(e=>!e.disabled)},x=async()=>{await I({...a[o.value],data:JSON.stringify(a[o.value].pageData)}),c()};return M(o,()=>{r.value=m.value.findIndex(t=>!t.disabled),c()},{immediate:!0}),(t,e)=>{const D=b,w=B,y=E,V=S("perms");return _(),O("div",W,[i(D,{shadow:"never",class:"!border-none flex-1 flex","body-style":{flex:1}},{default:n(()=>[U("div",$,[i(P,{modelValue:p(o),"onUpdate:modelValue":e[0]||(e[0]=s=>f(o)?o.value=s:null),menus:p(a)},null,8,["modelValue","menus"]),i(k,{class:"mx-4",modelValue:p(r),"onUpdate:modelValue":e[1]||(e[1]=s=>f(r)?r.value=s:null),pageData:p(m)},null,8,["modelValue","pageData"]),i(C,{class:"flex-1",widget:p(g),type:"pc"},null,8,["widget"])])]),_:1}),F((_(),J(y,{class:"mt-4",fixed:!1},{default:n(()=>[i(w,{type:"primary",onClick:x},{default:n(()=>[R("\u4FDD\u5B58")]),_:1})]),_:1})),[[V,["decorate:pages:save"]]])])}}});const ne=T(K,[["__scopeId","data-v-0627c615"]]);export{ne as default}; diff --git a/public/admin/assets/pc.efe0414f.js b/public/admin/assets/pc.efe0414f.js new file mode 100644 index 000000000..dbecd540f --- /dev/null +++ b/public/admin/assets/pc.efe0414f.js @@ -0,0 +1 @@ +import{_ as E}from"./index.fd04a214.js";import{I as b,w as B}from"./element-plus.4328d892.js";import P from"./menu.6829f7a9.js";import k from"./preview-pc.e164827a.js";import{_ as C}from"./attr-setting.vue_vue_type_script_setup_true_lang.4680a37f.js";import"./index.500fd836.js";import{s as I,a as N}from"./decoration.6f039a71.js";import"./lodash.08438971.js";import{d as v,$ as h,r as d,e as u,w as M,af as S,o as _,c as O,U as i,L as n,a as U,u as p,k as f,M as F,K as J,R}from"./@vue.51d7f2d8.js";import{d as T}from"./index.37f7aea6.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./attr.vue_vue_type_script_setup_true_lang.f9c983cd.js";import"./index.fe1d30dd.js";import"./picker.d415e27a.js";import"./index.5759a1a6.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./picker.3821e495.js";import"./index.af446662.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./index.5f944d34.js";import"./index.vue_vue_type_script_setup_true_lang.dc835bba.js";import"./usePaging.2ad8e1e6.js";import"./vue3-video-play.b911321b.js";import"./vuedraggable.0cb40d3a.js";import"./vue.5de34049.js";import"./sortablejs.ef73fc5c.js";import"./content.vue_vue_type_script_setup_true_lang.b3e4f379.js";import"./decoration-img.d7e5dbec.js";import"./attr.vue_vue_type_script_setup_true_lang.a5f46be8.js";import"./content.416ba4d2.js";import"./attr.vue_vue_type_script_setup_true_lang.4cdc919e.js";import"./add-nav.vue_vue_type_script_setup_true_lang.35798c7b.js";import"./content.b3fbaeeb.js";import"./attr.vue_vue_type_script_setup_true_lang.d9838080.js";import"./content.vue_vue_type_script_setup_true_lang.888a9caf.js";import"./attr.vue_vue_type_script_setup_true_lang.d01577b5.js";import"./content.87312235.js";import"./attr.vue_vue_type_script_setup_true_lang.0fc534ba.js";import"./content.39f10dd3.js";import"./attr.vue_vue_type_script_setup_true_lang.871cb086.js";import"./content.vue_vue_type_script_setup_true_lang.e6931808.js";import"./attr.vue_vue_type_script_setup_true_lang.00e826d0.js";import"./content.d63a41a9.js";const W={class:"decoration-pages min-w-[1100px]"},$={class:"flex h-full items-start"},H=v({name:"decorationPc"}),K=v({...H,setup(L){let l;(t=>{t.HOME="4"})(l||(l={}));const a=h({[4]:{id:4,type:4,name:"\u9996\u9875\u88C5\u4FEE",pageData:[]}}),o=d("4"),r=d(0),m=u(()=>{var t,e;return(e=(t=a[o.value])==null?void 0:t.pageData)!=null?e:[]}),g=u(()=>{var t,e;return(e=(t=a[o.value])==null?void 0:t.pageData[r.value])!=null?e:""}),c=async()=>{const t=await N({id:o.value});a[String(t.id)].pageData=JSON.parse(t.data),r.value=m.value.findIndex(e=>!e.disabled)},x=async()=>{await I({...a[o.value],data:JSON.stringify(a[o.value].pageData)}),c()};return M(o,()=>{r.value=m.value.findIndex(t=>!t.disabled),c()},{immediate:!0}),(t,e)=>{const D=b,w=B,y=E,V=S("perms");return _(),O("div",W,[i(D,{shadow:"never",class:"!border-none flex-1 flex","body-style":{flex:1}},{default:n(()=>[U("div",$,[i(P,{modelValue:p(o),"onUpdate:modelValue":e[0]||(e[0]=s=>f(o)?o.value=s:null),menus:p(a)},null,8,["modelValue","menus"]),i(k,{class:"mx-4",modelValue:p(r),"onUpdate:modelValue":e[1]||(e[1]=s=>f(r)?r.value=s:null),pageData:p(m)},null,8,["modelValue","pageData"]),i(C,{class:"flex-1",widget:p(g),type:"pc"},null,8,["widget"])])]),_:1}),F((_(),J(y,{class:"mt-4",fixed:!1},{default:n(()=>[i(w,{type:"primary",onClick:x},{default:n(()=>[R("\u4FDD\u5B58")]),_:1})]),_:1})),[[V,["decorate:pages:save"]]])])}}});const ne=T(K,[["__scopeId","data-v-0627c615"]]);export{ne as default}; diff --git a/public/admin/assets/picker.3821e495.js b/public/admin/assets/picker.3821e495.js new file mode 100644 index 000000000..a5c05e5ed --- /dev/null +++ b/public/admin/assets/picker.3821e495.js @@ -0,0 +1 @@ +import{P as I}from"./index.5759a1a6.js";import{E as T}from"./element-plus.4328d892.js";import{F as N,_ as B,a as M}from"./index.af446662.js";import{u as H,d as O,b as Z}from"./index.37f7aea6.js";import{_ as j}from"./index.fe1d30dd.js";import{D as q}from"./vuedraggable.0cb40d3a.js";import{d as G,r as i,a3 as J,e as S,w as K,D as $,n as Q,a4 as U,o as W,c as X,U as n,a9 as Y,L as p,a as s,Z as k,O as P,R as x,M as ee,H as le,_ as ae,V as oe,bf as te,be as se}from"./@vue.51d7f2d8.js";import{f as ie}from"./@vueuse.ec90c285.js";const ne=G({components:{Popup:I,Draggable:q,FileItem:N,Material:B,Preview:M},props:{modelValue:{type:[String,Array],default:()=>[]},type:{type:String,default:"image"},size:{type:String,default:"100px"},fileSize:{type:String,default:"100px"},limit:{type:Number,default:1},disabled:{type:Boolean,default:!1},hiddenUpload:{type:Boolean,default:!1},uploadClass:{type:String,default:""},excludeDomain:{type:Boolean,default:!1}},emits:["change","update:modelValue"],setup(e,{emit:o}){const h=i(),g=i(),_=i(""),w=i(!1),a=i([]),m=i([]),r=i(!0),c=i(-1),{disabled:y,limit:u,modelValue:C}=J(e),{getImageUrl:b}=H(),t=S(()=>{switch(e.type){case"image":return"\u56FE\u7247";case"video":return"\u89C6\u9891";default:return""}}),f=S(()=>e.limit-a.value.length>0),v=S(()=>r.value?u.value==-1?null:u.value-a.value.length:1),E=ie(()=>{const l=m.value.map(d=>e.excludeDomain?d.url:d.uri);r.value?a.value=[...a.value,...l]:a.value.splice(c.value,1,l.shift()),V()},1e3,!1),A=l=>{var d;y.value||(l>=0?(r.value=!1,c.value=l):r.value=!0,(d=h.value)==null||d.open())},F=l=>{m.value=l},V=()=>{const l=u.value!=1?a.value:a.value[0]||"";o("update:modelValue",l),o("change",l),z()},L=l=>{a.value.splice(l,1),V()},R=l=>{_.value=l,w.value=!0},z=()=>{Q(()=>{var l;e.hiddenUpload&&(a.value=[]),(l=g.value)==null||l.clearSelect()})};return K(C,l=>{a.value=Array.isArray(l)?l:l==""?[]:[l]},{immediate:!0}),$("limit",e.limit),$("hiddenUpload",e.hiddenUpload),{popupRef:h,materialRef:g,fileList:a,tipsText:t,handleConfirm:E,meterialLimit:v,showUpload:f,showPopup:A,selectChange:F,deleteImg:L,previewUrl:_,showPreview:w,handlePreview:R,handleClose:z,getImageUrl:b}}});const D=e=>(te("data-v-116a188b"),e=e(),se(),e),re={class:"material-select"},ue=["onClick"],de={class:"operation-btns text-xs text-center"},pe=D(()=>s("span",null,"\u4FEE\u6539",-1)),me=["onClick"],ce=D(()=>s("span",null,"\u6DFB\u52A0",-1)),fe={class:"material-wrap"};function ve(e,o,h,g,_,w){const a=U("file-item"),m=j,r=U("draggable"),c=Z,y=B,u=T,C=I,b=U("preview");return W(),X("div",re,[n(C,{ref:"popupRef",width:"830px","custom-class":"body-padding",title:`\u9009\u62E9${e.tipsText}`,onConfirm:e.handleConfirm,onClose:e.handleClose},Y({default:p(()=>[n(u,null,{default:p(()=>[s("div",fe,[n(y,{ref:"materialRef",type:e.type,"file-size":e.fileSize,limit:e.meterialLimit,onChange:e.selectChange},null,8,["type","file-size","limit","onChange"])])]),_:1})]),_:2},[e.hiddenUpload?void 0:{name:"trigger",fn:p(()=>[s("div",{class:"material-select__trigger clearfix",onClick:o[2]||(o[2]=k(()=>{},["stop"]))},[n(r,{class:"draggable",modelValue:e.fileList,"onUpdate:modelValue":o[0]||(o[0]=t=>e.fileList=t),animation:"300","item-key":"id"},{item:p(({element:t,index:f})=>[s("div",{class:P(["material-preview",{"is-disabled":e.disabled,"is-one":e.limit==1}]),onClick:v=>e.showPopup(f)},[n(m,{onClose:v=>e.deleteImg(f)},{default:p(()=>[n(a,{uri:e.excludeDomain?e.getImageUrl(t):t,"file-size":e.size,type:e.type},null,8,["uri","file-size","type"])]),_:2},1032,["onClose"]),s("div",de,[pe,x(" | "),s("span",{onClick:k(v=>e.handlePreview(t),["stop"])},"\u67E5\u770B",8,me)])],10,ue)]),_:1},8,["modelValue"]),ee(s("div",{class:P(["material-upload",{"is-disabled":e.disabled,"is-one":e.limit==1,[e.uploadClass]:!0}]),onClick:o[1]||(o[1]=t=>e.showPopup(-1))},[le(e.$slots,"upload",{},()=>[s("div",{class:"upload-btn",style:ae({width:e.size,height:e.size})},[n(c,{size:25,name:"el-icon-Plus"}),ce],4)],!0)],2),[[oe,e.showUpload]])])]),key:"0"}]),1032,["title","onConfirm","onClose"]),n(b,{modelValue:e.showPreview,"onUpdate:modelValue":o[3]||(o[3]=t=>e.showPreview=t),url:e.previewUrl,type:e.type},null,8,["modelValue","url","type"])])}const Ue=O(ne,[["render",ve],["__scopeId","data-v-116a188b"]]);export{Ue as _}; diff --git a/public/admin/assets/picker.45aea54f.js b/public/admin/assets/picker.45aea54f.js new file mode 100644 index 000000000..64203bbfd --- /dev/null +++ b/public/admin/assets/picker.45aea54f.js @@ -0,0 +1 @@ +import{P as I}from"./index.fa872673.js";import{E as T}from"./element-plus.4328d892.js";import{F as N,_ as B,a as M}from"./index.c47e74f8.js";import{u as H,d as O,b as Z}from"./index.aa9bb752.js";import{_ as j}from"./index.a9a11abe.js";import{D as q}from"./vuedraggable.0cb40d3a.js";import{d as G,r as i,a3 as J,e as S,w as K,D as $,n as Q,a4 as U,o as W,c as X,U as n,a9 as Y,L as p,a as s,Z as k,O as P,R as x,M as ee,H as le,_ as ae,V as oe,bf as te,be as se}from"./@vue.51d7f2d8.js";import{f as ie}from"./@vueuse.ec90c285.js";const ne=G({components:{Popup:I,Draggable:q,FileItem:N,Material:B,Preview:M},props:{modelValue:{type:[String,Array],default:()=>[]},type:{type:String,default:"image"},size:{type:String,default:"100px"},fileSize:{type:String,default:"100px"},limit:{type:Number,default:1},disabled:{type:Boolean,default:!1},hiddenUpload:{type:Boolean,default:!1},uploadClass:{type:String,default:""},excludeDomain:{type:Boolean,default:!1}},emits:["change","update:modelValue"],setup(e,{emit:o}){const h=i(),g=i(),_=i(""),w=i(!1),a=i([]),m=i([]),r=i(!0),c=i(-1),{disabled:y,limit:u,modelValue:C}=J(e),{getImageUrl:b}=H(),t=S(()=>{switch(e.type){case"image":return"\u56FE\u7247";case"video":return"\u89C6\u9891";default:return""}}),f=S(()=>e.limit-a.value.length>0),v=S(()=>r.value?u.value==-1?null:u.value-a.value.length:1),E=ie(()=>{const l=m.value.map(d=>e.excludeDomain?d.url:d.uri);r.value?a.value=[...a.value,...l]:a.value.splice(c.value,1,l.shift()),V()},1e3,!1),A=l=>{var d;y.value||(l>=0?(r.value=!1,c.value=l):r.value=!0,(d=h.value)==null||d.open())},F=l=>{m.value=l},V=()=>{const l=u.value!=1?a.value:a.value[0]||"";o("update:modelValue",l),o("change",l),z()},L=l=>{a.value.splice(l,1),V()},R=l=>{_.value=l,w.value=!0},z=()=>{Q(()=>{var l;e.hiddenUpload&&(a.value=[]),(l=g.value)==null||l.clearSelect()})};return K(C,l=>{a.value=Array.isArray(l)?l:l==""?[]:[l]},{immediate:!0}),$("limit",e.limit),$("hiddenUpload",e.hiddenUpload),{popupRef:h,materialRef:g,fileList:a,tipsText:t,handleConfirm:E,meterialLimit:v,showUpload:f,showPopup:A,selectChange:F,deleteImg:L,previewUrl:_,showPreview:w,handlePreview:R,handleClose:z,getImageUrl:b}}});const D=e=>(te("data-v-116a188b"),e=e(),se(),e),re={class:"material-select"},ue=["onClick"],de={class:"operation-btns text-xs text-center"},pe=D(()=>s("span",null,"\u4FEE\u6539",-1)),me=["onClick"],ce=D(()=>s("span",null,"\u6DFB\u52A0",-1)),fe={class:"material-wrap"};function ve(e,o,h,g,_,w){const a=U("file-item"),m=j,r=U("draggable"),c=Z,y=B,u=T,C=I,b=U("preview");return W(),X("div",re,[n(C,{ref:"popupRef",width:"830px","custom-class":"body-padding",title:`\u9009\u62E9${e.tipsText}`,onConfirm:e.handleConfirm,onClose:e.handleClose},Y({default:p(()=>[n(u,null,{default:p(()=>[s("div",fe,[n(y,{ref:"materialRef",type:e.type,"file-size":e.fileSize,limit:e.meterialLimit,onChange:e.selectChange},null,8,["type","file-size","limit","onChange"])])]),_:1})]),_:2},[e.hiddenUpload?void 0:{name:"trigger",fn:p(()=>[s("div",{class:"material-select__trigger clearfix",onClick:o[2]||(o[2]=k(()=>{},["stop"]))},[n(r,{class:"draggable",modelValue:e.fileList,"onUpdate:modelValue":o[0]||(o[0]=t=>e.fileList=t),animation:"300","item-key":"id"},{item:p(({element:t,index:f})=>[s("div",{class:P(["material-preview",{"is-disabled":e.disabled,"is-one":e.limit==1}]),onClick:v=>e.showPopup(f)},[n(m,{onClose:v=>e.deleteImg(f)},{default:p(()=>[n(a,{uri:e.excludeDomain?e.getImageUrl(t):t,"file-size":e.size,type:e.type},null,8,["uri","file-size","type"])]),_:2},1032,["onClose"]),s("div",de,[pe,x(" | "),s("span",{onClick:k(v=>e.handlePreview(t),["stop"])},"\u67E5\u770B",8,me)])],10,ue)]),_:1},8,["modelValue"]),ee(s("div",{class:P(["material-upload",{"is-disabled":e.disabled,"is-one":e.limit==1,[e.uploadClass]:!0}]),onClick:o[1]||(o[1]=t=>e.showPopup(-1))},[le(e.$slots,"upload",{},()=>[s("div",{class:"upload-btn",style:ae({width:e.size,height:e.size})},[n(c,{size:25,name:"el-icon-Plus"}),ce],4)],!0)],2),[[oe,e.showUpload]])])]),key:"0"}]),1032,["title","onConfirm","onClose"]),n(b,{modelValue:e.showPreview,"onUpdate:modelValue":o[3]||(o[3]=t=>e.showPreview=t),url:e.previewUrl,type:e.type},null,8,["modelValue","url","type"])])}const Ue=O(ne,[["render",ve],["__scopeId","data-v-116a188b"]]);export{Ue as _}; diff --git a/public/admin/assets/picker.47d21da2.js b/public/admin/assets/picker.47d21da2.js new file mode 100644 index 000000000..b2f403466 --- /dev/null +++ b/public/admin/assets/picker.47d21da2.js @@ -0,0 +1 @@ +import{B as C,d as w,f as G}from"./element-plus.4328d892.js";import{d as F,b as H}from"./index.ed71ac09.js";import{d as v,r as A,o as p,c as _,a as E,T as g,a7 as O,O as D,S as B,u as o,R as $,U as y,e as b,w as x,L as h,K as S,k as V,Q as k,s as I,Z as L}from"./@vue.51d7f2d8.js";import{P as M}from"./index.b940d6e3.js";var u=(l=>(l.SHOP_PAGES="shop",l.CUSTOM_LINK="custom",l))(u||{});const N={class:"shop-pages"},U={class:"link-list flex flex-wrap"},q=["onClick"],K=v({__name:"shop-pages",props:{modelValue:{type:Object,default:()=>({})}},emits:["update:modelValue"],setup(l,{emit:m}){const d=A([{path:"/pages/index/index",name:"\u5546\u57CE\u9996\u9875",type:u.SHOP_PAGES},{path:"/pages/news/news",name:"\u6587\u7AE0\u8D44\u8BAF",type:u.SHOP_PAGES},{path:"/pages/user/user",name:"\u4E2A\u4EBA\u4E2D\u5FC3",type:u.SHOP_PAGES},{path:"/pages/collection/collection",name:"\u6211\u7684\u6536\u85CF",type:u.SHOP_PAGES},{path:"/pages/customer_service/customer_service",name:"\u8054\u7CFB\u5BA2\u670D",type:u.SHOP_PAGES},{path:"/pages/user_set/user_set",name:"\u4E2A\u4EBA\u8BBE\u7F6E",type:u.SHOP_PAGES},{path:"/pages/as_us/as_us",name:"\u5173\u4E8E\u6211\u4EEC",type:u.SHOP_PAGES},{path:"/pages/user_data/user_data",name:"\u4E2A\u4EBA\u8D44\u6599",type:u.SHOP_PAGES},{path:"/pages/agreement/agreement",name:"\u9690\u79C1\u653F\u7B56",query:{type:"privacy"},type:u.SHOP_PAGES},{path:"/pages/agreement/agreement",name:"\u670D\u52A1\u534F\u8BAE",query:{type:"service"},type:u.SHOP_PAGES},{path:"/pages/search/search",name:"\u641C\u7D22",type:u.SHOP_PAGES},{path:"/packages/pages/user_wallet/user_wallet",name:"\u6211\u7684\u94B1\u5305",type:u.SHOP_PAGES}]),r=a=>{m("update:modelValue",a)};return(a,n)=>(p(),_("div",N,[E("div",U,[(p(!0),_(g,null,O(o(d),(i,e)=>(p(),_("div",{class:D(["link-item border border-br px-5 py-[5px] rounded-[3px] cursor-pointer mr-[10px] mb-[10px]",{"border-primary text-primary":l.modelValue.path==i.path&&l.modelValue.name==i.name}]),key:e,onClick:t=>r(i)},B(i.name),11,q))),128))])]))}}),R={class:"custom-link mt-[30px]"},T={class:"flex flex-wrap items-center"},j={class:"ml-4 flex-1 min-w-[100px]"},z=E("div",{class:"form-tips"}," \u8BF7\u586B\u5199\u5B8C\u6574\u7684\u5E26\u6709\u201Chttps://\u201D\u6216\u201Chttp://\u201D\u7684\u94FE\u63A5\u5730\u5740\uFF0C\u94FE\u63A5\u7684\u57DF\u540D\u5FC5\u987B\u5728\u5FAE\u4FE1\u516C\u4F17\u5E73\u53F0\u8BBE\u7F6E\u4E1A\u52A1\u57DF\u540D ",-1),Q=v({__name:"custom-link",props:{modelValue:{type:Object,default:()=>({})}},emits:["update:modelValue"],setup(l,{emit:m}){const d=r=>{m("update:modelValue",{path:"/pages/webview/webview",query:{url:r},type:u.CUSTOM_LINK})};return(r,a)=>{var i;const n=C;return p(),_("div",R,[E("div",T,[$(" \u81EA\u5B9A\u4E49\u94FE\u63A5 "),E("div",j,[y(n,{"model-value":(i=l.modelValue.query)==null?void 0:i.url,placeholder:"\u8BF7\u8F93\u5165\u94FE\u63A5\u5730\u5740",onInput:d},null,8,["model-value"])])]),z])}}}),Z={class:"link flex"},J={class:"flex-1 pl-4"},W=v({__name:"index",props:{modelValue:{type:Object,required:!0}},emits:["update:modelValue"],setup(l,{emit:m}){const d=l,r=A([{name:"\u5546\u57CE\u9875\u9762",type:u.SHOP_PAGES,link:{}},{name:"\u81EA\u5B9A\u4E49\u94FE\u63A5",type:u.CUSTOM_LINK,link:{}}]),a=b({get(){var e;return(e=r.value.find(t=>t.type==n.value))==null?void 0:e.link},set(e){r.value.forEach(t=>{t.type==n.value&&(t.link=e)})}}),n=A(u.SHOP_PAGES),i=e=>{n.value=e};return x(a,e=>{!e.type||m("update:modelValue",e)}),x(()=>d.modelValue,e=>{n.value=e.type,a.value=e},{immediate:!0}),(e,t)=>{const c=w,P=G;return p(),_("div",Z,[y(P,{"default-active":o(n),class:"w-[160px] min-h-[350px] link-menu",onSelect:i},{default:h(()=>[(p(!0),_(g,null,O(o(r),(s,f)=>(p(),S(c,{index:s.type,key:f},{default:h(()=>[E("span",null,B(s.name),1)]),_:2},1032,["index"]))),128))]),_:1},8,["default-active"]),E("div",J,[o(u).SHOP_PAGES==o(n)?(p(),S(K,{key:0,modelValue:o(a),"onUpdate:modelValue":t[0]||(t[0]=s=>V(a)?a.value=s:null)},null,8,["modelValue"])):k("",!0),o(u).CUSTOM_LINK==o(n)?(p(),S(Q,{key:1,modelValue:o(a),"onUpdate:modelValue":t[1]||(t[1]=s=>V(a)?a.value=s:null)},null,8,["modelValue"])):k("",!0)])])}}});const X=F(W,[["__scopeId","data-v-9b4140c5"]]),Y=v({__name:"picker",props:{modelValue:{type:Object},disabled:{type:Boolean,default:!1}},emits:["update:modelValue"],setup(l,{emit:m}){const d=l,r=I(),a=A({path:"",type:u.SHOP_PAGES}),n=()=>{m("update:modelValue",a.value)},i=b(()=>{var e,t,c;switch((e=d.modelValue)==null?void 0:e.type){case u.SHOP_PAGES:return d.modelValue.name;case u.CUSTOM_LINK:return(t=d.modelValue.query)==null?void 0:t.url;default:return(c=d.modelValue)==null?void 0:c.name}});return x(()=>d.modelValue,e=>{e!=null&&e.type&&(a.value=e)},{immediate:!0}),(e,t)=>{const c=H,P=C;return p(),_("div",{class:"link-picker flex-1",onClick:t[2]||(t[2]=s=>{var f;return!l.disabled&&((f=o(r))==null?void 0:f.open())})},[y(P,{"model-value":o(i),placeholder:"\u8BF7\u9009\u62E9\u94FE\u63A5",readonly:"",disabled:l.disabled},{suffix:h(()=>{var s;return[(s=l.modelValue)!=null&&s.path?(p(),S(c,{key:1,name:"el-icon-Close",onClick:t[0]||(t[0]=L(f=>!l.disabled&&m("update:modelValue",{}),["stop"]))})):(p(),S(c,{key:0,name:"el-icon-ArrowRight"}))]}),_:1},8,["model-value","disabled"]),y(M,{ref_key:"popupRef",ref:r,width:"700px",title:"\u94FE\u63A5\u9009\u62E9",onConfirm:n},{default:h(()=>[y(X,{modelValue:o(a),"onUpdate:modelValue":t[1]||(t[1]=s=>V(a)?a.value=s:null)},null,8,["modelValue"])]),_:1},512)])}}});const le=F(Y,[["__scopeId","data-v-f0325f86"]]);export{le as _}; diff --git a/public/admin/assets/picker.597494a6.js b/public/admin/assets/picker.597494a6.js new file mode 100644 index 000000000..02c5d3399 --- /dev/null +++ b/public/admin/assets/picker.597494a6.js @@ -0,0 +1 @@ +import{P as I}from"./index.b940d6e3.js";import{E as T}from"./element-plus.4328d892.js";import{F as N,_ as B,a as M}from"./index.c38e1dd6.js";import{u as H,d as O,b as Z}from"./index.ed71ac09.js";import{_ as j}from"./index.f2c7f81b.js";import{D as q}from"./vuedraggable.0cb40d3a.js";import{d as G,r as i,a3 as J,e as S,w as K,D as $,n as Q,a4 as U,o as W,c as X,U as n,a9 as Y,L as p,a as s,Z as k,O as P,R as x,M as ee,H as le,_ as ae,V as oe,bf as te,be as se}from"./@vue.51d7f2d8.js";import{f as ie}from"./@vueuse.ec90c285.js";const ne=G({components:{Popup:I,Draggable:q,FileItem:N,Material:B,Preview:M},props:{modelValue:{type:[String,Array],default:()=>[]},type:{type:String,default:"image"},size:{type:String,default:"100px"},fileSize:{type:String,default:"100px"},limit:{type:Number,default:1},disabled:{type:Boolean,default:!1},hiddenUpload:{type:Boolean,default:!1},uploadClass:{type:String,default:""},excludeDomain:{type:Boolean,default:!1}},emits:["change","update:modelValue"],setup(e,{emit:o}){const h=i(),g=i(),_=i(""),w=i(!1),a=i([]),m=i([]),r=i(!0),c=i(-1),{disabled:y,limit:u,modelValue:C}=J(e),{getImageUrl:b}=H(),t=S(()=>{switch(e.type){case"image":return"\u56FE\u7247";case"video":return"\u89C6\u9891";default:return""}}),f=S(()=>e.limit-a.value.length>0),v=S(()=>r.value?u.value==-1?null:u.value-a.value.length:1),E=ie(()=>{const l=m.value.map(d=>e.excludeDomain?d.url:d.uri);r.value?a.value=[...a.value,...l]:a.value.splice(c.value,1,l.shift()),V()},1e3,!1),A=l=>{var d;y.value||(l>=0?(r.value=!1,c.value=l):r.value=!0,(d=h.value)==null||d.open())},F=l=>{m.value=l},V=()=>{const l=u.value!=1?a.value:a.value[0]||"";o("update:modelValue",l),o("change",l),z()},L=l=>{a.value.splice(l,1),V()},R=l=>{_.value=l,w.value=!0},z=()=>{Q(()=>{var l;e.hiddenUpload&&(a.value=[]),(l=g.value)==null||l.clearSelect()})};return K(C,l=>{a.value=Array.isArray(l)?l:l==""?[]:[l]},{immediate:!0}),$("limit",e.limit),$("hiddenUpload",e.hiddenUpload),{popupRef:h,materialRef:g,fileList:a,tipsText:t,handleConfirm:E,meterialLimit:v,showUpload:f,showPopup:A,selectChange:F,deleteImg:L,previewUrl:_,showPreview:w,handlePreview:R,handleClose:z,getImageUrl:b}}});const D=e=>(te("data-v-116a188b"),e=e(),se(),e),re={class:"material-select"},ue=["onClick"],de={class:"operation-btns text-xs text-center"},pe=D(()=>s("span",null,"\u4FEE\u6539",-1)),me=["onClick"],ce=D(()=>s("span",null,"\u6DFB\u52A0",-1)),fe={class:"material-wrap"};function ve(e,o,h,g,_,w){const a=U("file-item"),m=j,r=U("draggable"),c=Z,y=B,u=T,C=I,b=U("preview");return W(),X("div",re,[n(C,{ref:"popupRef",width:"830px","custom-class":"body-padding",title:`\u9009\u62E9${e.tipsText}`,onConfirm:e.handleConfirm,onClose:e.handleClose},Y({default:p(()=>[n(u,null,{default:p(()=>[s("div",fe,[n(y,{ref:"materialRef",type:e.type,"file-size":e.fileSize,limit:e.meterialLimit,onChange:e.selectChange},null,8,["type","file-size","limit","onChange"])])]),_:1})]),_:2},[e.hiddenUpload?void 0:{name:"trigger",fn:p(()=>[s("div",{class:"material-select__trigger clearfix",onClick:o[2]||(o[2]=k(()=>{},["stop"]))},[n(r,{class:"draggable",modelValue:e.fileList,"onUpdate:modelValue":o[0]||(o[0]=t=>e.fileList=t),animation:"300","item-key":"id"},{item:p(({element:t,index:f})=>[s("div",{class:P(["material-preview",{"is-disabled":e.disabled,"is-one":e.limit==1}]),onClick:v=>e.showPopup(f)},[n(m,{onClose:v=>e.deleteImg(f)},{default:p(()=>[n(a,{uri:e.excludeDomain?e.getImageUrl(t):t,"file-size":e.size,type:e.type},null,8,["uri","file-size","type"])]),_:2},1032,["onClose"]),s("div",de,[pe,x(" | "),s("span",{onClick:k(v=>e.handlePreview(t),["stop"])},"\u67E5\u770B",8,me)])],10,ue)]),_:1},8,["modelValue"]),ee(s("div",{class:P(["material-upload",{"is-disabled":e.disabled,"is-one":e.limit==1,[e.uploadClass]:!0}]),onClick:o[1]||(o[1]=t=>e.showPopup(-1))},[le(e.$slots,"upload",{},()=>[s("div",{class:"upload-btn",style:ae({width:e.size,height:e.size})},[n(c,{size:25,name:"el-icon-Plus"}),ce],4)],!0)],2),[[oe,e.showUpload]])])]),key:"0"}]),1032,["title","onConfirm","onClose"]),n(b,{modelValue:e.showPreview,"onUpdate:modelValue":o[3]||(o[3]=t=>e.showPreview=t),url:e.previewUrl,type:e.type},null,8,["modelValue","url","type"])])}const Ue=O(ne,[["render",ve],["__scopeId","data-v-116a188b"]]);export{Ue as _}; diff --git a/public/admin/assets/picker.c7d50072.js b/public/admin/assets/picker.c7d50072.js new file mode 100644 index 000000000..b1292bb24 --- /dev/null +++ b/public/admin/assets/picker.c7d50072.js @@ -0,0 +1 @@ +import{B as C,d as w,f as G}from"./element-plus.4328d892.js";import{d as F,b as H}from"./index.aa9bb752.js";import{d as v,r as A,o as p,c as _,a as E,T as g,a7 as O,O as D,S as B,u as o,R as $,U as y,e as b,w as x,L as h,K as S,k as V,Q as k,s as I,Z as L}from"./@vue.51d7f2d8.js";import{P as M}from"./index.fa872673.js";var u=(l=>(l.SHOP_PAGES="shop",l.CUSTOM_LINK="custom",l))(u||{});const N={class:"shop-pages"},U={class:"link-list flex flex-wrap"},q=["onClick"],K=v({__name:"shop-pages",props:{modelValue:{type:Object,default:()=>({})}},emits:["update:modelValue"],setup(l,{emit:m}){const d=A([{path:"/pages/index/index",name:"\u5546\u57CE\u9996\u9875",type:u.SHOP_PAGES},{path:"/pages/news/news",name:"\u6587\u7AE0\u8D44\u8BAF",type:u.SHOP_PAGES},{path:"/pages/user/user",name:"\u4E2A\u4EBA\u4E2D\u5FC3",type:u.SHOP_PAGES},{path:"/pages/collection/collection",name:"\u6211\u7684\u6536\u85CF",type:u.SHOP_PAGES},{path:"/pages/customer_service/customer_service",name:"\u8054\u7CFB\u5BA2\u670D",type:u.SHOP_PAGES},{path:"/pages/user_set/user_set",name:"\u4E2A\u4EBA\u8BBE\u7F6E",type:u.SHOP_PAGES},{path:"/pages/as_us/as_us",name:"\u5173\u4E8E\u6211\u4EEC",type:u.SHOP_PAGES},{path:"/pages/user_data/user_data",name:"\u4E2A\u4EBA\u8D44\u6599",type:u.SHOP_PAGES},{path:"/pages/agreement/agreement",name:"\u9690\u79C1\u653F\u7B56",query:{type:"privacy"},type:u.SHOP_PAGES},{path:"/pages/agreement/agreement",name:"\u670D\u52A1\u534F\u8BAE",query:{type:"service"},type:u.SHOP_PAGES},{path:"/pages/search/search",name:"\u641C\u7D22",type:u.SHOP_PAGES},{path:"/packages/pages/user_wallet/user_wallet",name:"\u6211\u7684\u94B1\u5305",type:u.SHOP_PAGES}]),r=a=>{m("update:modelValue",a)};return(a,n)=>(p(),_("div",N,[E("div",U,[(p(!0),_(g,null,O(o(d),(i,e)=>(p(),_("div",{class:D(["link-item border border-br px-5 py-[5px] rounded-[3px] cursor-pointer mr-[10px] mb-[10px]",{"border-primary text-primary":l.modelValue.path==i.path&&l.modelValue.name==i.name}]),key:e,onClick:t=>r(i)},B(i.name),11,q))),128))])]))}}),R={class:"custom-link mt-[30px]"},T={class:"flex flex-wrap items-center"},j={class:"ml-4 flex-1 min-w-[100px]"},z=E("div",{class:"form-tips"}," \u8BF7\u586B\u5199\u5B8C\u6574\u7684\u5E26\u6709\u201Chttps://\u201D\u6216\u201Chttp://\u201D\u7684\u94FE\u63A5\u5730\u5740\uFF0C\u94FE\u63A5\u7684\u57DF\u540D\u5FC5\u987B\u5728\u5FAE\u4FE1\u516C\u4F17\u5E73\u53F0\u8BBE\u7F6E\u4E1A\u52A1\u57DF\u540D ",-1),Q=v({__name:"custom-link",props:{modelValue:{type:Object,default:()=>({})}},emits:["update:modelValue"],setup(l,{emit:m}){const d=r=>{m("update:modelValue",{path:"/pages/webview/webview",query:{url:r},type:u.CUSTOM_LINK})};return(r,a)=>{var i;const n=C;return p(),_("div",R,[E("div",T,[$(" \u81EA\u5B9A\u4E49\u94FE\u63A5 "),E("div",j,[y(n,{"model-value":(i=l.modelValue.query)==null?void 0:i.url,placeholder:"\u8BF7\u8F93\u5165\u94FE\u63A5\u5730\u5740",onInput:d},null,8,["model-value"])])]),z])}}}),Z={class:"link flex"},J={class:"flex-1 pl-4"},W=v({__name:"index",props:{modelValue:{type:Object,required:!0}},emits:["update:modelValue"],setup(l,{emit:m}){const d=l,r=A([{name:"\u5546\u57CE\u9875\u9762",type:u.SHOP_PAGES,link:{}},{name:"\u81EA\u5B9A\u4E49\u94FE\u63A5",type:u.CUSTOM_LINK,link:{}}]),a=b({get(){var e;return(e=r.value.find(t=>t.type==n.value))==null?void 0:e.link},set(e){r.value.forEach(t=>{t.type==n.value&&(t.link=e)})}}),n=A(u.SHOP_PAGES),i=e=>{n.value=e};return x(a,e=>{!e.type||m("update:modelValue",e)}),x(()=>d.modelValue,e=>{n.value=e.type,a.value=e},{immediate:!0}),(e,t)=>{const c=w,P=G;return p(),_("div",Z,[y(P,{"default-active":o(n),class:"w-[160px] min-h-[350px] link-menu",onSelect:i},{default:h(()=>[(p(!0),_(g,null,O(o(r),(s,f)=>(p(),S(c,{index:s.type,key:f},{default:h(()=>[E("span",null,B(s.name),1)]),_:2},1032,["index"]))),128))]),_:1},8,["default-active"]),E("div",J,[o(u).SHOP_PAGES==o(n)?(p(),S(K,{key:0,modelValue:o(a),"onUpdate:modelValue":t[0]||(t[0]=s=>V(a)?a.value=s:null)},null,8,["modelValue"])):k("",!0),o(u).CUSTOM_LINK==o(n)?(p(),S(Q,{key:1,modelValue:o(a),"onUpdate:modelValue":t[1]||(t[1]=s=>V(a)?a.value=s:null)},null,8,["modelValue"])):k("",!0)])])}}});const X=F(W,[["__scopeId","data-v-9b4140c5"]]),Y=v({__name:"picker",props:{modelValue:{type:Object},disabled:{type:Boolean,default:!1}},emits:["update:modelValue"],setup(l,{emit:m}){const d=l,r=I(),a=A({path:"",type:u.SHOP_PAGES}),n=()=>{m("update:modelValue",a.value)},i=b(()=>{var e,t,c;switch((e=d.modelValue)==null?void 0:e.type){case u.SHOP_PAGES:return d.modelValue.name;case u.CUSTOM_LINK:return(t=d.modelValue.query)==null?void 0:t.url;default:return(c=d.modelValue)==null?void 0:c.name}});return x(()=>d.modelValue,e=>{e!=null&&e.type&&(a.value=e)},{immediate:!0}),(e,t)=>{const c=H,P=C;return p(),_("div",{class:"link-picker flex-1",onClick:t[2]||(t[2]=s=>{var f;return!l.disabled&&((f=o(r))==null?void 0:f.open())})},[y(P,{"model-value":o(i),placeholder:"\u8BF7\u9009\u62E9\u94FE\u63A5",readonly:"",disabled:l.disabled},{suffix:h(()=>{var s;return[(s=l.modelValue)!=null&&s.path?(p(),S(c,{key:1,name:"el-icon-Close",onClick:t[0]||(t[0]=L(f=>!l.disabled&&m("update:modelValue",{}),["stop"]))})):(p(),S(c,{key:0,name:"el-icon-ArrowRight"}))]}),_:1},8,["model-value","disabled"]),y(M,{ref_key:"popupRef",ref:r,width:"700px",title:"\u94FE\u63A5\u9009\u62E9",onConfirm:n},{default:h(()=>[y(X,{modelValue:o(a),"onUpdate:modelValue":t[1]||(t[1]=s=>V(a)?a.value=s:null)},null,8,["modelValue"])]),_:1},512)])}}});const le=F(Y,[["__scopeId","data-v-f0325f86"]]);export{le as _}; diff --git a/public/admin/assets/picker.d415e27a.js b/public/admin/assets/picker.d415e27a.js new file mode 100644 index 000000000..ed2fa5860 --- /dev/null +++ b/public/admin/assets/picker.d415e27a.js @@ -0,0 +1 @@ +import{B as C,d as w,f as G}from"./element-plus.4328d892.js";import{d as F,b as H}from"./index.37f7aea6.js";import{d as v,r as A,o as p,c as _,a as E,T as g,a7 as O,O as D,S as B,u as o,R as $,U as y,e as b,w as x,L as h,K as S,k as V,Q as k,s as I,Z as L}from"./@vue.51d7f2d8.js";import{P as M}from"./index.5759a1a6.js";var u=(l=>(l.SHOP_PAGES="shop",l.CUSTOM_LINK="custom",l))(u||{});const N={class:"shop-pages"},U={class:"link-list flex flex-wrap"},q=["onClick"],K=v({__name:"shop-pages",props:{modelValue:{type:Object,default:()=>({})}},emits:["update:modelValue"],setup(l,{emit:m}){const d=A([{path:"/pages/index/index",name:"\u5546\u57CE\u9996\u9875",type:u.SHOP_PAGES},{path:"/pages/news/news",name:"\u6587\u7AE0\u8D44\u8BAF",type:u.SHOP_PAGES},{path:"/pages/user/user",name:"\u4E2A\u4EBA\u4E2D\u5FC3",type:u.SHOP_PAGES},{path:"/pages/collection/collection",name:"\u6211\u7684\u6536\u85CF",type:u.SHOP_PAGES},{path:"/pages/customer_service/customer_service",name:"\u8054\u7CFB\u5BA2\u670D",type:u.SHOP_PAGES},{path:"/pages/user_set/user_set",name:"\u4E2A\u4EBA\u8BBE\u7F6E",type:u.SHOP_PAGES},{path:"/pages/as_us/as_us",name:"\u5173\u4E8E\u6211\u4EEC",type:u.SHOP_PAGES},{path:"/pages/user_data/user_data",name:"\u4E2A\u4EBA\u8D44\u6599",type:u.SHOP_PAGES},{path:"/pages/agreement/agreement",name:"\u9690\u79C1\u653F\u7B56",query:{type:"privacy"},type:u.SHOP_PAGES},{path:"/pages/agreement/agreement",name:"\u670D\u52A1\u534F\u8BAE",query:{type:"service"},type:u.SHOP_PAGES},{path:"/pages/search/search",name:"\u641C\u7D22",type:u.SHOP_PAGES},{path:"/packages/pages/user_wallet/user_wallet",name:"\u6211\u7684\u94B1\u5305",type:u.SHOP_PAGES}]),r=a=>{m("update:modelValue",a)};return(a,n)=>(p(),_("div",N,[E("div",U,[(p(!0),_(g,null,O(o(d),(i,e)=>(p(),_("div",{class:D(["link-item border border-br px-5 py-[5px] rounded-[3px] cursor-pointer mr-[10px] mb-[10px]",{"border-primary text-primary":l.modelValue.path==i.path&&l.modelValue.name==i.name}]),key:e,onClick:t=>r(i)},B(i.name),11,q))),128))])]))}}),R={class:"custom-link mt-[30px]"},T={class:"flex flex-wrap items-center"},j={class:"ml-4 flex-1 min-w-[100px]"},z=E("div",{class:"form-tips"}," \u8BF7\u586B\u5199\u5B8C\u6574\u7684\u5E26\u6709\u201Chttps://\u201D\u6216\u201Chttp://\u201D\u7684\u94FE\u63A5\u5730\u5740\uFF0C\u94FE\u63A5\u7684\u57DF\u540D\u5FC5\u987B\u5728\u5FAE\u4FE1\u516C\u4F17\u5E73\u53F0\u8BBE\u7F6E\u4E1A\u52A1\u57DF\u540D ",-1),Q=v({__name:"custom-link",props:{modelValue:{type:Object,default:()=>({})}},emits:["update:modelValue"],setup(l,{emit:m}){const d=r=>{m("update:modelValue",{path:"/pages/webview/webview",query:{url:r},type:u.CUSTOM_LINK})};return(r,a)=>{var i;const n=C;return p(),_("div",R,[E("div",T,[$(" \u81EA\u5B9A\u4E49\u94FE\u63A5 "),E("div",j,[y(n,{"model-value":(i=l.modelValue.query)==null?void 0:i.url,placeholder:"\u8BF7\u8F93\u5165\u94FE\u63A5\u5730\u5740",onInput:d},null,8,["model-value"])])]),z])}}}),Z={class:"link flex"},J={class:"flex-1 pl-4"},W=v({__name:"index",props:{modelValue:{type:Object,required:!0}},emits:["update:modelValue"],setup(l,{emit:m}){const d=l,r=A([{name:"\u5546\u57CE\u9875\u9762",type:u.SHOP_PAGES,link:{}},{name:"\u81EA\u5B9A\u4E49\u94FE\u63A5",type:u.CUSTOM_LINK,link:{}}]),a=b({get(){var e;return(e=r.value.find(t=>t.type==n.value))==null?void 0:e.link},set(e){r.value.forEach(t=>{t.type==n.value&&(t.link=e)})}}),n=A(u.SHOP_PAGES),i=e=>{n.value=e};return x(a,e=>{!e.type||m("update:modelValue",e)}),x(()=>d.modelValue,e=>{n.value=e.type,a.value=e},{immediate:!0}),(e,t)=>{const c=w,P=G;return p(),_("div",Z,[y(P,{"default-active":o(n),class:"w-[160px] min-h-[350px] link-menu",onSelect:i},{default:h(()=>[(p(!0),_(g,null,O(o(r),(s,f)=>(p(),S(c,{index:s.type,key:f},{default:h(()=>[E("span",null,B(s.name),1)]),_:2},1032,["index"]))),128))]),_:1},8,["default-active"]),E("div",J,[o(u).SHOP_PAGES==o(n)?(p(),S(K,{key:0,modelValue:o(a),"onUpdate:modelValue":t[0]||(t[0]=s=>V(a)?a.value=s:null)},null,8,["modelValue"])):k("",!0),o(u).CUSTOM_LINK==o(n)?(p(),S(Q,{key:1,modelValue:o(a),"onUpdate:modelValue":t[1]||(t[1]=s=>V(a)?a.value=s:null)},null,8,["modelValue"])):k("",!0)])])}}});const X=F(W,[["__scopeId","data-v-9b4140c5"]]),Y=v({__name:"picker",props:{modelValue:{type:Object},disabled:{type:Boolean,default:!1}},emits:["update:modelValue"],setup(l,{emit:m}){const d=l,r=I(),a=A({path:"",type:u.SHOP_PAGES}),n=()=>{m("update:modelValue",a.value)},i=b(()=>{var e,t,c;switch((e=d.modelValue)==null?void 0:e.type){case u.SHOP_PAGES:return d.modelValue.name;case u.CUSTOM_LINK:return(t=d.modelValue.query)==null?void 0:t.url;default:return(c=d.modelValue)==null?void 0:c.name}});return x(()=>d.modelValue,e=>{e!=null&&e.type&&(a.value=e)},{immediate:!0}),(e,t)=>{const c=H,P=C;return p(),_("div",{class:"link-picker flex-1",onClick:t[2]||(t[2]=s=>{var f;return!l.disabled&&((f=o(r))==null?void 0:f.open())})},[y(P,{"model-value":o(i),placeholder:"\u8BF7\u9009\u62E9\u94FE\u63A5",readonly:"",disabled:l.disabled},{suffix:h(()=>{var s;return[(s=l.modelValue)!=null&&s.path?(p(),S(c,{key:1,name:"el-icon-Close",onClick:t[0]||(t[0]=L(f=>!l.disabled&&m("update:modelValue",{}),["stop"]))})):(p(),S(c,{key:0,name:"el-icon-ArrowRight"}))]}),_:1},8,["model-value","disabled"]),y(M,{ref_key:"popupRef",ref:r,width:"700px",title:"\u94FE\u63A5\u9009\u62E9",onConfirm:n},{default:h(()=>[y(X,{modelValue:o(a),"onUpdate:modelValue":t[1]||(t[1]=s=>V(a)?a.value=s:null)},null,8,["modelValue"])]),_:1},512)])}}});const le=F(Y,[["__scopeId","data-v-f0325f86"]]);export{le as _}; diff --git a/public/admin/assets/picker.vue_vue_type_script_setup_true_lang.150460d1.js b/public/admin/assets/picker.vue_vue_type_script_setup_true_lang.150460d1.js new file mode 100644 index 000000000..b15222954 --- /dev/null +++ b/public/admin/assets/picker.vue_vue_type_script_setup_true_lang.150460d1.js @@ -0,0 +1 @@ +import{Y as N,B as $,w as L,E as M,a as W}from"./element-plus.4328d892.js";import{q as I,s as T,b as z}from"./index.ed71ac09.js";import{d as R,r as U,s as j,$ as D,e as O,w as P,j as q,o as i,c as r,U as n,L as a,u as b,K,T as _,R as Y,a as u,Z as h,a7 as k,O as Z,S as A,n as E}from"./@vue.51d7f2d8.js";import{c as G}from"./@vueuse.ec90c285.js";const H={class:"icon-select"},J={class:"flex justify-between"},Q=u("div",{class:"mb-3"},"\u8BF7\u9009\u62E9\u56FE\u6807",-1),X=["onClick"],ee={class:"h-[280px]"},oe={class:"flex flex-wrap"},se={key:0,class:"flex items-center"},re=R({__name:"picker",props:{modelValue:{default:""},disabled:{type:Boolean,default:!1}},emits:["update:modelValue","change"],setup(te,{emit:p}){const v=U(0),V=[{name:"element\u56FE\u6807",icons:I()},{name:"\u672C\u5730\u56FE\u6807",icons:T()}],d=j(),e=D({inputValue:"",popoverVisible:!1,popoverWidth:0,mouseoverSelect:!1,inputFocus:!1}),w=()=>{e.inputFocus=e.popoverVisible=!0},C=()=>{e.inputFocus=!1,e.popoverVisible=e.mouseoverSelect},F=o=>{e.mouseoverSelect=e.popoverVisible=!1,p("update:modelValue",o),p("change",o)},y=()=>{p("update:modelValue",""),p("change","")},g=O(()=>{var l,c;const o=(c=(l=V[v.value])==null?void 0:l.icons)!=null?c:[];if(!e.inputValue)return o;const s=e.inputValue.toLowerCase();return o.filter(m=>{if(m.toLowerCase().indexOf(s)!==-1)return m})}),B=()=>{E(()=>{var s;const o=(s=d.value)==null?void 0:s.$el.offsetWidth;e.popoverWidth=o<300?300:o})};return G(document.body,"click",()=>{e.popoverVisible=!!(e.inputFocus||e.mouseoverSelect)}),P(()=>e.popoverVisible,async o=>{var s,l;await E(),o?(s=d.value)==null||s.focus():(l=d.value)==null||l.blur()}),q(()=>{B()}),(o,s)=>{const l=z,c=L,m=M,S=W,x=N;return i(),r("div",H,[n(x,{trigger:"contextmenu",visible:e.popoverVisible,"onUpdate:visible":s[3]||(s[3]=t=>e.popoverVisible=t),width:e.popoverWidth},{reference:a(()=>[n(b($),{ref_key:"inputRef",ref:d,modelValue:e.inputValue,"onUpdate:modelValue":s[2]||(s[2]=t=>e.inputValue=t),modelModifiers:{trim:!0},placeholder:"\u641C\u7D22\u56FE\u6807",autofocus:!1,disabled:o.disabled,onFocus:w,onBlur:C,clearable:""},{prepend:a(()=>[o.modelValue?(i(),r("div",se,[n(S,{class:"flex-1 w-20",content:o.modelValue,placement:"top"},{default:a(()=>[(i(),K(l,{class:"mr-1",key:o.modelValue,name:o.modelValue,size:16},null,8,["name"]))]),_:1},8,["content"])])):(i(),r(_,{key:1},[Y("\u65E0")],64))]),append:a(()=>[n(c,null,{default:a(()=>[n(l,{name:"el-icon-Close",size:18,onClick:y})]),_:1})]),_:1},8,["modelValue","disabled"])]),default:a(()=>[u("div",{onMouseover:s[0]||(s[0]=h(t=>e.mouseoverSelect=!0,["stop"])),onMouseout:s[1]||(s[1]=h(t=>e.mouseoverSelect=!1,["stop"]))},[u("div",null,[u("div",J,[Q,u("div",null,[(i(),r(_,null,k(V,(t,f)=>u("span",{key:f,class:Z(["cursor-pointer text-sm ml-2",{"text-primary":f==b(v)}]),onClick:le=>v.value=f},A(t.name),11,X)),64))])]),u("div",ee,[n(m,null,{default:a(()=>[u("div",oe,[(i(!0),r(_,null,k(g.value,t=>(i(),r("div",{key:t,class:"m-1"},[n(c,{onClick:f=>F(t)},{default:a(()=>[n(l,{name:t,size:18},null,8,["name"])]),_:2},1032,["onClick"])]))),128))])]),_:1})])])],32)]),_:1},8,["visible","width"])])}}});export{re as _}; diff --git a/public/admin/assets/picker.vue_vue_type_script_setup_true_lang.8519155b.js b/public/admin/assets/picker.vue_vue_type_script_setup_true_lang.8519155b.js new file mode 100644 index 000000000..04e437081 --- /dev/null +++ b/public/admin/assets/picker.vue_vue_type_script_setup_true_lang.8519155b.js @@ -0,0 +1 @@ +import{Y as N,B as $,w as L,E as M,a as W}from"./element-plus.4328d892.js";import{q as I,s as T,b as z}from"./index.37f7aea6.js";import{d as R,r as U,s as j,$ as D,e as O,w as P,j as q,o as i,c as r,U as n,L as a,u as b,K,T as _,R as Y,a as u,Z as h,a7 as k,O as Z,S as A,n as E}from"./@vue.51d7f2d8.js";import{c as G}from"./@vueuse.ec90c285.js";const H={class:"icon-select"},J={class:"flex justify-between"},Q=u("div",{class:"mb-3"},"\u8BF7\u9009\u62E9\u56FE\u6807",-1),X=["onClick"],ee={class:"h-[280px]"},oe={class:"flex flex-wrap"},se={key:0,class:"flex items-center"},re=R({__name:"picker",props:{modelValue:{default:""},disabled:{type:Boolean,default:!1}},emits:["update:modelValue","change"],setup(te,{emit:p}){const v=U(0),V=[{name:"element\u56FE\u6807",icons:I()},{name:"\u672C\u5730\u56FE\u6807",icons:T()}],d=j(),e=D({inputValue:"",popoverVisible:!1,popoverWidth:0,mouseoverSelect:!1,inputFocus:!1}),w=()=>{e.inputFocus=e.popoverVisible=!0},C=()=>{e.inputFocus=!1,e.popoverVisible=e.mouseoverSelect},F=o=>{e.mouseoverSelect=e.popoverVisible=!1,p("update:modelValue",o),p("change",o)},y=()=>{p("update:modelValue",""),p("change","")},g=O(()=>{var l,c;const o=(c=(l=V[v.value])==null?void 0:l.icons)!=null?c:[];if(!e.inputValue)return o;const s=e.inputValue.toLowerCase();return o.filter(m=>{if(m.toLowerCase().indexOf(s)!==-1)return m})}),B=()=>{E(()=>{var s;const o=(s=d.value)==null?void 0:s.$el.offsetWidth;e.popoverWidth=o<300?300:o})};return G(document.body,"click",()=>{e.popoverVisible=!!(e.inputFocus||e.mouseoverSelect)}),P(()=>e.popoverVisible,async o=>{var s,l;await E(),o?(s=d.value)==null||s.focus():(l=d.value)==null||l.blur()}),q(()=>{B()}),(o,s)=>{const l=z,c=L,m=M,S=W,x=N;return i(),r("div",H,[n(x,{trigger:"contextmenu",visible:e.popoverVisible,"onUpdate:visible":s[3]||(s[3]=t=>e.popoverVisible=t),width:e.popoverWidth},{reference:a(()=>[n(b($),{ref_key:"inputRef",ref:d,modelValue:e.inputValue,"onUpdate:modelValue":s[2]||(s[2]=t=>e.inputValue=t),modelModifiers:{trim:!0},placeholder:"\u641C\u7D22\u56FE\u6807",autofocus:!1,disabled:o.disabled,onFocus:w,onBlur:C,clearable:""},{prepend:a(()=>[o.modelValue?(i(),r("div",se,[n(S,{class:"flex-1 w-20",content:o.modelValue,placement:"top"},{default:a(()=>[(i(),K(l,{class:"mr-1",key:o.modelValue,name:o.modelValue,size:16},null,8,["name"]))]),_:1},8,["content"])])):(i(),r(_,{key:1},[Y("\u65E0")],64))]),append:a(()=>[n(c,null,{default:a(()=>[n(l,{name:"el-icon-Close",size:18,onClick:y})]),_:1})]),_:1},8,["modelValue","disabled"])]),default:a(()=>[u("div",{onMouseover:s[0]||(s[0]=h(t=>e.mouseoverSelect=!0,["stop"])),onMouseout:s[1]||(s[1]=h(t=>e.mouseoverSelect=!1,["stop"]))},[u("div",null,[u("div",J,[Q,u("div",null,[(i(),r(_,null,k(V,(t,f)=>u("span",{key:f,class:Z(["cursor-pointer text-sm ml-2",{"text-primary":f==b(v)}]),onClick:le=>v.value=f},A(t.name),11,X)),64))])]),u("div",ee,[n(m,null,{default:a(()=>[u("div",oe,[(i(!0),r(_,null,k(g.value,t=>(i(),r("div",{key:t,class:"m-1"},[n(c,{onClick:f=>F(t)},{default:a(()=>[n(l,{name:t,size:18},null,8,["name"])]),_:2},1032,["onClick"])]))),128))])]),_:1})])])],32)]),_:1},8,["visible","width"])])}}});export{re as _}; diff --git a/public/admin/assets/picker.vue_vue_type_script_setup_true_lang.d458cc42.js b/public/admin/assets/picker.vue_vue_type_script_setup_true_lang.d458cc42.js new file mode 100644 index 000000000..e9e87f442 --- /dev/null +++ b/public/admin/assets/picker.vue_vue_type_script_setup_true_lang.d458cc42.js @@ -0,0 +1 @@ +import{Y as N,B as $,w as L,E as M,a as W}from"./element-plus.4328d892.js";import{q as I,s as T,b as z}from"./index.aa9bb752.js";import{d as R,r as U,s as j,$ as D,e as O,w as P,j as q,o as i,c as r,U as n,L as a,u as b,K,T as _,R as Y,a as u,Z as h,a7 as k,O as Z,S as A,n as E}from"./@vue.51d7f2d8.js";import{c as G}from"./@vueuse.ec90c285.js";const H={class:"icon-select"},J={class:"flex justify-between"},Q=u("div",{class:"mb-3"},"\u8BF7\u9009\u62E9\u56FE\u6807",-1),X=["onClick"],ee={class:"h-[280px]"},oe={class:"flex flex-wrap"},se={key:0,class:"flex items-center"},re=R({__name:"picker",props:{modelValue:{default:""},disabled:{type:Boolean,default:!1}},emits:["update:modelValue","change"],setup(te,{emit:p}){const v=U(0),V=[{name:"element\u56FE\u6807",icons:I()},{name:"\u672C\u5730\u56FE\u6807",icons:T()}],d=j(),e=D({inputValue:"",popoverVisible:!1,popoverWidth:0,mouseoverSelect:!1,inputFocus:!1}),w=()=>{e.inputFocus=e.popoverVisible=!0},C=()=>{e.inputFocus=!1,e.popoverVisible=e.mouseoverSelect},F=o=>{e.mouseoverSelect=e.popoverVisible=!1,p("update:modelValue",o),p("change",o)},y=()=>{p("update:modelValue",""),p("change","")},g=O(()=>{var l,c;const o=(c=(l=V[v.value])==null?void 0:l.icons)!=null?c:[];if(!e.inputValue)return o;const s=e.inputValue.toLowerCase();return o.filter(m=>{if(m.toLowerCase().indexOf(s)!==-1)return m})}),B=()=>{E(()=>{var s;const o=(s=d.value)==null?void 0:s.$el.offsetWidth;e.popoverWidth=o<300?300:o})};return G(document.body,"click",()=>{e.popoverVisible=!!(e.inputFocus||e.mouseoverSelect)}),P(()=>e.popoverVisible,async o=>{var s,l;await E(),o?(s=d.value)==null||s.focus():(l=d.value)==null||l.blur()}),q(()=>{B()}),(o,s)=>{const l=z,c=L,m=M,S=W,x=N;return i(),r("div",H,[n(x,{trigger:"contextmenu",visible:e.popoverVisible,"onUpdate:visible":s[3]||(s[3]=t=>e.popoverVisible=t),width:e.popoverWidth},{reference:a(()=>[n(b($),{ref_key:"inputRef",ref:d,modelValue:e.inputValue,"onUpdate:modelValue":s[2]||(s[2]=t=>e.inputValue=t),modelModifiers:{trim:!0},placeholder:"\u641C\u7D22\u56FE\u6807",autofocus:!1,disabled:o.disabled,onFocus:w,onBlur:C,clearable:""},{prepend:a(()=>[o.modelValue?(i(),r("div",se,[n(S,{class:"flex-1 w-20",content:o.modelValue,placement:"top"},{default:a(()=>[(i(),K(l,{class:"mr-1",key:o.modelValue,name:o.modelValue,size:16},null,8,["name"]))]),_:1},8,["content"])])):(i(),r(_,{key:1},[Y("\u65E0")],64))]),append:a(()=>[n(c,null,{default:a(()=>[n(l,{name:"el-icon-Close",size:18,onClick:y})]),_:1})]),_:1},8,["modelValue","disabled"])]),default:a(()=>[u("div",{onMouseover:s[0]||(s[0]=h(t=>e.mouseoverSelect=!0,["stop"])),onMouseout:s[1]||(s[1]=h(t=>e.mouseoverSelect=!1,["stop"]))},[u("div",null,[u("div",J,[Q,u("div",null,[(i(),r(_,null,k(V,(t,f)=>u("span",{key:f,class:Z(["cursor-pointer text-sm ml-2",{"text-primary":f==b(v)}]),onClick:le=>v.value=f},A(t.name),11,X)),64))])]),u("div",ee,[n(m,null,{default:a(()=>[u("div",oe,[(i(!0),r(_,null,k(g.value,t=>(i(),r("div",{key:t,class:"m-1"},[n(c,{onClick:f=>F(t)},{default:a(()=>[n(l,{name:t,size:18},null,8,["name"])]),_:2},1032,["onClick"])]))),128))])]),_:1})])])],32)]),_:1},8,["visible","width"])])}}});export{re as _}; diff --git a/public/admin/assets/plant.217b07c3.js b/public/admin/assets/plant.217b07c3.js new file mode 100644 index 000000000..9ddf4bb40 --- /dev/null +++ b/public/admin/assets/plant.217b07c3.js @@ -0,0 +1 @@ +import{B as D,C as U,a1 as w,M as A,N as B,G as z,H as x,a2 as v,D as c,I as k}from"./element-plus.4328d892.js";import{d as I,r as N,o as r,K as f,L as a,U as e,a as V,R as n,S as R,c as S,T as L,a7 as G,u as O}from"./@vue.51d7f2d8.js";import{d as T}from"./index.37f7aea6.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const j={class:"tit"},H={class:"time"},K=I({__name:"plant",props:{datas:{type:Object,defualt:function(){return{cultivated_area:"",planning:"",breeding_training:"",breeding_company:"",notes:"",breeding_type:"",breeding_time:"",mature_time:"",yield:"",estimated_income:"",farm_tools:"",ecological_farming:"",modernization:"",pre_price:"",method_sales:"",processing_storage:"",promote:"",transportation:"",expand_business_needs:"",demand:"",policy_subsidies:""}}},update_time:{type:String,defualt:""}},setup(l){const _=N(["\u81EA\u5DF1\u79CD","\u51FA\u79DF","\u4EE3\u79CD","\u79DF\u66F4\u591A\u5730\u6269\u5927\u79CD\u690D"]);return(p,u)=>{const m=D,d=U,o=w,E=A,g=B,i=z,s=x,y=v,F=c,C=k;return r(),f(C,{style:{"margin-top":"16px"}},{default:a(()=>[e(F,{ref:"elForm",disabled:!0,model:p.formData,size:"mini","label-width":"180px"},{default:a(()=>[V("div",j,[n(" \u79CD\u690D\u4FE1\u606F "),V("span",H,"\u66F4\u65B0\u4E8E:"+R(l.update_time),1)]),e(y,null,{default:a(()=>[e(o,{span:8},{default:a(()=>[e(d,{label:"\u571F\u5730\u603B\u9762\u79EF(\u4EA9)",prop:"cultivated_area"},{default:a(()=>[e(m,{modelValue:l.datas.cultivated_area,"onUpdate:modelValue":u[0]||(u[0]=t=>l.datas.cultivated_area=t),clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u571F\u5730\u89C4\u5212",prop:"cultivated_area"},{default:a(()=>[e(g,{disabled:p.isCheck,modelValue:l.datas.planning,"onUpdate:modelValue":u[1]||(u[1]=t=>l.datas.planning=t),clearable:"",style:{width:"100%"}},{default:a(()=>[(r(!0),S(L,null,G(O(_),(t,b)=>(r(),f(E,{key:b,label:t,value:b+""},null,8,["label","value"]))),128))]),_:1},8,["disabled","modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u6709\u65E0\u79CD\u690D\u57F9\u8BAD",prop:"breeding_training"},{default:a(()=>[e(s,{modelValue:l.datas.breeding_training,"onUpdate:modelValue":u[2]||(u[2]=t=>l.datas.breeding_training=t),size:"medium"},{default:a(()=>[e(i,{label:"1"},{default:a(()=>[n("\u6709")]),_:1}),e(i,{label:"0"},{default:a(()=>[n("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u6709\u65E0\u6CE8\u518C\u6210\u7ACB\u79CD\u690D\u516C\u53F8",prop:"planting_company"},{default:a(()=>[e(s,{modelValue:l.datas.planting_company,"onUpdate:modelValue":u[3]||(u[3]=t=>l.datas.planting_company=t),size:"medium"},{default:a(()=>[e(i,{label:"1"},{default:a(()=>[n("\u6709")]),_:1}),e(i,{label:"0"},{default:a(()=>[n("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u5907\u6CE8",prop:"notes"},{default:a(()=>[e(m,{modelValue:l.datas.notes,"onUpdate:modelValue":u[4]||(u[4]=t=>l.datas.notes=t),clearable:"",autosize:"",type:"textarea",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u79CD\u690D\u7C7B\u578B",prop:"breeding_type"},{default:a(()=>[e(m,{modelValue:l.datas.breeding_type,"onUpdate:modelValue":u[5]||(u[5]=t=>l.datas.breeding_type=t),clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u79CD\u690D\u9762\u79EF(\u4EA9)",prop:"area"},{default:a(()=>[e(m,{modelValue:l.datas.area,"onUpdate:modelValue":u[6]||(u[6]=t=>l.datas.area=t),clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u5F00\u59CB\u65F6\u95F4",prop:"breeding_time"},{default:a(()=>[e(m,{modelValue:l.datas.breeding_time,"onUpdate:modelValue":u[7]||(u[7]=t=>l.datas.breeding_time=t),clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u4E0A\u5E02\u65F6\u95F4",prop:"mature_time"},{default:a(()=>[e(m,{modelValue:l.datas.mature_time,"onUpdate:modelValue":u[8]||(u[8]=t=>l.datas.mature_time=t),clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u4EA7\u91CF(\u65A4)",prop:"yield"},{default:a(()=>[e(m,{modelValue:l.datas.yield,"onUpdate:modelValue":u[9]||(u[9]=t=>l.datas.yield=t),clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u9884\u8BA1\u6536\u76CA(\u5143)",prop:"estimated_income"},{default:a(()=>[e(m,{modelValue:l.datas.estimated_income,"onUpdate:modelValue":u[10]||(u[10]=t=>l.datas.estimated_income=t),clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u519C\u8D44\u519C\u5177\u4F7F\u7528\u60C5\u51B5","label-width":"180px",prop:"farm_tools"},{default:a(()=>[e(m,{modelValue:l.datas.farm_tools,"onUpdate:modelValue":u[11]||(u[11]=t=>l.datas.farm_tools=t),clearable:"",autosize:"",type:"textarea",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u662F\u5426\u751F\u6001\u79CD\u690D",prop:"ecological_farming"},{default:a(()=>[e(s,{modelValue:l.datas.ecological_farming,"onUpdate:modelValue":u[12]||(u[12]=t=>l.datas.ecological_farming=t),size:"medium"},{default:a(()=>[e(i,{label:"1"},{default:a(()=>[n("\u6709")]),_:1}),e(i,{label:"0"},{default:a(()=>[n("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u73B0\u4EE3\u5316\u7A0B\u5EA6(%)",prop:"modernization"},{default:a(()=>[e(m,{modelValue:l.datas.modernization,"onUpdate:modelValue":u[13]||(u[13]=t=>l.datas.modernization=t),clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u9884\u552E\u5356\u4EF7\u683C(\u5143/500g)",prop:"pre_price"},{default:a(()=>[e(m,{modelValue:l.datas.pre_price,"onUpdate:modelValue":u[14]||(u[14]=t=>l.datas.pre_price=t),clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u9500\u552E\u65B9\u5F0F",prop:"method_sales"},{default:a(()=>[e(s,{modelValue:l.datas.method_sales,"onUpdate:modelValue":u[15]||(u[15]=t=>l.datas.method_sales=t),size:"medium"},{default:a(()=>[e(i,{label:"1"},{default:a(()=>[n("\u6709")]),_:1}),e(i,{label:"0"},{default:a(()=>[n("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u6709\u65E0\u52A0\u5DE5\u4ED3\u50A8",prop:"processing_storage"},{default:a(()=>[e(s,{modelValue:l.datas.processing_storage,"onUpdate:modelValue":u[16]||(u[16]=t=>l.datas.processing_storage=t),size:"medium"},{default:a(()=>[e(i,{label:"1"},{default:a(()=>[n("\u6709")]),_:1}),e(i,{label:"0"},{default:a(()=>[n("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u6709\u65E0\u5BA3\u4F20\u63A8\u5E7F",prop:"promote"},{default:a(()=>[e(s,{modelValue:l.datas.promote,"onUpdate:modelValue":u[17]||(u[17]=t=>l.datas.promote=t),size:"medium"},{default:a(()=>[e(i,{label:"1"},{default:a(()=>[n("\u6709")]),_:1}),e(i,{label:"0"},{default:a(()=>[n("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u6709\u65E0\u8FD0\u8F93",prop:"transportation"},{default:a(()=>[e(s,{modelValue:l.datas.transportation,"onUpdate:modelValue":u[18]||(u[18]=t=>l.datas.transportation=t),size:"medium"},{default:a(()=>[e(i,{label:"1"},{default:a(()=>[n("\u6709")]),_:1}),e(i,{label:"0"},{default:a(()=>[n("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u662F\u5426\u6709\u6269\u5927\u7ECF\u8425\u9700\u6C42",prop:"expand_business_needs"},{default:a(()=>[e(s,{modelValue:l.datas.expand_business_needs,"onUpdate:modelValue":u[19]||(u[19]=t=>l.datas.expand_business_needs=t),size:"medium"},{default:a(()=>[e(i,{label:"1"},{default:a(()=>[n("\u6709")]),_:1}),e(i,{label:"0"},{default:a(()=>[n("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u9700\u6C42\u63CF\u8FF0",prop:"demand"},{default:a(()=>[e(m,{modelValue:l.datas.demand,"onUpdate:modelValue":u[20]||(u[20]=t=>l.datas.demand=t),clearable:"",autosize:"",type:"textarea",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u653F\u7B56\u8865\u52A9",prop:"policy_subsidies"},{default:a(()=>[e(m,{modelValue:l.datas.policy_subsidies,"onUpdate:modelValue":u[21]||(u[21]=t=>l.datas.policy_subsidies=t),clearable:"",autosize:"",type:"textarea",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1})]),_:1})]),_:1},8,["model"])]),_:1})}}});const Ue=T(K,[["__scopeId","data-v-25eb6ea0"]]);export{Ue as default}; diff --git a/public/admin/assets/plant.239e6b5f.js b/public/admin/assets/plant.239e6b5f.js new file mode 100644 index 000000000..943bcac43 --- /dev/null +++ b/public/admin/assets/plant.239e6b5f.js @@ -0,0 +1 @@ +import{B as D,C as U,a1 as w,M as A,N as B,G as z,H as x,a2 as v,D as c,I as k}from"./element-plus.4328d892.js";import{d as I,r as N,o as r,K as f,L as a,U as e,a as V,R as n,S as R,c as S,T as L,a7 as G,u as O}from"./@vue.51d7f2d8.js";import{d as T}from"./index.aa9bb752.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const j={class:"tit"},H={class:"time"},K=I({__name:"plant",props:{datas:{type:Object,defualt:function(){return{cultivated_area:"",planning:"",breeding_training:"",breeding_company:"",notes:"",breeding_type:"",breeding_time:"",mature_time:"",yield:"",estimated_income:"",farm_tools:"",ecological_farming:"",modernization:"",pre_price:"",method_sales:"",processing_storage:"",promote:"",transportation:"",expand_business_needs:"",demand:"",policy_subsidies:""}}},update_time:{type:String,defualt:""}},setup(l){const _=N(["\u81EA\u5DF1\u79CD","\u51FA\u79DF","\u4EE3\u79CD","\u79DF\u66F4\u591A\u5730\u6269\u5927\u79CD\u690D"]);return(p,u)=>{const m=D,d=U,o=w,E=A,g=B,i=z,s=x,y=v,F=c,C=k;return r(),f(C,{style:{"margin-top":"16px"}},{default:a(()=>[e(F,{ref:"elForm",disabled:!0,model:p.formData,size:"mini","label-width":"180px"},{default:a(()=>[V("div",j,[n(" \u79CD\u690D\u4FE1\u606F "),V("span",H,"\u66F4\u65B0\u4E8E:"+R(l.update_time),1)]),e(y,null,{default:a(()=>[e(o,{span:8},{default:a(()=>[e(d,{label:"\u571F\u5730\u603B\u9762\u79EF(\u4EA9)",prop:"cultivated_area"},{default:a(()=>[e(m,{modelValue:l.datas.cultivated_area,"onUpdate:modelValue":u[0]||(u[0]=t=>l.datas.cultivated_area=t),clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u571F\u5730\u89C4\u5212",prop:"cultivated_area"},{default:a(()=>[e(g,{disabled:p.isCheck,modelValue:l.datas.planning,"onUpdate:modelValue":u[1]||(u[1]=t=>l.datas.planning=t),clearable:"",style:{width:"100%"}},{default:a(()=>[(r(!0),S(L,null,G(O(_),(t,b)=>(r(),f(E,{key:b,label:t,value:b+""},null,8,["label","value"]))),128))]),_:1},8,["disabled","modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u6709\u65E0\u79CD\u690D\u57F9\u8BAD",prop:"breeding_training"},{default:a(()=>[e(s,{modelValue:l.datas.breeding_training,"onUpdate:modelValue":u[2]||(u[2]=t=>l.datas.breeding_training=t),size:"medium"},{default:a(()=>[e(i,{label:"1"},{default:a(()=>[n("\u6709")]),_:1}),e(i,{label:"0"},{default:a(()=>[n("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u6709\u65E0\u6CE8\u518C\u6210\u7ACB\u79CD\u690D\u516C\u53F8",prop:"planting_company"},{default:a(()=>[e(s,{modelValue:l.datas.planting_company,"onUpdate:modelValue":u[3]||(u[3]=t=>l.datas.planting_company=t),size:"medium"},{default:a(()=>[e(i,{label:"1"},{default:a(()=>[n("\u6709")]),_:1}),e(i,{label:"0"},{default:a(()=>[n("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u5907\u6CE8",prop:"notes"},{default:a(()=>[e(m,{modelValue:l.datas.notes,"onUpdate:modelValue":u[4]||(u[4]=t=>l.datas.notes=t),clearable:"",autosize:"",type:"textarea",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u79CD\u690D\u7C7B\u578B",prop:"breeding_type"},{default:a(()=>[e(m,{modelValue:l.datas.breeding_type,"onUpdate:modelValue":u[5]||(u[5]=t=>l.datas.breeding_type=t),clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u79CD\u690D\u9762\u79EF(\u4EA9)",prop:"area"},{default:a(()=>[e(m,{modelValue:l.datas.area,"onUpdate:modelValue":u[6]||(u[6]=t=>l.datas.area=t),clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u5F00\u59CB\u65F6\u95F4",prop:"breeding_time"},{default:a(()=>[e(m,{modelValue:l.datas.breeding_time,"onUpdate:modelValue":u[7]||(u[7]=t=>l.datas.breeding_time=t),clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u4E0A\u5E02\u65F6\u95F4",prop:"mature_time"},{default:a(()=>[e(m,{modelValue:l.datas.mature_time,"onUpdate:modelValue":u[8]||(u[8]=t=>l.datas.mature_time=t),clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u4EA7\u91CF(\u65A4)",prop:"yield"},{default:a(()=>[e(m,{modelValue:l.datas.yield,"onUpdate:modelValue":u[9]||(u[9]=t=>l.datas.yield=t),clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u9884\u8BA1\u6536\u76CA(\u5143)",prop:"estimated_income"},{default:a(()=>[e(m,{modelValue:l.datas.estimated_income,"onUpdate:modelValue":u[10]||(u[10]=t=>l.datas.estimated_income=t),clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u519C\u8D44\u519C\u5177\u4F7F\u7528\u60C5\u51B5","label-width":"180px",prop:"farm_tools"},{default:a(()=>[e(m,{modelValue:l.datas.farm_tools,"onUpdate:modelValue":u[11]||(u[11]=t=>l.datas.farm_tools=t),clearable:"",autosize:"",type:"textarea",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u662F\u5426\u751F\u6001\u79CD\u690D",prop:"ecological_farming"},{default:a(()=>[e(s,{modelValue:l.datas.ecological_farming,"onUpdate:modelValue":u[12]||(u[12]=t=>l.datas.ecological_farming=t),size:"medium"},{default:a(()=>[e(i,{label:"1"},{default:a(()=>[n("\u6709")]),_:1}),e(i,{label:"0"},{default:a(()=>[n("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u73B0\u4EE3\u5316\u7A0B\u5EA6(%)",prop:"modernization"},{default:a(()=>[e(m,{modelValue:l.datas.modernization,"onUpdate:modelValue":u[13]||(u[13]=t=>l.datas.modernization=t),clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u9884\u552E\u5356\u4EF7\u683C(\u5143/500g)",prop:"pre_price"},{default:a(()=>[e(m,{modelValue:l.datas.pre_price,"onUpdate:modelValue":u[14]||(u[14]=t=>l.datas.pre_price=t),clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u9500\u552E\u65B9\u5F0F",prop:"method_sales"},{default:a(()=>[e(s,{modelValue:l.datas.method_sales,"onUpdate:modelValue":u[15]||(u[15]=t=>l.datas.method_sales=t),size:"medium"},{default:a(()=>[e(i,{label:"1"},{default:a(()=>[n("\u6709")]),_:1}),e(i,{label:"0"},{default:a(()=>[n("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u6709\u65E0\u52A0\u5DE5\u4ED3\u50A8",prop:"processing_storage"},{default:a(()=>[e(s,{modelValue:l.datas.processing_storage,"onUpdate:modelValue":u[16]||(u[16]=t=>l.datas.processing_storage=t),size:"medium"},{default:a(()=>[e(i,{label:"1"},{default:a(()=>[n("\u6709")]),_:1}),e(i,{label:"0"},{default:a(()=>[n("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u6709\u65E0\u5BA3\u4F20\u63A8\u5E7F",prop:"promote"},{default:a(()=>[e(s,{modelValue:l.datas.promote,"onUpdate:modelValue":u[17]||(u[17]=t=>l.datas.promote=t),size:"medium"},{default:a(()=>[e(i,{label:"1"},{default:a(()=>[n("\u6709")]),_:1}),e(i,{label:"0"},{default:a(()=>[n("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u6709\u65E0\u8FD0\u8F93",prop:"transportation"},{default:a(()=>[e(s,{modelValue:l.datas.transportation,"onUpdate:modelValue":u[18]||(u[18]=t=>l.datas.transportation=t),size:"medium"},{default:a(()=>[e(i,{label:"1"},{default:a(()=>[n("\u6709")]),_:1}),e(i,{label:"0"},{default:a(()=>[n("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u662F\u5426\u6709\u6269\u5927\u7ECF\u8425\u9700\u6C42",prop:"expand_business_needs"},{default:a(()=>[e(s,{modelValue:l.datas.expand_business_needs,"onUpdate:modelValue":u[19]||(u[19]=t=>l.datas.expand_business_needs=t),size:"medium"},{default:a(()=>[e(i,{label:"1"},{default:a(()=>[n("\u6709")]),_:1}),e(i,{label:"0"},{default:a(()=>[n("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u9700\u6C42\u63CF\u8FF0",prop:"demand"},{default:a(()=>[e(m,{modelValue:l.datas.demand,"onUpdate:modelValue":u[20]||(u[20]=t=>l.datas.demand=t),clearable:"",autosize:"",type:"textarea",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u653F\u7B56\u8865\u52A9",prop:"policy_subsidies"},{default:a(()=>[e(m,{modelValue:l.datas.policy_subsidies,"onUpdate:modelValue":u[21]||(u[21]=t=>l.datas.policy_subsidies=t),clearable:"",autosize:"",type:"textarea",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1})]),_:1})]),_:1},8,["model"])]),_:1})}}});const Ue=T(K,[["__scopeId","data-v-25eb6ea0"]]);export{Ue as default}; diff --git a/public/admin/assets/plant.c310a4b1.js b/public/admin/assets/plant.c310a4b1.js new file mode 100644 index 000000000..93f294c8f --- /dev/null +++ b/public/admin/assets/plant.c310a4b1.js @@ -0,0 +1 @@ +import{B as D,C as U,a1 as w,M as A,N as B,G as z,H as x,a2 as v,D as c,I as k}from"./element-plus.4328d892.js";import{d as I,r as N,o as r,K as f,L as a,U as e,a as V,R as n,S as R,c as S,T as L,a7 as G,u as O}from"./@vue.51d7f2d8.js";import{d as T}from"./index.ed71ac09.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const j={class:"tit"},H={class:"time"},K=I({__name:"plant",props:{datas:{type:Object,defualt:function(){return{cultivated_area:"",planning:"",breeding_training:"",breeding_company:"",notes:"",breeding_type:"",breeding_time:"",mature_time:"",yield:"",estimated_income:"",farm_tools:"",ecological_farming:"",modernization:"",pre_price:"",method_sales:"",processing_storage:"",promote:"",transportation:"",expand_business_needs:"",demand:"",policy_subsidies:""}}},update_time:{type:String,defualt:""}},setup(l){const _=N(["\u81EA\u5DF1\u79CD","\u51FA\u79DF","\u4EE3\u79CD","\u79DF\u66F4\u591A\u5730\u6269\u5927\u79CD\u690D"]);return(p,u)=>{const m=D,d=U,o=w,E=A,g=B,i=z,s=x,y=v,F=c,C=k;return r(),f(C,{style:{"margin-top":"16px"}},{default:a(()=>[e(F,{ref:"elForm",disabled:!0,model:p.formData,size:"mini","label-width":"180px"},{default:a(()=>[V("div",j,[n(" \u79CD\u690D\u4FE1\u606F "),V("span",H,"\u66F4\u65B0\u4E8E:"+R(l.update_time),1)]),e(y,null,{default:a(()=>[e(o,{span:8},{default:a(()=>[e(d,{label:"\u571F\u5730\u603B\u9762\u79EF(\u4EA9)",prop:"cultivated_area"},{default:a(()=>[e(m,{modelValue:l.datas.cultivated_area,"onUpdate:modelValue":u[0]||(u[0]=t=>l.datas.cultivated_area=t),clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u571F\u5730\u89C4\u5212",prop:"cultivated_area"},{default:a(()=>[e(g,{disabled:p.isCheck,modelValue:l.datas.planning,"onUpdate:modelValue":u[1]||(u[1]=t=>l.datas.planning=t),clearable:"",style:{width:"100%"}},{default:a(()=>[(r(!0),S(L,null,G(O(_),(t,b)=>(r(),f(E,{key:b,label:t,value:b+""},null,8,["label","value"]))),128))]),_:1},8,["disabled","modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u6709\u65E0\u79CD\u690D\u57F9\u8BAD",prop:"breeding_training"},{default:a(()=>[e(s,{modelValue:l.datas.breeding_training,"onUpdate:modelValue":u[2]||(u[2]=t=>l.datas.breeding_training=t),size:"medium"},{default:a(()=>[e(i,{label:"1"},{default:a(()=>[n("\u6709")]),_:1}),e(i,{label:"0"},{default:a(()=>[n("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u6709\u65E0\u6CE8\u518C\u6210\u7ACB\u79CD\u690D\u516C\u53F8",prop:"planting_company"},{default:a(()=>[e(s,{modelValue:l.datas.planting_company,"onUpdate:modelValue":u[3]||(u[3]=t=>l.datas.planting_company=t),size:"medium"},{default:a(()=>[e(i,{label:"1"},{default:a(()=>[n("\u6709")]),_:1}),e(i,{label:"0"},{default:a(()=>[n("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u5907\u6CE8",prop:"notes"},{default:a(()=>[e(m,{modelValue:l.datas.notes,"onUpdate:modelValue":u[4]||(u[4]=t=>l.datas.notes=t),clearable:"",autosize:"",type:"textarea",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u79CD\u690D\u7C7B\u578B",prop:"breeding_type"},{default:a(()=>[e(m,{modelValue:l.datas.breeding_type,"onUpdate:modelValue":u[5]||(u[5]=t=>l.datas.breeding_type=t),clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u79CD\u690D\u9762\u79EF(\u4EA9)",prop:"area"},{default:a(()=>[e(m,{modelValue:l.datas.area,"onUpdate:modelValue":u[6]||(u[6]=t=>l.datas.area=t),clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u5F00\u59CB\u65F6\u95F4",prop:"breeding_time"},{default:a(()=>[e(m,{modelValue:l.datas.breeding_time,"onUpdate:modelValue":u[7]||(u[7]=t=>l.datas.breeding_time=t),clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u4E0A\u5E02\u65F6\u95F4",prop:"mature_time"},{default:a(()=>[e(m,{modelValue:l.datas.mature_time,"onUpdate:modelValue":u[8]||(u[8]=t=>l.datas.mature_time=t),clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u4EA7\u91CF(\u65A4)",prop:"yield"},{default:a(()=>[e(m,{modelValue:l.datas.yield,"onUpdate:modelValue":u[9]||(u[9]=t=>l.datas.yield=t),clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u9884\u8BA1\u6536\u76CA(\u5143)",prop:"estimated_income"},{default:a(()=>[e(m,{modelValue:l.datas.estimated_income,"onUpdate:modelValue":u[10]||(u[10]=t=>l.datas.estimated_income=t),clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u519C\u8D44\u519C\u5177\u4F7F\u7528\u60C5\u51B5","label-width":"180px",prop:"farm_tools"},{default:a(()=>[e(m,{modelValue:l.datas.farm_tools,"onUpdate:modelValue":u[11]||(u[11]=t=>l.datas.farm_tools=t),clearable:"",autosize:"",type:"textarea",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u662F\u5426\u751F\u6001\u79CD\u690D",prop:"ecological_farming"},{default:a(()=>[e(s,{modelValue:l.datas.ecological_farming,"onUpdate:modelValue":u[12]||(u[12]=t=>l.datas.ecological_farming=t),size:"medium"},{default:a(()=>[e(i,{label:"1"},{default:a(()=>[n("\u6709")]),_:1}),e(i,{label:"0"},{default:a(()=>[n("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u73B0\u4EE3\u5316\u7A0B\u5EA6(%)",prop:"modernization"},{default:a(()=>[e(m,{modelValue:l.datas.modernization,"onUpdate:modelValue":u[13]||(u[13]=t=>l.datas.modernization=t),clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u9884\u552E\u5356\u4EF7\u683C(\u5143/500g)",prop:"pre_price"},{default:a(()=>[e(m,{modelValue:l.datas.pre_price,"onUpdate:modelValue":u[14]||(u[14]=t=>l.datas.pre_price=t),clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u9500\u552E\u65B9\u5F0F",prop:"method_sales"},{default:a(()=>[e(s,{modelValue:l.datas.method_sales,"onUpdate:modelValue":u[15]||(u[15]=t=>l.datas.method_sales=t),size:"medium"},{default:a(()=>[e(i,{label:"1"},{default:a(()=>[n("\u6709")]),_:1}),e(i,{label:"0"},{default:a(()=>[n("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u6709\u65E0\u52A0\u5DE5\u4ED3\u50A8",prop:"processing_storage"},{default:a(()=>[e(s,{modelValue:l.datas.processing_storage,"onUpdate:modelValue":u[16]||(u[16]=t=>l.datas.processing_storage=t),size:"medium"},{default:a(()=>[e(i,{label:"1"},{default:a(()=>[n("\u6709")]),_:1}),e(i,{label:"0"},{default:a(()=>[n("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u6709\u65E0\u5BA3\u4F20\u63A8\u5E7F",prop:"promote"},{default:a(()=>[e(s,{modelValue:l.datas.promote,"onUpdate:modelValue":u[17]||(u[17]=t=>l.datas.promote=t),size:"medium"},{default:a(()=>[e(i,{label:"1"},{default:a(()=>[n("\u6709")]),_:1}),e(i,{label:"0"},{default:a(()=>[n("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u6709\u65E0\u8FD0\u8F93",prop:"transportation"},{default:a(()=>[e(s,{modelValue:l.datas.transportation,"onUpdate:modelValue":u[18]||(u[18]=t=>l.datas.transportation=t),size:"medium"},{default:a(()=>[e(i,{label:"1"},{default:a(()=>[n("\u6709")]),_:1}),e(i,{label:"0"},{default:a(()=>[n("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u662F\u5426\u6709\u6269\u5927\u7ECF\u8425\u9700\u6C42",prop:"expand_business_needs"},{default:a(()=>[e(s,{modelValue:l.datas.expand_business_needs,"onUpdate:modelValue":u[19]||(u[19]=t=>l.datas.expand_business_needs=t),size:"medium"},{default:a(()=>[e(i,{label:"1"},{default:a(()=>[n("\u6709")]),_:1}),e(i,{label:"0"},{default:a(()=>[n("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u9700\u6C42\u63CF\u8FF0",prop:"demand"},{default:a(()=>[e(m,{modelValue:l.datas.demand,"onUpdate:modelValue":u[20]||(u[20]=t=>l.datas.demand=t),clearable:"",autosize:"",type:"textarea",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u653F\u7B56\u8865\u52A9",prop:"policy_subsidies"},{default:a(()=>[e(m,{modelValue:l.datas.policy_subsidies,"onUpdate:modelValue":u[21]||(u[21]=t=>l.datas.policy_subsidies=t),clearable:"",autosize:"",type:"textarea",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1})]),_:1})]),_:1},8,["model"])]),_:1})}}});const Ue=T(K,[["__scopeId","data-v-25eb6ea0"]]);export{Ue as default}; diff --git a/public/admin/assets/post.34f40c78.js b/public/admin/assets/post.34f40c78.js new file mode 100644 index 000000000..aa014e507 --- /dev/null +++ b/public/admin/assets/post.34f40c78.js @@ -0,0 +1 @@ +import{r as e}from"./index.37f7aea6.js";function o(t){return e.get({url:"/dept.jobs/lists",params:t},{ignoreCancelToken:!0})}function r(t){return e.get({url:"/dept.jobs/all",params:t})}function n(t){return e.post({url:"/dept.jobs/add",params:t})}function u(t){return e.post({url:"/dept.jobs/edit",params:t})}function l(t){return e.post({url:"/dept.jobs/delete",params:t})}function d(t){return e.get({url:"/dept.jobs/detail",params:t})}export{n as a,d as b,o as c,l as d,r as e,u as j}; diff --git a/public/admin/assets/post.53815820.js b/public/admin/assets/post.53815820.js new file mode 100644 index 000000000..2ddd4080f --- /dev/null +++ b/public/admin/assets/post.53815820.js @@ -0,0 +1 @@ +import{r as e}from"./index.ed71ac09.js";function o(t){return e.get({url:"/dept.jobs/lists",params:t},{ignoreCancelToken:!0})}function r(t){return e.get({url:"/dept.jobs/all",params:t})}function n(t){return e.post({url:"/dept.jobs/add",params:t})}function u(t){return e.post({url:"/dept.jobs/edit",params:t})}function l(t){return e.post({url:"/dept.jobs/delete",params:t})}function d(t){return e.get({url:"/dept.jobs/detail",params:t})}export{n as a,d as b,o as c,l as d,r as e,u as j}; diff --git a/public/admin/assets/post.5d32b419.js b/public/admin/assets/post.5d32b419.js new file mode 100644 index 000000000..28982371b --- /dev/null +++ b/public/admin/assets/post.5d32b419.js @@ -0,0 +1 @@ +import{r as e}from"./index.aa9bb752.js";function o(t){return e.get({url:"/dept.jobs/lists",params:t},{ignoreCancelToken:!0})}function r(t){return e.get({url:"/dept.jobs/all",params:t})}function n(t){return e.post({url:"/dept.jobs/add",params:t})}function u(t){return e.post({url:"/dept.jobs/edit",params:t})}function l(t){return e.post({url:"/dept.jobs/delete",params:t})}function d(t){return e.get({url:"/dept.jobs/detail",params:t})}export{n as a,d as b,o as c,l as d,r as e,u as j}; diff --git a/public/admin/assets/preview-pc.10dd6ed7.js b/public/admin/assets/preview-pc.10dd6ed7.js new file mode 100644 index 000000000..5b85b0103 --- /dev/null +++ b/public/admin/assets/preview-pc.10dd6ed7.js @@ -0,0 +1 @@ +import{w as c}from"./index.85a36c0c.js";import{d as u,o as r,c as e,T as d,a7 as _,O as s,a as f,_ as y,H as v,K as b,P as k,u as h}from"./@vue.51d7f2d8.js";import{d as C}from"./index.aa9bb752.js";import"./attr.vue_vue_type_script_setup_true_lang.5697c78f.js";import"./element-plus.4328d892.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.a9a11abe.js";import"./picker.c7d50072.js";import"./index.fa872673.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./picker.45aea54f.js";import"./index.c47e74f8.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./index.a450f1bb.js";import"./index.vue_vue_type_script_setup_true_lang.dc835bba.js";import"./usePaging.2ad8e1e6.js";import"./vue3-video-play.b911321b.js";import"./vuedraggable.0cb40d3a.js";import"./vue.5de34049.js";import"./sortablejs.ef73fc5c.js";import"./content.vue_vue_type_script_setup_true_lang.d21cb19e.js";import"./decoration-img.3e95b47f.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./attr.vue_vue_type_script_setup_true_lang.fdded599.js";import"./content.206aab68.js";import"./attr.vue_vue_type_script_setup_true_lang.f3b5265b.js";import"./add-nav.vue_vue_type_script_setup_true_lang.3317a1cd.js";import"./content.b2cebb4d.js";import"./attr.vue_vue_type_script_setup_true_lang.aeb5c0d0.js";import"./content.vue_vue_type_script_setup_true_lang.08763d7f.js";import"./attr.vue_vue_type_script_setup_true_lang.d01577b5.js";import"./content.95faa73b.js";import"./decoration.4be01ffa.js";import"./attr.vue_vue_type_script_setup_true_lang.0fc534ba.js";import"./content.84ae04ad.js";import"./attr.vue_vue_type_script_setup_true_lang.3d3efd85.js";import"./content.vue_vue_type_script_setup_true_lang.28911d3e.js";import"./attr.vue_vue_type_script_setup_true_lang.00e826d0.js";import"./content.92456155.js";const V={class:"pages-preview"},B=["onClick"],P=u({__name:"preview-pc",props:{pageData:{type:Array,default:()=>[]},modelValue:{type:Number,default:0}},emits:["update:modelValue"],setup(m,{emit:l}){const n=(t,i)=>{t.disabled||l("update:modelValue",i)};return(t,i)=>(r(),e("div",V,[(r(!0),e(d,null,_(m.pageData,(o,a)=>(r(),e("div",{key:o.id,class:s(["relative",{"cursor-pointer":!(o!=null&&o.disabled)}]),onClick:p=>n(o,a)},[f("div",{class:s(["absolute w-full h-full z-[100] border-dashed",{select:a==m.modelValue,"border-[#dcdfe6] border-2":!(o!=null&&o.disabled)}]),style:y(o.styles)},null,6),v(t.$slots,"default",{},()=>{var p;return[(r(),b(k((p=h(c)[o==null?void 0:o.name])==null?void 0:p.content),{content:o.content,styles:o.styles,key:o.id},null,8,["content","styles"]))]},!0)],10,B))),128))]))}});const jo=C(P,[["__scopeId","data-v-7e9e2ca0"]]);export{jo as default}; diff --git a/public/admin/assets/preview-pc.b441bd47.js b/public/admin/assets/preview-pc.b441bd47.js new file mode 100644 index 000000000..8d5639cb2 --- /dev/null +++ b/public/admin/assets/preview-pc.b441bd47.js @@ -0,0 +1 @@ +import{w as c}from"./index.017d9ee1.js";import{d as u,o as r,c as e,T as d,a7 as _,O as s,a as f,_ as y,H as v,K as b,P as k,u as h}from"./@vue.51d7f2d8.js";import{d as C}from"./index.ed71ac09.js";import"./attr.vue_vue_type_script_setup_true_lang.8394104e.js";import"./element-plus.4328d892.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.f2c7f81b.js";import"./picker.47d21da2.js";import"./index.b940d6e3.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./picker.597494a6.js";import"./index.c38e1dd6.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./index.9c616a0c.js";import"./index.vue_vue_type_script_setup_true_lang.dc835bba.js";import"./usePaging.2ad8e1e6.js";import"./vue3-video-play.b911321b.js";import"./vuedraggable.0cb40d3a.js";import"./vue.5de34049.js";import"./sortablejs.ef73fc5c.js";import"./content.vue_vue_type_script_setup_true_lang.84d28a88.js";import"./decoration-img.82b482b3.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./attr.vue_vue_type_script_setup_true_lang.be7eaab3.js";import"./content.b8657a15.js";import"./attr.vue_vue_type_script_setup_true_lang.5e1d2ee6.js";import"./add-nav.vue_vue_type_script_setup_true_lang.a0ca03a3.js";import"./content.de68a2a6.js";import"./attr.vue_vue_type_script_setup_true_lang.19311265.js";import"./content.vue_vue_type_script_setup_true_lang.c8560c8f.js";import"./attr.vue_vue_type_script_setup_true_lang.d01577b5.js";import"./content.54b16038.js";import"./decoration.6a408574.js";import"./attr.vue_vue_type_script_setup_true_lang.0fc534ba.js";import"./content.fb432a0e.js";import"./attr.vue_vue_type_script_setup_true_lang.103310f1.js";import"./content.vue_vue_type_script_setup_true_lang.e9fe6f66.js";import"./attr.vue_vue_type_script_setup_true_lang.00e826d0.js";import"./content.0dcb8921.js";const V={class:"pages-preview"},B=["onClick"],P=u({__name:"preview-pc",props:{pageData:{type:Array,default:()=>[]},modelValue:{type:Number,default:0}},emits:["update:modelValue"],setup(m,{emit:l}){const n=(t,i)=>{t.disabled||l("update:modelValue",i)};return(t,i)=>(r(),e("div",V,[(r(!0),e(d,null,_(m.pageData,(o,a)=>(r(),e("div",{key:o.id,class:s(["relative",{"cursor-pointer":!(o!=null&&o.disabled)}]),onClick:p=>n(o,a)},[f("div",{class:s(["absolute w-full h-full z-[100] border-dashed",{select:a==m.modelValue,"border-[#dcdfe6] border-2":!(o!=null&&o.disabled)}]),style:y(o.styles)},null,6),v(t.$slots,"default",{},()=>{var p;return[(r(),b(k((p=h(c)[o==null?void 0:o.name])==null?void 0:p.content),{content:o.content,styles:o.styles,key:o.id},null,8,["content","styles"]))]},!0)],10,B))),128))]))}});const jo=C(P,[["__scopeId","data-v-7e9e2ca0"]]);export{jo as default}; diff --git a/public/admin/assets/preview-pc.e164827a.js b/public/admin/assets/preview-pc.e164827a.js new file mode 100644 index 000000000..2b2db1a8d --- /dev/null +++ b/public/admin/assets/preview-pc.e164827a.js @@ -0,0 +1 @@ +import{w as c}from"./index.500fd836.js";import{d as u,o as r,c as e,T as d,a7 as _,O as s,a as f,_ as y,H as v,K as b,P as k,u as h}from"./@vue.51d7f2d8.js";import{d as C}from"./index.37f7aea6.js";import"./attr.vue_vue_type_script_setup_true_lang.f9c983cd.js";import"./element-plus.4328d892.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.fe1d30dd.js";import"./picker.d415e27a.js";import"./index.5759a1a6.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./picker.3821e495.js";import"./index.af446662.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./index.5f944d34.js";import"./index.vue_vue_type_script_setup_true_lang.dc835bba.js";import"./usePaging.2ad8e1e6.js";import"./vue3-video-play.b911321b.js";import"./vuedraggable.0cb40d3a.js";import"./vue.5de34049.js";import"./sortablejs.ef73fc5c.js";import"./content.vue_vue_type_script_setup_true_lang.b3e4f379.js";import"./decoration-img.d7e5dbec.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./attr.vue_vue_type_script_setup_true_lang.a5f46be8.js";import"./content.416ba4d2.js";import"./attr.vue_vue_type_script_setup_true_lang.4cdc919e.js";import"./add-nav.vue_vue_type_script_setup_true_lang.35798c7b.js";import"./content.b3fbaeeb.js";import"./attr.vue_vue_type_script_setup_true_lang.d9838080.js";import"./content.vue_vue_type_script_setup_true_lang.888a9caf.js";import"./attr.vue_vue_type_script_setup_true_lang.d01577b5.js";import"./content.87312235.js";import"./decoration.6f039a71.js";import"./attr.vue_vue_type_script_setup_true_lang.0fc534ba.js";import"./content.39f10dd3.js";import"./attr.vue_vue_type_script_setup_true_lang.871cb086.js";import"./content.vue_vue_type_script_setup_true_lang.e6931808.js";import"./attr.vue_vue_type_script_setup_true_lang.00e826d0.js";import"./content.d63a41a9.js";const V={class:"pages-preview"},B=["onClick"],P=u({__name:"preview-pc",props:{pageData:{type:Array,default:()=>[]},modelValue:{type:Number,default:0}},emits:["update:modelValue"],setup(m,{emit:l}){const n=(t,i)=>{t.disabled||l("update:modelValue",i)};return(t,i)=>(r(),e("div",V,[(r(!0),e(d,null,_(m.pageData,(o,a)=>(r(),e("div",{key:o.id,class:s(["relative",{"cursor-pointer":!(o!=null&&o.disabled)}]),onClick:p=>n(o,a)},[f("div",{class:s(["absolute w-full h-full z-[100] border-dashed",{select:a==m.modelValue,"border-[#dcdfe6] border-2":!(o!=null&&o.disabled)}]),style:y(o.styles)},null,6),v(t.$slots,"default",{},()=>{var p;return[(r(),b(k((p=h(c)[o==null?void 0:o.name])==null?void 0:p.content),{content:o.content,styles:o.styles,key:o.id},null,8,["content","styles"]))]},!0)],10,B))),128))]))}});const jo=C(P,[["__scopeId","data-v-7e9e2ca0"]]);export{jo as default}; diff --git a/public/admin/assets/preview.02c147d2.js b/public/admin/assets/preview.02c147d2.js new file mode 100644 index 000000000..c2678cddd --- /dev/null +++ b/public/admin/assets/preview.02c147d2.js @@ -0,0 +1 @@ +import{E as u}from"./element-plus.4328d892.js";import{w as d}from"./index.500fd836.js";import{d as _,o as r,c as e,U as f,L as b,T as v,a7 as y,O as s,a as h,H as k,K as C,P as V,u as x}from"./@vue.51d7f2d8.js";import{d as B}from"./index.37f7aea6.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./attr.vue_vue_type_script_setup_true_lang.f9c983cd.js";import"./index.fe1d30dd.js";import"./picker.d415e27a.js";import"./index.5759a1a6.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./picker.3821e495.js";import"./index.af446662.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./index.5f944d34.js";import"./index.vue_vue_type_script_setup_true_lang.dc835bba.js";import"./usePaging.2ad8e1e6.js";import"./vue3-video-play.b911321b.js";import"./vuedraggable.0cb40d3a.js";import"./vue.5de34049.js";import"./sortablejs.ef73fc5c.js";import"./content.vue_vue_type_script_setup_true_lang.b3e4f379.js";import"./decoration-img.d7e5dbec.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./attr.vue_vue_type_script_setup_true_lang.a5f46be8.js";import"./content.416ba4d2.js";import"./attr.vue_vue_type_script_setup_true_lang.4cdc919e.js";import"./add-nav.vue_vue_type_script_setup_true_lang.35798c7b.js";import"./content.b3fbaeeb.js";import"./attr.vue_vue_type_script_setup_true_lang.d9838080.js";import"./content.vue_vue_type_script_setup_true_lang.888a9caf.js";import"./attr.vue_vue_type_script_setup_true_lang.d01577b5.js";import"./content.87312235.js";import"./decoration.6f039a71.js";import"./attr.vue_vue_type_script_setup_true_lang.0fc534ba.js";import"./content.39f10dd3.js";import"./attr.vue_vue_type_script_setup_true_lang.871cb086.js";import"./content.vue_vue_type_script_setup_true_lang.e6931808.js";import"./attr.vue_vue_type_script_setup_true_lang.00e826d0.js";import"./content.d63a41a9.js";const D={class:"shadow mx-[30px] pages-preview"},E=["onClick"],N=_({__name:"preview",props:{pageData:{type:Array,default:()=>[]},modelValue:{type:Number,default:0}},emits:["update:modelValue"],setup(m,{emit:l}){const n=(t,i)=>{t.disabled||l("update:modelValue",i)};return(t,i)=>{const c=u;return r(),e("div",D,[f(c,null,{default:b(()=>[(r(!0),e(v,null,y(m.pageData,(o,a)=>(r(),e("div",{key:o.id,class:s(["relative",{"cursor-pointer":!(o!=null&&o.disabled)}]),onClick:p=>n(o,a)},[h("div",{class:s(["absolute w-full h-full z-[100] border-dashed",{select:a==m.modelValue,"border-[#dcdfe6] border-2":!(o!=null&&o.disabled)}])},null,2),k(t.$slots,"default",{},()=>{var p;return[(r(),C(V((p=x(d)[o==null?void 0:o.name])==null?void 0:p.content),{content:o.content,styles:o.styles,key:o.id},null,8,["content","styles"]))]},!0)],10,E))),128))]),_:3})])}}});const Go=B(N,[["__scopeId","data-v-4eb981b5"]]);export{Go as default}; diff --git a/public/admin/assets/preview.badfc8f1.js b/public/admin/assets/preview.badfc8f1.js new file mode 100644 index 000000000..ba08078fa --- /dev/null +++ b/public/admin/assets/preview.badfc8f1.js @@ -0,0 +1 @@ +import{E as u}from"./element-plus.4328d892.js";import{w as d}from"./index.85a36c0c.js";import{d as _,o as r,c as e,U as f,L as b,T as v,a7 as y,O as s,a as h,H as k,K as C,P as V,u as x}from"./@vue.51d7f2d8.js";import{d as B}from"./index.aa9bb752.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./attr.vue_vue_type_script_setup_true_lang.5697c78f.js";import"./index.a9a11abe.js";import"./picker.c7d50072.js";import"./index.fa872673.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./picker.45aea54f.js";import"./index.c47e74f8.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./index.a450f1bb.js";import"./index.vue_vue_type_script_setup_true_lang.dc835bba.js";import"./usePaging.2ad8e1e6.js";import"./vue3-video-play.b911321b.js";import"./vuedraggable.0cb40d3a.js";import"./vue.5de34049.js";import"./sortablejs.ef73fc5c.js";import"./content.vue_vue_type_script_setup_true_lang.d21cb19e.js";import"./decoration-img.3e95b47f.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./attr.vue_vue_type_script_setup_true_lang.fdded599.js";import"./content.206aab68.js";import"./attr.vue_vue_type_script_setup_true_lang.f3b5265b.js";import"./add-nav.vue_vue_type_script_setup_true_lang.3317a1cd.js";import"./content.b2cebb4d.js";import"./attr.vue_vue_type_script_setup_true_lang.aeb5c0d0.js";import"./content.vue_vue_type_script_setup_true_lang.08763d7f.js";import"./attr.vue_vue_type_script_setup_true_lang.d01577b5.js";import"./content.95faa73b.js";import"./decoration.4be01ffa.js";import"./attr.vue_vue_type_script_setup_true_lang.0fc534ba.js";import"./content.84ae04ad.js";import"./attr.vue_vue_type_script_setup_true_lang.3d3efd85.js";import"./content.vue_vue_type_script_setup_true_lang.28911d3e.js";import"./attr.vue_vue_type_script_setup_true_lang.00e826d0.js";import"./content.92456155.js";const D={class:"shadow mx-[30px] pages-preview"},E=["onClick"],N=_({__name:"preview",props:{pageData:{type:Array,default:()=>[]},modelValue:{type:Number,default:0}},emits:["update:modelValue"],setup(m,{emit:l}){const n=(t,i)=>{t.disabled||l("update:modelValue",i)};return(t,i)=>{const c=u;return r(),e("div",D,[f(c,null,{default:b(()=>[(r(!0),e(v,null,y(m.pageData,(o,a)=>(r(),e("div",{key:o.id,class:s(["relative",{"cursor-pointer":!(o!=null&&o.disabled)}]),onClick:p=>n(o,a)},[h("div",{class:s(["absolute w-full h-full z-[100] border-dashed",{select:a==m.modelValue,"border-[#dcdfe6] border-2":!(o!=null&&o.disabled)}])},null,2),k(t.$slots,"default",{},()=>{var p;return[(r(),C(V((p=x(d)[o==null?void 0:o.name])==null?void 0:p.content),{content:o.content,styles:o.styles,key:o.id},null,8,["content","styles"]))]},!0)],10,E))),128))]),_:3})])}}});const Go=B(N,[["__scopeId","data-v-4eb981b5"]]);export{Go as default}; diff --git a/public/admin/assets/preview.c7c0f0ab.js b/public/admin/assets/preview.c7c0f0ab.js new file mode 100644 index 000000000..7ff41f6e5 --- /dev/null +++ b/public/admin/assets/preview.c7c0f0ab.js @@ -0,0 +1 @@ +import{E as u}from"./element-plus.4328d892.js";import{w as d}from"./index.017d9ee1.js";import{d as _,o as r,c as e,U as f,L as b,T as v,a7 as y,O as s,a as h,H as k,K as C,P as V,u as x}from"./@vue.51d7f2d8.js";import{d as B}from"./index.ed71ac09.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./attr.vue_vue_type_script_setup_true_lang.8394104e.js";import"./index.f2c7f81b.js";import"./picker.47d21da2.js";import"./index.b940d6e3.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./picker.597494a6.js";import"./index.c38e1dd6.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./index.9c616a0c.js";import"./index.vue_vue_type_script_setup_true_lang.dc835bba.js";import"./usePaging.2ad8e1e6.js";import"./vue3-video-play.b911321b.js";import"./vuedraggable.0cb40d3a.js";import"./vue.5de34049.js";import"./sortablejs.ef73fc5c.js";import"./content.vue_vue_type_script_setup_true_lang.84d28a88.js";import"./decoration-img.82b482b3.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./attr.vue_vue_type_script_setup_true_lang.be7eaab3.js";import"./content.b8657a15.js";import"./attr.vue_vue_type_script_setup_true_lang.5e1d2ee6.js";import"./add-nav.vue_vue_type_script_setup_true_lang.a0ca03a3.js";import"./content.de68a2a6.js";import"./attr.vue_vue_type_script_setup_true_lang.19311265.js";import"./content.vue_vue_type_script_setup_true_lang.c8560c8f.js";import"./attr.vue_vue_type_script_setup_true_lang.d01577b5.js";import"./content.54b16038.js";import"./decoration.6a408574.js";import"./attr.vue_vue_type_script_setup_true_lang.0fc534ba.js";import"./content.fb432a0e.js";import"./attr.vue_vue_type_script_setup_true_lang.103310f1.js";import"./content.vue_vue_type_script_setup_true_lang.e9fe6f66.js";import"./attr.vue_vue_type_script_setup_true_lang.00e826d0.js";import"./content.0dcb8921.js";const D={class:"shadow mx-[30px] pages-preview"},E=["onClick"],N=_({__name:"preview",props:{pageData:{type:Array,default:()=>[]},modelValue:{type:Number,default:0}},emits:["update:modelValue"],setup(m,{emit:l}){const n=(t,i)=>{t.disabled||l("update:modelValue",i)};return(t,i)=>{const c=u;return r(),e("div",D,[f(c,null,{default:b(()=>[(r(!0),e(v,null,y(m.pageData,(o,a)=>(r(),e("div",{key:o.id,class:s(["relative",{"cursor-pointer":!(o!=null&&o.disabled)}]),onClick:p=>n(o,a)},[h("div",{class:s(["absolute w-full h-full z-[100] border-dashed",{select:a==m.modelValue,"border-[#dcdfe6] border-2":!(o!=null&&o.disabled)}])},null,2),k(t.$slots,"default",{},()=>{var p;return[(r(),C(V((p=x(d)[o==null?void 0:o.name])==null?void 0:p.content),{content:o.content,styles:o.styles,key:o.id},null,8,["content","styles"]))]},!0)],10,E))),128))]),_:3})])}}});const Go=B(N,[["__scopeId","data-v-4eb981b5"]]);export{Go as default}; diff --git a/public/admin/assets/protocol.50fcc730.js b/public/admin/assets/protocol.50fcc730.js new file mode 100644 index 000000000..326e86a4b --- /dev/null +++ b/public/admin/assets/protocol.50fcc730.js @@ -0,0 +1 @@ +import{_ as b}from"./index.fd04a214.js";import{B as w,C as x,D as B,I as E,w as y}from"./element-plus.4328d892.js";import{_ as F}from"./index.vue_vue_type_style_index_0_lang.60c96350.js";import{c as h,d as D}from"./website.7956cd42.js";import{d as g,r as A,af as C,o as _,c as U,a as l,U as o,L as e,u as r,M as k,K as I,R as N,T as P}from"./@vue.51d7f2d8.js";import"./index.37f7aea6.js";import"./@vueuse.ec90c285.js";import"./lodash.08438971.js";import"./@amap.8a62addd.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./@element-plus.a074d1f6.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./@wangeditor.afd76521.js";import"./picker.3821e495.js";import"./index.5759a1a6.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.af446662.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./index.fe1d30dd.js";import"./index.5f944d34.js";import"./index.vue_vue_type_script_setup_true_lang.dc835bba.js";import"./usePaging.2ad8e1e6.js";import"./vue3-video-play.b911321b.js";import"./vuedraggable.0cb40d3a.js";import"./vue.5de34049.js";import"./sortablejs.ef73fc5c.js";const T={class:"xl:flex"},G=l("span",{class:"font-medium"},"\u670D\u52A1\u534F\u8BAE",-1),K=l("span",{class:"font-medium"},"\u9690\u79C1\u534F\u8BAE",-1),Kt=g({__name:"protocol",setup(L){const t=A({service_title:"",service_content:"",privacy_title:"",privacy_content:""}),a=async()=>{t.value=await h()},d=async()=>{await D({...t.value}),a()};return a(),(M,m)=>{const n=w,p=x,s=B,u=F,c=E,f=y,v=b,V=C("perms");return _(),U(P,null,[l("div",T,[o(c,{class:"!border-none flex-1 xl:mr-4 mb-4",shadow:"never"},{header:e(()=>[G]),default:e(()=>[o(s,{model:r(t),"label-width":"80px"},{default:e(()=>[o(p,{label:"\u534F\u8BAE\u540D\u79F0"},{default:e(()=>[o(n,{modelValue:r(t).service_title,"onUpdate:modelValue":m[0]||(m[0]=i=>r(t).service_title=i)},null,8,["modelValue"])]),_:1})]),_:1},8,["model"]),o(u,{class:"mb-10",modelValue:r(t).service_content,"onUpdate:modelValue":m[1]||(m[1]=i=>r(t).service_content=i),height:"500"},null,8,["modelValue"])]),_:1}),o(c,{class:"!border-none flex-1 mb-4",shadow:"never"},{header:e(()=>[K]),default:e(()=>[o(s,{model:r(t),"label-width":"80px"},{default:e(()=>[o(p,{label:"\u534F\u8BAE\u540D\u79F0"},{default:e(()=>[o(n,{modelValue:r(t).privacy_title,"onUpdate:modelValue":m[2]||(m[2]=i=>r(t).privacy_title=i)},null,8,["modelValue"])]),_:1})]),_:1},8,["model"]),o(u,{class:"mb-10",modelValue:r(t).privacy_content,"onUpdate:modelValue":m[3]||(m[3]=i=>r(t).privacy_content=i),height:"500"},null,8,["modelValue"])]),_:1})]),k((_(),I(v,null,{default:e(()=>[o(f,{type:"primary",onClick:d},{default:e(()=>[N("\u4FDD\u5B58")]),_:1})]),_:1})),[[V,["setting.web.web_setting/setAgreement"]]])],64)}}});export{Kt as default}; diff --git a/public/admin/assets/protocol.6d305945.js b/public/admin/assets/protocol.6d305945.js new file mode 100644 index 000000000..3d7a5f103 --- /dev/null +++ b/public/admin/assets/protocol.6d305945.js @@ -0,0 +1 @@ +import{_ as b}from"./index.be5645df.js";import{B as w,C as x,D as B,I as E,w as y}from"./element-plus.4328d892.js";import{_ as F}from"./index.vue_vue_type_style_index_0_lang.2f5b0088.js";import{c as h,d as D}from"./website.3e3234e6.js";import{d as g,r as A,af as C,o as _,c as U,a as l,U as o,L as e,u as r,M as k,K as I,R as N,T as P}from"./@vue.51d7f2d8.js";import"./index.ed71ac09.js";import"./@vueuse.ec90c285.js";import"./lodash.08438971.js";import"./@amap.8a62addd.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./@element-plus.a074d1f6.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./@wangeditor.afd76521.js";import"./picker.597494a6.js";import"./index.b940d6e3.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.c38e1dd6.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./index.f2c7f81b.js";import"./index.9c616a0c.js";import"./index.vue_vue_type_script_setup_true_lang.dc835bba.js";import"./usePaging.2ad8e1e6.js";import"./vue3-video-play.b911321b.js";import"./vuedraggable.0cb40d3a.js";import"./vue.5de34049.js";import"./sortablejs.ef73fc5c.js";const T={class:"xl:flex"},G=l("span",{class:"font-medium"},"\u670D\u52A1\u534F\u8BAE",-1),K=l("span",{class:"font-medium"},"\u9690\u79C1\u534F\u8BAE",-1),Kt=g({__name:"protocol",setup(L){const t=A({service_title:"",service_content:"",privacy_title:"",privacy_content:""}),a=async()=>{t.value=await h()},d=async()=>{await D({...t.value}),a()};return a(),(M,m)=>{const n=w,p=x,s=B,u=F,c=E,f=y,v=b,V=C("perms");return _(),U(P,null,[l("div",T,[o(c,{class:"!border-none flex-1 xl:mr-4 mb-4",shadow:"never"},{header:e(()=>[G]),default:e(()=>[o(s,{model:r(t),"label-width":"80px"},{default:e(()=>[o(p,{label:"\u534F\u8BAE\u540D\u79F0"},{default:e(()=>[o(n,{modelValue:r(t).service_title,"onUpdate:modelValue":m[0]||(m[0]=i=>r(t).service_title=i)},null,8,["modelValue"])]),_:1})]),_:1},8,["model"]),o(u,{class:"mb-10",modelValue:r(t).service_content,"onUpdate:modelValue":m[1]||(m[1]=i=>r(t).service_content=i),height:"500"},null,8,["modelValue"])]),_:1}),o(c,{class:"!border-none flex-1 mb-4",shadow:"never"},{header:e(()=>[K]),default:e(()=>[o(s,{model:r(t),"label-width":"80px"},{default:e(()=>[o(p,{label:"\u534F\u8BAE\u540D\u79F0"},{default:e(()=>[o(n,{modelValue:r(t).privacy_title,"onUpdate:modelValue":m[2]||(m[2]=i=>r(t).privacy_title=i)},null,8,["modelValue"])]),_:1})]),_:1},8,["model"]),o(u,{class:"mb-10",modelValue:r(t).privacy_content,"onUpdate:modelValue":m[3]||(m[3]=i=>r(t).privacy_content=i),height:"500"},null,8,["modelValue"])]),_:1})]),k((_(),I(v,null,{default:e(()=>[o(f,{type:"primary",onClick:d},{default:e(()=>[N("\u4FDD\u5B58")]),_:1})]),_:1})),[[V,["setting.web.web_setting/setAgreement"]]])],64)}}});export{Kt as default}; diff --git a/public/admin/assets/protocol.f1e4828b.js b/public/admin/assets/protocol.f1e4828b.js new file mode 100644 index 000000000..6f1234430 --- /dev/null +++ b/public/admin/assets/protocol.f1e4828b.js @@ -0,0 +1 @@ +import{_ as b}from"./index.13ef78d6.js";import{B as w,C as x,D as B,I as E,w as y}from"./element-plus.4328d892.js";import{_ as F}from"./index.vue_vue_type_style_index_0_lang.8e405d58.js";import{c as h,d as D}from"./website.dab3e7a6.js";import{d as g,r as A,af as C,o as _,c as U,a as l,U as o,L as e,u as r,M as k,K as I,R as N,T as P}from"./@vue.51d7f2d8.js";import"./index.aa9bb752.js";import"./@vueuse.ec90c285.js";import"./lodash.08438971.js";import"./@amap.8a62addd.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./@element-plus.a074d1f6.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./@wangeditor.afd76521.js";import"./picker.45aea54f.js";import"./index.fa872673.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.c47e74f8.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./index.a9a11abe.js";import"./index.a450f1bb.js";import"./index.vue_vue_type_script_setup_true_lang.dc835bba.js";import"./usePaging.2ad8e1e6.js";import"./vue3-video-play.b911321b.js";import"./vuedraggable.0cb40d3a.js";import"./vue.5de34049.js";import"./sortablejs.ef73fc5c.js";const T={class:"xl:flex"},G=l("span",{class:"font-medium"},"\u670D\u52A1\u534F\u8BAE",-1),K=l("span",{class:"font-medium"},"\u9690\u79C1\u534F\u8BAE",-1),Kt=g({__name:"protocol",setup(L){const t=A({service_title:"",service_content:"",privacy_title:"",privacy_content:""}),a=async()=>{t.value=await h()},d=async()=>{await D({...t.value}),a()};return a(),(M,m)=>{const n=w,p=x,s=B,u=F,c=E,f=y,v=b,V=C("perms");return _(),U(P,null,[l("div",T,[o(c,{class:"!border-none flex-1 xl:mr-4 mb-4",shadow:"never"},{header:e(()=>[G]),default:e(()=>[o(s,{model:r(t),"label-width":"80px"},{default:e(()=>[o(p,{label:"\u534F\u8BAE\u540D\u79F0"},{default:e(()=>[o(n,{modelValue:r(t).service_title,"onUpdate:modelValue":m[0]||(m[0]=i=>r(t).service_title=i)},null,8,["modelValue"])]),_:1})]),_:1},8,["model"]),o(u,{class:"mb-10",modelValue:r(t).service_content,"onUpdate:modelValue":m[1]||(m[1]=i=>r(t).service_content=i),height:"500"},null,8,["modelValue"])]),_:1}),o(c,{class:"!border-none flex-1 mb-4",shadow:"never"},{header:e(()=>[K]),default:e(()=>[o(s,{model:r(t),"label-width":"80px"},{default:e(()=>[o(p,{label:"\u534F\u8BAE\u540D\u79F0"},{default:e(()=>[o(n,{modelValue:r(t).privacy_title,"onUpdate:modelValue":m[2]||(m[2]=i=>r(t).privacy_title=i)},null,8,["modelValue"])]),_:1})]),_:1},8,["model"]),o(u,{class:"mb-10",modelValue:r(t).privacy_content,"onUpdate:modelValue":m[3]||(m[3]=i=>r(t).privacy_content=i),height:"500"},null,8,["modelValue"])]),_:1})]),k((_(),I(v,null,{default:e(()=>[o(f,{type:"primary",onClick:d},{default:e(()=>[N("\u4FDD\u5B58")]),_:1})]),_:1})),[[V,["setting.web.web_setting/setAgreement"]]])],64)}}});export{Kt as default}; diff --git a/public/admin/assets/recharge_record.6567ee7a.js b/public/admin/assets/recharge_record.6567ee7a.js new file mode 100644 index 000000000..aac1598da --- /dev/null +++ b/public/admin/assets/recharge_record.6567ee7a.js @@ -0,0 +1 @@ +import{S as P,B as $,C as R,M as S,N as I,w as O,D as M,I as Q,O as j,P as q,Q as G}from"./element-plus.4328d892.js";import{_ as H}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{f as J,_ as W}from"./index.ed71ac09.js";import{_ as X}from"./index.vue_vue_type_script_setup_true_lang.5c604000.js";import{_ as Y}from"./index.vue_vue_type_script_setup_true_lang.3ab411d6.js";import{d as D,$ as Z,af as ee,o as c,c as te,U as e,L as o,u as t,a8 as g,R as m,M as w,K as C,a as f,S as v,O as ae,Q as oe,k as ue}from"./@vue.51d7f2d8.js";import{c as B,d as le}from"./finance.5215ca02.js";import{u as ne}from"./usePaging.2ad8e1e6.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.b940d6e3.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";const se={class:"flex items-center"},ie={class:"flex justify-end mt-4"},re=D({name:"articleLists"}),Ze=D({...re,setup(me){const u=Z({sn:"",user_info:"",pay_way:"",pay_status:"",start_time:"",end_time:""}),{pager:s,getLists:p,resetPage:_,resetParams:h}=ne({fetchFun:B,params:u}),V=async F=>{await J.confirm("\u786E\u8BA4\u91CD\u65B0\u9000\u6B3E\uFF1F"),await le({recharge_id:F}),p()};return p(),(F,l)=>{const x=P,E=$,i=R,r=S,b=I,k=Y,d=O,A=X,T=M,y=Q,U=W,n=j,K=q,z=H,L=ee("perms"),N=G;return c(),te("div",null,[e(y,{class:"!border-none",shadow:"never"},{default:o(()=>[e(x,{type:"warning",title:"\u6E29\u99A8\u63D0\u793A\uFF1A\u7528\u6237\u5145\u503C\u8BB0\u5F55",closable:!1,"show-icon":""}),e(T,{ref:"formRef",class:"mb-[-16px] mt-[16px]",model:t(u),inline:!0},{default:o(()=>[e(i,{label:"\u5145\u503C\u5355\u53F7"},{default:o(()=>[e(E,{class:"w-[280px]",modelValue:t(u).sn,"onUpdate:modelValue":l[0]||(l[0]=a=>t(u).sn=a),placeholder:"\u8BF7\u8F93\u5165\u5145\u503C\u5355\u53F7",clearable:"",onKeyup:g(t(_),["enter"])},null,8,["modelValue","onKeyup"])]),_:1}),e(i,{label:"\u7528\u6237\u4FE1\u606F"},{default:o(()=>[e(E,{class:"w-[280px]",modelValue:t(u).user_info,"onUpdate:modelValue":l[1]||(l[1]=a=>t(u).user_info=a),placeholder:"\u8BF7\u8F93\u5165\u7528\u6237\u7F16\u53F7/\u6635\u79F0/\u624B\u673A\u53F7",clearable:"",onKeyup:g(t(_),["enter"])},null,8,["modelValue","onKeyup"])]),_:1}),e(i,{label:"\u652F\u4ED8\u65B9\u5F0F"},{default:o(()=>[e(b,{class:"w-[280px]",modelValue:t(u).pay_status,"onUpdate:modelValue":l[2]||(l[2]=a=>t(u).pay_status=a)},{default:o(()=>[e(r,{label:"\u5168\u90E8",value:""}),e(r,{label:"\u5FAE\u4FE1\u652F\u4ED8",value:2})]),_:1},8,["modelValue"])]),_:1}),e(i,{label:"\u652F\u4ED8\u72B6\u6001"},{default:o(()=>[e(b,{class:"w-[280px]",modelValue:t(u).pay_way,"onUpdate:modelValue":l[3]||(l[3]=a=>t(u).pay_way=a)},{default:o(()=>[e(r,{label:"\u5168\u90E8",value:""}),e(r,{label:"\u672A\u652F\u4ED8",value:0}),e(r,{label:"\u5DF2\u652F\u4ED8",value:1})]),_:1},8,["modelValue"])]),_:1}),e(i,{label:"\u4E0B\u5355\u65F6\u95F4"},{default:o(()=>[e(k,{startTime:t(u).start_time,"onUpdate:startTime":l[4]||(l[4]=a=>t(u).start_time=a),endTime:t(u).end_time,"onUpdate:endTime":l[5]||(l[5]=a=>t(u).end_time=a)},null,8,["startTime","endTime"])]),_:1}),e(i,null,{default:o(()=>[e(d,{type:"primary",onClick:t(_)},{default:o(()=>[m("\u67E5\u8BE2")]),_:1},8,["onClick"]),e(d,{onClick:t(h)},{default:o(()=>[m("\u91CD\u7F6E")]),_:1},8,["onClick"]),e(A,{class:"ml-2.5","fetch-fun":t(B),params:t(u),"page-size":t(s).size},null,8,["fetch-fun","params","page-size"])]),_:1})]),_:1},8,["model"])]),_:1}),e(y,{class:"!border-none mt-4",shadow:"never"},{default:o(()=>[w((c(),C(K,{size:"large",data:t(s).lists},{default:o(()=>[e(n,{label:"\u7528\u6237\u4FE1\u606F","min-width":"160"},{default:o(({row:a})=>[f("div",se,[e(U,{class:"flex-none mr-2",src:a.avatar,width:40,height:40,"preview-teleported":"",fit:"contain"},null,8,["src"]),m(" "+v(a.nickname),1)])]),_:1}),e(n,{label:"\u5145\u503C\u5355\u53F7",prop:"sn","min-width":"190"}),e(n,{label:"\u5145\u503C\u91D1\u989D",prop:"order_amount","min-width":"100"}),e(n,{label:"\u652F\u4ED8\u65B9\u5F0F",prop:"pay_way_text","min-width":"100"}),e(n,{label:"\u652F\u4ED8\u72B6\u6001",prop:"","min-width":"100"},{default:o(({row:a})=>[f("span",{class:ae({"text-error":a.pay_status==0})},v(a.pay_status_text),3)]),_:1}),e(n,{label:"\u63D0\u4EA4\u65F6\u95F4",prop:"create_time","min-width":"180"}),e(n,{label:"\u652F\u4ED8\u65F6\u95F4",prop:"pay_time","min-width":"180"}),e(n,{label:"\u64CD\u4F5C",width:"120",fixed:"right"},{default:o(({row:a})=>[a.pay_status==1?w((c(),C(d,{key:0,type:"primary",link:"",disabled:a.refund_status==1,onClick:pe=>V(a.id)},{default:o(()=>[m(" \u9000\u6B3E ")]),_:2},1032,["disabled","onClick"])),[[L,["recharge.recharge/refund"]]]):oe("",!0)]),_:1})]),_:1},8,["data"])),[[N,t(s).loading]]),f("div",ie,[e(z,{modelValue:t(s),"onUpdate:modelValue":l[6]||(l[6]=a=>ue(s)?s.value=a:null),onChange:t(p)},null,8,["modelValue","onChange"])])]),_:1})])}}});export{Ze as default}; diff --git a/public/admin/assets/recharge_record.68cdf1d9.js b/public/admin/assets/recharge_record.68cdf1d9.js new file mode 100644 index 000000000..313998fca --- /dev/null +++ b/public/admin/assets/recharge_record.68cdf1d9.js @@ -0,0 +1 @@ +import{S as P,B as $,C as R,M as S,N as I,w as O,D as M,I as Q,O as j,P as q,Q as G}from"./element-plus.4328d892.js";import{_ as H}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{f as J,_ as W}from"./index.aa9bb752.js";import{_ as X}from"./index.vue_vue_type_script_setup_true_lang.f3cc5114.js";import{_ as Y}from"./index.vue_vue_type_script_setup_true_lang.3ab411d6.js";import{d as D,$ as Z,af as ee,o as c,c as te,U as e,L as o,u as t,a8 as g,R as m,M as w,K as C,a as f,S as v,O as ae,Q as oe,k as ue}from"./@vue.51d7f2d8.js";import{c as B,d as le}from"./finance.ec5ac162.js";import{u as ne}from"./usePaging.2ad8e1e6.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.fa872673.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";const se={class:"flex items-center"},ie={class:"flex justify-end mt-4"},re=D({name:"articleLists"}),Ze=D({...re,setup(me){const u=Z({sn:"",user_info:"",pay_way:"",pay_status:"",start_time:"",end_time:""}),{pager:s,getLists:p,resetPage:_,resetParams:h}=ne({fetchFun:B,params:u}),V=async F=>{await J.confirm("\u786E\u8BA4\u91CD\u65B0\u9000\u6B3E\uFF1F"),await le({recharge_id:F}),p()};return p(),(F,l)=>{const x=P,E=$,i=R,r=S,b=I,k=Y,d=O,A=X,T=M,y=Q,U=W,n=j,K=q,z=H,L=ee("perms"),N=G;return c(),te("div",null,[e(y,{class:"!border-none",shadow:"never"},{default:o(()=>[e(x,{type:"warning",title:"\u6E29\u99A8\u63D0\u793A\uFF1A\u7528\u6237\u5145\u503C\u8BB0\u5F55",closable:!1,"show-icon":""}),e(T,{ref:"formRef",class:"mb-[-16px] mt-[16px]",model:t(u),inline:!0},{default:o(()=>[e(i,{label:"\u5145\u503C\u5355\u53F7"},{default:o(()=>[e(E,{class:"w-[280px]",modelValue:t(u).sn,"onUpdate:modelValue":l[0]||(l[0]=a=>t(u).sn=a),placeholder:"\u8BF7\u8F93\u5165\u5145\u503C\u5355\u53F7",clearable:"",onKeyup:g(t(_),["enter"])},null,8,["modelValue","onKeyup"])]),_:1}),e(i,{label:"\u7528\u6237\u4FE1\u606F"},{default:o(()=>[e(E,{class:"w-[280px]",modelValue:t(u).user_info,"onUpdate:modelValue":l[1]||(l[1]=a=>t(u).user_info=a),placeholder:"\u8BF7\u8F93\u5165\u7528\u6237\u7F16\u53F7/\u6635\u79F0/\u624B\u673A\u53F7",clearable:"",onKeyup:g(t(_),["enter"])},null,8,["modelValue","onKeyup"])]),_:1}),e(i,{label:"\u652F\u4ED8\u65B9\u5F0F"},{default:o(()=>[e(b,{class:"w-[280px]",modelValue:t(u).pay_status,"onUpdate:modelValue":l[2]||(l[2]=a=>t(u).pay_status=a)},{default:o(()=>[e(r,{label:"\u5168\u90E8",value:""}),e(r,{label:"\u5FAE\u4FE1\u652F\u4ED8",value:2})]),_:1},8,["modelValue"])]),_:1}),e(i,{label:"\u652F\u4ED8\u72B6\u6001"},{default:o(()=>[e(b,{class:"w-[280px]",modelValue:t(u).pay_way,"onUpdate:modelValue":l[3]||(l[3]=a=>t(u).pay_way=a)},{default:o(()=>[e(r,{label:"\u5168\u90E8",value:""}),e(r,{label:"\u672A\u652F\u4ED8",value:0}),e(r,{label:"\u5DF2\u652F\u4ED8",value:1})]),_:1},8,["modelValue"])]),_:1}),e(i,{label:"\u4E0B\u5355\u65F6\u95F4"},{default:o(()=>[e(k,{startTime:t(u).start_time,"onUpdate:startTime":l[4]||(l[4]=a=>t(u).start_time=a),endTime:t(u).end_time,"onUpdate:endTime":l[5]||(l[5]=a=>t(u).end_time=a)},null,8,["startTime","endTime"])]),_:1}),e(i,null,{default:o(()=>[e(d,{type:"primary",onClick:t(_)},{default:o(()=>[m("\u67E5\u8BE2")]),_:1},8,["onClick"]),e(d,{onClick:t(h)},{default:o(()=>[m("\u91CD\u7F6E")]),_:1},8,["onClick"]),e(A,{class:"ml-2.5","fetch-fun":t(B),params:t(u),"page-size":t(s).size},null,8,["fetch-fun","params","page-size"])]),_:1})]),_:1},8,["model"])]),_:1}),e(y,{class:"!border-none mt-4",shadow:"never"},{default:o(()=>[w((c(),C(K,{size:"large",data:t(s).lists},{default:o(()=>[e(n,{label:"\u7528\u6237\u4FE1\u606F","min-width":"160"},{default:o(({row:a})=>[f("div",se,[e(U,{class:"flex-none mr-2",src:a.avatar,width:40,height:40,"preview-teleported":"",fit:"contain"},null,8,["src"]),m(" "+v(a.nickname),1)])]),_:1}),e(n,{label:"\u5145\u503C\u5355\u53F7",prop:"sn","min-width":"190"}),e(n,{label:"\u5145\u503C\u91D1\u989D",prop:"order_amount","min-width":"100"}),e(n,{label:"\u652F\u4ED8\u65B9\u5F0F",prop:"pay_way_text","min-width":"100"}),e(n,{label:"\u652F\u4ED8\u72B6\u6001",prop:"","min-width":"100"},{default:o(({row:a})=>[f("span",{class:ae({"text-error":a.pay_status==0})},v(a.pay_status_text),3)]),_:1}),e(n,{label:"\u63D0\u4EA4\u65F6\u95F4",prop:"create_time","min-width":"180"}),e(n,{label:"\u652F\u4ED8\u65F6\u95F4",prop:"pay_time","min-width":"180"}),e(n,{label:"\u64CD\u4F5C",width:"120",fixed:"right"},{default:o(({row:a})=>[a.pay_status==1?w((c(),C(d,{key:0,type:"primary",link:"",disabled:a.refund_status==1,onClick:pe=>V(a.id)},{default:o(()=>[m(" \u9000\u6B3E ")]),_:2},1032,["disabled","onClick"])),[[L,["recharge.recharge/refund"]]]):oe("",!0)]),_:1})]),_:1},8,["data"])),[[N,t(s).loading]]),f("div",ie,[e(z,{modelValue:t(s),"onUpdate:modelValue":l[6]||(l[6]=a=>ue(s)?s.value=a:null),onChange:t(p)},null,8,["modelValue","onChange"])])]),_:1})])}}});export{Ze as default}; diff --git a/public/admin/assets/recharge_record.c506aaee.js b/public/admin/assets/recharge_record.c506aaee.js new file mode 100644 index 000000000..ac4b5dd53 --- /dev/null +++ b/public/admin/assets/recharge_record.c506aaee.js @@ -0,0 +1 @@ +import{S as P,B as $,C as R,M as S,N as I,w as O,D as M,I as Q,O as j,P as q,Q as G}from"./element-plus.4328d892.js";import{_ as H}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{f as J,_ as W}from"./index.37f7aea6.js";import{_ as X}from"./index.vue_vue_type_script_setup_true_lang.7ac7ce7d.js";import{_ as Y}from"./index.vue_vue_type_script_setup_true_lang.3ab411d6.js";import{d as D,$ as Z,af as ee,o as c,c as te,U as e,L as o,u as t,a8 as g,R as m,M as w,K as C,a as f,S as v,O as ae,Q as oe,k as ue}from"./@vue.51d7f2d8.js";import{c as B,d as le}from"./finance.259514c6.js";import{u as ne}from"./usePaging.2ad8e1e6.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.5759a1a6.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";const se={class:"flex items-center"},ie={class:"flex justify-end mt-4"},re=D({name:"articleLists"}),Ze=D({...re,setup(me){const u=Z({sn:"",user_info:"",pay_way:"",pay_status:"",start_time:"",end_time:""}),{pager:s,getLists:p,resetPage:_,resetParams:h}=ne({fetchFun:B,params:u}),V=async F=>{await J.confirm("\u786E\u8BA4\u91CD\u65B0\u9000\u6B3E\uFF1F"),await le({recharge_id:F}),p()};return p(),(F,l)=>{const x=P,E=$,i=R,r=S,b=I,k=Y,d=O,A=X,T=M,y=Q,U=W,n=j,K=q,z=H,L=ee("perms"),N=G;return c(),te("div",null,[e(y,{class:"!border-none",shadow:"never"},{default:o(()=>[e(x,{type:"warning",title:"\u6E29\u99A8\u63D0\u793A\uFF1A\u7528\u6237\u5145\u503C\u8BB0\u5F55",closable:!1,"show-icon":""}),e(T,{ref:"formRef",class:"mb-[-16px] mt-[16px]",model:t(u),inline:!0},{default:o(()=>[e(i,{label:"\u5145\u503C\u5355\u53F7"},{default:o(()=>[e(E,{class:"w-[280px]",modelValue:t(u).sn,"onUpdate:modelValue":l[0]||(l[0]=a=>t(u).sn=a),placeholder:"\u8BF7\u8F93\u5165\u5145\u503C\u5355\u53F7",clearable:"",onKeyup:g(t(_),["enter"])},null,8,["modelValue","onKeyup"])]),_:1}),e(i,{label:"\u7528\u6237\u4FE1\u606F"},{default:o(()=>[e(E,{class:"w-[280px]",modelValue:t(u).user_info,"onUpdate:modelValue":l[1]||(l[1]=a=>t(u).user_info=a),placeholder:"\u8BF7\u8F93\u5165\u7528\u6237\u7F16\u53F7/\u6635\u79F0/\u624B\u673A\u53F7",clearable:"",onKeyup:g(t(_),["enter"])},null,8,["modelValue","onKeyup"])]),_:1}),e(i,{label:"\u652F\u4ED8\u65B9\u5F0F"},{default:o(()=>[e(b,{class:"w-[280px]",modelValue:t(u).pay_status,"onUpdate:modelValue":l[2]||(l[2]=a=>t(u).pay_status=a)},{default:o(()=>[e(r,{label:"\u5168\u90E8",value:""}),e(r,{label:"\u5FAE\u4FE1\u652F\u4ED8",value:2})]),_:1},8,["modelValue"])]),_:1}),e(i,{label:"\u652F\u4ED8\u72B6\u6001"},{default:o(()=>[e(b,{class:"w-[280px]",modelValue:t(u).pay_way,"onUpdate:modelValue":l[3]||(l[3]=a=>t(u).pay_way=a)},{default:o(()=>[e(r,{label:"\u5168\u90E8",value:""}),e(r,{label:"\u672A\u652F\u4ED8",value:0}),e(r,{label:"\u5DF2\u652F\u4ED8",value:1})]),_:1},8,["modelValue"])]),_:1}),e(i,{label:"\u4E0B\u5355\u65F6\u95F4"},{default:o(()=>[e(k,{startTime:t(u).start_time,"onUpdate:startTime":l[4]||(l[4]=a=>t(u).start_time=a),endTime:t(u).end_time,"onUpdate:endTime":l[5]||(l[5]=a=>t(u).end_time=a)},null,8,["startTime","endTime"])]),_:1}),e(i,null,{default:o(()=>[e(d,{type:"primary",onClick:t(_)},{default:o(()=>[m("\u67E5\u8BE2")]),_:1},8,["onClick"]),e(d,{onClick:t(h)},{default:o(()=>[m("\u91CD\u7F6E")]),_:1},8,["onClick"]),e(A,{class:"ml-2.5","fetch-fun":t(B),params:t(u),"page-size":t(s).size},null,8,["fetch-fun","params","page-size"])]),_:1})]),_:1},8,["model"])]),_:1}),e(y,{class:"!border-none mt-4",shadow:"never"},{default:o(()=>[w((c(),C(K,{size:"large",data:t(s).lists},{default:o(()=>[e(n,{label:"\u7528\u6237\u4FE1\u606F","min-width":"160"},{default:o(({row:a})=>[f("div",se,[e(U,{class:"flex-none mr-2",src:a.avatar,width:40,height:40,"preview-teleported":"",fit:"contain"},null,8,["src"]),m(" "+v(a.nickname),1)])]),_:1}),e(n,{label:"\u5145\u503C\u5355\u53F7",prop:"sn","min-width":"190"}),e(n,{label:"\u5145\u503C\u91D1\u989D",prop:"order_amount","min-width":"100"}),e(n,{label:"\u652F\u4ED8\u65B9\u5F0F",prop:"pay_way_text","min-width":"100"}),e(n,{label:"\u652F\u4ED8\u72B6\u6001",prop:"","min-width":"100"},{default:o(({row:a})=>[f("span",{class:ae({"text-error":a.pay_status==0})},v(a.pay_status_text),3)]),_:1}),e(n,{label:"\u63D0\u4EA4\u65F6\u95F4",prop:"create_time","min-width":"180"}),e(n,{label:"\u652F\u4ED8\u65F6\u95F4",prop:"pay_time","min-width":"180"}),e(n,{label:"\u64CD\u4F5C",width:"120",fixed:"right"},{default:o(({row:a})=>[a.pay_status==1?w((c(),C(d,{key:0,type:"primary",link:"",disabled:a.refund_status==1,onClick:pe=>V(a.id)},{default:o(()=>[m(" \u9000\u6B3E ")]),_:2},1032,["disabled","onClick"])),[[L,["recharge.recharge/refund"]]]):oe("",!0)]),_:1})]),_:1},8,["data"])),[[N,t(s).loading]]),f("div",ie,[e(z,{modelValue:t(s),"onUpdate:modelValue":l[6]||(l[6]=a=>ue(s)?s.value=a:null),onChange:t(p)},null,8,["modelValue","onChange"])])]),_:1})])}}});export{Ze as default}; diff --git a/public/admin/assets/refund-log.31044cfd.js b/public/admin/assets/refund-log.31044cfd.js new file mode 100644 index 000000000..19f92db08 --- /dev/null +++ b/public/admin/assets/refund-log.31044cfd.js @@ -0,0 +1 @@ +import"./refund-log.vue_vue_type_script_setup_true_lang.e02e2ac9.js";import{_ as M}from"./refund-log.vue_vue_type_script_setup_true_lang.e02e2ac9.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./finance.259514c6.js";import"./index.37f7aea6.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";export{M as default}; diff --git a/public/admin/assets/refund-log.8deeff17.js b/public/admin/assets/refund-log.8deeff17.js new file mode 100644 index 000000000..d73f804f4 --- /dev/null +++ b/public/admin/assets/refund-log.8deeff17.js @@ -0,0 +1 @@ +import"./refund-log.vue_vue_type_script_setup_true_lang.9cd304d5.js";import{_ as M}from"./refund-log.vue_vue_type_script_setup_true_lang.9cd304d5.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./finance.5215ca02.js";import"./index.ed71ac09.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";export{M as default}; diff --git a/public/admin/assets/refund-log.c9d3ca56.js b/public/admin/assets/refund-log.c9d3ca56.js new file mode 100644 index 000000000..f9dd26adf --- /dev/null +++ b/public/admin/assets/refund-log.c9d3ca56.js @@ -0,0 +1 @@ +import"./refund-log.vue_vue_type_script_setup_true_lang.7db4e288.js";import{_ as M}from"./refund-log.vue_vue_type_script_setup_true_lang.7db4e288.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./finance.ec5ac162.js";import"./index.aa9bb752.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";export{M as default}; diff --git a/public/admin/assets/refund-log.vue_vue_type_script_setup_true_lang.7db4e288.js b/public/admin/assets/refund-log.vue_vue_type_script_setup_true_lang.7db4e288.js new file mode 100644 index 000000000..9681976fe --- /dev/null +++ b/public/admin/assets/refund-log.vue_vue_type_script_setup_true_lang.7db4e288.js @@ -0,0 +1 @@ +import{a6 as x,O as y,P as D,L as k,Q as C}from"./element-plus.4328d892.js";import{r as F}from"./finance.ec5ac162.js";import{d as L,r as h,e as T,w as N,o,c as R,U as u,L as a,M as A,K as n,u as m,R as d,S as r,Q as p,k as I}from"./@vue.51d7f2d8.js";const Q={class:"code-preview"},K=L({__name:"refund-log",props:{modelValue:{type:Boolean},refundId:{}},emits:["update:modelValue"],setup(B,{emit:v}){const f=B,i=h(!1),_=h([]),s=T({get(){return f.modelValue},set(t){v("update:modelValue",t)}}),E=async()=>{i.value=!0,_.value=[];try{const t=await F({record_id:f.refundId});_.value=t}catch{}i.value=!1};return N(s,t=>{t&&E()}),(t,g)=>{const l=y,c=x,V=D,b=k,w=C;return o(),R("div",Q,[u(b,{modelValue:m(s),"onUpdate:modelValue":g[0]||(g[0]=e=>I(s)?s.value=e:null),width:"760px",title:"\u9000\u6B3E\u65E5\u5FD7"},{default:a(()=>[A((o(),n(V,{size:"large",data:m(_),height:"500"},{default:a(()=>[u(l,{label:"\u6D41\u6C34\u5355\u53F7",prop:"sn","min-width":"190"}),u(l,{label:"\u9000\u6B3E\u91D1\u989D","min-width":"110"},{default:a(({row:e})=>[d(" \xA5"+r(e.refund_amount),1)]),_:1}),u(l,{label:"\u9000\u6B3E\u72B6\u6001",prop:"","min-width":"100"},{default:a(({row:e})=>[e.refund_status==0?(o(),n(c,{key:0,type:"warning"},{default:a(()=>[d(r(e.refund_status_text),1)]),_:2},1024)):p("",!0),e.refund_status==1?(o(),n(c,{key:1},{default:a(()=>[d(r(e.refund_status_text),1)]),_:2},1024)):p("",!0),e.refund_status==2?(o(),n(c,{key:2,type:"danger"},{default:a(()=>[d(r(e.refund_status_text),1)]),_:2},1024)):p("",!0)]),_:1}),u(l,{label:"\u8BB0\u5F55\u65F6\u95F4",prop:"create_time","min-width":"180"}),u(l,{label:"\u64CD\u4F5C\u4EBA",prop:"handler","min-width":"120"})]),_:1},8,["data"])),[[w,m(i)]])]),_:1},8,["modelValue"])])}}});export{K as _}; diff --git a/public/admin/assets/refund-log.vue_vue_type_script_setup_true_lang.9cd304d5.js b/public/admin/assets/refund-log.vue_vue_type_script_setup_true_lang.9cd304d5.js new file mode 100644 index 000000000..eb56976c7 --- /dev/null +++ b/public/admin/assets/refund-log.vue_vue_type_script_setup_true_lang.9cd304d5.js @@ -0,0 +1 @@ +import{a6 as x,O as y,P as D,L as k,Q as C}from"./element-plus.4328d892.js";import{r as F}from"./finance.5215ca02.js";import{d as L,r as h,e as T,w as N,o,c as R,U as u,L as a,M as A,K as n,u as m,R as d,S as r,Q as p,k as I}from"./@vue.51d7f2d8.js";const Q={class:"code-preview"},K=L({__name:"refund-log",props:{modelValue:{type:Boolean},refundId:{}},emits:["update:modelValue"],setup(B,{emit:v}){const f=B,i=h(!1),_=h([]),s=T({get(){return f.modelValue},set(t){v("update:modelValue",t)}}),E=async()=>{i.value=!0,_.value=[];try{const t=await F({record_id:f.refundId});_.value=t}catch{}i.value=!1};return N(s,t=>{t&&E()}),(t,g)=>{const l=y,c=x,V=D,b=k,w=C;return o(),R("div",Q,[u(b,{modelValue:m(s),"onUpdate:modelValue":g[0]||(g[0]=e=>I(s)?s.value=e:null),width:"760px",title:"\u9000\u6B3E\u65E5\u5FD7"},{default:a(()=>[A((o(),n(V,{size:"large",data:m(_),height:"500"},{default:a(()=>[u(l,{label:"\u6D41\u6C34\u5355\u53F7",prop:"sn","min-width":"190"}),u(l,{label:"\u9000\u6B3E\u91D1\u989D","min-width":"110"},{default:a(({row:e})=>[d(" \xA5"+r(e.refund_amount),1)]),_:1}),u(l,{label:"\u9000\u6B3E\u72B6\u6001",prop:"","min-width":"100"},{default:a(({row:e})=>[e.refund_status==0?(o(),n(c,{key:0,type:"warning"},{default:a(()=>[d(r(e.refund_status_text),1)]),_:2},1024)):p("",!0),e.refund_status==1?(o(),n(c,{key:1},{default:a(()=>[d(r(e.refund_status_text),1)]),_:2},1024)):p("",!0),e.refund_status==2?(o(),n(c,{key:2,type:"danger"},{default:a(()=>[d(r(e.refund_status_text),1)]),_:2},1024)):p("",!0)]),_:1}),u(l,{label:"\u8BB0\u5F55\u65F6\u95F4",prop:"create_time","min-width":"180"}),u(l,{label:"\u64CD\u4F5C\u4EBA",prop:"handler","min-width":"120"})]),_:1},8,["data"])),[[w,m(i)]])]),_:1},8,["modelValue"])])}}});export{K as _}; diff --git a/public/admin/assets/refund-log.vue_vue_type_script_setup_true_lang.e02e2ac9.js b/public/admin/assets/refund-log.vue_vue_type_script_setup_true_lang.e02e2ac9.js new file mode 100644 index 000000000..482365e3a --- /dev/null +++ b/public/admin/assets/refund-log.vue_vue_type_script_setup_true_lang.e02e2ac9.js @@ -0,0 +1 @@ +import{a6 as x,O as y,P as D,L as k,Q as C}from"./element-plus.4328d892.js";import{r as F}from"./finance.259514c6.js";import{d as L,r as h,e as T,w as N,o,c as R,U as u,L as a,M as A,K as n,u as m,R as d,S as r,Q as p,k as I}from"./@vue.51d7f2d8.js";const Q={class:"code-preview"},K=L({__name:"refund-log",props:{modelValue:{type:Boolean},refundId:{}},emits:["update:modelValue"],setup(B,{emit:v}){const f=B,i=h(!1),_=h([]),s=T({get(){return f.modelValue},set(t){v("update:modelValue",t)}}),E=async()=>{i.value=!0,_.value=[];try{const t=await F({record_id:f.refundId});_.value=t}catch{}i.value=!1};return N(s,t=>{t&&E()}),(t,g)=>{const l=y,c=x,V=D,b=k,w=C;return o(),R("div",Q,[u(b,{modelValue:m(s),"onUpdate:modelValue":g[0]||(g[0]=e=>I(s)?s.value=e:null),width:"760px",title:"\u9000\u6B3E\u65E5\u5FD7"},{default:a(()=>[A((o(),n(V,{size:"large",data:m(_),height:"500"},{default:a(()=>[u(l,{label:"\u6D41\u6C34\u5355\u53F7",prop:"sn","min-width":"190"}),u(l,{label:"\u9000\u6B3E\u91D1\u989D","min-width":"110"},{default:a(({row:e})=>[d(" \xA5"+r(e.refund_amount),1)]),_:1}),u(l,{label:"\u9000\u6B3E\u72B6\u6001",prop:"","min-width":"100"},{default:a(({row:e})=>[e.refund_status==0?(o(),n(c,{key:0,type:"warning"},{default:a(()=>[d(r(e.refund_status_text),1)]),_:2},1024)):p("",!0),e.refund_status==1?(o(),n(c,{key:1},{default:a(()=>[d(r(e.refund_status_text),1)]),_:2},1024)):p("",!0),e.refund_status==2?(o(),n(c,{key:2,type:"danger"},{default:a(()=>[d(r(e.refund_status_text),1)]),_:2},1024)):p("",!0)]),_:1}),u(l,{label:"\u8BB0\u5F55\u65F6\u95F4",prop:"create_time","min-width":"180"}),u(l,{label:"\u64CD\u4F5C\u4EBA",prop:"handler","min-width":"120"})]),_:1},8,["data"])),[[w,m(i)]])]),_:1},8,["modelValue"])])}}});export{K as _}; diff --git a/public/admin/assets/refund_record.41f18fd3.js b/public/admin/assets/refund_record.41f18fd3.js new file mode 100644 index 000000000..976ab3753 --- /dev/null +++ b/public/admin/assets/refund_record.41f18fd3.js @@ -0,0 +1 @@ +import{a6 as ee,x as te,y as ue,I as ae,B as ne,C as oe,M as le,N as se,w as re,D as ie,O as de,P as me,Q as _e}from"./element-plus.4328d892.js";import{_ as pe}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{f as ce,_ as fe}from"./index.37f7aea6.js";import{_ as Ee}from"./index.vue_vue_type_script_setup_true_lang.3ab411d6.js";import{d as N,$ as S,r as b,af as ge,o as r,c as A,U as e,L as u,a as s,S as i,u as t,a8 as D,R as d,k as V,T as ye,a7 as Be,K as p,M as k,Q as v}from"./@vue.51d7f2d8.js";import{e as be,f as ve,h as Fe}from"./finance.259514c6.js";import{u as he}from"./usePaging.2ad8e1e6.js";import{_ as xe}from"./refund-log.vue_vue_type_script_setup_true_lang.e02e2ac9.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const we={class:"flex flex-wrap"},Ce={class:"w-1/2 md:w-1/4"},De=s("div",{class:"leading-10"},"\u7D2F\u8BA1\u9000\u6B3E\u91D1\u989D (\u5143)",-1),Ve={class:"text-6xl"},ke={class:"w-1/2 md:w-1/4"},Te=s("div",{class:"leading-10"},"\u9000\u6B3E\u4E2D\u91D1\u989D (\u5143)",-1),Ke={class:"text-6xl"},Ue={class:"w-1/2 md:w-1/4"},Re=s("div",{class:"leading-10"},"\u9000\u6B3E\u6210\u529F\u91D1\u989D (\u5143)",-1),Le={class:"text-6xl"},$e={class:"w-1/2 md:w-1/4"},Pe=s("div",{class:"leading-10"},"\u9000\u6B3E\u5931\u8D25\u91D1\u989D (\u5143)",-1),Se={class:"text-6xl"},Ae={class:"flex items-center"},Ne={class:"flex justify-end mt-4"},Ie=N({name:"articleLists"}),Dt=N({...Ie,setup(Oe){const o=S({sn:"",order_sn:"",user_info:"",refund_type:"",start_time:"",end_time:"",refund_status:""}),E=S({total:0,ing:0,success:0,error:0}),y=b(!1),T=b(0),F=b(0),K=b([{name:"\u5168\u90E8",type:"",numKey:"total"},{name:"\u9000\u6B3E\u4E2D",type:0,numKey:"ing"},{name:"\u9000\u6B3E\u6210\u529F",type:1,numKey:"success"},{name:"\u9000\u6B3E\u5931\u8D25",type:2,numKey:"error"}]),{pager:c,getLists:h,resetPage:g,resetParams:I}=he({fetchFun:Fe,params:o}),O=async m=>{await ce.confirm("\u786E\u8BA4\u91CD\u65B0\u9000\u6B3E\uFF1F"),await be({record_id:m}),h(),U()},j=async m=>{y.value=!0,T.value=m},M=m=>{o.refund_status=K.value[m].type,g()},U=async()=>{const m=await ve();Object.assign(E,m)};return U(),h(),(m,n)=>{const x=ae,w=ne,f=oe,R=le,Q=se,q=Ee,B=re,z=ie,_=de,G=fe,C=ee,H=me,J=te,W=ue,X=pe,L=ge("perms"),Y=_e;return r(),A("div",null,[e(x,{class:"!border-none mb-4",shadow:"never"},{default:u(()=>[s("div",we,[s("div",Ce,[De,s("div",Ve,i(t(E).total),1)]),s("div",ke,[Te,s("div",Ke,i(t(E).ing),1)]),s("div",Ue,[Re,s("div",Le,i(t(E).success),1)]),s("div",$e,[Pe,s("div",Se,i(t(E).error),1)])])]),_:1}),e(x,{class:"!border-none",shadow:"never"},{default:u(()=>[e(z,{ref:"formRef",class:"mb-[-16px] mt-[16px]",model:t(o),inline:!0},{default:u(()=>[e(f,{label:"\u9000\u6B3E\u5355\u53F7"},{default:u(()=>[e(w,{class:"w-[280px]",modelValue:t(o).sn,"onUpdate:modelValue":n[0]||(n[0]=a=>t(o).sn=a),placeholder:"\u8BF7\u8F93\u5165\u9000\u6B3E\u5355\u53F7",clearable:"",onKeyup:D(t(g),["enter"])},null,8,["modelValue","onKeyup"])]),_:1}),e(f,{label:"\u6765\u6E90\u5355\u53F7"},{default:u(()=>[e(w,{class:"w-[280px]",modelValue:t(o).order_sn,"onUpdate:modelValue":n[1]||(n[1]=a=>t(o).order_sn=a),placeholder:"\u8BF7\u8F93\u5165\u6765\u6E90\u5355\u53F7",clearable:"",onKeyup:D(t(g),["enter"])},null,8,["modelValue","onKeyup"])]),_:1}),e(f,{label:"\u7528\u6237\u4FE1\u606F"},{default:u(()=>[e(w,{class:"w-[280px]",modelValue:t(o).user_info,"onUpdate:modelValue":n[2]||(n[2]=a=>t(o).user_info=a),placeholder:"\u8BF7\u8F93\u5165\u7528\u6237\u4FE1\u606F",clearable:"",onKeyup:D(t(g),["enter"])},null,8,["modelValue","onKeyup"])]),_:1}),e(f,{label:"\u9000\u6B3E\u7C7B\u578B"},{default:u(()=>[e(Q,{class:"w-[280px]",modelValue:t(o).refund_type,"onUpdate:modelValue":n[3]||(n[3]=a=>t(o).refund_type=a)},{default:u(()=>[e(R,{label:"\u5168\u90E8",value:""}),e(R,{label:"\u540E\u53F0\u9000\u6B3E",value:1})]),_:1},8,["modelValue"])]),_:1}),e(f,{label:"\u8BB0\u5F55\u65F6\u95F4"},{default:u(()=>[e(q,{startTime:t(o).start_time,"onUpdate:startTime":n[4]||(n[4]=a=>t(o).start_time=a),endTime:t(o).end_time,"onUpdate:endTime":n[5]||(n[5]=a=>t(o).end_time=a)},null,8,["startTime","endTime"])]),_:1}),e(f,null,{default:u(()=>[e(B,{type:"primary",onClick:t(g)},{default:u(()=>[d("\u67E5\u8BE2")]),_:1},8,["onClick"]),e(B,{onClick:t(I)},{default:u(()=>[d("\u91CD\u7F6E")]),_:1},8,["onClick"])]),_:1})]),_:1},8,["model"])]),_:1}),e(x,{class:"!border-none mt-4",shadow:"never"},{default:u(()=>[e(W,{modelValue:t(F),"onUpdate:modelValue":n[6]||(n[6]=a=>V(F)?F.value=a:null),onTabChange:M},{default:u(()=>[(r(!0),A(ye,null,Be(t(K),(a,$)=>{var P;return r(),p(J,{label:`${a.name}(${(P=t(c).extend[a.numKey])!=null?P:0})`,name:$,key:$},{default:u(()=>[k((r(),p(H,{size:"large",data:t(c).lists},{default:u(()=>[e(_,{label:"\u9000\u6B3E\u5355\u53F7",prop:"sn","min-width":"190"}),e(_,{label:"\u7528\u6237\u4FE1\u606F","min-width":"160"},{default:u(({row:l})=>[s("div",Ae,[e(G,{class:"flex-none mr-2",src:l.avatar,width:40,height:40,"preview-teleported":"",fit:"contain"},null,8,["src"]),d(" "+i(l.nickname),1)])]),_:1}),e(_,{label:"\u6765\u6E90\u5355\u53F7",prop:"order_sn","min-width":"190"}),e(_,{label:"\u9000\u6B3E\u91D1\u989D","min-width":"100"},{default:u(({row:l})=>[d(" \xA5 "+i(l.refund_amount),1)]),_:1}),e(_,{label:"\u9000\u6B3E\u7C7B\u578B",prop:"refund_type_text","min-width":"100"}),e(_,{label:"\u9000\u6B3E\u72B6\u6001",prop:"","min-width":"100"},{default:u(({row:l})=>[l.refund_status==0?(r(),p(C,{key:0,type:"warning"},{default:u(()=>[d(i(l.refund_status_text),1)]),_:2},1024)):v("",!0),l.refund_status==1?(r(),p(C,{key:1},{default:u(()=>[d(i(l.refund_status_text),1)]),_:2},1024)):v("",!0),l.refund_status==2?(r(),p(C,{key:2,type:"danger"},{default:u(()=>[d(i(l.refund_status_text),1)]),_:2},1024)):v("",!0)]),_:1}),e(_,{label:"\u8BB0\u5F55\u65F6\u95F4",prop:"create_time","min-width":"180"}),e(_,{label:"\u64CD\u4F5C",width:"180",fixed:"right"},{default:u(({row:l})=>[k((r(),p(B,{type:"primary",link:"",onClick:Z=>j(l.id)},{default:u(()=>[d(" \u9000\u6B3E\u65E5\u5FD7 ")]),_:2},1032,["onClick"])),[[L,["finance.refund/log"]]]),l.refund_status==2?k((r(),p(B,{key:0,type:"primary",link:"",onClick:Z=>O(l.id)},{default:u(()=>[d(" \u91CD\u65B0\u9000\u6B3E ")]),_:2},1032,["onClick"])),[[L,["recharge.recharge/refundAgain"]]]):v("",!0)]),_:1})]),_:1},8,["data"])),[[Y,t(c).loading]])]),_:2},1032,["label","name"])}),128))]),_:1},8,["modelValue"]),s("div",Ne,[e(X,{modelValue:t(c),"onUpdate:modelValue":n[7]||(n[7]=a=>V(c)?c.value=a:null),onChange:t(h)},null,8,["modelValue","onChange"])])]),_:1}),e(xe,{modelValue:t(y),"onUpdate:modelValue":n[8]||(n[8]=a=>V(y)?y.value=a:null),"refund-id":t(T)},null,8,["modelValue","refund-id"])])}}});export{Dt as default}; diff --git a/public/admin/assets/refund_record.47998da0.js b/public/admin/assets/refund_record.47998da0.js new file mode 100644 index 000000000..6e47447a6 --- /dev/null +++ b/public/admin/assets/refund_record.47998da0.js @@ -0,0 +1 @@ +import{a6 as ee,x as te,y as ue,I as ae,B as ne,C as oe,M as le,N as se,w as re,D as ie,O as de,P as me,Q as _e}from"./element-plus.4328d892.js";import{_ as pe}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{f as ce,_ as fe}from"./index.ed71ac09.js";import{_ as Ee}from"./index.vue_vue_type_script_setup_true_lang.3ab411d6.js";import{d as N,$ as S,r as b,af as ge,o as r,c as A,U as e,L as u,a as s,S as i,u as t,a8 as D,R as d,k as V,T as ye,a7 as Be,K as p,M as k,Q as v}from"./@vue.51d7f2d8.js";import{e as be,f as ve,h as Fe}from"./finance.5215ca02.js";import{u as he}from"./usePaging.2ad8e1e6.js";import{_ as xe}from"./refund-log.vue_vue_type_script_setup_true_lang.9cd304d5.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const we={class:"flex flex-wrap"},Ce={class:"w-1/2 md:w-1/4"},De=s("div",{class:"leading-10"},"\u7D2F\u8BA1\u9000\u6B3E\u91D1\u989D (\u5143)",-1),Ve={class:"text-6xl"},ke={class:"w-1/2 md:w-1/4"},Te=s("div",{class:"leading-10"},"\u9000\u6B3E\u4E2D\u91D1\u989D (\u5143)",-1),Ke={class:"text-6xl"},Ue={class:"w-1/2 md:w-1/4"},Re=s("div",{class:"leading-10"},"\u9000\u6B3E\u6210\u529F\u91D1\u989D (\u5143)",-1),Le={class:"text-6xl"},$e={class:"w-1/2 md:w-1/4"},Pe=s("div",{class:"leading-10"},"\u9000\u6B3E\u5931\u8D25\u91D1\u989D (\u5143)",-1),Se={class:"text-6xl"},Ae={class:"flex items-center"},Ne={class:"flex justify-end mt-4"},Ie=N({name:"articleLists"}),Dt=N({...Ie,setup(Oe){const o=S({sn:"",order_sn:"",user_info:"",refund_type:"",start_time:"",end_time:"",refund_status:""}),E=S({total:0,ing:0,success:0,error:0}),y=b(!1),T=b(0),F=b(0),K=b([{name:"\u5168\u90E8",type:"",numKey:"total"},{name:"\u9000\u6B3E\u4E2D",type:0,numKey:"ing"},{name:"\u9000\u6B3E\u6210\u529F",type:1,numKey:"success"},{name:"\u9000\u6B3E\u5931\u8D25",type:2,numKey:"error"}]),{pager:c,getLists:h,resetPage:g,resetParams:I}=he({fetchFun:Fe,params:o}),O=async m=>{await ce.confirm("\u786E\u8BA4\u91CD\u65B0\u9000\u6B3E\uFF1F"),await be({record_id:m}),h(),U()},j=async m=>{y.value=!0,T.value=m},M=m=>{o.refund_status=K.value[m].type,g()},U=async()=>{const m=await ve();Object.assign(E,m)};return U(),h(),(m,n)=>{const x=ae,w=ne,f=oe,R=le,Q=se,q=Ee,B=re,z=ie,_=de,G=fe,C=ee,H=me,J=te,W=ue,X=pe,L=ge("perms"),Y=_e;return r(),A("div",null,[e(x,{class:"!border-none mb-4",shadow:"never"},{default:u(()=>[s("div",we,[s("div",Ce,[De,s("div",Ve,i(t(E).total),1)]),s("div",ke,[Te,s("div",Ke,i(t(E).ing),1)]),s("div",Ue,[Re,s("div",Le,i(t(E).success),1)]),s("div",$e,[Pe,s("div",Se,i(t(E).error),1)])])]),_:1}),e(x,{class:"!border-none",shadow:"never"},{default:u(()=>[e(z,{ref:"formRef",class:"mb-[-16px] mt-[16px]",model:t(o),inline:!0},{default:u(()=>[e(f,{label:"\u9000\u6B3E\u5355\u53F7"},{default:u(()=>[e(w,{class:"w-[280px]",modelValue:t(o).sn,"onUpdate:modelValue":n[0]||(n[0]=a=>t(o).sn=a),placeholder:"\u8BF7\u8F93\u5165\u9000\u6B3E\u5355\u53F7",clearable:"",onKeyup:D(t(g),["enter"])},null,8,["modelValue","onKeyup"])]),_:1}),e(f,{label:"\u6765\u6E90\u5355\u53F7"},{default:u(()=>[e(w,{class:"w-[280px]",modelValue:t(o).order_sn,"onUpdate:modelValue":n[1]||(n[1]=a=>t(o).order_sn=a),placeholder:"\u8BF7\u8F93\u5165\u6765\u6E90\u5355\u53F7",clearable:"",onKeyup:D(t(g),["enter"])},null,8,["modelValue","onKeyup"])]),_:1}),e(f,{label:"\u7528\u6237\u4FE1\u606F"},{default:u(()=>[e(w,{class:"w-[280px]",modelValue:t(o).user_info,"onUpdate:modelValue":n[2]||(n[2]=a=>t(o).user_info=a),placeholder:"\u8BF7\u8F93\u5165\u7528\u6237\u4FE1\u606F",clearable:"",onKeyup:D(t(g),["enter"])},null,8,["modelValue","onKeyup"])]),_:1}),e(f,{label:"\u9000\u6B3E\u7C7B\u578B"},{default:u(()=>[e(Q,{class:"w-[280px]",modelValue:t(o).refund_type,"onUpdate:modelValue":n[3]||(n[3]=a=>t(o).refund_type=a)},{default:u(()=>[e(R,{label:"\u5168\u90E8",value:""}),e(R,{label:"\u540E\u53F0\u9000\u6B3E",value:1})]),_:1},8,["modelValue"])]),_:1}),e(f,{label:"\u8BB0\u5F55\u65F6\u95F4"},{default:u(()=>[e(q,{startTime:t(o).start_time,"onUpdate:startTime":n[4]||(n[4]=a=>t(o).start_time=a),endTime:t(o).end_time,"onUpdate:endTime":n[5]||(n[5]=a=>t(o).end_time=a)},null,8,["startTime","endTime"])]),_:1}),e(f,null,{default:u(()=>[e(B,{type:"primary",onClick:t(g)},{default:u(()=>[d("\u67E5\u8BE2")]),_:1},8,["onClick"]),e(B,{onClick:t(I)},{default:u(()=>[d("\u91CD\u7F6E")]),_:1},8,["onClick"])]),_:1})]),_:1},8,["model"])]),_:1}),e(x,{class:"!border-none mt-4",shadow:"never"},{default:u(()=>[e(W,{modelValue:t(F),"onUpdate:modelValue":n[6]||(n[6]=a=>V(F)?F.value=a:null),onTabChange:M},{default:u(()=>[(r(!0),A(ye,null,Be(t(K),(a,$)=>{var P;return r(),p(J,{label:`${a.name}(${(P=t(c).extend[a.numKey])!=null?P:0})`,name:$,key:$},{default:u(()=>[k((r(),p(H,{size:"large",data:t(c).lists},{default:u(()=>[e(_,{label:"\u9000\u6B3E\u5355\u53F7",prop:"sn","min-width":"190"}),e(_,{label:"\u7528\u6237\u4FE1\u606F","min-width":"160"},{default:u(({row:l})=>[s("div",Ae,[e(G,{class:"flex-none mr-2",src:l.avatar,width:40,height:40,"preview-teleported":"",fit:"contain"},null,8,["src"]),d(" "+i(l.nickname),1)])]),_:1}),e(_,{label:"\u6765\u6E90\u5355\u53F7",prop:"order_sn","min-width":"190"}),e(_,{label:"\u9000\u6B3E\u91D1\u989D","min-width":"100"},{default:u(({row:l})=>[d(" \xA5 "+i(l.refund_amount),1)]),_:1}),e(_,{label:"\u9000\u6B3E\u7C7B\u578B",prop:"refund_type_text","min-width":"100"}),e(_,{label:"\u9000\u6B3E\u72B6\u6001",prop:"","min-width":"100"},{default:u(({row:l})=>[l.refund_status==0?(r(),p(C,{key:0,type:"warning"},{default:u(()=>[d(i(l.refund_status_text),1)]),_:2},1024)):v("",!0),l.refund_status==1?(r(),p(C,{key:1},{default:u(()=>[d(i(l.refund_status_text),1)]),_:2},1024)):v("",!0),l.refund_status==2?(r(),p(C,{key:2,type:"danger"},{default:u(()=>[d(i(l.refund_status_text),1)]),_:2},1024)):v("",!0)]),_:1}),e(_,{label:"\u8BB0\u5F55\u65F6\u95F4",prop:"create_time","min-width":"180"}),e(_,{label:"\u64CD\u4F5C",width:"180",fixed:"right"},{default:u(({row:l})=>[k((r(),p(B,{type:"primary",link:"",onClick:Z=>j(l.id)},{default:u(()=>[d(" \u9000\u6B3E\u65E5\u5FD7 ")]),_:2},1032,["onClick"])),[[L,["finance.refund/log"]]]),l.refund_status==2?k((r(),p(B,{key:0,type:"primary",link:"",onClick:Z=>O(l.id)},{default:u(()=>[d(" \u91CD\u65B0\u9000\u6B3E ")]),_:2},1032,["onClick"])),[[L,["recharge.recharge/refundAgain"]]]):v("",!0)]),_:1})]),_:1},8,["data"])),[[Y,t(c).loading]])]),_:2},1032,["label","name"])}),128))]),_:1},8,["modelValue"]),s("div",Ne,[e(X,{modelValue:t(c),"onUpdate:modelValue":n[7]||(n[7]=a=>V(c)?c.value=a:null),onChange:t(h)},null,8,["modelValue","onChange"])])]),_:1}),e(xe,{modelValue:t(y),"onUpdate:modelValue":n[8]||(n[8]=a=>V(y)?y.value=a:null),"refund-id":t(T)},null,8,["modelValue","refund-id"])])}}});export{Dt as default}; diff --git a/public/admin/assets/refund_record.843d0c8f.js b/public/admin/assets/refund_record.843d0c8f.js new file mode 100644 index 000000000..a253a8540 --- /dev/null +++ b/public/admin/assets/refund_record.843d0c8f.js @@ -0,0 +1 @@ +import{a6 as ee,x as te,y as ue,I as ae,B as ne,C as oe,M as le,N as se,w as re,D as ie,O as de,P as me,Q as _e}from"./element-plus.4328d892.js";import{_ as pe}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{f as ce,_ as fe}from"./index.aa9bb752.js";import{_ as Ee}from"./index.vue_vue_type_script_setup_true_lang.3ab411d6.js";import{d as N,$ as S,r as b,af as ge,o as r,c as A,U as e,L as u,a as s,S as i,u as t,a8 as D,R as d,k as V,T as ye,a7 as Be,K as p,M as k,Q as v}from"./@vue.51d7f2d8.js";import{e as be,f as ve,h as Fe}from"./finance.ec5ac162.js";import{u as he}from"./usePaging.2ad8e1e6.js";import{_ as xe}from"./refund-log.vue_vue_type_script_setup_true_lang.7db4e288.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const we={class:"flex flex-wrap"},Ce={class:"w-1/2 md:w-1/4"},De=s("div",{class:"leading-10"},"\u7D2F\u8BA1\u9000\u6B3E\u91D1\u989D (\u5143)",-1),Ve={class:"text-6xl"},ke={class:"w-1/2 md:w-1/4"},Te=s("div",{class:"leading-10"},"\u9000\u6B3E\u4E2D\u91D1\u989D (\u5143)",-1),Ke={class:"text-6xl"},Ue={class:"w-1/2 md:w-1/4"},Re=s("div",{class:"leading-10"},"\u9000\u6B3E\u6210\u529F\u91D1\u989D (\u5143)",-1),Le={class:"text-6xl"},$e={class:"w-1/2 md:w-1/4"},Pe=s("div",{class:"leading-10"},"\u9000\u6B3E\u5931\u8D25\u91D1\u989D (\u5143)",-1),Se={class:"text-6xl"},Ae={class:"flex items-center"},Ne={class:"flex justify-end mt-4"},Ie=N({name:"articleLists"}),Dt=N({...Ie,setup(Oe){const o=S({sn:"",order_sn:"",user_info:"",refund_type:"",start_time:"",end_time:"",refund_status:""}),E=S({total:0,ing:0,success:0,error:0}),y=b(!1),T=b(0),F=b(0),K=b([{name:"\u5168\u90E8",type:"",numKey:"total"},{name:"\u9000\u6B3E\u4E2D",type:0,numKey:"ing"},{name:"\u9000\u6B3E\u6210\u529F",type:1,numKey:"success"},{name:"\u9000\u6B3E\u5931\u8D25",type:2,numKey:"error"}]),{pager:c,getLists:h,resetPage:g,resetParams:I}=he({fetchFun:Fe,params:o}),O=async m=>{await ce.confirm("\u786E\u8BA4\u91CD\u65B0\u9000\u6B3E\uFF1F"),await be({record_id:m}),h(),U()},j=async m=>{y.value=!0,T.value=m},M=m=>{o.refund_status=K.value[m].type,g()},U=async()=>{const m=await ve();Object.assign(E,m)};return U(),h(),(m,n)=>{const x=ae,w=ne,f=oe,R=le,Q=se,q=Ee,B=re,z=ie,_=de,G=fe,C=ee,H=me,J=te,W=ue,X=pe,L=ge("perms"),Y=_e;return r(),A("div",null,[e(x,{class:"!border-none mb-4",shadow:"never"},{default:u(()=>[s("div",we,[s("div",Ce,[De,s("div",Ve,i(t(E).total),1)]),s("div",ke,[Te,s("div",Ke,i(t(E).ing),1)]),s("div",Ue,[Re,s("div",Le,i(t(E).success),1)]),s("div",$e,[Pe,s("div",Se,i(t(E).error),1)])])]),_:1}),e(x,{class:"!border-none",shadow:"never"},{default:u(()=>[e(z,{ref:"formRef",class:"mb-[-16px] mt-[16px]",model:t(o),inline:!0},{default:u(()=>[e(f,{label:"\u9000\u6B3E\u5355\u53F7"},{default:u(()=>[e(w,{class:"w-[280px]",modelValue:t(o).sn,"onUpdate:modelValue":n[0]||(n[0]=a=>t(o).sn=a),placeholder:"\u8BF7\u8F93\u5165\u9000\u6B3E\u5355\u53F7",clearable:"",onKeyup:D(t(g),["enter"])},null,8,["modelValue","onKeyup"])]),_:1}),e(f,{label:"\u6765\u6E90\u5355\u53F7"},{default:u(()=>[e(w,{class:"w-[280px]",modelValue:t(o).order_sn,"onUpdate:modelValue":n[1]||(n[1]=a=>t(o).order_sn=a),placeholder:"\u8BF7\u8F93\u5165\u6765\u6E90\u5355\u53F7",clearable:"",onKeyup:D(t(g),["enter"])},null,8,["modelValue","onKeyup"])]),_:1}),e(f,{label:"\u7528\u6237\u4FE1\u606F"},{default:u(()=>[e(w,{class:"w-[280px]",modelValue:t(o).user_info,"onUpdate:modelValue":n[2]||(n[2]=a=>t(o).user_info=a),placeholder:"\u8BF7\u8F93\u5165\u7528\u6237\u4FE1\u606F",clearable:"",onKeyup:D(t(g),["enter"])},null,8,["modelValue","onKeyup"])]),_:1}),e(f,{label:"\u9000\u6B3E\u7C7B\u578B"},{default:u(()=>[e(Q,{class:"w-[280px]",modelValue:t(o).refund_type,"onUpdate:modelValue":n[3]||(n[3]=a=>t(o).refund_type=a)},{default:u(()=>[e(R,{label:"\u5168\u90E8",value:""}),e(R,{label:"\u540E\u53F0\u9000\u6B3E",value:1})]),_:1},8,["modelValue"])]),_:1}),e(f,{label:"\u8BB0\u5F55\u65F6\u95F4"},{default:u(()=>[e(q,{startTime:t(o).start_time,"onUpdate:startTime":n[4]||(n[4]=a=>t(o).start_time=a),endTime:t(o).end_time,"onUpdate:endTime":n[5]||(n[5]=a=>t(o).end_time=a)},null,8,["startTime","endTime"])]),_:1}),e(f,null,{default:u(()=>[e(B,{type:"primary",onClick:t(g)},{default:u(()=>[d("\u67E5\u8BE2")]),_:1},8,["onClick"]),e(B,{onClick:t(I)},{default:u(()=>[d("\u91CD\u7F6E")]),_:1},8,["onClick"])]),_:1})]),_:1},8,["model"])]),_:1}),e(x,{class:"!border-none mt-4",shadow:"never"},{default:u(()=>[e(W,{modelValue:t(F),"onUpdate:modelValue":n[6]||(n[6]=a=>V(F)?F.value=a:null),onTabChange:M},{default:u(()=>[(r(!0),A(ye,null,Be(t(K),(a,$)=>{var P;return r(),p(J,{label:`${a.name}(${(P=t(c).extend[a.numKey])!=null?P:0})`,name:$,key:$},{default:u(()=>[k((r(),p(H,{size:"large",data:t(c).lists},{default:u(()=>[e(_,{label:"\u9000\u6B3E\u5355\u53F7",prop:"sn","min-width":"190"}),e(_,{label:"\u7528\u6237\u4FE1\u606F","min-width":"160"},{default:u(({row:l})=>[s("div",Ae,[e(G,{class:"flex-none mr-2",src:l.avatar,width:40,height:40,"preview-teleported":"",fit:"contain"},null,8,["src"]),d(" "+i(l.nickname),1)])]),_:1}),e(_,{label:"\u6765\u6E90\u5355\u53F7",prop:"order_sn","min-width":"190"}),e(_,{label:"\u9000\u6B3E\u91D1\u989D","min-width":"100"},{default:u(({row:l})=>[d(" \xA5 "+i(l.refund_amount),1)]),_:1}),e(_,{label:"\u9000\u6B3E\u7C7B\u578B",prop:"refund_type_text","min-width":"100"}),e(_,{label:"\u9000\u6B3E\u72B6\u6001",prop:"","min-width":"100"},{default:u(({row:l})=>[l.refund_status==0?(r(),p(C,{key:0,type:"warning"},{default:u(()=>[d(i(l.refund_status_text),1)]),_:2},1024)):v("",!0),l.refund_status==1?(r(),p(C,{key:1},{default:u(()=>[d(i(l.refund_status_text),1)]),_:2},1024)):v("",!0),l.refund_status==2?(r(),p(C,{key:2,type:"danger"},{default:u(()=>[d(i(l.refund_status_text),1)]),_:2},1024)):v("",!0)]),_:1}),e(_,{label:"\u8BB0\u5F55\u65F6\u95F4",prop:"create_time","min-width":"180"}),e(_,{label:"\u64CD\u4F5C",width:"180",fixed:"right"},{default:u(({row:l})=>[k((r(),p(B,{type:"primary",link:"",onClick:Z=>j(l.id)},{default:u(()=>[d(" \u9000\u6B3E\u65E5\u5FD7 ")]),_:2},1032,["onClick"])),[[L,["finance.refund/log"]]]),l.refund_status==2?k((r(),p(B,{key:0,type:"primary",link:"",onClick:Z=>O(l.id)},{default:u(()=>[d(" \u91CD\u65B0\u9000\u6B3E ")]),_:2},1032,["onClick"])),[[L,["recharge.recharge/refundAgain"]]]):v("",!0)]),_:1})]),_:1},8,["data"])),[[Y,t(c).loading]])]),_:2},1032,["label","name"])}),128))]),_:1},8,["modelValue"]),s("div",Ne,[e(X,{modelValue:t(c),"onUpdate:modelValue":n[7]||(n[7]=a=>V(c)?c.value=a:null),onChange:t(h)},null,8,["modelValue","onChange"])])]),_:1}),e(xe,{modelValue:t(y),"onUpdate:modelValue":n[8]||(n[8]=a=>V(y)?y.value=a:null),"refund-id":t(T)},null,8,["modelValue","refund-id"])])}}});export{Dt as default}; diff --git a/public/admin/assets/relations-add.13b2fe78.js b/public/admin/assets/relations-add.13b2fe78.js new file mode 100644 index 000000000..831835d7e --- /dev/null +++ b/public/admin/assets/relations-add.13b2fe78.js @@ -0,0 +1 @@ +import"./relations-add.vue_vue_type_script_setup_true_lang.6e9422b0.js";import{_ as P}from"./relations-add.vue_vue_type_script_setup_true_lang.6e9422b0.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.b940d6e3.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.ed71ac09.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./useDictOptions.8d37e54b.js";import"./code.7deeaac3.js";export{P as default}; diff --git a/public/admin/assets/relations-add.d53d1b12.js b/public/admin/assets/relations-add.d53d1b12.js new file mode 100644 index 000000000..f04abc4a7 --- /dev/null +++ b/public/admin/assets/relations-add.d53d1b12.js @@ -0,0 +1 @@ +import"./relations-add.vue_vue_type_script_setup_true_lang.c08acc61.js";import{_ as P}from"./relations-add.vue_vue_type_script_setup_true_lang.c08acc61.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.fa872673.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.aa9bb752.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./useDictOptions.a61fcf9f.js";import"./code.1f2ae5c5.js";export{P as default}; diff --git a/public/admin/assets/relations-add.f24c068e.js b/public/admin/assets/relations-add.f24c068e.js new file mode 100644 index 000000000..06aa7202f --- /dev/null +++ b/public/admin/assets/relations-add.f24c068e.js @@ -0,0 +1 @@ +import"./relations-add.vue_vue_type_script_setup_true_lang.2c698198.js";import{_ as P}from"./relations-add.vue_vue_type_script_setup_true_lang.2c698198.js";import"./element-plus.4328d892.js";import"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.5759a1a6.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.37f7aea6.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./useDictOptions.a45fc8ac.js";import"./code.2b4ea8b1.js";export{P as default}; diff --git a/public/admin/assets/relations-add.vue_vue_type_script_setup_true_lang.2c698198.js b/public/admin/assets/relations-add.vue_vue_type_script_setup_true_lang.2c698198.js new file mode 100644 index 000000000..bcf1e8f53 --- /dev/null +++ b/public/admin/assets/relations-add.vue_vue_type_script_setup_true_lang.2c698198.js @@ -0,0 +1 @@ +import{M as w,N as h,C as $,B as I,D as L}from"./element-plus.4328d892.js";import{P as M}from"./index.5759a1a6.js";import{a as N}from"./useDictOptions.a45fc8ac.js";import{a as O}from"./code.2b4ea8b1.js";import{d as P,s as v,r as S,e as T,$ as K,o as r,c as d,U as a,L as t,u as o,T as i,a7 as _,K as y}from"./@vue.51d7f2d8.js";const j={class:"edit-popup"},W=P({__name:"relations-add",props:{column:{type:Array,default:()=>[]},types:{type:Array,default:()=>[]}},emits:["add","close","edit"],setup(F,{expose:V,emit:B}){const k=v(),m=v(),p=S("add"),b=T(()=>p.value=="edit"?"\u7F16\u8F91\u5173\u8054":"\u65B0\u589E\u5173\u8054"),l=K({name:"",model:"",type:"",local_key:"",foreign_key:""}),g={name:[{required:!0,message:"\u8BF7\u8F93\u5165\u5173\u8054\u540D\u79F0"}],type:[{required:!0,message:"\u8BF7\u9009\u62E9\u5173\u8054\u7C7B\u578B"}],model:[{required:!0,message:"\u8BF7\u9009\u62E9\u5173\u8054\u6A21\u578B"}],local_key:[{required:!0,message:"\u8BF7\u9009\u62E9\u5173\u8054\u5065"}],foreign_key:[{required:!0,message:"\u8BF7\u8F93\u5165\u5916\u952E"}]},{optionsData:x}=N({models:{api:O}}),C=async()=>{var n,e;await((n=k.value)==null?void 0:n.validate()),(e=m.value)==null||e.close(),B(p.value,l)},D=(n="add")=>{var e;p.value=n,(e=m.value)==null||e.open()},A=n=>{for(const e in l)n[e]!=null&&n[e]!=null&&(l[e]=n[e])},R=()=>{B("close")};return V({open:D,setFormData:A}),(n,e)=>{const f=w,c=h,s=$,E=I,U=L;return r(),d("div",j,[a(M,{ref_key:"popupRef",ref:m,title:o(b),async:!0,width:"550px",onConfirm:C,onClose:R},{default:t(()=>[a(U,{ref_key:"formRef",ref:k,model:o(l),"label-width":"84px",rules:g},{default:t(()=>[a(s,{label:"\u5173\u8054\u7C7B\u578B",prop:"type"},{default:t(()=>[a(c,{class:"flex-1",modelValue:o(l).type,"onUpdate:modelValue":e[0]||(e[0]=u=>o(l).type=u),placeholder:"\u8BF7\u9009\u62E9\u5173\u8054\u7C7B\u578B"},{default:t(()=>[(r(!0),d(i,null,_(F.types,(u,q)=>(r(),y(f,{key:q,label:u.name,value:u.value},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1}),a(s,{label:"\u5173\u8054\u540D\u79F0",prop:"name"},{default:t(()=>[a(E,{modelValue:o(l).name,"onUpdate:modelValue":e[1]||(e[1]=u=>o(l).name=u),placeholder:"\u8BF7\u8F93\u5165\u5173\u8054\u540D\u79F0"},null,8,["modelValue"])]),_:1}),a(s,{label:"\u5173\u8054\u6A21\u578B",prop:"model"},{default:t(()=>[a(c,{class:"flex-1",modelValue:o(l).model,"onUpdate:modelValue":e[2]||(e[2]=u=>o(l).model=u),placeholder:"\u8BF7\u9009\u62E9\u5173\u8054\u6A21\u578B"},{default:t(()=>[(r(!0),d(i,null,_(o(x).models,u=>(r(),y(f,{label:u,value:u,key:u},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1}),a(s,{label:"\u5173\u8054\u5065",prop:"local_key"},{default:t(()=>[a(c,{class:"flex-1",modelValue:o(l).local_key,"onUpdate:modelValue":e[3]||(e[3]=u=>o(l).local_key=u),clearable:"",placeholder:"\u8BF7\u9009\u62E9\u5173\u8054\u5065"},{default:t(()=>[(r(!0),d(i,null,_(F.column,u=>(r(),y(f,{key:u.id,value:u.column_name,label:`${u.column_name}\uFF1A${u.column_comment}`},null,8,["value","label"]))),128))]),_:1},8,["modelValue"])]),_:1}),a(s,{label:"\u5916\u952E",prop:"foreign_key"},{default:t(()=>[a(E,{modelValue:o(l).foreign_key,"onUpdate:modelValue":e[4]||(e[4]=u=>o(l).foreign_key=u),placeholder:"\u5173\u8054\u8868\u5916\u952E\u6216\u4E2D\u95F4\u8868\u7684\u5916\u952E"},null,8,["modelValue"])]),_:1})]),_:1},8,["model"])]),_:1},8,["title"])])}}});export{W as _}; diff --git a/public/admin/assets/relations-add.vue_vue_type_script_setup_true_lang.6e9422b0.js b/public/admin/assets/relations-add.vue_vue_type_script_setup_true_lang.6e9422b0.js new file mode 100644 index 000000000..fede7957c --- /dev/null +++ b/public/admin/assets/relations-add.vue_vue_type_script_setup_true_lang.6e9422b0.js @@ -0,0 +1 @@ +import{M as w,N as h,C as $,B as I,D as L}from"./element-plus.4328d892.js";import{P as M}from"./index.b940d6e3.js";import{a as N}from"./useDictOptions.8d37e54b.js";import{a as O}from"./code.7deeaac3.js";import{d as P,s as v,r as S,e as T,$ as K,o as r,c as d,U as a,L as t,u as o,T as i,a7 as _,K as y}from"./@vue.51d7f2d8.js";const j={class:"edit-popup"},W=P({__name:"relations-add",props:{column:{type:Array,default:()=>[]},types:{type:Array,default:()=>[]}},emits:["add","close","edit"],setup(F,{expose:V,emit:B}){const k=v(),m=v(),p=S("add"),b=T(()=>p.value=="edit"?"\u7F16\u8F91\u5173\u8054":"\u65B0\u589E\u5173\u8054"),l=K({name:"",model:"",type:"",local_key:"",foreign_key:""}),g={name:[{required:!0,message:"\u8BF7\u8F93\u5165\u5173\u8054\u540D\u79F0"}],type:[{required:!0,message:"\u8BF7\u9009\u62E9\u5173\u8054\u7C7B\u578B"}],model:[{required:!0,message:"\u8BF7\u9009\u62E9\u5173\u8054\u6A21\u578B"}],local_key:[{required:!0,message:"\u8BF7\u9009\u62E9\u5173\u8054\u5065"}],foreign_key:[{required:!0,message:"\u8BF7\u8F93\u5165\u5916\u952E"}]},{optionsData:x}=N({models:{api:O}}),C=async()=>{var n,e;await((n=k.value)==null?void 0:n.validate()),(e=m.value)==null||e.close(),B(p.value,l)},D=(n="add")=>{var e;p.value=n,(e=m.value)==null||e.open()},A=n=>{for(const e in l)n[e]!=null&&n[e]!=null&&(l[e]=n[e])},R=()=>{B("close")};return V({open:D,setFormData:A}),(n,e)=>{const f=w,c=h,s=$,E=I,U=L;return r(),d("div",j,[a(M,{ref_key:"popupRef",ref:m,title:o(b),async:!0,width:"550px",onConfirm:C,onClose:R},{default:t(()=>[a(U,{ref_key:"formRef",ref:k,model:o(l),"label-width":"84px",rules:g},{default:t(()=>[a(s,{label:"\u5173\u8054\u7C7B\u578B",prop:"type"},{default:t(()=>[a(c,{class:"flex-1",modelValue:o(l).type,"onUpdate:modelValue":e[0]||(e[0]=u=>o(l).type=u),placeholder:"\u8BF7\u9009\u62E9\u5173\u8054\u7C7B\u578B"},{default:t(()=>[(r(!0),d(i,null,_(F.types,(u,q)=>(r(),y(f,{key:q,label:u.name,value:u.value},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1}),a(s,{label:"\u5173\u8054\u540D\u79F0",prop:"name"},{default:t(()=>[a(E,{modelValue:o(l).name,"onUpdate:modelValue":e[1]||(e[1]=u=>o(l).name=u),placeholder:"\u8BF7\u8F93\u5165\u5173\u8054\u540D\u79F0"},null,8,["modelValue"])]),_:1}),a(s,{label:"\u5173\u8054\u6A21\u578B",prop:"model"},{default:t(()=>[a(c,{class:"flex-1",modelValue:o(l).model,"onUpdate:modelValue":e[2]||(e[2]=u=>o(l).model=u),placeholder:"\u8BF7\u9009\u62E9\u5173\u8054\u6A21\u578B"},{default:t(()=>[(r(!0),d(i,null,_(o(x).models,u=>(r(),y(f,{label:u,value:u,key:u},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1}),a(s,{label:"\u5173\u8054\u5065",prop:"local_key"},{default:t(()=>[a(c,{class:"flex-1",modelValue:o(l).local_key,"onUpdate:modelValue":e[3]||(e[3]=u=>o(l).local_key=u),clearable:"",placeholder:"\u8BF7\u9009\u62E9\u5173\u8054\u5065"},{default:t(()=>[(r(!0),d(i,null,_(F.column,u=>(r(),y(f,{key:u.id,value:u.column_name,label:`${u.column_name}\uFF1A${u.column_comment}`},null,8,["value","label"]))),128))]),_:1},8,["modelValue"])]),_:1}),a(s,{label:"\u5916\u952E",prop:"foreign_key"},{default:t(()=>[a(E,{modelValue:o(l).foreign_key,"onUpdate:modelValue":e[4]||(e[4]=u=>o(l).foreign_key=u),placeholder:"\u5173\u8054\u8868\u5916\u952E\u6216\u4E2D\u95F4\u8868\u7684\u5916\u952E"},null,8,["modelValue"])]),_:1})]),_:1},8,["model"])]),_:1},8,["title"])])}}});export{W as _}; diff --git a/public/admin/assets/relations-add.vue_vue_type_script_setup_true_lang.c08acc61.js b/public/admin/assets/relations-add.vue_vue_type_script_setup_true_lang.c08acc61.js new file mode 100644 index 000000000..8486f4bfa --- /dev/null +++ b/public/admin/assets/relations-add.vue_vue_type_script_setup_true_lang.c08acc61.js @@ -0,0 +1 @@ +import{M as w,N as h,C as $,B as I,D as L}from"./element-plus.4328d892.js";import{P as M}from"./index.fa872673.js";import{a as N}from"./useDictOptions.a61fcf9f.js";import{a as O}from"./code.1f2ae5c5.js";import{d as P,s as v,r as S,e as T,$ as K,o as r,c as d,U as a,L as t,u as o,T as i,a7 as _,K as y}from"./@vue.51d7f2d8.js";const j={class:"edit-popup"},W=P({__name:"relations-add",props:{column:{type:Array,default:()=>[]},types:{type:Array,default:()=>[]}},emits:["add","close","edit"],setup(F,{expose:V,emit:B}){const k=v(),m=v(),p=S("add"),b=T(()=>p.value=="edit"?"\u7F16\u8F91\u5173\u8054":"\u65B0\u589E\u5173\u8054"),l=K({name:"",model:"",type:"",local_key:"",foreign_key:""}),g={name:[{required:!0,message:"\u8BF7\u8F93\u5165\u5173\u8054\u540D\u79F0"}],type:[{required:!0,message:"\u8BF7\u9009\u62E9\u5173\u8054\u7C7B\u578B"}],model:[{required:!0,message:"\u8BF7\u9009\u62E9\u5173\u8054\u6A21\u578B"}],local_key:[{required:!0,message:"\u8BF7\u9009\u62E9\u5173\u8054\u5065"}],foreign_key:[{required:!0,message:"\u8BF7\u8F93\u5165\u5916\u952E"}]},{optionsData:x}=N({models:{api:O}}),C=async()=>{var n,e;await((n=k.value)==null?void 0:n.validate()),(e=m.value)==null||e.close(),B(p.value,l)},D=(n="add")=>{var e;p.value=n,(e=m.value)==null||e.open()},A=n=>{for(const e in l)n[e]!=null&&n[e]!=null&&(l[e]=n[e])},R=()=>{B("close")};return V({open:D,setFormData:A}),(n,e)=>{const f=w,c=h,s=$,E=I,U=L;return r(),d("div",j,[a(M,{ref_key:"popupRef",ref:m,title:o(b),async:!0,width:"550px",onConfirm:C,onClose:R},{default:t(()=>[a(U,{ref_key:"formRef",ref:k,model:o(l),"label-width":"84px",rules:g},{default:t(()=>[a(s,{label:"\u5173\u8054\u7C7B\u578B",prop:"type"},{default:t(()=>[a(c,{class:"flex-1",modelValue:o(l).type,"onUpdate:modelValue":e[0]||(e[0]=u=>o(l).type=u),placeholder:"\u8BF7\u9009\u62E9\u5173\u8054\u7C7B\u578B"},{default:t(()=>[(r(!0),d(i,null,_(F.types,(u,q)=>(r(),y(f,{key:q,label:u.name,value:u.value},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1}),a(s,{label:"\u5173\u8054\u540D\u79F0",prop:"name"},{default:t(()=>[a(E,{modelValue:o(l).name,"onUpdate:modelValue":e[1]||(e[1]=u=>o(l).name=u),placeholder:"\u8BF7\u8F93\u5165\u5173\u8054\u540D\u79F0"},null,8,["modelValue"])]),_:1}),a(s,{label:"\u5173\u8054\u6A21\u578B",prop:"model"},{default:t(()=>[a(c,{class:"flex-1",modelValue:o(l).model,"onUpdate:modelValue":e[2]||(e[2]=u=>o(l).model=u),placeholder:"\u8BF7\u9009\u62E9\u5173\u8054\u6A21\u578B"},{default:t(()=>[(r(!0),d(i,null,_(o(x).models,u=>(r(),y(f,{label:u,value:u,key:u},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1}),a(s,{label:"\u5173\u8054\u5065",prop:"local_key"},{default:t(()=>[a(c,{class:"flex-1",modelValue:o(l).local_key,"onUpdate:modelValue":e[3]||(e[3]=u=>o(l).local_key=u),clearable:"",placeholder:"\u8BF7\u9009\u62E9\u5173\u8054\u5065"},{default:t(()=>[(r(!0),d(i,null,_(F.column,u=>(r(),y(f,{key:u.id,value:u.column_name,label:`${u.column_name}\uFF1A${u.column_comment}`},null,8,["value","label"]))),128))]),_:1},8,["modelValue"])]),_:1}),a(s,{label:"\u5916\u952E",prop:"foreign_key"},{default:t(()=>[a(E,{modelValue:o(l).foreign_key,"onUpdate:modelValue":e[4]||(e[4]=u=>o(l).foreign_key=u),placeholder:"\u5173\u8054\u8868\u5916\u952E\u6216\u4E2D\u95F4\u8868\u7684\u5916\u952E"},null,8,["modelValue"])]),_:1})]),_:1},8,["model"])]),_:1},8,["title"])])}}});export{W as _}; diff --git a/public/admin/assets/rich_text.71317297.js b/public/admin/assets/rich_text.71317297.js new file mode 100644 index 000000000..e02553745 --- /dev/null +++ b/public/admin/assets/rich_text.71317297.js @@ -0,0 +1 @@ +import{I as l}from"./element-plus.4328d892.js";import{_ as n}from"./index.vue_vue_type_style_index_0_lang.60c96350.js";import{d as u,$ as s,o as d,c as _,U as r,L as a,u as m}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./@wangeditor.afd76521.js";import"./picker.3821e495.js";import"./index.5759a1a6.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.37f7aea6.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.af446662.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./index.fe1d30dd.js";import"./index.5f944d34.js";import"./index.vue_vue_type_script_setup_true_lang.dc835bba.js";import"./usePaging.2ad8e1e6.js";import"./vue3-video-play.b911321b.js";import"./vuedraggable.0cb40d3a.js";import"./vue.5de34049.js";import"./sortablejs.ef73fc5c.js";const so=u({__name:"rich_text",setup(c){const o=s({value1:"",value2:""});return(f,t)=>{const i=n,e=l;return d(),_("div",null,[r(e,{header:"\u57FA\u7840\u4F7F\u7528",shadow:"none",class:"!border-none"},{default:a(()=>[r(i,{modelValue:m(o).value1,"onUpdate:modelValue":t[0]||(t[0]=p=>m(o).value1=p),height:"500px"},null,8,["modelValue"])]),_:1}),r(e,{header:"\u7B80\u6D01\u6A21\u5F0F",shadow:"none",class:"!border-none mt-4"},{default:a(()=>[r(i,{modelValue:m(o).value2,"onUpdate:modelValue":t[1]||(t[1]=p=>m(o).value2=p),height:"500px",mode:"simple"},null,8,["modelValue"])]),_:1})])}}});export{so as default}; diff --git a/public/admin/assets/rich_text.a7121283.js b/public/admin/assets/rich_text.a7121283.js new file mode 100644 index 000000000..211d84cbb --- /dev/null +++ b/public/admin/assets/rich_text.a7121283.js @@ -0,0 +1 @@ +import{I as l}from"./element-plus.4328d892.js";import{_ as n}from"./index.vue_vue_type_style_index_0_lang.2f5b0088.js";import{d as u,$ as s,o as d,c as _,U as r,L as a,u as m}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./@wangeditor.afd76521.js";import"./picker.597494a6.js";import"./index.b940d6e3.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.ed71ac09.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.c38e1dd6.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./index.f2c7f81b.js";import"./index.9c616a0c.js";import"./index.vue_vue_type_script_setup_true_lang.dc835bba.js";import"./usePaging.2ad8e1e6.js";import"./vue3-video-play.b911321b.js";import"./vuedraggable.0cb40d3a.js";import"./vue.5de34049.js";import"./sortablejs.ef73fc5c.js";const so=u({__name:"rich_text",setup(c){const o=s({value1:"",value2:""});return(f,t)=>{const i=n,e=l;return d(),_("div",null,[r(e,{header:"\u57FA\u7840\u4F7F\u7528",shadow:"none",class:"!border-none"},{default:a(()=>[r(i,{modelValue:m(o).value1,"onUpdate:modelValue":t[0]||(t[0]=p=>m(o).value1=p),height:"500px"},null,8,["modelValue"])]),_:1}),r(e,{header:"\u7B80\u6D01\u6A21\u5F0F",shadow:"none",class:"!border-none mt-4"},{default:a(()=>[r(i,{modelValue:m(o).value2,"onUpdate:modelValue":t[1]||(t[1]=p=>m(o).value2=p),height:"500px",mode:"simple"},null,8,["modelValue"])]),_:1})])}}});export{so as default}; diff --git a/public/admin/assets/rich_text.c14adf8d.js b/public/admin/assets/rich_text.c14adf8d.js new file mode 100644 index 000000000..034f7680d --- /dev/null +++ b/public/admin/assets/rich_text.c14adf8d.js @@ -0,0 +1 @@ +import{I as l}from"./element-plus.4328d892.js";import{_ as n}from"./index.vue_vue_type_style_index_0_lang.8e405d58.js";import{d as u,$ as s,o as d,c as _,U as r,L as a,u as m}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./@wangeditor.afd76521.js";import"./picker.45aea54f.js";import"./index.fa872673.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.aa9bb752.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.c47e74f8.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./index.a9a11abe.js";import"./index.a450f1bb.js";import"./index.vue_vue_type_script_setup_true_lang.dc835bba.js";import"./usePaging.2ad8e1e6.js";import"./vue3-video-play.b911321b.js";import"./vuedraggable.0cb40d3a.js";import"./vue.5de34049.js";import"./sortablejs.ef73fc5c.js";const so=u({__name:"rich_text",setup(c){const o=s({value1:"",value2:""});return(f,t)=>{const i=n,e=l;return d(),_("div",null,[r(e,{header:"\u57FA\u7840\u4F7F\u7528",shadow:"none",class:"!border-none"},{default:a(()=>[r(i,{modelValue:m(o).value1,"onUpdate:modelValue":t[0]||(t[0]=p=>m(o).value1=p),height:"500px"},null,8,["modelValue"])]),_:1}),r(e,{header:"\u7B80\u6D01\u6A21\u5F0F",shadow:"none",class:"!border-none mt-4"},{default:a(()=>[r(i,{modelValue:m(o).value2,"onUpdate:modelValue":t[1]||(t[1]=p=>m(o).value2=p),height:"500px",mode:"simple"},null,8,["modelValue"])]),_:1})])}}});export{so as default}; diff --git a/public/admin/assets/role.1c72c4c7.js b/public/admin/assets/role.1c72c4c7.js new file mode 100644 index 000000000..9eae06036 --- /dev/null +++ b/public/admin/assets/role.1c72c4c7.js @@ -0,0 +1 @@ +import{r as t}from"./index.ed71ac09.js";function l(r){return t.get({url:"/auth.role/lists",params:r})}function o(r){return t.get({url:"/auth.role/all",params:r})}function u(r){return t.post({url:"/auth.role/add",params:r})}function n(r){return t.post({url:"/auth.role/edit",params:r})}function a(r){return t.post({url:"/auth.role/delete",params:r})}export{n as a,u as b,a as c,l as d,o as r}; diff --git a/public/admin/assets/role.41d5883e.js b/public/admin/assets/role.41d5883e.js new file mode 100644 index 000000000..b8f465774 --- /dev/null +++ b/public/admin/assets/role.41d5883e.js @@ -0,0 +1 @@ +import{r as t}from"./index.aa9bb752.js";function l(r){return t.get({url:"/auth.role/lists",params:r})}function o(r){return t.get({url:"/auth.role/all",params:r})}function u(r){return t.post({url:"/auth.role/add",params:r})}function n(r){return t.post({url:"/auth.role/edit",params:r})}function a(r){return t.post({url:"/auth.role/delete",params:r})}export{n as a,u as b,a as c,l as d,o as r}; diff --git a/public/admin/assets/role.8d2a6d5e.js b/public/admin/assets/role.8d2a6d5e.js new file mode 100644 index 000000000..ae6092d2a --- /dev/null +++ b/public/admin/assets/role.8d2a6d5e.js @@ -0,0 +1 @@ +import{r as t}from"./index.37f7aea6.js";function l(r){return t.get({url:"/auth.role/lists",params:r})}function o(r){return t.get({url:"/auth.role/all",params:r})}function u(r){return t.post({url:"/auth.role/add",params:r})}function n(r){return t.post({url:"/auth.role/edit",params:r})}function a(r){return t.post({url:"/auth.role/delete",params:r})}export{n as a,u as b,a as c,l as d,o as r}; diff --git a/public/admin/assets/setting.327adae0.js b/public/admin/assets/setting.327adae0.js new file mode 100644 index 000000000..1afe68627 --- /dev/null +++ b/public/admin/assets/setting.327adae0.js @@ -0,0 +1 @@ +import{_ as D}from"./index.fd04a214.js";import{C as v,B as b,D as h,I as U,w as y}from"./element-plus.4328d892.js";import{_ as k}from"./picker.3821e495.js";import{a as I,f as a,x}from"./index.37f7aea6.js";import{d as f,r as S,$ as _,o as M,c as N,U as u,L as t,u as e,a as n,R}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.5759a1a6.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.af446662.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./index.fe1d30dd.js";import"./index.5f944d34.js";import"./index.vue_vue_type_script_setup_true_lang.dc835bba.js";import"./usePaging.2ad8e1e6.js";import"./vue3-video-play.b911321b.js";import"./vuedraggable.0cb40d3a.js";import"./vue.5de34049.js";import"./sortablejs.ef73fc5c.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const q={class:"user-setting"},L={class:"w-80"},T={class:"w-80"},$={class:"w-80"},j={class:"w-80"},z={class:"w-80"},G=f({name:"userSetting"}),$o=f({...G,setup(H){const d=S(),i=I(),o=_({avatar:"",account:"",name:"",password_old:"",password:"",password_confirm:""}),c=_({avatar:[{required:!0,message:"\u5934\u50CF\u4E0D\u80FD\u4E3A\u7A7A",trigger:["change"]}],name:[{required:!0,message:"\u8BF7\u8F93\u5165\u540D\u79F0",trigger:["blur"]}]}),F=async()=>{const p=i.userInfo;for(const r in o)o[r]=p[r]},w=async()=>{if(o.password_old||o.password||o.password_confirm){if(!o.password_old)return a.msgError("\u8BF7\u8F93\u5165\u5F53\u524D\u5BC6\u7801");if(!o.password)return a.msgError("\u8BF7\u8F93\u5165\u65B0\u7684\u5BC6\u7801");if(!o.password_confirm)return a.msgError("\u8BF7\u8F93\u5165\u786E\u5B9A\u5BC6\u7801");if(o.password_confirm!=o.password)return a.msgError("\u4E24\u6B21\u8F93\u5165\u7684\u5BC6\u7801\u4E0D\u4E00\u6837")}if(o.password_old&&o.password&&o.password_confirm){if(o.password_old.length<6||o.password_old.length>32)return a.msgError("\u5BC6\u7801\u957F\u5EA6\u57286\u523032\u4E4B\u95F4");if(o.password.length<6||o.password.length>32)return a.msgError("\u5BC6\u7801\u957F\u5EA6\u57286\u523032\u4E4B\u95F4");if(o.password_confirm.length<6||o.password_confirm.length>32)return a.msgError("\u5BC6\u7801\u957F\u5EA6\u57286\u523032\u4E4B\u95F4")}await x(o),i.getUserInfo()},E=async()=>{var p;await((p=d.value)==null?void 0:p.validate()),w()};return F(),(p,r)=>{const B=k,l=v,m=b,g=h,C=U,V=y,A=D;return M(),N("div",q,[u(C,{class:"!border-none",shadow:"never"},{default:t(()=>[u(g,{ref_key:"formRef",ref:d,class:"ls-form",model:e(o),rules:e(c),"label-width":"100px"},{default:t(()=>[u(l,{label:"\u5934\u50CF\uFF1A",prop:"avatar"},{default:t(()=>[u(B,{modelValue:e(o).avatar,"onUpdate:modelValue":r[0]||(r[0]=s=>e(o).avatar=s),limit:1},null,8,["modelValue"])]),_:1}),u(l,{label:"\u8D26\u53F7\uFF1A",prop:"account"},{default:t(()=>[n("div",L,[u(m,{modelValue:e(o).account,"onUpdate:modelValue":r[1]||(r[1]=s=>e(o).account=s),disabled:""},null,8,["modelValue"])])]),_:1}),u(l,{label:"\u540D\u79F0\uFF1A",prop:"name"},{default:t(()=>[n("div",T,[u(m,{modelValue:e(o).name,"onUpdate:modelValue":r[2]||(r[2]=s=>e(o).name=s),placeholder:"\u8BF7\u8F93\u5165\u540D\u79F0"},null,8,["modelValue"])])]),_:1}),u(l,{label:"\u5F53\u524D\u5BC6\u7801\uFF1A",prop:"password_old"},{default:t(()=>[n("div",$,[u(m,{modelValue:e(o).password_old,"onUpdate:modelValue":r[3]||(r[3]=s=>e(o).password_old=s),modelModifiers:{trim:!0},placeholder:"\u4FEE\u6539\u5BC6\u7801\u65F6\u5FC5\u586B, \u4E0D\u4FEE\u6539\u5BC6\u7801\u65F6\u7559\u7A7A",type:"password","show-password":""},null,8,["modelValue"])])]),_:1}),u(l,{label:"\u65B0\u7684\u5BC6\u7801\uFF1A",prop:"password"},{default:t(()=>[n("div",j,[u(m,{modelValue:e(o).password,"onUpdate:modelValue":r[4]||(r[4]=s=>e(o).password=s),modelModifiers:{trim:!0},placeholder:"\u4FEE\u6539\u5BC6\u7801\u65F6\u5FC5\u586B, \u4E0D\u4FEE\u6539\u5BC6\u7801\u65F6\u7559\u7A7A",type:"password","show-password":""},null,8,["modelValue"])])]),_:1}),u(l,{label:"\u786E\u5B9A\u5BC6\u7801\uFF1A",prop:"password_confirm"},{default:t(()=>[n("div",z,[u(m,{modelValue:e(o).password_confirm,"onUpdate:modelValue":r[5]||(r[5]=s=>e(o).password_confirm=s),modelModifiers:{trim:!0},placeholder:"\u4FEE\u6539\u5BC6\u7801\u65F6\u5FC5\u586B, \u4E0D\u4FEE\u6539\u5BC6\u7801\u65F6\u7559\u7A7A",type:"password","show-password":""},null,8,["modelValue"])])]),_:1})]),_:1},8,["model","rules"])]),_:1}),u(A,null,{default:t(()=>[u(V,{type:"primary",onClick:E},{default:t(()=>[R("\u4FDD\u5B58")]),_:1})]),_:1})])}}});export{$o as default}; diff --git a/public/admin/assets/setting.82e33814.js b/public/admin/assets/setting.82e33814.js new file mode 100644 index 000000000..6efb1777c --- /dev/null +++ b/public/admin/assets/setting.82e33814.js @@ -0,0 +1 @@ +import{_ as D}from"./index.13ef78d6.js";import{C as v,B as b,D as h,I as U,w as y}from"./element-plus.4328d892.js";import{_ as k}from"./picker.45aea54f.js";import{a as I,f as a,x}from"./index.aa9bb752.js";import{d as f,r as S,$ as _,o as M,c as N,U as u,L as t,u as e,a as n,R}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.fa872673.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.c47e74f8.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./index.a9a11abe.js";import"./index.a450f1bb.js";import"./index.vue_vue_type_script_setup_true_lang.dc835bba.js";import"./usePaging.2ad8e1e6.js";import"./vue3-video-play.b911321b.js";import"./vuedraggable.0cb40d3a.js";import"./vue.5de34049.js";import"./sortablejs.ef73fc5c.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const q={class:"user-setting"},L={class:"w-80"},T={class:"w-80"},$={class:"w-80"},j={class:"w-80"},z={class:"w-80"},G=f({name:"userSetting"}),$o=f({...G,setup(H){const d=S(),i=I(),o=_({avatar:"",account:"",name:"",password_old:"",password:"",password_confirm:""}),c=_({avatar:[{required:!0,message:"\u5934\u50CF\u4E0D\u80FD\u4E3A\u7A7A",trigger:["change"]}],name:[{required:!0,message:"\u8BF7\u8F93\u5165\u540D\u79F0",trigger:["blur"]}]}),F=async()=>{const p=i.userInfo;for(const r in o)o[r]=p[r]},w=async()=>{if(o.password_old||o.password||o.password_confirm){if(!o.password_old)return a.msgError("\u8BF7\u8F93\u5165\u5F53\u524D\u5BC6\u7801");if(!o.password)return a.msgError("\u8BF7\u8F93\u5165\u65B0\u7684\u5BC6\u7801");if(!o.password_confirm)return a.msgError("\u8BF7\u8F93\u5165\u786E\u5B9A\u5BC6\u7801");if(o.password_confirm!=o.password)return a.msgError("\u4E24\u6B21\u8F93\u5165\u7684\u5BC6\u7801\u4E0D\u4E00\u6837")}if(o.password_old&&o.password&&o.password_confirm){if(o.password_old.length<6||o.password_old.length>32)return a.msgError("\u5BC6\u7801\u957F\u5EA6\u57286\u523032\u4E4B\u95F4");if(o.password.length<6||o.password.length>32)return a.msgError("\u5BC6\u7801\u957F\u5EA6\u57286\u523032\u4E4B\u95F4");if(o.password_confirm.length<6||o.password_confirm.length>32)return a.msgError("\u5BC6\u7801\u957F\u5EA6\u57286\u523032\u4E4B\u95F4")}await x(o),i.getUserInfo()},E=async()=>{var p;await((p=d.value)==null?void 0:p.validate()),w()};return F(),(p,r)=>{const B=k,l=v,m=b,g=h,C=U,V=y,A=D;return M(),N("div",q,[u(C,{class:"!border-none",shadow:"never"},{default:t(()=>[u(g,{ref_key:"formRef",ref:d,class:"ls-form",model:e(o),rules:e(c),"label-width":"100px"},{default:t(()=>[u(l,{label:"\u5934\u50CF\uFF1A",prop:"avatar"},{default:t(()=>[u(B,{modelValue:e(o).avatar,"onUpdate:modelValue":r[0]||(r[0]=s=>e(o).avatar=s),limit:1},null,8,["modelValue"])]),_:1}),u(l,{label:"\u8D26\u53F7\uFF1A",prop:"account"},{default:t(()=>[n("div",L,[u(m,{modelValue:e(o).account,"onUpdate:modelValue":r[1]||(r[1]=s=>e(o).account=s),disabled:""},null,8,["modelValue"])])]),_:1}),u(l,{label:"\u540D\u79F0\uFF1A",prop:"name"},{default:t(()=>[n("div",T,[u(m,{modelValue:e(o).name,"onUpdate:modelValue":r[2]||(r[2]=s=>e(o).name=s),placeholder:"\u8BF7\u8F93\u5165\u540D\u79F0"},null,8,["modelValue"])])]),_:1}),u(l,{label:"\u5F53\u524D\u5BC6\u7801\uFF1A",prop:"password_old"},{default:t(()=>[n("div",$,[u(m,{modelValue:e(o).password_old,"onUpdate:modelValue":r[3]||(r[3]=s=>e(o).password_old=s),modelModifiers:{trim:!0},placeholder:"\u4FEE\u6539\u5BC6\u7801\u65F6\u5FC5\u586B, \u4E0D\u4FEE\u6539\u5BC6\u7801\u65F6\u7559\u7A7A",type:"password","show-password":""},null,8,["modelValue"])])]),_:1}),u(l,{label:"\u65B0\u7684\u5BC6\u7801\uFF1A",prop:"password"},{default:t(()=>[n("div",j,[u(m,{modelValue:e(o).password,"onUpdate:modelValue":r[4]||(r[4]=s=>e(o).password=s),modelModifiers:{trim:!0},placeholder:"\u4FEE\u6539\u5BC6\u7801\u65F6\u5FC5\u586B, \u4E0D\u4FEE\u6539\u5BC6\u7801\u65F6\u7559\u7A7A",type:"password","show-password":""},null,8,["modelValue"])])]),_:1}),u(l,{label:"\u786E\u5B9A\u5BC6\u7801\uFF1A",prop:"password_confirm"},{default:t(()=>[n("div",z,[u(m,{modelValue:e(o).password_confirm,"onUpdate:modelValue":r[5]||(r[5]=s=>e(o).password_confirm=s),modelModifiers:{trim:!0},placeholder:"\u4FEE\u6539\u5BC6\u7801\u65F6\u5FC5\u586B, \u4E0D\u4FEE\u6539\u5BC6\u7801\u65F6\u7559\u7A7A",type:"password","show-password":""},null,8,["modelValue"])])]),_:1})]),_:1},8,["model","rules"])]),_:1}),u(A,null,{default:t(()=>[u(V,{type:"primary",onClick:E},{default:t(()=>[R("\u4FDD\u5B58")]),_:1})]),_:1})])}}});export{$o as default}; diff --git a/public/admin/assets/setting.d9b52d7c.js b/public/admin/assets/setting.d9b52d7c.js new file mode 100644 index 000000000..0e42ee079 --- /dev/null +++ b/public/admin/assets/setting.d9b52d7c.js @@ -0,0 +1 @@ +import{_ as D}from"./index.be5645df.js";import{C as v,B as b,D as h,I as U,w as y}from"./element-plus.4328d892.js";import{_ as k}from"./picker.597494a6.js";import{a as I,f as a,x}from"./index.ed71ac09.js";import{d as f,r as S,$ as _,o as M,c as N,U as u,L as t,u as e,a as n,R}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.b940d6e3.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.c38e1dd6.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./index.f2c7f81b.js";import"./index.9c616a0c.js";import"./index.vue_vue_type_script_setup_true_lang.dc835bba.js";import"./usePaging.2ad8e1e6.js";import"./vue3-video-play.b911321b.js";import"./vuedraggable.0cb40d3a.js";import"./vue.5de34049.js";import"./sortablejs.ef73fc5c.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const q={class:"user-setting"},L={class:"w-80"},T={class:"w-80"},$={class:"w-80"},j={class:"w-80"},z={class:"w-80"},G=f({name:"userSetting"}),$o=f({...G,setup(H){const d=S(),i=I(),o=_({avatar:"",account:"",name:"",password_old:"",password:"",password_confirm:""}),c=_({avatar:[{required:!0,message:"\u5934\u50CF\u4E0D\u80FD\u4E3A\u7A7A",trigger:["change"]}],name:[{required:!0,message:"\u8BF7\u8F93\u5165\u540D\u79F0",trigger:["blur"]}]}),F=async()=>{const p=i.userInfo;for(const r in o)o[r]=p[r]},w=async()=>{if(o.password_old||o.password||o.password_confirm){if(!o.password_old)return a.msgError("\u8BF7\u8F93\u5165\u5F53\u524D\u5BC6\u7801");if(!o.password)return a.msgError("\u8BF7\u8F93\u5165\u65B0\u7684\u5BC6\u7801");if(!o.password_confirm)return a.msgError("\u8BF7\u8F93\u5165\u786E\u5B9A\u5BC6\u7801");if(o.password_confirm!=o.password)return a.msgError("\u4E24\u6B21\u8F93\u5165\u7684\u5BC6\u7801\u4E0D\u4E00\u6837")}if(o.password_old&&o.password&&o.password_confirm){if(o.password_old.length<6||o.password_old.length>32)return a.msgError("\u5BC6\u7801\u957F\u5EA6\u57286\u523032\u4E4B\u95F4");if(o.password.length<6||o.password.length>32)return a.msgError("\u5BC6\u7801\u957F\u5EA6\u57286\u523032\u4E4B\u95F4");if(o.password_confirm.length<6||o.password_confirm.length>32)return a.msgError("\u5BC6\u7801\u957F\u5EA6\u57286\u523032\u4E4B\u95F4")}await x(o),i.getUserInfo()},E=async()=>{var p;await((p=d.value)==null?void 0:p.validate()),w()};return F(),(p,r)=>{const B=k,l=v,m=b,g=h,C=U,V=y,A=D;return M(),N("div",q,[u(C,{class:"!border-none",shadow:"never"},{default:t(()=>[u(g,{ref_key:"formRef",ref:d,class:"ls-form",model:e(o),rules:e(c),"label-width":"100px"},{default:t(()=>[u(l,{label:"\u5934\u50CF\uFF1A",prop:"avatar"},{default:t(()=>[u(B,{modelValue:e(o).avatar,"onUpdate:modelValue":r[0]||(r[0]=s=>e(o).avatar=s),limit:1},null,8,["modelValue"])]),_:1}),u(l,{label:"\u8D26\u53F7\uFF1A",prop:"account"},{default:t(()=>[n("div",L,[u(m,{modelValue:e(o).account,"onUpdate:modelValue":r[1]||(r[1]=s=>e(o).account=s),disabled:""},null,8,["modelValue"])])]),_:1}),u(l,{label:"\u540D\u79F0\uFF1A",prop:"name"},{default:t(()=>[n("div",T,[u(m,{modelValue:e(o).name,"onUpdate:modelValue":r[2]||(r[2]=s=>e(o).name=s),placeholder:"\u8BF7\u8F93\u5165\u540D\u79F0"},null,8,["modelValue"])])]),_:1}),u(l,{label:"\u5F53\u524D\u5BC6\u7801\uFF1A",prop:"password_old"},{default:t(()=>[n("div",$,[u(m,{modelValue:e(o).password_old,"onUpdate:modelValue":r[3]||(r[3]=s=>e(o).password_old=s),modelModifiers:{trim:!0},placeholder:"\u4FEE\u6539\u5BC6\u7801\u65F6\u5FC5\u586B, \u4E0D\u4FEE\u6539\u5BC6\u7801\u65F6\u7559\u7A7A",type:"password","show-password":""},null,8,["modelValue"])])]),_:1}),u(l,{label:"\u65B0\u7684\u5BC6\u7801\uFF1A",prop:"password"},{default:t(()=>[n("div",j,[u(m,{modelValue:e(o).password,"onUpdate:modelValue":r[4]||(r[4]=s=>e(o).password=s),modelModifiers:{trim:!0},placeholder:"\u4FEE\u6539\u5BC6\u7801\u65F6\u5FC5\u586B, \u4E0D\u4FEE\u6539\u5BC6\u7801\u65F6\u7559\u7A7A",type:"password","show-password":""},null,8,["modelValue"])])]),_:1}),u(l,{label:"\u786E\u5B9A\u5BC6\u7801\uFF1A",prop:"password_confirm"},{default:t(()=>[n("div",z,[u(m,{modelValue:e(o).password_confirm,"onUpdate:modelValue":r[5]||(r[5]=s=>e(o).password_confirm=s),modelModifiers:{trim:!0},placeholder:"\u4FEE\u6539\u5BC6\u7801\u65F6\u5FC5\u586B, \u4E0D\u4FEE\u6539\u5BC6\u7801\u65F6\u7559\u7A7A",type:"password","show-password":""},null,8,["modelValue"])])]),_:1})]),_:1},8,["model","rules"])]),_:1}),u(A,null,{default:t(()=>[u(V,{type:"primary",onClick:E},{default:t(()=>[R("\u4FDD\u5B58")]),_:1})]),_:1})])}}});export{$o as default}; diff --git a/public/admin/assets/setup.416a1203.js b/public/admin/assets/setup.416a1203.js new file mode 100644 index 000000000..4ee08c368 --- /dev/null +++ b/public/admin/assets/setup.416a1203.js @@ -0,0 +1 @@ +import{_ as B}from"./index.13ef78d6.js";import{C as D,D as E,I as g,w as h}from"./element-plus.4328d892.js";import{_ as b}from"./picker.45aea54f.js";import{a as w,b as y}from"./user.31e34ccc.js";import{d as n,$ as A,af as k,o as s,c as V,U as e,L as r,u as a,a as i,M as x,K as S,R as U}from"./@vue.51d7f2d8.js";import"./index.aa9bb752.js";import"./@vueuse.ec90c285.js";import"./lodash.08438971.js";import"./@amap.8a62addd.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./@element-plus.a074d1f6.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.fa872673.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.c47e74f8.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./index.a9a11abe.js";import"./index.a450f1bb.js";import"./index.vue_vue_type_script_setup_true_lang.dc835bba.js";import"./usePaging.2ad8e1e6.js";import"./vue3-video-play.b911321b.js";import"./vuedraggable.0cb40d3a.js";import"./vue.5de34049.js";import"./sortablejs.ef73fc5c.js";const N={class:"user-setup"},j=i("div",{class:"font-medium mb-7"},"\u57FA\u672C\u8BBE\u7F6E",-1),I=i("div",null,[i("div",{class:"form-tips"}," \u7528\u6237\u6CE8\u518C\u65F6\u7ED9\u7684\u9ED8\u8BA4\u5934\u50CF\uFF0C\u5EFA\u8BAE\u5C3A\u5BF8\uFF1A400*400\u50CF\u7D20\uFF0C\u652F\u6301jpg\uFF0Cjpeg\uFF0Cpng\u683C\u5F0F ")],-1),R=n({name:"userSetup"}),Nt=n({...R,setup(K){const t=A({default_avatar:""}),u=async()=>{try{const o=await w();for(const m in t)t[m]=o[m]}catch(o){console.log("\u83B7\u53D6=>",o)}},l=async()=>{try{await y(t),u()}catch(o){console.log("\u4FDD\u5B58=>",o)}};return u(),(o,m)=>{const _=b,p=D,c=E,d=g,f=h,F=B,C=k("perms");return s(),V("div",N,[e(d,{shadow:"never",class:"!border-none"},{default:r(()=>[j,e(c,{ref:"formRef",model:a(t),"label-width":"120px"},{default:r(()=>[e(p,{label:"\u7528\u6237\u9ED8\u8BA4\u5934\u50CF"},{default:r(()=>[i("div",null,[e(_,{modelValue:a(t).default_avatar,"onUpdate:modelValue":m[0]||(m[0]=v=>a(t).default_avatar=v),limit:1},null,8,["modelValue"])])]),_:1}),e(p,null,{default:r(()=>[I]),_:1})]),_:1},8,["model"])]),_:1}),x((s(),S(F,null,{default:r(()=>[e(f,{type:"primary",onClick:l},{default:r(()=>[U("\u4FDD\u5B58")]),_:1})]),_:1})),[[C,["setting.user.user/setConfig"]]])])}}});export{Nt as default}; diff --git a/public/admin/assets/setup.46766685.js b/public/admin/assets/setup.46766685.js new file mode 100644 index 000000000..c5ca95e9c --- /dev/null +++ b/public/admin/assets/setup.46766685.js @@ -0,0 +1 @@ +import{_ as B}from"./index.fd04a214.js";import{C as D,D as E,I as g,w as h}from"./element-plus.4328d892.js";import{_ as b}from"./picker.3821e495.js";import{a as w,b as y}from"./user.12a6ca53.js";import{d as n,$ as A,af as k,o as s,c as V,U as e,L as r,u as a,a as i,M as x,K as S,R as U}from"./@vue.51d7f2d8.js";import"./index.37f7aea6.js";import"./@vueuse.ec90c285.js";import"./lodash.08438971.js";import"./@amap.8a62addd.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./@element-plus.a074d1f6.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.5759a1a6.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.af446662.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./index.fe1d30dd.js";import"./index.5f944d34.js";import"./index.vue_vue_type_script_setup_true_lang.dc835bba.js";import"./usePaging.2ad8e1e6.js";import"./vue3-video-play.b911321b.js";import"./vuedraggable.0cb40d3a.js";import"./vue.5de34049.js";import"./sortablejs.ef73fc5c.js";const N={class:"user-setup"},j=i("div",{class:"font-medium mb-7"},"\u57FA\u672C\u8BBE\u7F6E",-1),I=i("div",null,[i("div",{class:"form-tips"}," \u7528\u6237\u6CE8\u518C\u65F6\u7ED9\u7684\u9ED8\u8BA4\u5934\u50CF\uFF0C\u5EFA\u8BAE\u5C3A\u5BF8\uFF1A400*400\u50CF\u7D20\uFF0C\u652F\u6301jpg\uFF0Cjpeg\uFF0Cpng\u683C\u5F0F ")],-1),R=n({name:"userSetup"}),Nt=n({...R,setup(K){const t=A({default_avatar:""}),u=async()=>{try{const o=await w();for(const m in t)t[m]=o[m]}catch(o){console.log("\u83B7\u53D6=>",o)}},l=async()=>{try{await y(t),u()}catch(o){console.log("\u4FDD\u5B58=>",o)}};return u(),(o,m)=>{const _=b,p=D,c=E,d=g,f=h,F=B,C=k("perms");return s(),V("div",N,[e(d,{shadow:"never",class:"!border-none"},{default:r(()=>[j,e(c,{ref:"formRef",model:a(t),"label-width":"120px"},{default:r(()=>[e(p,{label:"\u7528\u6237\u9ED8\u8BA4\u5934\u50CF"},{default:r(()=>[i("div",null,[e(_,{modelValue:a(t).default_avatar,"onUpdate:modelValue":m[0]||(m[0]=v=>a(t).default_avatar=v),limit:1},null,8,["modelValue"])])]),_:1}),e(p,null,{default:r(()=>[I]),_:1})]),_:1},8,["model"])]),_:1}),x((s(),S(F,null,{default:r(()=>[e(f,{type:"primary",onClick:l},{default:r(()=>[U("\u4FDD\u5B58")]),_:1})]),_:1})),[[C,["setting.user.user/setConfig"]]])])}}});export{Nt as default}; diff --git a/public/admin/assets/setup.5963378a.js b/public/admin/assets/setup.5963378a.js new file mode 100644 index 000000000..9db302e61 --- /dev/null +++ b/public/admin/assets/setup.5963378a.js @@ -0,0 +1 @@ +import{_ as B}from"./index.be5645df.js";import{C as D,D as E,I as g,w as h}from"./element-plus.4328d892.js";import{_ as b}from"./picker.597494a6.js";import{a as w,b as y}from"./user.c65c609e.js";import{d as n,$ as A,af as k,o as s,c as V,U as e,L as r,u as a,a as i,M as x,K as S,R as U}from"./@vue.51d7f2d8.js";import"./index.ed71ac09.js";import"./@vueuse.ec90c285.js";import"./lodash.08438971.js";import"./@amap.8a62addd.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./@element-plus.a074d1f6.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.b940d6e3.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.c38e1dd6.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./index.f2c7f81b.js";import"./index.9c616a0c.js";import"./index.vue_vue_type_script_setup_true_lang.dc835bba.js";import"./usePaging.2ad8e1e6.js";import"./vue3-video-play.b911321b.js";import"./vuedraggable.0cb40d3a.js";import"./vue.5de34049.js";import"./sortablejs.ef73fc5c.js";const N={class:"user-setup"},j=i("div",{class:"font-medium mb-7"},"\u57FA\u672C\u8BBE\u7F6E",-1),I=i("div",null,[i("div",{class:"form-tips"}," \u7528\u6237\u6CE8\u518C\u65F6\u7ED9\u7684\u9ED8\u8BA4\u5934\u50CF\uFF0C\u5EFA\u8BAE\u5C3A\u5BF8\uFF1A400*400\u50CF\u7D20\uFF0C\u652F\u6301jpg\uFF0Cjpeg\uFF0Cpng\u683C\u5F0F ")],-1),R=n({name:"userSetup"}),Nt=n({...R,setup(K){const t=A({default_avatar:""}),u=async()=>{try{const o=await w();for(const m in t)t[m]=o[m]}catch(o){console.log("\u83B7\u53D6=>",o)}},l=async()=>{try{await y(t),u()}catch(o){console.log("\u4FDD\u5B58=>",o)}};return u(),(o,m)=>{const _=b,p=D,c=E,d=g,f=h,F=B,C=k("perms");return s(),V("div",N,[e(d,{shadow:"never",class:"!border-none"},{default:r(()=>[j,e(c,{ref:"formRef",model:a(t),"label-width":"120px"},{default:r(()=>[e(p,{label:"\u7528\u6237\u9ED8\u8BA4\u5934\u50CF"},{default:r(()=>[i("div",null,[e(_,{modelValue:a(t).default_avatar,"onUpdate:modelValue":m[0]||(m[0]=v=>a(t).default_avatar=v),limit:1},null,8,["modelValue"])])]),_:1}),e(p,null,{default:r(()=>[I]),_:1})]),_:1},8,["model"])]),_:1}),x((s(),S(F,null,{default:r(()=>[e(f,{type:"primary",onClick:l},{default:r(()=>[U("\u4FDD\u5B58")]),_:1})]),_:1})),[[C,["setting.user.user/setConfig"]]])])}}});export{Nt as default}; diff --git a/public/admin/assets/shop_contract.07d6415c.js b/public/admin/assets/shop_contract.07d6415c.js new file mode 100644 index 000000000..b429a4e47 --- /dev/null +++ b/public/admin/assets/shop_contract.07d6415c.js @@ -0,0 +1 @@ +import{r as o}from"./index.37f7aea6.js";function r(t){return o.get({url:"/shop_contract/lists",params:t})}function a(t){return o.post({url:"/shop_contract/add",params:t})}function c(t){return o.post({url:"/shop_contract/edit",params:t})}function s(t){return o.get({url:"/shop_contract/detail",params:t})}function p(t){return o.post({url:"/shop_contract/wind_control",params:t})}function i(t){return o.get({url:"/shop_contract/Draftingcontracts",params:t})}function e(t){return o.get({url:"/shop_contract/postsms",params:t})}function u(t){return o.get({url:"/shop_contract/evidence",params:t})}function h(t){return o.post({url:"/shop_contract/addNote",params:t})}export{s as a,p as b,c,a as d,h as e,u as f,i as g,e as h,r as i}; diff --git a/public/admin/assets/shop_contract.c24a8510.js b/public/admin/assets/shop_contract.c24a8510.js new file mode 100644 index 000000000..7f1bae741 --- /dev/null +++ b/public/admin/assets/shop_contract.c24a8510.js @@ -0,0 +1 @@ +import{r as o}from"./index.ed71ac09.js";function r(t){return o.get({url:"/shop_contract/lists",params:t})}function a(t){return o.post({url:"/shop_contract/add",params:t})}function c(t){return o.post({url:"/shop_contract/edit",params:t})}function s(t){return o.get({url:"/shop_contract/detail",params:t})}function p(t){return o.post({url:"/shop_contract/wind_control",params:t})}function i(t){return o.get({url:"/shop_contract/Draftingcontracts",params:t})}function e(t){return o.get({url:"/shop_contract/postsms",params:t})}function u(t){return o.get({url:"/shop_contract/evidence",params:t})}function h(t){return o.post({url:"/shop_contract/addNote",params:t})}export{s as a,p as b,c,a as d,h as e,u as f,i as g,e as h,r as i}; diff --git a/public/admin/assets/shop_contract.f4761eae.js b/public/admin/assets/shop_contract.f4761eae.js new file mode 100644 index 000000000..b1b5d7075 --- /dev/null +++ b/public/admin/assets/shop_contract.f4761eae.js @@ -0,0 +1 @@ +import{r as o}from"./index.aa9bb752.js";function r(t){return o.get({url:"/shop_contract/lists",params:t})}function a(t){return o.post({url:"/shop_contract/add",params:t})}function c(t){return o.post({url:"/shop_contract/edit",params:t})}function s(t){return o.get({url:"/shop_contract/detail",params:t})}function p(t){return o.post({url:"/shop_contract/wind_control",params:t})}function i(t){return o.get({url:"/shop_contract/Draftingcontracts",params:t})}function e(t){return o.get({url:"/shop_contract/postsms",params:t})}function u(t){return o.get({url:"/shop_contract/evidence",params:t})}function h(t){return o.post({url:"/shop_contract/addNote",params:t})}export{s as a,p as b,c,a as d,h as e,u as f,i as g,e as h,r as i}; diff --git a/public/admin/assets/store.4d739f82.js b/public/admin/assets/store.4d739f82.js new file mode 100644 index 000000000..8e4d9ad2f --- /dev/null +++ b/public/admin/assets/store.4d739f82.js @@ -0,0 +1 @@ +import{G as F,H as U,C as v,a1 as D,B as w,M as k,N as z,a2 as A,D as x,I as g}from"./element-plus.4328d892.js";import{d as q,r as I,o as i,K as b,L as a,U as e,a as V,R as n,S as N,c as R,T as S,a7 as L,u as T}from"./@vue.51d7f2d8.js";import{d as G}from"./index.aa9bb752.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const O={class:"tit"},j={class:"time"},H=q({__name:"store",props:{datas:{type:Object,defualt:function(){return{appeal:"",aea:"",brand:"",environment:"",online_display:"",place:"",qualification:"",repertory:"",scale:"",service:"",shop_front:"",source:"",stock:"",type:""}}},update_time:{type:String,defualt:""}},setup(l){const E=I(["\u8D85\u5E02","\u751F\u9C9C","\u996D\u5E97","\u4E94\u91D1","\u6742\u8D27","\u670D\u88C5","\u6587\u5177","\u5176\u4ED6"]);return(p,u)=>{const s=F,r=U,d=v,o=D,m=w,y=k,_=z,c=A,C=x,B=g;return i(),b(B,{style:{"margin-top":"16px"}},{default:a(()=>[e(C,{ref:"elForm",disabled:!0,model:p.formData,size:"mini","label-width":"180px"},{default:a(()=>[V("div",O,[n(" \u5F00\u8BBE\u5E97\u94FA "),V("span",j,"\u66F4\u65B0\u4E8E:"+N(l.update_time),1)]),e(c,null,{default:a(()=>[e(o,{span:8},{default:a(()=>[e(d,{label:"\u6709\u65E0\u95E8\u9762",prop:"shop_front"},{default:a(()=>[e(r,{modelValue:l.datas.shop_front,"onUpdate:modelValue":u[0]||(u[0]=t=>l.datas.shop_front=t),size:"medium"},{default:a(()=>[e(s,{label:"1"},{default:a(()=>[n("\u6709")]),_:1}),e(s,{label:"0"},{default:a(()=>[n("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u95E8\u9762\u9762\u79EF(m\xB2)",prop:"area"},{default:a(()=>[e(m,{modelValue:l.datas.area,"onUpdate:modelValue":u[1]||(u[1]=t=>l.datas.area=t),clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u7ECF\u8425\u5730\u70B9",prop:"place"},{default:a(()=>[e(m,{modelValue:l.datas.place,"onUpdate:modelValue":u[2]||(u[2]=t=>l.datas.place=t),clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u7ECF\u8425\u7C7B\u578B",prop:"type"},{default:a(()=>[e(_,{disabled:p.isCheck,modelValue:l.datas.type,"onUpdate:modelValue":u[3]||(u[3]=t=>l.datas.type=t),clearable:"",style:{width:"100%"}},{default:a(()=>[(i(!0),R(S,null,L(T(E),(t,f)=>(i(),b(y,{key:f,label:t,value:f+""},null,8,["label","value"]))),128))]),_:1},8,["disabled","modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u95E8\u9762\u73AF\u5883",prop:"environment"},{default:a(()=>[e(m,{modelValue:l.datas.environment,"onUpdate:modelValue":u[4]||(u[4]=t=>l.datas.environment=t),clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u670D\u52A1\u5BF9\u8C61",prop:"service"},{default:a(()=>[e(m,{modelValue:l.datas.service,"onUpdate:modelValue":u[5]||(u[5]=t=>l.datas.service=t),clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u6709\u65E0\u8425\u4E1A\u8D44\u8D28",prop:"qualification"},{default:a(()=>[e(r,{modelValue:l.datas.qualification,"onUpdate:modelValue":u[6]||(u[6]=t=>l.datas.qualification=t),size:"medium"},{default:a(()=>[e(s,{label:"1"},{default:a(()=>[n("\u6709")]),_:1}),e(s,{label:"0"},{default:a(()=>[n("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u6709\u65E0\u8FDB\u8D27\u6E20\u9053",prop:"stock"},{default:a(()=>[e(r,{modelValue:l.datas.stock,"onUpdate:modelValue":u[7]||(u[7]=t=>l.datas.stock=t),size:"medium"},{default:a(()=>[e(s,{label:"1"},{default:a(()=>[n("\u6709")]),_:1}),e(s,{label:"0"},{default:a(()=>[n("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u5E97\u94FA\u89C4\u6A21",prop:"scale"},{default:a(()=>[e(m,{modelValue:l.datas.scale,"onUpdate:modelValue":u[8]||(u[8]=t=>l.datas.scale=t),clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u5546\u54C1\u6765\u6E90",prop:"source"},{default:a(()=>[e(m,{modelValue:l.datas.source,"onUpdate:modelValue":u[9]||(u[9]=t=>l.datas.source=t),clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u6709\u65E0\u7EBF\u4E0A\u5C55\u793A",prop:"brand"},{default:a(()=>[e(r,{modelValue:l.datas.brand,"onUpdate:modelValue":u[10]||(u[10]=t=>l.datas.brand=t),size:"medium"},{default:a(()=>[e(s,{label:"1"},{default:a(()=>[n("\u6709")]),_:1}),e(s,{label:"0"},{default:a(()=>[n("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u6709\u65E0\u54C1\u724C",prop:"field134"},{default:a(()=>[e(r,{modelValue:l.datas.brand,"onUpdate:modelValue":u[11]||(u[11]=t=>l.datas.brand=t),size:"medium"},{default:a(()=>[e(s,{label:"1"},{default:a(()=>[n("\u6709")]),_:1}),e(s,{label:"0"},{default:a(()=>[n("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u5E93\u5B58\u60C5\u51B5",prop:"repertory"},{default:a(()=>[e(r,{modelValue:l.datas.repertory,"onUpdate:modelValue":u[12]||(u[12]=t=>l.datas.repertory=t),size:"medium"},{default:a(()=>[e(s,{label:"1"},{default:a(()=>[n("\u6709")]),_:1}),e(s,{label:"0"},{default:a(()=>[n("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u7ECF\u8425\u8BC9\u6C42",prop:"appeal"},{default:a(()=>[e(m,{modelValue:l.datas.appeal,"onUpdate:modelValue":u[13]||(u[13]=t=>l.datas.appeal=t),clearable:"",autosize:"",type:"textarea",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1})]),_:1})]),_:1},8,["model"])]),_:1})}}});const Ue=G(H,[["__scopeId","data-v-888fe372"]]);export{Ue as default}; diff --git a/public/admin/assets/store.8350d48f.js b/public/admin/assets/store.8350d48f.js new file mode 100644 index 000000000..719226ce6 --- /dev/null +++ b/public/admin/assets/store.8350d48f.js @@ -0,0 +1 @@ +import{G as F,H as U,C as v,a1 as D,B as w,M as k,N as z,a2 as A,D as x,I as g}from"./element-plus.4328d892.js";import{d as q,r as I,o as i,K as b,L as a,U as e,a as V,R as n,S as N,c as R,T as S,a7 as L,u as T}from"./@vue.51d7f2d8.js";import{d as G}from"./index.37f7aea6.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const O={class:"tit"},j={class:"time"},H=q({__name:"store",props:{datas:{type:Object,defualt:function(){return{appeal:"",aea:"",brand:"",environment:"",online_display:"",place:"",qualification:"",repertory:"",scale:"",service:"",shop_front:"",source:"",stock:"",type:""}}},update_time:{type:String,defualt:""}},setup(l){const E=I(["\u8D85\u5E02","\u751F\u9C9C","\u996D\u5E97","\u4E94\u91D1","\u6742\u8D27","\u670D\u88C5","\u6587\u5177","\u5176\u4ED6"]);return(p,u)=>{const s=F,r=U,d=v,o=D,m=w,y=k,_=z,c=A,C=x,B=g;return i(),b(B,{style:{"margin-top":"16px"}},{default:a(()=>[e(C,{ref:"elForm",disabled:!0,model:p.formData,size:"mini","label-width":"180px"},{default:a(()=>[V("div",O,[n(" \u5F00\u8BBE\u5E97\u94FA "),V("span",j,"\u66F4\u65B0\u4E8E:"+N(l.update_time),1)]),e(c,null,{default:a(()=>[e(o,{span:8},{default:a(()=>[e(d,{label:"\u6709\u65E0\u95E8\u9762",prop:"shop_front"},{default:a(()=>[e(r,{modelValue:l.datas.shop_front,"onUpdate:modelValue":u[0]||(u[0]=t=>l.datas.shop_front=t),size:"medium"},{default:a(()=>[e(s,{label:"1"},{default:a(()=>[n("\u6709")]),_:1}),e(s,{label:"0"},{default:a(()=>[n("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u95E8\u9762\u9762\u79EF(m\xB2)",prop:"area"},{default:a(()=>[e(m,{modelValue:l.datas.area,"onUpdate:modelValue":u[1]||(u[1]=t=>l.datas.area=t),clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u7ECF\u8425\u5730\u70B9",prop:"place"},{default:a(()=>[e(m,{modelValue:l.datas.place,"onUpdate:modelValue":u[2]||(u[2]=t=>l.datas.place=t),clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u7ECF\u8425\u7C7B\u578B",prop:"type"},{default:a(()=>[e(_,{disabled:p.isCheck,modelValue:l.datas.type,"onUpdate:modelValue":u[3]||(u[3]=t=>l.datas.type=t),clearable:"",style:{width:"100%"}},{default:a(()=>[(i(!0),R(S,null,L(T(E),(t,f)=>(i(),b(y,{key:f,label:t,value:f+""},null,8,["label","value"]))),128))]),_:1},8,["disabled","modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u95E8\u9762\u73AF\u5883",prop:"environment"},{default:a(()=>[e(m,{modelValue:l.datas.environment,"onUpdate:modelValue":u[4]||(u[4]=t=>l.datas.environment=t),clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u670D\u52A1\u5BF9\u8C61",prop:"service"},{default:a(()=>[e(m,{modelValue:l.datas.service,"onUpdate:modelValue":u[5]||(u[5]=t=>l.datas.service=t),clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u6709\u65E0\u8425\u4E1A\u8D44\u8D28",prop:"qualification"},{default:a(()=>[e(r,{modelValue:l.datas.qualification,"onUpdate:modelValue":u[6]||(u[6]=t=>l.datas.qualification=t),size:"medium"},{default:a(()=>[e(s,{label:"1"},{default:a(()=>[n("\u6709")]),_:1}),e(s,{label:"0"},{default:a(()=>[n("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u6709\u65E0\u8FDB\u8D27\u6E20\u9053",prop:"stock"},{default:a(()=>[e(r,{modelValue:l.datas.stock,"onUpdate:modelValue":u[7]||(u[7]=t=>l.datas.stock=t),size:"medium"},{default:a(()=>[e(s,{label:"1"},{default:a(()=>[n("\u6709")]),_:1}),e(s,{label:"0"},{default:a(()=>[n("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u5E97\u94FA\u89C4\u6A21",prop:"scale"},{default:a(()=>[e(m,{modelValue:l.datas.scale,"onUpdate:modelValue":u[8]||(u[8]=t=>l.datas.scale=t),clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u5546\u54C1\u6765\u6E90",prop:"source"},{default:a(()=>[e(m,{modelValue:l.datas.source,"onUpdate:modelValue":u[9]||(u[9]=t=>l.datas.source=t),clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u6709\u65E0\u7EBF\u4E0A\u5C55\u793A",prop:"brand"},{default:a(()=>[e(r,{modelValue:l.datas.brand,"onUpdate:modelValue":u[10]||(u[10]=t=>l.datas.brand=t),size:"medium"},{default:a(()=>[e(s,{label:"1"},{default:a(()=>[n("\u6709")]),_:1}),e(s,{label:"0"},{default:a(()=>[n("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u6709\u65E0\u54C1\u724C",prop:"field134"},{default:a(()=>[e(r,{modelValue:l.datas.brand,"onUpdate:modelValue":u[11]||(u[11]=t=>l.datas.brand=t),size:"medium"},{default:a(()=>[e(s,{label:"1"},{default:a(()=>[n("\u6709")]),_:1}),e(s,{label:"0"},{default:a(()=>[n("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u5E93\u5B58\u60C5\u51B5",prop:"repertory"},{default:a(()=>[e(r,{modelValue:l.datas.repertory,"onUpdate:modelValue":u[12]||(u[12]=t=>l.datas.repertory=t),size:"medium"},{default:a(()=>[e(s,{label:"1"},{default:a(()=>[n("\u6709")]),_:1}),e(s,{label:"0"},{default:a(()=>[n("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u7ECF\u8425\u8BC9\u6C42",prop:"appeal"},{default:a(()=>[e(m,{modelValue:l.datas.appeal,"onUpdate:modelValue":u[13]||(u[13]=t=>l.datas.appeal=t),clearable:"",autosize:"",type:"textarea",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1})]),_:1})]),_:1},8,["model"])]),_:1})}}});const Ue=G(H,[["__scopeId","data-v-888fe372"]]);export{Ue as default}; diff --git a/public/admin/assets/store.fd0d23f9.js b/public/admin/assets/store.fd0d23f9.js new file mode 100644 index 000000000..a5f5ca259 --- /dev/null +++ b/public/admin/assets/store.fd0d23f9.js @@ -0,0 +1 @@ +import{G as F,H as U,C as v,a1 as D,B as w,M as k,N as z,a2 as A,D as x,I as g}from"./element-plus.4328d892.js";import{d as q,r as I,o as i,K as b,L as a,U as e,a as V,R as n,S as N,c as R,T as S,a7 as L,u as T}from"./@vue.51d7f2d8.js";import{d as G}from"./index.ed71ac09.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const O={class:"tit"},j={class:"time"},H=q({__name:"store",props:{datas:{type:Object,defualt:function(){return{appeal:"",aea:"",brand:"",environment:"",online_display:"",place:"",qualification:"",repertory:"",scale:"",service:"",shop_front:"",source:"",stock:"",type:""}}},update_time:{type:String,defualt:""}},setup(l){const E=I(["\u8D85\u5E02","\u751F\u9C9C","\u996D\u5E97","\u4E94\u91D1","\u6742\u8D27","\u670D\u88C5","\u6587\u5177","\u5176\u4ED6"]);return(p,u)=>{const s=F,r=U,d=v,o=D,m=w,y=k,_=z,c=A,C=x,B=g;return i(),b(B,{style:{"margin-top":"16px"}},{default:a(()=>[e(C,{ref:"elForm",disabled:!0,model:p.formData,size:"mini","label-width":"180px"},{default:a(()=>[V("div",O,[n(" \u5F00\u8BBE\u5E97\u94FA "),V("span",j,"\u66F4\u65B0\u4E8E:"+N(l.update_time),1)]),e(c,null,{default:a(()=>[e(o,{span:8},{default:a(()=>[e(d,{label:"\u6709\u65E0\u95E8\u9762",prop:"shop_front"},{default:a(()=>[e(r,{modelValue:l.datas.shop_front,"onUpdate:modelValue":u[0]||(u[0]=t=>l.datas.shop_front=t),size:"medium"},{default:a(()=>[e(s,{label:"1"},{default:a(()=>[n("\u6709")]),_:1}),e(s,{label:"0"},{default:a(()=>[n("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u95E8\u9762\u9762\u79EF(m\xB2)",prop:"area"},{default:a(()=>[e(m,{modelValue:l.datas.area,"onUpdate:modelValue":u[1]||(u[1]=t=>l.datas.area=t),clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u7ECF\u8425\u5730\u70B9",prop:"place"},{default:a(()=>[e(m,{modelValue:l.datas.place,"onUpdate:modelValue":u[2]||(u[2]=t=>l.datas.place=t),clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u7ECF\u8425\u7C7B\u578B",prop:"type"},{default:a(()=>[e(_,{disabled:p.isCheck,modelValue:l.datas.type,"onUpdate:modelValue":u[3]||(u[3]=t=>l.datas.type=t),clearable:"",style:{width:"100%"}},{default:a(()=>[(i(!0),R(S,null,L(T(E),(t,f)=>(i(),b(y,{key:f,label:t,value:f+""},null,8,["label","value"]))),128))]),_:1},8,["disabled","modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u95E8\u9762\u73AF\u5883",prop:"environment"},{default:a(()=>[e(m,{modelValue:l.datas.environment,"onUpdate:modelValue":u[4]||(u[4]=t=>l.datas.environment=t),clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u670D\u52A1\u5BF9\u8C61",prop:"service"},{default:a(()=>[e(m,{modelValue:l.datas.service,"onUpdate:modelValue":u[5]||(u[5]=t=>l.datas.service=t),clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u6709\u65E0\u8425\u4E1A\u8D44\u8D28",prop:"qualification"},{default:a(()=>[e(r,{modelValue:l.datas.qualification,"onUpdate:modelValue":u[6]||(u[6]=t=>l.datas.qualification=t),size:"medium"},{default:a(()=>[e(s,{label:"1"},{default:a(()=>[n("\u6709")]),_:1}),e(s,{label:"0"},{default:a(()=>[n("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u6709\u65E0\u8FDB\u8D27\u6E20\u9053",prop:"stock"},{default:a(()=>[e(r,{modelValue:l.datas.stock,"onUpdate:modelValue":u[7]||(u[7]=t=>l.datas.stock=t),size:"medium"},{default:a(()=>[e(s,{label:"1"},{default:a(()=>[n("\u6709")]),_:1}),e(s,{label:"0"},{default:a(()=>[n("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u5E97\u94FA\u89C4\u6A21",prop:"scale"},{default:a(()=>[e(m,{modelValue:l.datas.scale,"onUpdate:modelValue":u[8]||(u[8]=t=>l.datas.scale=t),clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u5546\u54C1\u6765\u6E90",prop:"source"},{default:a(()=>[e(m,{modelValue:l.datas.source,"onUpdate:modelValue":u[9]||(u[9]=t=>l.datas.source=t),clearable:"",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u6709\u65E0\u7EBF\u4E0A\u5C55\u793A",prop:"brand"},{default:a(()=>[e(r,{modelValue:l.datas.brand,"onUpdate:modelValue":u[10]||(u[10]=t=>l.datas.brand=t),size:"medium"},{default:a(()=>[e(s,{label:"1"},{default:a(()=>[n("\u6709")]),_:1}),e(s,{label:"0"},{default:a(()=>[n("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u6709\u65E0\u54C1\u724C",prop:"field134"},{default:a(()=>[e(r,{modelValue:l.datas.brand,"onUpdate:modelValue":u[11]||(u[11]=t=>l.datas.brand=t),size:"medium"},{default:a(()=>[e(s,{label:"1"},{default:a(()=>[n("\u6709")]),_:1}),e(s,{label:"0"},{default:a(()=>[n("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u5E93\u5B58\u60C5\u51B5",prop:"repertory"},{default:a(()=>[e(r,{modelValue:l.datas.repertory,"onUpdate:modelValue":u[12]||(u[12]=t=>l.datas.repertory=t),size:"medium"},{default:a(()=>[e(s,{label:"1"},{default:a(()=>[n("\u6709")]),_:1}),e(s,{label:"0"},{default:a(()=>[n("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(o,{span:8},{default:a(()=>[e(d,{label:"\u7ECF\u8425\u8BC9\u6C42",prop:"appeal"},{default:a(()=>[e(m,{modelValue:l.datas.appeal,"onUpdate:modelValue":u[13]||(u[13]=t=>l.datas.appeal=t),clearable:"",autosize:"",type:"textarea",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1})]),_:1})]),_:1},8,["model"])]),_:1})}}});const Ue=G(H,[["__scopeId","data-v-888fe372"]]);export{Ue as default}; diff --git a/public/admin/assets/subordinate.30bb2848.js b/public/admin/assets/subordinate.30bb2848.js new file mode 100644 index 000000000..6f9937206 --- /dev/null +++ b/public/admin/assets/subordinate.30bb2848.js @@ -0,0 +1 @@ +import{O as J,w as W,P as X,I as Y,L as Z,Q as tt}from"./element-plus.4328d892.js";import{_ as et}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{u as ot}from"./vue-router.9f65afb1.js";import{u as at}from"./usePaging.2ad8e1e6.js";import{u as ut}from"./useDictOptions.a61fcf9f.js";import{h as nt,l as it}from"./company.b7ec1bf9.js";import{g as st,s as lt}from"./admin.1cd61358.js";import"./lodash.08438971.js";import{k as A,f as rt}from"./index.aa9bb752.js";import{d as pt}from"./dict.927f1fc7.js";import{d as x,r as f,$ as T,a4 as ct,af as mt,o as a,c as _,M as p,u as r,K as s,L as e,a as C,U as o,R as n,Q as b,T as dt,k as $}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./axios.105476b3.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const _t={class:"mt-4"},yt={key:0,style:{color:"#67c23a"}},ft={key:1,style:{color:"#fe0000"}},Ct={style:{display:"flex"}},Et={class:"flex mt-4 justify-end"},ht=C("h1",null,"\u91CD\u8981\u63D0\u9192",-1),kt={key:0,class:"content"},Ft={key:1,class:"content"},vt={class:"btn_menu"},Bt=x({name:"companyLists"}),_e=x({...Bt,setup(gt){var w,L;const E=ot(),S=f(!0),m=f(!1),h=f(!1),k=()=>{m.value=!1,h.value=!1},F=f(""),N=i=>{m.value=!0,h.value=!0,F.value=i.id},R=()=>{st({id:F.value}),k()},z=()=>{lt({id:F.value}),k()},B=T({company_name:"",area:"",street:"",company_type:"",area_manager:"",is_contract:"",company_id:""});E.query.company_type&&(S.value=!1,B.company_type=((w=E.query.company_type)==null?void 0:w.toString())||""),E.query.company_id&&(B.company_id=((L=E.query.company_id)==null?void 0:L.toString())||"");const M=T({dictTypeLists:[]});(async()=>{const i=await pt({type_id:6});M.dictTypeLists=i.lists})();const U=f([]),I=i=>{U.value=i.map(({id:d})=>d)};ut("");const{pager:y,getLists:g,resetParams:At,resetPage:bt}=at({fetchFun:it,params:B}),Q=async i=>{await rt.confirm("\u786E\u5B9A\u8981\u5220\u9664\uFF1F"),await nt({id:i}),g()};return g(),(i,d)=>{const l=J,D=ct("router-link"),u=W,j=X,G=et,K=Y,O=Z,c=mt("perms"),H=tt;return a(),_("div",null,[p((a(),s(K,{class:"!border-none",shadow:"never"},{default:e(()=>[C("div",_t,[o(j,{data:r(y).lists,onSelectionChange:I},{default:e(()=>[o(l,{label:"id",prop:"id","show-overflow-tooltip":"",width:"60"}),o(l,{label:"\u516C\u53F8\u540D\u79F0",prop:"company_name","show-overflow-tooltip":""}),o(l,{label:"\u516C\u53F8\u7C7B\u578B",prop:"company_type","show-overflow-tooltip":""}),o(l,{label:"\u533A\u53BF",prop:"area_name","show-overflow-tooltip":""}),o(l,{label:"\u4E61\u9547",prop:"street_name","show-overflow-tooltip":""}),o(l,{label:"\u4E3B\u8054\u7CFB\u4EBA",prop:"master_name","show-overflow-tooltip":""}),o(l,{label:"\u8054\u7CFB\u65B9\u5F0F",prop:"master_phone","show-overflow-tooltip":""}),o(l,{label:"\u7247\u533A\u7ECF\u7406",prop:"area_manager_name","show-overflow-tooltip":""}),o(l,{label:"\u662F\u5426\u7B7E\u7EA6",prop:"is_contract","show-overflow-tooltip":""},{default:e(({row:t})=>[t.is_contract==1?(a(),_("span",yt,"\u5DF2\u7B7E\u7EA6")):(a(),_("span",ft,"\u672A\u7B7E\u7EA6"))]),_:1}),o(l,{label:"\u64CD\u4F5C",align:"center",width:"300",fixed:"right"},{default:e(({row:t})=>{var P,V,q;return[C("div",Ct,[o(u,{type:"primary",link:""},{default:e(()=>[o(D,{to:{path:r(A)("auth.admin/lists"),query:{company_id:t.id,read:!0}}},{default:e(()=>[n("\u67E5\u770B\u6210\u5458")]),_:2},1032,["to"])]),_:2},1024),p((a(),s(u,{type:"primary",link:""},{default:e(()=>[o(D,{to:{path:r(A)("company/add:edit"),query:{id:t.id,read:!0}}},{default:e(()=>[n("\u8BE6\u60C5")]),_:2},1032,["to"])]),_:2},1024)),[[c,["company/edit","company/add"]]]),p((a(),s(u,{type:"primary",link:""},{default:e(()=>[o(D,{to:{path:r(A)("company/add:edit"),query:{id:t.id,edit:!0}}},{default:e(()=>[n("\u7F16\u8F91")]),_:2},1032,["to"])]),_:2},1024)),[[c,["company/edit","company/add"]]]),p((a(),s(u,{type:"danger",link:"",onClick:v=>Q(t.id)},{default:e(()=>[n("\u5220\u9664")]),_:2},1032,["onClick"])),[[c,["company/delete"]]]),t.is_authentication==0?p((a(),s(u,{key:0,type:"primary",link:"",onClick:v=>i.handleAuthentication(t.id)},{default:e(()=>[n("\u4F01\u4E1A\u8BA4\u8BC1")]),_:2},1032,["onClick"])),[[c,["company/authentication"]]]):b("",!0),t.is_authentication&&t.is_contract==0?(a(),_(dt,{key:1},[Array.isArray(t.contract)&&t.contract.length==0?p((a(),s(u,{key:0,type:"primary",link:"",onClick:v=>i.showChangeCompany(t)},{default:e(()=>[n("\u751F\u6210\u5408\u540C")]),_:2},1032,["onClick"])),[[c,["company/initiate_contract"]]]):((P=t.contract)==null?void 0:P.check_status)==1?p((a(),s(u,{key:1,type:"warning",link:"",onClick:i.auditing},{default:e(()=>[n("\u5BA1\u6838\u4E2D")]),_:1},8,["onClick"])),[[c,["company/initiate_contract"]]]):((V=t.contract)==null?void 0:V.check_status)==2?p((a(),s(u,{key:2,type:"primary",link:"",onClick:v=>N(t)},{default:e(()=>[n("\u53D1\u9001\u5408\u540C")]),_:2},1032,["onClick"])),[[c,["company/Draftingcontracts"]]]):((q=t.contract)==null?void 0:q.check_status)==3?p((a(),s(u,{key:3,type:"primary",link:"",onClick:v=>(m.value=!0,F.value=t.id)},{default:e(()=>[n("\u53D1\u9001\u77ED\u4FE1")]),_:2},1032,["onClick"])),[[c,["company/postsms"]]]):b("",!0)],64)):b("",!0)])]}),_:1})]),_:1},8,["data"])]),C("div",Et,[o(G,{modelValue:r(y),"onUpdate:modelValue":d[0]||(d[0]=t=>$(y)?y.value=t:null),onChange:r(g)},null,8,["modelValue","onChange"])])]),_:1})),[[H,r(y).loading]]),o(O,{modelValue:r(m),"onUpdate:modelValue":d[1]||(d[1]=t=>$(m)?m.value=t:null),onClose:k},{default:e(()=>[ht,r(h)?(a(),_("div",kt," \u8BF7\u786E\u8BA4\u4FE1\u606F\u662F\u5426\u6709\u8BEF,\u53D1\u9001\u5408\u540C,\u8BF7\u786E\u8BA4\u4FE1\u606F\u662F\u5426\u6709\u8BEF,\u53D1\u9001\u7535\u5B50\u5408\u540C\u540E\u77ED\u65F6\u95F4\u5185\u5C06\u4E0D\u53EF\u518D\u6B21\u53D1\u9001. ")):(a(),_("div",Ft," \u786E\u8BA4\u7B7E\u7EA6\u77ED\u4FE1\u5C06\u572860\u79D2\u540E\u53D1\u9001,\u8BF7\u6CE8\u610F\u67E5\u6536,\u5E76\u70B9\u51FB\u77ED\u4FE1\u94FE\u63A5\u8FDB\u884C\u7EBF\u4E0A\u5408\u540C\u7B7E\u7EA6 ")),C("p",vt,[r(h)?(a(),s(u,{key:0,type:"primary",size:"large",onClick:R},{default:e(()=>[n("\u786E\u8BA4\u521B\u5EFA")]),_:1})):(a(),s(u,{key:1,type:"primary",size:"large",onClick:z},{default:e(()=>[n("\u786E\u8BA4")]),_:1})),o(u,{type:"info",size:"large",onClick:k},{default:e(()=>[n("\u8FD4\u56DE")]),_:1})])]),_:1},8,["modelValue"])])}}});export{_e as default}; diff --git a/public/admin/assets/subordinate.4e9298bd.js b/public/admin/assets/subordinate.4e9298bd.js new file mode 100644 index 000000000..f9d66a632 --- /dev/null +++ b/public/admin/assets/subordinate.4e9298bd.js @@ -0,0 +1 @@ +import{O as J,w as W,P as X,I as Y,L as Z,Q as tt}from"./element-plus.4328d892.js";import{_ as et}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{u as ot}from"./vue-router.9f65afb1.js";import{u as at}from"./usePaging.2ad8e1e6.js";import{u as ut}from"./useDictOptions.8d37e54b.js";import{f as nt,k as it}from"./company.8a1c349a.js";import{g as st,s as lt}from"./admin.f28da7a1.js";import"./lodash.08438971.js";import{k as A,f as rt}from"./index.ed71ac09.js";import{d as pt}from"./dict.6c560e38.js";import{d as x,r as f,$ as T,a4 as ct,af as mt,o as a,c as _,M as p,u as r,K as s,L as e,a as C,U as o,R as n,Q as b,T as dt,k as $}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./axios.105476b3.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const _t={class:"mt-4"},yt={key:0,style:{color:"#67c23a"}},ft={key:1,style:{color:"#fe0000"}},Ct={style:{display:"flex"}},Et={class:"flex mt-4 justify-end"},ht=C("h1",null,"\u91CD\u8981\u63D0\u9192",-1),kt={key:0,class:"content"},Ft={key:1,class:"content"},vt={class:"btn_menu"},Bt=x({name:"companyLists"}),_e=x({...Bt,setup(gt){var w,L;const E=ot(),S=f(!0),m=f(!1),h=f(!1),k=()=>{m.value=!1,h.value=!1},F=f(""),N=i=>{m.value=!0,h.value=!0,F.value=i.id},R=()=>{st({id:F.value}),k()},z=()=>{lt({id:F.value}),k()},B=T({company_name:"",area:"",street:"",company_type:"",area_manager:"",is_contract:"",company_id:""});E.query.company_type&&(S.value=!1,B.company_type=((w=E.query.company_type)==null?void 0:w.toString())||""),E.query.company_id&&(B.company_id=((L=E.query.company_id)==null?void 0:L.toString())||"");const M=T({dictTypeLists:[]});(async()=>{const i=await pt({type_id:6});M.dictTypeLists=i.lists})();const U=f([]),I=i=>{U.value=i.map(({id:d})=>d)};ut("");const{pager:y,getLists:g,resetParams:At,resetPage:bt}=at({fetchFun:it,params:B}),Q=async i=>{await rt.confirm("\u786E\u5B9A\u8981\u5220\u9664\uFF1F"),await nt({id:i}),g()};return g(),(i,d)=>{const l=J,D=ct("router-link"),u=W,j=X,G=et,K=Y,O=Z,c=mt("perms"),H=tt;return a(),_("div",null,[p((a(),s(K,{class:"!border-none",shadow:"never"},{default:e(()=>[C("div",_t,[o(j,{data:r(y).lists,onSelectionChange:I},{default:e(()=>[o(l,{label:"id",prop:"id","show-overflow-tooltip":"",width:"60"}),o(l,{label:"\u516C\u53F8\u540D\u79F0",prop:"company_name","show-overflow-tooltip":""}),o(l,{label:"\u516C\u53F8\u7C7B\u578B",prop:"company_type","show-overflow-tooltip":""}),o(l,{label:"\u533A\u53BF",prop:"area_name","show-overflow-tooltip":""}),o(l,{label:"\u4E61\u9547",prop:"street_name","show-overflow-tooltip":""}),o(l,{label:"\u4E3B\u8054\u7CFB\u4EBA",prop:"master_name","show-overflow-tooltip":""}),o(l,{label:"\u8054\u7CFB\u65B9\u5F0F",prop:"master_phone","show-overflow-tooltip":""}),o(l,{label:"\u7247\u533A\u7ECF\u7406",prop:"area_manager_name","show-overflow-tooltip":""}),o(l,{label:"\u662F\u5426\u7B7E\u7EA6",prop:"is_contract","show-overflow-tooltip":""},{default:e(({row:t})=>[t.is_contract==1?(a(),_("span",yt,"\u5DF2\u7B7E\u7EA6")):(a(),_("span",ft,"\u672A\u7B7E\u7EA6"))]),_:1}),o(l,{label:"\u64CD\u4F5C",align:"center",width:"300",fixed:"right"},{default:e(({row:t})=>{var P,V,q;return[C("div",Ct,[o(u,{type:"primary",link:""},{default:e(()=>[o(D,{to:{path:r(A)("auth.admin/lists"),query:{company_id:t.id,read:!0}}},{default:e(()=>[n("\u67E5\u770B\u6210\u5458")]),_:2},1032,["to"])]),_:2},1024),p((a(),s(u,{type:"primary",link:""},{default:e(()=>[o(D,{to:{path:r(A)("company/add:edit"),query:{id:t.id,read:!0}}},{default:e(()=>[n("\u8BE6\u60C5")]),_:2},1032,["to"])]),_:2},1024)),[[c,["company/edit","company/add"]]]),p((a(),s(u,{type:"primary",link:""},{default:e(()=>[o(D,{to:{path:r(A)("company/add:edit"),query:{id:t.id,edit:!0}}},{default:e(()=>[n("\u7F16\u8F91")]),_:2},1032,["to"])]),_:2},1024)),[[c,["company/edit","company/add"]]]),p((a(),s(u,{type:"danger",link:"",onClick:v=>Q(t.id)},{default:e(()=>[n("\u5220\u9664")]),_:2},1032,["onClick"])),[[c,["company/delete"]]]),t.is_authentication==0?p((a(),s(u,{key:0,type:"primary",link:"",onClick:v=>i.handleAuthentication(t.id)},{default:e(()=>[n("\u4F01\u4E1A\u8BA4\u8BC1")]),_:2},1032,["onClick"])),[[c,["company/authentication"]]]):b("",!0),t.is_authentication&&t.is_contract==0?(a(),_(dt,{key:1},[Array.isArray(t.contract)&&t.contract.length==0?p((a(),s(u,{key:0,type:"primary",link:"",onClick:v=>i.showChangeCompany(t)},{default:e(()=>[n("\u751F\u6210\u5408\u540C")]),_:2},1032,["onClick"])),[[c,["company/initiate_contract"]]]):((P=t.contract)==null?void 0:P.check_status)==1?p((a(),s(u,{key:1,type:"warning",link:"",onClick:i.auditing},{default:e(()=>[n("\u5BA1\u6838\u4E2D")]),_:1},8,["onClick"])),[[c,["company/initiate_contract"]]]):((V=t.contract)==null?void 0:V.check_status)==2?p((a(),s(u,{key:2,type:"primary",link:"",onClick:v=>N(t)},{default:e(()=>[n("\u53D1\u9001\u5408\u540C")]),_:2},1032,["onClick"])),[[c,["company/Draftingcontracts"]]]):((q=t.contract)==null?void 0:q.check_status)==3?p((a(),s(u,{key:3,type:"primary",link:"",onClick:v=>(m.value=!0,F.value=t.id)},{default:e(()=>[n("\u53D1\u9001\u77ED\u4FE1")]),_:2},1032,["onClick"])),[[c,["company/postsms"]]]):b("",!0)],64)):b("",!0)])]}),_:1})]),_:1},8,["data"])]),C("div",Et,[o(G,{modelValue:r(y),"onUpdate:modelValue":d[0]||(d[0]=t=>$(y)?y.value=t:null),onChange:r(g)},null,8,["modelValue","onChange"])])]),_:1})),[[H,r(y).loading]]),o(O,{modelValue:r(m),"onUpdate:modelValue":d[1]||(d[1]=t=>$(m)?m.value=t:null),onClose:k},{default:e(()=>[ht,r(h)?(a(),_("div",kt," \u8BF7\u786E\u8BA4\u4FE1\u606F\u662F\u5426\u6709\u8BEF,\u53D1\u9001\u5408\u540C,\u8BF7\u786E\u8BA4\u4FE1\u606F\u662F\u5426\u6709\u8BEF,\u53D1\u9001\u7535\u5B50\u5408\u540C\u540E\u77ED\u65F6\u95F4\u5185\u5C06\u4E0D\u53EF\u518D\u6B21\u53D1\u9001. ")):(a(),_("div",Ft," \u786E\u8BA4\u7B7E\u7EA6\u77ED\u4FE1\u5C06\u572860\u79D2\u540E\u53D1\u9001,\u8BF7\u6CE8\u610F\u67E5\u6536,\u5E76\u70B9\u51FB\u77ED\u4FE1\u94FE\u63A5\u8FDB\u884C\u7EBF\u4E0A\u5408\u540C\u7B7E\u7EA6 ")),C("p",vt,[r(h)?(a(),s(u,{key:0,type:"primary",size:"large",onClick:R},{default:e(()=>[n("\u786E\u8BA4\u521B\u5EFA")]),_:1})):(a(),s(u,{key:1,type:"primary",size:"large",onClick:z},{default:e(()=>[n("\u786E\u8BA4")]),_:1})),o(u,{type:"info",size:"large",onClick:k},{default:e(()=>[n("\u8FD4\u56DE")]),_:1})])]),_:1},8,["modelValue"])])}}});export{_e as default}; diff --git a/public/admin/assets/subordinate.56525f52.js b/public/admin/assets/subordinate.56525f52.js new file mode 100644 index 000000000..e3d95eedd --- /dev/null +++ b/public/admin/assets/subordinate.56525f52.js @@ -0,0 +1 @@ +import{O as J,w as W,P as X,I as Y,L as Z,Q as tt}from"./element-plus.4328d892.js";import{_ as et}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{u as ot}from"./vue-router.9f65afb1.js";import{u as at}from"./usePaging.2ad8e1e6.js";import{u as ut}from"./useDictOptions.a45fc8ac.js";import{h as nt,l as it}from"./company.d1e8fc82.js";import{g as st,s as lt}from"./admin.f0e2c7b9.js";import"./lodash.08438971.js";import{k as A,f as rt}from"./index.37f7aea6.js";import{d as pt}from"./dict.58face92.js";import{d as x,r as f,$ as T,a4 as ct,af as mt,o as a,c as _,M as p,u as r,K as s,L as e,a as C,U as o,R as n,Q as b,T as dt,k as $}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./axios.105476b3.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const _t={class:"mt-4"},yt={key:0,style:{color:"#67c23a"}},ft={key:1,style:{color:"#fe0000"}},Ct={style:{display:"flex"}},Et={class:"flex mt-4 justify-end"},ht=C("h1",null,"\u91CD\u8981\u63D0\u9192",-1),kt={key:0,class:"content"},Ft={key:1,class:"content"},vt={class:"btn_menu"},Bt=x({name:"companyLists"}),_e=x({...Bt,setup(gt){var w,L;const E=ot(),S=f(!0),m=f(!1),h=f(!1),k=()=>{m.value=!1,h.value=!1},F=f(""),N=i=>{m.value=!0,h.value=!0,F.value=i.id},R=()=>{st({id:F.value}),k()},z=()=>{lt({id:F.value}),k()},B=T({company_name:"",area:"",street:"",company_type:"",area_manager:"",is_contract:"",company_id:""});E.query.company_type&&(S.value=!1,B.company_type=((w=E.query.company_type)==null?void 0:w.toString())||""),E.query.company_id&&(B.company_id=((L=E.query.company_id)==null?void 0:L.toString())||"");const M=T({dictTypeLists:[]});(async()=>{const i=await pt({type_id:6});M.dictTypeLists=i.lists})();const U=f([]),I=i=>{U.value=i.map(({id:d})=>d)};ut("");const{pager:y,getLists:g,resetParams:At,resetPage:bt}=at({fetchFun:it,params:B}),Q=async i=>{await rt.confirm("\u786E\u5B9A\u8981\u5220\u9664\uFF1F"),await nt({id:i}),g()};return g(),(i,d)=>{const l=J,D=ct("router-link"),u=W,j=X,G=et,K=Y,O=Z,c=mt("perms"),H=tt;return a(),_("div",null,[p((a(),s(K,{class:"!border-none",shadow:"never"},{default:e(()=>[C("div",_t,[o(j,{data:r(y).lists,onSelectionChange:I},{default:e(()=>[o(l,{label:"id",prop:"id","show-overflow-tooltip":"",width:"60"}),o(l,{label:"\u516C\u53F8\u540D\u79F0",prop:"company_name","show-overflow-tooltip":""}),o(l,{label:"\u516C\u53F8\u7C7B\u578B",prop:"company_type","show-overflow-tooltip":""}),o(l,{label:"\u533A\u53BF",prop:"area_name","show-overflow-tooltip":""}),o(l,{label:"\u4E61\u9547",prop:"street_name","show-overflow-tooltip":""}),o(l,{label:"\u4E3B\u8054\u7CFB\u4EBA",prop:"master_name","show-overflow-tooltip":""}),o(l,{label:"\u8054\u7CFB\u65B9\u5F0F",prop:"master_phone","show-overflow-tooltip":""}),o(l,{label:"\u7247\u533A\u7ECF\u7406",prop:"area_manager_name","show-overflow-tooltip":""}),o(l,{label:"\u662F\u5426\u7B7E\u7EA6",prop:"is_contract","show-overflow-tooltip":""},{default:e(({row:t})=>[t.is_contract==1?(a(),_("span",yt,"\u5DF2\u7B7E\u7EA6")):(a(),_("span",ft,"\u672A\u7B7E\u7EA6"))]),_:1}),o(l,{label:"\u64CD\u4F5C",align:"center",width:"300",fixed:"right"},{default:e(({row:t})=>{var P,V,q;return[C("div",Ct,[o(u,{type:"primary",link:""},{default:e(()=>[o(D,{to:{path:r(A)("auth.admin/lists"),query:{company_id:t.id,read:!0}}},{default:e(()=>[n("\u67E5\u770B\u6210\u5458")]),_:2},1032,["to"])]),_:2},1024),p((a(),s(u,{type:"primary",link:""},{default:e(()=>[o(D,{to:{path:r(A)("company/add:edit"),query:{id:t.id,read:!0}}},{default:e(()=>[n("\u8BE6\u60C5")]),_:2},1032,["to"])]),_:2},1024)),[[c,["company/edit","company/add"]]]),p((a(),s(u,{type:"primary",link:""},{default:e(()=>[o(D,{to:{path:r(A)("company/add:edit"),query:{id:t.id,edit:!0}}},{default:e(()=>[n("\u7F16\u8F91")]),_:2},1032,["to"])]),_:2},1024)),[[c,["company/edit","company/add"]]]),p((a(),s(u,{type:"danger",link:"",onClick:v=>Q(t.id)},{default:e(()=>[n("\u5220\u9664")]),_:2},1032,["onClick"])),[[c,["company/delete"]]]),t.is_authentication==0?p((a(),s(u,{key:0,type:"primary",link:"",onClick:v=>i.handleAuthentication(t.id)},{default:e(()=>[n("\u4F01\u4E1A\u8BA4\u8BC1")]),_:2},1032,["onClick"])),[[c,["company/authentication"]]]):b("",!0),t.is_authentication&&t.is_contract==0?(a(),_(dt,{key:1},[Array.isArray(t.contract)&&t.contract.length==0?p((a(),s(u,{key:0,type:"primary",link:"",onClick:v=>i.showChangeCompany(t)},{default:e(()=>[n("\u751F\u6210\u5408\u540C")]),_:2},1032,["onClick"])),[[c,["company/initiate_contract"]]]):((P=t.contract)==null?void 0:P.check_status)==1?p((a(),s(u,{key:1,type:"warning",link:"",onClick:i.auditing},{default:e(()=>[n("\u5BA1\u6838\u4E2D")]),_:1},8,["onClick"])),[[c,["company/initiate_contract"]]]):((V=t.contract)==null?void 0:V.check_status)==2?p((a(),s(u,{key:2,type:"primary",link:"",onClick:v=>N(t)},{default:e(()=>[n("\u53D1\u9001\u5408\u540C")]),_:2},1032,["onClick"])),[[c,["company/Draftingcontracts"]]]):((q=t.contract)==null?void 0:q.check_status)==3?p((a(),s(u,{key:3,type:"primary",link:"",onClick:v=>(m.value=!0,F.value=t.id)},{default:e(()=>[n("\u53D1\u9001\u77ED\u4FE1")]),_:2},1032,["onClick"])),[[c,["company/postsms"]]]):b("",!0)],64)):b("",!0)])]}),_:1})]),_:1},8,["data"])]),C("div",Et,[o(G,{modelValue:r(y),"onUpdate:modelValue":d[0]||(d[0]=t=>$(y)?y.value=t:null),onChange:r(g)},null,8,["modelValue","onChange"])])]),_:1})),[[H,r(y).loading]]),o(O,{modelValue:r(m),"onUpdate:modelValue":d[1]||(d[1]=t=>$(m)?m.value=t:null),onClose:k},{default:e(()=>[ht,r(h)?(a(),_("div",kt," \u8BF7\u786E\u8BA4\u4FE1\u606F\u662F\u5426\u6709\u8BEF,\u53D1\u9001\u5408\u540C,\u8BF7\u786E\u8BA4\u4FE1\u606F\u662F\u5426\u6709\u8BEF,\u53D1\u9001\u7535\u5B50\u5408\u540C\u540E\u77ED\u65F6\u95F4\u5185\u5C06\u4E0D\u53EF\u518D\u6B21\u53D1\u9001. ")):(a(),_("div",Ft," \u786E\u8BA4\u7B7E\u7EA6\u77ED\u4FE1\u5C06\u572860\u79D2\u540E\u53D1\u9001,\u8BF7\u6CE8\u610F\u67E5\u6536,\u5E76\u70B9\u51FB\u77ED\u4FE1\u94FE\u63A5\u8FDB\u884C\u7EBF\u4E0A\u5408\u540C\u7B7E\u7EA6 ")),C("p",vt,[r(h)?(a(),s(u,{key:0,type:"primary",size:"large",onClick:R},{default:e(()=>[n("\u786E\u8BA4\u521B\u5EFA")]),_:1})):(a(),s(u,{key:1,type:"primary",size:"large",onClick:z},{default:e(()=>[n("\u786E\u8BA4")]),_:1})),o(u,{type:"info",size:"large",onClick:k},{default:e(()=>[n("\u8FD4\u56DE")]),_:1})])]),_:1},8,["modelValue"])])}}});export{_e as default}; diff --git a/public/admin/assets/system.02fce13c.js b/public/admin/assets/system.02fce13c.js new file mode 100644 index 000000000..c191ec32c --- /dev/null +++ b/public/admin/assets/system.02fce13c.js @@ -0,0 +1 @@ +import{r}from"./index.aa9bb752.js";function e(){return r.get({url:"/setting.system.system/info"})}function s(t){return r.get({url:"/setting.system.log/lists",params:t},{ignoreCancelToken:!0})}function o(){return r.post({url:"/setting.system.cache/clear"})}function a(t){return r.get({url:"/crontab.crontab/lists",params:t})}function c(t){return r.post({url:"/crontab.crontab/add",params:t})}function u(t){return r.get({url:"/crontab.crontab/detail",params:t})}function i(t){return r.post({url:"/crontab.crontab/edit",params:t})}function b(t){return r.post({url:"/crontab.crontab/delete",params:t})}function l(t){return r.get({url:"/crontab.crontab/expression",params:t})}export{e as a,s as b,u as c,l as d,i as e,c as f,b as g,a as h,o as s}; diff --git a/public/admin/assets/system.1f3b2cc7.js b/public/admin/assets/system.1f3b2cc7.js new file mode 100644 index 000000000..7faccd2c5 --- /dev/null +++ b/public/admin/assets/system.1f3b2cc7.js @@ -0,0 +1 @@ +import{r}from"./index.ed71ac09.js";function e(){return r.get({url:"/setting.system.system/info"})}function s(t){return r.get({url:"/setting.system.log/lists",params:t},{ignoreCancelToken:!0})}function o(){return r.post({url:"/setting.system.cache/clear"})}function a(t){return r.get({url:"/crontab.crontab/lists",params:t})}function c(t){return r.post({url:"/crontab.crontab/add",params:t})}function u(t){return r.get({url:"/crontab.crontab/detail",params:t})}function i(t){return r.post({url:"/crontab.crontab/edit",params:t})}function b(t){return r.post({url:"/crontab.crontab/delete",params:t})}function l(t){return r.get({url:"/crontab.crontab/expression",params:t})}export{e as a,s as b,u as c,l as d,i as e,c as f,b as g,a as h,o as s}; diff --git a/public/admin/assets/system.7bc7010f.js b/public/admin/assets/system.7bc7010f.js new file mode 100644 index 000000000..e03f8d2c8 --- /dev/null +++ b/public/admin/assets/system.7bc7010f.js @@ -0,0 +1 @@ +import{r}from"./index.37f7aea6.js";function e(){return r.get({url:"/setting.system.system/info"})}function s(t){return r.get({url:"/setting.system.log/lists",params:t},{ignoreCancelToken:!0})}function o(){return r.post({url:"/setting.system.cache/clear"})}function a(t){return r.get({url:"/crontab.crontab/lists",params:t})}function c(t){return r.post({url:"/crontab.crontab/add",params:t})}function u(t){return r.get({url:"/crontab.crontab/detail",params:t})}function i(t){return r.post({url:"/crontab.crontab/edit",params:t})}function b(t){return r.post({url:"/crontab.crontab/delete",params:t})}function l(t){return r.get({url:"/crontab.crontab/expression",params:t})}export{e as a,s as b,u as c,l as d,i as e,c as f,b as g,a as h,o as s}; diff --git a/public/admin/assets/tabbar.bcb68dc3.js b/public/admin/assets/tabbar.bcb68dc3.js new file mode 100644 index 000000000..3c21449e4 --- /dev/null +++ b/public/admin/assets/tabbar.bcb68dc3.js @@ -0,0 +1 @@ +import{_ as K}from"./index.fd04a214.js";import{s as O,B as $,w as I,x as Q,y as q,C as G,D as H,I as J}from"./element-plus.4328d892.js";import{d as v,e as W,o as _,c as b,U as e,u as n,k as w,L as o,R as x,$ as X,af as Y,a as l,T as Z,a7 as ee,_ as te,S as oe,O as le,K as U,Q as ae,M as se,t as ne,bf as ue,be as re}from"./@vue.51d7f2d8.js";import{_ as ie}from"./index.fe1d30dd.js";import{_ as de}from"./picker.d415e27a.js";import{_ as me}from"./picker.3821e495.js";import{f as S,b as pe,d as ce}from"./index.37f7aea6.js";import{b as _e,c as fe}from"./decoration.6f039a71.js";import{D as be}from"./vuedraggable.0cb40d3a.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.5759a1a6.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.af446662.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./index.5f944d34.js";import"./index.vue_vue_type_script_setup_true_lang.dc835bba.js";import"./usePaging.2ad8e1e6.js";import"./vue3-video-play.b911321b.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./vue.5de34049.js";import"./sortablejs.ef73fc5c.js";const xe={class:"color-picker flex flex-1"},Fe=v({__name:"index",props:{modelValue:{type:String},defaultColor:{type:String}},emits:["update:modelValue"],setup(m,{emit:C}){const F=m,t=W({get(){return F.modelValue},set(f){C("update:modelValue",f)}}),V=["#409EFF","#28C76F","#EA5455","#FF9F43","#01CFE8","#4A5DFF"],g=()=>{t.value=F.defaultColor};return(f,d)=>{const y=O,a=$,u=I;return _(),b("div",xe,[e(y,{modelValue:n(t),"onUpdate:modelValue":d[0]||(d[0]=p=>w(t)?t.value=p:null),predefine:V},null,8,["modelValue"]),e(a,{modelValue:n(t),"onUpdate:modelValue":d[1]||(d[1]=p=>w(t)?t.value=p:null),class:"mx-[10px] flex-1",type:"text",readonly:""},null,8,["modelValue"]),e(u,{type:"text",onClick:g},{default:o(()=>[x("\u91CD\u7F6E")]),_:1})])}}}),E=m=>(ue("data-v-11220d71"),m=m(),re(),m),Ve={class:"decoration-tabbar min-w-[800px]"},ge={class:"flex h-full items-start"},ye={class:"pages-preview mx-[30px]"},ve={class:"tabbar flex"},Ee=["src"],Ce={class:"leading-3 text-[12px] mt-[4px]"},he={class:"flex-1"},De=E(()=>l("div",{class:"title flex items-center before:w-[3px] before:h-[14px] before:block before:bg-primary before:mr-2"},[x(" \u5E95\u90E8\u5BFC\u822A\u8BBE\u7F6E "),l("span",{class:"form-tips ml-[10px] !mt-0"}," \u81F3\u5C11\u6DFB\u52A02\u4E2A\u5BFC\u822A\uFF0C\u6700\u591A\u6DFB\u52A05\u4E2A\u5BFC\u822A ")],-1)),Be={class:"mb-[18px]"},ke={class:"bg-fill-light w-full p-4 mt-4"},Ae={class:"upload-btn w-[60px] h-[60px]"},we=E(()=>l("span",{class:"text-xs leading-5"}," \u672A\u9009\u4E2D ",-1)),Ue={class:"upload-btn w-[60px] h-[60px]"},Se=E(()=>l("span",{class:"text-xs leading-5"}," \u9009\u4E2D ",-1)),$e=v({name:"decorationTabbar"}),Ie=v({...$e,setup(m){const t=X({style:{default_color:"",selected_color:""},list:[{name:"",selected:"",unselected:"",link:{}},{name:"",selected:"",unselected:"",link:{}}]}),V=()=>{var a;((a=t.list)==null?void 0:a.length)<5?t.list.push({name:"",selected:"",unselected:"",link:{}}):S.msgError(`\u6700\u591A\u6DFB\u52A0${5}\u4E2A`)},g=a=>{var u;if(((u=t.list)==null?void 0:u.length)<=2)return S.msgError(`\u6700\u5C11\u4FDD\u7559${2}\u4E2A`);t.list.splice(a,1)},f=a=>a.relatedContext.index!=0,d=async()=>{const a=await _e();t.list=a.list,t.style=a.style},y=async()=>{await fe(ne(t)),d()};return d(),(a,u)=>{const p=pe,h=me,c=G,T=$,z=de,N=ie,D=I,B=Q,k=Fe,P=q,R=H,L=J,M=K,j=Y("perms");return _(),b("div",Ve,[e(L,{shadow:"never",class:"!border-none flex-1","body-style":{height:"100%"}},{default:o(()=>[l("div",ge,[l("div",ye,[l("div",ve,[(_(!0),b(Z,null,ee(n(t).list,(r,s)=>(_(),b("div",{class:"tabbar-item flex flex-col justify-center items-center flex-1",key:s,style:te({color:n(t).style.default_color})},[l("img",{class:"w-[22px] h-[22px]",src:r.unselected,alt:""},null,8,Ee),l("div",Ce,oe(r.name),1)],4))),128))])]),l("div",he,[De,e(R,{class:"mt-4","label-width":"70px"},{default:o(()=>[e(P,{"model-value":"content"},{default:o(()=>[e(B,{label:"\u5BFC\u822A\u56FE\u7247",name:"content"},{default:o(()=>{var r;return[l("div",Be,[e(n(be),{class:"draggable",modelValue:n(t).list,"onUpdate:modelValue":u[0]||(u[0]=s=>n(t).list=s),animation:"300",draggable:".draggable",move:f},{item:o(({element:s,index:A})=>[e(N,{onClose:i=>g(A),class:le(["max-w-[400px]",{draggable:A!=0}])},{default:o(()=>[l("div",ke,[e(c,{label:"\u5BFC\u822A\u56FE\u6807"},{default:o(()=>[e(h,{modelValue:s.unselected,"onUpdate:modelValue":i=>s.unselected=i,"upload-class":"bg-body",size:"60px"},{upload:o(()=>[l("div",Ae,[e(p,{name:"el-icon-Plus",size:16}),we])]),_:2},1032,["modelValue","onUpdate:modelValue"]),e(h,{modelValue:s.selected,"onUpdate:modelValue":i=>s.selected=i,"upload-class":"bg-body",size:"60px"},{upload:o(()=>[l("div",Ue,[e(p,{name:"el-icon-Plus",size:16}),Se])]),_:2},1032,["modelValue","onUpdate:modelValue"])]),_:2},1024),e(c,{label:"\u5BFC\u822A\u540D\u79F0"},{default:o(()=>[e(T,{modelValue:s.name,"onUpdate:modelValue":i=>s.name=i,placeholder:"\u8BF7\u8F93\u5165\u540D\u79F0"},null,8,["modelValue","onUpdate:modelValue"])]),_:2},1024),e(c,{label:"\u94FE\u63A5\u5730\u5740"},{default:o(()=>[e(z,{modelValue:s.link,"onUpdate:modelValue":i=>s.link=i},null,8,["modelValue","onUpdate:modelValue"])]),_:2},1024)])]),_:2},1032,["onClose","class"])]),_:1},8,["modelValue"])]),((r=n(t).list)==null?void 0:r.length)<5?(_(),U(c,{key:0,"label-width":"0"},{default:o(()=>[e(D,{type:"primary",onClick:V},{default:o(()=>[x(" \u6DFB\u52A0\u5BFC\u822A ")]),_:1})]),_:1})):ae("",!0)]}),_:1}),e(B,{label:"\u6837\u5F0F\u8BBE\u7F6E",name:"styles"},{default:o(()=>[e(c,{label:"\u9ED8\u8BA4\u989C\u8272"},{default:o(()=>[e(k,{class:"max-w-[400px]",modelValue:n(t).style.default_color,"onUpdate:modelValue":u[1]||(u[1]=r=>n(t).style.default_color=r),"default-color":"#999999"},null,8,["modelValue"])]),_:1}),e(c,{label:"\u9009\u4E2D\u989C\u8272"},{default:o(()=>[e(k,{class:"max-w-[400px]",modelValue:n(t).style.selected_color,"onUpdate:modelValue":u[2]||(u[2]=r=>n(t).style.selected_color=r),"default-color":"#4173ff"},null,8,["modelValue"])]),_:1})]),_:1})]),_:1})]),_:1})])])]),_:1}),se((_(),U(M,{class:"mt-4",fixed:!1},{default:o(()=>[e(D,{type:"primary",onClick:y},{default:o(()=>[x("\u4FDD\u5B58")]),_:1})]),_:1})),[[j,["decorate:tabbar:save"]]])])}}});const Ut=ce(Ie,[["__scopeId","data-v-11220d71"]]);export{Ut as default}; diff --git a/public/admin/assets/tabbar.c788ba1a.js b/public/admin/assets/tabbar.c788ba1a.js new file mode 100644 index 000000000..fd0bf3d11 --- /dev/null +++ b/public/admin/assets/tabbar.c788ba1a.js @@ -0,0 +1 @@ +import{_ as K}from"./index.be5645df.js";import{s as O,B as $,w as I,x as Q,y as q,C as G,D as H,I as J}from"./element-plus.4328d892.js";import{d as v,e as W,o as _,c as b,U as e,u as n,k as w,L as o,R as x,$ as X,af as Y,a as l,T as Z,a7 as ee,_ as te,S as oe,O as le,K as U,Q as ae,M as se,t as ne,bf as ue,be as re}from"./@vue.51d7f2d8.js";import{_ as ie}from"./index.f2c7f81b.js";import{_ as de}from"./picker.47d21da2.js";import{_ as me}from"./picker.597494a6.js";import{f as S,b as pe,d as ce}from"./index.ed71ac09.js";import{b as _e,c as fe}from"./decoration.6a408574.js";import{D as be}from"./vuedraggable.0cb40d3a.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.b940d6e3.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.c38e1dd6.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./index.9c616a0c.js";import"./index.vue_vue_type_script_setup_true_lang.dc835bba.js";import"./usePaging.2ad8e1e6.js";import"./vue3-video-play.b911321b.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./vue.5de34049.js";import"./sortablejs.ef73fc5c.js";const xe={class:"color-picker flex flex-1"},Fe=v({__name:"index",props:{modelValue:{type:String},defaultColor:{type:String}},emits:["update:modelValue"],setup(m,{emit:C}){const F=m,t=W({get(){return F.modelValue},set(f){C("update:modelValue",f)}}),V=["#409EFF","#28C76F","#EA5455","#FF9F43","#01CFE8","#4A5DFF"],g=()=>{t.value=F.defaultColor};return(f,d)=>{const y=O,a=$,u=I;return _(),b("div",xe,[e(y,{modelValue:n(t),"onUpdate:modelValue":d[0]||(d[0]=p=>w(t)?t.value=p:null),predefine:V},null,8,["modelValue"]),e(a,{modelValue:n(t),"onUpdate:modelValue":d[1]||(d[1]=p=>w(t)?t.value=p:null),class:"mx-[10px] flex-1",type:"text",readonly:""},null,8,["modelValue"]),e(u,{type:"text",onClick:g},{default:o(()=>[x("\u91CD\u7F6E")]),_:1})])}}}),E=m=>(ue("data-v-11220d71"),m=m(),re(),m),Ve={class:"decoration-tabbar min-w-[800px]"},ge={class:"flex h-full items-start"},ye={class:"pages-preview mx-[30px]"},ve={class:"tabbar flex"},Ee=["src"],Ce={class:"leading-3 text-[12px] mt-[4px]"},he={class:"flex-1"},De=E(()=>l("div",{class:"title flex items-center before:w-[3px] before:h-[14px] before:block before:bg-primary before:mr-2"},[x(" \u5E95\u90E8\u5BFC\u822A\u8BBE\u7F6E "),l("span",{class:"form-tips ml-[10px] !mt-0"}," \u81F3\u5C11\u6DFB\u52A02\u4E2A\u5BFC\u822A\uFF0C\u6700\u591A\u6DFB\u52A05\u4E2A\u5BFC\u822A ")],-1)),Be={class:"mb-[18px]"},ke={class:"bg-fill-light w-full p-4 mt-4"},Ae={class:"upload-btn w-[60px] h-[60px]"},we=E(()=>l("span",{class:"text-xs leading-5"}," \u672A\u9009\u4E2D ",-1)),Ue={class:"upload-btn w-[60px] h-[60px]"},Se=E(()=>l("span",{class:"text-xs leading-5"}," \u9009\u4E2D ",-1)),$e=v({name:"decorationTabbar"}),Ie=v({...$e,setup(m){const t=X({style:{default_color:"",selected_color:""},list:[{name:"",selected:"",unselected:"",link:{}},{name:"",selected:"",unselected:"",link:{}}]}),V=()=>{var a;((a=t.list)==null?void 0:a.length)<5?t.list.push({name:"",selected:"",unselected:"",link:{}}):S.msgError(`\u6700\u591A\u6DFB\u52A0${5}\u4E2A`)},g=a=>{var u;if(((u=t.list)==null?void 0:u.length)<=2)return S.msgError(`\u6700\u5C11\u4FDD\u7559${2}\u4E2A`);t.list.splice(a,1)},f=a=>a.relatedContext.index!=0,d=async()=>{const a=await _e();t.list=a.list,t.style=a.style},y=async()=>{await fe(ne(t)),d()};return d(),(a,u)=>{const p=pe,h=me,c=G,T=$,z=de,N=ie,D=I,B=Q,k=Fe,P=q,R=H,L=J,M=K,j=Y("perms");return _(),b("div",Ve,[e(L,{shadow:"never",class:"!border-none flex-1","body-style":{height:"100%"}},{default:o(()=>[l("div",ge,[l("div",ye,[l("div",ve,[(_(!0),b(Z,null,ee(n(t).list,(r,s)=>(_(),b("div",{class:"tabbar-item flex flex-col justify-center items-center flex-1",key:s,style:te({color:n(t).style.default_color})},[l("img",{class:"w-[22px] h-[22px]",src:r.unselected,alt:""},null,8,Ee),l("div",Ce,oe(r.name),1)],4))),128))])]),l("div",he,[De,e(R,{class:"mt-4","label-width":"70px"},{default:o(()=>[e(P,{"model-value":"content"},{default:o(()=>[e(B,{label:"\u5BFC\u822A\u56FE\u7247",name:"content"},{default:o(()=>{var r;return[l("div",Be,[e(n(be),{class:"draggable",modelValue:n(t).list,"onUpdate:modelValue":u[0]||(u[0]=s=>n(t).list=s),animation:"300",draggable:".draggable",move:f},{item:o(({element:s,index:A})=>[e(N,{onClose:i=>g(A),class:le(["max-w-[400px]",{draggable:A!=0}])},{default:o(()=>[l("div",ke,[e(c,{label:"\u5BFC\u822A\u56FE\u6807"},{default:o(()=>[e(h,{modelValue:s.unselected,"onUpdate:modelValue":i=>s.unselected=i,"upload-class":"bg-body",size:"60px"},{upload:o(()=>[l("div",Ae,[e(p,{name:"el-icon-Plus",size:16}),we])]),_:2},1032,["modelValue","onUpdate:modelValue"]),e(h,{modelValue:s.selected,"onUpdate:modelValue":i=>s.selected=i,"upload-class":"bg-body",size:"60px"},{upload:o(()=>[l("div",Ue,[e(p,{name:"el-icon-Plus",size:16}),Se])]),_:2},1032,["modelValue","onUpdate:modelValue"])]),_:2},1024),e(c,{label:"\u5BFC\u822A\u540D\u79F0"},{default:o(()=>[e(T,{modelValue:s.name,"onUpdate:modelValue":i=>s.name=i,placeholder:"\u8BF7\u8F93\u5165\u540D\u79F0"},null,8,["modelValue","onUpdate:modelValue"])]),_:2},1024),e(c,{label:"\u94FE\u63A5\u5730\u5740"},{default:o(()=>[e(z,{modelValue:s.link,"onUpdate:modelValue":i=>s.link=i},null,8,["modelValue","onUpdate:modelValue"])]),_:2},1024)])]),_:2},1032,["onClose","class"])]),_:1},8,["modelValue"])]),((r=n(t).list)==null?void 0:r.length)<5?(_(),U(c,{key:0,"label-width":"0"},{default:o(()=>[e(D,{type:"primary",onClick:V},{default:o(()=>[x(" \u6DFB\u52A0\u5BFC\u822A ")]),_:1})]),_:1})):ae("",!0)]}),_:1}),e(B,{label:"\u6837\u5F0F\u8BBE\u7F6E",name:"styles"},{default:o(()=>[e(c,{label:"\u9ED8\u8BA4\u989C\u8272"},{default:o(()=>[e(k,{class:"max-w-[400px]",modelValue:n(t).style.default_color,"onUpdate:modelValue":u[1]||(u[1]=r=>n(t).style.default_color=r),"default-color":"#999999"},null,8,["modelValue"])]),_:1}),e(c,{label:"\u9009\u4E2D\u989C\u8272"},{default:o(()=>[e(k,{class:"max-w-[400px]",modelValue:n(t).style.selected_color,"onUpdate:modelValue":u[2]||(u[2]=r=>n(t).style.selected_color=r),"default-color":"#4173ff"},null,8,["modelValue"])]),_:1})]),_:1})]),_:1})]),_:1})])])]),_:1}),se((_(),U(M,{class:"mt-4",fixed:!1},{default:o(()=>[e(D,{type:"primary",onClick:y},{default:o(()=>[x("\u4FDD\u5B58")]),_:1})]),_:1})),[[j,["decorate:tabbar:save"]]])])}}});const Ut=ce(Ie,[["__scopeId","data-v-11220d71"]]);export{Ut as default}; diff --git a/public/admin/assets/tabbar.dab97b7e.js b/public/admin/assets/tabbar.dab97b7e.js new file mode 100644 index 000000000..a13830e01 --- /dev/null +++ b/public/admin/assets/tabbar.dab97b7e.js @@ -0,0 +1 @@ +import{_ as K}from"./index.13ef78d6.js";import{s as O,B as $,w as I,x as Q,y as q,C as G,D as H,I as J}from"./element-plus.4328d892.js";import{d as v,e as W,o as _,c as b,U as e,u as n,k as w,L as o,R as x,$ as X,af as Y,a as l,T as Z,a7 as ee,_ as te,S as oe,O as le,K as U,Q as ae,M as se,t as ne,bf as ue,be as re}from"./@vue.51d7f2d8.js";import{_ as ie}from"./index.a9a11abe.js";import{_ as de}from"./picker.c7d50072.js";import{_ as me}from"./picker.45aea54f.js";import{f as S,b as pe,d as ce}from"./index.aa9bb752.js";import{b as _e,c as fe}from"./decoration.4be01ffa.js";import{D as be}from"./vuedraggable.0cb40d3a.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.fa872673.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.c47e74f8.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./index.a450f1bb.js";import"./index.vue_vue_type_script_setup_true_lang.dc835bba.js";import"./usePaging.2ad8e1e6.js";import"./vue3-video-play.b911321b.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./vue.5de34049.js";import"./sortablejs.ef73fc5c.js";const xe={class:"color-picker flex flex-1"},Fe=v({__name:"index",props:{modelValue:{type:String},defaultColor:{type:String}},emits:["update:modelValue"],setup(m,{emit:C}){const F=m,t=W({get(){return F.modelValue},set(f){C("update:modelValue",f)}}),V=["#409EFF","#28C76F","#EA5455","#FF9F43","#01CFE8","#4A5DFF"],g=()=>{t.value=F.defaultColor};return(f,d)=>{const y=O,a=$,u=I;return _(),b("div",xe,[e(y,{modelValue:n(t),"onUpdate:modelValue":d[0]||(d[0]=p=>w(t)?t.value=p:null),predefine:V},null,8,["modelValue"]),e(a,{modelValue:n(t),"onUpdate:modelValue":d[1]||(d[1]=p=>w(t)?t.value=p:null),class:"mx-[10px] flex-1",type:"text",readonly:""},null,8,["modelValue"]),e(u,{type:"text",onClick:g},{default:o(()=>[x("\u91CD\u7F6E")]),_:1})])}}}),E=m=>(ue("data-v-11220d71"),m=m(),re(),m),Ve={class:"decoration-tabbar min-w-[800px]"},ge={class:"flex h-full items-start"},ye={class:"pages-preview mx-[30px]"},ve={class:"tabbar flex"},Ee=["src"],Ce={class:"leading-3 text-[12px] mt-[4px]"},he={class:"flex-1"},De=E(()=>l("div",{class:"title flex items-center before:w-[3px] before:h-[14px] before:block before:bg-primary before:mr-2"},[x(" \u5E95\u90E8\u5BFC\u822A\u8BBE\u7F6E "),l("span",{class:"form-tips ml-[10px] !mt-0"}," \u81F3\u5C11\u6DFB\u52A02\u4E2A\u5BFC\u822A\uFF0C\u6700\u591A\u6DFB\u52A05\u4E2A\u5BFC\u822A ")],-1)),Be={class:"mb-[18px]"},ke={class:"bg-fill-light w-full p-4 mt-4"},Ae={class:"upload-btn w-[60px] h-[60px]"},we=E(()=>l("span",{class:"text-xs leading-5"}," \u672A\u9009\u4E2D ",-1)),Ue={class:"upload-btn w-[60px] h-[60px]"},Se=E(()=>l("span",{class:"text-xs leading-5"}," \u9009\u4E2D ",-1)),$e=v({name:"decorationTabbar"}),Ie=v({...$e,setup(m){const t=X({style:{default_color:"",selected_color:""},list:[{name:"",selected:"",unselected:"",link:{}},{name:"",selected:"",unselected:"",link:{}}]}),V=()=>{var a;((a=t.list)==null?void 0:a.length)<5?t.list.push({name:"",selected:"",unselected:"",link:{}}):S.msgError(`\u6700\u591A\u6DFB\u52A0${5}\u4E2A`)},g=a=>{var u;if(((u=t.list)==null?void 0:u.length)<=2)return S.msgError(`\u6700\u5C11\u4FDD\u7559${2}\u4E2A`);t.list.splice(a,1)},f=a=>a.relatedContext.index!=0,d=async()=>{const a=await _e();t.list=a.list,t.style=a.style},y=async()=>{await fe(ne(t)),d()};return d(),(a,u)=>{const p=pe,h=me,c=G,T=$,z=de,N=ie,D=I,B=Q,k=Fe,P=q,R=H,L=J,M=K,j=Y("perms");return _(),b("div",Ve,[e(L,{shadow:"never",class:"!border-none flex-1","body-style":{height:"100%"}},{default:o(()=>[l("div",ge,[l("div",ye,[l("div",ve,[(_(!0),b(Z,null,ee(n(t).list,(r,s)=>(_(),b("div",{class:"tabbar-item flex flex-col justify-center items-center flex-1",key:s,style:te({color:n(t).style.default_color})},[l("img",{class:"w-[22px] h-[22px]",src:r.unselected,alt:""},null,8,Ee),l("div",Ce,oe(r.name),1)],4))),128))])]),l("div",he,[De,e(R,{class:"mt-4","label-width":"70px"},{default:o(()=>[e(P,{"model-value":"content"},{default:o(()=>[e(B,{label:"\u5BFC\u822A\u56FE\u7247",name:"content"},{default:o(()=>{var r;return[l("div",Be,[e(n(be),{class:"draggable",modelValue:n(t).list,"onUpdate:modelValue":u[0]||(u[0]=s=>n(t).list=s),animation:"300",draggable:".draggable",move:f},{item:o(({element:s,index:A})=>[e(N,{onClose:i=>g(A),class:le(["max-w-[400px]",{draggable:A!=0}])},{default:o(()=>[l("div",ke,[e(c,{label:"\u5BFC\u822A\u56FE\u6807"},{default:o(()=>[e(h,{modelValue:s.unselected,"onUpdate:modelValue":i=>s.unselected=i,"upload-class":"bg-body",size:"60px"},{upload:o(()=>[l("div",Ae,[e(p,{name:"el-icon-Plus",size:16}),we])]),_:2},1032,["modelValue","onUpdate:modelValue"]),e(h,{modelValue:s.selected,"onUpdate:modelValue":i=>s.selected=i,"upload-class":"bg-body",size:"60px"},{upload:o(()=>[l("div",Ue,[e(p,{name:"el-icon-Plus",size:16}),Se])]),_:2},1032,["modelValue","onUpdate:modelValue"])]),_:2},1024),e(c,{label:"\u5BFC\u822A\u540D\u79F0"},{default:o(()=>[e(T,{modelValue:s.name,"onUpdate:modelValue":i=>s.name=i,placeholder:"\u8BF7\u8F93\u5165\u540D\u79F0"},null,8,["modelValue","onUpdate:modelValue"])]),_:2},1024),e(c,{label:"\u94FE\u63A5\u5730\u5740"},{default:o(()=>[e(z,{modelValue:s.link,"onUpdate:modelValue":i=>s.link=i},null,8,["modelValue","onUpdate:modelValue"])]),_:2},1024)])]),_:2},1032,["onClose","class"])]),_:1},8,["modelValue"])]),((r=n(t).list)==null?void 0:r.length)<5?(_(),U(c,{key:0,"label-width":"0"},{default:o(()=>[e(D,{type:"primary",onClick:V},{default:o(()=>[x(" \u6DFB\u52A0\u5BFC\u822A ")]),_:1})]),_:1})):ae("",!0)]}),_:1}),e(B,{label:"\u6837\u5F0F\u8BBE\u7F6E",name:"styles"},{default:o(()=>[e(c,{label:"\u9ED8\u8BA4\u989C\u8272"},{default:o(()=>[e(k,{class:"max-w-[400px]",modelValue:n(t).style.default_color,"onUpdate:modelValue":u[1]||(u[1]=r=>n(t).style.default_color=r),"default-color":"#999999"},null,8,["modelValue"])]),_:1}),e(c,{label:"\u9009\u4E2D\u989C\u8272"},{default:o(()=>[e(k,{class:"max-w-[400px]",modelValue:n(t).style.selected_color,"onUpdate:modelValue":u[2]||(u[2]=r=>n(t).style.selected_color=r),"default-color":"#4173ff"},null,8,["modelValue"])]),_:1})]),_:1})]),_:1})]),_:1})])])]),_:1}),se((_(),U(M,{class:"mt-4",fixed:!1},{default:o(()=>[e(D,{type:"primary",onClick:y},{default:o(()=>[x("\u4FDD\u5B58")]),_:1})]),_:1})),[[j,["decorate:tabbar:save"]]])])}}});const Ut=ce(Ie,[["__scopeId","data-v-11220d71"]]);export{Ut as default}; diff --git a/public/admin/assets/taskCalendar.14f8b41d.js b/public/admin/assets/taskCalendar.14f8b41d.js new file mode 100644 index 000000000..b652fd3a3 --- /dev/null +++ b/public/admin/assets/taskCalendar.14f8b41d.js @@ -0,0 +1 @@ +import{I as L,Q as R}from"./element-plus.4328d892.js";import{u as S}from"./vue-router.9f65afb1.js";import{v as h}from"./index.37f7aea6.js";import{E as B,a as F}from"./editTow.2f446f2c.js";import{_ as I}from"./calendar.vue_vue_type_style_index_0_lang.da31ccbb.js";import{d as C,r as t,s as k,$ as M,o as D,c as $,M as P,u as s,K as Y,L as b,U as T,n as z}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.5759a1a6.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./list_two.0f9732b7.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./usePaging.2ad8e1e6.js";import"./useDictOptions.a45fc8ac.js";import"./map.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.0177b6b6.js";import"./edit.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.43063e2b.js";import"./dialog_index_personnel.vue_vue_type_script_setup_true_name_companyLists_lang.7fc490f9.js";import"./role.8d2a6d5e.js";import"./vue-simple-calendar.4032adb4.js";const K=C({name:"task"}),$t=C({...K,setup(N){const n=S();t(new Date);const m=t({create_user_id:0,end_time:"",id:0,scheduling_id:0,start_time:"",status:0,template_id:0,template_name:""}),p=t("add"),q=e=>{p.value="show",m.value=u.value.find(o=>o.id==e)||null,x()},l=t(!0);k();const c=k();t(!1);const _=t(!1),r=M({scheduling_id:"",start_time:"",end_time:"",page_no:1,page_size:300});n.query.id&&(r.scheduling_id=n.query.id.toString());const v=t("");n.query.company_id&&(v.value=n.query.company_id);const u=t([]),f=async()=>{F(r).then(e=>{u.value=e.lists,l.value=!1})},d=t(""),w=t(""),y=(e="")=>{const o=e?new Date(e):new Date,a=o.getFullYear(),i=o.getMonth(),g=new Date(a,i+1,0).getDay(),E=new Date(a,i,1).getDay();d.value=h(new Date(a,i,1-E).getTime()),w.value=h(new Date(a,i+1,6-g).getTime()),r.start_time!=d.value&&(r.start_time=d.value,r.end_time=w.value,l.value=!0,f())};y();const x=async()=>{var e,o;p.value="show",_.value=!0,await z(),(e=c.value)==null||e.open("show"),(o=c.value)==null||o.updatedForm(m.value)};return t(0),(e,o)=>{const a=L,i=R;return D(),$("div",null,[P((D(),Y(a,{class:"!border-none",shadow:"never"},{default:b(()=>[T(I,{list:s(u),onClickItem:q,onInitShowDate:y},null,8,["list"])]),_:1})),[[i,s(l)]]),T(B,{ref_key:"editTowRef",ref:c,task:s(m),type:s(p),company_id:s(v),onSuccess:f,onClose:o[0]||(o[0]=g=>_.value=!1)},null,8,["task","type","company_id"])])}}});export{$t as default}; diff --git a/public/admin/assets/taskCalendar.3f419726.js b/public/admin/assets/taskCalendar.3f419726.js new file mode 100644 index 000000000..64a23f2f5 --- /dev/null +++ b/public/admin/assets/taskCalendar.3f419726.js @@ -0,0 +1 @@ +import{I as L,Q as R}from"./element-plus.4328d892.js";import{u as S}from"./vue-router.9f65afb1.js";import{v as h}from"./index.ed71ac09.js";import{E as B,a as F}from"./editTow.5182e788.js";import{_ as I}from"./calendar.vue_vue_type_style_index_0_lang.da31ccbb.js";import{d as C,r as t,s as k,$ as M,o as D,c as $,M as P,u as s,K as Y,L as b,U as T,n as z}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.b940d6e3.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./list_two.e2f85723.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./usePaging.2ad8e1e6.js";import"./useDictOptions.8d37e54b.js";import"./map.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.c34becfa.js";import"./edit.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.c27438b7.js";import"./dialog_index_personnel.vue_vue_type_script_setup_true_name_companyLists_lang.e9155591.js";import"./role.1c72c4c7.js";import"./vue-simple-calendar.4032adb4.js";const K=C({name:"task"}),$t=C({...K,setup(N){const n=S();t(new Date);const m=t({create_user_id:0,end_time:"",id:0,scheduling_id:0,start_time:"",status:0,template_id:0,template_name:""}),p=t("add"),q=e=>{p.value="show",m.value=u.value.find(o=>o.id==e)||null,x()},l=t(!0);k();const c=k();t(!1);const _=t(!1),r=M({scheduling_id:"",start_time:"",end_time:"",page_no:1,page_size:300});n.query.id&&(r.scheduling_id=n.query.id.toString());const v=t("");n.query.company_id&&(v.value=n.query.company_id);const u=t([]),f=async()=>{F(r).then(e=>{u.value=e.lists,l.value=!1})},d=t(""),w=t(""),y=(e="")=>{const o=e?new Date(e):new Date,a=o.getFullYear(),i=o.getMonth(),g=new Date(a,i+1,0).getDay(),E=new Date(a,i,1).getDay();d.value=h(new Date(a,i,1-E).getTime()),w.value=h(new Date(a,i+1,6-g).getTime()),r.start_time!=d.value&&(r.start_time=d.value,r.end_time=w.value,l.value=!0,f())};y();const x=async()=>{var e,o;p.value="show",_.value=!0,await z(),(e=c.value)==null||e.open("show"),(o=c.value)==null||o.updatedForm(m.value)};return t(0),(e,o)=>{const a=L,i=R;return D(),$("div",null,[P((D(),Y(a,{class:"!border-none",shadow:"never"},{default:b(()=>[T(I,{list:s(u),onClickItem:q,onInitShowDate:y},null,8,["list"])]),_:1})),[[i,s(l)]]),T(B,{ref_key:"editTowRef",ref:c,task:s(m),type:s(p),company_id:s(v),onSuccess:f,onClose:o[0]||(o[0]=g=>_.value=!1)},null,8,["task","type","company_id"])])}}});export{$t as default}; diff --git a/public/admin/assets/taskCalendar.90ca8fe1.js b/public/admin/assets/taskCalendar.90ca8fe1.js new file mode 100644 index 000000000..cd4bac958 --- /dev/null +++ b/public/admin/assets/taskCalendar.90ca8fe1.js @@ -0,0 +1 @@ +import{I as L,Q as R}from"./element-plus.4328d892.js";import{u as S}from"./vue-router.9f65afb1.js";import{v as h}from"./index.aa9bb752.js";import{E as B,a as F}from"./editTow.93ca4f73.js";import{_ as I}from"./calendar.vue_vue_type_style_index_0_lang.da31ccbb.js";import{d as C,r as t,s as k,$ as M,o as D,c as $,M as P,u as s,K as Y,L as b,U as T,n as z}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";import"./index.fa872673.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./list_two.c6a9842f.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./usePaging.2ad8e1e6.js";import"./useDictOptions.a61fcf9f.js";import"./map.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.9d7f531d.js";import"./edit.vue_vue_type_script_setup_true_name_taskTemplateEdit_lang.656c3f7f.js";import"./dialog_index_personnel.vue_vue_type_script_setup_true_name_companyLists_lang.ddb96626.js";import"./role.41d5883e.js";import"./vue-simple-calendar.4032adb4.js";const K=C({name:"task"}),$t=C({...K,setup(N){const n=S();t(new Date);const m=t({create_user_id:0,end_time:"",id:0,scheduling_id:0,start_time:"",status:0,template_id:0,template_name:""}),p=t("add"),q=e=>{p.value="show",m.value=u.value.find(o=>o.id==e)||null,x()},l=t(!0);k();const c=k();t(!1);const _=t(!1),r=M({scheduling_id:"",start_time:"",end_time:"",page_no:1,page_size:300});n.query.id&&(r.scheduling_id=n.query.id.toString());const v=t("");n.query.company_id&&(v.value=n.query.company_id);const u=t([]),f=async()=>{F(r).then(e=>{u.value=e.lists,l.value=!1})},d=t(""),w=t(""),y=(e="")=>{const o=e?new Date(e):new Date,a=o.getFullYear(),i=o.getMonth(),g=new Date(a,i+1,0).getDay(),E=new Date(a,i,1).getDay();d.value=h(new Date(a,i,1-E).getTime()),w.value=h(new Date(a,i+1,6-g).getTime()),r.start_time!=d.value&&(r.start_time=d.value,r.end_time=w.value,l.value=!0,f())};y();const x=async()=>{var e,o;p.value="show",_.value=!0,await z(),(e=c.value)==null||e.open("show"),(o=c.value)==null||o.updatedForm(m.value)};return t(0),(e,o)=>{const a=L,i=R;return D(),$("div",null,[P((D(),Y(a,{class:"!border-none",shadow:"never"},{default:b(()=>[T(I,{list:s(u),onClickItem:q,onInitShowDate:y},null,8,["list"])]),_:1})),[[i,s(l)]]),T(B,{ref_key:"editTowRef",ref:c,task:s(m),type:s(p),company_id:s(v),onSuccess:f,onClose:o[0]||(o[0]=g=>_.value=!1)},null,8,["task","type","company_id"])])}}});export{$t as default}; diff --git a/public/admin/assets/task_scheduling.1b21dca9.js b/public/admin/assets/task_scheduling.1b21dca9.js new file mode 100644 index 000000000..bbf58e5ef --- /dev/null +++ b/public/admin/assets/task_scheduling.1b21dca9.js @@ -0,0 +1 @@ +import{r as t}from"./index.ed71ac09.js";function e(s){return t.get({url:"/task_scheduling.task_scheduling/lists",params:s})}function n(s){return t.post({url:"/task_scheduling.task_scheduling/add",params:s})}function u(s){return t.post({url:"/task_scheduling.task_scheduling/edit",params:s})}function a(s){return t.get({url:"/task_scheduling.task_scheduling/detail",params:s})}function d(s){return t.post({url:"/task_scheduling.task_scheduling/editMoney",params:s})}export{a,u as b,n as c,e as d,d as e}; diff --git a/public/admin/assets/task_scheduling.46c64d43.js b/public/admin/assets/task_scheduling.46c64d43.js new file mode 100644 index 000000000..6cf210d98 --- /dev/null +++ b/public/admin/assets/task_scheduling.46c64d43.js @@ -0,0 +1 @@ +import{r as t}from"./index.aa9bb752.js";function e(s){return t.get({url:"/task_scheduling.task_scheduling/lists",params:s})}function n(s){return t.post({url:"/task_scheduling.task_scheduling/add",params:s})}function u(s){return t.post({url:"/task_scheduling.task_scheduling/edit",params:s})}function a(s){return t.get({url:"/task_scheduling.task_scheduling/detail",params:s})}function d(s){return t.post({url:"/task_scheduling.task_scheduling/editMoney",params:s})}export{a,u as b,n as c,e as d,d as e}; diff --git a/public/admin/assets/task_scheduling.7035f2c0.js b/public/admin/assets/task_scheduling.7035f2c0.js new file mode 100644 index 000000000..ce9860fe4 --- /dev/null +++ b/public/admin/assets/task_scheduling.7035f2c0.js @@ -0,0 +1 @@ +import{r as t}from"./index.37f7aea6.js";function e(s){return t.get({url:"/task_scheduling.task_scheduling/lists",params:s})}function n(s){return t.post({url:"/task_scheduling.task_scheduling/add",params:s})}function u(s){return t.post({url:"/task_scheduling.task_scheduling/edit",params:s})}function a(s){return t.get({url:"/task_scheduling.task_scheduling/detail",params:s})}function d(s){return t.post({url:"/task_scheduling.task_scheduling/editMoney",params:s})}export{a,u as b,n as c,e as d,d as e}; diff --git a/public/admin/assets/thickProcessing.2ca73e55.js b/public/admin/assets/thickProcessing.2ca73e55.js new file mode 100644 index 000000000..19170f2a6 --- /dev/null +++ b/public/admin/assets/thickProcessing.2ca73e55.js @@ -0,0 +1 @@ +import{G as B,H as z,C as D,a1 as k,B as v,M as A,N as x,a2 as w,D as I,I as N}from"./element-plus.4328d892.js";import{d as R,r as S,o as r,K as V,L as a,U as e,a as E,R as d,S as L,c as p,T as f,a7 as P,u as T}from"./@vue.51d7f2d8.js";import{d as G}from"./index.ed71ac09.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const O={class:"tit"},j={class:"time"},H=R({__name:"thickProcessing",props:{datas:{type:Object,defualt:function(){return{is_manage:"",construction_land:"",land_area:"",manage_place:"",source_materials:"",marketing_channel:"",technical_guidance:"",brand:"",advertising:"",transport:"",business_appeal:"",manage_type:"",people_count:"",canteen:"",automation:"",employment:"",repertory:""}}},update_time:{type:String,defualt:""}},setup(l){const _=S(["\u8D85\u5E02","\u751F\u9C9C","\u996D\u5E97","\u4E94\u91D1","\u6742\u8D27","\u670D\u88C5","\u6587\u5177","\u5176\u4ED6"]);return(g,t)=>{const o=B,s=z,n=D,m=k,i=v,C=A,F=x,y=w,U=I,c=N;return r(),V(c,{style:{"margin-top":"16px"}},{default:a(()=>[e(U,{ref:"elForm",disabled:!0,model:g.formData,size:"mini","label-width":"180px"},{default:a(()=>[E("div",O,[d(" \u7C97\u52A0\u5DE5 "),E("span",j,"\u66F4\u65B0\u4E8E:"+L(l.update_time),1)]),e(y,null,{default:a(()=>[e(m,{span:8},{default:a(()=>[e(n,{label:"\u662F\u5426\u5728\u7ECF\u8425",prop:"is_manage"},{default:a(()=>[e(s,{modelValue:l.datas.is_manage,"onUpdate:modelValue":t[0]||(t[0]=u=>l.datas.is_manage=u),size:"medium"},{default:a(()=>[e(o,{label:"1"},{default:a(()=>[d("\u662F")]),_:1}),e(o,{label:"0"},{default:a(()=>[d("\u5426")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),l.datas.is_manage==1?(r(),p(f,{key:0},[e(m,{span:8},{default:a(()=>[e(n,{label:"\u6709\u65E0\u5EFA\u8BBE\u7528\u5730",prop:"construction_land"},{default:a(()=>[e(s,{modelValue:l.datas.construction_land,"onUpdate:modelValue":t[1]||(t[1]=u=>l.datas.construction_land=u),size:"medium"},{default:a(()=>[e(o,{label:"1"},{default:a(()=>[d("\u6709")]),_:1}),e(o,{label:"0"},{default:a(()=>[d("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u9762\u79EF(m\xB2)",prop:"land_area"},{default:a(()=>[e(i,{modelValue:l.datas.land_area,"onUpdate:modelValue":t[2]||(t[2]=u=>l.datas.land_area=u),clearable:"",disabled:!0},null,8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u7ECF\u8425\u5730\u70B9",prop:"manage_place"},{default:a(()=>[e(i,{modelValue:l.datas.manage_place,"onUpdate:modelValue":t[3]||(t[3]=u=>l.datas.manage_place=u),clearable:"",disabled:!0},null,8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u6750\u6599\u6765\u6E90",prop:"source_materials"},{default:a(()=>[e(i,{modelValue:l.datas.source_materials,"onUpdate:modelValue":t[4]||(t[4]=u=>l.datas.source_materials=u),clearable:"",disabled:!0},null,8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u6709\u65E0\u9500\u552E\u6E20\u9053",prop:"marketing_channel"},{default:a(()=>[e(s,{modelValue:l.datas.marketing_channel,"onUpdate:modelValue":t[5]||(t[5]=u=>l.datas.marketing_channel=u),size:"medium"},{default:a(()=>[e(o,{label:"1"},{default:a(()=>[d("\u6709")]),_:1}),e(o,{label:"0"},{default:a(()=>[d("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u6709\u65E0\u6280\u672F\u6307\u5BFC",prop:"technical_guidance"},{default:a(()=>[e(s,{modelValue:l.datas.technical_guidance,"onUpdate:modelValue":t[6]||(t[6]=u=>l.datas.technical_guidance=u),size:"medium"},{default:a(()=>[e(o,{label:"1"},{default:a(()=>[d("\u6709")]),_:1}),e(o,{label:"0"},{default:a(()=>[d("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u6709\u65E0\u54C1\u724C",prop:"brand"},{default:a(()=>[e(s,{modelValue:l.datas.brand,"onUpdate:modelValue":t[7]||(t[7]=u=>l.datas.brand=u),size:"medium"},{default:a(()=>[e(o,{label:"1"},{default:a(()=>[d("\u6709")]),_:1}),e(o,{label:"0"},{default:a(()=>[d("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u6709\u65E0\u5BA3\u4F20\u63A8\u5E7F",prop:"advertising"},{default:a(()=>[e(s,{modelValue:l.datas.advertising,"onUpdate:modelValue":t[8]||(t[8]=u=>l.datas.advertising=u),size:"medium"},{default:a(()=>[e(o,{label:"1"},{default:a(()=>[d("\u6709")]),_:1}),e(o,{label:"0"},{default:a(()=>[d("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u6709\u65E0\u8FD0\u8F93",prop:"transport"},{default:a(()=>[e(s,{modelValue:l.datas.transport,"onUpdate:modelValue":t[9]||(t[9]=u=>l.datas.transport=u),size:"medium"},{default:a(()=>[e(o,{label:"1"},{default:a(()=>[d("\u6709")]),_:1}),e(o,{label:"0"},{default:a(()=>[d("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u7ECF\u8425\u8BC9\u6C42",prop:"business_appeal"},{default:a(()=>[e(i,{modelValue:l.datas.business_appeal,"onUpdate:modelValue":t[10]||(t[10]=u=>l.datas.business_appeal=u),clearable:"",autosize:"",type:"textarea",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1})],64)):(r(),p(f,{key:1},[e(m,{span:8},{default:a(()=>[e(n,{label:"\u6709\u65E0\u5EFA\u8BBE\u7528\u5730",prop:"construction_land"},{default:a(()=>[e(s,{modelValue:l.datas.construction_land,"onUpdate:modelValue":t[11]||(t[11]=u=>l.datas.construction_land=u),size:"medium"},{default:a(()=>[e(o,{label:"1"},{default:a(()=>[d("\u6709")]),_:1}),e(o,{label:"0"},{default:a(()=>[d("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u7ECF\u8425\u7C7B\u578B",prop:"manage_type"},{default:a(()=>[e(F,{modelValue:l.datas.manage_type,"onUpdate:modelValue":t[12]||(t[12]=u=>l.datas.manage_type=u),clearable:"",style:{width:"100%"}},{default:a(()=>[(r(!0),p(f,null,P(T(_),(u,b)=>(r(),V(C,{key:b,label:u,value:b+""},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u7ECF\u8425\u5730\u70B9",prop:"manage_place"},{default:a(()=>[e(i,{modelValue:l.datas.manage_place,"onUpdate:modelValue":t[13]||(t[13]=u=>l.datas.manage_place=u),clearable:"",disabled:!0},null,8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u4EBA\u6570",prop:"people_count"},{default:a(()=>[e(i,{modelValue:l.datas.people_count,"onUpdate:modelValue":t[14]||(t[14]=u=>l.datas.people_count=u),clearable:"",disabled:!0},null,8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u6709\u65E0\u98DF\u5802",prop:"canteen"},{default:a(()=>[e(s,{modelValue:l.datas.canteen,"onUpdate:modelValue":t[15]||(t[15]=u=>l.datas.canteen=u),size:"medium"},{default:a(()=>[e(o,{label:"1"},{default:a(()=>[d("\u6709")]),_:1}),e(o,{label:"0"},{default:a(()=>[d("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u6750\u6599\u6765\u6E90",prop:"source_materials"},{default:a(()=>[e(i,{modelValue:l.datas.source_materials,"onUpdate:modelValue":t[16]||(t[16]=u=>l.datas.source_materials=u),clearable:"",disabled:!0},null,8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u81EA\u52A8\u5316\u529E\u516C\u7A0B\u5EA6",prop:"automation"},{default:a(()=>[e(i,{modelValue:l.datas.automation,"onUpdate:modelValue":t[17]||(t[17]=u=>l.datas.automation=u),clearable:"",disabled:!0},null,8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u6709\u65E0\u7528\u5DE5\u9700\u6C42",prop:"employment"},{default:a(()=>[e(s,{modelValue:l.datas.employment,"onUpdate:modelValue":t[18]||(t[18]=u=>l.datas.employment=u),size:"medium"},{default:a(()=>[e(o,{label:"1"},{default:a(()=>[d("\u6709")]),_:1}),e(o,{label:"0"},{default:a(()=>[d("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u6709\u65E0\u54C1\u724C",prop:"brand"},{default:a(()=>[e(s,{modelValue:l.datas.brand,"onUpdate:modelValue":t[19]||(t[19]=u=>l.datas.brand=u),size:"medium"},{default:a(()=>[e(o,{label:"1"},{default:a(()=>[d("\u6709")]),_:1}),e(o,{label:"0"},{default:a(()=>[d("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u6709\u65E0\u5BA3\u4F20\u63A8\u5E7F",prop:"advertising"},{default:a(()=>[e(s,{modelValue:l.datas.advertising,"onUpdate:modelValue":t[20]||(t[20]=u=>l.datas.advertising=u),size:"medium"},{default:a(()=>[e(o,{label:"1"},{default:a(()=>[d("\u6709")]),_:1}),e(o,{label:"0"},{default:a(()=>[d("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u5E93\u5B58\u60C5\u51B5",prop:"repertory"},{default:a(()=>[e(i,{modelValue:l.datas.repertory,"onUpdate:modelValue":t[21]||(t[21]=u=>l.datas.repertory=u),clearable:"",disabled:!0},null,8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u6709\u65E0\u8FD0\u8F93",prop:"transport"},{default:a(()=>[e(s,{modelValue:l.datas.transport,"onUpdate:modelValue":t[22]||(t[22]=u=>l.datas.transport=u),size:"medium"},{default:a(()=>[e(o,{label:"1"},{default:a(()=>[d("\u6709")]),_:1}),e(o,{label:"0"},{default:a(()=>[d("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u7ECF\u8425\u8BC9\u6C42",prop:"business_appeal"},{default:a(()=>[e(i,{modelValue:l.datas.business_appeal,"onUpdate:modelValue":t[23]||(t[23]=u=>l.datas.business_appeal=u),clearable:"",autosize:"",type:"textarea",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1})],64))]),_:1})]),_:1},8,["model"])]),_:1})}}});const ce=G(H,[["__scopeId","data-v-094cd797"]]);export{ce as default}; diff --git a/public/admin/assets/thickProcessing.7253c120.js b/public/admin/assets/thickProcessing.7253c120.js new file mode 100644 index 000000000..9baee480c --- /dev/null +++ b/public/admin/assets/thickProcessing.7253c120.js @@ -0,0 +1 @@ +import{G as B,H as z,C as D,a1 as k,B as v,M as A,N as x,a2 as w,D as I,I as N}from"./element-plus.4328d892.js";import{d as R,r as S,o as r,K as V,L as a,U as e,a as E,R as d,S as L,c as p,T as f,a7 as P,u as T}from"./@vue.51d7f2d8.js";import{d as G}from"./index.aa9bb752.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const O={class:"tit"},j={class:"time"},H=R({__name:"thickProcessing",props:{datas:{type:Object,defualt:function(){return{is_manage:"",construction_land:"",land_area:"",manage_place:"",source_materials:"",marketing_channel:"",technical_guidance:"",brand:"",advertising:"",transport:"",business_appeal:"",manage_type:"",people_count:"",canteen:"",automation:"",employment:"",repertory:""}}},update_time:{type:String,defualt:""}},setup(l){const _=S(["\u8D85\u5E02","\u751F\u9C9C","\u996D\u5E97","\u4E94\u91D1","\u6742\u8D27","\u670D\u88C5","\u6587\u5177","\u5176\u4ED6"]);return(g,t)=>{const o=B,s=z,n=D,m=k,i=v,C=A,F=x,y=w,U=I,c=N;return r(),V(c,{style:{"margin-top":"16px"}},{default:a(()=>[e(U,{ref:"elForm",disabled:!0,model:g.formData,size:"mini","label-width":"180px"},{default:a(()=>[E("div",O,[d(" \u7C97\u52A0\u5DE5 "),E("span",j,"\u66F4\u65B0\u4E8E:"+L(l.update_time),1)]),e(y,null,{default:a(()=>[e(m,{span:8},{default:a(()=>[e(n,{label:"\u662F\u5426\u5728\u7ECF\u8425",prop:"is_manage"},{default:a(()=>[e(s,{modelValue:l.datas.is_manage,"onUpdate:modelValue":t[0]||(t[0]=u=>l.datas.is_manage=u),size:"medium"},{default:a(()=>[e(o,{label:"1"},{default:a(()=>[d("\u662F")]),_:1}),e(o,{label:"0"},{default:a(()=>[d("\u5426")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),l.datas.is_manage==1?(r(),p(f,{key:0},[e(m,{span:8},{default:a(()=>[e(n,{label:"\u6709\u65E0\u5EFA\u8BBE\u7528\u5730",prop:"construction_land"},{default:a(()=>[e(s,{modelValue:l.datas.construction_land,"onUpdate:modelValue":t[1]||(t[1]=u=>l.datas.construction_land=u),size:"medium"},{default:a(()=>[e(o,{label:"1"},{default:a(()=>[d("\u6709")]),_:1}),e(o,{label:"0"},{default:a(()=>[d("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u9762\u79EF(m\xB2)",prop:"land_area"},{default:a(()=>[e(i,{modelValue:l.datas.land_area,"onUpdate:modelValue":t[2]||(t[2]=u=>l.datas.land_area=u),clearable:"",disabled:!0},null,8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u7ECF\u8425\u5730\u70B9",prop:"manage_place"},{default:a(()=>[e(i,{modelValue:l.datas.manage_place,"onUpdate:modelValue":t[3]||(t[3]=u=>l.datas.manage_place=u),clearable:"",disabled:!0},null,8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u6750\u6599\u6765\u6E90",prop:"source_materials"},{default:a(()=>[e(i,{modelValue:l.datas.source_materials,"onUpdate:modelValue":t[4]||(t[4]=u=>l.datas.source_materials=u),clearable:"",disabled:!0},null,8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u6709\u65E0\u9500\u552E\u6E20\u9053",prop:"marketing_channel"},{default:a(()=>[e(s,{modelValue:l.datas.marketing_channel,"onUpdate:modelValue":t[5]||(t[5]=u=>l.datas.marketing_channel=u),size:"medium"},{default:a(()=>[e(o,{label:"1"},{default:a(()=>[d("\u6709")]),_:1}),e(o,{label:"0"},{default:a(()=>[d("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u6709\u65E0\u6280\u672F\u6307\u5BFC",prop:"technical_guidance"},{default:a(()=>[e(s,{modelValue:l.datas.technical_guidance,"onUpdate:modelValue":t[6]||(t[6]=u=>l.datas.technical_guidance=u),size:"medium"},{default:a(()=>[e(o,{label:"1"},{default:a(()=>[d("\u6709")]),_:1}),e(o,{label:"0"},{default:a(()=>[d("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u6709\u65E0\u54C1\u724C",prop:"brand"},{default:a(()=>[e(s,{modelValue:l.datas.brand,"onUpdate:modelValue":t[7]||(t[7]=u=>l.datas.brand=u),size:"medium"},{default:a(()=>[e(o,{label:"1"},{default:a(()=>[d("\u6709")]),_:1}),e(o,{label:"0"},{default:a(()=>[d("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u6709\u65E0\u5BA3\u4F20\u63A8\u5E7F",prop:"advertising"},{default:a(()=>[e(s,{modelValue:l.datas.advertising,"onUpdate:modelValue":t[8]||(t[8]=u=>l.datas.advertising=u),size:"medium"},{default:a(()=>[e(o,{label:"1"},{default:a(()=>[d("\u6709")]),_:1}),e(o,{label:"0"},{default:a(()=>[d("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u6709\u65E0\u8FD0\u8F93",prop:"transport"},{default:a(()=>[e(s,{modelValue:l.datas.transport,"onUpdate:modelValue":t[9]||(t[9]=u=>l.datas.transport=u),size:"medium"},{default:a(()=>[e(o,{label:"1"},{default:a(()=>[d("\u6709")]),_:1}),e(o,{label:"0"},{default:a(()=>[d("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u7ECF\u8425\u8BC9\u6C42",prop:"business_appeal"},{default:a(()=>[e(i,{modelValue:l.datas.business_appeal,"onUpdate:modelValue":t[10]||(t[10]=u=>l.datas.business_appeal=u),clearable:"",autosize:"",type:"textarea",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1})],64)):(r(),p(f,{key:1},[e(m,{span:8},{default:a(()=>[e(n,{label:"\u6709\u65E0\u5EFA\u8BBE\u7528\u5730",prop:"construction_land"},{default:a(()=>[e(s,{modelValue:l.datas.construction_land,"onUpdate:modelValue":t[11]||(t[11]=u=>l.datas.construction_land=u),size:"medium"},{default:a(()=>[e(o,{label:"1"},{default:a(()=>[d("\u6709")]),_:1}),e(o,{label:"0"},{default:a(()=>[d("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u7ECF\u8425\u7C7B\u578B",prop:"manage_type"},{default:a(()=>[e(F,{modelValue:l.datas.manage_type,"onUpdate:modelValue":t[12]||(t[12]=u=>l.datas.manage_type=u),clearable:"",style:{width:"100%"}},{default:a(()=>[(r(!0),p(f,null,P(T(_),(u,b)=>(r(),V(C,{key:b,label:u,value:b+""},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u7ECF\u8425\u5730\u70B9",prop:"manage_place"},{default:a(()=>[e(i,{modelValue:l.datas.manage_place,"onUpdate:modelValue":t[13]||(t[13]=u=>l.datas.manage_place=u),clearable:"",disabled:!0},null,8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u4EBA\u6570",prop:"people_count"},{default:a(()=>[e(i,{modelValue:l.datas.people_count,"onUpdate:modelValue":t[14]||(t[14]=u=>l.datas.people_count=u),clearable:"",disabled:!0},null,8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u6709\u65E0\u98DF\u5802",prop:"canteen"},{default:a(()=>[e(s,{modelValue:l.datas.canteen,"onUpdate:modelValue":t[15]||(t[15]=u=>l.datas.canteen=u),size:"medium"},{default:a(()=>[e(o,{label:"1"},{default:a(()=>[d("\u6709")]),_:1}),e(o,{label:"0"},{default:a(()=>[d("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u6750\u6599\u6765\u6E90",prop:"source_materials"},{default:a(()=>[e(i,{modelValue:l.datas.source_materials,"onUpdate:modelValue":t[16]||(t[16]=u=>l.datas.source_materials=u),clearable:"",disabled:!0},null,8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u81EA\u52A8\u5316\u529E\u516C\u7A0B\u5EA6",prop:"automation"},{default:a(()=>[e(i,{modelValue:l.datas.automation,"onUpdate:modelValue":t[17]||(t[17]=u=>l.datas.automation=u),clearable:"",disabled:!0},null,8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u6709\u65E0\u7528\u5DE5\u9700\u6C42",prop:"employment"},{default:a(()=>[e(s,{modelValue:l.datas.employment,"onUpdate:modelValue":t[18]||(t[18]=u=>l.datas.employment=u),size:"medium"},{default:a(()=>[e(o,{label:"1"},{default:a(()=>[d("\u6709")]),_:1}),e(o,{label:"0"},{default:a(()=>[d("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u6709\u65E0\u54C1\u724C",prop:"brand"},{default:a(()=>[e(s,{modelValue:l.datas.brand,"onUpdate:modelValue":t[19]||(t[19]=u=>l.datas.brand=u),size:"medium"},{default:a(()=>[e(o,{label:"1"},{default:a(()=>[d("\u6709")]),_:1}),e(o,{label:"0"},{default:a(()=>[d("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u6709\u65E0\u5BA3\u4F20\u63A8\u5E7F",prop:"advertising"},{default:a(()=>[e(s,{modelValue:l.datas.advertising,"onUpdate:modelValue":t[20]||(t[20]=u=>l.datas.advertising=u),size:"medium"},{default:a(()=>[e(o,{label:"1"},{default:a(()=>[d("\u6709")]),_:1}),e(o,{label:"0"},{default:a(()=>[d("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u5E93\u5B58\u60C5\u51B5",prop:"repertory"},{default:a(()=>[e(i,{modelValue:l.datas.repertory,"onUpdate:modelValue":t[21]||(t[21]=u=>l.datas.repertory=u),clearable:"",disabled:!0},null,8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u6709\u65E0\u8FD0\u8F93",prop:"transport"},{default:a(()=>[e(s,{modelValue:l.datas.transport,"onUpdate:modelValue":t[22]||(t[22]=u=>l.datas.transport=u),size:"medium"},{default:a(()=>[e(o,{label:"1"},{default:a(()=>[d("\u6709")]),_:1}),e(o,{label:"0"},{default:a(()=>[d("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u7ECF\u8425\u8BC9\u6C42",prop:"business_appeal"},{default:a(()=>[e(i,{modelValue:l.datas.business_appeal,"onUpdate:modelValue":t[23]||(t[23]=u=>l.datas.business_appeal=u),clearable:"",autosize:"",type:"textarea",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1})],64))]),_:1})]),_:1},8,["model"])]),_:1})}}});const ce=G(H,[["__scopeId","data-v-094cd797"]]);export{ce as default}; diff --git a/public/admin/assets/thickProcessing.ee706187.js b/public/admin/assets/thickProcessing.ee706187.js new file mode 100644 index 000000000..6bf8831ab --- /dev/null +++ b/public/admin/assets/thickProcessing.ee706187.js @@ -0,0 +1 @@ +import{G as B,H as z,C as D,a1 as k,B as v,M as A,N as x,a2 as w,D as I,I as N}from"./element-plus.4328d892.js";import{d as R,r as S,o as r,K as V,L as a,U as e,a as E,R as d,S as L,c as p,T as f,a7 as P,u as T}from"./@vue.51d7f2d8.js";import{d as G}from"./index.37f7aea6.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const O={class:"tit"},j={class:"time"},H=R({__name:"thickProcessing",props:{datas:{type:Object,defualt:function(){return{is_manage:"",construction_land:"",land_area:"",manage_place:"",source_materials:"",marketing_channel:"",technical_guidance:"",brand:"",advertising:"",transport:"",business_appeal:"",manage_type:"",people_count:"",canteen:"",automation:"",employment:"",repertory:""}}},update_time:{type:String,defualt:""}},setup(l){const _=S(["\u8D85\u5E02","\u751F\u9C9C","\u996D\u5E97","\u4E94\u91D1","\u6742\u8D27","\u670D\u88C5","\u6587\u5177","\u5176\u4ED6"]);return(g,t)=>{const o=B,s=z,n=D,m=k,i=v,C=A,F=x,y=w,U=I,c=N;return r(),V(c,{style:{"margin-top":"16px"}},{default:a(()=>[e(U,{ref:"elForm",disabled:!0,model:g.formData,size:"mini","label-width":"180px"},{default:a(()=>[E("div",O,[d(" \u7C97\u52A0\u5DE5 "),E("span",j,"\u66F4\u65B0\u4E8E:"+L(l.update_time),1)]),e(y,null,{default:a(()=>[e(m,{span:8},{default:a(()=>[e(n,{label:"\u662F\u5426\u5728\u7ECF\u8425",prop:"is_manage"},{default:a(()=>[e(s,{modelValue:l.datas.is_manage,"onUpdate:modelValue":t[0]||(t[0]=u=>l.datas.is_manage=u),size:"medium"},{default:a(()=>[e(o,{label:"1"},{default:a(()=>[d("\u662F")]),_:1}),e(o,{label:"0"},{default:a(()=>[d("\u5426")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),l.datas.is_manage==1?(r(),p(f,{key:0},[e(m,{span:8},{default:a(()=>[e(n,{label:"\u6709\u65E0\u5EFA\u8BBE\u7528\u5730",prop:"construction_land"},{default:a(()=>[e(s,{modelValue:l.datas.construction_land,"onUpdate:modelValue":t[1]||(t[1]=u=>l.datas.construction_land=u),size:"medium"},{default:a(()=>[e(o,{label:"1"},{default:a(()=>[d("\u6709")]),_:1}),e(o,{label:"0"},{default:a(()=>[d("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u9762\u79EF(m\xB2)",prop:"land_area"},{default:a(()=>[e(i,{modelValue:l.datas.land_area,"onUpdate:modelValue":t[2]||(t[2]=u=>l.datas.land_area=u),clearable:"",disabled:!0},null,8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u7ECF\u8425\u5730\u70B9",prop:"manage_place"},{default:a(()=>[e(i,{modelValue:l.datas.manage_place,"onUpdate:modelValue":t[3]||(t[3]=u=>l.datas.manage_place=u),clearable:"",disabled:!0},null,8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u6750\u6599\u6765\u6E90",prop:"source_materials"},{default:a(()=>[e(i,{modelValue:l.datas.source_materials,"onUpdate:modelValue":t[4]||(t[4]=u=>l.datas.source_materials=u),clearable:"",disabled:!0},null,8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u6709\u65E0\u9500\u552E\u6E20\u9053",prop:"marketing_channel"},{default:a(()=>[e(s,{modelValue:l.datas.marketing_channel,"onUpdate:modelValue":t[5]||(t[5]=u=>l.datas.marketing_channel=u),size:"medium"},{default:a(()=>[e(o,{label:"1"},{default:a(()=>[d("\u6709")]),_:1}),e(o,{label:"0"},{default:a(()=>[d("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u6709\u65E0\u6280\u672F\u6307\u5BFC",prop:"technical_guidance"},{default:a(()=>[e(s,{modelValue:l.datas.technical_guidance,"onUpdate:modelValue":t[6]||(t[6]=u=>l.datas.technical_guidance=u),size:"medium"},{default:a(()=>[e(o,{label:"1"},{default:a(()=>[d("\u6709")]),_:1}),e(o,{label:"0"},{default:a(()=>[d("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u6709\u65E0\u54C1\u724C",prop:"brand"},{default:a(()=>[e(s,{modelValue:l.datas.brand,"onUpdate:modelValue":t[7]||(t[7]=u=>l.datas.brand=u),size:"medium"},{default:a(()=>[e(o,{label:"1"},{default:a(()=>[d("\u6709")]),_:1}),e(o,{label:"0"},{default:a(()=>[d("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u6709\u65E0\u5BA3\u4F20\u63A8\u5E7F",prop:"advertising"},{default:a(()=>[e(s,{modelValue:l.datas.advertising,"onUpdate:modelValue":t[8]||(t[8]=u=>l.datas.advertising=u),size:"medium"},{default:a(()=>[e(o,{label:"1"},{default:a(()=>[d("\u6709")]),_:1}),e(o,{label:"0"},{default:a(()=>[d("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u6709\u65E0\u8FD0\u8F93",prop:"transport"},{default:a(()=>[e(s,{modelValue:l.datas.transport,"onUpdate:modelValue":t[9]||(t[9]=u=>l.datas.transport=u),size:"medium"},{default:a(()=>[e(o,{label:"1"},{default:a(()=>[d("\u6709")]),_:1}),e(o,{label:"0"},{default:a(()=>[d("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u7ECF\u8425\u8BC9\u6C42",prop:"business_appeal"},{default:a(()=>[e(i,{modelValue:l.datas.business_appeal,"onUpdate:modelValue":t[10]||(t[10]=u=>l.datas.business_appeal=u),clearable:"",autosize:"",type:"textarea",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1})],64)):(r(),p(f,{key:1},[e(m,{span:8},{default:a(()=>[e(n,{label:"\u6709\u65E0\u5EFA\u8BBE\u7528\u5730",prop:"construction_land"},{default:a(()=>[e(s,{modelValue:l.datas.construction_land,"onUpdate:modelValue":t[11]||(t[11]=u=>l.datas.construction_land=u),size:"medium"},{default:a(()=>[e(o,{label:"1"},{default:a(()=>[d("\u6709")]),_:1}),e(o,{label:"0"},{default:a(()=>[d("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u7ECF\u8425\u7C7B\u578B",prop:"manage_type"},{default:a(()=>[e(F,{modelValue:l.datas.manage_type,"onUpdate:modelValue":t[12]||(t[12]=u=>l.datas.manage_type=u),clearable:"",style:{width:"100%"}},{default:a(()=>[(r(!0),p(f,null,P(T(_),(u,b)=>(r(),V(C,{key:b,label:u,value:b+""},null,8,["label","value"]))),128))]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u7ECF\u8425\u5730\u70B9",prop:"manage_place"},{default:a(()=>[e(i,{modelValue:l.datas.manage_place,"onUpdate:modelValue":t[13]||(t[13]=u=>l.datas.manage_place=u),clearable:"",disabled:!0},null,8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u4EBA\u6570",prop:"people_count"},{default:a(()=>[e(i,{modelValue:l.datas.people_count,"onUpdate:modelValue":t[14]||(t[14]=u=>l.datas.people_count=u),clearable:"",disabled:!0},null,8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u6709\u65E0\u98DF\u5802",prop:"canteen"},{default:a(()=>[e(s,{modelValue:l.datas.canteen,"onUpdate:modelValue":t[15]||(t[15]=u=>l.datas.canteen=u),size:"medium"},{default:a(()=>[e(o,{label:"1"},{default:a(()=>[d("\u6709")]),_:1}),e(o,{label:"0"},{default:a(()=>[d("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u6750\u6599\u6765\u6E90",prop:"source_materials"},{default:a(()=>[e(i,{modelValue:l.datas.source_materials,"onUpdate:modelValue":t[16]||(t[16]=u=>l.datas.source_materials=u),clearable:"",disabled:!0},null,8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u81EA\u52A8\u5316\u529E\u516C\u7A0B\u5EA6",prop:"automation"},{default:a(()=>[e(i,{modelValue:l.datas.automation,"onUpdate:modelValue":t[17]||(t[17]=u=>l.datas.automation=u),clearable:"",disabled:!0},null,8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u6709\u65E0\u7528\u5DE5\u9700\u6C42",prop:"employment"},{default:a(()=>[e(s,{modelValue:l.datas.employment,"onUpdate:modelValue":t[18]||(t[18]=u=>l.datas.employment=u),size:"medium"},{default:a(()=>[e(o,{label:"1"},{default:a(()=>[d("\u6709")]),_:1}),e(o,{label:"0"},{default:a(()=>[d("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u6709\u65E0\u54C1\u724C",prop:"brand"},{default:a(()=>[e(s,{modelValue:l.datas.brand,"onUpdate:modelValue":t[19]||(t[19]=u=>l.datas.brand=u),size:"medium"},{default:a(()=>[e(o,{label:"1"},{default:a(()=>[d("\u6709")]),_:1}),e(o,{label:"0"},{default:a(()=>[d("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u6709\u65E0\u5BA3\u4F20\u63A8\u5E7F",prop:"advertising"},{default:a(()=>[e(s,{modelValue:l.datas.advertising,"onUpdate:modelValue":t[20]||(t[20]=u=>l.datas.advertising=u),size:"medium"},{default:a(()=>[e(o,{label:"1"},{default:a(()=>[d("\u6709")]),_:1}),e(o,{label:"0"},{default:a(()=>[d("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u5E93\u5B58\u60C5\u51B5",prop:"repertory"},{default:a(()=>[e(i,{modelValue:l.datas.repertory,"onUpdate:modelValue":t[21]||(t[21]=u=>l.datas.repertory=u),clearable:"",disabled:!0},null,8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u6709\u65E0\u8FD0\u8F93",prop:"transport"},{default:a(()=>[e(s,{modelValue:l.datas.transport,"onUpdate:modelValue":t[22]||(t[22]=u=>l.datas.transport=u),size:"medium"},{default:a(()=>[e(o,{label:"1"},{default:a(()=>[d("\u6709")]),_:1}),e(o,{label:"0"},{default:a(()=>[d("\u65E0")]),_:1})]),_:1},8,["modelValue"])]),_:1})]),_:1}),e(m,{span:8},{default:a(()=>[e(n,{label:"\u7ECF\u8425\u8BC9\u6C42",prop:"business_appeal"},{default:a(()=>[e(i,{modelValue:l.datas.business_appeal,"onUpdate:modelValue":t[23]||(t[23]=u=>l.datas.business_appeal=u),clearable:"",autosize:"",type:"textarea",disabled:!0,style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1})],64))]),_:1})]),_:1},8,["model"])]),_:1})}}});const ce=G(H,[["__scopeId","data-v-094cd797"]]);export{ce as default}; diff --git a/public/admin/assets/upload.596d217f.js b/public/admin/assets/upload.596d217f.js new file mode 100644 index 000000000..c8aa500f0 --- /dev/null +++ b/public/admin/assets/upload.596d217f.js @@ -0,0 +1 @@ +import{w as n,I as c}from"./element-plus.4328d892.js";import{U as m}from"./index.5f944d34.js";import{d,o as _,c as f,U as o,L as t,a as e,R as a}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.37f7aea6.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const F={class:"flex flex-wrap"},E={class:"m-4"},h={class:"m-4"},y={class:"m-4"},A={class:"m-4"},uo=d({__name:"upload",setup(g){const u=r=>{console.log("\u4E0A\u4F20\u6587\u4EF6\u7684\u72B6\u6001\u53D1\u751F\u6539\u53D8",r)},s=r=>{console.log("\u4E0A\u4F20\u6587\u4EF6\u6210\u529F",r)},p=r=>{console.log("\u4E0A\u4F20\u6587\u4EF6\u5931\u8D25",r)};return(r,w)=>{const i=n,l=c;return _(),f("div",null,[o(l,{header:"\u57FA\u7840\u4F7F\u7528",shadow:"none",class:"!border-none"},{default:t(()=>[e("div",F,[e("div",E,[o(m,{onChange:u,onSuccess:s,onError:p,"show-progress":!0},{default:t(()=>[o(i,{type:"primary"},{default:t(()=>[a("\u4E0A\u4F20\u56FE\u7247")]),_:1})]),_:1})]),e("div",h,[o(m,{type:"video",onChange:u,onSuccess:s,onError:p,"show-progress":!0},{default:t(()=>[o(i,{type:"primary"},{default:t(()=>[a("\u4E0A\u4F20\u89C6\u9891")]),_:1})]),_:1})]),e("div",y,[o(m,{multiple:!1,onChange:u,onSuccess:s,onError:p,"show-progress":!0},{default:t(()=>[o(i,{type:"primary"},{default:t(()=>[a("\u53D6\u6D88\u591A\u9009")]),_:1})]),_:1})]),e("div",A,[o(m,{limit:2,onChange:u,onSuccess:s,onError:p,"show-progress":!0},{default:t(()=>[o(i,{type:"primary"},{default:t(()=>[a("\u4E00\u6B21\u6700\u591A\u4E0A\u4F202\u5F20")]),_:1})]),_:1})])])]),_:1})])}}});export{uo as default}; diff --git a/public/admin/assets/upload.8b9524a1.js b/public/admin/assets/upload.8b9524a1.js new file mode 100644 index 000000000..487f3f463 --- /dev/null +++ b/public/admin/assets/upload.8b9524a1.js @@ -0,0 +1 @@ +import{w as n,I as c}from"./element-plus.4328d892.js";import{U as m}from"./index.9c616a0c.js";import{d,o as _,c as f,U as o,L as t,a as e,R as a}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.ed71ac09.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const F={class:"flex flex-wrap"},E={class:"m-4"},h={class:"m-4"},y={class:"m-4"},A={class:"m-4"},uo=d({__name:"upload",setup(g){const u=r=>{console.log("\u4E0A\u4F20\u6587\u4EF6\u7684\u72B6\u6001\u53D1\u751F\u6539\u53D8",r)},s=r=>{console.log("\u4E0A\u4F20\u6587\u4EF6\u6210\u529F",r)},p=r=>{console.log("\u4E0A\u4F20\u6587\u4EF6\u5931\u8D25",r)};return(r,w)=>{const i=n,l=c;return _(),f("div",null,[o(l,{header:"\u57FA\u7840\u4F7F\u7528",shadow:"none",class:"!border-none"},{default:t(()=>[e("div",F,[e("div",E,[o(m,{onChange:u,onSuccess:s,onError:p,"show-progress":!0},{default:t(()=>[o(i,{type:"primary"},{default:t(()=>[a("\u4E0A\u4F20\u56FE\u7247")]),_:1})]),_:1})]),e("div",h,[o(m,{type:"video",onChange:u,onSuccess:s,onError:p,"show-progress":!0},{default:t(()=>[o(i,{type:"primary"},{default:t(()=>[a("\u4E0A\u4F20\u89C6\u9891")]),_:1})]),_:1})]),e("div",y,[o(m,{multiple:!1,onChange:u,onSuccess:s,onError:p,"show-progress":!0},{default:t(()=>[o(i,{type:"primary"},{default:t(()=>[a("\u53D6\u6D88\u591A\u9009")]),_:1})]),_:1})]),e("div",A,[o(m,{limit:2,onChange:u,onSuccess:s,onError:p,"show-progress":!0},{default:t(()=>[o(i,{type:"primary"},{default:t(()=>[a("\u4E00\u6B21\u6700\u591A\u4E0A\u4F202\u5F20")]),_:1})]),_:1})])])]),_:1})])}}});export{uo as default}; diff --git a/public/admin/assets/upload.fc9d6a4c.js b/public/admin/assets/upload.fc9d6a4c.js new file mode 100644 index 000000000..884d34523 --- /dev/null +++ b/public/admin/assets/upload.fc9d6a4c.js @@ -0,0 +1 @@ +import{w as n,I as c}from"./element-plus.4328d892.js";import{U as m}from"./index.a450f1bb.js";import{d,o as _,c as f,U as o,L as t,a as e,R as a}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.aa9bb752.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const F={class:"flex flex-wrap"},E={class:"m-4"},h={class:"m-4"},y={class:"m-4"},A={class:"m-4"},uo=d({__name:"upload",setup(g){const u=r=>{console.log("\u4E0A\u4F20\u6587\u4EF6\u7684\u72B6\u6001\u53D1\u751F\u6539\u53D8",r)},s=r=>{console.log("\u4E0A\u4F20\u6587\u4EF6\u6210\u529F",r)},p=r=>{console.log("\u4E0A\u4F20\u6587\u4EF6\u5931\u8D25",r)};return(r,w)=>{const i=n,l=c;return _(),f("div",null,[o(l,{header:"\u57FA\u7840\u4F7F\u7528",shadow:"none",class:"!border-none"},{default:t(()=>[e("div",F,[e("div",E,[o(m,{onChange:u,onSuccess:s,onError:p,"show-progress":!0},{default:t(()=>[o(i,{type:"primary"},{default:t(()=>[a("\u4E0A\u4F20\u56FE\u7247")]),_:1})]),_:1})]),e("div",h,[o(m,{type:"video",onChange:u,onSuccess:s,onError:p,"show-progress":!0},{default:t(()=>[o(i,{type:"primary"},{default:t(()=>[a("\u4E0A\u4F20\u89C6\u9891")]),_:1})]),_:1})]),e("div",y,[o(m,{multiple:!1,onChange:u,onSuccess:s,onError:p,"show-progress":!0},{default:t(()=>[o(i,{type:"primary"},{default:t(()=>[a("\u53D6\u6D88\u591A\u9009")]),_:1})]),_:1})]),e("div",A,[o(m,{limit:2,onChange:u,onSuccess:s,onError:p,"show-progress":!0},{default:t(()=>[o(i,{type:"primary"},{default:t(()=>[a("\u4E00\u6B21\u6700\u591A\u4E0A\u4F202\u5F20")]),_:1})]),_:1})])])]),_:1})])}}});export{uo as default}; diff --git a/public/admin/assets/useDictOptions.8d37e54b.js b/public/admin/assets/useDictOptions.8d37e54b.js new file mode 100644 index 000000000..5ce7e1831 --- /dev/null +++ b/public/admin/assets/useDictOptions.8d37e54b.js @@ -0,0 +1 @@ +import{g as l}from"./index.ed71ac09.js";import{$ as u,t as D}from"./@vue.51d7f2d8.js";function y(s){const a=u({}),e=Object.keys(s),c=e.map(n=>{const t=s[n];return a[n]=[],()=>t.api(D(t.params)||{})}),o=async()=>{(await Promise.allSettled(c.map(t=>t()))).forEach((t,f)=>{const r=e[f];if(t.status=="fulfilled"){const{transformData:i}=s[r],p=i?i(t.value):t.value;a[r]=p}})};return o(),{optionsData:a,refresh:o}}function v(s){const a=u({}),e=async()=>{const c=await l({type:s});Object.assign(a,c)};return e(),{dictData:a,refresh:e}}export{y as a,v as u}; diff --git a/public/admin/assets/useDictOptions.a45fc8ac.js b/public/admin/assets/useDictOptions.a45fc8ac.js new file mode 100644 index 000000000..06609664e --- /dev/null +++ b/public/admin/assets/useDictOptions.a45fc8ac.js @@ -0,0 +1 @@ +import{g as l}from"./index.37f7aea6.js";import{$ as u,t as D}from"./@vue.51d7f2d8.js";function y(s){const a=u({}),e=Object.keys(s),c=e.map(n=>{const t=s[n];return a[n]=[],()=>t.api(D(t.params)||{})}),o=async()=>{(await Promise.allSettled(c.map(t=>t()))).forEach((t,f)=>{const r=e[f];if(t.status=="fulfilled"){const{transformData:i}=s[r],p=i?i(t.value):t.value;a[r]=p}})};return o(),{optionsData:a,refresh:o}}function v(s){const a=u({}),e=async()=>{const c=await l({type:s});Object.assign(a,c)};return e(),{dictData:a,refresh:e}}export{y as a,v as u}; diff --git a/public/admin/assets/useDictOptions.a61fcf9f.js b/public/admin/assets/useDictOptions.a61fcf9f.js new file mode 100644 index 000000000..76644a2a1 --- /dev/null +++ b/public/admin/assets/useDictOptions.a61fcf9f.js @@ -0,0 +1 @@ +import{g as l}from"./index.aa9bb752.js";import{$ as u,t as D}from"./@vue.51d7f2d8.js";function y(s){const a=u({}),e=Object.keys(s),c=e.map(n=>{const t=s[n];return a[n]=[],()=>t.api(D(t.params)||{})}),o=async()=>{(await Promise.allSettled(c.map(t=>t()))).forEach((t,f)=>{const r=e[f];if(t.status=="fulfilled"){const{transformData:i}=s[r],p=i?i(t.value):t.value;a[r]=p}})};return o(),{optionsData:a,refresh:o}}function v(s){const a=u({}),e=async()=>{const c=await l({type:s});Object.assign(a,c)};return e(),{dictData:a,refresh:e}}export{y as a,v as u}; diff --git a/public/admin/assets/useMenuOa.652835b4.js b/public/admin/assets/useMenuOa.652835b4.js new file mode 100644 index 000000000..738c73a6b --- /dev/null +++ b/public/admin/assets/useMenuOa.652835b4.js @@ -0,0 +1 @@ +import{f as i}from"./index.ed71ac09.js";import{a as c,b as g,c as o}from"./wx_oa.ec356b57.js";import{s as h,r as l,$ as d}from"./@vue.51d7f2d8.js";const r=h(),a=l([]),n=l(0),B=d({name:[{required:!0,message:"\u5FC5\u586B\u9879\u4E0D\u80FD\u4E3A\u7A7A",trigger:["blur","change"]},{min:1,max:12,message:"\u957F\u5EA6\u9650\u523612\u4E2A\u5B57\u7B26",trigger:["blur","change"]}],menuType:[{required:!0,message:"\u5FC5\u586B\u9879\u4E0D\u80FD\u4E3A\u7A7A",trigger:["blur","change"]}],visitType:[{required:!0,message:"\u5FC5\u586B\u9879\u4E0D\u80FD\u4E3A\u7A7A",trigger:["blur","change"]}],url:[{required:!0,message:"\u5FC5\u586B\u9879\u4E0D\u80FD\u4E3A\u7A7A",trigger:["blur","change"]},{pattern:/(http|https):\/\/[\w\-_]+(\.[\w\-_]+)+([\w\-\.,@?^=%&:/~\+#]*[\w\-\@?^=%&/~\+#])?/,message:"\u8BF7\u8F93\u5165\u5408\u6CD5\u7684\u7F51\u5740\u94FE\u63A5",trigger:["blur","change"]}],appId:[{required:!0,message:"\u5FC5\u586B\u9879\u4E0D\u80FD\u4E3A\u7A7A",trigger:["blur","change"]}],pagePath:[{required:!0,message:"\u5FC5\u586B\u9879\u4E0D\u80FD\u4E3A\u7A7A",trigger:["blur","change"]}]}),y=s=>(s&&(r.value=s),{menuList:a,menuIndex:n,handleAddMenu:()=>{a.value.push({name:"\u83DC\u5355\u540D\u79F0",has_menu:!1,type:"view",url:"",appid:"",pagepath:"",sub_button:[]})},handleAddSubMenu:u=>{const e=n.value;if(a.value[e].sub_button.length>=5){i.msgError("\u5DF2\u6DFB\u52A0\u4E0A\u9650\uFF5E");return}a.value[e].sub_button.push(u)},handleEditSubMenu:(u,e)=>{const t=n.value;a.value[t].sub_button[e]=u},handleDelMenu:u=>{u!=0&&n.value--,a.value.splice(u,1)},handleDelSubMenu:(u,e)=>{a.value[u].sub_button.splice(e,1)},getOaMenuFunc:async()=>{try{a.value=await c()}catch(u){console.log("\u83B7\u53D6\u83DC\u5355=>",u)}},handleSave:async()=>{const u=r.value.value;for(let e=0;e{const u=r.value.value;for(let e=0;e(s&&(r.value=s),{menuList:a,menuIndex:n,handleAddMenu:()=>{a.value.push({name:"\u83DC\u5355\u540D\u79F0",has_menu:!1,type:"view",url:"",appid:"",pagepath:"",sub_button:[]})},handleAddSubMenu:u=>{const e=n.value;if(a.value[e].sub_button.length>=5){i.msgError("\u5DF2\u6DFB\u52A0\u4E0A\u9650\uFF5E");return}a.value[e].sub_button.push(u)},handleEditSubMenu:(u,e)=>{const t=n.value;a.value[t].sub_button[e]=u},handleDelMenu:u=>{u!=0&&n.value--,a.value.splice(u,1)},handleDelSubMenu:(u,e)=>{a.value[u].sub_button.splice(e,1)},getOaMenuFunc:async()=>{try{a.value=await c()}catch(u){console.log("\u83B7\u53D6\u83DC\u5355=>",u)}},handleSave:async()=>{const u=r.value.value;for(let e=0;e{const u=r.value.value;for(let e=0;e(s&&(r.value=s),{menuList:a,menuIndex:n,handleAddMenu:()=>{a.value.push({name:"\u83DC\u5355\u540D\u79F0",has_menu:!1,type:"view",url:"",appid:"",pagepath:"",sub_button:[]})},handleAddSubMenu:u=>{const e=n.value;if(a.value[e].sub_button.length>=5){i.msgError("\u5DF2\u6DFB\u52A0\u4E0A\u9650\uFF5E");return}a.value[e].sub_button.push(u)},handleEditSubMenu:(u,e)=>{const t=n.value;a.value[t].sub_button[e]=u},handleDelMenu:u=>{u!=0&&n.value--,a.value.splice(u,1)},handleDelSubMenu:(u,e)=>{a.value[u].sub_button.splice(e,1)},getOaMenuFunc:async()=>{try{a.value=await c()}catch(u){console.log("\u83B7\u53D6\u83DC\u5355=>",u)}},handleSave:async()=>{const u=r.value.value;for(let e=0;e{const u=r.value.value;for(let e=0;e{b=[],d.map(o=>{l.car_list.forEach(n=>{n.license==o&&b.push(n)})})};K({id:f.query.id}).then(d=>{for(let o in l)l[o]=d[o];l.type?l.type="\u81EA\u6709\u8F66\u8F86":l.type="\u79DF\u8D41\u8F66\u8F86"});const C=(d,o)=>{l.file=d.data.uri},E=()=>{O({id:f.query.id,file:l.file,cars:JSON.stringify(b)}).then(d=>{setTimeout(()=>{g.go(-1)},1e3)})};return(d,o)=>{const n=N,i=j,s=q,u=T,x=L,D=z,B=I,h=J,F=S;return r(),_("div",Y,[e(x,{ref:"formRef",model:l,"label-width":"90px",rules:d.formRules,disabled:!0},{default:a(()=>[e(s,{span:24,class:"el-card pt-6"},{default:a(()=>[Z,e(u,null,{default:a(()=>[e(s,{span:8},{default:a(()=>[e(i,{label:"\u516C\u53F8\u540D\u79F0",prop:"company_name"},{default:a(()=>[e(n,{modelValue:l.company_a_name,"onUpdate:modelValue":o[0]||(o[0]=t=>l.company_a_name=t),placeholder:"\u8BF7\u8F93\u5165\u516C\u53F8\u540D\u79F0",clearable:"",disabled:d.isDisabled,style:{width:"100%"}},null,8,["modelValue","disabled"])]),_:1})]),_:1}),e(s,{span:8},{default:a(()=>[e(i,{label:"\u793E\u4F1A\u4EE3\u7801",prop:"organization_code"},{default:a(()=>[e(n,{disabled:d.isDisabled,modelValue:l.company_a_code,"onUpdate:modelValue":o[1]||(o[1]=t=>l.company_a_code=t),placeholder:"\u8BF7\u8F93\u5165\u793E\u4F1A\u4EE3\u7801",clearable:"",style:{width:"100%"}},null,8,["disabled","modelValue"])]),_:1})]),_:1})]),_:1})]),_:1}),e(s,{span:24,class:"el-card pt-6"},{default:a(()=>[ee,e(u,null,{default:a(()=>[p("div",le,[p("div",ae,[e(u,null,{default:a(()=>[e(s,{span:8},{default:a(()=>[e(i,{label:"\u59D3\u540D",prop:"master_name"},{default:a(()=>[e(n,{disabled:d.isDisabled,modelValue:l.company_a_user,"onUpdate:modelValue":o[2]||(o[2]=t=>l.company_a_user=t),placeholder:"\u8BF7\u8F93\u5165\u59D3\u540D",clearable:"",style:{width:"100%"}},null,8,["disabled","modelValue"])]),_:1})]),_:1}),e(s,{span:8},{default:a(()=>[e(i,{label:"\u624B\u673A",prop:"master_phone"},{default:a(()=>[e(n,{disabled:d.isDisabled,modelValue:l.company_a_phone,"onUpdate:modelValue":o[3]||(o[3]=t=>l.company_a_phone=t),placeholder:"\u8BF7\u8F93\u5165\u624B\u673A",clearable:"",style:{width:"100%"}},null,8,["disabled","modelValue"])]),_:1})]),_:1}),e(s,{span:8},{default:a(()=>[e(i,{label:"\u90AE\u7BB1"},{default:a(()=>[e(n,{disabled:d.isDisabled,modelValue:l.company_a_email,"onUpdate:modelValue":o[4]||(o[4]=t=>l.company_a_email=t),placeholder:"\u8BF7\u8F93\u5165\u90AE\u7BB1",clearable:"",style:{width:"100%"}},null,8,["disabled","modelValue"])]),_:1})]),_:1})]),_:1})])])]),_:1})]),_:1}),e(s,{span:24,class:"el-card pt-6"},{default:a(()=>[oe,e(u,null,{default:a(()=>[e(s,{span:8},{default:a(()=>[e(i,{label:"\u516C\u53F8\u540D\u79F0",prop:"company_name"},{default:a(()=>[e(n,{modelValue:l.company_b_name,"onUpdate:modelValue":o[5]||(o[5]=t=>l.company_b_name=t),placeholder:"\u8BF7\u8F93\u5165\u516C\u53F8\u540D\u79F0",clearable:"",disabled:d.isDisabled,style:{width:"100%"}},null,8,["modelValue","disabled"])]),_:1})]),_:1}),e(s,{span:8},{default:a(()=>[e(i,{label:"\u793E\u4F1A\u4EE3\u7801",prop:"organization_code"},{default:a(()=>[e(n,{disabled:d.isDisabled,modelValue:l.company_b_code,"onUpdate:modelValue":o[6]||(o[6]=t=>l.company_b_code=t),placeholder:"\u8BF7\u8F93\u5165\u793E\u4F1A\u4EE3\u7801",clearable:"",style:{width:"100%"}},null,8,["disabled","modelValue"])]),_:1})]),_:1})]),_:1})]),_:1}),e(s,{span:24,class:"el-card pt-6"},{default:a(()=>[te,e(u,null,{default:a(()=>[p("div",de,[p("div",se,[e(u,null,{default:a(()=>[e(s,{span:8},{default:a(()=>[e(i,{label:"\u59D3\u540D",prop:"master_name"},{default:a(()=>[e(n,{disabled:d.isDisabled,modelValue:l.company_b_user,"onUpdate:modelValue":o[7]||(o[7]=t=>l.company_b_user=t),placeholder:"\u8BF7\u8F93\u5165\u59D3\u540D",clearable:"",style:{width:"100%"}},null,8,["disabled","modelValue"])]),_:1})]),_:1}),e(s,{span:8},{default:a(()=>[e(i,{label:"\u624B\u673A",prop:"master_phone"},{default:a(()=>[e(n,{disabled:d.isDisabled,modelValue:l.company_b_phone,"onUpdate:modelValue":o[8]||(o[8]=t=>l.company_b_phone=t),placeholder:"\u8BF7\u8F93\u5165\u624B\u673A",clearable:"",style:{width:"100%"}},null,8,["disabled","modelValue"])]),_:1})]),_:1}),e(s,{span:8},{default:a(()=>[e(i,{label:"\u90AE\u7BB1"},{default:a(()=>[e(n,{disabled:d.isDisabled,modelValue:l.company_b_email,"onUpdate:modelValue":o[9]||(o[9]=t=>l.company_b_email=t),placeholder:"\u8BF7\u8F93\u5165\u90AE\u7BB1",clearable:"",style:{width:"100%"}},null,8,["disabled","modelValue"])]),_:1})]),_:1})]),_:1})])])]),_:1})]),_:1}),l.cars_info?(r(),c(s,{key:0,span:24,class:"el-card pt-6"},{default:a(()=>[ne,p("div",null,[e(u,null,{default:a(()=>[e(s,{span:4},{default:a(()=>[e(i,{"label-width":"120px",label:"\u8F66\u724C\u53F7"},{default:a(()=>[e(n,{modelValue:l.cars_info.license,"onUpdate:modelValue":o[10]||(o[10]=t=>l.cars_info.license=t),placeholder:"\u8BF7\u8F93\u5165\u8F66\u724C\u53F7",clearable:"",style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(s,{span:4},{default:a(()=>[e(i,{"label-width":"120px",label:"\u8F66\u8F86\u7C7B\u578B"},{default:a(()=>[e(n,{modelValue:l.type,"onUpdate:modelValue":o[11]||(o[11]=t=>l.type=t),placeholder:"\u8BF7\u8F93\u5165\u8F66\u8F86\u7C7B\u578B",clearable:"",style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(s,{span:6},{default:a(()=>[e(i,{"label-width":"120px",label:"\u4F7F\u7528\u516C\u53F8"},{default:a(()=>[e(n,{modelValue:l.company_b_name,"onUpdate:modelValue":o[12]||(o[12]=t=>l.company_b_name=t),placeholder:"\u8BF7\u8F93\u5165\u4F7F\u7528\u516C\u53F8",clearable:"",style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(s,{span:6},{default:a(()=>[e(i,{"label-width":"120px",label:"\u7B7E\u7EA6\u65F6\u95F4"},{default:a(()=>[e(n,{modelValue:l.update_time,"onUpdate:modelValue":o[13]||(o[13]=t=>l.update_time=t),placeholder:"\u8BF7\u8F93\u5165\u7B7E\u7EA6\u65F6\u95F4",clearable:"",style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1})]),_:1})])]),_:1})):m("",!0)]),_:1},8,["model","rules"]),l.contract_logistic_id&&l.type=="\u79DF\u8D41\u8F66\u8F86"?(r(),_("div",ie,[pe,p("div",re,[e(B,{max:l.num,modelValue:y.value,"onUpdate:modelValue":o[14]||(o[14]=t=>y.value=t),onChange:U},{default:a(()=>[(r(!0),_(P,null,W(l.car_list,(t,R)=>(r(),c(D,{label:t.license,key:R},null,8,["label"]))),128))]),_:1},8,["max","modelValue"])])])):m("",!0),p("div",ue,[(l==null?void 0:l.status)==0?(r(),c(F,{key:0,style:{display:"inline-block"},headers:{Token:v(w).token},action:v(k)+"/upload/file","on-success":C,"before-upload":d.handleBeforeUpload,limit:1,"on-exceed":d.handleExceed,ref:"upload"},{default:a(()=>[e(h,{type:"primary"},{default:a(()=>[V(X(l.file?"\u91CD\u65B0\u4E0A\u4F20":"\u4E0A\u4F20\u5408\u540C"),1)]),_:1})]),_:1},8,["headers","action","before-upload","on-exceed"])):m("",!0),l.file&&(l==null?void 0:l.status)==0?(r(),_("a",{key:1,style:{"margin-left":"10px",color:"#4a5dff"},href:l.file,target:"_blank"},"\u5408\u540C\u5DF2\u4E0A\u4F20,\u70B9\u51FB\u67E5\u770B",8,me)):m("",!0),l.status>0?(r(),_("a",{key:2,style:{"margin-left":"10px",color:"#4a5dff"},href:l.file},"\u67E5\u770B\u5408\u540C",8,_e)):m("",!0)]),l.status==0?(r(),c(h,{key:1,type:"primary",onClick:E},{default:a(()=>[V("\u786E\u5B9A")]),_:1})):m("",!0)])}}};export{We as default}; diff --git a/public/admin/assets/vehicle_detail.1b88bd64.js b/public/admin/assets/vehicle_detail.1b88bd64.js new file mode 100644 index 000000000..43c2c7ff8 --- /dev/null +++ b/public/admin/assets/vehicle_detail.1b88bd64.js @@ -0,0 +1 @@ +import{J as S,B as N,C as j,a1 as q,a2 as T,D as L,F as z,a0 as I,w as J}from"./element-plus.4328d892.js";import{a as A,u as G}from"./vue-router.9f65afb1.js";import{l as K,f as O}from"./contract.e9a9dbc8.js";import{a as Q}from"./index.37f7aea6.js";import{r as $,$ as H,C as M,o as r,c as _,U as e,L as a,a as p,K as c,Q as m,T as P,a7 as W,R as V,S as X,u as v}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const Y={class:"edit-popup"},Z=p("div",{class:"tit"},"\u7532\u65B9\u4FE1\u606F",-1),ee=p("div",{class:"tit"},"\u4E3B\u8981\u8054\u7CFB\u4EBA",-1),le={style:{display:"flex","justify-content":"left"}},ae={class:"right"},oe=p("div",{class:"tit"},"\u4E59\u65B9\u4FE1\u606F",-1),te=p("div",{class:"tit"},"\u4E3B\u8981\u8054\u7CFB\u4EBA",-1),de={style:{display:"flex","justify-content":"left"}},se={class:"right"},ne=p("div",{class:"tit"},"\u79DF\u8D41\u4FE1\u606F",-1),ie={key:0,class:"el-card pt-6"},pe=p("div",{class:"tit"},"\u79DF\u8D41\u4FE1\u606F",-1),re={style:{padding:"0 2vw"}},ue={class:"el-card pt-6"},me=["href"],_e=["href"],We={__name:"vehicle_detail",setup(ce){const w=Q(),g=A(),f=G(),y=$([]),l=H({contract_logistic_id:"",contract_no:"",company_a_id:"",company_a_name:"",company_a_code:"",company_a_user:"",company_a_phone:"",company_a_email:"@service.ebaoquan.org",company_b_id:"",company_b_name:"",company_b_user:"",company_b_phone:"",company_b_code:"",company_b_email:"@service.ebaoquan.org",num:"",cars_info:{id:"",license:""},car_list:[],type:0,status:0,file:"",contract_url:"",signing_timer:0,url:null,create_time:"2023-08-31 14:26:42",update_time:"2023-08-31 14:26:49",reject_message:""});let b=[];const k=M("base_url"),U=d=>{b=[],d.map(o=>{l.car_list.forEach(n=>{n.license==o&&b.push(n)})})};K({id:f.query.id}).then(d=>{for(let o in l)l[o]=d[o];l.type?l.type="\u81EA\u6709\u8F66\u8F86":l.type="\u79DF\u8D41\u8F66\u8F86"});const C=(d,o)=>{l.file=d.data.uri},E=()=>{O({id:f.query.id,file:l.file,cars:JSON.stringify(b)}).then(d=>{setTimeout(()=>{g.go(-1)},1e3)})};return(d,o)=>{const n=N,i=j,s=q,u=T,x=L,D=z,B=I,h=J,F=S;return r(),_("div",Y,[e(x,{ref:"formRef",model:l,"label-width":"90px",rules:d.formRules,disabled:!0},{default:a(()=>[e(s,{span:24,class:"el-card pt-6"},{default:a(()=>[Z,e(u,null,{default:a(()=>[e(s,{span:8},{default:a(()=>[e(i,{label:"\u516C\u53F8\u540D\u79F0",prop:"company_name"},{default:a(()=>[e(n,{modelValue:l.company_a_name,"onUpdate:modelValue":o[0]||(o[0]=t=>l.company_a_name=t),placeholder:"\u8BF7\u8F93\u5165\u516C\u53F8\u540D\u79F0",clearable:"",disabled:d.isDisabled,style:{width:"100%"}},null,8,["modelValue","disabled"])]),_:1})]),_:1}),e(s,{span:8},{default:a(()=>[e(i,{label:"\u793E\u4F1A\u4EE3\u7801",prop:"organization_code"},{default:a(()=>[e(n,{disabled:d.isDisabled,modelValue:l.company_a_code,"onUpdate:modelValue":o[1]||(o[1]=t=>l.company_a_code=t),placeholder:"\u8BF7\u8F93\u5165\u793E\u4F1A\u4EE3\u7801",clearable:"",style:{width:"100%"}},null,8,["disabled","modelValue"])]),_:1})]),_:1})]),_:1})]),_:1}),e(s,{span:24,class:"el-card pt-6"},{default:a(()=>[ee,e(u,null,{default:a(()=>[p("div",le,[p("div",ae,[e(u,null,{default:a(()=>[e(s,{span:8},{default:a(()=>[e(i,{label:"\u59D3\u540D",prop:"master_name"},{default:a(()=>[e(n,{disabled:d.isDisabled,modelValue:l.company_a_user,"onUpdate:modelValue":o[2]||(o[2]=t=>l.company_a_user=t),placeholder:"\u8BF7\u8F93\u5165\u59D3\u540D",clearable:"",style:{width:"100%"}},null,8,["disabled","modelValue"])]),_:1})]),_:1}),e(s,{span:8},{default:a(()=>[e(i,{label:"\u624B\u673A",prop:"master_phone"},{default:a(()=>[e(n,{disabled:d.isDisabled,modelValue:l.company_a_phone,"onUpdate:modelValue":o[3]||(o[3]=t=>l.company_a_phone=t),placeholder:"\u8BF7\u8F93\u5165\u624B\u673A",clearable:"",style:{width:"100%"}},null,8,["disabled","modelValue"])]),_:1})]),_:1}),e(s,{span:8},{default:a(()=>[e(i,{label:"\u90AE\u7BB1"},{default:a(()=>[e(n,{disabled:d.isDisabled,modelValue:l.company_a_email,"onUpdate:modelValue":o[4]||(o[4]=t=>l.company_a_email=t),placeholder:"\u8BF7\u8F93\u5165\u90AE\u7BB1",clearable:"",style:{width:"100%"}},null,8,["disabled","modelValue"])]),_:1})]),_:1})]),_:1})])])]),_:1})]),_:1}),e(s,{span:24,class:"el-card pt-6"},{default:a(()=>[oe,e(u,null,{default:a(()=>[e(s,{span:8},{default:a(()=>[e(i,{label:"\u516C\u53F8\u540D\u79F0",prop:"company_name"},{default:a(()=>[e(n,{modelValue:l.company_b_name,"onUpdate:modelValue":o[5]||(o[5]=t=>l.company_b_name=t),placeholder:"\u8BF7\u8F93\u5165\u516C\u53F8\u540D\u79F0",clearable:"",disabled:d.isDisabled,style:{width:"100%"}},null,8,["modelValue","disabled"])]),_:1})]),_:1}),e(s,{span:8},{default:a(()=>[e(i,{label:"\u793E\u4F1A\u4EE3\u7801",prop:"organization_code"},{default:a(()=>[e(n,{disabled:d.isDisabled,modelValue:l.company_b_code,"onUpdate:modelValue":o[6]||(o[6]=t=>l.company_b_code=t),placeholder:"\u8BF7\u8F93\u5165\u793E\u4F1A\u4EE3\u7801",clearable:"",style:{width:"100%"}},null,8,["disabled","modelValue"])]),_:1})]),_:1})]),_:1})]),_:1}),e(s,{span:24,class:"el-card pt-6"},{default:a(()=>[te,e(u,null,{default:a(()=>[p("div",de,[p("div",se,[e(u,null,{default:a(()=>[e(s,{span:8},{default:a(()=>[e(i,{label:"\u59D3\u540D",prop:"master_name"},{default:a(()=>[e(n,{disabled:d.isDisabled,modelValue:l.company_b_user,"onUpdate:modelValue":o[7]||(o[7]=t=>l.company_b_user=t),placeholder:"\u8BF7\u8F93\u5165\u59D3\u540D",clearable:"",style:{width:"100%"}},null,8,["disabled","modelValue"])]),_:1})]),_:1}),e(s,{span:8},{default:a(()=>[e(i,{label:"\u624B\u673A",prop:"master_phone"},{default:a(()=>[e(n,{disabled:d.isDisabled,modelValue:l.company_b_phone,"onUpdate:modelValue":o[8]||(o[8]=t=>l.company_b_phone=t),placeholder:"\u8BF7\u8F93\u5165\u624B\u673A",clearable:"",style:{width:"100%"}},null,8,["disabled","modelValue"])]),_:1})]),_:1}),e(s,{span:8},{default:a(()=>[e(i,{label:"\u90AE\u7BB1"},{default:a(()=>[e(n,{disabled:d.isDisabled,modelValue:l.company_b_email,"onUpdate:modelValue":o[9]||(o[9]=t=>l.company_b_email=t),placeholder:"\u8BF7\u8F93\u5165\u90AE\u7BB1",clearable:"",style:{width:"100%"}},null,8,["disabled","modelValue"])]),_:1})]),_:1})]),_:1})])])]),_:1})]),_:1}),l.cars_info?(r(),c(s,{key:0,span:24,class:"el-card pt-6"},{default:a(()=>[ne,p("div",null,[e(u,null,{default:a(()=>[e(s,{span:4},{default:a(()=>[e(i,{"label-width":"120px",label:"\u8F66\u724C\u53F7"},{default:a(()=>[e(n,{modelValue:l.cars_info.license,"onUpdate:modelValue":o[10]||(o[10]=t=>l.cars_info.license=t),placeholder:"\u8BF7\u8F93\u5165\u8F66\u724C\u53F7",clearable:"",style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(s,{span:4},{default:a(()=>[e(i,{"label-width":"120px",label:"\u8F66\u8F86\u7C7B\u578B"},{default:a(()=>[e(n,{modelValue:l.type,"onUpdate:modelValue":o[11]||(o[11]=t=>l.type=t),placeholder:"\u8BF7\u8F93\u5165\u8F66\u8F86\u7C7B\u578B",clearable:"",style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(s,{span:6},{default:a(()=>[e(i,{"label-width":"120px",label:"\u4F7F\u7528\u516C\u53F8"},{default:a(()=>[e(n,{modelValue:l.company_b_name,"onUpdate:modelValue":o[12]||(o[12]=t=>l.company_b_name=t),placeholder:"\u8BF7\u8F93\u5165\u4F7F\u7528\u516C\u53F8",clearable:"",style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(s,{span:6},{default:a(()=>[e(i,{"label-width":"120px",label:"\u7B7E\u7EA6\u65F6\u95F4"},{default:a(()=>[e(n,{modelValue:l.update_time,"onUpdate:modelValue":o[13]||(o[13]=t=>l.update_time=t),placeholder:"\u8BF7\u8F93\u5165\u7B7E\u7EA6\u65F6\u95F4",clearable:"",style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1})]),_:1})])]),_:1})):m("",!0)]),_:1},8,["model","rules"]),l.contract_logistic_id&&l.type=="\u79DF\u8D41\u8F66\u8F86"?(r(),_("div",ie,[pe,p("div",re,[e(B,{max:l.num,modelValue:y.value,"onUpdate:modelValue":o[14]||(o[14]=t=>y.value=t),onChange:U},{default:a(()=>[(r(!0),_(P,null,W(l.car_list,(t,R)=>(r(),c(D,{label:t.license,key:R},null,8,["label"]))),128))]),_:1},8,["max","modelValue"])])])):m("",!0),p("div",ue,[(l==null?void 0:l.status)==0?(r(),c(F,{key:0,style:{display:"inline-block"},headers:{Token:v(w).token},action:v(k)+"/upload/file","on-success":C,"before-upload":d.handleBeforeUpload,limit:1,"on-exceed":d.handleExceed,ref:"upload"},{default:a(()=>[e(h,{type:"primary"},{default:a(()=>[V(X(l.file?"\u91CD\u65B0\u4E0A\u4F20":"\u4E0A\u4F20\u5408\u540C"),1)]),_:1})]),_:1},8,["headers","action","before-upload","on-exceed"])):m("",!0),l.file&&(l==null?void 0:l.status)==0?(r(),_("a",{key:1,style:{"margin-left":"10px",color:"#4a5dff"},href:l.file,target:"_blank"},"\u5408\u540C\u5DF2\u4E0A\u4F20,\u70B9\u51FB\u67E5\u770B",8,me)):m("",!0),l.status>0?(r(),_("a",{key:2,style:{"margin-left":"10px",color:"#4a5dff"},href:l.file},"\u67E5\u770B\u5408\u540C",8,_e)):m("",!0)]),l.status==0?(r(),c(h,{key:1,type:"primary",onClick:E},{default:a(()=>[V("\u786E\u5B9A")]),_:1})):m("",!0)])}}};export{We as default}; diff --git a/public/admin/assets/vehicle_detail.e1eeeded.js b/public/admin/assets/vehicle_detail.e1eeeded.js new file mode 100644 index 000000000..b2a8811cc --- /dev/null +++ b/public/admin/assets/vehicle_detail.e1eeeded.js @@ -0,0 +1 @@ +import{J as S,B as N,C as j,a1 as q,a2 as T,D as L,F as z,a0 as I,w as J}from"./element-plus.4328d892.js";import{a as A,u as G}from"./vue-router.9f65afb1.js";import{l as K,f as O}from"./contract.35ae5168.js";import{a as Q}from"./index.aa9bb752.js";import{r as $,$ as H,C as M,o as r,c as _,U as e,L as a,a as p,K as c,Q as m,T as P,a7 as W,R as V,S as X,u as v}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";const Y={class:"edit-popup"},Z=p("div",{class:"tit"},"\u7532\u65B9\u4FE1\u606F",-1),ee=p("div",{class:"tit"},"\u4E3B\u8981\u8054\u7CFB\u4EBA",-1),le={style:{display:"flex","justify-content":"left"}},ae={class:"right"},oe=p("div",{class:"tit"},"\u4E59\u65B9\u4FE1\u606F",-1),te=p("div",{class:"tit"},"\u4E3B\u8981\u8054\u7CFB\u4EBA",-1),de={style:{display:"flex","justify-content":"left"}},se={class:"right"},ne=p("div",{class:"tit"},"\u79DF\u8D41\u4FE1\u606F",-1),ie={key:0,class:"el-card pt-6"},pe=p("div",{class:"tit"},"\u79DF\u8D41\u4FE1\u606F",-1),re={style:{padding:"0 2vw"}},ue={class:"el-card pt-6"},me=["href"],_e=["href"],We={__name:"vehicle_detail",setup(ce){const w=Q(),g=A(),f=G(),y=$([]),l=H({contract_logistic_id:"",contract_no:"",company_a_id:"",company_a_name:"",company_a_code:"",company_a_user:"",company_a_phone:"",company_a_email:"@service.ebaoquan.org",company_b_id:"",company_b_name:"",company_b_user:"",company_b_phone:"",company_b_code:"",company_b_email:"@service.ebaoquan.org",num:"",cars_info:{id:"",license:""},car_list:[],type:0,status:0,file:"",contract_url:"",signing_timer:0,url:null,create_time:"2023-08-31 14:26:42",update_time:"2023-08-31 14:26:49",reject_message:""});let b=[];const k=M("base_url"),U=d=>{b=[],d.map(o=>{l.car_list.forEach(n=>{n.license==o&&b.push(n)})})};K({id:f.query.id}).then(d=>{for(let o in l)l[o]=d[o];l.type?l.type="\u81EA\u6709\u8F66\u8F86":l.type="\u79DF\u8D41\u8F66\u8F86"});const C=(d,o)=>{l.file=d.data.uri},E=()=>{O({id:f.query.id,file:l.file,cars:JSON.stringify(b)}).then(d=>{setTimeout(()=>{g.go(-1)},1e3)})};return(d,o)=>{const n=N,i=j,s=q,u=T,x=L,D=z,B=I,h=J,F=S;return r(),_("div",Y,[e(x,{ref:"formRef",model:l,"label-width":"90px",rules:d.formRules,disabled:!0},{default:a(()=>[e(s,{span:24,class:"el-card pt-6"},{default:a(()=>[Z,e(u,null,{default:a(()=>[e(s,{span:8},{default:a(()=>[e(i,{label:"\u516C\u53F8\u540D\u79F0",prop:"company_name"},{default:a(()=>[e(n,{modelValue:l.company_a_name,"onUpdate:modelValue":o[0]||(o[0]=t=>l.company_a_name=t),placeholder:"\u8BF7\u8F93\u5165\u516C\u53F8\u540D\u79F0",clearable:"",disabled:d.isDisabled,style:{width:"100%"}},null,8,["modelValue","disabled"])]),_:1})]),_:1}),e(s,{span:8},{default:a(()=>[e(i,{label:"\u793E\u4F1A\u4EE3\u7801",prop:"organization_code"},{default:a(()=>[e(n,{disabled:d.isDisabled,modelValue:l.company_a_code,"onUpdate:modelValue":o[1]||(o[1]=t=>l.company_a_code=t),placeholder:"\u8BF7\u8F93\u5165\u793E\u4F1A\u4EE3\u7801",clearable:"",style:{width:"100%"}},null,8,["disabled","modelValue"])]),_:1})]),_:1})]),_:1})]),_:1}),e(s,{span:24,class:"el-card pt-6"},{default:a(()=>[ee,e(u,null,{default:a(()=>[p("div",le,[p("div",ae,[e(u,null,{default:a(()=>[e(s,{span:8},{default:a(()=>[e(i,{label:"\u59D3\u540D",prop:"master_name"},{default:a(()=>[e(n,{disabled:d.isDisabled,modelValue:l.company_a_user,"onUpdate:modelValue":o[2]||(o[2]=t=>l.company_a_user=t),placeholder:"\u8BF7\u8F93\u5165\u59D3\u540D",clearable:"",style:{width:"100%"}},null,8,["disabled","modelValue"])]),_:1})]),_:1}),e(s,{span:8},{default:a(()=>[e(i,{label:"\u624B\u673A",prop:"master_phone"},{default:a(()=>[e(n,{disabled:d.isDisabled,modelValue:l.company_a_phone,"onUpdate:modelValue":o[3]||(o[3]=t=>l.company_a_phone=t),placeholder:"\u8BF7\u8F93\u5165\u624B\u673A",clearable:"",style:{width:"100%"}},null,8,["disabled","modelValue"])]),_:1})]),_:1}),e(s,{span:8},{default:a(()=>[e(i,{label:"\u90AE\u7BB1"},{default:a(()=>[e(n,{disabled:d.isDisabled,modelValue:l.company_a_email,"onUpdate:modelValue":o[4]||(o[4]=t=>l.company_a_email=t),placeholder:"\u8BF7\u8F93\u5165\u90AE\u7BB1",clearable:"",style:{width:"100%"}},null,8,["disabled","modelValue"])]),_:1})]),_:1})]),_:1})])])]),_:1})]),_:1}),e(s,{span:24,class:"el-card pt-6"},{default:a(()=>[oe,e(u,null,{default:a(()=>[e(s,{span:8},{default:a(()=>[e(i,{label:"\u516C\u53F8\u540D\u79F0",prop:"company_name"},{default:a(()=>[e(n,{modelValue:l.company_b_name,"onUpdate:modelValue":o[5]||(o[5]=t=>l.company_b_name=t),placeholder:"\u8BF7\u8F93\u5165\u516C\u53F8\u540D\u79F0",clearable:"",disabled:d.isDisabled,style:{width:"100%"}},null,8,["modelValue","disabled"])]),_:1})]),_:1}),e(s,{span:8},{default:a(()=>[e(i,{label:"\u793E\u4F1A\u4EE3\u7801",prop:"organization_code"},{default:a(()=>[e(n,{disabled:d.isDisabled,modelValue:l.company_b_code,"onUpdate:modelValue":o[6]||(o[6]=t=>l.company_b_code=t),placeholder:"\u8BF7\u8F93\u5165\u793E\u4F1A\u4EE3\u7801",clearable:"",style:{width:"100%"}},null,8,["disabled","modelValue"])]),_:1})]),_:1})]),_:1})]),_:1}),e(s,{span:24,class:"el-card pt-6"},{default:a(()=>[te,e(u,null,{default:a(()=>[p("div",de,[p("div",se,[e(u,null,{default:a(()=>[e(s,{span:8},{default:a(()=>[e(i,{label:"\u59D3\u540D",prop:"master_name"},{default:a(()=>[e(n,{disabled:d.isDisabled,modelValue:l.company_b_user,"onUpdate:modelValue":o[7]||(o[7]=t=>l.company_b_user=t),placeholder:"\u8BF7\u8F93\u5165\u59D3\u540D",clearable:"",style:{width:"100%"}},null,8,["disabled","modelValue"])]),_:1})]),_:1}),e(s,{span:8},{default:a(()=>[e(i,{label:"\u624B\u673A",prop:"master_phone"},{default:a(()=>[e(n,{disabled:d.isDisabled,modelValue:l.company_b_phone,"onUpdate:modelValue":o[8]||(o[8]=t=>l.company_b_phone=t),placeholder:"\u8BF7\u8F93\u5165\u624B\u673A",clearable:"",style:{width:"100%"}},null,8,["disabled","modelValue"])]),_:1})]),_:1}),e(s,{span:8},{default:a(()=>[e(i,{label:"\u90AE\u7BB1"},{default:a(()=>[e(n,{disabled:d.isDisabled,modelValue:l.company_b_email,"onUpdate:modelValue":o[9]||(o[9]=t=>l.company_b_email=t),placeholder:"\u8BF7\u8F93\u5165\u90AE\u7BB1",clearable:"",style:{width:"100%"}},null,8,["disabled","modelValue"])]),_:1})]),_:1})]),_:1})])])]),_:1})]),_:1}),l.cars_info?(r(),c(s,{key:0,span:24,class:"el-card pt-6"},{default:a(()=>[ne,p("div",null,[e(u,null,{default:a(()=>[e(s,{span:4},{default:a(()=>[e(i,{"label-width":"120px",label:"\u8F66\u724C\u53F7"},{default:a(()=>[e(n,{modelValue:l.cars_info.license,"onUpdate:modelValue":o[10]||(o[10]=t=>l.cars_info.license=t),placeholder:"\u8BF7\u8F93\u5165\u8F66\u724C\u53F7",clearable:"",style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(s,{span:4},{default:a(()=>[e(i,{"label-width":"120px",label:"\u8F66\u8F86\u7C7B\u578B"},{default:a(()=>[e(n,{modelValue:l.type,"onUpdate:modelValue":o[11]||(o[11]=t=>l.type=t),placeholder:"\u8BF7\u8F93\u5165\u8F66\u8F86\u7C7B\u578B",clearable:"",style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(s,{span:6},{default:a(()=>[e(i,{"label-width":"120px",label:"\u4F7F\u7528\u516C\u53F8"},{default:a(()=>[e(n,{modelValue:l.company_b_name,"onUpdate:modelValue":o[12]||(o[12]=t=>l.company_b_name=t),placeholder:"\u8BF7\u8F93\u5165\u4F7F\u7528\u516C\u53F8",clearable:"",style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1}),e(s,{span:6},{default:a(()=>[e(i,{"label-width":"120px",label:"\u7B7E\u7EA6\u65F6\u95F4"},{default:a(()=>[e(n,{modelValue:l.update_time,"onUpdate:modelValue":o[13]||(o[13]=t=>l.update_time=t),placeholder:"\u8BF7\u8F93\u5165\u7B7E\u7EA6\u65F6\u95F4",clearable:"",style:{width:"100%"}},null,8,["modelValue"])]),_:1})]),_:1})]),_:1})])]),_:1})):m("",!0)]),_:1},8,["model","rules"]),l.contract_logistic_id&&l.type=="\u79DF\u8D41\u8F66\u8F86"?(r(),_("div",ie,[pe,p("div",re,[e(B,{max:l.num,modelValue:y.value,"onUpdate:modelValue":o[14]||(o[14]=t=>y.value=t),onChange:U},{default:a(()=>[(r(!0),_(P,null,W(l.car_list,(t,R)=>(r(),c(D,{label:t.license,key:R},null,8,["label"]))),128))]),_:1},8,["max","modelValue"])])])):m("",!0),p("div",ue,[(l==null?void 0:l.status)==0?(r(),c(F,{key:0,style:{display:"inline-block"},headers:{Token:v(w).token},action:v(k)+"/upload/file","on-success":C,"before-upload":d.handleBeforeUpload,limit:1,"on-exceed":d.handleExceed,ref:"upload"},{default:a(()=>[e(h,{type:"primary"},{default:a(()=>[V(X(l.file?"\u91CD\u65B0\u4E0A\u4F20":"\u4E0A\u4F20\u5408\u540C"),1)]),_:1})]),_:1},8,["headers","action","before-upload","on-exceed"])):m("",!0),l.file&&(l==null?void 0:l.status)==0?(r(),_("a",{key:1,style:{"margin-left":"10px",color:"#4a5dff"},href:l.file,target:"_blank"},"\u5408\u540C\u5DF2\u4E0A\u4F20,\u70B9\u51FB\u67E5\u770B",8,me)):m("",!0),l.status>0?(r(),_("a",{key:2,style:{"margin-left":"10px",color:"#4a5dff"},href:l.file},"\u67E5\u770B\u5408\u540C",8,_e)):m("",!0)]),l.status==0?(r(),c(h,{key:1,type:"primary",onClick:E},{default:a(()=>[V("\u786E\u5B9A")]),_:1})):m("",!0)])}}};export{We as default}; diff --git a/public/admin/assets/vehicle_list.60ceb897.js b/public/admin/assets/vehicle_list.60ceb897.js new file mode 100644 index 000000000..7a705fb6c --- /dev/null +++ b/public/admin/assets/vehicle_list.60ceb897.js @@ -0,0 +1 @@ +import{B as Z,C as tt,M as et,N as ut,w as ot,D as at,O as nt,P as lt,I as st,L as rt,Q as it}from"./element-plus.4328d892.js";import{_ as ct}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{u as pt}from"./usePaging.2ad8e1e6.js";import{u as dt}from"./useDictOptions.8d37e54b.js";import{g as mt}from"./contract.152e3bc2.js";import{r as L,f as _t,d as ft}from"./index.ed71ac09.js";import{d as N,r as B,$ as Ft,a4 as Ct,af as Et,o as s,c as D,M as h,u as n,K as d,L as u,U as e,R as r,a as E,S as b,_ as vt,Q as v,k as P,bf as yt,be as Bt}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";function gt(p){return L.post({url:"/contract.VehicleContract/initiatingRentCarContract",params:p})}function Dt(p){return L.post({url:"/contract.contract/sendSmsAgain",params:p})}const ht=p=>(yt("data-v-57d9d6f0"),p=p(),Bt(),p),bt={class:"mt-4"},kt=["href"],At={class:"flex mt-4 justify-end"},Vt=ht(()=>E("h1",null,"\u91CD\u8981\u63D0\u9192",-1)),xt={key:0,class:"content"},wt={key:1,class:"content"},It={class:"btn_menu"},St=N({name:"flowTypeLists"}),Pt=N({...St,setup(p){const m=B(0);var F=0;const _=B(!1),g=B(!1),U=()=>{Dt({id:F}).then(a=>{var o=l.lists.findIndex(function(C){return C.id===F});g.value=!0,m.value=o,l.lists[m.value].nums=10,k(m.value)})},k=a=>{const o=setInterval(()=>{l.lists[a].nums--,l.lists[a].nums<=0&&clearInterval(o)},1e3)},$=a=>{_.value=!0,F=a},q=a=>{_.value=!0,F=a},z=()=>{gt({id:F}).then(a=>{_t.msgSuccess("\u53D1\u9001\u6210\u529F");var o=l.lists.findIndex(function(C){return C.id===F});m.value=o,_.value=!1,l.lists[m.value].status=2,l.lists[m.value].nums=10,k(m.value)})},A=()=>{_.value=!1},f=Ft({company_name:"",contract_no:"",status:""}),V=a=>{switch(a){case 0:return{tit:"\u5F85\u4E0A\u4F20",color:"rgb(238, 190, 119)"};case 1:return{tit:"\u5DF2\u4E0A\u4F20",color:"rgb(103, 194, 58)"};case 2:return{tit:"\u7B7E\u7EA6\u4E2D",color:"red"};case 3:return{tit:"\u5DF2\u7B7E\u7EA6",color:"rgb(103, 194, 58)"}}},T=a=>{switch(a){case 0:return"\u79DF\u8D41\u5408\u540C";case 1:return"\u81EA\u7531\u8F66\u8F86\u5408\u540C";case 2:return"\u89E3\u9664\u5408\u540C"}},M=B([]),O=a=>{M.value=a.map(({id:o})=>o)};dt("");const{pager:l,getLists:x,resetParams:R,resetPage:Q}=pt({fetchFun:mt,params:f});return x(),(a,o)=>{const C=Z,y=tt,w=et,j=ut,i=ot,J=at,c=nt,I=Ct("router-link"),K=lt,G=ct,H=st,W=rt,S=Et("perms"),X=it;return s(),D("div",null,[h((s(),d(H,{class:"!border-none",shadow:"never"},{default:u(()=>[e(J,{class:"mb-[-16px]",inline:""},{default:u(()=>[e(y,{label:"\u516C\u53F8\u540D\u79F0",prop:"company_name"},{default:u(()=>[e(C,{class:"w-[280px]",modelValue:n(f).company_name,"onUpdate:modelValue":o[0]||(o[0]=t=>n(f).company_name=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u516C\u53F8\u540D\u79F0"},null,8,["modelValue"])]),_:1}),e(y,{label:"\u5408\u540C\u7F16\u53F7",prop:"contract_no"},{default:u(()=>[e(C,{class:"w-[280px]",modelValue:n(f).contract_no,"onUpdate:modelValue":o[1]||(o[1]=t=>n(f).contract_no=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u5408\u540C\u7F16\u53F7"},null,8,["modelValue"])]),_:1}),e(y,{label:"\u5408\u540C\u72B6\u6001",prop:"status"},{default:u(()=>[e(j,{modelValue:n(f).status,"onUpdate:modelValue":o[2]||(o[2]=t=>n(f).status=t),placeholder:"\u8BF7\u9009\u62E9\u5408\u540C\u7C7B\u578B",clearable:"",class:"w-[280px]"},{default:u(()=>[e(w,{label:"\u672A\u4E0A\u4F20",value:0}),e(w,{label:"\u5DF2\u4E0A\u4F20",value:1})]),_:1},8,["modelValue"])]),_:1}),e(y,null,{default:u(()=>[e(i,{type:"primary",onClick:n(Q)},{default:u(()=>[r("\u67E5\u8BE2")]),_:1},8,["onClick"]),e(i,{onClick:n(R)},{default:u(()=>[r("\u91CD\u7F6E")]),_:1},8,["onClick"])]),_:1})]),_:1}),E("div",bt,[e(K,{data:n(l).lists,"default-sort":{prop:"create_time",order:"descending"},onSelectionChange:O},{default:u(()=>[e(c,{label:"id",prop:"id"}),e(c,{label:"\u5408\u540C\u7C7B\u578B",align:"center"},{default:u(({row:t})=>[r(b(T(t.type)),1)]),_:1}),e(c,{label:"\u5408\u540C\u7F16\u53F7",prop:"contract_no",align:"center","show-overflow-tooltip":""}),e(c,{label:"\u7532\u65B9",prop:"company_a_name",align:"center","show-overflow-tooltip":""}),e(c,{label:"\u4E59\u65B9",prop:"company_b_name",align:"center","show-overflow-tooltip":""}),e(c,{label:"\u7C7B\u578B",prop:"product_count",align:"center","show-overflow-tooltip":""},{default:u(({row:t})=>[r(" \u516C\u53F8 ")]),_:1}),e(c,{label:"\u79DF\u8F66\u6570\u91CF(\u8F86)",prop:"num",align:"center","show-overflow-tooltip":""}),e(c,{label:"\u72B6\u6001",prop:"product_count",align:"center","show-overflow-tooltip":""},{default:u(({row:t})=>[E("span",{style:vt(`color:${V(t.status).color}`)},b(V(t.status).tit),5)]),_:1}),e(c,{label:"\u64CD\u4F5C",align:"center",width:"auto",fixed:"right"},{default:u(({row:t})=>[t.status==0?h((s(),d(i,{key:0,type:"primary",link:""},{default:u(()=>[e(I,{to:{path:"vehicle_detail",query:{id:t.id}}},{default:u(()=>[r("\u5BA1\u6838")]),_:2},1032,["to"])]),_:2},1024)),[[S,["contract.contract/wind_control"]]]):v("",!0),t.status>0?h((s(),d(i,{key:1,type:"primary",link:""},{default:u(()=>[e(I,{to:{path:"vehicle_detail",query:{id:t.id}}},{default:u(()=>[r("\u8BE6\u60C5")]),_:2},1032,["to"])]),_:2},1024)),[[S,["contract.contract/wind_control"]]]):v("",!0),t.status==1&&t.contract_logistic_id!=0?(s(),d(i,{key:2,type:"primary",link:"",onClick:Y=>$(t.id)},{default:u(()=>[r("\u53D1\u9001\u5408\u540C")]),_:2},1032,["onClick"])):v("",!0),t.status==2?(s(),d(i,{key:3,disabled:t.nums>0,onClick:Y=>q(t.id),link:"",type:"primary"},{default:u(()=>[r("\u91CD\u65B0\u53D1\u9001"+b(t.nums?t.nums+"s":""),1)]),_:2},1032,["disabled","onClick"])):v("",!0),t.status==3?(s(),d(i,{key:4,type:"primary",link:""},{default:u(()=>[E("a",{href:JSON.parse(t.contract_evidence).party_a},"\u4E0B\u8F7D\u8BC1\u636E",8,kt)]),_:2},1024)):v("",!0)]),_:1})]),_:1},8,["data"])]),E("div",At,[e(G,{modelValue:n(l),"onUpdate:modelValue":o[3]||(o[3]=t=>P(l)?l.value=t:null),onChange:n(x)},null,8,["modelValue","onChange"])])]),_:1})),[[X,n(l).loading]]),e(W,{modelValue:n(_),"onUpdate:modelValue":o[4]||(o[4]=t=>P(_)?_.value=t:null),onClose:A},{default:u(()=>[Vt,n(g)?(s(),D("div",wt," \u786E\u8BA4\u7B7E\u7EA6\u77ED\u4FE1\u5C06\u572860\u79D2\u540E\u53D1\u9001,\u8BF7\u6CE8\u610F\u67E5\u6536,\u5E76\u70B9\u51FB\u77ED\u4FE1\u94FE\u63A5\u8FDB\u884C\u7EBF\u4E0A\u5408\u540C\u7B7E\u7EA6 ")):(s(),D("div",xt," \u8BF7\u786E\u8BA4\u4FE1\u606F\u662F\u5426\u6709\u8BEF,\u53D1\u9001\u5408\u540C,\u8BF7\u786E\u8BA4\u4FE1\u606F\u662F\u5426\u6709\u8BEF,\u53D1\u9001\u7535\u5B50\u5408\u540C\u540E\u77ED\u65F6\u95F4\u5185\u5C06\u4E0D\u53EF\u518D\u6B21\u53D1\u9001. ")),E("p",It,[n(g)?(s(),d(i,{key:1,type:"primary",size:"large",onClick:U},{default:u(()=>[r("\u91CD\u65B0\u53D1\u9001")]),_:1})):(s(),d(i,{key:0,type:"primary",size:"large",onClick:z},{default:u(()=>[r("\u786E\u8BA4")]),_:1})),e(i,{type:"info",size:"large",onClick:A},{default:u(()=>[r("\u8FD4\u56DE")]),_:1})])]),_:1},8,["modelValue"])])}}});const Ee=ft(Pt,[["__scopeId","data-v-57d9d6f0"]]);export{Ee as default}; diff --git a/public/admin/assets/vehicle_list.b39c8c84.js b/public/admin/assets/vehicle_list.b39c8c84.js new file mode 100644 index 000000000..eac6b165d --- /dev/null +++ b/public/admin/assets/vehicle_list.b39c8c84.js @@ -0,0 +1 @@ +import{B as Z,C as tt,M as et,N as ut,w as ot,D as at,O as nt,P as lt,I as st,L as rt,Q as it}from"./element-plus.4328d892.js";import{_ as ct}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{u as pt}from"./usePaging.2ad8e1e6.js";import{u as dt}from"./useDictOptions.a61fcf9f.js";import{g as mt}from"./contract.35ae5168.js";import{r as L,f as _t,d as ft}from"./index.aa9bb752.js";import{d as N,r as B,$ as Ft,a4 as Ct,af as Et,o as s,c as D,M as h,u as n,K as d,L as u,U as e,R as r,a as E,S as b,_ as vt,Q as v,k as P,bf as yt,be as Bt}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";function gt(p){return L.post({url:"/contract.VehicleContract/initiatingRentCarContract",params:p})}function Dt(p){return L.post({url:"/contract.contract/sendSmsAgain",params:p})}const ht=p=>(yt("data-v-57d9d6f0"),p=p(),Bt(),p),bt={class:"mt-4"},kt=["href"],At={class:"flex mt-4 justify-end"},Vt=ht(()=>E("h1",null,"\u91CD\u8981\u63D0\u9192",-1)),xt={key:0,class:"content"},wt={key:1,class:"content"},It={class:"btn_menu"},St=N({name:"flowTypeLists"}),Pt=N({...St,setup(p){const m=B(0);var F=0;const _=B(!1),g=B(!1),U=()=>{Dt({id:F}).then(a=>{var o=l.lists.findIndex(function(C){return C.id===F});g.value=!0,m.value=o,l.lists[m.value].nums=10,k(m.value)})},k=a=>{const o=setInterval(()=>{l.lists[a].nums--,l.lists[a].nums<=0&&clearInterval(o)},1e3)},$=a=>{_.value=!0,F=a},q=a=>{_.value=!0,F=a},z=()=>{gt({id:F}).then(a=>{_t.msgSuccess("\u53D1\u9001\u6210\u529F");var o=l.lists.findIndex(function(C){return C.id===F});m.value=o,_.value=!1,l.lists[m.value].status=2,l.lists[m.value].nums=10,k(m.value)})},A=()=>{_.value=!1},f=Ft({company_name:"",contract_no:"",status:""}),V=a=>{switch(a){case 0:return{tit:"\u5F85\u4E0A\u4F20",color:"rgb(238, 190, 119)"};case 1:return{tit:"\u5DF2\u4E0A\u4F20",color:"rgb(103, 194, 58)"};case 2:return{tit:"\u7B7E\u7EA6\u4E2D",color:"red"};case 3:return{tit:"\u5DF2\u7B7E\u7EA6",color:"rgb(103, 194, 58)"}}},T=a=>{switch(a){case 0:return"\u79DF\u8D41\u5408\u540C";case 1:return"\u81EA\u7531\u8F66\u8F86\u5408\u540C";case 2:return"\u89E3\u9664\u5408\u540C"}},M=B([]),O=a=>{M.value=a.map(({id:o})=>o)};dt("");const{pager:l,getLists:x,resetParams:R,resetPage:Q}=pt({fetchFun:mt,params:f});return x(),(a,o)=>{const C=Z,y=tt,w=et,j=ut,i=ot,J=at,c=nt,I=Ct("router-link"),K=lt,G=ct,H=st,W=rt,S=Et("perms"),X=it;return s(),D("div",null,[h((s(),d(H,{class:"!border-none",shadow:"never"},{default:u(()=>[e(J,{class:"mb-[-16px]",inline:""},{default:u(()=>[e(y,{label:"\u516C\u53F8\u540D\u79F0",prop:"company_name"},{default:u(()=>[e(C,{class:"w-[280px]",modelValue:n(f).company_name,"onUpdate:modelValue":o[0]||(o[0]=t=>n(f).company_name=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u516C\u53F8\u540D\u79F0"},null,8,["modelValue"])]),_:1}),e(y,{label:"\u5408\u540C\u7F16\u53F7",prop:"contract_no"},{default:u(()=>[e(C,{class:"w-[280px]",modelValue:n(f).contract_no,"onUpdate:modelValue":o[1]||(o[1]=t=>n(f).contract_no=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u5408\u540C\u7F16\u53F7"},null,8,["modelValue"])]),_:1}),e(y,{label:"\u5408\u540C\u72B6\u6001",prop:"status"},{default:u(()=>[e(j,{modelValue:n(f).status,"onUpdate:modelValue":o[2]||(o[2]=t=>n(f).status=t),placeholder:"\u8BF7\u9009\u62E9\u5408\u540C\u7C7B\u578B",clearable:"",class:"w-[280px]"},{default:u(()=>[e(w,{label:"\u672A\u4E0A\u4F20",value:0}),e(w,{label:"\u5DF2\u4E0A\u4F20",value:1})]),_:1},8,["modelValue"])]),_:1}),e(y,null,{default:u(()=>[e(i,{type:"primary",onClick:n(Q)},{default:u(()=>[r("\u67E5\u8BE2")]),_:1},8,["onClick"]),e(i,{onClick:n(R)},{default:u(()=>[r("\u91CD\u7F6E")]),_:1},8,["onClick"])]),_:1})]),_:1}),E("div",bt,[e(K,{data:n(l).lists,"default-sort":{prop:"create_time",order:"descending"},onSelectionChange:O},{default:u(()=>[e(c,{label:"id",prop:"id"}),e(c,{label:"\u5408\u540C\u7C7B\u578B",align:"center"},{default:u(({row:t})=>[r(b(T(t.type)),1)]),_:1}),e(c,{label:"\u5408\u540C\u7F16\u53F7",prop:"contract_no",align:"center","show-overflow-tooltip":""}),e(c,{label:"\u7532\u65B9",prop:"company_a_name",align:"center","show-overflow-tooltip":""}),e(c,{label:"\u4E59\u65B9",prop:"company_b_name",align:"center","show-overflow-tooltip":""}),e(c,{label:"\u7C7B\u578B",prop:"product_count",align:"center","show-overflow-tooltip":""},{default:u(({row:t})=>[r(" \u516C\u53F8 ")]),_:1}),e(c,{label:"\u79DF\u8F66\u6570\u91CF(\u8F86)",prop:"num",align:"center","show-overflow-tooltip":""}),e(c,{label:"\u72B6\u6001",prop:"product_count",align:"center","show-overflow-tooltip":""},{default:u(({row:t})=>[E("span",{style:vt(`color:${V(t.status).color}`)},b(V(t.status).tit),5)]),_:1}),e(c,{label:"\u64CD\u4F5C",align:"center",width:"auto",fixed:"right"},{default:u(({row:t})=>[t.status==0?h((s(),d(i,{key:0,type:"primary",link:""},{default:u(()=>[e(I,{to:{path:"vehicle_detail",query:{id:t.id}}},{default:u(()=>[r("\u5BA1\u6838")]),_:2},1032,["to"])]),_:2},1024)),[[S,["contract.contract/wind_control"]]]):v("",!0),t.status>0?h((s(),d(i,{key:1,type:"primary",link:""},{default:u(()=>[e(I,{to:{path:"vehicle_detail",query:{id:t.id}}},{default:u(()=>[r("\u8BE6\u60C5")]),_:2},1032,["to"])]),_:2},1024)),[[S,["contract.contract/wind_control"]]]):v("",!0),t.status==1&&t.contract_logistic_id!=0?(s(),d(i,{key:2,type:"primary",link:"",onClick:Y=>$(t.id)},{default:u(()=>[r("\u53D1\u9001\u5408\u540C")]),_:2},1032,["onClick"])):v("",!0),t.status==2?(s(),d(i,{key:3,disabled:t.nums>0,onClick:Y=>q(t.id),link:"",type:"primary"},{default:u(()=>[r("\u91CD\u65B0\u53D1\u9001"+b(t.nums?t.nums+"s":""),1)]),_:2},1032,["disabled","onClick"])):v("",!0),t.status==3?(s(),d(i,{key:4,type:"primary",link:""},{default:u(()=>[E("a",{href:JSON.parse(t.contract_evidence).party_a},"\u4E0B\u8F7D\u8BC1\u636E",8,kt)]),_:2},1024)):v("",!0)]),_:1})]),_:1},8,["data"])]),E("div",At,[e(G,{modelValue:n(l),"onUpdate:modelValue":o[3]||(o[3]=t=>P(l)?l.value=t:null),onChange:n(x)},null,8,["modelValue","onChange"])])]),_:1})),[[X,n(l).loading]]),e(W,{modelValue:n(_),"onUpdate:modelValue":o[4]||(o[4]=t=>P(_)?_.value=t:null),onClose:A},{default:u(()=>[Vt,n(g)?(s(),D("div",wt," \u786E\u8BA4\u7B7E\u7EA6\u77ED\u4FE1\u5C06\u572860\u79D2\u540E\u53D1\u9001,\u8BF7\u6CE8\u610F\u67E5\u6536,\u5E76\u70B9\u51FB\u77ED\u4FE1\u94FE\u63A5\u8FDB\u884C\u7EBF\u4E0A\u5408\u540C\u7B7E\u7EA6 ")):(s(),D("div",xt," \u8BF7\u786E\u8BA4\u4FE1\u606F\u662F\u5426\u6709\u8BEF,\u53D1\u9001\u5408\u540C,\u8BF7\u786E\u8BA4\u4FE1\u606F\u662F\u5426\u6709\u8BEF,\u53D1\u9001\u7535\u5B50\u5408\u540C\u540E\u77ED\u65F6\u95F4\u5185\u5C06\u4E0D\u53EF\u518D\u6B21\u53D1\u9001. ")),E("p",It,[n(g)?(s(),d(i,{key:1,type:"primary",size:"large",onClick:U},{default:u(()=>[r("\u91CD\u65B0\u53D1\u9001")]),_:1})):(s(),d(i,{key:0,type:"primary",size:"large",onClick:z},{default:u(()=>[r("\u786E\u8BA4")]),_:1})),e(i,{type:"info",size:"large",onClick:A},{default:u(()=>[r("\u8FD4\u56DE")]),_:1})])]),_:1},8,["modelValue"])])}}});const Ee=ft(Pt,[["__scopeId","data-v-57d9d6f0"]]);export{Ee as default}; diff --git a/public/admin/assets/vehicle_list.cc37228f.js b/public/admin/assets/vehicle_list.cc37228f.js new file mode 100644 index 000000000..9e2a6efcf --- /dev/null +++ b/public/admin/assets/vehicle_list.cc37228f.js @@ -0,0 +1 @@ +import{B as Z,C as tt,M as et,N as ut,w as ot,D as at,O as nt,P as lt,I as st,L as rt,Q as it}from"./element-plus.4328d892.js";import{_ as ct}from"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import{u as pt}from"./usePaging.2ad8e1e6.js";import{u as dt}from"./useDictOptions.a45fc8ac.js";import{g as mt}from"./contract.e9a9dbc8.js";import{r as L,f as _t,d as ft}from"./index.37f7aea6.js";import{d as N,r as B,$ as Ft,a4 as Ct,af as Et,o as s,c as D,M as h,u as n,K as d,L as u,U as e,R as r,a as E,S as b,_ as vt,Q as v,k as P,bf as yt,be as Bt}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";function gt(p){return L.post({url:"/contract.VehicleContract/initiatingRentCarContract",params:p})}function Dt(p){return L.post({url:"/contract.contract/sendSmsAgain",params:p})}const ht=p=>(yt("data-v-57d9d6f0"),p=p(),Bt(),p),bt={class:"mt-4"},kt=["href"],At={class:"flex mt-4 justify-end"},Vt=ht(()=>E("h1",null,"\u91CD\u8981\u63D0\u9192",-1)),xt={key:0,class:"content"},wt={key:1,class:"content"},It={class:"btn_menu"},St=N({name:"flowTypeLists"}),Pt=N({...St,setup(p){const m=B(0);var F=0;const _=B(!1),g=B(!1),U=()=>{Dt({id:F}).then(a=>{var o=l.lists.findIndex(function(C){return C.id===F});g.value=!0,m.value=o,l.lists[m.value].nums=10,k(m.value)})},k=a=>{const o=setInterval(()=>{l.lists[a].nums--,l.lists[a].nums<=0&&clearInterval(o)},1e3)},$=a=>{_.value=!0,F=a},q=a=>{_.value=!0,F=a},z=()=>{gt({id:F}).then(a=>{_t.msgSuccess("\u53D1\u9001\u6210\u529F");var o=l.lists.findIndex(function(C){return C.id===F});m.value=o,_.value=!1,l.lists[m.value].status=2,l.lists[m.value].nums=10,k(m.value)})},A=()=>{_.value=!1},f=Ft({company_name:"",contract_no:"",status:""}),V=a=>{switch(a){case 0:return{tit:"\u5F85\u4E0A\u4F20",color:"rgb(238, 190, 119)"};case 1:return{tit:"\u5DF2\u4E0A\u4F20",color:"rgb(103, 194, 58)"};case 2:return{tit:"\u7B7E\u7EA6\u4E2D",color:"red"};case 3:return{tit:"\u5DF2\u7B7E\u7EA6",color:"rgb(103, 194, 58)"}}},T=a=>{switch(a){case 0:return"\u79DF\u8D41\u5408\u540C";case 1:return"\u81EA\u7531\u8F66\u8F86\u5408\u540C";case 2:return"\u89E3\u9664\u5408\u540C"}},M=B([]),O=a=>{M.value=a.map(({id:o})=>o)};dt("");const{pager:l,getLists:x,resetParams:R,resetPage:Q}=pt({fetchFun:mt,params:f});return x(),(a,o)=>{const C=Z,y=tt,w=et,j=ut,i=ot,J=at,c=nt,I=Ct("router-link"),K=lt,G=ct,H=st,W=rt,S=Et("perms"),X=it;return s(),D("div",null,[h((s(),d(H,{class:"!border-none",shadow:"never"},{default:u(()=>[e(J,{class:"mb-[-16px]",inline:""},{default:u(()=>[e(y,{label:"\u516C\u53F8\u540D\u79F0",prop:"company_name"},{default:u(()=>[e(C,{class:"w-[280px]",modelValue:n(f).company_name,"onUpdate:modelValue":o[0]||(o[0]=t=>n(f).company_name=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u516C\u53F8\u540D\u79F0"},null,8,["modelValue"])]),_:1}),e(y,{label:"\u5408\u540C\u7F16\u53F7",prop:"contract_no"},{default:u(()=>[e(C,{class:"w-[280px]",modelValue:n(f).contract_no,"onUpdate:modelValue":o[1]||(o[1]=t=>n(f).contract_no=t),clearable:"",placeholder:"\u8BF7\u8F93\u5165\u5408\u540C\u7F16\u53F7"},null,8,["modelValue"])]),_:1}),e(y,{label:"\u5408\u540C\u72B6\u6001",prop:"status"},{default:u(()=>[e(j,{modelValue:n(f).status,"onUpdate:modelValue":o[2]||(o[2]=t=>n(f).status=t),placeholder:"\u8BF7\u9009\u62E9\u5408\u540C\u7C7B\u578B",clearable:"",class:"w-[280px]"},{default:u(()=>[e(w,{label:"\u672A\u4E0A\u4F20",value:0}),e(w,{label:"\u5DF2\u4E0A\u4F20",value:1})]),_:1},8,["modelValue"])]),_:1}),e(y,null,{default:u(()=>[e(i,{type:"primary",onClick:n(Q)},{default:u(()=>[r("\u67E5\u8BE2")]),_:1},8,["onClick"]),e(i,{onClick:n(R)},{default:u(()=>[r("\u91CD\u7F6E")]),_:1},8,["onClick"])]),_:1})]),_:1}),E("div",bt,[e(K,{data:n(l).lists,"default-sort":{prop:"create_time",order:"descending"},onSelectionChange:O},{default:u(()=>[e(c,{label:"id",prop:"id"}),e(c,{label:"\u5408\u540C\u7C7B\u578B",align:"center"},{default:u(({row:t})=>[r(b(T(t.type)),1)]),_:1}),e(c,{label:"\u5408\u540C\u7F16\u53F7",prop:"contract_no",align:"center","show-overflow-tooltip":""}),e(c,{label:"\u7532\u65B9",prop:"company_a_name",align:"center","show-overflow-tooltip":""}),e(c,{label:"\u4E59\u65B9",prop:"company_b_name",align:"center","show-overflow-tooltip":""}),e(c,{label:"\u7C7B\u578B",prop:"product_count",align:"center","show-overflow-tooltip":""},{default:u(({row:t})=>[r(" \u516C\u53F8 ")]),_:1}),e(c,{label:"\u79DF\u8F66\u6570\u91CF(\u8F86)",prop:"num",align:"center","show-overflow-tooltip":""}),e(c,{label:"\u72B6\u6001",prop:"product_count",align:"center","show-overflow-tooltip":""},{default:u(({row:t})=>[E("span",{style:vt(`color:${V(t.status).color}`)},b(V(t.status).tit),5)]),_:1}),e(c,{label:"\u64CD\u4F5C",align:"center",width:"auto",fixed:"right"},{default:u(({row:t})=>[t.status==0?h((s(),d(i,{key:0,type:"primary",link:""},{default:u(()=>[e(I,{to:{path:"vehicle_detail",query:{id:t.id}}},{default:u(()=>[r("\u5BA1\u6838")]),_:2},1032,["to"])]),_:2},1024)),[[S,["contract.contract/wind_control"]]]):v("",!0),t.status>0?h((s(),d(i,{key:1,type:"primary",link:""},{default:u(()=>[e(I,{to:{path:"vehicle_detail",query:{id:t.id}}},{default:u(()=>[r("\u8BE6\u60C5")]),_:2},1032,["to"])]),_:2},1024)),[[S,["contract.contract/wind_control"]]]):v("",!0),t.status==1&&t.contract_logistic_id!=0?(s(),d(i,{key:2,type:"primary",link:"",onClick:Y=>$(t.id)},{default:u(()=>[r("\u53D1\u9001\u5408\u540C")]),_:2},1032,["onClick"])):v("",!0),t.status==2?(s(),d(i,{key:3,disabled:t.nums>0,onClick:Y=>q(t.id),link:"",type:"primary"},{default:u(()=>[r("\u91CD\u65B0\u53D1\u9001"+b(t.nums?t.nums+"s":""),1)]),_:2},1032,["disabled","onClick"])):v("",!0),t.status==3?(s(),d(i,{key:4,type:"primary",link:""},{default:u(()=>[E("a",{href:JSON.parse(t.contract_evidence).party_a},"\u4E0B\u8F7D\u8BC1\u636E",8,kt)]),_:2},1024)):v("",!0)]),_:1})]),_:1},8,["data"])]),E("div",At,[e(G,{modelValue:n(l),"onUpdate:modelValue":o[3]||(o[3]=t=>P(l)?l.value=t:null),onChange:n(x)},null,8,["modelValue","onChange"])])]),_:1})),[[X,n(l).loading]]),e(W,{modelValue:n(_),"onUpdate:modelValue":o[4]||(o[4]=t=>P(_)?_.value=t:null),onClose:A},{default:u(()=>[Vt,n(g)?(s(),D("div",wt," \u786E\u8BA4\u7B7E\u7EA6\u77ED\u4FE1\u5C06\u572860\u79D2\u540E\u53D1\u9001,\u8BF7\u6CE8\u610F\u67E5\u6536,\u5E76\u70B9\u51FB\u77ED\u4FE1\u94FE\u63A5\u8FDB\u884C\u7EBF\u4E0A\u5408\u540C\u7B7E\u7EA6 ")):(s(),D("div",xt," \u8BF7\u786E\u8BA4\u4FE1\u606F\u662F\u5426\u6709\u8BEF,\u53D1\u9001\u5408\u540C,\u8BF7\u786E\u8BA4\u4FE1\u606F\u662F\u5426\u6709\u8BEF,\u53D1\u9001\u7535\u5B50\u5408\u540C\u540E\u77ED\u65F6\u95F4\u5185\u5C06\u4E0D\u53EF\u518D\u6B21\u53D1\u9001. ")),E("p",It,[n(g)?(s(),d(i,{key:1,type:"primary",size:"large",onClick:U},{default:u(()=>[r("\u91CD\u65B0\u53D1\u9001")]),_:1})):(s(),d(i,{key:0,type:"primary",size:"large",onClick:z},{default:u(()=>[r("\u786E\u8BA4")]),_:1})),e(i,{type:"info",size:"large",onClick:A},{default:u(()=>[r("\u8FD4\u56DE")]),_:1})])]),_:1},8,["modelValue"])])}}});const Ee=ft(Pt,[["__scopeId","data-v-57d9d6f0"]]);export{Ee as default}; diff --git a/public/admin/assets/weapp.2f60972e.js b/public/admin/assets/weapp.2f60972e.js new file mode 100644 index 000000000..959317d28 --- /dev/null +++ b/public/admin/assets/weapp.2f60972e.js @@ -0,0 +1 @@ +import{_ as I}from"./index.fd04a214.js";import{S as U,I as y,B as S,C as R,w as N,D as j}from"./element-plus.4328d892.js";import{_ as M}from"./picker.3821e495.js";import{r as C,u as W}from"./index.37f7aea6.js";import{d as v,$ as K,s as L,af as A,o as n,c as T,U as o,L as t,a as u,u as l,M as m,K as p,R as r}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.5759a1a6.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.af446662.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./index.fe1d30dd.js";import"./index.5f944d34.js";import"./index.vue_vue_type_script_setup_true_lang.dc835bba.js";import"./usePaging.2ad8e1e6.js";import"./vue3-video-play.b911321b.js";import"./vuedraggable.0cb40d3a.js";import"./vue.5de34049.js";import"./sortablejs.ef73fc5c.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";function $(f){return C.post({url:"/channel.mnp_settings/setConfig",params:f})}function z(){return C.get({url:"/channel.mnp_settings/getConfig"})}const G=u("div",{class:"font-medium mb-7"},"\u5FAE\u4FE1\u5C0F\u7A0B\u5E8F",-1),H={class:"w-80"},J={class:"w-80"},O={class:"flex-1"},P=u("div",{class:"form-tips"},"\u5EFA\u8BAE\u5C3A\u5BF8\uFF1A\u5BBD400px*\u9AD8400px\u3002jpg\uFF0Cjpeg\uFF0Cpng\u683C\u5F0F",-1),Q=u("div",{class:"font-medium mb-7"},"\u5F00\u53D1\u8005ID",-1),X={class:"w-80"},Y={class:"w-80"},Z=u("div",{class:"form-tips"}," \u5C0F\u7A0B\u5E8F\u8D26\u53F7\u767B\u5F55\u5FAE\u4FE1\u516C\u4F17\u5E73\u53F0\uFF0C\u70B9\u51FB\u5F00\u53D1>\u5F00\u53D1\u8BBE\u7F6E->\u5F00\u53D1\u8005ID\uFF0C\u8BBE\u7F6EAppID\u548CAppSecret ",-1),uu=u("div",{class:"font-medium mb-7"},"\u670D\u52A1\u5668\u57DF\u540D",-1),eu={class:"flex-1 min-w-0"},ou={class:"sm:flex"},lu={class:"mr-4 sm:w-80 flex"},tu=u("div",{class:"form-tips"}," \u5C0F\u7A0B\u5E8F\u8D26\u53F7\u767B\u5F55\u5FAE\u4FE1\u516C\u4F17\u5E73\u53F0\uFF0C\u70B9\u51FB\u5F00\u53D1>\u5F00\u53D1\u8BBE\u7F6E->\u670D\u52A1\u5668\u57DF\u540D\uFF0C\u586B\u5199https\u534F\u8BAE\u57DF\u540D ",-1),su={class:"flex-1 min-w-0"},du={class:"sm:flex"},iu={class:"mr-4 sm:w-80 flex"},au=u("div",{class:"form-tips"}," \u5C0F\u7A0B\u5E8F\u8D26\u53F7\u767B\u5F55\u5FAE\u4FE1\u516C\u4F17\u5E73\u53F0\uFF0C\u70B9\u51FB\u5F00\u53D1>\u5F00\u53D1\u8BBE\u7F6E->\u670D\u52A1\u5668\u57DF\u540D\uFF0C\u586B\u5199wss\u534F\u8BAE\u57DF\u540D ",-1),nu={class:"flex-1 min-w-0"},Fu={class:"sm:flex"},mu={class:"mr-4 sm:w-80 flex"},pu=u("div",{class:"form-tips"}," \u5C0F\u7A0B\u5E8F\u8D26\u53F7\u767B\u5F55\u5FAE\u4FE1\u516C\u4F17\u5E73\u53F0\uFF0C\u70B9\u51FB\u5F00\u53D1>\u5F00\u53D1\u8BBE\u7F6E->\u670D\u52A1\u5668\u57DF\u540D\uFF0C\u586B\u5199https\u534F\u8BAE\u57DF\u540D ",-1),ru={class:"flex-1 min-w-0"},_u={class:"sm:flex"},cu={class:"mr-4 sm:w-80 flex"},Du=u("div",{class:"form-tips"}," \u5C0F\u7A0B\u5E8F\u8D26\u53F7\u767B\u5F55\u5FAE\u4FE1\u516C\u4F17\u5E73\u53F0\uFF0C\u70B9\u51FB\u5F00\u53D1>\u5F00\u53D1\u8BBE\u7F6E->\u670D\u52A1\u5668\u57DF\u540D\uFF0C\u586B\u5199https\u534F\u8BAE\u57DF\u540D ",-1),fu={class:"flex-1 min-w-0"},Bu={class:"sm:flex"},Eu={class:"mr-4 sm:w-80 flex"},Au=u("div",{class:"form-tips"}," \u5C0F\u7A0B\u5E8F\u8D26\u53F7\u767B\u5F55\u5FAE\u4FE1\u516C\u4F17\u5E73\u53F0\uFF0C\u70B9\u51FB\u5F00\u53D1>\u5F00\u53D1\u8BBE\u7F6E->\u670D\u52A1\u5668\u57DF\u540D\uFF0C\u586B\u5199udp\u534F\u8BAE\u57DF\u540D ",-1),Cu=u("div",{class:"font-medium mb-7"},"\u4E1A\u52A1\u57DF\u540D",-1),vu={class:"flex-1 min-w-0"},wu={class:"sm:flex"},bu={class:"mr-4 sm:w-80 flex"},hu=u("div",{class:"form-tips"}," \u5C0F\u7A0B\u5E8F\u8D26\u53F7\u767B\u5F55\u5FAE\u4FE1\u516C\u4F17\u5E73\u53F0\uFF0C\u70B9\u51FB\u5F00\u53D1>\u5F00\u53D1\u8BBE\u7F6E->\u4E1A\u52A1\u57DF\u540D\uFF0C\u586B\u5199\u4E1A\u52A1\u57DF\u540D ",-1),Vu=v({name:"weappConfig"}),Ce=v({...Vu,setup(f){const w=W(),e=K({name:"",original_id:"",qr_code:"",app_id:"",app_secret:"",business_domain:"",download_file_domain:"",request_domain:"",socket_domain:"",tcpDomain:"",udp_domain:"",upload_file_domain:""}),B=L(),b={app_id:[{required:!0,message:"\u8BF7\u8F93\u5165AppID",trigger:["blur","change"]}],app_secret:[{required:!0,message:"\u8BF7\u8F93\u5165AppSecret",trigger:["blur","change"]}]},E=async()=>{const c=await z();for(const s in e)e[s]=c[s]},h=async()=>{var c;await((c=B.value)==null?void 0:c.validate()),await $(e),E()};return E(),(c,s)=>{const V=U,D=y,a=S,i=R,g=M,F=N,x=j,k=I,_=A("copy"),q=A("perms");return n(),T("div",null,[o(D,{class:"!border-none",shadow:"never"},{default:t(()=>[o(V,{type:"warning",title:"\u6E29\u99A8\u63D0\u793A\uFF1A\u586B\u5199\u5FAE\u4FE1\u5C0F\u7A0B\u5E8F\u5F00\u53D1\u914D\u7F6E\uFF0C\u8BF7\u524D\u5F80\u5FAE\u4FE1\u516C\u4F17\u5E73\u53F0\u7533\u8BF7\u5C0F\u7A0B\u5E8F\u5E76\u5B8C\u6210\u8BA4\u8BC1",closable:!1,"show-icon":""})]),_:1}),o(x,{ref_key:"formRef",ref:B,model:l(e),rules:b,"label-width":l(w).isMobile?"80px":"160px"},{default:t(()=>[o(D,{class:"!border-none mt-4",shadow:"never"},{default:t(()=>[G,o(i,{label:"\u5C0F\u7A0B\u5E8F\u540D\u79F0",prop:"name"},{default:t(()=>[u("div",H,[o(a,{modelValue:l(e).name,"onUpdate:modelValue":s[0]||(s[0]=d=>l(e).name=d),placeholder:"\u8BF7\u8F93\u5165\u5C0F\u7A0B\u5E8F\u540D\u79F0"},null,8,["modelValue"])])]),_:1}),o(i,{label:"\u539F\u59CBID",prop:"original_id"},{default:t(()=>[u("div",J,[o(a,{modelValue:l(e).original_id,"onUpdate:modelValue":s[1]||(s[1]=d=>l(e).original_id=d),placeholder:"\u8BF7\u8F93\u5165\u539F\u59CBID"},null,8,["modelValue"])])]),_:1}),o(i,{label:"\u5C0F\u7A0B\u5E8F\u7801",prop:"qr_code"},{default:t(()=>[u("div",O,[u("div",null,[o(g,{modelValue:l(e).qr_code,"onUpdate:modelValue":s[2]||(s[2]=d=>l(e).qr_code=d),limit:1},null,8,["modelValue"])]),P])]),_:1})]),_:1}),o(D,{class:"!border-none mt-4",shadow:"never"},{default:t(()=>[Q,o(i,{label:"AppID",prop:"app_id"},{default:t(()=>[u("div",X,[o(a,{modelValue:l(e).app_id,"onUpdate:modelValue":s[3]||(s[3]=d=>l(e).app_id=d),placeholder:"\u8BF7\u8F93\u5165AppID"},null,8,["modelValue"])])]),_:1}),o(i,{label:"AppSecret",prop:"app_secret"},{default:t(()=>[u("div",Y,[o(a,{modelValue:l(e).app_secret,"onUpdate:modelValue":s[4]||(s[4]=d=>l(e).app_secret=d),placeholder:"\u8BF7\u8F93\u5165AppSecret"},null,8,["modelValue"])])]),_:1}),o(i,null,{default:t(()=>[Z]),_:1})]),_:1}),o(D,{class:"!border-none mt-4",shadow:"never"},{default:t(()=>[uu,o(i,{label:"request\u5408\u6CD5\u57DF\u540D",prop:"appId"},{default:t(()=>[u("div",eu,[u("div",ou,[u("div",lu,[o(a,{modelValue:l(e).request_domain,"onUpdate:modelValue":s[5]||(s[5]=d=>l(e).request_domain=d),disabled:""},null,8,["modelValue"])]),m((n(),p(F,null,{default:t(()=>[r("\u590D\u5236")]),_:1})),[[_,l(e).request_domain]])]),tu])]),_:1}),o(i,{label:"socket\u5408\u6CD5\u57DF\u540D"},{default:t(()=>[u("div",su,[u("div",du,[u("div",iu,[o(a,{modelValue:l(e).socket_domain,"onUpdate:modelValue":s[6]||(s[6]=d=>l(e).socket_domain=d),disabled:""},null,8,["modelValue"])]),m((n(),p(F,null,{default:t(()=>[r("\u590D\u5236")]),_:1})),[[_,l(e).socket_domain]])]),au])]),_:1}),o(i,{label:"uploadFile\u5408\u6CD5\u57DF\u540D"},{default:t(()=>[u("div",nu,[u("div",Fu,[u("div",mu,[o(a,{modelValue:l(e).upload_file_domain,"onUpdate:modelValue":s[7]||(s[7]=d=>l(e).upload_file_domain=d),disabled:""},null,8,["modelValue"])]),m((n(),p(F,null,{default:t(()=>[r("\u590D\u5236")]),_:1})),[[_,l(e).upload_file_domain]])]),pu])]),_:1}),o(i,{label:"downloadFile\u5408\u6CD5\u57DF\u540D"},{default:t(()=>[u("div",ru,[u("div",_u,[u("div",cu,[o(a,{modelValue:l(e).download_file_domain,"onUpdate:modelValue":s[8]||(s[8]=d=>l(e).download_file_domain=d),disabled:""},null,8,["modelValue"])]),m((n(),p(F,null,{default:t(()=>[r("\u590D\u5236")]),_:1})),[[_,l(e).download_file_domain]])]),Du])]),_:1}),o(i,{label:"udp\u5408\u6CD5\u57DF\u540D"},{default:t(()=>[u("div",fu,[u("div",Bu,[u("div",Eu,[o(a,{modelValue:l(e).udp_domain,"onUpdate:modelValue":s[9]||(s[9]=d=>l(e).udp_domain=d),disabled:""},null,8,["modelValue"])]),m((n(),p(F,null,{default:t(()=>[r("\u590D\u5236")]),_:1})),[[_,l(e).udp_domain]])]),Au])]),_:1})]),_:1}),o(D,{class:"!border-none mt-4",shadow:"never"},{default:t(()=>[Cu,o(i,{label:"\u4E1A\u52A1\u57DF\u540D"},{default:t(()=>[u("div",vu,[u("div",wu,[u("div",bu,[o(a,{modelValue:l(e).business_domain,"onUpdate:modelValue":s[10]||(s[10]=d=>l(e).business_domain=d),disabled:""},null,8,["modelValue"])]),m((n(),p(F,null,{default:t(()=>[r("\u590D\u5236")]),_:1})),[[_,l(e).business_domain]])]),hu])]),_:1})]),_:1})]),_:1},8,["model","label-width"]),m((n(),p(k,null,{default:t(()=>[o(F,{type:"primary",onClick:h},{default:t(()=>[r("\u4FDD\u5B58")]),_:1})]),_:1})),[[q,["channel.mnp_settings/setConfig"]]])])}}});export{Ce as default}; diff --git a/public/admin/assets/weapp.9dc486dc.js b/public/admin/assets/weapp.9dc486dc.js new file mode 100644 index 000000000..c241d4600 --- /dev/null +++ b/public/admin/assets/weapp.9dc486dc.js @@ -0,0 +1 @@ +import{_ as I}from"./index.13ef78d6.js";import{S as U,I as y,B as S,C as R,w as N,D as j}from"./element-plus.4328d892.js";import{_ as M}from"./picker.45aea54f.js";import{r as C,u as W}from"./index.aa9bb752.js";import{d as v,$ as K,s as L,af as A,o as n,c as T,U as o,L as t,a as u,u as l,M as m,K as p,R as r}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.fa872673.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.c47e74f8.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./index.a9a11abe.js";import"./index.a450f1bb.js";import"./index.vue_vue_type_script_setup_true_lang.dc835bba.js";import"./usePaging.2ad8e1e6.js";import"./vue3-video-play.b911321b.js";import"./vuedraggable.0cb40d3a.js";import"./vue.5de34049.js";import"./sortablejs.ef73fc5c.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";function $(f){return C.post({url:"/channel.mnp_settings/setConfig",params:f})}function z(){return C.get({url:"/channel.mnp_settings/getConfig"})}const G=u("div",{class:"font-medium mb-7"},"\u5FAE\u4FE1\u5C0F\u7A0B\u5E8F",-1),H={class:"w-80"},J={class:"w-80"},O={class:"flex-1"},P=u("div",{class:"form-tips"},"\u5EFA\u8BAE\u5C3A\u5BF8\uFF1A\u5BBD400px*\u9AD8400px\u3002jpg\uFF0Cjpeg\uFF0Cpng\u683C\u5F0F",-1),Q=u("div",{class:"font-medium mb-7"},"\u5F00\u53D1\u8005ID",-1),X={class:"w-80"},Y={class:"w-80"},Z=u("div",{class:"form-tips"}," \u5C0F\u7A0B\u5E8F\u8D26\u53F7\u767B\u5F55\u5FAE\u4FE1\u516C\u4F17\u5E73\u53F0\uFF0C\u70B9\u51FB\u5F00\u53D1>\u5F00\u53D1\u8BBE\u7F6E->\u5F00\u53D1\u8005ID\uFF0C\u8BBE\u7F6EAppID\u548CAppSecret ",-1),uu=u("div",{class:"font-medium mb-7"},"\u670D\u52A1\u5668\u57DF\u540D",-1),eu={class:"flex-1 min-w-0"},ou={class:"sm:flex"},lu={class:"mr-4 sm:w-80 flex"},tu=u("div",{class:"form-tips"}," \u5C0F\u7A0B\u5E8F\u8D26\u53F7\u767B\u5F55\u5FAE\u4FE1\u516C\u4F17\u5E73\u53F0\uFF0C\u70B9\u51FB\u5F00\u53D1>\u5F00\u53D1\u8BBE\u7F6E->\u670D\u52A1\u5668\u57DF\u540D\uFF0C\u586B\u5199https\u534F\u8BAE\u57DF\u540D ",-1),su={class:"flex-1 min-w-0"},du={class:"sm:flex"},iu={class:"mr-4 sm:w-80 flex"},au=u("div",{class:"form-tips"}," \u5C0F\u7A0B\u5E8F\u8D26\u53F7\u767B\u5F55\u5FAE\u4FE1\u516C\u4F17\u5E73\u53F0\uFF0C\u70B9\u51FB\u5F00\u53D1>\u5F00\u53D1\u8BBE\u7F6E->\u670D\u52A1\u5668\u57DF\u540D\uFF0C\u586B\u5199wss\u534F\u8BAE\u57DF\u540D ",-1),nu={class:"flex-1 min-w-0"},Fu={class:"sm:flex"},mu={class:"mr-4 sm:w-80 flex"},pu=u("div",{class:"form-tips"}," \u5C0F\u7A0B\u5E8F\u8D26\u53F7\u767B\u5F55\u5FAE\u4FE1\u516C\u4F17\u5E73\u53F0\uFF0C\u70B9\u51FB\u5F00\u53D1>\u5F00\u53D1\u8BBE\u7F6E->\u670D\u52A1\u5668\u57DF\u540D\uFF0C\u586B\u5199https\u534F\u8BAE\u57DF\u540D ",-1),ru={class:"flex-1 min-w-0"},_u={class:"sm:flex"},cu={class:"mr-4 sm:w-80 flex"},Du=u("div",{class:"form-tips"}," \u5C0F\u7A0B\u5E8F\u8D26\u53F7\u767B\u5F55\u5FAE\u4FE1\u516C\u4F17\u5E73\u53F0\uFF0C\u70B9\u51FB\u5F00\u53D1>\u5F00\u53D1\u8BBE\u7F6E->\u670D\u52A1\u5668\u57DF\u540D\uFF0C\u586B\u5199https\u534F\u8BAE\u57DF\u540D ",-1),fu={class:"flex-1 min-w-0"},Bu={class:"sm:flex"},Eu={class:"mr-4 sm:w-80 flex"},Au=u("div",{class:"form-tips"}," \u5C0F\u7A0B\u5E8F\u8D26\u53F7\u767B\u5F55\u5FAE\u4FE1\u516C\u4F17\u5E73\u53F0\uFF0C\u70B9\u51FB\u5F00\u53D1>\u5F00\u53D1\u8BBE\u7F6E->\u670D\u52A1\u5668\u57DF\u540D\uFF0C\u586B\u5199udp\u534F\u8BAE\u57DF\u540D ",-1),Cu=u("div",{class:"font-medium mb-7"},"\u4E1A\u52A1\u57DF\u540D",-1),vu={class:"flex-1 min-w-0"},wu={class:"sm:flex"},bu={class:"mr-4 sm:w-80 flex"},hu=u("div",{class:"form-tips"}," \u5C0F\u7A0B\u5E8F\u8D26\u53F7\u767B\u5F55\u5FAE\u4FE1\u516C\u4F17\u5E73\u53F0\uFF0C\u70B9\u51FB\u5F00\u53D1>\u5F00\u53D1\u8BBE\u7F6E->\u4E1A\u52A1\u57DF\u540D\uFF0C\u586B\u5199\u4E1A\u52A1\u57DF\u540D ",-1),Vu=v({name:"weappConfig"}),Ce=v({...Vu,setup(f){const w=W(),e=K({name:"",original_id:"",qr_code:"",app_id:"",app_secret:"",business_domain:"",download_file_domain:"",request_domain:"",socket_domain:"",tcpDomain:"",udp_domain:"",upload_file_domain:""}),B=L(),b={app_id:[{required:!0,message:"\u8BF7\u8F93\u5165AppID",trigger:["blur","change"]}],app_secret:[{required:!0,message:"\u8BF7\u8F93\u5165AppSecret",trigger:["blur","change"]}]},E=async()=>{const c=await z();for(const s in e)e[s]=c[s]},h=async()=>{var c;await((c=B.value)==null?void 0:c.validate()),await $(e),E()};return E(),(c,s)=>{const V=U,D=y,a=S,i=R,g=M,F=N,x=j,k=I,_=A("copy"),q=A("perms");return n(),T("div",null,[o(D,{class:"!border-none",shadow:"never"},{default:t(()=>[o(V,{type:"warning",title:"\u6E29\u99A8\u63D0\u793A\uFF1A\u586B\u5199\u5FAE\u4FE1\u5C0F\u7A0B\u5E8F\u5F00\u53D1\u914D\u7F6E\uFF0C\u8BF7\u524D\u5F80\u5FAE\u4FE1\u516C\u4F17\u5E73\u53F0\u7533\u8BF7\u5C0F\u7A0B\u5E8F\u5E76\u5B8C\u6210\u8BA4\u8BC1",closable:!1,"show-icon":""})]),_:1}),o(x,{ref_key:"formRef",ref:B,model:l(e),rules:b,"label-width":l(w).isMobile?"80px":"160px"},{default:t(()=>[o(D,{class:"!border-none mt-4",shadow:"never"},{default:t(()=>[G,o(i,{label:"\u5C0F\u7A0B\u5E8F\u540D\u79F0",prop:"name"},{default:t(()=>[u("div",H,[o(a,{modelValue:l(e).name,"onUpdate:modelValue":s[0]||(s[0]=d=>l(e).name=d),placeholder:"\u8BF7\u8F93\u5165\u5C0F\u7A0B\u5E8F\u540D\u79F0"},null,8,["modelValue"])])]),_:1}),o(i,{label:"\u539F\u59CBID",prop:"original_id"},{default:t(()=>[u("div",J,[o(a,{modelValue:l(e).original_id,"onUpdate:modelValue":s[1]||(s[1]=d=>l(e).original_id=d),placeholder:"\u8BF7\u8F93\u5165\u539F\u59CBID"},null,8,["modelValue"])])]),_:1}),o(i,{label:"\u5C0F\u7A0B\u5E8F\u7801",prop:"qr_code"},{default:t(()=>[u("div",O,[u("div",null,[o(g,{modelValue:l(e).qr_code,"onUpdate:modelValue":s[2]||(s[2]=d=>l(e).qr_code=d),limit:1},null,8,["modelValue"])]),P])]),_:1})]),_:1}),o(D,{class:"!border-none mt-4",shadow:"never"},{default:t(()=>[Q,o(i,{label:"AppID",prop:"app_id"},{default:t(()=>[u("div",X,[o(a,{modelValue:l(e).app_id,"onUpdate:modelValue":s[3]||(s[3]=d=>l(e).app_id=d),placeholder:"\u8BF7\u8F93\u5165AppID"},null,8,["modelValue"])])]),_:1}),o(i,{label:"AppSecret",prop:"app_secret"},{default:t(()=>[u("div",Y,[o(a,{modelValue:l(e).app_secret,"onUpdate:modelValue":s[4]||(s[4]=d=>l(e).app_secret=d),placeholder:"\u8BF7\u8F93\u5165AppSecret"},null,8,["modelValue"])])]),_:1}),o(i,null,{default:t(()=>[Z]),_:1})]),_:1}),o(D,{class:"!border-none mt-4",shadow:"never"},{default:t(()=>[uu,o(i,{label:"request\u5408\u6CD5\u57DF\u540D",prop:"appId"},{default:t(()=>[u("div",eu,[u("div",ou,[u("div",lu,[o(a,{modelValue:l(e).request_domain,"onUpdate:modelValue":s[5]||(s[5]=d=>l(e).request_domain=d),disabled:""},null,8,["modelValue"])]),m((n(),p(F,null,{default:t(()=>[r("\u590D\u5236")]),_:1})),[[_,l(e).request_domain]])]),tu])]),_:1}),o(i,{label:"socket\u5408\u6CD5\u57DF\u540D"},{default:t(()=>[u("div",su,[u("div",du,[u("div",iu,[o(a,{modelValue:l(e).socket_domain,"onUpdate:modelValue":s[6]||(s[6]=d=>l(e).socket_domain=d),disabled:""},null,8,["modelValue"])]),m((n(),p(F,null,{default:t(()=>[r("\u590D\u5236")]),_:1})),[[_,l(e).socket_domain]])]),au])]),_:1}),o(i,{label:"uploadFile\u5408\u6CD5\u57DF\u540D"},{default:t(()=>[u("div",nu,[u("div",Fu,[u("div",mu,[o(a,{modelValue:l(e).upload_file_domain,"onUpdate:modelValue":s[7]||(s[7]=d=>l(e).upload_file_domain=d),disabled:""},null,8,["modelValue"])]),m((n(),p(F,null,{default:t(()=>[r("\u590D\u5236")]),_:1})),[[_,l(e).upload_file_domain]])]),pu])]),_:1}),o(i,{label:"downloadFile\u5408\u6CD5\u57DF\u540D"},{default:t(()=>[u("div",ru,[u("div",_u,[u("div",cu,[o(a,{modelValue:l(e).download_file_domain,"onUpdate:modelValue":s[8]||(s[8]=d=>l(e).download_file_domain=d),disabled:""},null,8,["modelValue"])]),m((n(),p(F,null,{default:t(()=>[r("\u590D\u5236")]),_:1})),[[_,l(e).download_file_domain]])]),Du])]),_:1}),o(i,{label:"udp\u5408\u6CD5\u57DF\u540D"},{default:t(()=>[u("div",fu,[u("div",Bu,[u("div",Eu,[o(a,{modelValue:l(e).udp_domain,"onUpdate:modelValue":s[9]||(s[9]=d=>l(e).udp_domain=d),disabled:""},null,8,["modelValue"])]),m((n(),p(F,null,{default:t(()=>[r("\u590D\u5236")]),_:1})),[[_,l(e).udp_domain]])]),Au])]),_:1})]),_:1}),o(D,{class:"!border-none mt-4",shadow:"never"},{default:t(()=>[Cu,o(i,{label:"\u4E1A\u52A1\u57DF\u540D"},{default:t(()=>[u("div",vu,[u("div",wu,[u("div",bu,[o(a,{modelValue:l(e).business_domain,"onUpdate:modelValue":s[10]||(s[10]=d=>l(e).business_domain=d),disabled:""},null,8,["modelValue"])]),m((n(),p(F,null,{default:t(()=>[r("\u590D\u5236")]),_:1})),[[_,l(e).business_domain]])]),hu])]),_:1})]),_:1})]),_:1},8,["model","label-width"]),m((n(),p(k,null,{default:t(()=>[o(F,{type:"primary",onClick:h},{default:t(()=>[r("\u4FDD\u5B58")]),_:1})]),_:1})),[[q,["channel.mnp_settings/setConfig"]]])])}}});export{Ce as default}; diff --git a/public/admin/assets/weapp.de9432eb.js b/public/admin/assets/weapp.de9432eb.js new file mode 100644 index 000000000..eaa269116 --- /dev/null +++ b/public/admin/assets/weapp.de9432eb.js @@ -0,0 +1 @@ +import{_ as I}from"./index.be5645df.js";import{S as U,I as y,B as S,C as R,w as N,D as j}from"./element-plus.4328d892.js";import{_ as M}from"./picker.597494a6.js";import{r as C,u as W}from"./index.ed71ac09.js";import{d as v,$ as K,s as L,af as A,o as n,c as T,U as o,L as t,a as u,u as l,M as m,K as p,R as r}from"./@vue.51d7f2d8.js";import"./@vueuse.ec90c285.js";import"./@element-plus.a074d1f6.js";import"./lodash-es.29c53eac.js";import"./dayjs.e873ead7.js";import"./@amap.8a62addd.js";import"./async-validator.fb49d0f5.js";import"./@ctrl.82a509e0.js";import"./escape-html.e5dfadb9.js";import"./normalize-wheel-es.8aeb3683.js";import"./index.b940d6e3.js";import"./index.vue_vue_type_style_index_0_scoped_95d1884e_lang.0fc4c9f8.js";import"./index.c38e1dd6.js";import"./index.vue_vue_type_script_setup_true_lang.f93228b5.js";import"./index.f2c7f81b.js";import"./index.9c616a0c.js";import"./index.vue_vue_type_script_setup_true_lang.dc835bba.js";import"./usePaging.2ad8e1e6.js";import"./vue3-video-play.b911321b.js";import"./vuedraggable.0cb40d3a.js";import"./vue.5de34049.js";import"./sortablejs.ef73fc5c.js";import"./lodash.08438971.js";import"./axios.105476b3.js";import"./vue-router.9f65afb1.js";import"./pinia.56356cb7.js";import"./vue-demi.b3a9cad9.js";import"./css-color-function.7ac6f233.js";import"./color.44a05936.js";import"./clone.0afcbf90.js";import"./color-convert.755d189f.js";import"./color-name.e7a4e1d3.js";import"./color-string.e356f5de.js";import"./balanced-match.d2a36341.js";import"./debug.86067895.js";import"./ms.a9ae1d6d.js";import"./nprogress.f73355d0.js";import"./vue-clipboard3.dca5bca3.js";import"./clipboard.16e4491b.js";import"./echarts.ac57a99a.js";import"./zrender.d54ce080.js";import"./tslib.60310f1a.js";import"./highlight.js.dba6fa1b.js";import"./@highlightjs.40d5feba.js";function $(f){return C.post({url:"/channel.mnp_settings/setConfig",params:f})}function z(){return C.get({url:"/channel.mnp_settings/getConfig"})}const G=u("div",{class:"font-medium mb-7"},"\u5FAE\u4FE1\u5C0F\u7A0B\u5E8F",-1),H={class:"w-80"},J={class:"w-80"},O={class:"flex-1"},P=u("div",{class:"form-tips"},"\u5EFA\u8BAE\u5C3A\u5BF8\uFF1A\u5BBD400px*\u9AD8400px\u3002jpg\uFF0Cjpeg\uFF0Cpng\u683C\u5F0F",-1),Q=u("div",{class:"font-medium mb-7"},"\u5F00\u53D1\u8005ID",-1),X={class:"w-80"},Y={class:"w-80"},Z=u("div",{class:"form-tips"}," \u5C0F\u7A0B\u5E8F\u8D26\u53F7\u767B\u5F55\u5FAE\u4FE1\u516C\u4F17\u5E73\u53F0\uFF0C\u70B9\u51FB\u5F00\u53D1>\u5F00\u53D1\u8BBE\u7F6E->\u5F00\u53D1\u8005ID\uFF0C\u8BBE\u7F6EAppID\u548CAppSecret ",-1),uu=u("div",{class:"font-medium mb-7"},"\u670D\u52A1\u5668\u57DF\u540D",-1),eu={class:"flex-1 min-w-0"},ou={class:"sm:flex"},lu={class:"mr-4 sm:w-80 flex"},tu=u("div",{class:"form-tips"}," \u5C0F\u7A0B\u5E8F\u8D26\u53F7\u767B\u5F55\u5FAE\u4FE1\u516C\u4F17\u5E73\u53F0\uFF0C\u70B9\u51FB\u5F00\u53D1>\u5F00\u53D1\u8BBE\u7F6E->\u670D\u52A1\u5668\u57DF\u540D\uFF0C\u586B\u5199https\u534F\u8BAE\u57DF\u540D ",-1),su={class:"flex-1 min-w-0"},du={class:"sm:flex"},iu={class:"mr-4 sm:w-80 flex"},au=u("div",{class:"form-tips"}," \u5C0F\u7A0B\u5E8F\u8D26\u53F7\u767B\u5F55\u5FAE\u4FE1\u516C\u4F17\u5E73\u53F0\uFF0C\u70B9\u51FB\u5F00\u53D1>\u5F00\u53D1\u8BBE\u7F6E->\u670D\u52A1\u5668\u57DF\u540D\uFF0C\u586B\u5199wss\u534F\u8BAE\u57DF\u540D ",-1),nu={class:"flex-1 min-w-0"},Fu={class:"sm:flex"},mu={class:"mr-4 sm:w-80 flex"},pu=u("div",{class:"form-tips"}," \u5C0F\u7A0B\u5E8F\u8D26\u53F7\u767B\u5F55\u5FAE\u4FE1\u516C\u4F17\u5E73\u53F0\uFF0C\u70B9\u51FB\u5F00\u53D1>\u5F00\u53D1\u8BBE\u7F6E->\u670D\u52A1\u5668\u57DF\u540D\uFF0C\u586B\u5199https\u534F\u8BAE\u57DF\u540D ",-1),ru={class:"flex-1 min-w-0"},_u={class:"sm:flex"},cu={class:"mr-4 sm:w-80 flex"},Du=u("div",{class:"form-tips"}," \u5C0F\u7A0B\u5E8F\u8D26\u53F7\u767B\u5F55\u5FAE\u4FE1\u516C\u4F17\u5E73\u53F0\uFF0C\u70B9\u51FB\u5F00\u53D1>\u5F00\u53D1\u8BBE\u7F6E->\u670D\u52A1\u5668\u57DF\u540D\uFF0C\u586B\u5199https\u534F\u8BAE\u57DF\u540D ",-1),fu={class:"flex-1 min-w-0"},Bu={class:"sm:flex"},Eu={class:"mr-4 sm:w-80 flex"},Au=u("div",{class:"form-tips"}," \u5C0F\u7A0B\u5E8F\u8D26\u53F7\u767B\u5F55\u5FAE\u4FE1\u516C\u4F17\u5E73\u53F0\uFF0C\u70B9\u51FB\u5F00\u53D1>\u5F00\u53D1\u8BBE\u7F6E->\u670D\u52A1\u5668\u57DF\u540D\uFF0C\u586B\u5199udp\u534F\u8BAE\u57DF\u540D ",-1),Cu=u("div",{class:"font-medium mb-7"},"\u4E1A\u52A1\u57DF\u540D",-1),vu={class:"flex-1 min-w-0"},wu={class:"sm:flex"},bu={class:"mr-4 sm:w-80 flex"},hu=u("div",{class:"form-tips"}," \u5C0F\u7A0B\u5E8F\u8D26\u53F7\u767B\u5F55\u5FAE\u4FE1\u516C\u4F17\u5E73\u53F0\uFF0C\u70B9\u51FB\u5F00\u53D1>\u5F00\u53D1\u8BBE\u7F6E->\u4E1A\u52A1\u57DF\u540D\uFF0C\u586B\u5199\u4E1A\u52A1\u57DF\u540D ",-1),Vu=v({name:"weappConfig"}),Ce=v({...Vu,setup(f){const w=W(),e=K({name:"",original_id:"",qr_code:"",app_id:"",app_secret:"",business_domain:"",download_file_domain:"",request_domain:"",socket_domain:"",tcpDomain:"",udp_domain:"",upload_file_domain:""}),B=L(),b={app_id:[{required:!0,message:"\u8BF7\u8F93\u5165AppID",trigger:["blur","change"]}],app_secret:[{required:!0,message:"\u8BF7\u8F93\u5165AppSecret",trigger:["blur","change"]}]},E=async()=>{const c=await z();for(const s in e)e[s]=c[s]},h=async()=>{var c;await((c=B.value)==null?void 0:c.validate()),await $(e),E()};return E(),(c,s)=>{const V=U,D=y,a=S,i=R,g=M,F=N,x=j,k=I,_=A("copy"),q=A("perms");return n(),T("div",null,[o(D,{class:"!border-none",shadow:"never"},{default:t(()=>[o(V,{type:"warning",title:"\u6E29\u99A8\u63D0\u793A\uFF1A\u586B\u5199\u5FAE\u4FE1\u5C0F\u7A0B\u5E8F\u5F00\u53D1\u914D\u7F6E\uFF0C\u8BF7\u524D\u5F80\u5FAE\u4FE1\u516C\u4F17\u5E73\u53F0\u7533\u8BF7\u5C0F\u7A0B\u5E8F\u5E76\u5B8C\u6210\u8BA4\u8BC1",closable:!1,"show-icon":""})]),_:1}),o(x,{ref_key:"formRef",ref:B,model:l(e),rules:b,"label-width":l(w).isMobile?"80px":"160px"},{default:t(()=>[o(D,{class:"!border-none mt-4",shadow:"never"},{default:t(()=>[G,o(i,{label:"\u5C0F\u7A0B\u5E8F\u540D\u79F0",prop:"name"},{default:t(()=>[u("div",H,[o(a,{modelValue:l(e).name,"onUpdate:modelValue":s[0]||(s[0]=d=>l(e).name=d),placeholder:"\u8BF7\u8F93\u5165\u5C0F\u7A0B\u5E8F\u540D\u79F0"},null,8,["modelValue"])])]),_:1}),o(i,{label:"\u539F\u59CBID",prop:"original_id"},{default:t(()=>[u("div",J,[o(a,{modelValue:l(e).original_id,"onUpdate:modelValue":s[1]||(s[1]=d=>l(e).original_id=d),placeholder:"\u8BF7\u8F93\u5165\u539F\u59CBID"},null,8,["modelValue"])])]),_:1}),o(i,{label:"\u5C0F\u7A0B\u5E8F\u7801",prop:"qr_code"},{default:t(()=>[u("div",O,[u("div",null,[o(g,{modelValue:l(e).qr_code,"onUpdate:modelValue":s[2]||(s[2]=d=>l(e).qr_code=d),limit:1},null,8,["modelValue"])]),P])]),_:1})]),_:1}),o(D,{class:"!border-none mt-4",shadow:"never"},{default:t(()=>[Q,o(i,{label:"AppID",prop:"app_id"},{default:t(()=>[u("div",X,[o(a,{modelValue:l(e).app_id,"onUpdate:modelValue":s[3]||(s[3]=d=>l(e).app_id=d),placeholder:"\u8BF7\u8F93\u5165AppID"},null,8,["modelValue"])])]),_:1}),o(i,{label:"AppSecret",prop:"app_secret"},{default:t(()=>[u("div",Y,[o(a,{modelValue:l(e).app_secret,"onUpdate:modelValue":s[4]||(s[4]=d=>l(e).app_secret=d),placeholder:"\u8BF7\u8F93\u5165AppSecret"},null,8,["modelValue"])])]),_:1}),o(i,null,{default:t(()=>[Z]),_:1})]),_:1}),o(D,{class:"!border-none mt-4",shadow:"never"},{default:t(()=>[uu,o(i,{label:"request\u5408\u6CD5\u57DF\u540D",prop:"appId"},{default:t(()=>[u("div",eu,[u("div",ou,[u("div",lu,[o(a,{modelValue:l(e).request_domain,"onUpdate:modelValue":s[5]||(s[5]=d=>l(e).request_domain=d),disabled:""},null,8,["modelValue"])]),m((n(),p(F,null,{default:t(()=>[r("\u590D\u5236")]),_:1})),[[_,l(e).request_domain]])]),tu])]),_:1}),o(i,{label:"socket\u5408\u6CD5\u57DF\u540D"},{default:t(()=>[u("div",su,[u("div",du,[u("div",iu,[o(a,{modelValue:l(e).socket_domain,"onUpdate:modelValue":s[6]||(s[6]=d=>l(e).socket_domain=d),disabled:""},null,8,["modelValue"])]),m((n(),p(F,null,{default:t(()=>[r("\u590D\u5236")]),_:1})),[[_,l(e).socket_domain]])]),au])]),_:1}),o(i,{label:"uploadFile\u5408\u6CD5\u57DF\u540D"},{default:t(()=>[u("div",nu,[u("div",Fu,[u("div",mu,[o(a,{modelValue:l(e).upload_file_domain,"onUpdate:modelValue":s[7]||(s[7]=d=>l(e).upload_file_domain=d),disabled:""},null,8,["modelValue"])]),m((n(),p(F,null,{default:t(()=>[r("\u590D\u5236")]),_:1})),[[_,l(e).upload_file_domain]])]),pu])]),_:1}),o(i,{label:"downloadFile\u5408\u6CD5\u57DF\u540D"},{default:t(()=>[u("div",ru,[u("div",_u,[u("div",cu,[o(a,{modelValue:l(e).download_file_domain,"onUpdate:modelValue":s[8]||(s[8]=d=>l(e).download_file_domain=d),disabled:""},null,8,["modelValue"])]),m((n(),p(F,null,{default:t(()=>[r("\u590D\u5236")]),_:1})),[[_,l(e).download_file_domain]])]),Du])]),_:1}),o(i,{label:"udp\u5408\u6CD5\u57DF\u540D"},{default:t(()=>[u("div",fu,[u("div",Bu,[u("div",Eu,[o(a,{modelValue:l(e).udp_domain,"onUpdate:modelValue":s[9]||(s[9]=d=>l(e).udp_domain=d),disabled:""},null,8,["modelValue"])]),m((n(),p(F,null,{default:t(()=>[r("\u590D\u5236")]),_:1})),[[_,l(e).udp_domain]])]),Au])]),_:1})]),_:1}),o(D,{class:"!border-none mt-4",shadow:"never"},{default:t(()=>[Cu,o(i,{label:"\u4E1A\u52A1\u57DF\u540D"},{default:t(()=>[u("div",vu,[u("div",wu,[u("div",bu,[o(a,{modelValue:l(e).business_domain,"onUpdate:modelValue":s[10]||(s[10]=d=>l(e).business_domain=d),disabled:""},null,8,["modelValue"])]),m((n(),p(F,null,{default:t(()=>[r("\u590D\u5236")]),_:1})),[[_,l(e).business_domain]])]),hu])]),_:1})]),_:1})]),_:1},8,["model","label-width"]),m((n(),p(k,null,{default:t(()=>[o(F,{type:"primary",onClick:h},{default:t(()=>[r("\u4FDD\u5B58")]),_:1})]),_:1})),[[q,["channel.mnp_settings/setConfig"]]])])}}});export{Ce as default}; diff --git a/public/admin/assets/website.3e3234e6.js b/public/admin/assets/website.3e3234e6.js new file mode 100644 index 000000000..55429b9f1 --- /dev/null +++ b/public/admin/assets/website.3e3234e6.js @@ -0,0 +1 @@ +import{r as t}from"./index.ed71ac09.js";function n(){return t.get({url:"/setting.web.web_setting/getCopyright"})}function r(e){return t.post({url:"/setting.web.web_setting/setCopyright",params:e})}function g(){return t.get({url:"/setting.web.web_setting/getWebsite"})}function i(e){return t.post({url:"/setting.web.web_setting/setWebsite",params:e})}function o(){return t.get({url:"/setting.web.web_setting/getAgreement"})}function u(e){return t.post({url:"/setting.web.web_setting/setAgreement",params:e})}export{g as a,i as b,o as c,u as d,n as g,r as s}; diff --git a/public/admin/assets/website.7956cd42.js b/public/admin/assets/website.7956cd42.js new file mode 100644 index 000000000..42cc9d8d8 --- /dev/null +++ b/public/admin/assets/website.7956cd42.js @@ -0,0 +1 @@ +import{r as t}from"./index.37f7aea6.js";function n(){return t.get({url:"/setting.web.web_setting/getCopyright"})}function r(e){return t.post({url:"/setting.web.web_setting/setCopyright",params:e})}function g(){return t.get({url:"/setting.web.web_setting/getWebsite"})}function i(e){return t.post({url:"/setting.web.web_setting/setWebsite",params:e})}function o(){return t.get({url:"/setting.web.web_setting/getAgreement"})}function u(e){return t.post({url:"/setting.web.web_setting/setAgreement",params:e})}export{g as a,i as b,o as c,u as d,n as g,r as s}; diff --git a/public/admin/assets/website.dab3e7a6.js b/public/admin/assets/website.dab3e7a6.js new file mode 100644 index 000000000..e9bf1f583 --- /dev/null +++ b/public/admin/assets/website.dab3e7a6.js @@ -0,0 +1 @@ +import{r as t}from"./index.aa9bb752.js";function n(){return t.get({url:"/setting.web.web_setting/getCopyright"})}function r(e){return t.post({url:"/setting.web.web_setting/setCopyright",params:e})}function g(){return t.get({url:"/setting.web.web_setting/getWebsite"})}function i(e){return t.post({url:"/setting.web.web_setting/setWebsite",params:e})}function o(){return t.get({url:"/setting.web.web_setting/getAgreement"})}function u(e){return t.post({url:"/setting.web.web_setting/setAgreement",params:e})}export{g as a,i as b,o as c,u as d,n as g,r as s}; diff --git a/public/admin/assets/withdraw.046913b9.js b/public/admin/assets/withdraw.046913b9.js new file mode 100644 index 000000000..da2189300 --- /dev/null +++ b/public/admin/assets/withdraw.046913b9.js @@ -0,0 +1 @@ +import{r as i}from"./index.ed71ac09.js";function r(t){return i.get({url:"/finance.withdraw/index",params:t})}function n(t){return i.post({url:"/finance.withdraw/add",params:t})}function d(t){return i.post({url:"/finance.withdraw/edit",params:t})}function e(t){return i.get({url:"/finance.withdraw/detail",params:t})}function u(t){return i.post({url:"/finance.withdraw/audit",params:t})}export{r as a,e as b,d as c,n as d,u as w}; diff --git a/public/admin/assets/withdraw.32706b7e.js b/public/admin/assets/withdraw.32706b7e.js new file mode 100644 index 000000000..bab716d42 --- /dev/null +++ b/public/admin/assets/withdraw.32706b7e.js @@ -0,0 +1 @@ +import{r as i}from"./index.aa9bb752.js";function r(t){return i.get({url:"/finance.withdraw/index",params:t})}function n(t){return i.post({url:"/finance.withdraw/add",params:t})}function d(t){return i.post({url:"/finance.withdraw/edit",params:t})}function e(t){return i.get({url:"/finance.withdraw/detail",params:t})}function u(t){return i.post({url:"/finance.withdraw/audit",params:t})}export{r as a,e as b,d as c,n as d,u as w}; diff --git a/public/admin/assets/withdraw.35c20484.js b/public/admin/assets/withdraw.35c20484.js new file mode 100644 index 000000000..497ae7c68 --- /dev/null +++ b/public/admin/assets/withdraw.35c20484.js @@ -0,0 +1 @@ +import{r as i}from"./index.37f7aea6.js";function r(t){return i.get({url:"/finance.withdraw/index",params:t})}function n(t){return i.post({url:"/finance.withdraw/add",params:t})}function d(t){return i.post({url:"/finance.withdraw/edit",params:t})}function e(t){return i.get({url:"/finance.withdraw/detail",params:t})}function u(t){return i.post({url:"/finance.withdraw/audit",params:t})}export{r as a,e as b,d as c,n as d,u as w}; diff --git a/public/admin/assets/wx_oa.115c1d98.js b/public/admin/assets/wx_oa.115c1d98.js new file mode 100644 index 000000000..df1f25172 --- /dev/null +++ b/public/admin/assets/wx_oa.115c1d98.js @@ -0,0 +1 @@ +import{r as t}from"./index.37f7aea6.js";function a(n){return t.post({url:"/channel.official_account_setting/setConfig",params:n})}function c(){return t.get({url:"/channel.official_account_setting/getConfig"})}function u(){return t.get({url:"/channel.official_account_menu/detail"})}function l(n){return t.post({url:"/channel.official_account_menu/save",params:n})}function o(n){return t.post({url:"/channel.official_account_menu/saveAndPublish",params:n})}function i(n){return t.get({url:"/channel.official_account_reply/lists",params:n})}function r(n){return t.post({url:"/channel.official_account_reply/delete",params:n})}function f(n){return t.post({url:"/channel.official_account_reply/status",params:n})}function s(n){return t.post({url:"/channel.official_account_reply/add",params:n})}function _(n){return t.post({url:"/channel.official_account_reply/edit",params:n})}function p(n){return t.get({url:"/channel.official_account_reply/detail",params:n})}export{u as a,l as b,o as c,f as d,i as e,_ as f,c as g,s as h,p as i,r as o,a as s}; diff --git a/public/admin/assets/wx_oa.dfa7359b.js b/public/admin/assets/wx_oa.dfa7359b.js new file mode 100644 index 000000000..50ebfba5f --- /dev/null +++ b/public/admin/assets/wx_oa.dfa7359b.js @@ -0,0 +1 @@ +import{r as t}from"./index.aa9bb752.js";function a(n){return t.post({url:"/channel.official_account_setting/setConfig",params:n})}function c(){return t.get({url:"/channel.official_account_setting/getConfig"})}function u(){return t.get({url:"/channel.official_account_menu/detail"})}function l(n){return t.post({url:"/channel.official_account_menu/save",params:n})}function o(n){return t.post({url:"/channel.official_account_menu/saveAndPublish",params:n})}function i(n){return t.get({url:"/channel.official_account_reply/lists",params:n})}function r(n){return t.post({url:"/channel.official_account_reply/delete",params:n})}function f(n){return t.post({url:"/channel.official_account_reply/status",params:n})}function s(n){return t.post({url:"/channel.official_account_reply/add",params:n})}function _(n){return t.post({url:"/channel.official_account_reply/edit",params:n})}function p(n){return t.get({url:"/channel.official_account_reply/detail",params:n})}export{u as a,l as b,o as c,f as d,i as e,_ as f,c as g,s as h,p as i,r as o,a as s}; diff --git a/public/admin/assets/wx_oa.ec356b57.js b/public/admin/assets/wx_oa.ec356b57.js new file mode 100644 index 000000000..d598a7597 --- /dev/null +++ b/public/admin/assets/wx_oa.ec356b57.js @@ -0,0 +1 @@ +import{r as t}from"./index.ed71ac09.js";function a(n){return t.post({url:"/channel.official_account_setting/setConfig",params:n})}function c(){return t.get({url:"/channel.official_account_setting/getConfig"})}function u(){return t.get({url:"/channel.official_account_menu/detail"})}function l(n){return t.post({url:"/channel.official_account_menu/save",params:n})}function o(n){return t.post({url:"/channel.official_account_menu/saveAndPublish",params:n})}function i(n){return t.get({url:"/channel.official_account_reply/lists",params:n})}function r(n){return t.post({url:"/channel.official_account_reply/delete",params:n})}function f(n){return t.post({url:"/channel.official_account_reply/status",params:n})}function s(n){return t.post({url:"/channel.official_account_reply/add",params:n})}function _(n){return t.post({url:"/channel.official_account_reply/edit",params:n})}function p(n){return t.get({url:"/channel.official_account_reply/detail",params:n})}export{u as a,l as b,o as c,f as d,i as e,_ as f,c as g,s as h,p as i,r as o,a as s}; diff --git a/public/admin/index.html b/public/admin/index.html index 01defff15..caa6aab1c 100644 --- a/public/admin/index.html +++ b/public/admin/index.html @@ -52,33 +52,32 @@ } } - + - + - - + - - - + + + - + - + - - + + diff --git a/public/xf_voice/css/base.css b/public/xf_voice/css/base.css new file mode 100644 index 000000000..c7f989ca6 --- /dev/null +++ b/public/xf_voice/css/base.css @@ -0,0 +1,166 @@ +.h1 { + text-align: center; +} + +.voice-box { + box-sizing : border-box; + display : flex; + justify-content: center; + margin : 50px auto; + padding : 50px; + width : 60%; + border : 1px solid gray; + border-radius : 3px; +} + +.voice-box input { + box-sizing : border-box; + padding : 10px; + width : 70%; + height : 50px; + font-size : 18px; + color : #187cff; + border : 1px solid #187cff; + border-radius: 3px 0px 0px 3px; +} + +.voice-box button { + width : 30%; + height : 50px; + line-height : 50px; + font-size : 18px; + color : white; + background : #187cff; + border : none; + border-radius: 0px 3px 3px 0px; + cursor : pointer; +} + +.voice-box button::before { + content : ""; + display : inline-block; + width : 23px; + height : 26px; + vertical-align : middle; + background : url(../img/voice.png) no-repeat; + background-size: contain; + +} + +.fixed-box { + box-sizing: border-box; + display : none; + position : fixed; + top : 0px; + right : 0px; + bottom : 0px; + left : 0px; + border : .04rem solid #e0e7ff; + background: rgba(16, 22, 62, .2); +} + +.fixed-close { + position : absolute; + top : 0px; + right : 0px; + padding : 24px; + width : 20px; + height : 20px; + border : none; + background : url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAeCAYAAAA7MK6iAAABeklEQVRIibXWsWoVQRQA0LObgGCTFFr6env9h/yETSz0tclrBEUJWhjzAqkV/A9/QrC2CtgIYqk2DwvdMExm991ZJrdaZoY53Bnm3u0Wy80BPuI21jjRPjqc4il+4FG3WG4ucS9ZtMaqMfoej5OxLz3uZAuPcXaDKNzt/TuCPFrgYyi87fEK543xKfQFLvoEaYVvQ19DnwxO4euWaA5P4UcBPIzCbmHRcYLleDqfox9wGEG5nnGKRzOvRilnnOIDluPD/BT6HG/GNp+CI/j+HDQCR/BqlPE7LuGlO5+F1sARPIzWwh32Jub3K/YKw1PFYYgV3rWEI2iKh2r7NnhbGZzdWKaeU03tzZ/W8ARH/2TGMq5BZ7XUElzVZebiOTzU3ho0RUqts4in8Kwuk8Uqig/wti4TQSP41XgfQMNlMIBf9fPd/x8t0RTn+h/LEX52i+XmN241RtM4K+Dfe3y7QZTysV/u7D18+RkP8AfPxPpubXzCL9zHVzz5C8ecbD1n3xuUAAAAAElFTkSuQmCC) no-repeat center center; + background-size: 20px; + transition : all .5s; + cursor : pointer; + outline : none; +} + +.fixed-close:hover { + transform : rotate(270deg); + -webkit-transform: rotate(270deg); +} + + +.fixed-main { + box-sizing : border-box; + position : absolute; + left : 20%; + bottom : 0px; + padding : 30px; + width : 60%; + height : 240px; + font-size : 18px; + background : white; + border : 2px solid #e0e7ff; + border-radius: 5px 5px 0px 0px; + overflow-y : auto; +} + +.fixed-icon { + box-sizing : border-box; + display : flex; + justify-content: center; + align-items : center; + position : absolute; + top : 50%; + left : 50%; + margin-top : -50px; + margin-left : -50px; + width : 100px; + height : 100px; + background : linear-gradient(115deg, #56d8e4 5%, #9f01ea 95%); + border : 1px solid #e0e7ff; + border-radius : 50%; +} + +.fixed-icon::before { + content : ""; + position : absolute; + display : inline-block; + width : 100px; + height : 100px; + border : 1px solid #9f01ea; + box-shadow : 0px 0px 6px 0px #9f01ea; + border-radius: 50%; + animation : move 1.5s infinite; +} + +.fixed-icon::after { + content : ""; + position : absolute; + display : inline-block; + width : 100px; + height : 100px; + border : 1px solid #56d8e4; + box-shadow : 0px 0px 6px 0px #56d8e4; + border-radius: 50%; + animation : move 1.5s .5s infinite; + +} + +.fixed-icon img { + width : 30px; + height: 50px; +} + +@keyframes move { + 0% { + opacity : 1; + transform: scale(1); + } + + 100% { + opacity : 0; + transform: scale(2); + } +} + +::-webkit-scrollbar { + width : 6px; + height : 6px; + background-color: #f9f9f9; +} + +::-webkit-scrollbar-thumb { + border-radius : 6px; + background-color: #187cff; +} \ No newline at end of file diff --git a/public/xf_voice/img/test.gif b/public/xf_voice/img/test.gif new file mode 100644 index 000000000..4f45897fb Binary files /dev/null and b/public/xf_voice/img/test.gif differ diff --git a/public/xf_voice/img/test.png b/public/xf_voice/img/test.png new file mode 100644 index 000000000..db28625ee Binary files /dev/null and b/public/xf_voice/img/test.png differ diff --git a/public/xf_voice/img/voice.png b/public/xf_voice/img/voice.png new file mode 100644 index 000000000..45dda06ea Binary files /dev/null and b/public/xf_voice/img/voice.png differ diff --git a/public/xf_voice/index.html b/public/xf_voice/index.html new file mode 100644 index 000000000..874a18b9b --- /dev/null +++ b/public/xf_voice/index.html @@ -0,0 +1,86 @@ + + + + + + + + 迅飞语音听写(流式版)WebAPI + + + + + +

迅飞语音听写(流式版)WebAPI

+
+
+ + +
+ +
+
+ +
Hello! 请说出你想说话。。。!
+
+ +
+
+
+ + + + + + + + \ No newline at end of file diff --git a/public/xf_voice/js/crypto-js.min.js b/public/xf_voice/js/crypto-js.min.js new file mode 100644 index 000000000..a8e8e661d --- /dev/null +++ b/public/xf_voice/js/crypto-js.min.js @@ -0,0 +1 @@ +;(function(root,factory){if(typeof exports==="object"){module.exports=exports=factory()}else if(typeof define==="function"&&define.amd){define([],factory)}else{root.CryptoJS=factory()}}(this,function(){var CryptoJS=CryptoJS||(function(Math,undefined){var crypto;if(typeof window!=='undefined'&&window.crypto){crypto=window.crypto}if(!crypto&&typeof window!=='undefined'&&window.msCrypto){crypto=window.msCrypto}if(!crypto&&typeof global!=='undefined'&&global.crypto){crypto=global.crypto}if(!crypto&&typeof require==='function'){try{crypto=require('crypto')}catch(err){}}var cryptoSecureRandomInt=function(){if(crypto){if(typeof crypto.getRandomValues==='function'){try{return crypto.getRandomValues(new Uint32Array(1))[0]}catch(err){}}if(typeof crypto.randomBytes==='function'){try{return crypto.randomBytes(4).readInt32LE()}catch(err){}}}throw new Error('Native crypto module could not be used to get secure random number.');};var create=Object.create||(function(){function F(){}return function(obj){var subtype;F.prototype=obj;subtype=new F();F.prototype=null;return subtype}}());var C={};var C_lib=C.lib={};var Base=C_lib.Base=(function(){return{extend:function(overrides){var subtype=create(this);if(overrides){subtype.mixIn(overrides)}if(!subtype.hasOwnProperty('init')||this.init===subtype.init){subtype.init=function(){subtype.$super.init.apply(this,arguments)}}subtype.init.prototype=subtype;subtype.$super=this;return subtype},create:function(){var instance=this.extend();instance.init.apply(instance,arguments);return instance},init:function(){},mixIn:function(properties){for(var propertyName in properties){if(properties.hasOwnProperty(propertyName)){this[propertyName]=properties[propertyName]}}if(properties.hasOwnProperty('toString')){this.toString=properties.toString}},clone:function(){return this.init.prototype.extend(this)}}}());var WordArray=C_lib.WordArray=Base.extend({init:function(words,sigBytes){words=this.words=words||[];if(sigBytes!=undefined){this.sigBytes=sigBytes}else{this.sigBytes=words.length*4}},toString:function(encoder){return(encoder||Hex).stringify(this)},concat:function(wordArray){var thisWords=this.words;var thatWords=wordArray.words;var thisSigBytes=this.sigBytes;var thatSigBytes=wordArray.sigBytes;this.clamp();if(thisSigBytes%4){for(var i=0;i>>2]>>>(24-(i%4)*8))&0xff;thisWords[(thisSigBytes+i)>>>2]|=thatByte<<(24-((thisSigBytes+i)%4)*8)}}else{for(var i=0;i>>2]=thatWords[i>>>2]}}this.sigBytes+=thatSigBytes;return this},clamp:function(){var words=this.words;var sigBytes=this.sigBytes;words[sigBytes>>>2]&=0xffffffff<<(32-(sigBytes%4)*8);words.length=Math.ceil(sigBytes/4)},clone:function(){var clone=Base.clone.call(this);clone.words=this.words.slice(0);return clone},random:function(nBytes){var words=[];for(var i=0;i>>2]>>>(24-(i%4)*8))&0xff;hexChars.push((bite>>>4).toString(16));hexChars.push((bite&0x0f).toString(16))}return hexChars.join('')},parse:function(hexStr){var hexStrLength=hexStr.length;var words=[];for(var i=0;i>>3]|=parseInt(hexStr.substr(i,2),16)<<(24-(i%8)*4)}return new WordArray.init(words,hexStrLength/2)}};var Latin1=C_enc.Latin1={stringify:function(wordArray){var words=wordArray.words;var sigBytes=wordArray.sigBytes;var latin1Chars=[];for(var i=0;i>>2]>>>(24-(i%4)*8))&0xff;latin1Chars.push(String.fromCharCode(bite))}return latin1Chars.join('')},parse:function(latin1Str){var latin1StrLength=latin1Str.length;var words=[];for(var i=0;i>>2]|=(latin1Str.charCodeAt(i)&0xff)<<(24-(i%4)*8)}return new WordArray.init(words,latin1StrLength)}};var Utf8=C_enc.Utf8={stringify:function(wordArray){try{return decodeURIComponent(escape(Latin1.stringify(wordArray)))}catch(e){throw new Error('Malformed UTF-8 data');}},parse:function(utf8Str){return Latin1.parse(unescape(encodeURIComponent(utf8Str)))}};var BufferedBlockAlgorithm=C_lib.BufferedBlockAlgorithm=Base.extend({reset:function(){this._data=new WordArray.init();this._nDataBytes=0},_append:function(data){if(typeof data=='string'){data=Utf8.parse(data)}this._data.concat(data);this._nDataBytes+=data.sigBytes},_process:function(doFlush){var processedWords;var data=this._data;var dataWords=data.words;var dataSigBytes=data.sigBytes;var blockSize=this.blockSize;var blockSizeBytes=blockSize*4;var nBlocksReady=dataSigBytes/blockSizeBytes;if(doFlush){nBlocksReady=Math.ceil(nBlocksReady)}else{nBlocksReady=Math.max((nBlocksReady|0)-this._minBufferSize,0)}var nWordsReady=nBlocksReady*blockSize;var nBytesReady=Math.min(nWordsReady*4,dataSigBytes);if(nWordsReady){for(var offset=0;offset>>2]>>>(24-(i%4)*8))&0xff;var byte2=(words[(i+1)>>>2]>>>(24-((i+1)%4)*8))&0xff;var byte3=(words[(i+2)>>>2]>>>(24-((i+2)%4)*8))&0xff;var triplet=(byte1<<16)|(byte2<<8)|byte3;for(var j=0;(j<4)&&(i+j*0.75>>(6*(3-j)))&0x3f))}}var paddingChar=map.charAt(64);if(paddingChar){while(base64Chars.length%4){base64Chars.push(paddingChar)}}return base64Chars.join('')},parse:function(base64Str){var base64StrLength=base64Str.length;var map=this._map;var reverseMap=this._reverseMap;if(!reverseMap){reverseMap=this._reverseMap=[];for(var j=0;j>>(6-(i%4)*2);var bitsCombined=bits1|bits2;words[nBytes>>>2]|=bitsCombined<<(24-(nBytes%4)*8);nBytes++}}return WordArray.create(words,nBytes)}}());(function(Math){var C=CryptoJS;var C_lib=C.lib;var WordArray=C_lib.WordArray;var Hasher=C_lib.Hasher;var C_algo=C.algo;var T=[];(function(){for(var i=0;i<64;i++){T[i]=(Math.abs(Math.sin(i+1))*0x100000000)|0}}());var MD5=C_algo.MD5=Hasher.extend({_doReset:function(){this._hash=new WordArray.init([0x67452301,0xefcdab89,0x98badcfe,0x10325476])},_doProcessBlock:function(M,offset){for(var i=0;i<16;i++){var offset_i=offset+i;var M_offset_i=M[offset_i];M[offset_i]=((((M_offset_i<<8)|(M_offset_i>>>24))&0x00ff00ff)|(((M_offset_i<<24)|(M_offset_i>>>8))&0xff00ff00))}var H=this._hash.words;var M_offset_0=M[offset+0];var M_offset_1=M[offset+1];var M_offset_2=M[offset+2];var M_offset_3=M[offset+3];var M_offset_4=M[offset+4];var M_offset_5=M[offset+5];var M_offset_6=M[offset+6];var M_offset_7=M[offset+7];var M_offset_8=M[offset+8];var M_offset_9=M[offset+9];var M_offset_10=M[offset+10];var M_offset_11=M[offset+11];var M_offset_12=M[offset+12];var M_offset_13=M[offset+13];var M_offset_14=M[offset+14];var M_offset_15=M[offset+15];var a=H[0];var b=H[1];var c=H[2];var d=H[3];a=FF(a,b,c,d,M_offset_0,7,T[0]);d=FF(d,a,b,c,M_offset_1,12,T[1]);c=FF(c,d,a,b,M_offset_2,17,T[2]);b=FF(b,c,d,a,M_offset_3,22,T[3]);a=FF(a,b,c,d,M_offset_4,7,T[4]);d=FF(d,a,b,c,M_offset_5,12,T[5]);c=FF(c,d,a,b,M_offset_6,17,T[6]);b=FF(b,c,d,a,M_offset_7,22,T[7]);a=FF(a,b,c,d,M_offset_8,7,T[8]);d=FF(d,a,b,c,M_offset_9,12,T[9]);c=FF(c,d,a,b,M_offset_10,17,T[10]);b=FF(b,c,d,a,M_offset_11,22,T[11]);a=FF(a,b,c,d,M_offset_12,7,T[12]);d=FF(d,a,b,c,M_offset_13,12,T[13]);c=FF(c,d,a,b,M_offset_14,17,T[14]);b=FF(b,c,d,a,M_offset_15,22,T[15]);a=GG(a,b,c,d,M_offset_1,5,T[16]);d=GG(d,a,b,c,M_offset_6,9,T[17]);c=GG(c,d,a,b,M_offset_11,14,T[18]);b=GG(b,c,d,a,M_offset_0,20,T[19]);a=GG(a,b,c,d,M_offset_5,5,T[20]);d=GG(d,a,b,c,M_offset_10,9,T[21]);c=GG(c,d,a,b,M_offset_15,14,T[22]);b=GG(b,c,d,a,M_offset_4,20,T[23]);a=GG(a,b,c,d,M_offset_9,5,T[24]);d=GG(d,a,b,c,M_offset_14,9,T[25]);c=GG(c,d,a,b,M_offset_3,14,T[26]);b=GG(b,c,d,a,M_offset_8,20,T[27]);a=GG(a,b,c,d,M_offset_13,5,T[28]);d=GG(d,a,b,c,M_offset_2,9,T[29]);c=GG(c,d,a,b,M_offset_7,14,T[30]);b=GG(b,c,d,a,M_offset_12,20,T[31]);a=HH(a,b,c,d,M_offset_5,4,T[32]);d=HH(d,a,b,c,M_offset_8,11,T[33]);c=HH(c,d,a,b,M_offset_11,16,T[34]);b=HH(b,c,d,a,M_offset_14,23,T[35]);a=HH(a,b,c,d,M_offset_1,4,T[36]);d=HH(d,a,b,c,M_offset_4,11,T[37]);c=HH(c,d,a,b,M_offset_7,16,T[38]);b=HH(b,c,d,a,M_offset_10,23,T[39]);a=HH(a,b,c,d,M_offset_13,4,T[40]);d=HH(d,a,b,c,M_offset_0,11,T[41]);c=HH(c,d,a,b,M_offset_3,16,T[42]);b=HH(b,c,d,a,M_offset_6,23,T[43]);a=HH(a,b,c,d,M_offset_9,4,T[44]);d=HH(d,a,b,c,M_offset_12,11,T[45]);c=HH(c,d,a,b,M_offset_15,16,T[46]);b=HH(b,c,d,a,M_offset_2,23,T[47]);a=II(a,b,c,d,M_offset_0,6,T[48]);d=II(d,a,b,c,M_offset_7,10,T[49]);c=II(c,d,a,b,M_offset_14,15,T[50]);b=II(b,c,d,a,M_offset_5,21,T[51]);a=II(a,b,c,d,M_offset_12,6,T[52]);d=II(d,a,b,c,M_offset_3,10,T[53]);c=II(c,d,a,b,M_offset_10,15,T[54]);b=II(b,c,d,a,M_offset_1,21,T[55]);a=II(a,b,c,d,M_offset_8,6,T[56]);d=II(d,a,b,c,M_offset_15,10,T[57]);c=II(c,d,a,b,M_offset_6,15,T[58]);b=II(b,c,d,a,M_offset_13,21,T[59]);a=II(a,b,c,d,M_offset_4,6,T[60]);d=II(d,a,b,c,M_offset_11,10,T[61]);c=II(c,d,a,b,M_offset_2,15,T[62]);b=II(b,c,d,a,M_offset_9,21,T[63]);H[0]=(H[0]+a)|0;H[1]=(H[1]+b)|0;H[2]=(H[2]+c)|0;H[3]=(H[3]+d)|0},_doFinalize:function(){var data=this._data;var dataWords=data.words;var nBitsTotal=this._nDataBytes*8;var nBitsLeft=data.sigBytes*8;dataWords[nBitsLeft>>>5]|=0x80<<(24-nBitsLeft%32);var nBitsTotalH=Math.floor(nBitsTotal/0x100000000);var nBitsTotalL=nBitsTotal;dataWords[(((nBitsLeft+64)>>>9)<<4)+15]=((((nBitsTotalH<<8)|(nBitsTotalH>>>24))&0x00ff00ff)|(((nBitsTotalH<<24)|(nBitsTotalH>>>8))&0xff00ff00));dataWords[(((nBitsLeft+64)>>>9)<<4)+14]=((((nBitsTotalL<<8)|(nBitsTotalL>>>24))&0x00ff00ff)|(((nBitsTotalL<<24)|(nBitsTotalL>>>8))&0xff00ff00));data.sigBytes=(dataWords.length+1)*4;this._process();var hash=this._hash;var H=hash.words;for(var i=0;i<4;i++){var H_i=H[i];H[i]=(((H_i<<8)|(H_i>>>24))&0x00ff00ff)|(((H_i<<24)|(H_i>>>8))&0xff00ff00)}return hash},clone:function(){var clone=Hasher.clone.call(this);clone._hash=this._hash.clone();return clone}});function FF(a,b,c,d,x,s,t){var n=a+((b&c)|(~b&d))+x+t;return((n<>>(32-s)))+b}function GG(a,b,c,d,x,s,t){var n=a+((b&d)|(c&~d))+x+t;return((n<>>(32-s)))+b}function HH(a,b,c,d,x,s,t){var n=a+(b^c^d)+x+t;return((n<>>(32-s)))+b}function II(a,b,c,d,x,s,t){var n=a+(c^(b|~d))+x+t;return((n<>>(32-s)))+b}C.MD5=Hasher._createHelper(MD5);C.HmacMD5=Hasher._createHmacHelper(MD5)}(Math));(function(){var C=CryptoJS;var C_lib=C.lib;var WordArray=C_lib.WordArray;var Hasher=C_lib.Hasher;var C_algo=C.algo;var W=[];var SHA1=C_algo.SHA1=Hasher.extend({_doReset:function(){this._hash=new WordArray.init([0x67452301,0xefcdab89,0x98badcfe,0x10325476,0xc3d2e1f0])},_doProcessBlock:function(M,offset){var H=this._hash.words;var a=H[0];var b=H[1];var c=H[2];var d=H[3];var e=H[4];for(var i=0;i<80;i++){if(i<16){W[i]=M[offset+i]|0}else{var n=W[i-3]^W[i-8]^W[i-14]^W[i-16];W[i]=(n<<1)|(n>>>31)}var t=((a<<5)|(a>>>27))+e+W[i];if(i<20){t+=((b&c)|(~b&d))+0x5a827999}else if(i<40){t+=(b^c^d)+0x6ed9eba1}else if(i<60){t+=((b&c)|(b&d)|(c&d))-0x70e44324}else{t+=(b^c^d)-0x359d3e2a}e=d;d=c;c=(b<<30)|(b>>>2);b=a;a=t}H[0]=(H[0]+a)|0;H[1]=(H[1]+b)|0;H[2]=(H[2]+c)|0;H[3]=(H[3]+d)|0;H[4]=(H[4]+e)|0},_doFinalize:function(){var data=this._data;var dataWords=data.words;var nBitsTotal=this._nDataBytes*8;var nBitsLeft=data.sigBytes*8;dataWords[nBitsLeft>>>5]|=0x80<<(24-nBitsLeft%32);dataWords[(((nBitsLeft+64)>>>9)<<4)+14]=Math.floor(nBitsTotal/0x100000000);dataWords[(((nBitsLeft+64)>>>9)<<4)+15]=nBitsTotal;data.sigBytes=dataWords.length*4;this._process();return this._hash},clone:function(){var clone=Hasher.clone.call(this);clone._hash=this._hash.clone();return clone}});C.SHA1=Hasher._createHelper(SHA1);C.HmacSHA1=Hasher._createHmacHelper(SHA1)}());(function(Math){var C=CryptoJS;var C_lib=C.lib;var WordArray=C_lib.WordArray;var Hasher=C_lib.Hasher;var C_algo=C.algo;var H=[];var K=[];(function(){function isPrime(n){var sqrtN=Math.sqrt(n);for(var factor=2;factor<=sqrtN;factor++){if(!(n%factor)){return false}}return true}function getFractionalBits(n){return((n-(n|0))*0x100000000)|0}var n=2;var nPrime=0;while(nPrime<64){if(isPrime(n)){if(nPrime<8){H[nPrime]=getFractionalBits(Math.pow(n,1/2))}K[nPrime]=getFractionalBits(Math.pow(n,1/3));nPrime++}n++}}());var W=[];var SHA256=C_algo.SHA256=Hasher.extend({_doReset:function(){this._hash=new WordArray.init(H.slice(0))},_doProcessBlock:function(M,offset){var H=this._hash.words;var a=H[0];var b=H[1];var c=H[2];var d=H[3];var e=H[4];var f=H[5];var g=H[6];var h=H[7];for(var i=0;i<64;i++){if(i<16){W[i]=M[offset+i]|0}else{var gamma0x=W[i-15];var gamma0=((gamma0x<<25)|(gamma0x>>>7))^((gamma0x<<14)|(gamma0x>>>18))^(gamma0x>>>3);var gamma1x=W[i-2];var gamma1=((gamma1x<<15)|(gamma1x>>>17))^((gamma1x<<13)|(gamma1x>>>19))^(gamma1x>>>10);W[i]=gamma0+W[i-7]+gamma1+W[i-16]}var ch=(e&f)^(~e&g);var maj=(a&b)^(a&c)^(b&c);var sigma0=((a<<30)|(a>>>2))^((a<<19)|(a>>>13))^((a<<10)|(a>>>22));var sigma1=((e<<26)|(e>>>6))^((e<<21)|(e>>>11))^((e<<7)|(e>>>25));var t1=h+sigma1+ch+K[i]+W[i];var t2=sigma0+maj;h=g;g=f;f=e;e=(d+t1)|0;d=c;c=b;b=a;a=(t1+t2)|0}H[0]=(H[0]+a)|0;H[1]=(H[1]+b)|0;H[2]=(H[2]+c)|0;H[3]=(H[3]+d)|0;H[4]=(H[4]+e)|0;H[5]=(H[5]+f)|0;H[6]=(H[6]+g)|0;H[7]=(H[7]+h)|0},_doFinalize:function(){var data=this._data;var dataWords=data.words;var nBitsTotal=this._nDataBytes*8;var nBitsLeft=data.sigBytes*8;dataWords[nBitsLeft>>>5]|=0x80<<(24-nBitsLeft%32);dataWords[(((nBitsLeft+64)>>>9)<<4)+14]=Math.floor(nBitsTotal/0x100000000);dataWords[(((nBitsLeft+64)>>>9)<<4)+15]=nBitsTotal;data.sigBytes=dataWords.length*4;this._process();return this._hash},clone:function(){var clone=Hasher.clone.call(this);clone._hash=this._hash.clone();return clone}});C.SHA256=Hasher._createHelper(SHA256);C.HmacSHA256=Hasher._createHmacHelper(SHA256)}(Math));(function(){var C=CryptoJS;var C_lib=C.lib;var WordArray=C_lib.WordArray;var C_enc=C.enc;var Utf16BE=C_enc.Utf16=C_enc.Utf16BE={stringify:function(wordArray){var words=wordArray.words;var sigBytes=wordArray.sigBytes;var utf16Chars=[];for(var i=0;i>>2]>>>(16-(i%4)*8))&0xffff;utf16Chars.push(String.fromCharCode(codePoint))}return utf16Chars.join('')},parse:function(utf16Str){var utf16StrLength=utf16Str.length;var words=[];for(var i=0;i>>1]|=utf16Str.charCodeAt(i)<<(16-(i%2)*16)}return WordArray.create(words,utf16StrLength*2)}};C_enc.Utf16LE={stringify:function(wordArray){var words=wordArray.words;var sigBytes=wordArray.sigBytes;var utf16Chars=[];for(var i=0;i>>2]>>>(16-(i%4)*8))&0xffff);utf16Chars.push(String.fromCharCode(codePoint))}return utf16Chars.join('')},parse:function(utf16Str){var utf16StrLength=utf16Str.length;var words=[];for(var i=0;i>>1]|=swapEndian(utf16Str.charCodeAt(i)<<(16-(i%2)*16))}return WordArray.create(words,utf16StrLength*2)}};function swapEndian(word){return((word<<8)&0xff00ff00)|((word>>>8)&0x00ff00ff)}}());(function(){if(typeof ArrayBuffer!='function'){return}var C=CryptoJS;var C_lib=C.lib;var WordArray=C_lib.WordArray;var superInit=WordArray.init;var subInit=WordArray.init=function(typedArray){if(typedArray instanceof ArrayBuffer){typedArray=new Uint8Array(typedArray)}if(typedArray instanceof Int8Array||(typeof Uint8ClampedArray!=="undefined"&&typedArray instanceof Uint8ClampedArray)||typedArray instanceof Int16Array||typedArray instanceof Uint16Array||typedArray instanceof Int32Array||typedArray instanceof Uint32Array||typedArray instanceof Float32Array||typedArray instanceof Float64Array){typedArray=new Uint8Array(typedArray.buffer,typedArray.byteOffset,typedArray.byteLength)}if(typedArray instanceof Uint8Array){var typedArrayByteLength=typedArray.byteLength;var words=[];for(var i=0;i>>2]|=typedArray[i]<<(24-(i%4)*8)}superInit.call(this,words,typedArrayByteLength)}else{superInit.apply(this,arguments)}};subInit.prototype=WordArray}());(function(Math){var C=CryptoJS;var C_lib=C.lib;var WordArray=C_lib.WordArray;var Hasher=C_lib.Hasher;var C_algo=C.algo;var _zl=WordArray.create([0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,7,4,13,1,10,6,15,3,12,0,9,5,2,14,11,8,3,10,14,4,9,15,8,1,2,7,0,6,13,11,5,12,1,9,11,10,0,8,12,4,13,3,7,15,14,5,6,2,4,0,5,9,7,12,2,10,14,1,3,8,11,6,15,13]);var _zr=WordArray.create([5,14,7,0,9,2,11,4,13,6,15,8,1,10,3,12,6,11,3,7,0,13,5,10,14,15,8,12,4,9,1,2,15,5,1,3,7,14,6,9,11,8,12,2,10,0,4,13,8,6,4,1,3,11,15,0,5,12,2,13,9,7,10,14,12,15,10,4,1,5,8,7,6,2,13,14,0,3,9,11]);var _sl=WordArray.create([11,14,15,12,5,8,7,9,11,13,14,15,6,7,9,8,7,6,8,13,11,9,7,15,7,12,15,9,11,7,13,12,11,13,6,7,14,9,13,15,14,8,13,6,5,12,7,5,11,12,14,15,14,15,9,8,9,14,5,6,8,6,5,12,9,15,5,11,6,8,13,12,5,12,13,14,11,8,5,6]);var _sr=WordArray.create([8,9,9,11,13,15,15,5,7,7,8,11,14,14,12,6,9,13,15,7,12,8,9,11,7,7,12,7,6,15,13,11,9,7,15,11,8,6,6,14,12,13,5,14,13,13,7,5,15,5,8,11,14,14,6,14,6,9,12,9,12,5,15,8,8,5,12,9,12,5,14,6,8,13,6,5,15,13,11,11]);var _hl=WordArray.create([0x00000000,0x5A827999,0x6ED9EBA1,0x8F1BBCDC,0xA953FD4E]);var _hr=WordArray.create([0x50A28BE6,0x5C4DD124,0x6D703EF3,0x7A6D76E9,0x00000000]);var RIPEMD160=C_algo.RIPEMD160=Hasher.extend({_doReset:function(){this._hash=WordArray.create([0x67452301,0xEFCDAB89,0x98BADCFE,0x10325476,0xC3D2E1F0])},_doProcessBlock:function(M,offset){for(var i=0;i<16;i++){var offset_i=offset+i;var M_offset_i=M[offset_i];M[offset_i]=((((M_offset_i<<8)|(M_offset_i>>>24))&0x00ff00ff)|(((M_offset_i<<24)|(M_offset_i>>>8))&0xff00ff00))}var H=this._hash.words;var hl=_hl.words;var hr=_hr.words;var zl=_zl.words;var zr=_zr.words;var sl=_sl.words;var sr=_sr.words;var al,bl,cl,dl,el;var ar,br,cr,dr,er;ar=al=H[0];br=bl=H[1];cr=cl=H[2];dr=dl=H[3];er=el=H[4];var t;for(var i=0;i<80;i+=1){t=(al+M[offset+zl[i]])|0;if(i<16){t+=f1(bl,cl,dl)+hl[0]}else if(i<32){t+=f2(bl,cl,dl)+hl[1]}else if(i<48){t+=f3(bl,cl,dl)+hl[2]}else if(i<64){t+=f4(bl,cl,dl)+hl[3]}else{t+=f5(bl,cl,dl)+hl[4]}t=t|0;t=rotl(t,sl[i]);t=(t+el)|0;al=el;el=dl;dl=rotl(cl,10);cl=bl;bl=t;t=(ar+M[offset+zr[i]])|0;if(i<16){t+=f5(br,cr,dr)+hr[0]}else if(i<32){t+=f4(br,cr,dr)+hr[1]}else if(i<48){t+=f3(br,cr,dr)+hr[2]}else if(i<64){t+=f2(br,cr,dr)+hr[3]}else{t+=f1(br,cr,dr)+hr[4]}t=t|0;t=rotl(t,sr[i]);t=(t+er)|0;ar=er;er=dr;dr=rotl(cr,10);cr=br;br=t}t=(H[1]+cl+dr)|0;H[1]=(H[2]+dl+er)|0;H[2]=(H[3]+el+ar)|0;H[3]=(H[4]+al+br)|0;H[4]=(H[0]+bl+cr)|0;H[0]=t},_doFinalize:function(){var data=this._data;var dataWords=data.words;var nBitsTotal=this._nDataBytes*8;var nBitsLeft=data.sigBytes*8;dataWords[nBitsLeft>>>5]|=0x80<<(24-nBitsLeft%32);dataWords[(((nBitsLeft+64)>>>9)<<4)+14]=((((nBitsTotal<<8)|(nBitsTotal>>>24))&0x00ff00ff)|(((nBitsTotal<<24)|(nBitsTotal>>>8))&0xff00ff00));data.sigBytes=(dataWords.length+1)*4;this._process();var hash=this._hash;var H=hash.words;for(var i=0;i<5;i++){var H_i=H[i];H[i]=(((H_i<<8)|(H_i>>>24))&0x00ff00ff)|(((H_i<<24)|(H_i>>>8))&0xff00ff00)}return hash},clone:function(){var clone=Hasher.clone.call(this);clone._hash=this._hash.clone();return clone}});function f1(x,y,z){return((x)^(y)^(z))}function f2(x,y,z){return(((x)&(y))|((~x)&(z)))}function f3(x,y,z){return(((x)|(~(y)))^(z))}function f4(x,y,z){return(((x)&(z))|((y)&(~(z))))}function f5(x,y,z){return((x)^((y)|(~(z))))}function rotl(x,n){return(x<>>(32-n))}C.RIPEMD160=Hasher._createHelper(RIPEMD160);C.HmacRIPEMD160=Hasher._createHmacHelper(RIPEMD160)}(Math));(function(){var C=CryptoJS;var C_lib=C.lib;var Base=C_lib.Base;var C_enc=C.enc;var Utf8=C_enc.Utf8;var C_algo=C.algo;var HMAC=C_algo.HMAC=Base.extend({init:function(hasher,key){hasher=this._hasher=new hasher.init();if(typeof key=='string'){key=Utf8.parse(key)}var hasherBlockSize=hasher.blockSize;var hasherBlockSizeBytes=hasherBlockSize*4;if(key.sigBytes>hasherBlockSizeBytes){key=hasher.finalize(key)}key.clamp();var oKey=this._oKey=key.clone();var iKey=this._iKey=key.clone();var oKeyWords=oKey.words;var iKeyWords=iKey.words;for(var i=0;i>>24))&0x00ff00ff)|(((M2i<<24)|(M2i>>>8))&0xff00ff00));M2i1=((((M2i1<<8)|(M2i1>>>24))&0x00ff00ff)|(((M2i1<<24)|(M2i1>>>8))&0xff00ff00));var lane=state[i];lane.high^=M2i1;lane.low^=M2i}for(var round=0;round<24;round++){for(var x=0;x<5;x++){var tMsw=0,tLsw=0;for(var y=0;y<5;y++){var lane=state[x+5*y];tMsw^=lane.high;tLsw^=lane.low}var Tx=T[x];Tx.high=tMsw;Tx.low=tLsw}for(var x=0;x<5;x++){var Tx4=T[(x+4)%5];var Tx1=T[(x+1)%5];var Tx1Msw=Tx1.high;var Tx1Lsw=Tx1.low;var tMsw=Tx4.high^((Tx1Msw<<1)|(Tx1Lsw>>>31));var tLsw=Tx4.low^((Tx1Lsw<<1)|(Tx1Msw>>>31));for(var y=0;y<5;y++){var lane=state[x+5*y];lane.high^=tMsw;lane.low^=tLsw}}for(var laneIndex=1;laneIndex<25;laneIndex++){var tMsw;var tLsw;var lane=state[laneIndex];var laneMsw=lane.high;var laneLsw=lane.low;var rhoOffset=RHO_OFFSETS[laneIndex];if(rhoOffset<32){tMsw=(laneMsw<>>(32-rhoOffset));tLsw=(laneLsw<>>(32-rhoOffset))}else{tMsw=(laneLsw<<(rhoOffset-32))|(laneMsw>>>(64-rhoOffset));tLsw=(laneMsw<<(rhoOffset-32))|(laneLsw>>>(64-rhoOffset))}var TPiLane=T[PI_INDEXES[laneIndex]];TPiLane.high=tMsw;TPiLane.low=tLsw}var T0=T[0];var state0=state[0];T0.high=state0.high;T0.low=state0.low;for(var x=0;x<5;x++){for(var y=0;y<5;y++){var laneIndex=x+5*y;var lane=state[laneIndex];var TLane=T[laneIndex];var Tx1Lane=T[((x+1)%5)+5*y];var Tx2Lane=T[((x+2)%5)+5*y];lane.high=TLane.high^(~Tx1Lane.high&Tx2Lane.high);lane.low=TLane.low^(~Tx1Lane.low&Tx2Lane.low)}}var lane=state[0];var roundConstant=ROUND_CONSTANTS[round];lane.high^=roundConstant.high;lane.low^=roundConstant.low}},_doFinalize:function(){var data=this._data;var dataWords=data.words;var nBitsTotal=this._nDataBytes*8;var nBitsLeft=data.sigBytes*8;var blockSizeBits=this.blockSize*32;dataWords[nBitsLeft>>>5]|=0x1<<(24-nBitsLeft%32);dataWords[((Math.ceil((nBitsLeft+1)/blockSizeBits)*blockSizeBits)>>>5)-1]|=0x80;data.sigBytes=dataWords.length*4;this._process();var state=this._state;var outputLengthBytes=this.cfg.outputLength/8;var outputLengthLanes=outputLengthBytes/8;var hashWords=[];for(var i=0;i>>24))&0x00ff00ff)|(((laneMsw<<24)|(laneMsw>>>8))&0xff00ff00));laneLsw=((((laneLsw<<8)|(laneLsw>>>24))&0x00ff00ff)|(((laneLsw<<24)|(laneLsw>>>8))&0xff00ff00));hashWords.push(laneLsw);hashWords.push(laneMsw)}return new WordArray.init(hashWords,outputLengthBytes)},clone:function(){var clone=Hasher.clone.call(this);var state=clone._state=this._state.slice(0);for(var i=0;i<25;i++){state[i]=state[i].clone()}return clone}});C.SHA3=Hasher._createHelper(SHA3);C.HmacSHA3=Hasher._createHmacHelper(SHA3)}(Math));(function(){var C=CryptoJS;var C_lib=C.lib;var Hasher=C_lib.Hasher;var C_x64=C.x64;var X64Word=C_x64.Word;var X64WordArray=C_x64.WordArray;var C_algo=C.algo;function X64Word_create(){return X64Word.create.apply(X64Word,arguments)}var K=[X64Word_create(0x428a2f98,0xd728ae22),X64Word_create(0x71374491,0x23ef65cd),X64Word_create(0xb5c0fbcf,0xec4d3b2f),X64Word_create(0xe9b5dba5,0x8189dbbc),X64Word_create(0x3956c25b,0xf348b538),X64Word_create(0x59f111f1,0xb605d019),X64Word_create(0x923f82a4,0xaf194f9b),X64Word_create(0xab1c5ed5,0xda6d8118),X64Word_create(0xd807aa98,0xa3030242),X64Word_create(0x12835b01,0x45706fbe),X64Word_create(0x243185be,0x4ee4b28c),X64Word_create(0x550c7dc3,0xd5ffb4e2),X64Word_create(0x72be5d74,0xf27b896f),X64Word_create(0x80deb1fe,0x3b1696b1),X64Word_create(0x9bdc06a7,0x25c71235),X64Word_create(0xc19bf174,0xcf692694),X64Word_create(0xe49b69c1,0x9ef14ad2),X64Word_create(0xefbe4786,0x384f25e3),X64Word_create(0x0fc19dc6,0x8b8cd5b5),X64Word_create(0x240ca1cc,0x77ac9c65),X64Word_create(0x2de92c6f,0x592b0275),X64Word_create(0x4a7484aa,0x6ea6e483),X64Word_create(0x5cb0a9dc,0xbd41fbd4),X64Word_create(0x76f988da,0x831153b5),X64Word_create(0x983e5152,0xee66dfab),X64Word_create(0xa831c66d,0x2db43210),X64Word_create(0xb00327c8,0x98fb213f),X64Word_create(0xbf597fc7,0xbeef0ee4),X64Word_create(0xc6e00bf3,0x3da88fc2),X64Word_create(0xd5a79147,0x930aa725),X64Word_create(0x06ca6351,0xe003826f),X64Word_create(0x14292967,0x0a0e6e70),X64Word_create(0x27b70a85,0x46d22ffc),X64Word_create(0x2e1b2138,0x5c26c926),X64Word_create(0x4d2c6dfc,0x5ac42aed),X64Word_create(0x53380d13,0x9d95b3df),X64Word_create(0x650a7354,0x8baf63de),X64Word_create(0x766a0abb,0x3c77b2a8),X64Word_create(0x81c2c92e,0x47edaee6),X64Word_create(0x92722c85,0x1482353b),X64Word_create(0xa2bfe8a1,0x4cf10364),X64Word_create(0xa81a664b,0xbc423001),X64Word_create(0xc24b8b70,0xd0f89791),X64Word_create(0xc76c51a3,0x0654be30),X64Word_create(0xd192e819,0xd6ef5218),X64Word_create(0xd6990624,0x5565a910),X64Word_create(0xf40e3585,0x5771202a),X64Word_create(0x106aa070,0x32bbd1b8),X64Word_create(0x19a4c116,0xb8d2d0c8),X64Word_create(0x1e376c08,0x5141ab53),X64Word_create(0x2748774c,0xdf8eeb99),X64Word_create(0x34b0bcb5,0xe19b48a8),X64Word_create(0x391c0cb3,0xc5c95a63),X64Word_create(0x4ed8aa4a,0xe3418acb),X64Word_create(0x5b9cca4f,0x7763e373),X64Word_create(0x682e6ff3,0xd6b2b8a3),X64Word_create(0x748f82ee,0x5defb2fc),X64Word_create(0x78a5636f,0x43172f60),X64Word_create(0x84c87814,0xa1f0ab72),X64Word_create(0x8cc70208,0x1a6439ec),X64Word_create(0x90befffa,0x23631e28),X64Word_create(0xa4506ceb,0xde82bde9),X64Word_create(0xbef9a3f7,0xb2c67915),X64Word_create(0xc67178f2,0xe372532b),X64Word_create(0xca273ece,0xea26619c),X64Word_create(0xd186b8c7,0x21c0c207),X64Word_create(0xeada7dd6,0xcde0eb1e),X64Word_create(0xf57d4f7f,0xee6ed178),X64Word_create(0x06f067aa,0x72176fba),X64Word_create(0x0a637dc5,0xa2c898a6),X64Word_create(0x113f9804,0xbef90dae),X64Word_create(0x1b710b35,0x131c471b),X64Word_create(0x28db77f5,0x23047d84),X64Word_create(0x32caab7b,0x40c72493),X64Word_create(0x3c9ebe0a,0x15c9bebc),X64Word_create(0x431d67c4,0x9c100d4c),X64Word_create(0x4cc5d4be,0xcb3e42b6),X64Word_create(0x597f299c,0xfc657e2a),X64Word_create(0x5fcb6fab,0x3ad6faec),X64Word_create(0x6c44198c,0x4a475817)];var W=[];(function(){for(var i=0;i<80;i++){W[i]=X64Word_create()}}());var SHA512=C_algo.SHA512=Hasher.extend({_doReset:function(){this._hash=new X64WordArray.init([new X64Word.init(0x6a09e667,0xf3bcc908),new X64Word.init(0xbb67ae85,0x84caa73b),new X64Word.init(0x3c6ef372,0xfe94f82b),new X64Word.init(0xa54ff53a,0x5f1d36f1),new X64Word.init(0x510e527f,0xade682d1),new X64Word.init(0x9b05688c,0x2b3e6c1f),new X64Word.init(0x1f83d9ab,0xfb41bd6b),new X64Word.init(0x5be0cd19,0x137e2179)])},_doProcessBlock:function(M,offset){var H=this._hash.words;var H0=H[0];var H1=H[1];var H2=H[2];var H3=H[3];var H4=H[4];var H5=H[5];var H6=H[6];var H7=H[7];var H0h=H0.high;var H0l=H0.low;var H1h=H1.high;var H1l=H1.low;var H2h=H2.high;var H2l=H2.low;var H3h=H3.high;var H3l=H3.low;var H4h=H4.high;var H4l=H4.low;var H5h=H5.high;var H5l=H5.low;var H6h=H6.high;var H6l=H6.low;var H7h=H7.high;var H7l=H7.low;var ah=H0h;var al=H0l;var bh=H1h;var bl=H1l;var ch=H2h;var cl=H2l;var dh=H3h;var dl=H3l;var eh=H4h;var el=H4l;var fh=H5h;var fl=H5l;var gh=H6h;var gl=H6l;var hh=H7h;var hl=H7l;for(var i=0;i<80;i++){var Wil;var Wih;var Wi=W[i];if(i<16){Wih=Wi.high=M[offset+i*2]|0;Wil=Wi.low=M[offset+i*2+1]|0}else{var gamma0x=W[i-15];var gamma0xh=gamma0x.high;var gamma0xl=gamma0x.low;var gamma0h=((gamma0xh>>>1)|(gamma0xl<<31))^((gamma0xh>>>8)|(gamma0xl<<24))^(gamma0xh>>>7);var gamma0l=((gamma0xl>>>1)|(gamma0xh<<31))^((gamma0xl>>>8)|(gamma0xh<<24))^((gamma0xl>>>7)|(gamma0xh<<25));var gamma1x=W[i-2];var gamma1xh=gamma1x.high;var gamma1xl=gamma1x.low;var gamma1h=((gamma1xh>>>19)|(gamma1xl<<13))^((gamma1xh<<3)|(gamma1xl>>>29))^(gamma1xh>>>6);var gamma1l=((gamma1xl>>>19)|(gamma1xh<<13))^((gamma1xl<<3)|(gamma1xh>>>29))^((gamma1xl>>>6)|(gamma1xh<<26));var Wi7=W[i-7];var Wi7h=Wi7.high;var Wi7l=Wi7.low;var Wi16=W[i-16];var Wi16h=Wi16.high;var Wi16l=Wi16.low;Wil=gamma0l+Wi7l;Wih=gamma0h+Wi7h+((Wil>>>0)<(gamma0l>>>0)?1:0);Wil=Wil+gamma1l;Wih=Wih+gamma1h+((Wil>>>0)<(gamma1l>>>0)?1:0);Wil=Wil+Wi16l;Wih=Wih+Wi16h+((Wil>>>0)<(Wi16l>>>0)?1:0);Wi.high=Wih;Wi.low=Wil}var chh=(eh&fh)^(~eh&gh);var chl=(el&fl)^(~el&gl);var majh=(ah&bh)^(ah&ch)^(bh&ch);var majl=(al&bl)^(al&cl)^(bl&cl);var sigma0h=((ah>>>28)|(al<<4))^((ah<<30)|(al>>>2))^((ah<<25)|(al>>>7));var sigma0l=((al>>>28)|(ah<<4))^((al<<30)|(ah>>>2))^((al<<25)|(ah>>>7));var sigma1h=((eh>>>14)|(el<<18))^((eh>>>18)|(el<<14))^((eh<<23)|(el>>>9));var sigma1l=((el>>>14)|(eh<<18))^((el>>>18)|(eh<<14))^((el<<23)|(eh>>>9));var Ki=K[i];var Kih=Ki.high;var Kil=Ki.low;var t1l=hl+sigma1l;var t1h=hh+sigma1h+((t1l>>>0)<(hl>>>0)?1:0);var t1l=t1l+chl;var t1h=t1h+chh+((t1l>>>0)<(chl>>>0)?1:0);var t1l=t1l+Kil;var t1h=t1h+Kih+((t1l>>>0)<(Kil>>>0)?1:0);var t1l=t1l+Wil;var t1h=t1h+Wih+((t1l>>>0)<(Wil>>>0)?1:0);var t2l=sigma0l+majl;var t2h=sigma0h+majh+((t2l>>>0)<(sigma0l>>>0)?1:0);hh=gh;hl=gl;gh=fh;gl=fl;fh=eh;fl=el;el=(dl+t1l)|0;eh=(dh+t1h+((el>>>0)<(dl>>>0)?1:0))|0;dh=ch;dl=cl;ch=bh;cl=bl;bh=ah;bl=al;al=(t1l+t2l)|0;ah=(t1h+t2h+((al>>>0)<(t1l>>>0)?1:0))|0}H0l=H0.low=(H0l+al);H0.high=(H0h+ah+((H0l>>>0)<(al>>>0)?1:0));H1l=H1.low=(H1l+bl);H1.high=(H1h+bh+((H1l>>>0)<(bl>>>0)?1:0));H2l=H2.low=(H2l+cl);H2.high=(H2h+ch+((H2l>>>0)<(cl>>>0)?1:0));H3l=H3.low=(H3l+dl);H3.high=(H3h+dh+((H3l>>>0)<(dl>>>0)?1:0));H4l=H4.low=(H4l+el);H4.high=(H4h+eh+((H4l>>>0)<(el>>>0)?1:0));H5l=H5.low=(H5l+fl);H5.high=(H5h+fh+((H5l>>>0)<(fl>>>0)?1:0));H6l=H6.low=(H6l+gl);H6.high=(H6h+gh+((H6l>>>0)<(gl>>>0)?1:0));H7l=H7.low=(H7l+hl);H7.high=(H7h+hh+((H7l>>>0)<(hl>>>0)?1:0))},_doFinalize:function(){var data=this._data;var dataWords=data.words;var nBitsTotal=this._nDataBytes*8;var nBitsLeft=data.sigBytes*8;dataWords[nBitsLeft>>>5]|=0x80<<(24-nBitsLeft%32);dataWords[(((nBitsLeft+128)>>>10)<<5)+30]=Math.floor(nBitsTotal/0x100000000);dataWords[(((nBitsLeft+128)>>>10)<<5)+31]=nBitsTotal;data.sigBytes=dataWords.length*4;this._process();var hash=this._hash.toX32();return hash},clone:function(){var clone=Hasher.clone.call(this);clone._hash=this._hash.clone();return clone},blockSize:1024/32});C.SHA512=Hasher._createHelper(SHA512);C.HmacSHA512=Hasher._createHmacHelper(SHA512)}());(function(){var C=CryptoJS;var C_x64=C.x64;var X64Word=C_x64.Word;var X64WordArray=C_x64.WordArray;var C_algo=C.algo;var SHA512=C_algo.SHA512;var SHA384=C_algo.SHA384=SHA512.extend({_doReset:function(){this._hash=new X64WordArray.init([new X64Word.init(0xcbbb9d5d,0xc1059ed8),new X64Word.init(0x629a292a,0x367cd507),new X64Word.init(0x9159015a,0x3070dd17),new X64Word.init(0x152fecd8,0xf70e5939),new X64Word.init(0x67332667,0xffc00b31),new X64Word.init(0x8eb44a87,0x68581511),new X64Word.init(0xdb0c2e0d,0x64f98fa7),new X64Word.init(0x47b5481d,0xbefa4fa4)])},_doFinalize:function(){var hash=SHA512._doFinalize.call(this);hash.sigBytes-=16;return hash}});C.SHA384=SHA512._createHelper(SHA384);C.HmacSHA384=SHA512._createHmacHelper(SHA384)}());CryptoJS.lib.Cipher||(function(undefined){var C=CryptoJS;var C_lib=C.lib;var Base=C_lib.Base;var WordArray=C_lib.WordArray;var BufferedBlockAlgorithm=C_lib.BufferedBlockAlgorithm;var C_enc=C.enc;var Utf8=C_enc.Utf8;var Base64=C_enc.Base64;var C_algo=C.algo;var EvpKDF=C_algo.EvpKDF;var Cipher=C_lib.Cipher=BufferedBlockAlgorithm.extend({cfg:Base.extend(),createEncryptor:function(key,cfg){return this.create(this._ENC_XFORM_MODE,key,cfg)},createDecryptor:function(key,cfg){return this.create(this._DEC_XFORM_MODE,key,cfg)},init:function(xformMode,key,cfg){this.cfg=this.cfg.extend(cfg);this._xformMode=xformMode;this._key=key;this.reset()},reset:function(){BufferedBlockAlgorithm.reset.call(this);this._doReset()},process:function(dataUpdate){this._append(dataUpdate);return this._process()},finalize:function(dataUpdate){if(dataUpdate){this._append(dataUpdate)}var finalProcessedData=this._doFinalize();return finalProcessedData},keySize:128/32,ivSize:128/32,_ENC_XFORM_MODE:1,_DEC_XFORM_MODE:2,_createHelper:(function(){function selectCipherStrategy(key){if(typeof key=='string'){return PasswordBasedCipher}else{return SerializableCipher}}return function(cipher){return{encrypt:function(message,key,cfg){return selectCipherStrategy(key).encrypt(cipher,message,key,cfg)},decrypt:function(ciphertext,key,cfg){return selectCipherStrategy(key).decrypt(cipher,ciphertext,key,cfg)}}}}())});var StreamCipher=C_lib.StreamCipher=Cipher.extend({_doFinalize:function(){var finalProcessedBlocks=this._process(!!'flush');return finalProcessedBlocks},blockSize:1});var C_mode=C.mode={};var BlockCipherMode=C_lib.BlockCipherMode=Base.extend({createEncryptor:function(cipher,iv){return this.Encryptor.create(cipher,iv)},createDecryptor:function(cipher,iv){return this.Decryptor.create(cipher,iv)},init:function(cipher,iv){this._cipher=cipher;this._iv=iv}});var CBC=C_mode.CBC=(function(){var CBC=BlockCipherMode.extend();CBC.Encryptor=CBC.extend({processBlock:function(words,offset){var cipher=this._cipher;var blockSize=cipher.blockSize;xorBlock.call(this,words,offset,blockSize);cipher.encryptBlock(words,offset);this._prevBlock=words.slice(offset,offset+blockSize)}});CBC.Decryptor=CBC.extend({processBlock:function(words,offset){var cipher=this._cipher;var blockSize=cipher.blockSize;var thisBlock=words.slice(offset,offset+blockSize);cipher.decryptBlock(words,offset);xorBlock.call(this,words,offset,blockSize);this._prevBlock=thisBlock}});function xorBlock(words,offset,blockSize){var block;var iv=this._iv;if(iv){block=iv;this._iv=undefined}else{block=this._prevBlock}for(var i=0;i>>2]&0xff;data.sigBytes-=nPaddingBytes}};var BlockCipher=C_lib.BlockCipher=Cipher.extend({cfg:Cipher.cfg.extend({mode:CBC,padding:Pkcs7}),reset:function(){var modeCreator;Cipher.reset.call(this);var cfg=this.cfg;var iv=cfg.iv;var mode=cfg.mode;if(this._xformMode==this._ENC_XFORM_MODE){modeCreator=mode.createEncryptor}else{modeCreator=mode.createDecryptor;this._minBufferSize=1}if(this._mode&&this._mode.__creator==modeCreator){this._mode.init(this,iv&&iv.words)}else{this._mode=modeCreator.call(mode,this,iv&&iv.words);this._mode.__creator=modeCreator}},_doProcessBlock:function(words,offset){this._mode.processBlock(words,offset)},_doFinalize:function(){var finalProcessedBlocks;var padding=this.cfg.padding;if(this._xformMode==this._ENC_XFORM_MODE){padding.pad(this._data,this.blockSize);finalProcessedBlocks=this._process(!!'flush')}else{finalProcessedBlocks=this._process(!!'flush');padding.unpad(finalProcessedBlocks)}return finalProcessedBlocks},blockSize:128/32});var CipherParams=C_lib.CipherParams=Base.extend({init:function(cipherParams){this.mixIn(cipherParams)},toString:function(formatter){return(formatter||this.formatter).stringify(this)}});var C_format=C.format={};var OpenSSLFormatter=C_format.OpenSSL={stringify:function(cipherParams){var wordArray;var ciphertext=cipherParams.ciphertext;var salt=cipherParams.salt;if(salt){wordArray=WordArray.create([0x53616c74,0x65645f5f]).concat(salt).concat(ciphertext)}else{wordArray=ciphertext}return wordArray.toString(Base64)},parse:function(openSSLStr){var salt;var ciphertext=Base64.parse(openSSLStr);var ciphertextWords=ciphertext.words;if(ciphertextWords[0]==0x53616c74&&ciphertextWords[1]==0x65645f5f){salt=WordArray.create(ciphertextWords.slice(2,4));ciphertextWords.splice(0,4);ciphertext.sigBytes-=16}return CipherParams.create({ciphertext:ciphertext,salt:salt})}};var SerializableCipher=C_lib.SerializableCipher=Base.extend({cfg:Base.extend({format:OpenSSLFormatter}),encrypt:function(cipher,message,key,cfg){cfg=this.cfg.extend(cfg);var encryptor=cipher.createEncryptor(key,cfg);var ciphertext=encryptor.finalize(message);var cipherCfg=encryptor.cfg;return CipherParams.create({ciphertext:ciphertext,key:key,iv:cipherCfg.iv,algorithm:cipher,mode:cipherCfg.mode,padding:cipherCfg.padding,blockSize:cipher.blockSize,formatter:cfg.format})},decrypt:function(cipher,ciphertext,key,cfg){cfg=this.cfg.extend(cfg);ciphertext=this._parse(ciphertext,cfg.format);var plaintext=cipher.createDecryptor(key,cfg).finalize(ciphertext.ciphertext);return plaintext},_parse:function(ciphertext,format){if(typeof ciphertext=='string'){return format.parse(ciphertext,this)}else{return ciphertext}}});var C_kdf=C.kdf={};var OpenSSLKdf=C_kdf.OpenSSL={execute:function(password,keySize,ivSize,salt){if(!salt){salt=WordArray.random(64/8)}var key=EvpKDF.create({keySize:keySize+ivSize}).compute(password,salt);var iv=WordArray.create(key.words.slice(keySize),ivSize*4);key.sigBytes=keySize*4;return CipherParams.create({key:key,iv:iv,salt:salt})}};var PasswordBasedCipher=C_lib.PasswordBasedCipher=SerializableCipher.extend({cfg:SerializableCipher.cfg.extend({kdf:OpenSSLKdf}),encrypt:function(cipher,message,password,cfg){cfg=this.cfg.extend(cfg);var derivedParams=cfg.kdf.execute(password,cipher.keySize,cipher.ivSize);cfg.iv=derivedParams.iv;var ciphertext=SerializableCipher.encrypt.call(this,cipher,message,derivedParams.key,cfg);ciphertext.mixIn(derivedParams);return ciphertext},decrypt:function(cipher,ciphertext,password,cfg){cfg=this.cfg.extend(cfg);ciphertext=this._parse(ciphertext,cfg.format);var derivedParams=cfg.kdf.execute(password,cipher.keySize,cipher.ivSize,ciphertext.salt);cfg.iv=derivedParams.iv;var plaintext=SerializableCipher.decrypt.call(this,cipher,ciphertext,derivedParams.key,cfg);return plaintext}})}());CryptoJS.mode.CFB=(function(){var CFB=CryptoJS.lib.BlockCipherMode.extend();CFB.Encryptor=CFB.extend({processBlock:function(words,offset){var cipher=this._cipher;var blockSize=cipher.blockSize;generateKeystreamAndEncrypt.call(this,words,offset,blockSize,cipher);this._prevBlock=words.slice(offset,offset+blockSize)}});CFB.Decryptor=CFB.extend({processBlock:function(words,offset){var cipher=this._cipher;var blockSize=cipher.blockSize;var thisBlock=words.slice(offset,offset+blockSize);generateKeystreamAndEncrypt.call(this,words,offset,blockSize,cipher);this._prevBlock=thisBlock}});function generateKeystreamAndEncrypt(words,offset,blockSize,cipher){var keystream;var iv=this._iv;if(iv){keystream=iv.slice(0);this._iv=undefined}else{keystream=this._prevBlock}cipher.encryptBlock(keystream,0);for(var i=0;i>>2]|=nPaddingBytes<<(24-(lastBytePos%4)*8);data.sigBytes+=nPaddingBytes},unpad:function(data){var nPaddingBytes=data.words[(data.sigBytes-1)>>>2]&0xff;data.sigBytes-=nPaddingBytes}};CryptoJS.pad.Iso10126={pad:function(data,blockSize){var blockSizeBytes=blockSize*4;var nPaddingBytes=blockSizeBytes-data.sigBytes%blockSizeBytes;data.concat(CryptoJS.lib.WordArray.random(nPaddingBytes-1)).concat(CryptoJS.lib.WordArray.create([nPaddingBytes<<24],1))},unpad:function(data){var nPaddingBytes=data.words[(data.sigBytes-1)>>>2]&0xff;data.sigBytes-=nPaddingBytes}};CryptoJS.pad.Iso97971={pad:function(data,blockSize){data.concat(CryptoJS.lib.WordArray.create([0x80000000],1));CryptoJS.pad.ZeroPadding.pad(data,blockSize)},unpad:function(data){CryptoJS.pad.ZeroPadding.unpad(data);data.sigBytes--}};CryptoJS.mode.OFB=(function(){var OFB=CryptoJS.lib.BlockCipherMode.extend();var Encryptor=OFB.Encryptor=OFB.extend({processBlock:function(words,offset){var cipher=this._cipher;var blockSize=cipher.blockSize;var iv=this._iv;var keystream=this._keystream;if(iv){keystream=this._keystream=iv.slice(0);this._iv=undefined}cipher.encryptBlock(keystream,0);for(var i=0;i>>8)^(sx&0xff)^0x63;SBOX[x]=sx;INV_SBOX[sx]=x;var x2=d[x];var x4=d[x2];var x8=d[x4];var t=(d[sx]*0x101)^(sx*0x1010100);SUB_MIX_0[x]=(t<<24)|(t>>>8);SUB_MIX_1[x]=(t<<16)|(t>>>16);SUB_MIX_2[x]=(t<<8)|(t>>>24);SUB_MIX_3[x]=t;var t=(x8*0x1010101)^(x4*0x10001)^(x2*0x101)^(x*0x1010100);INV_SUB_MIX_0[sx]=(t<<24)|(t>>>8);INV_SUB_MIX_1[sx]=(t<<16)|(t>>>16);INV_SUB_MIX_2[sx]=(t<<8)|(t>>>24);INV_SUB_MIX_3[sx]=t;if(!x){x=xi=1}else{x=x2^d[d[d[x8^x2]]];xi^=d[d[xi]]}}}());var RCON=[0x00,0x01,0x02,0x04,0x08,0x10,0x20,0x40,0x80,0x1b,0x36];var AES=C_algo.AES=BlockCipher.extend({_doReset:function(){var t;if(this._nRounds&&this._keyPriorReset===this._key){return}var key=this._keyPriorReset=this._key;var keyWords=key.words;var keySize=key.sigBytes/4;var nRounds=this._nRounds=keySize+6;var ksRows=(nRounds+1)*4;var keySchedule=this._keySchedule=[];for(var ksRow=0;ksRow>>24);t=(SBOX[t>>>24]<<24)|(SBOX[(t>>>16)&0xff]<<16)|(SBOX[(t>>>8)&0xff]<<8)|SBOX[t&0xff];t^=RCON[(ksRow/keySize)|0]<<24}else if(keySize>6&&ksRow%keySize==4){t=(SBOX[t>>>24]<<24)|(SBOX[(t>>>16)&0xff]<<16)|(SBOX[(t>>>8)&0xff]<<8)|SBOX[t&0xff]}keySchedule[ksRow]=keySchedule[ksRow-keySize]^t}}var invKeySchedule=this._invKeySchedule=[];for(var invKsRow=0;invKsRow>>24]]^INV_SUB_MIX_1[SBOX[(t>>>16)&0xff]]^INV_SUB_MIX_2[SBOX[(t>>>8)&0xff]]^INV_SUB_MIX_3[SBOX[t&0xff]]}}},encryptBlock:function(M,offset){this._doCryptBlock(M,offset,this._keySchedule,SUB_MIX_0,SUB_MIX_1,SUB_MIX_2,SUB_MIX_3,SBOX)},decryptBlock:function(M,offset){var t=M[offset+1];M[offset+1]=M[offset+3];M[offset+3]=t;this._doCryptBlock(M,offset,this._invKeySchedule,INV_SUB_MIX_0,INV_SUB_MIX_1,INV_SUB_MIX_2,INV_SUB_MIX_3,INV_SBOX);var t=M[offset+1];M[offset+1]=M[offset+3];M[offset+3]=t},_doCryptBlock:function(M,offset,keySchedule,SUB_MIX_0,SUB_MIX_1,SUB_MIX_2,SUB_MIX_3,SBOX){var nRounds=this._nRounds;var s0=M[offset]^keySchedule[0];var s1=M[offset+1]^keySchedule[1];var s2=M[offset+2]^keySchedule[2];var s3=M[offset+3]^keySchedule[3];var ksRow=4;for(var round=1;round>>24]^SUB_MIX_1[(s1>>>16)&0xff]^SUB_MIX_2[(s2>>>8)&0xff]^SUB_MIX_3[s3&0xff]^keySchedule[ksRow++];var t1=SUB_MIX_0[s1>>>24]^SUB_MIX_1[(s2>>>16)&0xff]^SUB_MIX_2[(s3>>>8)&0xff]^SUB_MIX_3[s0&0xff]^keySchedule[ksRow++];var t2=SUB_MIX_0[s2>>>24]^SUB_MIX_1[(s3>>>16)&0xff]^SUB_MIX_2[(s0>>>8)&0xff]^SUB_MIX_3[s1&0xff]^keySchedule[ksRow++];var t3=SUB_MIX_0[s3>>>24]^SUB_MIX_1[(s0>>>16)&0xff]^SUB_MIX_2[(s1>>>8)&0xff]^SUB_MIX_3[s2&0xff]^keySchedule[ksRow++];s0=t0;s1=t1;s2=t2;s3=t3}var t0=((SBOX[s0>>>24]<<24)|(SBOX[(s1>>>16)&0xff]<<16)|(SBOX[(s2>>>8)&0xff]<<8)|SBOX[s3&0xff])^keySchedule[ksRow++];var t1=((SBOX[s1>>>24]<<24)|(SBOX[(s2>>>16)&0xff]<<16)|(SBOX[(s3>>>8)&0xff]<<8)|SBOX[s0&0xff])^keySchedule[ksRow++];var t2=((SBOX[s2>>>24]<<24)|(SBOX[(s3>>>16)&0xff]<<16)|(SBOX[(s0>>>8)&0xff]<<8)|SBOX[s1&0xff])^keySchedule[ksRow++];var t3=((SBOX[s3>>>24]<<24)|(SBOX[(s0>>>16)&0xff]<<16)|(SBOX[(s1>>>8)&0xff]<<8)|SBOX[s2&0xff])^keySchedule[ksRow++];M[offset]=t0;M[offset+1]=t1;M[offset+2]=t2;M[offset+3]=t3},keySize:256/32});C.AES=BlockCipher._createHelper(AES)}());(function(){var C=CryptoJS;var C_lib=C.lib;var WordArray=C_lib.WordArray;var BlockCipher=C_lib.BlockCipher;var C_algo=C.algo;var PC1=[57,49,41,33,25,17,9,1,58,50,42,34,26,18,10,2,59,51,43,35,27,19,11,3,60,52,44,36,63,55,47,39,31,23,15,7,62,54,46,38,30,22,14,6,61,53,45,37,29,21,13,5,28,20,12,4];var PC2=[14,17,11,24,1,5,3,28,15,6,21,10,23,19,12,4,26,8,16,7,27,20,13,2,41,52,31,37,47,55,30,40,51,45,33,48,44,49,39,56,34,53,46,42,50,36,29,32];var BIT_SHIFTS=[1,2,4,6,8,10,12,14,15,17,19,21,23,25,27,28];var SBOX_P=[{0x0:0x808200,0x10000000:0x8000,0x20000000:0x808002,0x30000000:0x2,0x40000000:0x200,0x50000000:0x808202,0x60000000:0x800202,0x70000000:0x800000,0x80000000:0x202,0x90000000:0x800200,0xa0000000:0x8200,0xb0000000:0x808000,0xc0000000:0x8002,0xd0000000:0x800002,0xe0000000:0x0,0xf0000000:0x8202,0x8000000:0x0,0x18000000:0x808202,0x28000000:0x8202,0x38000000:0x8000,0x48000000:0x808200,0x58000000:0x200,0x68000000:0x808002,0x78000000:0x2,0x88000000:0x800200,0x98000000:0x8200,0xa8000000:0x808000,0xb8000000:0x800202,0xc8000000:0x800002,0xd8000000:0x8002,0xe8000000:0x202,0xf8000000:0x800000,0x1:0x8000,0x10000001:0x2,0x20000001:0x808200,0x30000001:0x800000,0x40000001:0x808002,0x50000001:0x8200,0x60000001:0x200,0x70000001:0x800202,0x80000001:0x808202,0x90000001:0x808000,0xa0000001:0x800002,0xb0000001:0x8202,0xc0000001:0x202,0xd0000001:0x800200,0xe0000001:0x8002,0xf0000001:0x0,0x8000001:0x808202,0x18000001:0x808000,0x28000001:0x800000,0x38000001:0x200,0x48000001:0x8000,0x58000001:0x800002,0x68000001:0x2,0x78000001:0x8202,0x88000001:0x8002,0x98000001:0x800202,0xa8000001:0x202,0xb8000001:0x808200,0xc8000001:0x800200,0xd8000001:0x0,0xe8000001:0x8200,0xf8000001:0x808002},{0x0:0x40084010,0x1000000:0x4000,0x2000000:0x80000,0x3000000:0x40080010,0x4000000:0x40000010,0x5000000:0x40084000,0x6000000:0x40004000,0x7000000:0x10,0x8000000:0x84000,0x9000000:0x40004010,0xa000000:0x40000000,0xb000000:0x84010,0xc000000:0x80010,0xd000000:0x0,0xe000000:0x4010,0xf000000:0x40080000,0x800000:0x40004000,0x1800000:0x84010,0x2800000:0x10,0x3800000:0x40004010,0x4800000:0x40084010,0x5800000:0x40000000,0x6800000:0x80000,0x7800000:0x40080010,0x8800000:0x80010,0x9800000:0x0,0xa800000:0x4000,0xb800000:0x40080000,0xc800000:0x40000010,0xd800000:0x84000,0xe800000:0x40084000,0xf800000:0x4010,0x10000000:0x0,0x11000000:0x40080010,0x12000000:0x40004010,0x13000000:0x40084000,0x14000000:0x40080000,0x15000000:0x10,0x16000000:0x84010,0x17000000:0x4000,0x18000000:0x4010,0x19000000:0x80000,0x1a000000:0x80010,0x1b000000:0x40000010,0x1c000000:0x84000,0x1d000000:0x40004000,0x1e000000:0x40000000,0x1f000000:0x40084010,0x10800000:0x84010,0x11800000:0x80000,0x12800000:0x40080000,0x13800000:0x4000,0x14800000:0x40004000,0x15800000:0x40084010,0x16800000:0x10,0x17800000:0x40000000,0x18800000:0x40084000,0x19800000:0x40000010,0x1a800000:0x40004010,0x1b800000:0x80010,0x1c800000:0x0,0x1d800000:0x4010,0x1e800000:0x40080010,0x1f800000:0x84000},{0x0:0x104,0x100000:0x0,0x200000:0x4000100,0x300000:0x10104,0x400000:0x10004,0x500000:0x4000004,0x600000:0x4010104,0x700000:0x4010000,0x800000:0x4000000,0x900000:0x4010100,0xa00000:0x10100,0xb00000:0x4010004,0xc00000:0x4000104,0xd00000:0x10000,0xe00000:0x4,0xf00000:0x100,0x80000:0x4010100,0x180000:0x4010004,0x280000:0x0,0x380000:0x4000100,0x480000:0x4000004,0x580000:0x10000,0x680000:0x10004,0x780000:0x104,0x880000:0x4,0x980000:0x100,0xa80000:0x4010000,0xb80000:0x10104,0xc80000:0x10100,0xd80000:0x4000104,0xe80000:0x4010104,0xf80000:0x4000000,0x1000000:0x4010100,0x1100000:0x10004,0x1200000:0x10000,0x1300000:0x4000100,0x1400000:0x100,0x1500000:0x4010104,0x1600000:0x4000004,0x1700000:0x0,0x1800000:0x4000104,0x1900000:0x4000000,0x1a00000:0x4,0x1b00000:0x10100,0x1c00000:0x4010000,0x1d00000:0x104,0x1e00000:0x10104,0x1f00000:0x4010004,0x1080000:0x4000000,0x1180000:0x104,0x1280000:0x4010100,0x1380000:0x0,0x1480000:0x10004,0x1580000:0x4000100,0x1680000:0x100,0x1780000:0x4010004,0x1880000:0x10000,0x1980000:0x4010104,0x1a80000:0x10104,0x1b80000:0x4000004,0x1c80000:0x4000104,0x1d80000:0x4010000,0x1e80000:0x4,0x1f80000:0x10100},{0x0:0x80401000,0x10000:0x80001040,0x20000:0x401040,0x30000:0x80400000,0x40000:0x0,0x50000:0x401000,0x60000:0x80000040,0x70000:0x400040,0x80000:0x80000000,0x90000:0x400000,0xa0000:0x40,0xb0000:0x80001000,0xc0000:0x80400040,0xd0000:0x1040,0xe0000:0x1000,0xf0000:0x80401040,0x8000:0x80001040,0x18000:0x40,0x28000:0x80400040,0x38000:0x80001000,0x48000:0x401000,0x58000:0x80401040,0x68000:0x0,0x78000:0x80400000,0x88000:0x1000,0x98000:0x80401000,0xa8000:0x400000,0xb8000:0x1040,0xc8000:0x80000000,0xd8000:0x400040,0xe8000:0x401040,0xf8000:0x80000040,0x100000:0x400040,0x110000:0x401000,0x120000:0x80000040,0x130000:0x0,0x140000:0x1040,0x150000:0x80400040,0x160000:0x80401000,0x170000:0x80001040,0x180000:0x80401040,0x190000:0x80000000,0x1a0000:0x80400000,0x1b0000:0x401040,0x1c0000:0x80001000,0x1d0000:0x400000,0x1e0000:0x40,0x1f0000:0x1000,0x108000:0x80400000,0x118000:0x80401040,0x128000:0x0,0x138000:0x401000,0x148000:0x400040,0x158000:0x80000000,0x168000:0x80001040,0x178000:0x40,0x188000:0x80000040,0x198000:0x1000,0x1a8000:0x80001000,0x1b8000:0x80400040,0x1c8000:0x1040,0x1d8000:0x80401000,0x1e8000:0x400000,0x1f8000:0x401040},{0x0:0x80,0x1000:0x1040000,0x2000:0x40000,0x3000:0x20000000,0x4000:0x20040080,0x5000:0x1000080,0x6000:0x21000080,0x7000:0x40080,0x8000:0x1000000,0x9000:0x20040000,0xa000:0x20000080,0xb000:0x21040080,0xc000:0x21040000,0xd000:0x0,0xe000:0x1040080,0xf000:0x21000000,0x800:0x1040080,0x1800:0x21000080,0x2800:0x80,0x3800:0x1040000,0x4800:0x40000,0x5800:0x20040080,0x6800:0x21040000,0x7800:0x20000000,0x8800:0x20040000,0x9800:0x0,0xa800:0x21040080,0xb800:0x1000080,0xc800:0x20000080,0xd800:0x21000000,0xe800:0x1000000,0xf800:0x40080,0x10000:0x40000,0x11000:0x80,0x12000:0x20000000,0x13000:0x21000080,0x14000:0x1000080,0x15000:0x21040000,0x16000:0x20040080,0x17000:0x1000000,0x18000:0x21040080,0x19000:0x21000000,0x1a000:0x1040000,0x1b000:0x20040000,0x1c000:0x40080,0x1d000:0x20000080,0x1e000:0x0,0x1f000:0x1040080,0x10800:0x21000080,0x11800:0x1000000,0x12800:0x1040000,0x13800:0x20040080,0x14800:0x20000000,0x15800:0x1040080,0x16800:0x80,0x17800:0x21040000,0x18800:0x40080,0x19800:0x21040080,0x1a800:0x0,0x1b800:0x21000000,0x1c800:0x1000080,0x1d800:0x40000,0x1e800:0x20040000,0x1f800:0x20000080},{0x0:0x10000008,0x100:0x2000,0x200:0x10200000,0x300:0x10202008,0x400:0x10002000,0x500:0x200000,0x600:0x200008,0x700:0x10000000,0x800:0x0,0x900:0x10002008,0xa00:0x202000,0xb00:0x8,0xc00:0x10200008,0xd00:0x202008,0xe00:0x2008,0xf00:0x10202000,0x80:0x10200000,0x180:0x10202008,0x280:0x8,0x380:0x200000,0x480:0x202008,0x580:0x10000008,0x680:0x10002000,0x780:0x2008,0x880:0x200008,0x980:0x2000,0xa80:0x10002008,0xb80:0x10200008,0xc80:0x0,0xd80:0x10202000,0xe80:0x202000,0xf80:0x10000000,0x1000:0x10002000,0x1100:0x10200008,0x1200:0x10202008,0x1300:0x2008,0x1400:0x200000,0x1500:0x10000000,0x1600:0x10000008,0x1700:0x202000,0x1800:0x202008,0x1900:0x0,0x1a00:0x8,0x1b00:0x10200000,0x1c00:0x2000,0x1d00:0x10002008,0x1e00:0x10202000,0x1f00:0x200008,0x1080:0x8,0x1180:0x202000,0x1280:0x200000,0x1380:0x10000008,0x1480:0x10002000,0x1580:0x2008,0x1680:0x10202008,0x1780:0x10200000,0x1880:0x10202000,0x1980:0x10200008,0x1a80:0x2000,0x1b80:0x202008,0x1c80:0x200008,0x1d80:0x0,0x1e80:0x10000000,0x1f80:0x10002008},{0x0:0x100000,0x10:0x2000401,0x20:0x400,0x30:0x100401,0x40:0x2100401,0x50:0x0,0x60:0x1,0x70:0x2100001,0x80:0x2000400,0x90:0x100001,0xa0:0x2000001,0xb0:0x2100400,0xc0:0x2100000,0xd0:0x401,0xe0:0x100400,0xf0:0x2000000,0x8:0x2100001,0x18:0x0,0x28:0x2000401,0x38:0x2100400,0x48:0x100000,0x58:0x2000001,0x68:0x2000000,0x78:0x401,0x88:0x100401,0x98:0x2000400,0xa8:0x2100000,0xb8:0x100001,0xc8:0x400,0xd8:0x2100401,0xe8:0x1,0xf8:0x100400,0x100:0x2000000,0x110:0x100000,0x120:0x2000401,0x130:0x2100001,0x140:0x100001,0x150:0x2000400,0x160:0x2100400,0x170:0x100401,0x180:0x401,0x190:0x2100401,0x1a0:0x100400,0x1b0:0x1,0x1c0:0x0,0x1d0:0x2100000,0x1e0:0x2000001,0x1f0:0x400,0x108:0x100400,0x118:0x2000401,0x128:0x2100001,0x138:0x1,0x148:0x2000000,0x158:0x100000,0x168:0x401,0x178:0x2100400,0x188:0x2000001,0x198:0x2100000,0x1a8:0x0,0x1b8:0x2100401,0x1c8:0x100401,0x1d8:0x400,0x1e8:0x2000400,0x1f8:0x100001},{0x0:0x8000820,0x1:0x20000,0x2:0x8000000,0x3:0x20,0x4:0x20020,0x5:0x8020820,0x6:0x8020800,0x7:0x800,0x8:0x8020000,0x9:0x8000800,0xa:0x20800,0xb:0x8020020,0xc:0x820,0xd:0x0,0xe:0x8000020,0xf:0x20820,0x80000000:0x800,0x80000001:0x8020820,0x80000002:0x8000820,0x80000003:0x8000000,0x80000004:0x8020000,0x80000005:0x20800,0x80000006:0x20820,0x80000007:0x20,0x80000008:0x8000020,0x80000009:0x820,0x8000000a:0x20020,0x8000000b:0x8020800,0x8000000c:0x0,0x8000000d:0x8020020,0x8000000e:0x8000800,0x8000000f:0x20000,0x10:0x20820,0x11:0x8020800,0x12:0x20,0x13:0x800,0x14:0x8000800,0x15:0x8000020,0x16:0x8020020,0x17:0x20000,0x18:0x0,0x19:0x20020,0x1a:0x8020000,0x1b:0x8000820,0x1c:0x8020820,0x1d:0x20800,0x1e:0x820,0x1f:0x8000000,0x80000010:0x20000,0x80000011:0x800,0x80000012:0x8020020,0x80000013:0x20820,0x80000014:0x20,0x80000015:0x8020000,0x80000016:0x8000000,0x80000017:0x8000820,0x80000018:0x8020820,0x80000019:0x8000020,0x8000001a:0x8000800,0x8000001b:0x0,0x8000001c:0x20800,0x8000001d:0x820,0x8000001e:0x20020,0x8000001f:0x8020800}];var SBOX_MASK=[0xf8000001,0x1f800000,0x01f80000,0x001f8000,0x0001f800,0x00001f80,0x000001f8,0x8000001f];var DES=C_algo.DES=BlockCipher.extend({_doReset:function(){var key=this._key;var keyWords=key.words;var keyBits=[];for(var i=0;i<56;i++){var keyBitPos=PC1[i]-1;keyBits[i]=(keyWords[keyBitPos>>>5]>>>(31-keyBitPos%32))&1}var subKeys=this._subKeys=[];for(var nSubKey=0;nSubKey<16;nSubKey++){var subKey=subKeys[nSubKey]=[];var bitShift=BIT_SHIFTS[nSubKey];for(var i=0;i<24;i++){subKey[(i/6)|0]|=keyBits[((PC2[i]-1)+bitShift)%28]<<(31-i%6);subKey[4+((i/6)|0)]|=keyBits[28+(((PC2[i+24]-1)+bitShift)%28)]<<(31-i%6)}subKey[0]=(subKey[0]<<1)|(subKey[0]>>>31);for(var i=1;i<7;i++){subKey[i]=subKey[i]>>>((i-1)*4+3)}subKey[7]=(subKey[7]<<5)|(subKey[7]>>>27)}var invSubKeys=this._invSubKeys=[];for(var i=0;i<16;i++){invSubKeys[i]=subKeys[15-i]}},encryptBlock:function(M,offset){this._doCryptBlock(M,offset,this._subKeys)},decryptBlock:function(M,offset){this._doCryptBlock(M,offset,this._invSubKeys)},_doCryptBlock:function(M,offset,subKeys){this._lBlock=M[offset];this._rBlock=M[offset+1];exchangeLR.call(this,4,0x0f0f0f0f);exchangeLR.call(this,16,0x0000ffff);exchangeRL.call(this,2,0x33333333);exchangeRL.call(this,8,0x00ff00ff);exchangeLR.call(this,1,0x55555555);for(var round=0;round<16;round++){var subKey=subKeys[round];var lBlock=this._lBlock;var rBlock=this._rBlock;var f=0;for(var i=0;i<8;i++){f|=SBOX_P[i][((rBlock^subKey[i])&SBOX_MASK[i])>>>0]}this._lBlock=rBlock;this._rBlock=lBlock^f}var t=this._lBlock;this._lBlock=this._rBlock;this._rBlock=t;exchangeLR.call(this,1,0x55555555);exchangeRL.call(this,8,0x00ff00ff);exchangeRL.call(this,2,0x33333333);exchangeLR.call(this,16,0x0000ffff);exchangeLR.call(this,4,0x0f0f0f0f);M[offset]=this._lBlock;M[offset+1]=this._rBlock},keySize:64/32,ivSize:64/32,blockSize:64/32});function exchangeLR(offset,mask){var t=((this._lBlock>>>offset)^this._rBlock)&mask;this._rBlock^=t;this._lBlock^=t<>>offset)^this._lBlock)&mask;this._lBlock^=t;this._rBlock^=t<192.');}var key1=keyWords.slice(0,2);var key2=keyWords.length<4?keyWords.slice(0,2):keyWords.slice(2,4);var key3=keyWords.length<6?keyWords.slice(0,2):keyWords.slice(4,6);this._des1=DES.createEncryptor(WordArray.create(key1));this._des2=DES.createEncryptor(WordArray.create(key2));this._des3=DES.createEncryptor(WordArray.create(key3))},encryptBlock:function(M,offset){this._des1.encryptBlock(M,offset);this._des2.decryptBlock(M,offset);this._des3.encryptBlock(M,offset)},decryptBlock:function(M,offset){this._des3.decryptBlock(M,offset);this._des2.encryptBlock(M,offset);this._des1.decryptBlock(M,offset)},keySize:192/32,ivSize:64/32,blockSize:64/32});C.TripleDES=BlockCipher._createHelper(TripleDES)}());(function(){var C=CryptoJS;var C_lib=C.lib;var StreamCipher=C_lib.StreamCipher;var C_algo=C.algo;var RC4=C_algo.RC4=StreamCipher.extend({_doReset:function(){var key=this._key;var keyWords=key.words;var keySigBytes=key.sigBytes;var S=this._S=[];for(var i=0;i<256;i++){S[i]=i}for(var i=0,j=0;i<256;i++){var keyByteIndex=i%keySigBytes;var keyByte=(keyWords[keyByteIndex>>>2]>>>(24-(keyByteIndex%4)*8))&0xff;j=(j+S[i]+keyByte)%256;var t=S[i];S[i]=S[j];S[j]=t}this._i=this._j=0},_doProcessBlock:function(M,offset){M[offset]^=generateKeystreamWord.call(this)},keySize:256/32,ivSize:0});function generateKeystreamWord(){var S=this._S;var i=this._i;var j=this._j;var keystreamWord=0;for(var n=0;n<4;n++){i=(i+1)%256;j=(j+S[i])%256;var t=S[i];S[i]=S[j];S[j]=t;keystreamWord|=S[(S[i]+S[j])%256]<<(24-n*8)}this._i=i;this._j=j;return keystreamWord}C.RC4=StreamCipher._createHelper(RC4);var RC4Drop=C_algo.RC4Drop=RC4.extend({cfg:RC4.cfg.extend({drop:192}),_doReset:function(){RC4._doReset.call(this);for(var i=this.cfg.drop;i>0;i--){generateKeystreamWord.call(this)}}});C.RC4Drop=StreamCipher._createHelper(RC4Drop)}());CryptoJS.mode.CTRGladman=(function(){var CTRGladman=CryptoJS.lib.BlockCipherMode.extend();function incWord(word){if(((word>>24)&0xff)===0xff){var b1=(word>>16)&0xff;var b2=(word>>8)&0xff;var b3=word&0xff;if(b1===0xff){b1=0;if(b2===0xff){b2=0;if(b3===0xff){b3=0}else{++b3}}else{++b2}}else{++b1}word=0;word+=(b1<<16);word+=(b2<<8);word+=b3}else{word+=(0x01<<24)}return word}function incCounter(counter){if((counter[0]=incWord(counter[0]))===0){counter[1]=incWord(counter[1])}return counter}var Encryptor=CTRGladman.Encryptor=CTRGladman.extend({processBlock:function(words,offset){var cipher=this._cipher;var blockSize=cipher.blockSize;var iv=this._iv;var counter=this._counter;if(iv){counter=this._counter=iv.slice(0);this._iv=undefined}incCounter(counter);var keystream=counter.slice(0);cipher.encryptBlock(keystream,0);for(var i=0;i>>24))&0x00ff00ff)|(((K[i]<<24)|(K[i]>>>8))&0xff00ff00)}var X=this._X=[K[0],(K[3]<<16)|(K[2]>>>16),K[1],(K[0]<<16)|(K[3]>>>16),K[2],(K[1]<<16)|(K[0]>>>16),K[3],(K[2]<<16)|(K[1]>>>16)];var C=this._C=[(K[2]<<16)|(K[2]>>>16),(K[0]&0xffff0000)|(K[1]&0x0000ffff),(K[3]<<16)|(K[3]>>>16),(K[1]&0xffff0000)|(K[2]&0x0000ffff),(K[0]<<16)|(K[0]>>>16),(K[2]&0xffff0000)|(K[3]&0x0000ffff),(K[1]<<16)|(K[1]>>>16),(K[3]&0xffff0000)|(K[0]&0x0000ffff)];this._b=0;for(var i=0;i<4;i++){nextState.call(this)}for(var i=0;i<8;i++){C[i]^=X[(i+4)&7]}if(iv){var IV=iv.words;var IV_0=IV[0];var IV_1=IV[1];var i0=(((IV_0<<8)|(IV_0>>>24))&0x00ff00ff)|(((IV_0<<24)|(IV_0>>>8))&0xff00ff00);var i2=(((IV_1<<8)|(IV_1>>>24))&0x00ff00ff)|(((IV_1<<24)|(IV_1>>>8))&0xff00ff00);var i1=(i0>>>16)|(i2&0xffff0000);var i3=(i2<<16)|(i0&0x0000ffff);C[0]^=i0;C[1]^=i1;C[2]^=i2;C[3]^=i3;C[4]^=i0;C[5]^=i1;C[6]^=i2;C[7]^=i3;for(var i=0;i<4;i++){nextState.call(this)}}},_doProcessBlock:function(M,offset){var X=this._X;nextState.call(this);S[0]=X[0]^(X[5]>>>16)^(X[3]<<16);S[1]=X[2]^(X[7]>>>16)^(X[5]<<16);S[2]=X[4]^(X[1]>>>16)^(X[7]<<16);S[3]=X[6]^(X[3]>>>16)^(X[1]<<16);for(var i=0;i<4;i++){S[i]=(((S[i]<<8)|(S[i]>>>24))&0x00ff00ff)|(((S[i]<<24)|(S[i]>>>8))&0xff00ff00);M[offset+i]^=S[i]}},blockSize:128/32,ivSize:64/32});function nextState(){var X=this._X;var C=this._C;for(var i=0;i<8;i++){C_[i]=C[i]}C[0]=(C[0]+0x4d34d34d+this._b)|0;C[1]=(C[1]+0xd34d34d3+((C[0]>>>0)<(C_[0]>>>0)?1:0))|0;C[2]=(C[2]+0x34d34d34+((C[1]>>>0)<(C_[1]>>>0)?1:0))|0;C[3]=(C[3]+0x4d34d34d+((C[2]>>>0)<(C_[2]>>>0)?1:0))|0;C[4]=(C[4]+0xd34d34d3+((C[3]>>>0)<(C_[3]>>>0)?1:0))|0;C[5]=(C[5]+0x34d34d34+((C[4]>>>0)<(C_[4]>>>0)?1:0))|0;C[6]=(C[6]+0x4d34d34d+((C[5]>>>0)<(C_[5]>>>0)?1:0))|0;C[7]=(C[7]+0xd34d34d3+((C[6]>>>0)<(C_[6]>>>0)?1:0))|0;this._b=(C[7]>>>0)<(C_[7]>>>0)?1:0;for(var i=0;i<8;i++){var gx=X[i]+C[i];var ga=gx&0xffff;var gb=gx>>>16;var gh=((((ga*ga)>>>17)+ga*gb)>>>15)+gb*gb;var gl=(((gx&0xffff0000)*gx)|0)+(((gx&0x0000ffff)*gx)|0);G[i]=gh^gl}X[0]=(G[0]+((G[7]<<16)|(G[7]>>>16))+((G[6]<<16)|(G[6]>>>16)))|0;X[1]=(G[1]+((G[0]<<8)|(G[0]>>>24))+G[7])|0;X[2]=(G[2]+((G[1]<<16)|(G[1]>>>16))+((G[0]<<16)|(G[0]>>>16)))|0;X[3]=(G[3]+((G[2]<<8)|(G[2]>>>24))+G[1])|0;X[4]=(G[4]+((G[3]<<16)|(G[3]>>>16))+((G[2]<<16)|(G[2]>>>16)))|0;X[5]=(G[5]+((G[4]<<8)|(G[4]>>>24))+G[3])|0;X[6]=(G[6]+((G[5]<<16)|(G[5]>>>16))+((G[4]<<16)|(G[4]>>>16)))|0;X[7]=(G[7]+((G[6]<<8)|(G[6]>>>24))+G[5])|0}C.Rabbit=StreamCipher._createHelper(Rabbit)}());CryptoJS.mode.CTR=(function(){var CTR=CryptoJS.lib.BlockCipherMode.extend();var Encryptor=CTR.Encryptor=CTR.extend({processBlock:function(words,offset){var cipher=this._cipher;var blockSize=cipher.blockSize;var iv=this._iv;var counter=this._counter;if(iv){counter=this._counter=iv.slice(0);this._iv=undefined}var keystream=counter.slice(0);cipher.encryptBlock(keystream,0);counter[blockSize-1]=(counter[blockSize-1]+1)|0;for(var i=0;i>>16),K[1],(K[0]<<16)|(K[3]>>>16),K[2],(K[1]<<16)|(K[0]>>>16),K[3],(K[2]<<16)|(K[1]>>>16)];var C=this._C=[(K[2]<<16)|(K[2]>>>16),(K[0]&0xffff0000)|(K[1]&0x0000ffff),(K[3]<<16)|(K[3]>>>16),(K[1]&0xffff0000)|(K[2]&0x0000ffff),(K[0]<<16)|(K[0]>>>16),(K[2]&0xffff0000)|(K[3]&0x0000ffff),(K[1]<<16)|(K[1]>>>16),(K[3]&0xffff0000)|(K[0]&0x0000ffff)];this._b=0;for(var i=0;i<4;i++){nextState.call(this)}for(var i=0;i<8;i++){C[i]^=X[(i+4)&7]}if(iv){var IV=iv.words;var IV_0=IV[0];var IV_1=IV[1];var i0=(((IV_0<<8)|(IV_0>>>24))&0x00ff00ff)|(((IV_0<<24)|(IV_0>>>8))&0xff00ff00);var i2=(((IV_1<<8)|(IV_1>>>24))&0x00ff00ff)|(((IV_1<<24)|(IV_1>>>8))&0xff00ff00);var i1=(i0>>>16)|(i2&0xffff0000);var i3=(i2<<16)|(i0&0x0000ffff);C[0]^=i0;C[1]^=i1;C[2]^=i2;C[3]^=i3;C[4]^=i0;C[5]^=i1;C[6]^=i2;C[7]^=i3;for(var i=0;i<4;i++){nextState.call(this)}}},_doProcessBlock:function(M,offset){var X=this._X;nextState.call(this);S[0]=X[0]^(X[5]>>>16)^(X[3]<<16);S[1]=X[2]^(X[7]>>>16)^(X[5]<<16);S[2]=X[4]^(X[1]>>>16)^(X[7]<<16);S[3]=X[6]^(X[3]>>>16)^(X[1]<<16);for(var i=0;i<4;i++){S[i]=(((S[i]<<8)|(S[i]>>>24))&0x00ff00ff)|(((S[i]<<24)|(S[i]>>>8))&0xff00ff00);M[offset+i]^=S[i]}},blockSize:128/32,ivSize:64/32});function nextState(){var X=this._X;var C=this._C;for(var i=0;i<8;i++){C_[i]=C[i]}C[0]=(C[0]+0x4d34d34d+this._b)|0;C[1]=(C[1]+0xd34d34d3+((C[0]>>>0)<(C_[0]>>>0)?1:0))|0;C[2]=(C[2]+0x34d34d34+((C[1]>>>0)<(C_[1]>>>0)?1:0))|0;C[3]=(C[3]+0x4d34d34d+((C[2]>>>0)<(C_[2]>>>0)?1:0))|0;C[4]=(C[4]+0xd34d34d3+((C[3]>>>0)<(C_[3]>>>0)?1:0))|0;C[5]=(C[5]+0x34d34d34+((C[4]>>>0)<(C_[4]>>>0)?1:0))|0;C[6]=(C[6]+0x4d34d34d+((C[5]>>>0)<(C_[5]>>>0)?1:0))|0;C[7]=(C[7]+0xd34d34d3+((C[6]>>>0)<(C_[6]>>>0)?1:0))|0;this._b=(C[7]>>>0)<(C_[7]>>>0)?1:0;for(var i=0;i<8;i++){var gx=X[i]+C[i];var ga=gx&0xffff;var gb=gx>>>16;var gh=((((ga*ga)>>>17)+ga*gb)>>>15)+gb*gb;var gl=(((gx&0xffff0000)*gx)|0)+(((gx&0x0000ffff)*gx)|0);G[i]=gh^gl}X[0]=(G[0]+((G[7]<<16)|(G[7]>>>16))+((G[6]<<16)|(G[6]>>>16)))|0;X[1]=(G[1]+((G[0]<<8)|(G[0]>>>24))+G[7])|0;X[2]=(G[2]+((G[1]<<16)|(G[1]>>>16))+((G[0]<<16)|(G[0]>>>16)))|0;X[3]=(G[3]+((G[2]<<8)|(G[2]>>>24))+G[1])|0;X[4]=(G[4]+((G[3]<<16)|(G[3]>>>16))+((G[2]<<16)|(G[2]>>>16)))|0;X[5]=(G[5]+((G[4]<<8)|(G[4]>>>24))+G[3])|0;X[6]=(G[6]+((G[5]<<16)|(G[5]>>>16))+((G[4]<<16)|(G[4]>>>16)))|0;X[7]=(G[7]+((G[6]<<8)|(G[6]>>>24))+G[5])|0}C.RabbitLegacy=StreamCipher._createHelper(RabbitLegacy)}());CryptoJS.pad.ZeroPadding={pad:function(data,blockSize){var blockSizeBytes=blockSize*4;data.clamp();data.sigBytes+=blockSizeBytes-((data.sigBytes%blockSizeBytes)||blockSizeBytes)},unpad:function(data){var dataWords=data.words;var i=data.sigBytes-1;for(var i=data.sigBytes-1;i>=0;i--){if(((dataWords[i>>>2]>>>(24-(i%4)*8))&0xff)){data.sigBytes=i+1;break}}}};return CryptoJS})); \ No newline at end of file diff --git a/public/xf_voice/js/transcode.worker.js b/public/xf_voice/js/transcode.worker.js new file mode 100644 index 000000000..e79c1e1af --- /dev/null +++ b/public/xf_voice/js/transcode.worker.js @@ -0,0 +1,45 @@ +;(function () { + let self = this + self.onmessage = function (e) { + transAudioData.transcode(e.data) + } + + let transAudioData = { + transcode(audioData) { + let output = transAudioData.to16kHz(audioData) + output = transAudioData.to16BitPCM(output) + output = Array.from(new Uint8Array(output.buffer)) + self.postMessage(output) + // return output + }, + + to16kHz(audioData) { + var data = new Float32Array(audioData) + var fitCount = Math.round(data.length * (16000 / 44100)) + var newData = new Float32Array(fitCount) + var springFactor = (data.length - 1) / (fitCount - 1) + newData[0] = data[0] + for (let i = 1; i < fitCount - 1; i++) { + var tmp = i * springFactor + var before = Math.floor(tmp).toFixed() + var after = Math.ceil(tmp).toFixed() + var atPoint = tmp - before + newData[i] = data[before] + (data[after] - data[before]) * atPoint + } + newData[fitCount - 1] = data[data.length - 1] + return newData + }, + + to16BitPCM(input) { + var dataLength = input.length * (16 / 8) + var dataBuffer = new ArrayBuffer(dataLength) + var dataView = new DataView(dataBuffer) + var offset = 0 + for (var i = 0; i < input.length; i++, offset += 2) { + var s = Math.max(-1, Math.min(1, input[i])) + dataView.setInt16(offset, s < 0 ? s * 0x8000 : s * 0x7fff, true) + } + return dataView + } + } +})(); \ No newline at end of file diff --git a/public/xf_voice/js/voice.js b/public/xf_voice/js/voice.js new file mode 100644 index 000000000..7732e9075 --- /dev/null +++ b/public/xf_voice/js/voice.js @@ -0,0 +1,347 @@ +; (function (window, voice) { + "use strict"; + if (typeof define === 'function' && define.amd) { + define(voice); + } else if (typeof exports === 'object') { + module.exports = voice(); + } else { + window.Voice = voice(); + }; +}(typeof window !== "undefined" ? window : this, () => { + "use strict"; + return class IatRecorder { + constructor(opts = {}) { + // 服务接口认证信息(语音听写(流式版)WebAPI) + this.appId = opts.appId || ''; + this.apiKey = opts.apiKey || ''; + this.apiSecret = opts.apiSecret || ''; + // 识别监听方法 + this.onTextChange = opts.onTextChange || Function(); + this.onWillStatusChange = opts.onWillStatusChange || Function(); + // 方言/语种 + this.status = 'null' + this.language = opts.language || 'zh_cn' + this.accent = opts.accent || 'mandarin'; + // 流媒体 + this.streamRef = []; + // 记录音频数据 + this.audioData = []; + // 记录听写结果 + this.resultText = ''; + // wpgs下的听写结果需要中间状态辅助记录 + this.resultTextTemp = ''; + // 音频数据多线程 + this.init(); + }; + // WebSocket请求地址鉴权 + getWebSocketUrl() { + return new Promise((resolve, reject) => { + // 请求地址根据语种不同变化 + try { + const CryptoJS = require('crypto-js'); + let url = 'wss://iat-api.xfyun.cn/v2/iat', + host = 'iat-api.xfyun.cn', + date = new Date().toGMTString(), + algorithm = 'hmac-sha256', + headers = 'host date request-line', + signatureOrigin = `host: ${host}\ndate: ${date}\nGET /v2/iat HTTP/1.1`, + signatureSha = CryptoJS.HmacSHA256(signatureOrigin, this.apiSecret), + signature = CryptoJS.enc.Base64.stringify(signatureSha), + authorizationOrigin = `api_key="${this.apiKey}", algorithm="${algorithm}", headers="${headers}", signature="${signature}"`, + authorization = btoa(authorizationOrigin); + resolve(`${url}?authorization=${authorization}&date=${date}&host=${host}`); + } catch (error) { + let url = 'wss://iat-api.xfyun.cn/v2/iat', + host = 'iat-api.xfyun.cn', + date = new Date().toGMTString(), + algorithm = 'hmac-sha256', + headers = 'host date request-line', + signatureOrigin = `host: ${host}\ndate: ${date}\nGET /v2/iat HTTP/1.1`, + signatureSha = CryptoJS.HmacSHA256(signatureOrigin, this.apiSecret), + signature = CryptoJS.enc.Base64.stringify(signatureSha), + authorizationOrigin = `api_key="${this.apiKey}", algorithm="${algorithm}", headers="${headers}", signature="${signature}"`, + authorization = btoa(authorizationOrigin); + resolve(`${url}?authorization=${authorization}&date=${date}&host=${host}`); + }; + }); + }; + // 操作初始化 + init() { + const self = this; + try { + if (!self.appId || !self.apiKey || !self.apiSecret) { + alert('请正确配置【迅飞语音听写(流式版)WebAPI】服务接口认证信息!'); + } else { + self.webWorker = new Worker('./js/transcode.worker.js'); + self.webWorker.onmessage = function (event) { + self.audioData.push(...event.data); + }; + } + } catch (error) { + alert('对不起:请在服务器环境下运行!'); + console.error('请在服务器如:WAMP、XAMPP、Phpstudy、http-server、WebServer等环境中运行!', error); + }; + console.log("%c ❤️使用说明:http://www.muguilin.com/blog/info/609bafc50d572b3fd79b058f", "font-size:32px; color:blue; font-weight: bold;"); + }; + // 修改录音听写状态 + setStatus(status) { + this.onWillStatusChange && this.status !== status && this.onWillStatusChange(this.status, status); + this.status = status; + }; + // 设置识别结果内容 + setResultText({ resultText, resultTextTemp } = {}) { + this.onTextChange && this.onTextChange(resultTextTemp || resultText || ''); + resultText !== undefined && (this.resultText = resultText); + resultTextTemp !== undefined && (this.resultTextTemp = resultTextTemp); + }; + // 修改听写参数 + setParams({ language, accent } = {}) { + language && (this.language = language) + accent && (this.accent = accent) + }; + // 对处理后的音频数据进行base64编码, + toBase64(buffer) { + let binary = ''; + let bytes = new Uint8Array(buffer); + for (let i = 0; i < bytes.byteLength; i++) { + binary += String.fromCharCode(bytes[i]); + } + return window.btoa(binary); + }; + // 连接WebSocket + connectWebSocket() { + return this.getWebSocketUrl().then(url => { + let iatWS; + if ('WebSocket' in window) { + iatWS = new WebSocket(url); + } else if ('MozWebSocket' in window) { + iatWS = new MozWebSocket(url); + } else { + alert('浏览器不支持WebSocket!'); + return false; + } + this.webSocket = iatWS; + this.setStatus('init'); + iatWS.onopen = e => { + this.setStatus('ing'); + // 重新开始录音 + setTimeout(() => { + this.webSocketSend(); + }, 500); + }; + iatWS.onmessage = e => { + this.webSocketRes(e.data); + }; + iatWS.onerror = e => { + this.recorderStop(e); + }; + iatWS.onclose = e => { + this.recorderStop(e); + }; + }) + }; + // 初始化浏览器录音 + recorderInit() { + // 创建音频环境 + try { + this.audioContext = this.audioContext ? this.audioContext : new (window.AudioContext || window.webkitAudioContext)(); + this.audioContext.resume(); + if (!this.audioContext) { + alert('浏览器不支持webAudioApi相关接口'); + return false; + } + } catch (e) { + if (!this.audioContext) { + alert('浏览器不支持webAudioApi相关接口'); + return false; + } + }; + // 获取浏览器录音权限成功时回调 + let getMediaSuccess = _ => { + // 创建一个用于通过JavaScript直接处理音频 + this.scriptProcessor = this.audioContext.createScriptProcessor(0, 1, 1); + this.scriptProcessor.onaudioprocess = e => { + if (this.status === 'ing') { + // 多线程音频数据处理 + try { + this.webWorker.postMessage(e.inputBuffer.getChannelData(0)); + } catch (error) { } + } + } + // 创建一个新的MediaStreamAudioSourceNode 对象,使来自MediaStream的音频可以被播放和操作 + this.mediaSource = this.audioContext.createMediaStreamSource(this.streamRef); + this.mediaSource.connect(this.scriptProcessor); + this.scriptProcessor.connect(this.audioContext.destination); + this.connectWebSocket(); + }; + // 获取浏览器录音权限失败时回调 + let getMediaFail = (e) => { + alert('对不起:录音权限获取失败!'); + this.audioContext && this.audioContext.close(); + this.audioContext = undefined; + // 关闭websocket + if (this.webSocket && this.webSocket.readyState === 1) { + this.webSocket.close(); + } + }; + navigator.getUserMedia = navigator.getUserMedia || navigator.webkitGetUserMedia || navigator.mozGetUserMedia || navigator.msGetUserMedia; + // 获取浏览器录音权限 + if (navigator.mediaDevices && navigator.mediaDevices.getUserMedia) { + navigator.mediaDevices.getUserMedia({ + audio: true + }).then(stream => { + this.streamRef = stream; + getMediaSuccess(); + }).catch(e => { + getMediaFail(e); + }) + } else if (navigator.getUserMedia) { + navigator.getUserMedia({ + audio: true + }, (stream) => { + this.streamRef = stream; + getMediaSuccess(); + }, function (e) { + getMediaFail(e); + }) + } else { + if (navigator.userAgent.toLowerCase().match(/chrome/) && location.origin.indexOf('https://') < 0) { + console.error('获取浏览器录音功能,因安全性问题,需要在localhost 或 127.0.0.1 或 https 下才能获取权限!'); + } else { + alert('对不起:未识别到录音设备!'); + } + this.audioContext && this.audioContext.close(); + return false; + }; + }; + // 向webSocket发送数据(音频二进制数据经过Base64处理) + webSocketSend() { + if (this.webSocket.readyState !== 1) return false; + // 音频数据 + const audioData = this.audioData.splice(0, 1280); + const params = { + common: { + app_id: this.appId, + }, + business: { + language: this.language, //小语种可在控制台--语音听写(流式)--方言/语种处添加试用 + domain: 'iat', + accent: this.accent, //中文方言可在控制台--语音听写(流式)--方言/语种处添加试用 + vad_eos: 5000, + dwa: 'wpgs' //为使该功能生效,需到控制台开通动态修正功能(该功能免费) + }, + data: { + status: 0, + format: 'audio/L16;rate=16000', + encoding: 'raw', + audio: this.toBase64(audioData) + } + }; + // 发送数据 + this.webSocket.send(JSON.stringify(params)); + this.handlerInterval = setInterval(() => { + // websocket未连接 + if (this.webSocket.readyState !== 1) { + this.audioData = []; + clearInterval(this.handlerInterval); + return false; + }; + if (this.audioData.length === 0) { + if (this.status === 'end') { + this.webSocket.send( + JSON.stringify({ + data: { + status: 2, + format: 'audio/L16;rate=16000', + encoding: 'raw', + audio: '' + } + }) + ); + this.audioData = []; + clearInterval(this.handlerInterval); + } + return false; + }; + // 中间帧 + this.webSocket.send( + JSON.stringify({ + data: { + status: 1, + format: 'audio/L16;rate=16000', + encoding: 'raw', + audio: this.toBase64(this.audioData.splice(0, 1280)) + } + }) + ); + }, 40); + }; + // 识别结束 webSocket返回数据 + webSocketRes(resultData) { + let jsonData = JSON.parse(resultData); + if (jsonData.data && jsonData.data.result) { + let data = jsonData.data.result; + let str = ''; + let ws = data.ws; + for (let i = 0; i < ws.length; i++) { + str = str + ws[i].cw[0].w; + } + // 开启wpgs会有此字段(前提:在控制台开通动态修正功能) + // 取值为 "apd"时表示该片结果是追加到前面的最终结果;取值为"rpl" 时表示替换前面的部分结果,替换范围为rg字段 + if (data.pgs) { + if (data.pgs === 'apd') { + // 将resultTextTemp同步给resultText + this.setResultText({ + resultText: this.resultTextTemp + }); + } + // 将结果存储在resultTextTemp中 + this.setResultText({ + resultTextTemp: this.resultText + str + }); + } else { + this.setResultText({ + resultText: this.resultText + str + }); + } + } + if (jsonData.code === 0 && jsonData.data.status === 2) { + this.webSocket.close(); + } + if (jsonData.code !== 0) { + this.webSocket.close(); + } + }; + // 启动录音 + recorderStart() { + if (!this.audioContext) { + this.recorderInit(); + } else { + this.audioContext.resume(); + this.connectWebSocket(); + } + }; + // 停止录音 + recorderStop() { + if (!(/Safari/.test(navigator.userAgent) && !/Chrome/.test(navigator.userAgen))) { + // safari下suspend后再次resume录音内容将是空白,设置safari下不做suspend + this.audioContext && this.audioContext.suspend(); + } + this.setStatus('end'); + try { + // this.streamRef.getTracks().map(track => track.stop()) || his.streamRef.getAudioTracks()[0].stop(); + } catch (error) { + console.error('暂停失败!'); + } + }; + // 开始 + start() { + this.recorderStart(); + this.setResultText({ resultText: '', resultTextTemp: '' }); + }; + // 停止 + stop() { + this.recorderStop(); + }; + }; +})); \ No newline at end of file diff --git a/vendor/alibabacloud/credentials/CHANGELOG.md b/vendor/alibabacloud/credentials/CHANGELOG.md new file mode 100644 index 000000000..6180270e6 --- /dev/null +++ b/vendor/alibabacloud/credentials/CHANGELOG.md @@ -0,0 +1,14 @@ +# CHANGELOG + +## 1.1.3 - 2020-12-24 + +- Require guzzle ^6.3|^7.0 + +## 1.0.2 - 2020-02-14 +- Update Tea. + +## 1.0.1 - 2019-12-30 +- Supported get `Role Name` automatically. + +## 1.0.0 - 2019-09-01 +- Initial release of the Alibaba Cloud Credentials for PHP Version 1.0.0 on Packagist See for more information. diff --git a/vendor/alibabacloud/credentials/CONTRIBUTING.md b/vendor/alibabacloud/credentials/CONTRIBUTING.md new file mode 100644 index 000000000..8ed933034 --- /dev/null +++ b/vendor/alibabacloud/credentials/CONTRIBUTING.md @@ -0,0 +1,30 @@ +# CONTRIBUTING + +We work hard to provide a high-quality and useful SDK for Alibaba Cloud, and +we greatly value feedback and contributions from our community. Please submit +your [issues][issues] or [pull requests][pull-requests] through GitHub. + +## Tips + +- The SDK is released under the [Apache license][license]. Any code you submit + will be released under that license. For substantial contributions, we may + ask you to sign a [Alibaba Documentation Corporate Contributor License + Agreement (CLA)][cla]. +- We follow all of the relevant PSR recommendations from the [PHP Framework + Interop Group][php-fig]. Please submit code that follows these standards. + The [PHP CS Fixer][cs-fixer] tool can be helpful for formatting your code. + Your can use `composer fixer` to fix code. +- We maintain a high percentage of code coverage in our unit tests. If you make + changes to the code, please add, update, and/or remove tests as appropriate. +- If your code does not conform to the PSR standards, does not include adequate + tests, or does not contain a changelog document, we may ask you to update + your pull requests before we accept them. We also reserve the right to deny + any pull requests that do not align with our standards or goals. + +[issues]: https://github.com/aliyun/credentials-php/issues +[pull-requests]: https://github.com/aliyun/credentials-php/pulls +[license]: http://www.apache.org/licenses/LICENSE-2.0 +[cla]: https://alibaba-cla-2018.oss-cn-beijing.aliyuncs.com/Alibaba_Documentation_Open_Source_Corporate_CLA.pdf +[php-fig]: http://php-fig.org +[cs-fixer]: http://cs.sensiolabs.org/ +[docs-readme]: https://github.com/aliyun/credentials-php/blob/master/README.md diff --git a/vendor/alibabacloud/credentials/LICENSE.md b/vendor/alibabacloud/credentials/LICENSE.md new file mode 100644 index 000000000..ec13fccd3 --- /dev/null +++ b/vendor/alibabacloud/credentials/LICENSE.md @@ -0,0 +1,13 @@ +Copyright (c) 2009-present, Alibaba Cloud All rights reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. diff --git a/vendor/alibabacloud/credentials/NOTICE.md b/vendor/alibabacloud/credentials/NOTICE.md new file mode 100644 index 000000000..97db1932e --- /dev/null +++ b/vendor/alibabacloud/credentials/NOTICE.md @@ -0,0 +1,88 @@ +# NOTICE + + + +Copyright (c) 2009-present, Alibaba Cloud All rights reserved. + +Licensed under the Apache License, Version 2.0 (the "License"). +You may not use this file except in compliance with the License. +A copy of the License is located at + + + +or in the "license" file accompanying this file. This file is distributed +on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either +express or implied. See the License for the specific language governing +permissions and limitations under the License. + +# Guzzle + + + +Copyright (c) 2011-2018 Michael Dowling, https://github.com/mtdowling + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + +# jmespath.php + + + +Copyright (c) 2014 Michael Dowling, https://github.com/mtdowling + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + +# Dot + + + +Copyright (c) 2016-2019 Riku Särkinen + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/vendor/alibabacloud/credentials/README-zh-CN.md b/vendor/alibabacloud/credentials/README-zh-CN.md new file mode 100644 index 000000000..ad127c467 --- /dev/null +++ b/vendor/alibabacloud/credentials/README-zh-CN.md @@ -0,0 +1,250 @@ +[English](/README.md) | 简体中文 + + +# Alibaba Cloud Credentials for PHP +[![Latest Stable Version](https://poser.pugx.org/alibabacloud/credentials/v/stable)](https://packagist.org/packages/alibabacloud/credentials) +[![composer.lock](https://poser.pugx.org/alibabacloud/credentials/composerlock)](https://packagist.org/packages/alibabacloud/credentials) +[![Total Downloads](https://poser.pugx.org/alibabacloud/credentials/downloads)](https://packagist.org/packages/alibabacloud/credentials) +[![License](https://poser.pugx.org/alibabacloud/credentials/license)](https://packagist.org/packages/alibabacloud/credentials) +[![codecov](https://codecov.io/gh/aliyun/credentials-php/branch/master/graph/badge.svg)](https://codecov.io/gh/aliyun/credentials-php) +[![Travis Build Status](https://travis-ci.org/aliyun/credentials-php.svg?branch=master)](https://travis-ci.org/aliyun/credentials-php) +[![Appveyor Build Status](https://ci.appveyor.com/api/projects/status/6jxpwmhyfipagtge/branch/master?svg=true)](https://ci.appveyor.com/project/aliyun/credentials-php) + + +![](https://aliyunsdk-pages.alicdn.com/icons/AlibabaCloud.svg) + + +Alibaba Cloud Credentials for PHP 是帮助 PHP 开发者管理凭据的工具。 + + +## 先决条件 +您的系统需要满足[先决条件](/docs/zh-CN/0-Prerequisites.md),包括 PHP> = 5.6。 我们强烈建议使用cURL扩展,并使用TLS后端编译cURL 7.16.2+。 + + +## 安装依赖 +如果已在系统上[全局安装 Composer](https://getcomposer.org/doc/00-intro.md#globally),请直接在项目目录中运行以下内容来安装 Alibaba Cloud Credentials for PHP 作为依赖项: +``` +composer require alibabacloud/credentials +``` +> 一些用户可能由于网络问题无法安装,可以使用[阿里云 Composer 全量镜像](https://developer.aliyun.com/composer)。 + +请看[安装](/docs/zh-CN/1-Installation.md)有关通过 Composer 和其他方式安装的详细信息。 + + +## 快速使用 +在您开始之前,您需要注册阿里云帐户并获取您的[凭证](https://usercenter.console.aliyun.com/#/manage/ak)。 + +### 凭证类型 + +#### AccessKey + +通过[用户信息管理][ak]设置 access_key,它们具有该账户完全的权限,请妥善保管。有时出于安全考虑,您不能把具有完全访问权限的主账户 AccessKey 交于一个项目的开发者使用,您可以[创建RAM子账户][ram]并为子账户[授权][permissions],使用RAM子用户的 AccessKey 来进行API调用。 + +```php +getAccessKeyId(); +$credential->getAccessKeySecret(); + +// Access Key +$ak = new Credential([ + 'type' => 'access_key', + 'access_key_id' => '', + 'access_key_secret' => '', +]); +$ak->getAccessKeyId(); +$ak->getAccessKeySecret(); +``` + +#### STS + +通过安全令牌服务(Security Token Service,简称 STS),申请临时安全凭证(Temporary Security Credentials,简称 TSC),创建临时安全凭证。 + +```php + 'sts', + 'access_key_id' => '', + 'accessKey_secret' => '', + 'security_token' => '', +]); +$sts->getAccessKeyId(); +$sts->getAccessKeySecret(); +$sts->getSecurityToken(); +``` + +#### RamRoleArn + +通过指定[RAM角色][RAM Role],让凭证自动申请维护 STS Token。你可以通过为 `Policy` 赋值来限制获取到的 STS Token 的权限。 + +```php + 'ram_role_arn', + 'access_key_id' => '', + 'access_key_secret' => '', + 'role_arn' => '', + 'role_session_name' => '', + 'policy' => '', +]); +$ramRoleArn->getAccessKeyId(); +$ramRoleArn->getAccessKeySecret(); +$ramRoleArn->getRoleArn(); +$ramRoleArn->getRoleSessionName(); +$ramRoleArn->getPolicy(); +``` + +#### EcsRamRole + +通过指定角色名称,让凭证自动申请维护 STS Token + +```php + 'ecs_ram_role', + 'role_name' => '', +]); +$ecsRamRole->getRoleName(); +// Note: `role_name` is optional. It will be retrieved automatically if not set. It is highly recommended to set it up to reduce requests. +``` + +#### RsaKeyPair + +通过指定公钥Id和私钥文件,让凭证自动申请维护 AccessKey。仅支持日本站。 + +```php + 'rsa_key_pair', + 'public_key_id' => '', + 'private_key_file' => '', +]); +$rsaKeyPair->getPublicKeyId(); +$rsaKeyPair->getPrivateKey(); +``` + +#### Bearer Token + +如呼叫中心(CCC)需用此凭证,请自行申请维护 Bearer Token。 + +```php + 'bearer', + 'bearer_token' => '', +]); +$bearerToken->getBearerToken(); +$bearerToken->getSignature(); +``` + +## 默认凭证提供程序链 +默认凭证提供程序链查找可用的凭证,寻找顺序如下: + +### 1. 环境凭证 +程序首先会在环境变量里寻找环境凭证,如果定义了 `ALIBABA_CLOUD_ACCESS_KEY_ID` 和 `ALIBABA_CLOUD_ACCESS_KEY_SECRET` 环境变量且不为空,程序将使用他们创建默认凭证。 + +### 2. 配置文件 +> 如果用户主目录存在默认文件 `~/.alibabacloud/credentials` (Windows 为 `C:\Users\USER_NAME\.alibabacloud\credentials`),程序会自动创建指定类型和名称的凭证。默认文件可以不存在,但解析错误会抛出异常。 凭证名称不分大小写,若凭证同名,后者会覆盖前者。不同的项目、工具之间可以共用这个配置文件,因为超出项目之外,也不会被意外提交到版本控制。Windows 上可以使用环境变量引用到主目录 %UserProfile%。类 Unix 的系统可以使用环境变量 $HOME 或 ~ (tilde)。 可以通过定义 `ALIBABA_CLOUD_CREDENTIALS_FILE` 环境变量修改默认文件的路径。 + +```ini +[default] +type = access_key # 认证方式为 access_key +access_key_id = foo # Key +access_key_secret = bar # Secret + +[project1] +type = ecs_ram_role # 认证方式为 ecs_ram_role +role_name = EcsRamRoleTest # Role Name,非必填,不填则自动获取,建议设置,可以减少网络请求。 + +[project2] +type = ram_role_arn # 认证方式为 ram_role_arn +access_key_id = foo +access_key_secret = bar +role_arn = role_arn +role_session_name = session_name + +[project3] +type = rsa_key_pair # 认证方式为 rsa_key_pair +public_key_id = publicKeyId # Public Key ID +private_key_file = /your/pk.pem # Private Key 文件 +``` + +### 3. 实例 RAM 角色 +如果定义了环境变量 `ALIBABA_CLOUD_ECS_METADATA` 且不为空,程序会将该环境变量的值作为角色名称,请求 `http://100.100.100.200/latest/meta-data/ram/security-credentials/` 获取临时安全凭证作为默认凭证。 + +### 自定义凭证提供程序链 +可通过自定义程序链代替默认程序链的寻找顺序,也可以自行编写闭包传入提供者。 +```php + = 5.6. We strongly recommend using the cURL extension and compiling cURL 7.16.2+ using the TLS backend. + + +## Installation +If you have [Globally Install Composer](https://getcomposer.org/doc/00-intro.md#globally) on your system, install Alibaba Cloud Credentials for PHP as a dependency by running the following directly in the project directory: +``` +composer require alibabacloud/credentials +``` +> Some users may not be able to install due to network problems, you can switch to the [Alibaba Cloud Composer Mirror](https://developer.aliyun.com/composer). + +See [Installation](/docs/zh-CN/1-Installation.md) for details on installing through Composer and other means. + + +## Quick Examples +Before you begin, you need to sign up for an Alibaba Cloud account and retrieve your [Credentials](https://usercenter.console.aliyun.com/#/manage/ak). + +### Credential Type + +#### AccessKey + +Setup access_key credential through [User Information Management][ak], it have full authority over the account, please keep it safe. Sometimes for security reasons, you cannot hand over a primary account AccessKey with full access to the developer of a project. You may create a sub-account [RAM Sub-account][ram] , grant its [authorization][permissions],and use the AccessKey of RAM Sub-account. + +```php +getAccessKeyId(); +$credential->getAccessKeySecret(); + +// Access Key +$ak = new Credential([ + 'type' => 'access_key', + 'access_key_id' => '', + 'access_key_secret' => '', +]); +$ak->getAccessKeyId(); +$ak->getAccessKeySecret(); +``` + +#### STS + +Create a temporary security credential by applying Temporary Security Credentials (TSC) through the Security Token Service (STS). + +```php + 'sts', + 'access_key_id' => '', + 'accessKey_secret' => '', + 'security_token' => '', +]); +$sts->getAccessKeyId(); +$sts->getAccessKeySecret(); +$sts->getSecurityToken(); +``` + +#### RamRoleArn + +By specifying [RAM Role][RAM Role], the credential will be able to automatically request maintenance of STS Token. If you want to limit the permissions([How to make a policy][policy]) of STS Token, you can assign value for `Policy`. + +```php + 'ram_role_arn', + 'access_key_id' => '', + 'access_key_secret' => '', + 'role_arn' => '', + 'role_session_name' => '', + 'policy' => '', +]); +$ramRoleArn->getAccessKeyId(); +$ramRoleArn->getAccessKeySecret(); +$ramRoleArn->getRoleArn(); +$ramRoleArn->getRoleSessionName(); +$ramRoleArn->getPolicy(); +``` + +#### EcsRamRole + +By specifying the role name, the credential will be able to automatically request maintenance of STS Token. + +```php + 'ecs_ram_role', + 'role_name' => '', +]); +$ecsRamRole->getRoleName(); +// Note: `role_name` is optional. It will be retrieved automatically if not set. It is highly recommended to set it up to reduce requests. +``` + +#### RsaKeyPair + +By specifying the public key Id and the private key file, the credential will be able to automatically request maintenance of the AccessKey before sending the request. Only Japan station is supported. + + +```php + 'rsa_key_pair', + 'public_key_id' => '', + 'private_key_file' => '', +]); +$rsaKeyPair->getPublicKeyId(); +$rsaKeyPair->getPrivateKey(); +``` + +#### Bearer Token + +If credential is required by the Cloud Call Centre (CCC), please apply for Bearer Token maintenance by yourself. + +```php + 'bearer', + 'bearer_token' => '', +]); +$bearerToken->getBearerToken(); +$bearerToken->getSignature(); +``` + +## Default credential provider chain +The default credential provider chain looks for available credentials, looking in the following order: + +### 1. Environmental certificate +The program first looks for environment credentials in the environment variable. If the `ALIBABA_CLOUD_ACCESS_KEY_ID` and `ALIBABA_CLOUD_ACCESS_KEY_SECRET` environment variables are defined and not empty, the program will use them to create default credentials. + +### 2. Configuration file +> If the user's home directory has the default file `~/.alibabacloud/credentials` (Windows is `C:\Users\USER_NAME\.alibabacloud\credentials`), the program will automatically create credentials with the specified type and name. The default file may not exist, but parsing errors will throw an exception. The voucher name is not case sensitive. If the voucher has the same name, the latter will overwrite the former. This configuration file can be shared between different projects and tools, and it will not be accidentally submitted to version control because it is outside the project. Environment variables can be referenced to the home directory %UserProfile% on Windows. Unix-like systems can use the environment variable $HOME or ~ (tilde). The path to the default file can be modified by defining the `ALIBABA_CLOUD_CREDENTIALS_FILE` environment variable. + +```ini +[default] +type = access_key # Authentication method is access_key +access_key_id = foo # Key +access_key_secret = bar # Secret + +[project1] +type = ecs_ram_role # Authentication method is ecs_ram_role +role_name = EcsRamRoleTest # Role name, optional. It will be retrieved automatically if not set. It is highly recommended to set it up to reduce requests. + +[project2] +type = ram_role_arn # Authentication method is ram_role_arn +access_key_id = foo +access_key_secret = bar +role_arn = role_arn +role_session_name = session_name + +[project3] +type = rsa_key_pair # Authentication method is rsa_key_pair +public_key_id = publicKeyId # Public Key ID +private_key_file = /your/pk.pem # Private Key File +``` + +### 3. Instance RAM role +If the environment variable `ALIBABA_CLOUD_ECS_METADATA` is defined and not empty, the program will take the value of the environment variable as the role name and request `http://100.100.100.200/latest/meta-data/ram/security-credentials/` to get the temporary Security credentials are used as default credentials. + +### Custom credential provider chain +You can replace the default order of the program chain by customizing the program chain, or you can write the closure to the provider. +```php + for more information. diff --git a/vendor/alibabacloud/credentials/composer.json b/vendor/alibabacloud/credentials/composer.json new file mode 100644 index 000000000..513e8a127 --- /dev/null +++ b/vendor/alibabacloud/credentials/composer.json @@ -0,0 +1,107 @@ +{ + "name": "alibabacloud/credentials", + "homepage": "https://www.alibabacloud.com/", + "description": "Alibaba Cloud Credentials for PHP", + "keywords": [ + "sdk", + "tool", + "cloud", + "client", + "aliyun", + "library", + "alibaba", + "Credentials", + "alibabacloud" + ], + "type": "library", + "license": "Apache-2.0", + "support": { + "source": "https://github.com/aliyun/credentials-php", + "issues": "https://github.com/aliyun/credentials-php/issues" + }, + "authors": [ + { + "name": "Alibaba Cloud SDK", + "email": "sdk-team@alibabacloud.com", + "homepage": "http://www.alibabacloud.com" + } + ], + "require": { + "php": ">=5.6", + "ext-curl": "*", + "ext-json": "*", + "ext-libxml": "*", + "ext-openssl": "*", + "ext-mbstring": "*", + "ext-simplexml": "*", + "ext-xmlwriter": "*", + "guzzlehttp/guzzle": "^6.3|^7.0", + "adbario/php-dot-notation": "^2.2", + "alibabacloud/tea": "^3.0" + }, + "require-dev": { + "ext-spl": "*", + "ext-dom": "*", + "ext-pcre": "*", + "psr/cache": "^1.0", + "ext-sockets": "*", + "drupal/coder": "^8.3", + "symfony/dotenv": "^3.4", + "phpunit/phpunit": "^5.7|^6.6|^7.5", + "monolog/monolog": "^1.24", + "composer/composer": "^1.8", + "mikey179/vfsstream": "^1.6", + "symfony/var-dumper": "^3.4" + }, + "suggest": { + "ext-sockets": "To use client-side monitoring" + }, + "autoload": { + "psr-4": { + "AlibabaCloud\\Credentials\\": "src" + } + }, + "autoload-dev": { + "psr-4": { + "AlibabaCloud\\Credentials\\Tests\\": "tests/" + } + }, + "config": { + "preferred-install": "dist", + "optimize-autoloader": true, + "allow-plugins": { + "dealerdirect/phpcodesniffer-composer-installer": true + } + }, + "minimum-stability": "dev", + "prefer-stable": true, + "scripts-descriptions": { + "cs": "Tokenizes PHP, JavaScript and CSS files to detect violations of a defined coding standard.", + "cbf": "Automatically correct coding standard violations.", + "fixer": "Fixes code to follow standards.", + "test": "Run all tests.", + "unit": "Run Unit tests.", + "feature": "Run Feature tests.", + "clearCache": "Clear cache like coverage.", + "coverage": "Show Coverage html.", + "endpoints": "Update endpoints from OSS." + }, + "scripts": { + "cs": "phpcs --standard=PSR2 -n ./", + "cbf": "phpcbf --standard=PSR2 -n ./", + "fixer": "php-cs-fixer fix ./", + "test": [ + "phpunit --colors=always" + ], + "unit": [ + "@clearCache", + "phpunit --testsuite=Unit --colors=always" + ], + "feature": [ + "@clearCache", + "phpunit --testsuite=Feature --colors=always" + ], + "coverage": "open cache/coverage/index.html", + "clearCache": "rm -rf cache/*" + } +} diff --git a/vendor/alibabacloud/credentials/src/AccessKeyCredential.php b/vendor/alibabacloud/credentials/src/AccessKeyCredential.php new file mode 100644 index 000000000..6d7d7c97e --- /dev/null +++ b/vendor/alibabacloud/credentials/src/AccessKeyCredential.php @@ -0,0 +1,72 @@ +accessKeyId = $access_key_id; + $this->accessKeySecret = $access_key_secret; + } + + /** + * @return string + */ + public function getAccessKeyId() + { + return $this->accessKeyId; + } + + /** + * @return string + */ + public function getAccessKeySecret() + { + return $this->accessKeySecret; + } + + /** + * @return string + */ + public function __toString() + { + return "$this->accessKeyId#$this->accessKeySecret"; + } + + /** + * @return ShaHmac1Signature + */ + public function getSignature() + { + return new ShaHmac1Signature(); + } + + public function getSecurityToken() + { + return ''; + } +} diff --git a/vendor/alibabacloud/credentials/src/BearerTokenCredential.php b/vendor/alibabacloud/credentials/src/BearerTokenCredential.php new file mode 100644 index 000000000..c38fb8c2c --- /dev/null +++ b/vendor/alibabacloud/credentials/src/BearerTokenCredential.php @@ -0,0 +1,53 @@ +bearerToken = $bearer_token; + } + + /** + * @return string + */ + public function getBearerToken() + { + return $this->bearerToken; + } + + /** + * @return string + */ + public function __toString() + { + return "bearerToken#$this->bearerToken"; + } + + /** + * @return BearerTokenSignature + */ + public function getSignature() + { + return new BearerTokenSignature(); + } +} diff --git a/vendor/alibabacloud/credentials/src/Credential.php b/vendor/alibabacloud/credentials/src/Credential.php new file mode 100644 index 000000000..3916c1d61 --- /dev/null +++ b/vendor/alibabacloud/credentials/src/Credential.php @@ -0,0 +1,183 @@ + AccessKeyCredential::class, + 'sts' => StsCredential::class, + 'ecs_ram_role' => EcsRamRoleCredential::class, + 'ram_role_arn' => RamRoleArnCredential::class, + 'rsa_key_pair' => RsaKeyPairCredential::class, + 'bearer' => BearerTokenCredential::class, + ]; + + /** + * @var AccessKeyCredential|BearerTokenCredential|EcsRamRoleCredential|RamRoleArnCredential|RsaKeyPairCredential + */ + protected $credential; + + /** + * @var string + */ + protected $type; + + /** + * Credential constructor. + * + * @param array|Config $config + * + * @throws ReflectionException + */ + public function __construct($config = []) + { + if ($config instanceof Config) { + $config = $this->parse($config); + } + if ($config !== []) { + $this->config = array_change_key_case($config); + $this->parseConfig(); + } else { + $this->credential = Credentials::get()->getCredential(); + } + } + + /** + * @param Config $config + * + * @return array + */ + private function parse($config) + { + $config = get_object_vars($config); + $res = []; + foreach ($config as $key => $value) { + $res[$this->toUnderScore($key)] = $value; + } + return $res; + } + + private function toUnderScore($str) + { + $dstr = preg_replace_callback('/([A-Z]+)/', function ($matchs) { + return '_' . strtolower($matchs[0]); + }, $str); + return trim(preg_replace('/_{2,}/', '_', $dstr), '_'); + } + + /** + * @throws ReflectionException + */ + private function parseConfig() + { + if (!isset($this->config['type'])) { + throw new InvalidArgumentException('Missing required type option'); + } + + $this->type = $this->config['type']; + if (!isset($this->types[$this->type])) { + throw new InvalidArgumentException( + 'Invalid type option, support: ' . + implode(', ', array_keys($this->types)) + ); + } + + $class = new ReflectionClass($this->types[$this->type]); + $parameters = []; + /** + * @var $parameter ReflectionParameter + */ + foreach ($class->getConstructor()->getParameters() as $parameter) { + $parameters[] = $this->getValue($parameter); + } + + $this->credential = $class->newInstance(...$parameters); + } + + /** + * @param ReflectionParameter $parameter + * + * @return string|array + * @throws ReflectionException + */ + protected function getValue(ReflectionParameter $parameter) + { + if ($parameter->name === 'config' || $parameter->name === 'credential') { + return $this->config; + } + + foreach ($this->config as $key => $value) { + if (strtolower($parameter->name) === $key) { + return $value; + } + } + + if ($parameter->isDefaultValueAvailable()) { + return $parameter->getDefaultValue(); + } + + throw new InvalidArgumentException("Missing required {$parameter->name} option in config for {$this->type}"); + } + + /** + * @return AccessKeyCredential|BearerTokenCredential|EcsRamRoleCredential|RamRoleArnCredential|RsaKeyPairCredential + */ + public function getCredential() + { + return $this->credential; + } + + /** + * @return array + */ + public function getConfig() + { + return $this->config; + } + + /** + * @return string + */ + public function getType() + { + return $this->type; + } + + + /** + * @param string $name + * @param array $arguments + * + * @return mixed + */ + public function __call($name, $arguments) + { + return $this->credential->$name($arguments); + } +} diff --git a/vendor/alibabacloud/credentials/src/Credential/Config.php b/vendor/alibabacloud/credentials/src/Credential/Config.php new file mode 100644 index 000000000..3fa1608da --- /dev/null +++ b/vendor/alibabacloud/credentials/src/Credential/Config.php @@ -0,0 +1,50 @@ + $v) { + $this->{$k} = $v; + } + } +} diff --git a/vendor/alibabacloud/credentials/src/Credentials.php b/vendor/alibabacloud/credentials/src/Credentials.php new file mode 100644 index 000000000..11e68abff --- /dev/null +++ b/vendor/alibabacloud/credentials/src/Credentials.php @@ -0,0 +1,102 @@ +roleName = $role_name; + } + + /** + * @return string + * @throws GuzzleException + * @throws Exception + */ + public function getRoleName() + { + if ($this->roleName !== null) { + return $this->roleName; + } + + $this->roleName = $this->getRoleNameFromMeta(); + + return $this->roleName; + } + + /** + * @return string + * @throws Exception + */ + public function getRoleNameFromMeta() + { + $options = [ + 'http_errors' => false, + 'timeout' => 1, + 'connect_timeout' => 1, + ]; + + $result = Request::createClient()->request( + 'GET', + 'http://100.100.100.200/latest/meta-data/ram/security-credentials/', + $options + ); + + if ($result->getStatusCode() === 404) { + throw new InvalidArgumentException('The role name was not found in the instance'); + } + + if ($result->getStatusCode() !== 200) { + throw new RuntimeException('Error retrieving credentials from result: ' . $result->getBody()); + } + + $role_name = (string)$result; + if (!$role_name) { + throw new RuntimeException('Error retrieving credentials from result is empty'); + } + + return $role_name; + } + + /** + * @return string + */ + public function __toString() + { + return "roleName#$this->roleName"; + } + + /** + * @return ShaHmac1Signature + */ + public function getSignature() + { + return new ShaHmac1Signature(); + } + + /** + * @return string + * @throws Exception + * @throws GuzzleException + */ + public function getAccessKeyId() + { + return $this->getSessionCredential()->getAccessKeyId(); + } + + /** + * @return StsCredential + * @throws Exception + * @throws GuzzleException + */ + protected function getSessionCredential() + { + return (new EcsRamRoleProvider($this))->get(); + } + + /** + * @return string + * @throws Exception + * @throws GuzzleException + */ + public function getAccessKeySecret() + { + return $this->getSessionCredential()->getAccessKeySecret(); + } + + /** + * @return string + * @throws Exception + * @throws GuzzleException + */ + public function getSecurityToken() + { + return $this->getSessionCredential()->getSecurityToken(); + } + + /** + * @return int + * @throws Exception + * @throws GuzzleException + */ + public function getExpiration() + { + return $this->getSessionCredential()->getExpiration(); + } +} diff --git a/vendor/alibabacloud/credentials/src/Filter.php b/vendor/alibabacloud/credentials/src/Filter.php new file mode 100644 index 000000000..61b39e0ad --- /dev/null +++ b/vendor/alibabacloud/credentials/src/Filter.php @@ -0,0 +1,134 @@ + $value) { + if (is_int($key)) { + $result[] = $value; + continue; + } + + if (isset($result[$key]) && is_array($result[$key])) { + $result[$key] = self::merge( + [$result[$key], $value] + ); + continue; + } + + $result[$key] = $value; + } + } + + return $result; + } + + /** + * @param $filename + * + * @return bool + */ + public static function inOpenBasedir($filename) + { + $open_basedir = ini_get('open_basedir'); + if (!$open_basedir) { + return true; + } + + $dirs = explode(PATH_SEPARATOR, $open_basedir); + + return empty($dirs) || self::inDir($filename, $dirs); + } + + /** + * @param string $filename + * @param array $dirs + * + * @return bool + */ + public static function inDir($filename, array $dirs) + { + foreach ($dirs as $dir) { + if ($dir[strlen($dir) - 1] !== DIRECTORY_SEPARATOR) { + $dir .= DIRECTORY_SEPARATOR; + } + + if (0 === strpos($filename, $dir)) { + return true; + } + } + + return false; + } + + /** + * @return bool + */ + public static function isWindows() + { + return PATH_SEPARATOR === ';'; + } + + /** + * @param $key + * + * @return bool|mixed + */ + public static function envNotEmpty($key) + { + $value = self::env($key, false); + if ($value) { + return $value; + } + + return false; + } + + /** + * Gets the value of an environment variable. + * + * @param string $key + * @param mixed $default + * + * @return mixed + */ + public static function env($key, $default = null) + { + $value = getenv($key); + + if ($value === false) { + return self::value($default); + } + + if (self::envSubstr($value)) { + return substr($value, 1, -1); + } + + return self::envConversion($value); + } + + /** + * Return the default value of the given value. + * + * @param mixed $value + * + * @return mixed + */ + public static function value($value) + { + return $value instanceof Closure ? $value() : $value; + } + + /** + * @param $value + * + * @return bool + */ + public static function envSubstr($value) + { + return ($valueLength = strlen($value)) > 1 + && strpos($value, '"') === 0 + && $value[$valueLength - 1] === '"'; + } + + /** + * @param $value + * + * @return bool|string|null + */ + public static function envConversion($value) + { + $key = strtolower($value); + + if ($key === 'null' || $key === '(null)') { + return null; + } + + $list = [ + 'true' => true, + '(true)' => true, + 'false' => false, + '(false)' => false, + 'empty' => '', + '(empty)' => '', + ]; + + return isset($list[$key]) ? $list[$key] : $value; + } + + /** + * Gets the environment's HOME directory. + * + * @return null|string + */ + public static function getHomeDirectory() + { + if (getenv('HOME')) { + return getenv('HOME'); + } + + return (getenv('HOMEDRIVE') && getenv('HOMEPATH')) + ? getenv('HOMEDRIVE') . getenv('HOMEPATH') + : null; + } + + /** + * @param mixed ...$parameters + * + * @codeCoverageIgnore + */ + public static function dd(...$parameters) + { + dump(...$parameters); + exit; + } +} diff --git a/vendor/alibabacloud/credentials/src/MockTrait.php b/vendor/alibabacloud/credentials/src/MockTrait.php new file mode 100644 index 000000000..a590ac78a --- /dev/null +++ b/vendor/alibabacloud/credentials/src/MockTrait.php @@ -0,0 +1,98 @@ + 'access_key', + 'access_key_id' => $accessKeyId, + 'access_key_secret' => $accessKeySecret, + ] + ); + } + }; + } + + /** + * @return string + */ + public static function getDefaultName() + { + $name = Helper::envNotEmpty('ALIBABA_CLOUD_PROFILE'); + + if ($name) { + return $name; + } + + return 'default'; + } + + /** + * @return Closure + */ + public static function ini() + { + return static function () { + $filename = Helper::envNotEmpty('ALIBABA_CLOUD_CREDENTIALS_FILE'); + if (!$filename) { + $filename = self::getDefaultFile(); + } + + if (!Helper::inOpenBasedir($filename)) { + return; + } + + if ($filename !== self::getDefaultFile() && (!\is_readable($filename) || !\is_file($filename))) { + throw new RuntimeException( + 'Credentials file is not readable: ' . $filename + ); + } + + $file_array = \parse_ini_file($filename, true); + + if (\is_array($file_array) && !empty($file_array)) { + foreach (\array_change_key_case($file_array) as $name => $configures) { + Credentials::set($name, $configures); + } + } + }; + } + + /** + * Get the default credential file. + * + * @return string + */ + public static function getDefaultFile() + { + return Helper::getHomeDirectory() . + DIRECTORY_SEPARATOR . + '.alibabacloud' . + DIRECTORY_SEPARATOR . + 'credentials'; + } + + /** + * @return Closure + */ + public static function instance() + { + return static function () { + $instance = Helper::envNotEmpty('ALIBABA_CLOUD_ECS_METADATA'); + if ($instance) { + Credentials::set( + self::getDefaultName(), + [ + 'type' => 'ecs_ram_role', + 'role_name' => $instance, + ] + ); + } + }; + } +} diff --git a/vendor/alibabacloud/credentials/src/Providers/EcsRamRoleProvider.php b/vendor/alibabacloud/credentials/src/Providers/EcsRamRoleProvider.php new file mode 100644 index 000000000..828bdadef --- /dev/null +++ b/vendor/alibabacloud/credentials/src/Providers/EcsRamRoleProvider.php @@ -0,0 +1,94 @@ +getCredentialsInCache(); + + if ($result === null) { + $result = $this->request(); + + if (!isset($result['AccessKeyId'], $result['AccessKeySecret'], $result['SecurityToken'])) { + throw new RuntimeException($this->error); + } + + $this->cache($result->toArray()); + } + + return new StsCredential( + $result['AccessKeyId'], + $result['AccessKeySecret'], + strtotime($result['Expiration']), + $result['SecurityToken'] + ); + } + + /** + * Get credentials by request. + * + * @return ResponseInterface + * @throws Exception + * @throws GuzzleException + */ + public function request() + { + $credential = $this->credential; + $url = $this->uri . $credential->getRoleName(); + + $options = [ + 'http_errors' => false, + 'timeout' => 1, + 'connect_timeout' => 1, + ]; + + $result = Request::createClient()->request('GET', $url, $options); + + if ($result->getStatusCode() === 404) { + $message = 'The role was not found in the instance'; + throw new InvalidArgumentException($message); + } + + if ($result->getStatusCode() !== 200) { + throw new RuntimeException('Error retrieving credentials from result: ' . $result->toJson()); + } + + return $result; + } +} diff --git a/vendor/alibabacloud/credentials/src/Providers/Provider.php b/vendor/alibabacloud/credentials/src/Providers/Provider.php new file mode 100644 index 000000000..e1e869d54 --- /dev/null +++ b/vendor/alibabacloud/credentials/src/Providers/Provider.php @@ -0,0 +1,82 @@ +credential = $credential; + $this->config = $config; + } + + /** + * Get the credentials from the cache in the validity period. + * + * @return array|null + */ + public function getCredentialsInCache() + { + if (isset(self::$credentialsCache[(string)$this->credential])) { + $result = self::$credentialsCache[(string)$this->credential]; + if (\strtotime($result['Expiration']) - \time() >= $this->expirationSlot) { + return $result; + } + } + + return null; + } + + /** + * Cache credentials. + * + * @param array $credential + */ + protected function cache(array $credential) + { + self::$credentialsCache[(string)$this->credential] = $credential; + } +} diff --git a/vendor/alibabacloud/credentials/src/Providers/RamRoleArnProvider.php b/vendor/alibabacloud/credentials/src/Providers/RamRoleArnProvider.php new file mode 100644 index 000000000..c6a872939 --- /dev/null +++ b/vendor/alibabacloud/credentials/src/Providers/RamRoleArnProvider.php @@ -0,0 +1,49 @@ +getCredentialsInCache(); + + if (null === $credential) { + $result = (new AssumeRole($this->credential))->request(); + + if ($result->getStatusCode() !== 200) { + throw new RuntimeException(isset($result['Message']) ? $result['Message'] : (string)$result->getBody()); + } + + if (!isset($result['Credentials']['AccessKeyId'], + $result['Credentials']['AccessKeySecret'], + $result['Credentials']['SecurityToken'])) { + throw new RuntimeException($this->error); + } + + $credential = $result['Credentials']; + $this->cache($credential); + } + + return new StsCredential( + $credential['AccessKeyId'], + $credential['AccessKeySecret'], + strtotime($credential['Expiration']), + $credential['SecurityToken'] + ); + } +} diff --git a/vendor/alibabacloud/credentials/src/Providers/RsaKeyPairProvider.php b/vendor/alibabacloud/credentials/src/Providers/RsaKeyPairProvider.php new file mode 100644 index 000000000..c2d03fc2d --- /dev/null +++ b/vendor/alibabacloud/credentials/src/Providers/RsaKeyPairProvider.php @@ -0,0 +1,53 @@ +getCredentialsInCache(); + + if ($credential === null) { + $result = (new GenerateSessionAccessKey($this->credential))->request(); + + if ($result->getStatusCode() !== 200) { + throw new RuntimeException(isset($result['Message']) ? $result['Message'] : (string)$result->getBody()); + } + + if (!isset($result['SessionAccessKey']['SessionAccessKeyId'], + $result['SessionAccessKey']['SessionAccessKeySecret'])) { + throw new RuntimeException($this->error); + } + + $credential = $result['SessionAccessKey']; + $this->cache($credential); + } + + return new StsCredential( + $credential['SessionAccessKeyId'], + $credential['SessionAccessKeySecret'], + strtotime($credential['Expiration']) + ); + } +} diff --git a/vendor/alibabacloud/credentials/src/RamRoleArnCredential.php b/vendor/alibabacloud/credentials/src/RamRoleArnCredential.php new file mode 100644 index 000000000..b82c608fb --- /dev/null +++ b/vendor/alibabacloud/credentials/src/RamRoleArnCredential.php @@ -0,0 +1,218 @@ +filterParameters($credential); + $this->filterPolicy($credential); + + Filter::accessKey($credential['access_key_id'], $credential['access_key_secret']); + + $this->config = $config; + $this->accessKeyId = $credential['access_key_id']; + $this->accessKeySecret = $credential['access_key_secret']; + $this->roleArn = $credential['role_arn']; + $this->roleSessionName = $credential['role_session_name']; + } + + /** + * @param array $credential + */ + private function filterParameters(array $credential) + { + if (!isset($credential['access_key_id'])) { + throw new InvalidArgumentException('Missing required access_key_id option in config for ram_role_arn'); + } + + if (!isset($credential['access_key_secret'])) { + throw new InvalidArgumentException('Missing required access_key_secret option in config for ram_role_arn'); + } + + if (!isset($credential['role_arn'])) { + throw new InvalidArgumentException('Missing required role_arn option in config for ram_role_arn'); + } + + if (!isset($credential['role_session_name'])) { + throw new InvalidArgumentException('Missing required role_session_name option in config for ram_role_arn'); + } + } + + /** + * @param array $credential + */ + private function filterPolicy(array $credential) + { + if (isset($credential['policy'])) { + if (is_string($credential['policy'])) { + $this->policy = $credential['policy']; + } + + if (is_array($credential['policy'])) { + $this->policy = json_encode($credential['policy']); + } + } + } + + /** + * @return array + */ + public function getConfig() + { + return $this->config; + } + + /** + * @return string + */ + public function getRoleArn() + { + return $this->roleArn; + } + + /** + * @return string + */ + public function getRoleSessionName() + { + return $this->roleSessionName; + } + + /** + * @return string + */ + public function getPolicy() + { + return $this->policy; + } + + /** + * @return string + */ + public function __toString() + { + return "$this->accessKeyId#$this->accessKeySecret#$this->roleArn#$this->roleSessionName"; + } + + /** + * @return ShaHmac1Signature + */ + public function getSignature() + { + return new ShaHmac1Signature(); + } + + /** + * @return string + */ + public function getOriginalAccessKeyId() + { + return $this->accessKeyId; + } + + /** + * @return string + */ + public function getOriginalAccessKeySecret() + { + return $this->accessKeySecret; + } + + /** + * @return string + * @throws Exception + * @throws GuzzleException + */ + public function getAccessKeyId() + { + return $this->getSessionCredential()->getAccessKeyId(); + } + + /** + * @return StsCredential + * @throws Exception + * @throws GuzzleException + */ + protected function getSessionCredential() + { + return (new RamRoleArnProvider($this))->get(); + } + + /** + * @return string + * @throws Exception + * @throws GuzzleException + */ + public function getAccessKeySecret() + { + return $this->getSessionCredential()->getAccessKeySecret(); + } + + /** + * @return string + * @throws Exception + * @throws GuzzleException + */ + public function getSecurityToken() + { + return $this->getSessionCredential()->getSecurityToken(); + } + + /** + * @return string + * @throws Exception + * @throws GuzzleException + */ + public function getExpiration() + { + return $this->getSessionCredential()->getExpiration(); + } +} diff --git a/vendor/alibabacloud/credentials/src/Request/AssumeRole.php b/vendor/alibabacloud/credentials/src/Request/AssumeRole.php new file mode 100644 index 000000000..962a7334f --- /dev/null +++ b/vendor/alibabacloud/credentials/src/Request/AssumeRole.php @@ -0,0 +1,37 @@ +signature = new ShaHmac1Signature(); + $this->credential = $arnCredential; + $this->uri = $this->uri->withHost('sts.aliyuncs.com'); + $this->options['verify'] = false; + $this->options['query']['RoleArn'] = $arnCredential->getRoleArn(); + $this->options['query']['RoleSessionName'] = $arnCredential->getRoleSessionName(); + $this->options['query']['DurationSeconds'] = Provider::DURATION_SECONDS; + $this->options['query']['AccessKeyId'] = $this->credential->getOriginalAccessKeyId(); + $this->options['query']['Version'] = '2015-04-01'; + $this->options['query']['Action'] = 'AssumeRole'; + $this->options['query']['RegionId'] = 'cn-hangzhou'; + if ($arnCredential->getPolicy()) { + $this->options['query']['Policy'] = $arnCredential->getPolicy(); + } + } +} diff --git a/vendor/alibabacloud/credentials/src/Request/GenerateSessionAccessKey.php b/vendor/alibabacloud/credentials/src/Request/GenerateSessionAccessKey.php new file mode 100644 index 000000000..35db58597 --- /dev/null +++ b/vendor/alibabacloud/credentials/src/Request/GenerateSessionAccessKey.php @@ -0,0 +1,33 @@ +signature = new ShaHmac256WithRsaSignature(); + $this->credential = $credential; + $this->uri = $this->uri->withHost('sts.ap-northeast-1.aliyuncs.com'); + $this->options['verify'] = false; + $this->options['query']['Version'] = '2015-04-01'; + $this->options['query']['Action'] = 'GenerateSessionAccessKey'; + $this->options['query']['RegionId'] = 'cn-hangzhou'; + $this->options['query']['AccessKeyId'] = $credential->getPublicKeyId(); + $this->options['query']['PublicKeyId'] = $credential->getPublicKeyId(); + $this->options['query']['DurationSeconds'] = Provider::DURATION_SECONDS; + } +} diff --git a/vendor/alibabacloud/credentials/src/Request/Request.php b/vendor/alibabacloud/credentials/src/Request/Request.php new file mode 100644 index 000000000..1bf1418ff --- /dev/null +++ b/vendor/alibabacloud/credentials/src/Request/Request.php @@ -0,0 +1,155 @@ +uri = (new Uri())->withScheme('https'); + $this->options['http_errors'] = false; + $this->options['connect_timeout'] = self::CONNECT_TIMEOUT; + $this->options['timeout'] = self::TIMEOUT; + + // Turn on debug mode based on environment variable. + if (strtolower(Helper::env('DEBUG')) === 'sdk') { + $this->options['debug'] = true; + } + } + + /** + * @return ResponseInterface + * @throws Exception + */ + public function request() + { + $this->options['query']['Format'] = 'JSON'; + $this->options['query']['SignatureMethod'] = $this->signature->getMethod(); + $this->options['query']['SignatureVersion'] = $this->signature->getVersion(); + $this->options['query']['SignatureNonce'] = self::uuid(json_encode($this->options['query'])); + $this->options['query']['Timestamp'] = gmdate('Y-m-d\TH:i:s\Z'); + $this->options['query']['Signature'] = $this->signature->sign( + self::signString('GET', $this->options['query']), + $this->credential->getOriginalAccessKeySecret() . '&' + ); + return self::createClient()->request('GET', (string)$this->uri, $this->options); + } + + /** + * @param string $salt + * + * @return string + */ + public static function uuid($salt) + { + return md5($salt . uniqid(md5(microtime(true)), true)); + } + + /** + * @param string $method + * @param array $parameters + * + * @return string + */ + public static function signString($method, array $parameters) + { + ksort($parameters); + $canonicalized = ''; + foreach ($parameters as $key => $value) { + $canonicalized .= '&' . self::percentEncode($key) . '=' . self::percentEncode($value); + } + + return $method . '&%2F&' . self::percentEncode(substr($canonicalized, 1)); + } + + /** + * @param string $string + * + * @return null|string|string[] + */ + private static function percentEncode($string) + { + $result = rawurlencode($string); + $result = str_replace(['+', '*'], ['%20', '%2A'], $result); + $result = preg_replace('/%7E/', '~', $result); + + return $result; + } + + /** + * @return Client + * @throws Exception + */ + public static function createClient() + { + if (Credentials::hasMock()) { + $stack = HandlerStack::create(Credentials::getMock()); + } else { + $stack = HandlerStack::create(); + } + + $stack->push(Middleware::mapResponse(static function (ResponseInterface $response) { + return new Response($response); + })); + + self::$config['handler'] = $stack; + + return new Client(self::$config); + } +} diff --git a/vendor/alibabacloud/credentials/src/RsaKeyPairCredential.php b/vendor/alibabacloud/credentials/src/RsaKeyPairCredential.php new file mode 100644 index 000000000..bb47f6b46 --- /dev/null +++ b/vendor/alibabacloud/credentials/src/RsaKeyPairCredential.php @@ -0,0 +1,158 @@ +publicKeyId = $public_key_id; + $this->config = $config; + try { + $this->privateKey = file_get_contents($private_key_file); + } catch (Exception $exception) { + throw new InvalidArgumentException($exception->getMessage()); + } + } + + /** + * @return array + */ + public function getConfig() + { + return $this->config; + } + + /** + * @return string + */ + public function getOriginalAccessKeyId() + { + return $this->getPublicKeyId(); + } + + /** + * @return string + */ + public function getPublicKeyId() + { + return $this->publicKeyId; + } + + /** + * @return string + */ + public function getOriginalAccessKeySecret() + { + return $this->getPrivateKey(); + } + + /** + * @return mixed + */ + public function getPrivateKey() + { + return $this->privateKey; + } + + /** + * @return string + */ + public function __toString() + { + return "publicKeyId#$this->publicKeyId"; + } + + /** + * @return ShaHmac1Signature + */ + public function getSignature() + { + return new ShaHmac1Signature(); + } + + /** + * @return string + * @throws Exception + * @throws GuzzleException + */ + public function getAccessKeyId() + { + return $this->getSessionCredential()->getAccessKeyId(); + } + + /** + * @return StsCredential + * @throws Exception + * @throws GuzzleException + */ + protected function getSessionCredential() + { + return (new RsaKeyPairProvider($this))->get(); + } + + /** + * @return string + * @throws Exception + * @throws GuzzleException + */ + public function getAccessKeySecret() + { + return $this->getSessionCredential()->getAccessKeySecret(); + } + + /** + * @return string + * @throws Exception + * @throws GuzzleException + */ + public function getSecurityToken() + { + return $this->getSessionCredential()->getSecurityToken(); + } + + /** + * @return int + * @throws Exception + * @throws GuzzleException + */ + public function getExpiration() + { + return $this->getSessionCredential()->getExpiration(); + } +} diff --git a/vendor/alibabacloud/credentials/src/Signature/BearerTokenSignature.php b/vendor/alibabacloud/credentials/src/Signature/BearerTokenSignature.php new file mode 100644 index 000000000..1d67a803b --- /dev/null +++ b/vendor/alibabacloud/credentials/src/Signature/BearerTokenSignature.php @@ -0,0 +1,47 @@ +getMessage() + ); + } + + return base64_encode($binarySignature); + } +} diff --git a/vendor/alibabacloud/credentials/src/Signature/SignatureInterface.php b/vendor/alibabacloud/credentials/src/Signature/SignatureInterface.php new file mode 100644 index 000000000..9dfb73b2f --- /dev/null +++ b/vendor/alibabacloud/credentials/src/Signature/SignatureInterface.php @@ -0,0 +1,34 @@ +accessKeyId = $access_key_id; + $this->accessKeySecret = $access_key_secret; + $this->expiration = $expiration; + $this->securityToken = $security_token; + } + + /** + * @return int + */ + public function getExpiration() + { + return $this->expiration; + } + + /** + * @return string + */ + public function getAccessKeyId() + { + return $this->accessKeyId; + } + + /** + * @return string + */ + public function getAccessKeySecret() + { + return $this->accessKeySecret; + } + + /** + * @return string + */ + public function getSecurityToken() + { + return $this->securityToken; + } + + /** + * @return string + */ + public function __toString() + { + return "$this->accessKeyId#$this->accessKeySecret#$this->securityToken"; + } + + /** + * @return ShaHmac1Signature + */ + public function getSignature() + { + return new ShaHmac1Signature(); + } +} diff --git a/vendor/alibabacloud/darabonba-openapi/.gitignore b/vendor/alibabacloud/darabonba-openapi/.gitignore new file mode 100644 index 000000000..89c7aa58e --- /dev/null +++ b/vendor/alibabacloud/darabonba-openapi/.gitignore @@ -0,0 +1,15 @@ +composer.phar +/vendor/ + +# Commit your application's lock file https://getcomposer.org/doc/01-basic-usage.md#commit-your-composer-lock-file-to-version-control +# You may choose to ignore a library lock file http://getcomposer.org/doc/02-libraries.md#lock-file +composer.lock + +.vscode/ +.idea +.DS_Store + +cache/ +*.cache +runtime/ +.php_cs.cache diff --git a/vendor/alibabacloud/darabonba-openapi/.php_cs.dist b/vendor/alibabacloud/darabonba-openapi/.php_cs.dist new file mode 100644 index 000000000..8617ec2fa --- /dev/null +++ b/vendor/alibabacloud/darabonba-openapi/.php_cs.dist @@ -0,0 +1,65 @@ +setRiskyAllowed(true) + ->setIndent(' ') + ->setRules([ + '@PSR2' => true, + '@PhpCsFixer' => true, + '@Symfony:risky' => true, + 'concat_space' => ['spacing' => 'one'], + 'array_syntax' => ['syntax' => 'short'], + 'array_indentation' => true, + 'combine_consecutive_unsets' => true, + 'method_separation' => true, + 'single_quote' => true, + 'declare_equal_normalize' => true, + 'function_typehint_space' => true, + 'hash_to_slash_comment' => true, + 'include' => true, + 'lowercase_cast' => true, + 'no_multiline_whitespace_before_semicolons' => true, + 'no_leading_import_slash' => true, + 'no_multiline_whitespace_around_double_arrow' => true, + 'no_spaces_around_offset' => true, + 'no_unneeded_control_parentheses' => true, + 'no_unused_imports' => true, + 'no_whitespace_before_comma_in_array' => true, + 'no_whitespace_in_blank_line' => true, + 'object_operator_without_whitespace' => true, + 'single_blank_line_before_namespace' => true, + 'single_class_element_per_statement' => true, + 'space_after_semicolon' => true, + 'standardize_not_equals' => true, + 'ternary_operator_spaces' => true, + 'trailing_comma_in_multiline_array' => true, + 'trim_array_spaces' => true, + 'unary_operator_spaces' => true, + 'whitespace_after_comma_in_array' => true, + 'no_extra_consecutive_blank_lines' => [ + 'curly_brace_block', + 'extra', + 'parenthesis_brace_block', + 'square_brace_block', + 'throw', + 'use', + ], + 'binary_operator_spaces' => [ + 'align_double_arrow' => true, + 'align_equals' => true, + ], + 'braces' => [ + 'allow_single_line_closure' => true, + ], + ]) + ->setFinder( + PhpCsFixer\Finder::create() + ->exclude('vendor') + ->exclude('tests') + ->in(__DIR__) + ); diff --git a/vendor/alibabacloud/darabonba-openapi/README-CN.md b/vendor/alibabacloud/darabonba-openapi/README-CN.md new file mode 100644 index 000000000..b70255c3d --- /dev/null +++ b/vendor/alibabacloud/darabonba-openapi/README-CN.md @@ -0,0 +1,31 @@ +[English](README.md) | 简体中文 + +![](https://aliyunsdk-pages.alicdn.com/icons/AlibabaCloud.svg) + +## Alibaba Cloud OpenApi Client + +## 安装 + +### Composer + +```bash +composer require alibabacloud/darabonba-openapi +``` + +## 问题 + +[提交 Issue](https://github.com/aliyun/darabonba-openapi/issues/new),不符合指南的问题可能会立即关闭。 + +## 发行说明 + +每个版本的详细更改记录在[发行说明](./ChangeLog.txt)中。 + +## 相关 + +* [最新源码](https://github.com/aliyun/darabonba-openapi) + +## 许可证 + +[Apache-2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Copyright (c) 2009-present, Alibaba Cloud All rights reserved. diff --git a/vendor/alibabacloud/darabonba-openapi/README.md b/vendor/alibabacloud/darabonba-openapi/README.md new file mode 100644 index 000000000..97706274a --- /dev/null +++ b/vendor/alibabacloud/darabonba-openapi/README.md @@ -0,0 +1,31 @@ +English | [简体中文](README-CN.md) + +![](https://aliyunsdk-pages.alicdn.com/icons/AlibabaCloud.svg) + +## Alibaba Cloud OpenApi Client + +## Installation + +### Composer + +```bash +composer require alibabacloud/darabonba-openapi +``` + +## Issues + +[Opening an Issue](https://github.com/aliyun/darabonba-openapi/issues/new), Issues not conforming to the guidelines may be closed immediately. + +## Changelog + +Detailed changes for each release are documented in the [release notes](./ChangeLog.txt). + +## References + +* [Latest Release](https://github.com/aliyun/darabonba-openapi) + +## License + +[Apache-2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Copyright (c) 2009-present, Alibaba Cloud All rights reserved. diff --git a/vendor/alibabacloud/darabonba-openapi/autoload.php b/vendor/alibabacloud/darabonba-openapi/autoload.php new file mode 100644 index 000000000..526c18825 --- /dev/null +++ b/vendor/alibabacloud/darabonba-openapi/autoload.php @@ -0,0 +1,15 @@ +5.5", + "alibabacloud/tea-utils": "^0.2.17", + "alibabacloud/credentials": "^1.1", + "alibabacloud/openapi-util": "^0.1.10|^0.2.1", + "alibabacloud/gateway-spi": "^1", + "alibabacloud/tea-xml": "^0.2" + }, + "autoload": { + "psr-4": { + "Darabonba\\OpenApi\\": "src" + } + }, + "scripts": { + "fixer": "php-cs-fixer fix ./" + }, + "config": { + "sort-packages": true, + "preferred-install": "dist", + "optimize-autoloader": true + }, + "prefer-stable": true +} \ No newline at end of file diff --git a/vendor/alibabacloud/darabonba-openapi/src/Models/Config.php b/vendor/alibabacloud/darabonba-openapi/src/Models/Config.php new file mode 100644 index 000000000..7dc6dae2e --- /dev/null +++ b/vendor/alibabacloud/darabonba-openapi/src/Models/Config.php @@ -0,0 +1,424 @@ + '', + 'accessKeySecret' => '', + 'securityToken' => '', + 'protocol' => 'http', + 'method' => '', + 'regionId' => '', + 'readTimeout' => '', + 'connectTimeout' => '', + 'httpProxy' => '', + 'httpsProxy' => '', + 'credential' => '', + 'endpoint' => '', + 'noProxy' => '', + 'maxIdleConns' => '', + 'network' => '', + 'userAgent' => '', + 'suffix' => '', + 'socks5Proxy' => '', + 'socks5NetWork' => '', + 'endpointType' => '', + 'openPlatformEndpoint' => '', + 'type' => '', + 'signatureVersion' => '', + 'signatureAlgorithm' => '', + 'key' => '', + 'cert' => '', + 'ca' => '', + ]; + public function validate() + { + } + public function toMap() + { + $res = []; + if (null !== $this->accessKeyId) { + $res['accessKeyId'] = $this->accessKeyId; + } + if (null !== $this->accessKeySecret) { + $res['accessKeySecret'] = $this->accessKeySecret; + } + if (null !== $this->securityToken) { + $res['securityToken'] = $this->securityToken; + } + if (null !== $this->protocol) { + $res['protocol'] = $this->protocol; + } + if (null !== $this->method) { + $res['method'] = $this->method; + } + if (null !== $this->regionId) { + $res['regionId'] = $this->regionId; + } + if (null !== $this->readTimeout) { + $res['readTimeout'] = $this->readTimeout; + } + if (null !== $this->connectTimeout) { + $res['connectTimeout'] = $this->connectTimeout; + } + if (null !== $this->httpProxy) { + $res['httpProxy'] = $this->httpProxy; + } + if (null !== $this->httpsProxy) { + $res['httpsProxy'] = $this->httpsProxy; + } + if (null !== $this->credential) { + $res['credential'] = null !== $this->credential ? $this->credential->toMap() : null; + } + if (null !== $this->endpoint) { + $res['endpoint'] = $this->endpoint; + } + if (null !== $this->noProxy) { + $res['noProxy'] = $this->noProxy; + } + if (null !== $this->maxIdleConns) { + $res['maxIdleConns'] = $this->maxIdleConns; + } + if (null !== $this->network) { + $res['network'] = $this->network; + } + if (null !== $this->userAgent) { + $res['userAgent'] = $this->userAgent; + } + if (null !== $this->suffix) { + $res['suffix'] = $this->suffix; + } + if (null !== $this->socks5Proxy) { + $res['socks5Proxy'] = $this->socks5Proxy; + } + if (null !== $this->socks5NetWork) { + $res['socks5NetWork'] = $this->socks5NetWork; + } + if (null !== $this->endpointType) { + $res['endpointType'] = $this->endpointType; + } + if (null !== $this->openPlatformEndpoint) { + $res['openPlatformEndpoint'] = $this->openPlatformEndpoint; + } + if (null !== $this->type) { + $res['type'] = $this->type; + } + if (null !== $this->signatureVersion) { + $res['signatureVersion'] = $this->signatureVersion; + } + if (null !== $this->signatureAlgorithm) { + $res['signatureAlgorithm'] = $this->signatureAlgorithm; + } + if (null !== $this->globalParameters) { + $res['globalParameters'] = null !== $this->globalParameters ? $this->globalParameters->toMap() : null; + } + if (null !== $this->key) { + $res['key'] = $this->key; + } + if (null !== $this->cert) { + $res['cert'] = $this->cert; + } + if (null !== $this->ca) { + $res['ca'] = $this->ca; + } + return $res; + } + /** + * @param array $map + * @return Config + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['accessKeyId'])) { + $model->accessKeyId = $map['accessKeyId']; + } + if (isset($map['accessKeySecret'])) { + $model->accessKeySecret = $map['accessKeySecret']; + } + if (isset($map['securityToken'])) { + $model->securityToken = $map['securityToken']; + } + if (isset($map['protocol'])) { + $model->protocol = $map['protocol']; + } + if (isset($map['method'])) { + $model->method = $map['method']; + } + if (isset($map['regionId'])) { + $model->regionId = $map['regionId']; + } + if (isset($map['readTimeout'])) { + $model->readTimeout = $map['readTimeout']; + } + if (isset($map['connectTimeout'])) { + $model->connectTimeout = $map['connectTimeout']; + } + if (isset($map['httpProxy'])) { + $model->httpProxy = $map['httpProxy']; + } + if (isset($map['httpsProxy'])) { + $model->httpsProxy = $map['httpsProxy']; + } + if (isset($map['credential'])) { + $model->credential = Credential::fromMap($map['credential']); + } + if (isset($map['endpoint'])) { + $model->endpoint = $map['endpoint']; + } + if (isset($map['noProxy'])) { + $model->noProxy = $map['noProxy']; + } + if (isset($map['maxIdleConns'])) { + $model->maxIdleConns = $map['maxIdleConns']; + } + if (isset($map['network'])) { + $model->network = $map['network']; + } + if (isset($map['userAgent'])) { + $model->userAgent = $map['userAgent']; + } + if (isset($map['suffix'])) { + $model->suffix = $map['suffix']; + } + if (isset($map['socks5Proxy'])) { + $model->socks5Proxy = $map['socks5Proxy']; + } + if (isset($map['socks5NetWork'])) { + $model->socks5NetWork = $map['socks5NetWork']; + } + if (isset($map['endpointType'])) { + $model->endpointType = $map['endpointType']; + } + if (isset($map['openPlatformEndpoint'])) { + $model->openPlatformEndpoint = $map['openPlatformEndpoint']; + } + if (isset($map['type'])) { + $model->type = $map['type']; + } + if (isset($map['signatureVersion'])) { + $model->signatureVersion = $map['signatureVersion']; + } + if (isset($map['signatureAlgorithm'])) { + $model->signatureAlgorithm = $map['signatureAlgorithm']; + } + if (isset($map['globalParameters'])) { + $model->globalParameters = GlobalParameters::fromMap($map['globalParameters']); + } + if (isset($map['key'])) { + $model->key = $map['key']; + } + if (isset($map['cert'])) { + $model->cert = $map['cert']; + } + if (isset($map['ca'])) { + $model->ca = $map['ca']; + } + return $model; + } + /** + * @description accesskey id + * @var string + */ + public $accessKeyId; + + /** + * @description accesskey secret + * @var string + */ + public $accessKeySecret; + + /** + * @description security token + * @example a.txt + * @var string + */ + public $securityToken; + + /** + * @description http protocol + * @example http + * @var string + */ + public $protocol; + + /** + * @description http method + * @example GET + * @var string + */ + public $method; + + /** + * @description region id + * @example cn-hangzhou + * @var string + */ + public $regionId; + + /** + * @description read timeout + * @example 10 + * @var int + */ + public $readTimeout; + + /** + * @description connect timeout + * @example 10 + * @var int + */ + public $connectTimeout; + + /** + * @description http proxy + * @example http://localhost + * @var string + */ + public $httpProxy; + + /** + * @description https proxy + * @example https://localhost + * @var string + */ + public $httpsProxy; + + /** + * @description credential + * @example + * @var Credential + */ + public $credential; + + /** + * @description endpoint + * @example cs.aliyuncs.com + * @var string + */ + public $endpoint; + + /** + * @description proxy white list + * @example http://localhost + * @var string + */ + public $noProxy; + + /** + * @description max idle conns + * @example 3 + * @var int + */ + public $maxIdleConns; + + /** + * @description network for endpoint + * @example public + * @var string + */ + public $network; + + /** + * @description user agent + * @example Alibabacloud/1 + * @var string + */ + public $userAgent; + + /** + * @description suffix for endpoint + * @example aliyun + * @var string + */ + public $suffix; + + /** + * @description socks5 proxy + * @var string + */ + public $socks5Proxy; + + /** + * @description socks5 network + * @example TCP + * @var string + */ + public $socks5NetWork; + + /** + * @description endpoint type + * @example internal + * @var string + */ + public $endpointType; + + /** + * @description OpenPlatform endpoint + * @example openplatform.aliyuncs.com + * @var string + */ + public $openPlatformEndpoint; + + /** + * @description credential type + * @example access_key + * @deprecated + * @var string + */ + public $type; + + /** + * @description Signature Version + * @example v1 + * @var string + */ + public $signatureVersion; + + /** + * @description Signature Algorithm + * @example ACS3-HMAC-SHA256 + * @var string + */ + public $signatureAlgorithm; + + /** + * @description Global Parameters + * @var GlobalParameters + */ + public $globalParameters; + + /** + * @description privite key for client certificate + * @example MIIEvQ + * @var string + */ + public $key; + + /** + * @description client certificate + * @example -----BEGIN CERTIFICATE----- +xxx-----END CERTIFICATE----- + * @var string + */ + public $cert; + + /** + * @description server certificate + * @example -----BEGIN CERTIFICATE----- +xxx-----END CERTIFICATE----- + * @var string + */ + public $ca; +} diff --git a/vendor/alibabacloud/darabonba-openapi/src/Models/GlobalParameters.php b/vendor/alibabacloud/darabonba-openapi/src/Models/GlobalParameters.php new file mode 100644 index 000000000..37505de14 --- /dev/null +++ b/vendor/alibabacloud/darabonba-openapi/src/Models/GlobalParameters.php @@ -0,0 +1,42 @@ +headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->queries) { + $res['queries'] = $this->queries; + } + return $res; + } + /** + * @param array $map + * @return GlobalParameters + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['queries'])) { + $model->queries = $map['queries']; + } + return $model; + } + public $headers; + + public $queries; +} diff --git a/vendor/alibabacloud/darabonba-openapi/src/Models/OpenApiRequest.php b/vendor/alibabacloud/darabonba-openapi/src/Models/OpenApiRequest.php new file mode 100644 index 000000000..2796eca32 --- /dev/null +++ b/vendor/alibabacloud/darabonba-openapi/src/Models/OpenApiRequest.php @@ -0,0 +1,74 @@ +headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->query) { + $res['query'] = $this->query; + } + if (null !== $this->body) { + $res['body'] = $this->body; + } + if (null !== $this->stream) { + $res['stream'] = $this->stream; + } + if (null !== $this->hostMap) { + $res['hostMap'] = $this->hostMap; + } + if (null !== $this->endpointOverride) { + $res['endpointOverride'] = $this->endpointOverride; + } + return $res; + } + /** + * @param array $map + * @return OpenApiRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['query'])) { + $model->query = $map['query']; + } + if (isset($map['body'])) { + $model->body = $map['body']; + } + if (isset($map['stream'])) { + $model->stream = $map['stream']; + } + if (isset($map['hostMap'])) { + $model->hostMap = $map['hostMap']; + } + if (isset($map['endpointOverride'])) { + $model->endpointOverride = $map['endpointOverride']; + } + return $model; + } + public $headers; + + public $query; + + public $body; + + public $stream; + + public $hostMap; + + public $endpointOverride; +} diff --git a/vendor/alibabacloud/darabonba-openapi/src/Models/Params.php b/vendor/alibabacloud/darabonba-openapi/src/Models/Params.php new file mode 100644 index 000000000..3838659f2 --- /dev/null +++ b/vendor/alibabacloud/darabonba-openapi/src/Models/Params.php @@ -0,0 +1,130 @@ +action, true); + Model::validateRequired('version', $this->version, true); + Model::validateRequired('protocol', $this->protocol, true); + Model::validateRequired('pathname', $this->pathname, true); + Model::validateRequired('method', $this->method, true); + Model::validateRequired('authType', $this->authType, true); + Model::validateRequired('bodyType', $this->bodyType, true); + Model::validateRequired('reqBodyType', $this->reqBodyType, true); + } + public function toMap() + { + $res = []; + if (null !== $this->action) { + $res['action'] = $this->action; + } + if (null !== $this->version) { + $res['version'] = $this->version; + } + if (null !== $this->protocol) { + $res['protocol'] = $this->protocol; + } + if (null !== $this->pathname) { + $res['pathname'] = $this->pathname; + } + if (null !== $this->method) { + $res['method'] = $this->method; + } + if (null !== $this->authType) { + $res['authType'] = $this->authType; + } + if (null !== $this->bodyType) { + $res['bodyType'] = $this->bodyType; + } + if (null !== $this->reqBodyType) { + $res['reqBodyType'] = $this->reqBodyType; + } + if (null !== $this->style) { + $res['style'] = $this->style; + } + return $res; + } + /** + * @param array $map + * @return Params + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['action'])) { + $model->action = $map['action']; + } + if (isset($map['version'])) { + $model->version = $map['version']; + } + if (isset($map['protocol'])) { + $model->protocol = $map['protocol']; + } + if (isset($map['pathname'])) { + $model->pathname = $map['pathname']; + } + if (isset($map['method'])) { + $model->method = $map['method']; + } + if (isset($map['authType'])) { + $model->authType = $map['authType']; + } + if (isset($map['bodyType'])) { + $model->bodyType = $map['bodyType']; + } + if (isset($map['reqBodyType'])) { + $model->reqBodyType = $map['reqBodyType']; + } + if (isset($map['style'])) { + $model->style = $map['style']; + } + return $model; + } + /** + * @var string + */ + public $action; + + /** + * @var string + */ + public $version; + + /** + * @var string + */ + public $protocol; + + /** + * @var string + */ + public $pathname; + + /** + * @var string + */ + public $method; + + /** + * @var string + */ + public $authType; + + /** + * @var string + */ + public $bodyType; + + /** + * @var string + */ + public $reqBodyType; + + public $style; +} diff --git a/vendor/alibabacloud/darabonba-openapi/src/OpenApiClient.php b/vendor/alibabacloud/darabonba-openapi/src/OpenApiClient.php new file mode 100644 index 000000000..24eb57ee3 --- /dev/null +++ b/vendor/alibabacloud/darabonba-openapi/src/OpenApiClient.php @@ -0,0 +1,1177 @@ + "ParameterMissing", + "message" => "'config' can not be unset" + ]); + } + if (!Utils::empty_($config->accessKeyId) && !Utils::empty_($config->accessKeySecret)) { + if (!Utils::empty_($config->securityToken)) { + $config->type = "sts"; + } else { + $config->type = "access_key"; + } + $credentialConfig = new Config([ + "accessKeyId" => $config->accessKeyId, + "type" => $config->type, + "accessKeySecret" => $config->accessKeySecret + ]); + $credentialConfig->securityToken = $config->securityToken; + $this->_credential = new Credential($credentialConfig); + } else if (!Utils::isUnset($config->credential)) { + $this->_credential = $config->credential; + } + $this->_endpoint = $config->endpoint; + $this->_endpointType = $config->endpointType; + $this->_network = $config->network; + $this->_suffix = $config->suffix; + $this->_protocol = $config->protocol; + $this->_method = $config->method; + $this->_regionId = $config->regionId; + $this->_userAgent = $config->userAgent; + $this->_readTimeout = $config->readTimeout; + $this->_connectTimeout = $config->connectTimeout; + $this->_httpProxy = $config->httpProxy; + $this->_httpsProxy = $config->httpsProxy; + $this->_noProxy = $config->noProxy; + $this->_socks5Proxy = $config->socks5Proxy; + $this->_socks5NetWork = $config->socks5NetWork; + $this->_maxIdleConns = $config->maxIdleConns; + $this->_signatureVersion = $config->signatureVersion; + $this->_signatureAlgorithm = $config->signatureAlgorithm; + $this->_globalParameters = $config->globalParameters; + $this->_key = $config->key; + $this->_cert = $config->cert; + $this->_ca = $config->ca; + } + + /** + * Encapsulate the request and invoke the network + * @param string $action api name + * @param string $version product version + * @param string $protocol http or https + * @param string $method e.g. GET + * @param string $authType authorization type e.g. AK + * @param string $bodyType response body type e.g. String + * @param OpenApiRequest $request object of OpenApiRequest + * @param RuntimeOptions $runtime which controls some details of call api, such as retry times + * @return array the response + * @throws TeaError + * @throws Exception + * @throws TeaUnableRetryError + */ + public function doRPCRequest($action, $version, $protocol, $method, $authType, $bodyType, $request, $runtime) + { + $request->validate(); + $runtime->validate(); + $_runtime = [ + "timeouted" => "retry", + "key" => Utils::defaultString($runtime->key, $this->_key), + "cert" => Utils::defaultString($runtime->cert, $this->_cert), + "ca" => Utils::defaultString($runtime->ca, $this->_ca), + "readTimeout" => Utils::defaultNumber($runtime->readTimeout, $this->_readTimeout), + "connectTimeout" => Utils::defaultNumber($runtime->connectTimeout, $this->_connectTimeout), + "httpProxy" => Utils::defaultString($runtime->httpProxy, $this->_httpProxy), + "httpsProxy" => Utils::defaultString($runtime->httpsProxy, $this->_httpsProxy), + "noProxy" => Utils::defaultString($runtime->noProxy, $this->_noProxy), + "socks5Proxy" => Utils::defaultString($runtime->socks5Proxy, $this->_socks5Proxy), + "socks5NetWork" => Utils::defaultString($runtime->socks5NetWork, $this->_socks5NetWork), + "maxIdleConns" => Utils::defaultNumber($runtime->maxIdleConns, $this->_maxIdleConns), + "retry" => [ + "retryable" => $runtime->autoretry, + "maxAttempts" => Utils::defaultNumber($runtime->maxAttempts, 3) + ], + "backoff" => [ + "policy" => Utils::defaultString($runtime->backoffPolicy, "no"), + "period" => Utils::defaultNumber($runtime->backoffPeriod, 1) + ], + "ignoreSSL" => $runtime->ignoreSSL + ]; + $_lastRequest = null; + $_lastException = null; + $_now = time(); + $_retryTimes = 0; + while (Tea::allowRetry(@$_runtime["retry"], $_retryTimes, $_now)) { + if ($_retryTimes > 0) { + $_backoffTime = Tea::getBackoffTime(@$_runtime["backoff"], $_retryTimes); + if ($_backoffTime > 0) { + Tea::sleep($_backoffTime); + } + } + $_retryTimes = $_retryTimes + 1; + try { + $_request = new Request(); + $_request->protocol = Utils::defaultString($this->_protocol, $protocol); + $_request->method = $method; + $_request->pathname = "/"; + $globalQueries = []; + $globalHeaders = []; + if (!Utils::isUnset($this->_globalParameters)) { + $globalParams = $this->_globalParameters; + if (!Utils::isUnset($globalParams->queries)) { + $globalQueries = $globalParams->queries; + } + if (!Utils::isUnset($globalParams->headers)) { + $globalHeaders = $globalParams->headers; + } + } + $_request->query = Tea::merge([ + "Action" => $action, + "Format" => "json", + "Version" => $version, + "Timestamp" => OpenApiUtilClient::getTimestamp(), + "SignatureNonce" => Utils::getNonce() + ], $globalQueries, $request->query); + $headers = $this->getRpcHeaders(); + if (Utils::isUnset($headers)) { + // endpoint is setted in product client + $_request->headers = Tea::merge([ + "host" => $this->_endpoint, + "x-acs-version" => $version, + "x-acs-action" => $action, + "user-agent" => $this->getUserAgent() + ], $globalHeaders); + } else { + $_request->headers = Tea::merge([ + "host" => $this->_endpoint, + "x-acs-version" => $version, + "x-acs-action" => $action, + "user-agent" => $this->getUserAgent() + ], $globalHeaders, $headers); + } + if (!Utils::isUnset($request->body)) { + $m = Utils::assertAsMap($request->body); + $tmp = Utils::anyifyMapValue(OpenApiUtilClient::query($m)); + $_request->body = Utils::toFormString($tmp); + $_request->headers["content-type"] = "application/x-www-form-urlencoded"; + } + if (!Utils::equalString($authType, "Anonymous")) { + $accessKeyId = $this->getAccessKeyId(); + $accessKeySecret = $this->getAccessKeySecret(); + $securityToken = $this->getSecurityToken(); + if (!Utils::empty_($securityToken)) { + $_request->query["SecurityToken"] = $securityToken; + } + $_request->query["SignatureMethod"] = "HMAC-SHA1"; + $_request->query["SignatureVersion"] = "1.0"; + $_request->query["AccessKeyId"] = $accessKeyId; + $t = null; + if (!Utils::isUnset($request->body)) { + $t = Utils::assertAsMap($request->body); + } + $signedParam = Tea::merge($_request->query, OpenApiUtilClient::query($t)); + $_request->query["Signature"] = OpenApiUtilClient::getRPCSignature($signedParam, $_request->method, $accessKeySecret); + } + $_lastRequest = $_request; + $_response = Tea::send($_request, $_runtime); + if (Utils::is4xx($_response->statusCode) || Utils::is5xx($_response->statusCode)) { + $_res = Utils::readAsJSON($_response->body); + $err = Utils::assertAsMap($_res); + $requestId = self::defaultAny(@$err["RequestId"], @$err["requestId"]); + @$err["statusCode"] = $_response->statusCode; + throw new TeaError([ + "code" => "" . (string) (self::defaultAny(@$err["Code"], @$err["code"])) . "", + "message" => "code: " . (string) ($_response->statusCode) . ", " . (string) (self::defaultAny(@$err["Message"], @$err["message"])) . " request id: " . (string) ($requestId) . "", + "data" => $err, + "description" => "" . (string) (self::defaultAny(@$err["Description"], @$err["description"])) . "", + "accessDeniedDetail" => self::defaultAny(@$err["AccessDeniedDetail"], @$err["accessDeniedDetail"]) + ]); + } + if (Utils::equalString($bodyType, "binary")) { + $resp = [ + "body" => $_response->body, + "headers" => $_response->headers, + "statusCode" => $_response->statusCode + ]; + return $resp; + } else if (Utils::equalString($bodyType, "byte")) { + $byt = Utils::readAsBytes($_response->body); + return [ + "body" => $byt, + "headers" => $_response->headers, + "statusCode" => $_response->statusCode + ]; + } else if (Utils::equalString($bodyType, "string")) { + $str = Utils::readAsString($_response->body); + return [ + "body" => $str, + "headers" => $_response->headers, + "statusCode" => $_response->statusCode + ]; + } else if (Utils::equalString($bodyType, "json")) { + $obj = Utils::readAsJSON($_response->body); + $res = Utils::assertAsMap($obj); + return [ + "body" => $res, + "headers" => $_response->headers, + "statusCode" => $_response->statusCode + ]; + } else if (Utils::equalString($bodyType, "array")) { + $arr = Utils::readAsJSON($_response->body); + return [ + "body" => $arr, + "headers" => $_response->headers, + "statusCode" => $_response->statusCode + ]; + } else { + return [ + "headers" => $_response->headers, + "statusCode" => $_response->statusCode + ]; + } + } catch (Exception $e) { + if (!($e instanceof TeaError)) { + $e = new TeaError([], $e->getMessage(), $e->getCode(), $e); + } + if (Tea::isRetryable($e)) { + $_lastException = $e; + continue; + } + throw $e; + } + } + throw new TeaUnableRetryError($_lastRequest, $_lastException); + } + + /** + * Encapsulate the request and invoke the network + * @param string $action api name + * @param string $version product version + * @param string $protocol http or https + * @param string $method e.g. GET + * @param string $authType authorization type e.g. AK + * @param string $pathname pathname of every api + * @param string $bodyType response body type e.g. String + * @param OpenApiRequest $request object of OpenApiRequest + * @param RuntimeOptions $runtime which controls some details of call api, such as retry times + * @return array the response + * @throws TeaError + * @throws Exception + * @throws TeaUnableRetryError + */ + public function doROARequest($action, $version, $protocol, $method, $authType, $pathname, $bodyType, $request, $runtime) + { + $request->validate(); + $runtime->validate(); + $_runtime = [ + "timeouted" => "retry", + "key" => Utils::defaultString($runtime->key, $this->_key), + "cert" => Utils::defaultString($runtime->cert, $this->_cert), + "ca" => Utils::defaultString($runtime->ca, $this->_ca), + "readTimeout" => Utils::defaultNumber($runtime->readTimeout, $this->_readTimeout), + "connectTimeout" => Utils::defaultNumber($runtime->connectTimeout, $this->_connectTimeout), + "httpProxy" => Utils::defaultString($runtime->httpProxy, $this->_httpProxy), + "httpsProxy" => Utils::defaultString($runtime->httpsProxy, $this->_httpsProxy), + "noProxy" => Utils::defaultString($runtime->noProxy, $this->_noProxy), + "socks5Proxy" => Utils::defaultString($runtime->socks5Proxy, $this->_socks5Proxy), + "socks5NetWork" => Utils::defaultString($runtime->socks5NetWork, $this->_socks5NetWork), + "maxIdleConns" => Utils::defaultNumber($runtime->maxIdleConns, $this->_maxIdleConns), + "retry" => [ + "retryable" => $runtime->autoretry, + "maxAttempts" => Utils::defaultNumber($runtime->maxAttempts, 3) + ], + "backoff" => [ + "policy" => Utils::defaultString($runtime->backoffPolicy, "no"), + "period" => Utils::defaultNumber($runtime->backoffPeriod, 1) + ], + "ignoreSSL" => $runtime->ignoreSSL + ]; + $_lastRequest = null; + $_lastException = null; + $_now = time(); + $_retryTimes = 0; + while (Tea::allowRetry(@$_runtime["retry"], $_retryTimes, $_now)) { + if ($_retryTimes > 0) { + $_backoffTime = Tea::getBackoffTime(@$_runtime["backoff"], $_retryTimes); + if ($_backoffTime > 0) { + Tea::sleep($_backoffTime); + } + } + $_retryTimes = $_retryTimes + 1; + try { + $_request = new Request(); + $_request->protocol = Utils::defaultString($this->_protocol, $protocol); + $_request->method = $method; + $_request->pathname = $pathname; + $globalQueries = []; + $globalHeaders = []; + if (!Utils::isUnset($this->_globalParameters)) { + $globalParams = $this->_globalParameters; + if (!Utils::isUnset($globalParams->queries)) { + $globalQueries = $globalParams->queries; + } + if (!Utils::isUnset($globalParams->headers)) { + $globalHeaders = $globalParams->headers; + } + } + $_request->headers = Tea::merge([ + "date" => Utils::getDateUTCString(), + "host" => $this->_endpoint, + "accept" => "application/json", + "x-acs-signature-nonce" => Utils::getNonce(), + "x-acs-signature-method" => "HMAC-SHA1", + "x-acs-signature-version" => "1.0", + "x-acs-version" => $version, + "x-acs-action" => $action, + "user-agent" => Utils::getUserAgent($this->_userAgent) + ], $globalHeaders, $request->headers); + if (!Utils::isUnset($request->body)) { + $_request->body = Utils::toJSONString($request->body); + $_request->headers["content-type"] = "application/json; charset=utf-8"; + } + $_request->query = $globalQueries; + if (!Utils::isUnset($request->query)) { + $_request->query = Tea::merge($_request->query, $request->query); + } + if (!Utils::equalString($authType, "Anonymous")) { + $accessKeyId = $this->getAccessKeyId(); + $accessKeySecret = $this->getAccessKeySecret(); + $securityToken = $this->getSecurityToken(); + if (!Utils::empty_($securityToken)) { + $_request->headers["x-acs-accesskey-id"] = $accessKeyId; + $_request->headers["x-acs-security-token"] = $securityToken; + } + $stringToSign = OpenApiUtilClient::getStringToSign($_request); + $_request->headers["authorization"] = "acs " . $accessKeyId . ":" . OpenApiUtilClient::getROASignature($stringToSign, $accessKeySecret) . ""; + } + $_lastRequest = $_request; + $_response = Tea::send($_request, $_runtime); + if (Utils::equalNumber($_response->statusCode, 204)) { + return [ + "headers" => $_response->headers + ]; + } + if (Utils::is4xx($_response->statusCode) || Utils::is5xx($_response->statusCode)) { + $_res = Utils::readAsJSON($_response->body); + $err = Utils::assertAsMap($_res); + $requestId = self::defaultAny(@$err["RequestId"], @$err["requestId"]); + $requestId = self::defaultAny($requestId, @$err["requestid"]); + @$err["statusCode"] = $_response->statusCode; + throw new TeaError([ + "code" => "" . (string) (self::defaultAny(@$err["Code"], @$err["code"])) . "", + "message" => "code: " . (string) ($_response->statusCode) . ", " . (string) (self::defaultAny(@$err["Message"], @$err["message"])) . " request id: " . (string) ($requestId) . "", + "data" => $err, + "description" => "" . (string) (self::defaultAny(@$err["Description"], @$err["description"])) . "", + "accessDeniedDetail" => self::defaultAny(@$err["AccessDeniedDetail"], @$err["accessDeniedDetail"]) + ]); + } + if (Utils::equalString($bodyType, "binary")) { + $resp = [ + "body" => $_response->body, + "headers" => $_response->headers, + "statusCode" => $_response->statusCode + ]; + return $resp; + } else if (Utils::equalString($bodyType, "byte")) { + $byt = Utils::readAsBytes($_response->body); + return [ + "body" => $byt, + "headers" => $_response->headers, + "statusCode" => $_response->statusCode + ]; + } else if (Utils::equalString($bodyType, "string")) { + $str = Utils::readAsString($_response->body); + return [ + "body" => $str, + "headers" => $_response->headers, + "statusCode" => $_response->statusCode + ]; + } else if (Utils::equalString($bodyType, "json")) { + $obj = Utils::readAsJSON($_response->body); + $res = Utils::assertAsMap($obj); + return [ + "body" => $res, + "headers" => $_response->headers, + "statusCode" => $_response->statusCode + ]; + } else if (Utils::equalString($bodyType, "array")) { + $arr = Utils::readAsJSON($_response->body); + return [ + "body" => $arr, + "headers" => $_response->headers, + "statusCode" => $_response->statusCode + ]; + } else { + return [ + "headers" => $_response->headers, + "statusCode" => $_response->statusCode + ]; + } + } catch (Exception $e) { + if (!($e instanceof TeaError)) { + $e = new TeaError([], $e->getMessage(), $e->getCode(), $e); + } + if (Tea::isRetryable($e)) { + $_lastException = $e; + continue; + } + throw $e; + } + } + throw new TeaUnableRetryError($_lastRequest, $_lastException); + } + + /** + * Encapsulate the request and invoke the network with form body + * @param string $action api name + * @param string $version product version + * @param string $protocol http or https + * @param string $method e.g. GET + * @param string $authType authorization type e.g. AK + * @param string $pathname pathname of every api + * @param string $bodyType response body type e.g. String + * @param OpenApiRequest $request object of OpenApiRequest + * @param RuntimeOptions $runtime which controls some details of call api, such as retry times + * @return array the response + * @throws TeaError + * @throws Exception + * @throws TeaUnableRetryError + */ + public function doROARequestWithForm($action, $version, $protocol, $method, $authType, $pathname, $bodyType, $request, $runtime) + { + $request->validate(); + $runtime->validate(); + $_runtime = [ + "timeouted" => "retry", + "key" => Utils::defaultString($runtime->key, $this->_key), + "cert" => Utils::defaultString($runtime->cert, $this->_cert), + "ca" => Utils::defaultString($runtime->ca, $this->_ca), + "readTimeout" => Utils::defaultNumber($runtime->readTimeout, $this->_readTimeout), + "connectTimeout" => Utils::defaultNumber($runtime->connectTimeout, $this->_connectTimeout), + "httpProxy" => Utils::defaultString($runtime->httpProxy, $this->_httpProxy), + "httpsProxy" => Utils::defaultString($runtime->httpsProxy, $this->_httpsProxy), + "noProxy" => Utils::defaultString($runtime->noProxy, $this->_noProxy), + "socks5Proxy" => Utils::defaultString($runtime->socks5Proxy, $this->_socks5Proxy), + "socks5NetWork" => Utils::defaultString($runtime->socks5NetWork, $this->_socks5NetWork), + "maxIdleConns" => Utils::defaultNumber($runtime->maxIdleConns, $this->_maxIdleConns), + "retry" => [ + "retryable" => $runtime->autoretry, + "maxAttempts" => Utils::defaultNumber($runtime->maxAttempts, 3) + ], + "backoff" => [ + "policy" => Utils::defaultString($runtime->backoffPolicy, "no"), + "period" => Utils::defaultNumber($runtime->backoffPeriod, 1) + ], + "ignoreSSL" => $runtime->ignoreSSL + ]; + $_lastRequest = null; + $_lastException = null; + $_now = time(); + $_retryTimes = 0; + while (Tea::allowRetry(@$_runtime["retry"], $_retryTimes, $_now)) { + if ($_retryTimes > 0) { + $_backoffTime = Tea::getBackoffTime(@$_runtime["backoff"], $_retryTimes); + if ($_backoffTime > 0) { + Tea::sleep($_backoffTime); + } + } + $_retryTimes = $_retryTimes + 1; + try { + $_request = new Request(); + $_request->protocol = Utils::defaultString($this->_protocol, $protocol); + $_request->method = $method; + $_request->pathname = $pathname; + $globalQueries = []; + $globalHeaders = []; + if (!Utils::isUnset($this->_globalParameters)) { + $globalParams = $this->_globalParameters; + if (!Utils::isUnset($globalParams->queries)) { + $globalQueries = $globalParams->queries; + } + if (!Utils::isUnset($globalParams->headers)) { + $globalHeaders = $globalParams->headers; + } + } + $_request->headers = Tea::merge([ + "date" => Utils::getDateUTCString(), + "host" => $this->_endpoint, + "accept" => "application/json", + "x-acs-signature-nonce" => Utils::getNonce(), + "x-acs-signature-method" => "HMAC-SHA1", + "x-acs-signature-version" => "1.0", + "x-acs-version" => $version, + "x-acs-action" => $action, + "user-agent" => Utils::getUserAgent($this->_userAgent) + ], $globalHeaders, $request->headers); + if (!Utils::isUnset($request->body)) { + $m = Utils::assertAsMap($request->body); + $_request->body = OpenApiUtilClient::toForm($m); + $_request->headers["content-type"] = "application/x-www-form-urlencoded"; + } + $_request->query = $globalQueries; + if (!Utils::isUnset($request->query)) { + $_request->query = Tea::merge($_request->query, $request->query); + } + if (!Utils::equalString($authType, "Anonymous")) { + $accessKeyId = $this->getAccessKeyId(); + $accessKeySecret = $this->getAccessKeySecret(); + $securityToken = $this->getSecurityToken(); + if (!Utils::empty_($securityToken)) { + $_request->headers["x-acs-accesskey-id"] = $accessKeyId; + $_request->headers["x-acs-security-token"] = $securityToken; + } + $stringToSign = OpenApiUtilClient::getStringToSign($_request); + $_request->headers["authorization"] = "acs " . $accessKeyId . ":" . OpenApiUtilClient::getROASignature($stringToSign, $accessKeySecret) . ""; + } + $_lastRequest = $_request; + $_response = Tea::send($_request, $_runtime); + if (Utils::equalNumber($_response->statusCode, 204)) { + return [ + "headers" => $_response->headers + ]; + } + if (Utils::is4xx($_response->statusCode) || Utils::is5xx($_response->statusCode)) { + $_res = Utils::readAsJSON($_response->body); + $err = Utils::assertAsMap($_res); + @$err["statusCode"] = $_response->statusCode; + throw new TeaError([ + "code" => "" . (string) (self::defaultAny(@$err["Code"], @$err["code"])) . "", + "message" => "code: " . (string) ($_response->statusCode) . ", " . (string) (self::defaultAny(@$err["Message"], @$err["message"])) . " request id: " . (string) (self::defaultAny(@$err["RequestId"], @$err["requestId"])) . "", + "data" => $err, + "description" => "" . (string) (self::defaultAny(@$err["Description"], @$err["description"])) . "", + "accessDeniedDetail" => self::defaultAny(@$err["AccessDeniedDetail"], @$err["accessDeniedDetail"]) + ]); + } + if (Utils::equalString($bodyType, "binary")) { + $resp = [ + "body" => $_response->body, + "headers" => $_response->headers, + "statusCode" => $_response->statusCode + ]; + return $resp; + } else if (Utils::equalString($bodyType, "byte")) { + $byt = Utils::readAsBytes($_response->body); + return [ + "body" => $byt, + "headers" => $_response->headers, + "statusCode" => $_response->statusCode + ]; + } else if (Utils::equalString($bodyType, "string")) { + $str = Utils::readAsString($_response->body); + return [ + "body" => $str, + "headers" => $_response->headers, + "statusCode" => $_response->statusCode + ]; + } else if (Utils::equalString($bodyType, "json")) { + $obj = Utils::readAsJSON($_response->body); + $res = Utils::assertAsMap($obj); + return [ + "body" => $res, + "headers" => $_response->headers, + "statusCode" => $_response->statusCode + ]; + } else if (Utils::equalString($bodyType, "array")) { + $arr = Utils::readAsJSON($_response->body); + return [ + "body" => $arr, + "headers" => $_response->headers, + "statusCode" => $_response->statusCode + ]; + } else { + return [ + "headers" => $_response->headers, + "statusCode" => $_response->statusCode + ]; + } + } catch (Exception $e) { + if (!($e instanceof TeaError)) { + $e = new TeaError([], $e->getMessage(), $e->getCode(), $e); + } + if (Tea::isRetryable($e)) { + $_lastException = $e; + continue; + } + throw $e; + } + } + throw new TeaUnableRetryError($_lastRequest, $_lastException); + } + + /** + * Encapsulate the request and invoke the network + * @param Params $params + * @param OpenApiRequest $request object of OpenApiRequest + * @param RuntimeOptions $runtime which controls some details of call api, such as retry times + * @return array the response + * @throws TeaError + * @throws Exception + * @throws TeaUnableRetryError + */ + public function doRequest($params, $request, $runtime) + { + $params->validate(); + $request->validate(); + $runtime->validate(); + $_runtime = [ + "timeouted" => "retry", + "key" => Utils::defaultString($runtime->key, $this->_key), + "cert" => Utils::defaultString($runtime->cert, $this->_cert), + "ca" => Utils::defaultString($runtime->ca, $this->_ca), + "readTimeout" => Utils::defaultNumber($runtime->readTimeout, $this->_readTimeout), + "connectTimeout" => Utils::defaultNumber($runtime->connectTimeout, $this->_connectTimeout), + "httpProxy" => Utils::defaultString($runtime->httpProxy, $this->_httpProxy), + "httpsProxy" => Utils::defaultString($runtime->httpsProxy, $this->_httpsProxy), + "noProxy" => Utils::defaultString($runtime->noProxy, $this->_noProxy), + "socks5Proxy" => Utils::defaultString($runtime->socks5Proxy, $this->_socks5Proxy), + "socks5NetWork" => Utils::defaultString($runtime->socks5NetWork, $this->_socks5NetWork), + "maxIdleConns" => Utils::defaultNumber($runtime->maxIdleConns, $this->_maxIdleConns), + "retry" => [ + "retryable" => $runtime->autoretry, + "maxAttempts" => Utils::defaultNumber($runtime->maxAttempts, 3) + ], + "backoff" => [ + "policy" => Utils::defaultString($runtime->backoffPolicy, "no"), + "period" => Utils::defaultNumber($runtime->backoffPeriod, 1) + ], + "ignoreSSL" => $runtime->ignoreSSL + ]; + $_lastRequest = null; + $_lastException = null; + $_now = time(); + $_retryTimes = 0; + while (Tea::allowRetry(@$_runtime["retry"], $_retryTimes, $_now)) { + if ($_retryTimes > 0) { + $_backoffTime = Tea::getBackoffTime(@$_runtime["backoff"], $_retryTimes); + if ($_backoffTime > 0) { + Tea::sleep($_backoffTime); + } + } + $_retryTimes = $_retryTimes + 1; + try { + $_request = new Request(); + $_request->protocol = Utils::defaultString($this->_protocol, $params->protocol); + $_request->method = $params->method; + $_request->pathname = $params->pathname; + $globalQueries = []; + $globalHeaders = []; + if (!Utils::isUnset($this->_globalParameters)) { + $globalParams = $this->_globalParameters; + if (!Utils::isUnset($globalParams->queries)) { + $globalQueries = $globalParams->queries; + } + if (!Utils::isUnset($globalParams->headers)) { + $globalHeaders = $globalParams->headers; + } + } + $_request->query = Tea::merge($globalQueries, $request->query); + // endpoint is setted in product client + $_request->headers = Tea::merge([ + "host" => $this->_endpoint, + "x-acs-version" => $params->version, + "x-acs-action" => $params->action, + "user-agent" => $this->getUserAgent(), + "x-acs-date" => OpenApiUtilClient::getTimestamp(), + "x-acs-signature-nonce" => Utils::getNonce(), + "accept" => "application/json" + ], $globalHeaders, $request->headers); + if (Utils::equalString($params->style, "RPC")) { + $headers = $this->getRpcHeaders(); + if (!Utils::isUnset($headers)) { + $_request->headers = Tea::merge($_request->headers, $headers); + } + } + $signatureAlgorithm = Utils::defaultString($this->_signatureAlgorithm, "ACS3-HMAC-SHA256"); + $hashedRequestPayload = OpenApiUtilClient::hexEncode(OpenApiUtilClient::hash(Utils::toBytes(""), $signatureAlgorithm)); + if (!Utils::isUnset($request->stream)) { + $tmp = Utils::readAsBytes($request->stream); + $hashedRequestPayload = OpenApiUtilClient::hexEncode(OpenApiUtilClient::hash($tmp, $signatureAlgorithm)); + $_request->body = $tmp; + $_request->headers["content-type"] = "application/octet-stream"; + } else { + if (!Utils::isUnset($request->body)) { + if (Utils::equalString($params->reqBodyType, "json")) { + $jsonObj = Utils::toJSONString($request->body); + $hashedRequestPayload = OpenApiUtilClient::hexEncode(OpenApiUtilClient::hash(Utils::toBytes($jsonObj), $signatureAlgorithm)); + $_request->body = $jsonObj; + $_request->headers["content-type"] = "application/json; charset=utf-8"; + } else { + $m = Utils::assertAsMap($request->body); + $formObj = OpenApiUtilClient::toForm($m); + $hashedRequestPayload = OpenApiUtilClient::hexEncode(OpenApiUtilClient::hash(Utils::toBytes($formObj), $signatureAlgorithm)); + $_request->body = $formObj; + $_request->headers["content-type"] = "application/x-www-form-urlencoded"; + } + } + } + $_request->headers["x-acs-content-sha256"] = $hashedRequestPayload; + if (!Utils::equalString($params->authType, "Anonymous")) { + $authType = $this->getType(); + if (Utils::equalString($authType, "bearer")) { + $bearerToken = $this->getBearerToken(); + $_request->headers["x-acs-bearer-token"] = $bearerToken; + } else { + $accessKeyId = $this->getAccessKeyId(); + $accessKeySecret = $this->getAccessKeySecret(); + $securityToken = $this->getSecurityToken(); + if (!Utils::empty_($securityToken)) { + $_request->headers["x-acs-accesskey-id"] = $accessKeyId; + $_request->headers["x-acs-security-token"] = $securityToken; + } + $_request->headers["Authorization"] = OpenApiUtilClient::getAuthorization($_request, $signatureAlgorithm, $hashedRequestPayload, $accessKeyId, $accessKeySecret); + } + } + $_lastRequest = $_request; + $_response = Tea::send($_request, $_runtime); + if (Utils::is4xx($_response->statusCode) || Utils::is5xx($_response->statusCode)) { + $_res = Utils::readAsJSON($_response->body); + $err = Utils::assertAsMap($_res); + @$err["statusCode"] = $_response->statusCode; + throw new TeaError([ + "code" => "" . (string) (self::defaultAny(@$err["Code"], @$err["code"])) . "", + "message" => "code: " . (string) ($_response->statusCode) . ", " . (string) (self::defaultAny(@$err["Message"], @$err["message"])) . " request id: " . (string) (self::defaultAny(@$err["RequestId"], @$err["requestId"])) . "", + "data" => $err, + "description" => "" . (string) (self::defaultAny(@$err["Description"], @$err["description"])) . "", + "accessDeniedDetail" => self::defaultAny(@$err["AccessDeniedDetail"], @$err["accessDeniedDetail"]) + ]); + } + if (Utils::equalString($params->bodyType, "binary")) { + $resp = [ + "body" => $_response->body, + "headers" => $_response->headers, + "statusCode" => $_response->statusCode + ]; + return $resp; + } else if (Utils::equalString($params->bodyType, "byte")) { + $byt = Utils::readAsBytes($_response->body); + return [ + "body" => $byt, + "headers" => $_response->headers, + "statusCode" => $_response->statusCode + ]; + } else if (Utils::equalString($params->bodyType, "string")) { + $str = Utils::readAsString($_response->body); + return [ + "body" => $str, + "headers" => $_response->headers, + "statusCode" => $_response->statusCode + ]; + } else if (Utils::equalString($params->bodyType, "json")) { + $obj = Utils::readAsJSON($_response->body); + $res = Utils::assertAsMap($obj); + return [ + "body" => $res, + "headers" => $_response->headers, + "statusCode" => $_response->statusCode + ]; + } else if (Utils::equalString($params->bodyType, "array")) { + $arr = Utils::readAsJSON($_response->body); + return [ + "body" => $arr, + "headers" => $_response->headers, + "statusCode" => $_response->statusCode + ]; + } else { + return [ + "headers" => $_response->headers, + "statusCode" => $_response->statusCode + ]; + } + } catch (Exception $e) { + if (!($e instanceof TeaError)) { + $e = new TeaError([], $e->getMessage(), $e->getCode(), $e); + } + if (Tea::isRetryable($e)) { + $_lastException = $e; + continue; + } + throw $e; + } + } + throw new TeaUnableRetryError($_lastRequest, $_lastException); + } + + /** + * Encapsulate the request and invoke the network + * @param Params $params + * @param OpenApiRequest $request object of OpenApiRequest + * @param RuntimeOptions $runtime which controls some details of call api, such as retry times + * @return array the response + * @throws TeaError + * @throws Exception + * @throws TeaUnableRetryError + */ + public function execute($params, $request, $runtime) + { + $params->validate(); + $request->validate(); + $runtime->validate(); + $_runtime = [ + "timeouted" => "retry", + "key" => Utils::defaultString($runtime->key, $this->_key), + "cert" => Utils::defaultString($runtime->cert, $this->_cert), + "ca" => Utils::defaultString($runtime->ca, $this->_ca), + "readTimeout" => Utils::defaultNumber($runtime->readTimeout, $this->_readTimeout), + "connectTimeout" => Utils::defaultNumber($runtime->connectTimeout, $this->_connectTimeout), + "httpProxy" => Utils::defaultString($runtime->httpProxy, $this->_httpProxy), + "httpsProxy" => Utils::defaultString($runtime->httpsProxy, $this->_httpsProxy), + "noProxy" => Utils::defaultString($runtime->noProxy, $this->_noProxy), + "socks5Proxy" => Utils::defaultString($runtime->socks5Proxy, $this->_socks5Proxy), + "socks5NetWork" => Utils::defaultString($runtime->socks5NetWork, $this->_socks5NetWork), + "maxIdleConns" => Utils::defaultNumber($runtime->maxIdleConns, $this->_maxIdleConns), + "retry" => [ + "retryable" => $runtime->autoretry, + "maxAttempts" => Utils::defaultNumber($runtime->maxAttempts, 3) + ], + "backoff" => [ + "policy" => Utils::defaultString($runtime->backoffPolicy, "no"), + "period" => Utils::defaultNumber($runtime->backoffPeriod, 1) + ], + "ignoreSSL" => $runtime->ignoreSSL + ]; + $_lastRequest = null; + $_lastException = null; + $_now = time(); + $_retryTimes = 0; + while (Tea::allowRetry(@$_runtime["retry"], $_retryTimes, $_now)) { + if ($_retryTimes > 0) { + $_backoffTime = Tea::getBackoffTime(@$_runtime["backoff"], $_retryTimes); + if ($_backoffTime > 0) { + Tea::sleep($_backoffTime); + } + } + $_retryTimes = $_retryTimes + 1; + try { + $_request = new Request(); + // spi = new Gateway();//Gateway implements SPI,这一步在产品 SDK 中实例化 + $headers = $this->getRpcHeaders(); + $globalQueries = []; + $globalHeaders = []; + if (!Utils::isUnset($this->_globalParameters)) { + $globalParams = $this->_globalParameters; + if (!Utils::isUnset($globalParams->queries)) { + $globalQueries = $globalParams->queries; + } + if (!Utils::isUnset($globalParams->headers)) { + $globalHeaders = $globalParams->headers; + } + } + $requestContext = new \Darabonba\GatewaySpi\Models\InterceptorContext\request([ + "headers" => Tea::merge($globalHeaders, $request->headers, $headers), + "query" => Tea::merge($globalQueries, $request->query), + "body" => $request->body, + "stream" => $request->stream, + "hostMap" => $request->hostMap, + "pathname" => $params->pathname, + "productId" => $this->_productId, + "action" => $params->action, + "version" => $params->version, + "protocol" => Utils::defaultString($this->_protocol, $params->protocol), + "method" => Utils::defaultString($this->_method, $params->method), + "authType" => $params->authType, + "bodyType" => $params->bodyType, + "reqBodyType" => $params->reqBodyType, + "style" => $params->style, + "credential" => $this->_credential, + "signatureVersion" => $this->_signatureVersion, + "signatureAlgorithm" => $this->_signatureAlgorithm, + "userAgent" => $this->getUserAgent() + ]); + $configurationContext = new configuration([ + "regionId" => $this->_regionId, + "endpoint" => Utils::defaultString($request->endpointOverride, $this->_endpoint), + "endpointRule" => $this->_endpointRule, + "endpointMap" => $this->_endpointMap, + "endpointType" => $this->_endpointType, + "network" => $this->_network, + "suffix" => $this->_suffix + ]); + $interceptorContext = new InterceptorContext([ + "request" => $requestContext, + "configuration" => $configurationContext + ]); + $attributeMap = new AttributeMap([]); + // 1. spi.modifyConfiguration(context: SPI.InterceptorContext, attributeMap: SPI.AttributeMap); + $this->_spi->modifyConfiguration($interceptorContext, $attributeMap); + // 2. spi.modifyRequest(context: SPI.InterceptorContext, attributeMap: SPI.AttributeMap); + $this->_spi->modifyRequest($interceptorContext, $attributeMap); + $_request->protocol = $interceptorContext->request->protocol; + $_request->method = $interceptorContext->request->method; + $_request->pathname = $interceptorContext->request->pathname; + $_request->query = $interceptorContext->request->query; + $_request->body = $interceptorContext->request->stream; + $_request->headers = $interceptorContext->request->headers; + $_lastRequest = $_request; + $_response = Tea::send($_request, $_runtime); + $responseContext = new response([ + "statusCode" => $_response->statusCode, + "headers" => $_response->headers, + "body" => $_response->body + ]); + $interceptorContext->response = $responseContext; + // 3. spi.modifyResponse(context: SPI.InterceptorContext, attributeMap: SPI.AttributeMap); + $this->_spi->modifyResponse($interceptorContext, $attributeMap); + return [ + "headers" => $interceptorContext->response->headers, + "statusCode" => $interceptorContext->response->statusCode, + "body" => $interceptorContext->response->deserializedBody + ]; + } catch (Exception $e) { + if (!($e instanceof TeaError)) { + $e = new TeaError([], $e->getMessage(), $e->getCode(), $e); + } + if (Tea::isRetryable($e)) { + $_lastException = $e; + continue; + } + throw $e; + } + } + throw new TeaUnableRetryError($_lastRequest, $_lastException); + } + + /** + * @param Params $params + * @param OpenApiRequest $request + * @param RuntimeOptions $runtime + * @return array + * @throws TeaError + */ + public function callApi($params, $request, $runtime) + { + if (Utils::isUnset($params)) { + throw new TeaError([ + "code" => "ParameterMissing", + "message" => "'params' can not be unset" + ]); + } + if (Utils::isUnset($this->_signatureAlgorithm) || !Utils::equalString($this->_signatureAlgorithm, "v2")) { + return $this->doRequest($params, $request, $runtime); + } else if (Utils::equalString($params->style, "ROA") && Utils::equalString($params->reqBodyType, "json")) { + return $this->doROARequest($params->action, $params->version, $params->protocol, $params->method, $params->authType, $params->pathname, $params->bodyType, $request, $runtime); + } else if (Utils::equalString($params->style, "ROA")) { + return $this->doROARequestWithForm($params->action, $params->version, $params->protocol, $params->method, $params->authType, $params->pathname, $params->bodyType, $request, $runtime); + } else { + return $this->doRPCRequest($params->action, $params->version, $params->protocol, $params->method, $params->authType, $params->bodyType, $request, $runtime); + } + } + + /** + * Get user agent + * @return string user agent + */ + public function getUserAgent() + { + $userAgent = Utils::getUserAgent($this->_userAgent); + return $userAgent; + } + + /** + * Get accesskey id by using credential + * @return string accesskey id + */ + public function getAccessKeyId() + { + if (Utils::isUnset($this->_credential)) { + return ''; + } + $accessKeyId = $this->_credential->getAccessKeyId(); + return $accessKeyId; + } + + /** + * Get accesskey secret by using credential + * @return string accesskey secret + */ + public function getAccessKeySecret() + { + if (Utils::isUnset($this->_credential)) { + return ''; + } + $secret = $this->_credential->getAccessKeySecret(); + return $secret; + } + + /** + * Get security token by using credential + * @return string security token + */ + public function getSecurityToken() + { + if (Utils::isUnset($this->_credential)) { + return ''; + } + $token = $this->_credential->getSecurityToken(); + return $token; + } + + /** + * Get bearer token by credential + * @return string bearer token + */ + public function getBearerToken() + { + if (Utils::isUnset($this->_credential)) { + return ''; + } + $token = $this->_credential->getBearerToken(); + return $token; + } + + /** + * Get credential type by credential + * @return string credential type e.g. access_key + */ + public function getType() + { + if (Utils::isUnset($this->_credential)) { + return ''; + } + $authType = $this->_credential->getType(); + return $authType; + } + + /** + * If inputValue is not null, return it or return defaultValue + * @param mixed $inputValue users input value + * @param mixed $defaultValue default value + * @return any the final result + */ + public static function defaultAny($inputValue, $defaultValue) + { + if (Utils::isUnset($inputValue)) { + return $defaultValue; + } + return $inputValue; + } + + /** + * If the endpointRule and config.endpoint are empty, throw error + * @param \Darabonba\OpenApi\Models\Config $config config contains the necessary information to create a client + * @return void + * @throws TeaError + */ + public function checkConfig($config) + { + if (Utils::empty_($this->_endpointRule) && Utils::empty_($config->endpoint)) { + throw new TeaError([ + "code" => "ParameterMissing", + "message" => "'config.endpoint' can not be empty" + ]); + } + } + + /** + * set gateway client + * @param Client $spi + * @return void + */ + public function setGatewayClient($spi) + { + $this->_spi = $spi; + } + + /** + * set RPC header for debug + * @param string[] $headers headers for debug, this header can be used only once. + * @return void + */ + public function setRpcHeaders($headers) + { + $this->_headers = $headers; + } + + /** + * get RPC header for debug + * @return array + */ + public function getRpcHeaders() + { + $headers = $this->_headers; + $this->_headers = null; + return $headers; + } +} diff --git a/vendor/alibabacloud/endpoint-util/.gitignore b/vendor/alibabacloud/endpoint-util/.gitignore new file mode 100644 index 000000000..0ee6c2840 --- /dev/null +++ b/vendor/alibabacloud/endpoint-util/.gitignore @@ -0,0 +1,13 @@ +composer.phar +/vendor/ + +# Commit your application's lock file https://getcomposer.org/doc/01-basic-usage.md#commit-your-composer-lock-file-to-version-control +# You may choose to ignore a library lock file http://getcomposer.org/doc/02-libraries.md#lock-file +composer.lock + +.idea +.DS_Store + +cache/ +*.cache +runtime/ diff --git a/vendor/alibabacloud/endpoint-util/.php_cs.dist b/vendor/alibabacloud/endpoint-util/.php_cs.dist new file mode 100644 index 000000000..8617ec2fa --- /dev/null +++ b/vendor/alibabacloud/endpoint-util/.php_cs.dist @@ -0,0 +1,65 @@ +setRiskyAllowed(true) + ->setIndent(' ') + ->setRules([ + '@PSR2' => true, + '@PhpCsFixer' => true, + '@Symfony:risky' => true, + 'concat_space' => ['spacing' => 'one'], + 'array_syntax' => ['syntax' => 'short'], + 'array_indentation' => true, + 'combine_consecutive_unsets' => true, + 'method_separation' => true, + 'single_quote' => true, + 'declare_equal_normalize' => true, + 'function_typehint_space' => true, + 'hash_to_slash_comment' => true, + 'include' => true, + 'lowercase_cast' => true, + 'no_multiline_whitespace_before_semicolons' => true, + 'no_leading_import_slash' => true, + 'no_multiline_whitespace_around_double_arrow' => true, + 'no_spaces_around_offset' => true, + 'no_unneeded_control_parentheses' => true, + 'no_unused_imports' => true, + 'no_whitespace_before_comma_in_array' => true, + 'no_whitespace_in_blank_line' => true, + 'object_operator_without_whitespace' => true, + 'single_blank_line_before_namespace' => true, + 'single_class_element_per_statement' => true, + 'space_after_semicolon' => true, + 'standardize_not_equals' => true, + 'ternary_operator_spaces' => true, + 'trailing_comma_in_multiline_array' => true, + 'trim_array_spaces' => true, + 'unary_operator_spaces' => true, + 'whitespace_after_comma_in_array' => true, + 'no_extra_consecutive_blank_lines' => [ + 'curly_brace_block', + 'extra', + 'parenthesis_brace_block', + 'square_brace_block', + 'throw', + 'use', + ], + 'binary_operator_spaces' => [ + 'align_double_arrow' => true, + 'align_equals' => true, + ], + 'braces' => [ + 'allow_single_line_closure' => true, + ], + ]) + ->setFinder( + PhpCsFixer\Finder::create() + ->exclude('vendor') + ->exclude('tests') + ->in(__DIR__) + ); diff --git a/vendor/alibabacloud/endpoint-util/LICENSE b/vendor/alibabacloud/endpoint-util/LICENSE new file mode 100644 index 000000000..ec13fccd3 --- /dev/null +++ b/vendor/alibabacloud/endpoint-util/LICENSE @@ -0,0 +1,13 @@ +Copyright (c) 2009-present, Alibaba Cloud All rights reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. diff --git a/vendor/alibabacloud/endpoint-util/README-CN.md b/vendor/alibabacloud/endpoint-util/README-CN.md new file mode 100644 index 000000000..80374a492 --- /dev/null +++ b/vendor/alibabacloud/endpoint-util/README-CN.md @@ -0,0 +1,31 @@ +English | [简体中文](README-CN.md) + +![](https://aliyunsdk-pages.alicdn.com/icons/AlibabaCloud.svg) + +## Alibaba Cloud Endpoint Library for PHP + +## Installation + +### Composer + +```bash +composer require alibabacloud/endpoint-util +``` + +## Issues + +[Opening an Issue](https://github.com/aliyun/endpoint-util/issues/new), Issues not conforming to the guidelines may be closed immediately. + +## Changelog + +Detailed changes for each release are documented in the [release notes](./ChangeLog.txt). + +## References + +* [Latest Release](https://github.com/aliyun/endpoint-util) + +## License + +[Apache-2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Copyright (c) 2009-present, Alibaba Cloud All rights reserved. diff --git a/vendor/alibabacloud/endpoint-util/README.md b/vendor/alibabacloud/endpoint-util/README.md new file mode 100644 index 000000000..3cd5898a2 --- /dev/null +++ b/vendor/alibabacloud/endpoint-util/README.md @@ -0,0 +1,31 @@ +[English](README.md) | 简体中文 + +![](https://aliyunsdk-pages.alicdn.com/icons/AlibabaCloud.svg) + +## Alibaba Cloud Endpoint Library for PHP + +## 安装 + +### Composer + +```bash +composer require alibabacloud/endpoint-util +``` + +## 问题 + +[提交 Issue](https://github.com/aliyun/endpoint-util/issues/new),不符合指南的问题可能会立即关闭。 + +## 发行说明 + +每个版本的详细更改记录在[发行说明](./ChangeLog.txt)中。 + +## 相关 + +* [最新源码](https://github.com/aliyun/endpoint-util) + +## 许可证 + +[Apache-2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Copyright (c) 2009-present, Alibaba Cloud All rights reserved. diff --git a/vendor/alibabacloud/endpoint-util/composer.json b/vendor/alibabacloud/endpoint-util/composer.json new file mode 100644 index 000000000..d22ce335d --- /dev/null +++ b/vendor/alibabacloud/endpoint-util/composer.json @@ -0,0 +1,42 @@ +{ + "name": "alibabacloud/endpoint-util", + "description": "Alibaba Cloud Endpoint Library for PHP", + "type": "library", + "license": "Apache-2.0", + "authors": [ + { + "name": "Alibaba Cloud SDK", + "email": "sdk-team@alibabacloud.com" + } + ], + "require": { + "php": ">5.5" + }, + "require-dev": { + "phpunit/phpunit": "^4.8.35|^5.4.3" + }, + "autoload": { + "psr-4": { + "AlibabaCloud\\Endpoint\\": "src" + } + }, + "autoload-dev": { + "psr-4": { + "AlibabaCloud\\Endpoint\\Tests\\": "tests" + } + }, + "scripts": { + "fixer": "php-cs-fixer fix ./", + "test": [ + "@clearCache", + "./vendor/bin/phpunit --colors=always" + ], + "clearCache": "rm -rf cache/*" + }, + "config": { + "sort-packages": true, + "preferred-install": "dist", + "optimize-autoloader": true + }, + "prefer-stable": true +} \ No newline at end of file diff --git a/vendor/alibabacloud/endpoint-util/phpunit.xml b/vendor/alibabacloud/endpoint-util/phpunit.xml new file mode 100644 index 000000000..8306a799a --- /dev/null +++ b/vendor/alibabacloud/endpoint-util/phpunit.xml @@ -0,0 +1,32 @@ + + + + + + tests + + + ./tests/Unit + + + + + + integration + + + + + + + + + + + + ./src + + + diff --git a/vendor/alibabacloud/endpoint-util/src/Endpoint.php b/vendor/alibabacloud/endpoint-util/src/Endpoint.php new file mode 100644 index 000000000..5afa676c5 --- /dev/null +++ b/vendor/alibabacloud/endpoint-util/src/Endpoint.php @@ -0,0 +1,61 @@ +..aliyuncs.com'; + const CENTRAL_RULES = '.aliyuncs.com'; + + /** + * @param string $product required + * @param string $regionId optional It will be required when endpoint type is 'regional' + * @param string $endpointType optional regional|central + * @param string $network optional + * @param string $suffix optional + * + * @throws \InvalidArgumentException + * + * @return string + */ + public static function getEndpointRules($product, $regionId, $endpointType = '', $network = '', $suffix = '') + { + if (empty($product)) { + throw new \InvalidArgumentException('Product name cannot be empty.'); + } + $endpoint = self::REGIONAL_RULES; + if (self::ENDPOINT_TYPE_REGIONAL === $endpointType) { + if (empty($regionId)) { + throw new \InvalidArgumentException('RegionId is empty, please set a valid RegionId'); + } + $endpoint = self::render($endpoint, 'region_id', strtolower($regionId)); + } elseif (self::ENDPOINT_TYPE_CENTRAL === $endpointType) { + $endpoint = self::CENTRAL_RULES; + } else { + throw new \InvalidArgumentException('Invalid EndpointType'); + } + if (!empty($network) && 'public' !== $network) { + $endpoint = self::render($endpoint, 'network', '-' . $network); + } else { + $endpoint = self::render($endpoint, 'network', ''); + } + if (!empty($suffix)) { + $endpoint = self::render($endpoint, 'suffix', '-' . $suffix); + } else { + $endpoint = self::render($endpoint, 'suffix', ''); + } + + return self::render($endpoint, 'product', strtolower($product)); + } + + private static function render($str, $tag, $replace) + { + return str_replace('<' . $tag . '>', $replace, $str); + } +} diff --git a/vendor/alibabacloud/endpoint-util/tests/EndpointTest.php b/vendor/alibabacloud/endpoint-util/tests/EndpointTest.php new file mode 100644 index 000000000..e21dcd48a --- /dev/null +++ b/vendor/alibabacloud/endpoint-util/tests/EndpointTest.php @@ -0,0 +1,58 @@ +expectException(\InvalidArgumentException::class); + $this->expectExceptionMessage('Product name cannot be empty.'); + Endpoint::getEndpointRules('', '', '', ''); + } + + public function testGetEndpointWhenInvalidEndpointType() + { + $this->expectException(\InvalidArgumentException::class); + $this->expectExceptionMessage('Invalid EndpointType'); + Endpoint::getEndpointRules('ecs', '', 'fake endpoint type', ''); + } + + public function testGetEndpointWhenInvalidRegionId() + { + $this->expectException(\InvalidArgumentException::class); + $this->expectExceptionMessage('RegionId is empty, please set a valid RegionId'); + Endpoint::getEndpointRules('ecs', '', Endpoint::ENDPOINT_TYPE_REGIONAL, ''); + } + + public function testGetEndpointCentral() + { + $endpoint = Endpoint::getEndpointRules('ecs', '', Endpoint::ENDPOINT_TYPE_CENTRAL); + $this->assertEquals('ecs.aliyuncs.com', $endpoint); + } + + public function testGetEndpointRegional() + { + $endpoint = Endpoint::getEndpointRules('ecs', 'cn-hangzhou', Endpoint::ENDPOINT_TYPE_REGIONAL); + $this->assertEquals('ecs.cn-hangzhou.aliyuncs.com', $endpoint); + } + + public function testGetEndpointRegionalWithNetwork() + { + $endpoint = Endpoint::getEndpointRules('ecs', 'cn-hangzhou', Endpoint::ENDPOINT_TYPE_REGIONAL, 'internal'); + $this->assertEquals('ecs-internal.cn-hangzhou.aliyuncs.com', $endpoint); + } + + public function testGetEndpointRegionalWithSuffix() + { + $endpoint = Endpoint::getEndpointRules('ecs', 'cn-hangzhou', Endpoint::ENDPOINT_TYPE_REGIONAL, 'internal', 'test'); + $this->assertEquals('ecs-test-internal.cn-hangzhou.aliyuncs.com', $endpoint); + } +} diff --git a/vendor/alibabacloud/endpoint-util/tests/bootstrap.php b/vendor/alibabacloud/endpoint-util/tests/bootstrap.php new file mode 100644 index 000000000..c62c4e81b --- /dev/null +++ b/vendor/alibabacloud/endpoint-util/tests/bootstrap.php @@ -0,0 +1,3 @@ +setRiskyAllowed(true) + ->setIndent(' ') + ->setRules([ + '@PSR2' => true, + '@PhpCsFixer' => true, + '@Symfony:risky' => true, + 'concat_space' => ['spacing' => 'one'], + 'array_syntax' => ['syntax' => 'short'], + 'array_indentation' => true, + 'combine_consecutive_unsets' => true, + 'method_separation' => true, + 'single_quote' => true, + 'declare_equal_normalize' => true, + 'function_typehint_space' => true, + 'hash_to_slash_comment' => true, + 'include' => true, + 'lowercase_cast' => true, + 'no_multiline_whitespace_before_semicolons' => true, + 'no_leading_import_slash' => true, + 'no_multiline_whitespace_around_double_arrow' => true, + 'no_spaces_around_offset' => true, + 'no_unneeded_control_parentheses' => true, + 'no_unused_imports' => true, + 'no_whitespace_before_comma_in_array' => true, + 'no_whitespace_in_blank_line' => true, + 'object_operator_without_whitespace' => true, + 'single_blank_line_before_namespace' => true, + 'single_class_element_per_statement' => true, + 'space_after_semicolon' => true, + 'standardize_not_equals' => true, + 'ternary_operator_spaces' => true, + 'trailing_comma_in_multiline_array' => true, + 'trim_array_spaces' => true, + 'unary_operator_spaces' => true, + 'whitespace_after_comma_in_array' => true, + 'no_extra_consecutive_blank_lines' => [ + 'curly_brace_block', + 'extra', + 'parenthesis_brace_block', + 'square_brace_block', + 'throw', + 'use', + ], + 'binary_operator_spaces' => [ + 'align_double_arrow' => true, + 'align_equals' => true, + ], + 'braces' => [ + 'allow_single_line_closure' => true, + ], + ]) + ->setFinder( + PhpCsFixer\Finder::create() + ->exclude('vendor') + ->exclude('tests') + ->in(__DIR__) + ); diff --git a/vendor/alibabacloud/gateway-spi/autoload.php b/vendor/alibabacloud/gateway-spi/autoload.php new file mode 100644 index 000000000..f48d6cb6d --- /dev/null +++ b/vendor/alibabacloud/gateway-spi/autoload.php @@ -0,0 +1,15 @@ +5.5", + "alibabacloud/credentials": "^1.1" + }, + "autoload": { + "psr-4": { + "Darabonba\\GatewaySpi\\": "src" + } + }, + "scripts": { + "fixer": "php-cs-fixer fix ./" + }, + "config": { + "sort-packages": true, + "preferred-install": "dist", + "optimize-autoloader": true + }, + "prefer-stable": true +} \ No newline at end of file diff --git a/vendor/alibabacloud/gateway-spi/src/Client.php b/vendor/alibabacloud/gateway-spi/src/Client.php new file mode 100644 index 000000000..7b7b13191 --- /dev/null +++ b/vendor/alibabacloud/gateway-spi/src/Client.php @@ -0,0 +1,35 @@ +attributes, true); + Model::validateRequired('key', $this->key, true); + } + public function toMap() { + $res = []; + if (null !== $this->attributes) { + $res['attributes'] = $this->attributes; + } + if (null !== $this->key) { + $res['key'] = $this->key; + } + return $res; + } + /** + * @param array $map + * @return AttributeMap + */ + public static function fromMap($map = []) { + $model = new self(); + if(isset($map['attributes'])){ + $model->attributes = $map['attributes']; + } + if(isset($map['key'])){ + $model->key = $map['key']; + } + return $model; + } + /** + * @var mixed[] + */ + public $attributes; + + /** + * @var string[] + */ + public $key; + +} diff --git a/vendor/alibabacloud/gateway-spi/src/Models/InterceptorContext.php b/vendor/alibabacloud/gateway-spi/src/Models/InterceptorContext.php new file mode 100644 index 000000000..cc3a43650 --- /dev/null +++ b/vendor/alibabacloud/gateway-spi/src/Models/InterceptorContext.php @@ -0,0 +1,63 @@ +request, true); + Model::validateRequired('configuration', $this->configuration, true); + Model::validateRequired('response', $this->response, true); + } + public function toMap() { + $res = []; + if (null !== $this->request) { + $res['request'] = null !== $this->request ? $this->request->toMap() : null; + } + if (null !== $this->configuration) { + $res['configuration'] = null !== $this->configuration ? $this->configuration->toMap() : null; + } + if (null !== $this->response) { + $res['response'] = null !== $this->response ? $this->response->toMap() : null; + } + return $res; + } + /** + * @param array $map + * @return InterceptorContext + */ + public static function fromMap($map = []) { + $model = new self(); + if(isset($map['request'])){ + $model->request = request::fromMap($map['request']); + } + if(isset($map['configuration'])){ + $model->configuration = configuration::fromMap($map['configuration']); + } + if(isset($map['response'])){ + $model->response = response::fromMap($map['response']); + } + return $model; + } + /** + * @var request + */ + public $request; + + /** + * @var configuration + */ + public $configuration; + + /** + * @var response + */ + public $response; + +} diff --git a/vendor/alibabacloud/gateway-spi/src/Models/InterceptorContext/configuration.php b/vendor/alibabacloud/gateway-spi/src/Models/InterceptorContext/configuration.php new file mode 100644 index 000000000..02e6f92b8 --- /dev/null +++ b/vendor/alibabacloud/gateway-spi/src/Models/InterceptorContext/configuration.php @@ -0,0 +1,83 @@ +regionId, true); + } + public function toMap() { + $res = []; + if (null !== $this->regionId) { + $res['regionId'] = $this->regionId; + } + if (null !== $this->endpoint) { + $res['endpoint'] = $this->endpoint; + } + if (null !== $this->endpointRule) { + $res['endpointRule'] = $this->endpointRule; + } + if (null !== $this->endpointMap) { + $res['endpointMap'] = $this->endpointMap; + } + if (null !== $this->endpointType) { + $res['endpointType'] = $this->endpointType; + } + if (null !== $this->network) { + $res['network'] = $this->network; + } + if (null !== $this->suffix) { + $res['suffix'] = $this->suffix; + } + return $res; + } + /** + * @param array $map + * @return configuration + */ + public static function fromMap($map = []) { + $model = new self(); + if(isset($map['regionId'])){ + $model->regionId = $map['regionId']; + } + if(isset($map['endpoint'])){ + $model->endpoint = $map['endpoint']; + } + if(isset($map['endpointRule'])){ + $model->endpointRule = $map['endpointRule']; + } + if(isset($map['endpointMap'])){ + $model->endpointMap = $map['endpointMap']; + } + if(isset($map['endpointType'])){ + $model->endpointType = $map['endpointType']; + } + if(isset($map['network'])){ + $model->network = $map['network']; + } + if(isset($map['suffix'])){ + $model->suffix = $map['suffix']; + } + return $model; + } + /** + * @var string + */ + public $regionId; + + public $endpoint; + + public $endpointRule; + + public $endpointMap; + + public $endpointType; + + public $network; + + public $suffix; + +} diff --git a/vendor/alibabacloud/gateway-spi/src/Models/InterceptorContext/request.php b/vendor/alibabacloud/gateway-spi/src/Models/InterceptorContext/request.php new file mode 100644 index 000000000..878ca9525 --- /dev/null +++ b/vendor/alibabacloud/gateway-spi/src/Models/InterceptorContext/request.php @@ -0,0 +1,220 @@ +pathname, true); + Model::validateRequired('productId', $this->productId, true); + Model::validateRequired('action', $this->action, true); + Model::validateRequired('version', $this->version, true); + Model::validateRequired('protocol', $this->protocol, true); + Model::validateRequired('method', $this->method, true); + Model::validateRequired('authType', $this->authType, true); + Model::validateRequired('bodyType', $this->bodyType, true); + Model::validateRequired('reqBodyType', $this->reqBodyType, true); + Model::validateRequired('credential', $this->credential, true); + Model::validateRequired('userAgent', $this->userAgent, true); + } + public function toMap() { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->query) { + $res['query'] = $this->query; + } + if (null !== $this->body) { + $res['body'] = $this->body; + } + if (null !== $this->stream) { + $res['stream'] = $this->stream; + } + if (null !== $this->hostMap) { + $res['hostMap'] = $this->hostMap; + } + if (null !== $this->pathname) { + $res['pathname'] = $this->pathname; + } + if (null !== $this->productId) { + $res['productId'] = $this->productId; + } + if (null !== $this->action) { + $res['action'] = $this->action; + } + if (null !== $this->version) { + $res['version'] = $this->version; + } + if (null !== $this->protocol) { + $res['protocol'] = $this->protocol; + } + if (null !== $this->method) { + $res['method'] = $this->method; + } + if (null !== $this->authType) { + $res['authType'] = $this->authType; + } + if (null !== $this->bodyType) { + $res['bodyType'] = $this->bodyType; + } + if (null !== $this->reqBodyType) { + $res['reqBodyType'] = $this->reqBodyType; + } + if (null !== $this->style) { + $res['style'] = $this->style; + } + if (null !== $this->credential) { + $res['credential'] = null !== $this->credential ? $this->credential->toMap() : null; + } + if (null !== $this->signatureVersion) { + $res['signatureVersion'] = $this->signatureVersion; + } + if (null !== $this->signatureAlgorithm) { + $res['signatureAlgorithm'] = $this->signatureAlgorithm; + } + if (null !== $this->userAgent) { + $res['userAgent'] = $this->userAgent; + } + return $res; + } + /** + * @param array $map + * @return request + */ + public static function fromMap($map = []) { + $model = new self(); + if(isset($map['headers'])){ + $model->headers = $map['headers']; + } + if(isset($map['query'])){ + $model->query = $map['query']; + } + if(isset($map['body'])){ + $model->body = $map['body']; + } + if(isset($map['stream'])){ + $model->stream = $map['stream']; + } + if(isset($map['hostMap'])){ + $model->hostMap = $map['hostMap']; + } + if(isset($map['pathname'])){ + $model->pathname = $map['pathname']; + } + if(isset($map['productId'])){ + $model->productId = $map['productId']; + } + if(isset($map['action'])){ + $model->action = $map['action']; + } + if(isset($map['version'])){ + $model->version = $map['version']; + } + if(isset($map['protocol'])){ + $model->protocol = $map['protocol']; + } + if(isset($map['method'])){ + $model->method = $map['method']; + } + if(isset($map['authType'])){ + $model->authType = $map['authType']; + } + if(isset($map['bodyType'])){ + $model->bodyType = $map['bodyType']; + } + if(isset($map['reqBodyType'])){ + $model->reqBodyType = $map['reqBodyType']; + } + if(isset($map['style'])){ + $model->style = $map['style']; + } + if(isset($map['credential'])){ + $model->credential = Credential::fromMap($map['credential']); + } + if(isset($map['signatureVersion'])){ + $model->signatureVersion = $map['signatureVersion']; + } + if(isset($map['signatureAlgorithm'])){ + $model->signatureAlgorithm = $map['signatureAlgorithm']; + } + if(isset($map['userAgent'])){ + $model->userAgent = $map['userAgent']; + } + return $model; + } + public $headers; + + public $query; + + public $body; + + public $stream; + + public $hostMap; + + /** + * @var string + */ + public $pathname; + + /** + * @var string + */ + public $productId; + + /** + * @var string + */ + public $action; + + /** + * @var string + */ + public $version; + + /** + * @var string + */ + public $protocol; + + /** + * @var string + */ + public $method; + + /** + * @var string + */ + public $authType; + + /** + * @var string + */ + public $bodyType; + + /** + * @var string + */ + public $reqBodyType; + + public $style; + + /** + * @var Credential + */ + public $credential; + + public $signatureVersion; + + public $signatureAlgorithm; + + /** + * @var string + */ + public $userAgent; + +} diff --git a/vendor/alibabacloud/gateway-spi/src/Models/InterceptorContext/response.php b/vendor/alibabacloud/gateway-spi/src/Models/InterceptorContext/response.php new file mode 100644 index 000000000..d899e4d3b --- /dev/null +++ b/vendor/alibabacloud/gateway-spi/src/Models/InterceptorContext/response.php @@ -0,0 +1,54 @@ +statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->body) { + $res['body'] = $this->body; + } + if (null !== $this->deserializedBody) { + $res['deserializedBody'] = $this->deserializedBody; + } + return $res; + } + /** + * @param array $map + * @return response + */ + public static function fromMap($map = []) { + $model = new self(); + if(isset($map['statusCode'])){ + $model->statusCode = $map['statusCode']; + } + if(isset($map['headers'])){ + $model->headers = $map['headers']; + } + if(isset($map['body'])){ + $model->body = $map['body']; + } + if(isset($map['deserializedBody'])){ + $model->deserializedBody = $map['deserializedBody']; + } + return $model; + } + public $statusCode; + + public $headers; + + public $body; + + public $deserializedBody; + +} diff --git a/vendor/alibabacloud/live-20161101/.gitignore b/vendor/alibabacloud/live-20161101/.gitignore new file mode 100644 index 000000000..89c7aa58e --- /dev/null +++ b/vendor/alibabacloud/live-20161101/.gitignore @@ -0,0 +1,15 @@ +composer.phar +/vendor/ + +# Commit your application's lock file https://getcomposer.org/doc/01-basic-usage.md#commit-your-composer-lock-file-to-version-control +# You may choose to ignore a library lock file http://getcomposer.org/doc/02-libraries.md#lock-file +composer.lock + +.vscode/ +.idea +.DS_Store + +cache/ +*.cache +runtime/ +.php_cs.cache diff --git a/vendor/alibabacloud/live-20161101/.php_cs.dist b/vendor/alibabacloud/live-20161101/.php_cs.dist new file mode 100644 index 000000000..8617ec2fa --- /dev/null +++ b/vendor/alibabacloud/live-20161101/.php_cs.dist @@ -0,0 +1,65 @@ +setRiskyAllowed(true) + ->setIndent(' ') + ->setRules([ + '@PSR2' => true, + '@PhpCsFixer' => true, + '@Symfony:risky' => true, + 'concat_space' => ['spacing' => 'one'], + 'array_syntax' => ['syntax' => 'short'], + 'array_indentation' => true, + 'combine_consecutive_unsets' => true, + 'method_separation' => true, + 'single_quote' => true, + 'declare_equal_normalize' => true, + 'function_typehint_space' => true, + 'hash_to_slash_comment' => true, + 'include' => true, + 'lowercase_cast' => true, + 'no_multiline_whitespace_before_semicolons' => true, + 'no_leading_import_slash' => true, + 'no_multiline_whitespace_around_double_arrow' => true, + 'no_spaces_around_offset' => true, + 'no_unneeded_control_parentheses' => true, + 'no_unused_imports' => true, + 'no_whitespace_before_comma_in_array' => true, + 'no_whitespace_in_blank_line' => true, + 'object_operator_without_whitespace' => true, + 'single_blank_line_before_namespace' => true, + 'single_class_element_per_statement' => true, + 'space_after_semicolon' => true, + 'standardize_not_equals' => true, + 'ternary_operator_spaces' => true, + 'trailing_comma_in_multiline_array' => true, + 'trim_array_spaces' => true, + 'unary_operator_spaces' => true, + 'whitespace_after_comma_in_array' => true, + 'no_extra_consecutive_blank_lines' => [ + 'curly_brace_block', + 'extra', + 'parenthesis_brace_block', + 'square_brace_block', + 'throw', + 'use', + ], + 'binary_operator_spaces' => [ + 'align_double_arrow' => true, + 'align_equals' => true, + ], + 'braces' => [ + 'allow_single_line_closure' => true, + ], + ]) + ->setFinder( + PhpCsFixer\Finder::create() + ->exclude('vendor') + ->exclude('tests') + ->in(__DIR__) + ); diff --git a/vendor/alibabacloud/live-20161101/ChangeLog.md b/vendor/alibabacloud/live-20161101/ChangeLog.md new file mode 100644 index 000000000..f5f47afa0 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/ChangeLog.md @@ -0,0 +1,18 @@ +2022-12-05 Version: 1.1.1 +- Live sdk update. + +2022-12-05 Version: 1.1.0 +- Live sdk update. + +2022-10-31 Version: 1.0.2 +- Live pre sdk test. + +2021-04-23 Version: 1.0.1 +- Generated php 2016-11-01 for live. + +2021-01-10 Version: 1.0.0 +- Generated php 2016-11-01 for live. + +2020-11-16 Version: 0.0.1 +- Generated php 2016-11-01 for live. + diff --git a/vendor/alibabacloud/live-20161101/LICENSE b/vendor/alibabacloud/live-20161101/LICENSE new file mode 100644 index 000000000..0c44dcefe --- /dev/null +++ b/vendor/alibabacloud/live-20161101/LICENSE @@ -0,0 +1,201 @@ + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright (c) 2009-present, Alibaba Cloud All rights reserved. + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. diff --git a/vendor/alibabacloud/live-20161101/README-CN.md b/vendor/alibabacloud/live-20161101/README-CN.md new file mode 100644 index 000000000..de5c1eafb --- /dev/null +++ b/vendor/alibabacloud/live-20161101/README-CN.md @@ -0,0 +1,35 @@ +[English](README.md) | 简体中文 + +![](https://aliyunsdk-pages.alicdn.com/icons/AlibabaCloud.svg) + +# Alibaba Cloud live SDK for PHP + +## 安装 + +### Composer + +```bash +composer require alibabacloud/live-20161101 +``` + +## 问题 + +[提交 Issue](https://github.com/aliyun/alibabacloud-php-sdk/issues/new),不符合指南的问题可能会立即关闭。 + +## 使用说明 + +[快速使用](https://github.com/aliyun/alibabacloud-php-sdk/blob/master/docs/0-Examples-CN.md#%E5%BF%AB%E9%80%9F%E4%BD%BF%E7%94%A8) + +## 发行说明 + +每个版本的详细更改记录在[发行说明](./ChangeLog.txt)中。 + +## 相关 + +* [最新源码](https://github.com/aliyun/alibabacloud-php-sdk/) + +## 许可证 + +[Apache-2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Copyright (c) 2009-present, Alibaba Cloud All rights reserved. diff --git a/vendor/alibabacloud/live-20161101/README.md b/vendor/alibabacloud/live-20161101/README.md new file mode 100644 index 000000000..9f1ed99ac --- /dev/null +++ b/vendor/alibabacloud/live-20161101/README.md @@ -0,0 +1,35 @@ +English | [简体中文](README-CN.md) + +![](https://aliyunsdk-pages.alicdn.com/icons/AlibabaCloud.svg) + +# Alibaba Cloud live SDK for PHP + +## Installation + +### Composer + +```bash +composer require alibabacloud/live-20161101 +``` + +## Issues + +[Opening an Issue](https://github.com/aliyun/alibabacloud-php-sdk/issues/new), Issues not conforming to the guidelines may be closed immediately. + +## Usage + +[Quick Examples](https://github.com/aliyun/alibabacloud-php-sdk/blob/master/docs/0-Examples-EN.md#quick-examples) + +## Changelog + +Detailed changes for each release are documented in the [release notes](./ChangeLog.txt). + +## References + +* [Latest Release](https://github.com/aliyun/alibabacloud-php-sdk/) + +## License + +[Apache-2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Copyright (c) 2009-present, Alibaba Cloud All rights reserved. diff --git a/vendor/alibabacloud/live-20161101/autoload.php b/vendor/alibabacloud/live-20161101/autoload.php new file mode 100644 index 000000000..9789e5429 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/autoload.php @@ -0,0 +1,17 @@ +5.5", + "alibabacloud/tea-utils": "^0.2.17", + "alibabacloud/darabonba-openapi": "^0.2.8", + "alibabacloud/openapi-util": "^0.1.10|^0.2.0", + "alibabacloud/endpoint-util": "^0.1.0" + }, + "autoload": { + "psr-4": { + "AlibabaCloud\\SDK\\Live\\V20161101\\": "src" + } + }, + "scripts": { + "fixer": "php-cs-fixer fix ./" + }, + "config": { + "sort-packages": true, + "preferred-install": "dist", + "optimize-autoloader": true + }, + "prefer-stable": true +} \ No newline at end of file diff --git a/vendor/alibabacloud/live-20161101/src/Live.php b/vendor/alibabacloud/live-20161101/src/Live.php new file mode 100644 index 000000000..0f438c843 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Live.php @@ -0,0 +1,16765 @@ +_endpointRule = 'regional'; + $this->_endpointMap = [ + 'cn-qingdao' => 'live.aliyuncs.com', + 'cn-beijing' => 'live.aliyuncs.com', + 'cn-hangzhou' => 'live.aliyuncs.com', + 'cn-shanghai' => 'live.aliyuncs.com', + 'cn-shenzhen' => 'live.aliyuncs.com', + 'ap-southeast-1' => 'live.aliyuncs.com', + 'ap-southeast-5' => 'live.aliyuncs.com', + 'ap-northeast-1' => 'live.aliyuncs.com', + 'eu-central-1' => 'live.aliyuncs.com', + 'ap-south-1' => 'live.aliyuncs.com', + 'ap-northeast-2-pop' => 'live.aliyuncs.com', + 'ap-southeast-2' => 'live.aliyuncs.com', + 'ap-southeast-3' => 'live.aliyuncs.com', + 'cn-beijing-finance-1' => 'live.aliyuncs.com', + 'cn-beijing-finance-pop' => 'live.aliyuncs.com', + 'cn-beijing-gov-1' => 'live.aliyuncs.com', + 'cn-beijing-nu16-b01' => 'live.aliyuncs.com', + 'cn-chengdu' => 'live.aliyuncs.com', + 'cn-edge-1' => 'live.aliyuncs.com', + 'cn-fujian' => 'live.aliyuncs.com', + 'cn-haidian-cm12-c01' => 'live.aliyuncs.com', + 'cn-hangzhou-bj-b01' => 'live.aliyuncs.com', + 'cn-hangzhou-finance' => 'live.aliyuncs.com', + 'cn-hangzhou-internal-prod-1' => 'live.aliyuncs.com', + 'cn-hangzhou-internal-test-1' => 'live.aliyuncs.com', + 'cn-hangzhou-internal-test-2' => 'live.aliyuncs.com', + 'cn-hangzhou-internal-test-3' => 'live.aliyuncs.com', + 'cn-hangzhou-test-306' => 'live.aliyuncs.com', + 'cn-hongkong' => 'live.aliyuncs.com', + 'cn-hongkong-finance-pop' => 'live.aliyuncs.com', + 'cn-huhehaote' => 'live.aliyuncs.com', + 'cn-huhehaote-nebula-1' => 'live.aliyuncs.com', + 'cn-north-2-gov-1' => 'live.aliyuncs.com', + 'cn-qingdao-nebula' => 'live.aliyuncs.com', + 'cn-shanghai-et15-b01' => 'live.aliyuncs.com', + 'cn-shanghai-et2-b01' => 'live.aliyuncs.com', + 'cn-shanghai-finance-1' => 'live.aliyuncs.com', + 'cn-shanghai-inner' => 'live.aliyuncs.com', + 'cn-shanghai-internal-test-1' => 'live.aliyuncs.com', + 'cn-shenzhen-finance-1' => 'live.aliyuncs.com', + 'cn-shenzhen-inner' => 'live.aliyuncs.com', + 'cn-shenzhen-st4-d01' => 'live.aliyuncs.com', + 'cn-shenzhen-su18-b01' => 'live.aliyuncs.com', + 'cn-wuhan' => 'live.aliyuncs.com', + 'cn-wulanchabu' => 'live.aliyuncs.com', + 'cn-yushanfang' => 'live.aliyuncs.com', + 'cn-zhangbei' => 'live.aliyuncs.com', + 'cn-zhangbei-na61-b01' => 'live.aliyuncs.com', + 'cn-zhangjiakou' => 'live.aliyuncs.com', + 'cn-zhangjiakou-na62-a01' => 'live.aliyuncs.com', + 'cn-zhengzhou-nebula-1' => 'live.aliyuncs.com', + 'eu-west-1' => 'live.aliyuncs.com', + 'eu-west-1-oxs' => 'live.aliyuncs.com', + 'me-east-1' => 'live.aliyuncs.com', + 'rus-west-1-pop' => 'live.aliyuncs.com', + 'us-east-1' => 'live.aliyuncs.com', + 'us-west-1' => 'live.aliyuncs.com', + ]; + $this->checkConfig($config); + $this->_endpoint = $this->getEndpoint('live', $this->_regionId, $this->_endpointRule, $this->_network, $this->_suffix, $this->_endpointMap, $this->_endpoint); + } + + /** + * @param string $productId + * @param string $regionId + * @param string $endpointRule + * @param string $network + * @param string $suffix + * @param string[] $endpointMap + * @param string $endpoint + * + * @return string + */ + public function getEndpoint($productId, $regionId, $endpointRule, $network, $suffix, $endpointMap, $endpoint) + { + if (!Utils::empty_($endpoint)) { + return $endpoint; + } + if (!Utils::isUnset($endpointMap) && !Utils::empty_(@$endpointMap[$regionId])) { + return @$endpointMap[$regionId]; + } + + return Endpoint::getEndpointRules($productId, $regionId, $endpointRule, $network, $suffix); + } + + /** + * @param AddCasterComponentRequest $request + * @param RuntimeOptions $runtime + * + * @return AddCasterComponentResponse + */ + public function addCasterComponentWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->captionLayerContent)) { + $query['CaptionLayerContent'] = $request->captionLayerContent; + } + if (!Utils::isUnset($request->casterId)) { + $query['CasterId'] = $request->casterId; + } + if (!Utils::isUnset($request->componentLayer)) { + $query['ComponentLayer'] = $request->componentLayer; + } + if (!Utils::isUnset($request->componentName)) { + $query['ComponentName'] = $request->componentName; + } + if (!Utils::isUnset($request->componentType)) { + $query['ComponentType'] = $request->componentType; + } + if (!Utils::isUnset($request->effect)) { + $query['Effect'] = $request->effect; + } + if (!Utils::isUnset($request->htmlLayerContent)) { + $query['HtmlLayerContent'] = $request->htmlLayerContent; + } + if (!Utils::isUnset($request->imageLayerContent)) { + $query['ImageLayerContent'] = $request->imageLayerContent; + } + if (!Utils::isUnset($request->layerOrder)) { + $query['LayerOrder'] = $request->layerOrder; + } + if (!Utils::isUnset($request->locationId)) { + $query['LocationId'] = $request->locationId; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->textLayerContent)) { + $query['TextLayerContent'] = $request->textLayerContent; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'AddCasterComponent', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return AddCasterComponentResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param AddCasterComponentRequest $request + * + * @return AddCasterComponentResponse + */ + public function addCasterComponent($request) + { + $runtime = new RuntimeOptions([]); + + return $this->addCasterComponentWithOptions($request, $runtime); + } + + /** + * @param AddCasterEpisodeRequest $request + * @param RuntimeOptions $runtime + * + * @return AddCasterEpisodeResponse + */ + public function addCasterEpisodeWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->casterId)) { + $query['CasterId'] = $request->casterId; + } + if (!Utils::isUnset($request->componentId)) { + $query['ComponentId'] = $request->componentId; + } + if (!Utils::isUnset($request->endTime)) { + $query['EndTime'] = $request->endTime; + } + if (!Utils::isUnset($request->episodeName)) { + $query['EpisodeName'] = $request->episodeName; + } + if (!Utils::isUnset($request->episodeType)) { + $query['EpisodeType'] = $request->episodeType; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->resourceId)) { + $query['ResourceId'] = $request->resourceId; + } + if (!Utils::isUnset($request->startTime)) { + $query['StartTime'] = $request->startTime; + } + if (!Utils::isUnset($request->switchType)) { + $query['SwitchType'] = $request->switchType; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'AddCasterEpisode', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return AddCasterEpisodeResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param AddCasterEpisodeRequest $request + * + * @return AddCasterEpisodeResponse + */ + public function addCasterEpisode($request) + { + $runtime = new RuntimeOptions([]); + + return $this->addCasterEpisodeWithOptions($request, $runtime); + } + + /** + * @param AddCasterEpisodeGroupRequest $request + * @param RuntimeOptions $runtime + * + * @return AddCasterEpisodeGroupResponse + */ + public function addCasterEpisodeGroupWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->callbackUrl)) { + $query['CallbackUrl'] = $request->callbackUrl; + } + if (!Utils::isUnset($request->clientToken)) { + $query['ClientToken'] = $request->clientToken; + } + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->item)) { + $query['Item'] = $request->item; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->repeatNum)) { + $query['RepeatNum'] = $request->repeatNum; + } + if (!Utils::isUnset($request->sideOutputUrl)) { + $query['SideOutputUrl'] = $request->sideOutputUrl; + } + if (!Utils::isUnset($request->startTime)) { + $query['StartTime'] = $request->startTime; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'AddCasterEpisodeGroup', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return AddCasterEpisodeGroupResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param AddCasterEpisodeGroupRequest $request + * + * @return AddCasterEpisodeGroupResponse + */ + public function addCasterEpisodeGroup($request) + { + $runtime = new RuntimeOptions([]); + + return $this->addCasterEpisodeGroupWithOptions($request, $runtime); + } + + /** + * @param AddCasterEpisodeGroupContentRequest $request + * @param RuntimeOptions $runtime + * + * @return AddCasterEpisodeGroupContentResponse + */ + public function addCasterEpisodeGroupContentWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->clientToken)) { + $query['ClientToken'] = $request->clientToken; + } + if (!Utils::isUnset($request->content)) { + $query['Content'] = $request->content; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'AddCasterEpisodeGroupContent', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return AddCasterEpisodeGroupContentResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param AddCasterEpisodeGroupContentRequest $request + * + * @return AddCasterEpisodeGroupContentResponse + */ + public function addCasterEpisodeGroupContent($request) + { + $runtime = new RuntimeOptions([]); + + return $this->addCasterEpisodeGroupContentWithOptions($request, $runtime); + } + + /** + * @param AddCasterLayoutRequest $request + * @param RuntimeOptions $runtime + * + * @return AddCasterLayoutResponse + */ + public function addCasterLayoutWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->audioLayer)) { + $query['AudioLayer'] = $request->audioLayer; + } + if (!Utils::isUnset($request->blendList)) { + $query['BlendList'] = $request->blendList; + } + if (!Utils::isUnset($request->casterId)) { + $query['CasterId'] = $request->casterId; + } + if (!Utils::isUnset($request->mixList)) { + $query['MixList'] = $request->mixList; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->videoLayer)) { + $query['VideoLayer'] = $request->videoLayer; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'AddCasterLayout', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return AddCasterLayoutResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param AddCasterLayoutRequest $request + * + * @return AddCasterLayoutResponse + */ + public function addCasterLayout($request) + { + $runtime = new RuntimeOptions([]); + + return $this->addCasterLayoutWithOptions($request, $runtime); + } + + /** + * @param AddCasterProgramRequest $request + * @param RuntimeOptions $runtime + * + * @return AddCasterProgramResponse + */ + public function addCasterProgramWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->casterId)) { + $query['CasterId'] = $request->casterId; + } + if (!Utils::isUnset($request->episode)) { + $query['Episode'] = $request->episode; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'AddCasterProgram', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return AddCasterProgramResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param AddCasterProgramRequest $request + * + * @return AddCasterProgramResponse + */ + public function addCasterProgram($request) + { + $runtime = new RuntimeOptions([]); + + return $this->addCasterProgramWithOptions($request, $runtime); + } + + /** + * @param AddCasterVideoResourceRequest $request + * @param RuntimeOptions $runtime + * + * @return AddCasterVideoResourceResponse + */ + public function addCasterVideoResourceWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->beginOffset)) { + $query['BeginOffset'] = $request->beginOffset; + } + if (!Utils::isUnset($request->casterId)) { + $query['CasterId'] = $request->casterId; + } + if (!Utils::isUnset($request->endOffset)) { + $query['EndOffset'] = $request->endOffset; + } + if (!Utils::isUnset($request->fixedDelayDuration)) { + $query['FixedDelayDuration'] = $request->fixedDelayDuration; + } + if (!Utils::isUnset($request->liveStreamUrl)) { + $query['LiveStreamUrl'] = $request->liveStreamUrl; + } + if (!Utils::isUnset($request->locationId)) { + $query['LocationId'] = $request->locationId; + } + if (!Utils::isUnset($request->materialId)) { + $query['MaterialId'] = $request->materialId; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->ptsCallbackInterval)) { + $query['PtsCallbackInterval'] = $request->ptsCallbackInterval; + } + if (!Utils::isUnset($request->repeatNum)) { + $query['RepeatNum'] = $request->repeatNum; + } + if (!Utils::isUnset($request->resourceName)) { + $query['ResourceName'] = $request->resourceName; + } + if (!Utils::isUnset($request->streamId)) { + $query['StreamId'] = $request->streamId; + } + if (!Utils::isUnset($request->vodUrl)) { + $query['VodUrl'] = $request->vodUrl; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'AddCasterVideoResource', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return AddCasterVideoResourceResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param AddCasterVideoResourceRequest $request + * + * @return AddCasterVideoResourceResponse + */ + public function addCasterVideoResource($request) + { + $runtime = new RuntimeOptions([]); + + return $this->addCasterVideoResourceWithOptions($request, $runtime); + } + + /** + * @param AddCustomLiveStreamTranscodeRequest $request + * @param RuntimeOptions $runtime + * + * @return AddCustomLiveStreamTranscodeResponse + */ + public function addCustomLiveStreamTranscodeWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->app)) { + $query['App'] = $request->app; + } + if (!Utils::isUnset($request->audioBitrate)) { + $query['AudioBitrate'] = $request->audioBitrate; + } + if (!Utils::isUnset($request->audioChannelNum)) { + $query['AudioChannelNum'] = $request->audioChannelNum; + } + if (!Utils::isUnset($request->audioCodec)) { + $query['AudioCodec'] = $request->audioCodec; + } + if (!Utils::isUnset($request->audioProfile)) { + $query['AudioProfile'] = $request->audioProfile; + } + if (!Utils::isUnset($request->audioRate)) { + $query['AudioRate'] = $request->audioRate; + } + if (!Utils::isUnset($request->domain)) { + $query['Domain'] = $request->domain; + } + if (!Utils::isUnset($request->encryptParameters)) { + $query['EncryptParameters'] = $request->encryptParameters; + } + if (!Utils::isUnset($request->FPS)) { + $query['FPS'] = $request->FPS; + } + if (!Utils::isUnset($request->gop)) { + $query['Gop'] = $request->gop; + } + if (!Utils::isUnset($request->height)) { + $query['Height'] = $request->height; + } + if (!Utils::isUnset($request->kmsKeyExpireInterval)) { + $query['KmsKeyExpireInterval'] = $request->kmsKeyExpireInterval; + } + if (!Utils::isUnset($request->kmsKeyID)) { + $query['KmsKeyID'] = $request->kmsKeyID; + } + if (!Utils::isUnset($request->kmsUID)) { + $query['KmsUID'] = $request->kmsUID; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->profile)) { + $query['Profile'] = $request->profile; + } + if (!Utils::isUnset($request->template)) { + $query['Template'] = $request->template; + } + if (!Utils::isUnset($request->templateType)) { + $query['TemplateType'] = $request->templateType; + } + if (!Utils::isUnset($request->videoBitrate)) { + $query['VideoBitrate'] = $request->videoBitrate; + } + if (!Utils::isUnset($request->width)) { + $query['Width'] = $request->width; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'AddCustomLiveStreamTranscode', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return AddCustomLiveStreamTranscodeResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param AddCustomLiveStreamTranscodeRequest $request + * + * @return AddCustomLiveStreamTranscodeResponse + */ + public function addCustomLiveStreamTranscode($request) + { + $runtime = new RuntimeOptions([]); + + return $this->addCustomLiveStreamTranscodeWithOptions($request, $runtime); + } + + /** + * @param AddLiveAppRecordConfigRequest $request + * @param RuntimeOptions $runtime + * + * @return AddLiveAppRecordConfigResponse + */ + public function addLiveAppRecordConfigWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->appName)) { + $query['AppName'] = $request->appName; + } + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->endTime)) { + $query['EndTime'] = $request->endTime; + } + if (!Utils::isUnset($request->onDemand)) { + $query['OnDemand'] = $request->onDemand; + } + if (!Utils::isUnset($request->ossBucket)) { + $query['OssBucket'] = $request->ossBucket; + } + if (!Utils::isUnset($request->ossEndpoint)) { + $query['OssEndpoint'] = $request->ossEndpoint; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->recordFormat)) { + $query['RecordFormat'] = $request->recordFormat; + } + if (!Utils::isUnset($request->securityToken)) { + $query['SecurityToken'] = $request->securityToken; + } + if (!Utils::isUnset($request->startTime)) { + $query['StartTime'] = $request->startTime; + } + if (!Utils::isUnset($request->streamName)) { + $query['StreamName'] = $request->streamName; + } + if (!Utils::isUnset($request->transcodeRecordFormat)) { + $query['TranscodeRecordFormat'] = $request->transcodeRecordFormat; + } + if (!Utils::isUnset($request->transcodeTemplates)) { + $query['TranscodeTemplates'] = $request->transcodeTemplates; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'AddLiveAppRecordConfig', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return AddLiveAppRecordConfigResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param AddLiveAppRecordConfigRequest $request + * + * @return AddLiveAppRecordConfigResponse + */ + public function addLiveAppRecordConfig($request) + { + $runtime = new RuntimeOptions([]); + + return $this->addLiveAppRecordConfigWithOptions($request, $runtime); + } + + /** + * @param AddLiveAppSnapshotConfigRequest $request + * @param RuntimeOptions $runtime + * + * @return AddLiveAppSnapshotConfigResponse + */ + public function addLiveAppSnapshotConfigWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->appName)) { + $query['AppName'] = $request->appName; + } + if (!Utils::isUnset($request->callback)) { + $query['Callback'] = $request->callback; + } + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->ossBucket)) { + $query['OssBucket'] = $request->ossBucket; + } + if (!Utils::isUnset($request->ossEndpoint)) { + $query['OssEndpoint'] = $request->ossEndpoint; + } + if (!Utils::isUnset($request->overwriteOssObject)) { + $query['OverwriteOssObject'] = $request->overwriteOssObject; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->securityToken)) { + $query['SecurityToken'] = $request->securityToken; + } + if (!Utils::isUnset($request->sequenceOssObject)) { + $query['SequenceOssObject'] = $request->sequenceOssObject; + } + if (!Utils::isUnset($request->timeInterval)) { + $query['TimeInterval'] = $request->timeInterval; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'AddLiveAppSnapshotConfig', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return AddLiveAppSnapshotConfigResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param AddLiveAppSnapshotConfigRequest $request + * + * @return AddLiveAppSnapshotConfigResponse + */ + public function addLiveAppSnapshotConfig($request) + { + $runtime = new RuntimeOptions([]); + + return $this->addLiveAppSnapshotConfigWithOptions($request, $runtime); + } + + /** + * @param AddLiveAudioAuditConfigRequest $request + * @param RuntimeOptions $runtime + * + * @return AddLiveAudioAuditConfigResponse + */ + public function addLiveAudioAuditConfigWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->appName)) { + $query['AppName'] = $request->appName; + } + if (!Utils::isUnset($request->bizType)) { + $query['BizType'] = $request->bizType; + } + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->ossBucket)) { + $query['OssBucket'] = $request->ossBucket; + } + if (!Utils::isUnset($request->ossEndpoint)) { + $query['OssEndpoint'] = $request->ossEndpoint; + } + if (!Utils::isUnset($request->ossObject)) { + $query['OssObject'] = $request->ossObject; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->streamName)) { + $query['StreamName'] = $request->streamName; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'AddLiveAudioAuditConfig', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return AddLiveAudioAuditConfigResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param AddLiveAudioAuditConfigRequest $request + * + * @return AddLiveAudioAuditConfigResponse + */ + public function addLiveAudioAuditConfig($request) + { + $runtime = new RuntimeOptions([]); + + return $this->addLiveAudioAuditConfigWithOptions($request, $runtime); + } + + /** + * @param AddLiveAudioAuditNotifyConfigRequest $request + * @param RuntimeOptions $runtime + * + * @return AddLiveAudioAuditNotifyConfigResponse + */ + public function addLiveAudioAuditNotifyConfigWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->callback)) { + $query['Callback'] = $request->callback; + } + if (!Utils::isUnset($request->callbackTemplate)) { + $query['CallbackTemplate'] = $request->callbackTemplate; + } + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'AddLiveAudioAuditNotifyConfig', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return AddLiveAudioAuditNotifyConfigResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param AddLiveAudioAuditNotifyConfigRequest $request + * + * @return AddLiveAudioAuditNotifyConfigResponse + */ + public function addLiveAudioAuditNotifyConfig($request) + { + $runtime = new RuntimeOptions([]); + + return $this->addLiveAudioAuditNotifyConfigWithOptions($request, $runtime); + } + + /** + * @param AddLiveDetectNotifyConfigRequest $request + * @param RuntimeOptions $runtime + * + * @return AddLiveDetectNotifyConfigResponse + */ + public function addLiveDetectNotifyConfigWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->notifyUrl)) { + $query['NotifyUrl'] = $request->notifyUrl; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->securityToken)) { + $query['SecurityToken'] = $request->securityToken; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'AddLiveDetectNotifyConfig', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return AddLiveDetectNotifyConfigResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param AddLiveDetectNotifyConfigRequest $request + * + * @return AddLiveDetectNotifyConfigResponse + */ + public function addLiveDetectNotifyConfig($request) + { + $runtime = new RuntimeOptions([]); + + return $this->addLiveDetectNotifyConfigWithOptions($request, $runtime); + } + + /** + * @param AddLiveDomainRequest $request + * @param RuntimeOptions $runtime + * + * @return AddLiveDomainResponse + */ + public function addLiveDomainWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->checkUrl)) { + $query['CheckUrl'] = $request->checkUrl; + } + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->liveDomainType)) { + $query['LiveDomainType'] = $request->liveDomainType; + } + if (!Utils::isUnset($request->ownerAccount)) { + $query['OwnerAccount'] = $request->ownerAccount; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->region)) { + $query['Region'] = $request->region; + } + if (!Utils::isUnset($request->scope)) { + $query['Scope'] = $request->scope; + } + if (!Utils::isUnset($request->securityToken)) { + $query['SecurityToken'] = $request->securityToken; + } + if (!Utils::isUnset($request->topLevelDomain)) { + $query['TopLevelDomain'] = $request->topLevelDomain; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'AddLiveDomain', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return AddLiveDomainResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param AddLiveDomainRequest $request + * + * @return AddLiveDomainResponse + */ + public function addLiveDomain($request) + { + $runtime = new RuntimeOptions([]); + + return $this->addLiveDomainWithOptions($request, $runtime); + } + + /** + * @param AddLiveDomainMappingRequest $request + * @param RuntimeOptions $runtime + * + * @return AddLiveDomainMappingResponse + */ + public function addLiveDomainMappingWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->pullDomain)) { + $query['PullDomain'] = $request->pullDomain; + } + if (!Utils::isUnset($request->pushDomain)) { + $query['PushDomain'] = $request->pushDomain; + } + if (!Utils::isUnset($request->securityToken)) { + $query['SecurityToken'] = $request->securityToken; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'AddLiveDomainMapping', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return AddLiveDomainMappingResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param AddLiveDomainMappingRequest $request + * + * @return AddLiveDomainMappingResponse + */ + public function addLiveDomainMapping($request) + { + $runtime = new RuntimeOptions([]); + + return $this->addLiveDomainMappingWithOptions($request, $runtime); + } + + /** + * @param AddLiveDomainPlayMappingRequest $request + * @param RuntimeOptions $runtime + * + * @return AddLiveDomainPlayMappingResponse + */ + public function addLiveDomainPlayMappingWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->playDomain)) { + $query['PlayDomain'] = $request->playDomain; + } + if (!Utils::isUnset($request->pullDomain)) { + $query['PullDomain'] = $request->pullDomain; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'AddLiveDomainPlayMapping', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return AddLiveDomainPlayMappingResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param AddLiveDomainPlayMappingRequest $request + * + * @return AddLiveDomainPlayMappingResponse + */ + public function addLiveDomainPlayMapping($request) + { + $runtime = new RuntimeOptions([]); + + return $this->addLiveDomainPlayMappingWithOptions($request, $runtime); + } + + /** + * @param AddLivePullStreamInfoConfigRequest $request + * @param RuntimeOptions $runtime + * + * @return AddLivePullStreamInfoConfigResponse + */ + public function addLivePullStreamInfoConfigWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->appName)) { + $query['AppName'] = $request->appName; + } + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->endTime)) { + $query['EndTime'] = $request->endTime; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->sourceUrl)) { + $query['SourceUrl'] = $request->sourceUrl; + } + if (!Utils::isUnset($request->startTime)) { + $query['StartTime'] = $request->startTime; + } + if (!Utils::isUnset($request->streamName)) { + $query['StreamName'] = $request->streamName; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'AddLivePullStreamInfoConfig', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return AddLivePullStreamInfoConfigResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param AddLivePullStreamInfoConfigRequest $request + * + * @return AddLivePullStreamInfoConfigResponse + */ + public function addLivePullStreamInfoConfig($request) + { + $runtime = new RuntimeOptions([]); + + return $this->addLivePullStreamInfoConfigWithOptions($request, $runtime); + } + + /** + * @param AddLiveRecordNotifyConfigRequest $request + * @param RuntimeOptions $runtime + * + * @return AddLiveRecordNotifyConfigResponse + */ + public function addLiveRecordNotifyConfigWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->needStatusNotify)) { + $query['NeedStatusNotify'] = $request->needStatusNotify; + } + if (!Utils::isUnset($request->notifyUrl)) { + $query['NotifyUrl'] = $request->notifyUrl; + } + if (!Utils::isUnset($request->onDemandUrl)) { + $query['OnDemandUrl'] = $request->onDemandUrl; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->securityToken)) { + $query['SecurityToken'] = $request->securityToken; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'AddLiveRecordNotifyConfig', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return AddLiveRecordNotifyConfigResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param AddLiveRecordNotifyConfigRequest $request + * + * @return AddLiveRecordNotifyConfigResponse + */ + public function addLiveRecordNotifyConfig($request) + { + $runtime = new RuntimeOptions([]); + + return $this->addLiveRecordNotifyConfigWithOptions($request, $runtime); + } + + /** + * @param AddLiveRecordVodConfigRequest $request + * @param RuntimeOptions $runtime + * + * @return AddLiveRecordVodConfigResponse + */ + public function addLiveRecordVodConfigWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->appName)) { + $query['AppName'] = $request->appName; + } + if (!Utils::isUnset($request->autoCompose)) { + $query['AutoCompose'] = $request->autoCompose; + } + if (!Utils::isUnset($request->composeVodTranscodeGroupId)) { + $query['ComposeVodTranscodeGroupId'] = $request->composeVodTranscodeGroupId; + } + if (!Utils::isUnset($request->cycleDuration)) { + $query['CycleDuration'] = $request->cycleDuration; + } + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->storageLocation)) { + $query['StorageLocation'] = $request->storageLocation; + } + if (!Utils::isUnset($request->streamName)) { + $query['StreamName'] = $request->streamName; + } + if (!Utils::isUnset($request->vodTranscodeGroupId)) { + $query['VodTranscodeGroupId'] = $request->vodTranscodeGroupId; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'AddLiveRecordVodConfig', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return AddLiveRecordVodConfigResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param AddLiveRecordVodConfigRequest $request + * + * @return AddLiveRecordVodConfigResponse + */ + public function addLiveRecordVodConfig($request) + { + $runtime = new RuntimeOptions([]); + + return $this->addLiveRecordVodConfigWithOptions($request, $runtime); + } + + /** + * @param AddLiveSnapshotDetectPornConfigRequest $request + * @param RuntimeOptions $runtime + * + * @return AddLiveSnapshotDetectPornConfigResponse + */ + public function addLiveSnapshotDetectPornConfigWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->appName)) { + $query['AppName'] = $request->appName; + } + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->interval)) { + $query['Interval'] = $request->interval; + } + if (!Utils::isUnset($request->ossBucket)) { + $query['OssBucket'] = $request->ossBucket; + } + if (!Utils::isUnset($request->ossEndpoint)) { + $query['OssEndpoint'] = $request->ossEndpoint; + } + if (!Utils::isUnset($request->ossObject)) { + $query['OssObject'] = $request->ossObject; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->scene)) { + $query['Scene'] = $request->scene; + } + if (!Utils::isUnset($request->securityToken)) { + $query['SecurityToken'] = $request->securityToken; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'AddLiveSnapshotDetectPornConfig', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return AddLiveSnapshotDetectPornConfigResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param AddLiveSnapshotDetectPornConfigRequest $request + * + * @return AddLiveSnapshotDetectPornConfigResponse + */ + public function addLiveSnapshotDetectPornConfig($request) + { + $runtime = new RuntimeOptions([]); + + return $this->addLiveSnapshotDetectPornConfigWithOptions($request, $runtime); + } + + /** + * @param AddLiveSnapshotNotifyConfigRequest $request + * @param RuntimeOptions $runtime + * + * @return AddLiveSnapshotNotifyConfigResponse + */ + public function addLiveSnapshotNotifyConfigWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->notifyAuthKey)) { + $query['NotifyAuthKey'] = $request->notifyAuthKey; + } + if (!Utils::isUnset($request->notifyReqAuth)) { + $query['NotifyReqAuth'] = $request->notifyReqAuth; + } + if (!Utils::isUnset($request->notifyUrl)) { + $query['NotifyUrl'] = $request->notifyUrl; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'AddLiveSnapshotNotifyConfig', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return AddLiveSnapshotNotifyConfigResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param AddLiveSnapshotNotifyConfigRequest $request + * + * @return AddLiveSnapshotNotifyConfigResponse + */ + public function addLiveSnapshotNotifyConfig($request) + { + $runtime = new RuntimeOptions([]); + + return $this->addLiveSnapshotNotifyConfigWithOptions($request, $runtime); + } + + /** + * @param AddLiveStreamTranscodeRequest $request + * @param RuntimeOptions $runtime + * + * @return AddLiveStreamTranscodeResponse + */ + public function addLiveStreamTranscodeWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->app)) { + $query['App'] = $request->app; + } + if (!Utils::isUnset($request->domain)) { + $query['Domain'] = $request->domain; + } + if (!Utils::isUnset($request->encryptParameters)) { + $query['EncryptParameters'] = $request->encryptParameters; + } + if (!Utils::isUnset($request->lazy)) { + $query['Lazy'] = $request->lazy; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->template)) { + $query['Template'] = $request->template; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'AddLiveStreamTranscode', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return AddLiveStreamTranscodeResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param AddLiveStreamTranscodeRequest $request + * + * @return AddLiveStreamTranscodeResponse + */ + public function addLiveStreamTranscode($request) + { + $runtime = new RuntimeOptions([]); + + return $this->addLiveStreamTranscodeWithOptions($request, $runtime); + } + + /** + * @param AddLiveStreamWatermarkRequest $request + * @param RuntimeOptions $runtime + * + * @return AddLiveStreamWatermarkResponse + */ + public function addLiveStreamWatermarkWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->description)) { + $query['Description'] = $request->description; + } + if (!Utils::isUnset($request->height)) { + $query['Height'] = $request->height; + } + if (!Utils::isUnset($request->name)) { + $query['Name'] = $request->name; + } + if (!Utils::isUnset($request->offsetCorner)) { + $query['OffsetCorner'] = $request->offsetCorner; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->pictureUrl)) { + $query['PictureUrl'] = $request->pictureUrl; + } + if (!Utils::isUnset($request->refHeight)) { + $query['RefHeight'] = $request->refHeight; + } + if (!Utils::isUnset($request->refWidth)) { + $query['RefWidth'] = $request->refWidth; + } + if (!Utils::isUnset($request->transparency)) { + $query['Transparency'] = $request->transparency; + } + if (!Utils::isUnset($request->type)) { + $query['Type'] = $request->type; + } + if (!Utils::isUnset($request->XOffset)) { + $query['XOffset'] = $request->XOffset; + } + if (!Utils::isUnset($request->YOffset)) { + $query['YOffset'] = $request->YOffset; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'AddLiveStreamWatermark', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return AddLiveStreamWatermarkResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param AddLiveStreamWatermarkRequest $request + * + * @return AddLiveStreamWatermarkResponse + */ + public function addLiveStreamWatermark($request) + { + $runtime = new RuntimeOptions([]); + + return $this->addLiveStreamWatermarkWithOptions($request, $runtime); + } + + /** + * @param AddLiveStreamWatermarkRuleRequest $request + * @param RuntimeOptions $runtime + * + * @return AddLiveStreamWatermarkRuleResponse + */ + public function addLiveStreamWatermarkRuleWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->app)) { + $query['App'] = $request->app; + } + if (!Utils::isUnset($request->description)) { + $query['Description'] = $request->description; + } + if (!Utils::isUnset($request->domain)) { + $query['Domain'] = $request->domain; + } + if (!Utils::isUnset($request->name)) { + $query['Name'] = $request->name; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->stream)) { + $query['Stream'] = $request->stream; + } + if (!Utils::isUnset($request->templateId)) { + $query['TemplateId'] = $request->templateId; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'AddLiveStreamWatermarkRule', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return AddLiveStreamWatermarkRuleResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param AddLiveStreamWatermarkRuleRequest $request + * + * @return AddLiveStreamWatermarkRuleResponse + */ + public function addLiveStreamWatermarkRule($request) + { + $runtime = new RuntimeOptions([]); + + return $this->addLiveStreamWatermarkRuleWithOptions($request, $runtime); + } + + /** + * @param AddMultiRateConfigRequest $request + * @param RuntimeOptions $runtime + * + * @return AddMultiRateConfigResponse + */ + public function addMultiRateConfigWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->app)) { + $query['App'] = $request->app; + } + if (!Utils::isUnset($request->avFormat)) { + $query['AvFormat'] = $request->avFormat; + } + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->groupId)) { + $query['GroupId'] = $request->groupId; + } + if (!Utils::isUnset($request->isLazy)) { + $query['IsLazy'] = $request->isLazy; + } + if (!Utils::isUnset($request->isTimeAlign)) { + $query['IsTimeAlign'] = $request->isTimeAlign; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->templates)) { + $query['Templates'] = $request->templates; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'AddMultiRateConfig', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return AddMultiRateConfigResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param AddMultiRateConfigRequest $request + * + * @return AddMultiRateConfigResponse + */ + public function addMultiRateConfig($request) + { + $runtime = new RuntimeOptions([]); + + return $this->addMultiRateConfigWithOptions($request, $runtime); + } + + /** + * @param AddPlaylistItemsRequest $request + * @param RuntimeOptions $runtime + * + * @return AddPlaylistItemsResponse + */ + public function addPlaylistItemsWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->casterId)) { + $query['CasterId'] = $request->casterId; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->programConfig)) { + $query['ProgramConfig'] = $request->programConfig; + } + if (!Utils::isUnset($request->programId)) { + $query['ProgramId'] = $request->programId; + } + if (!Utils::isUnset($request->programItems)) { + $query['ProgramItems'] = $request->programItems; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'AddPlaylistItems', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return AddPlaylistItemsResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param AddPlaylistItemsRequest $request + * + * @return AddPlaylistItemsResponse + */ + public function addPlaylistItems($request) + { + $runtime = new RuntimeOptions([]); + + return $this->addPlaylistItemsWithOptions($request, $runtime); + } + + /** + * @param AddRtsLiveStreamTranscodeRequest $request + * @param RuntimeOptions $runtime + * + * @return AddRtsLiveStreamTranscodeResponse + */ + public function addRtsLiveStreamTranscodeWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->app)) { + $query['App'] = $request->app; + } + if (!Utils::isUnset($request->audioBitrate)) { + $query['AudioBitrate'] = $request->audioBitrate; + } + if (!Utils::isUnset($request->audioChannelNum)) { + $query['AudioChannelNum'] = $request->audioChannelNum; + } + if (!Utils::isUnset($request->audioCodec)) { + $query['AudioCodec'] = $request->audioCodec; + } + if (!Utils::isUnset($request->audioProfile)) { + $query['AudioProfile'] = $request->audioProfile; + } + if (!Utils::isUnset($request->audioRate)) { + $query['AudioRate'] = $request->audioRate; + } + if (!Utils::isUnset($request->deleteBframes)) { + $query['DeleteBframes'] = $request->deleteBframes; + } + if (!Utils::isUnset($request->domain)) { + $query['Domain'] = $request->domain; + } + if (!Utils::isUnset($request->FPS)) { + $query['FPS'] = $request->FPS; + } + if (!Utils::isUnset($request->gop)) { + $query['Gop'] = $request->gop; + } + if (!Utils::isUnset($request->height)) { + $query['Height'] = $request->height; + } + if (!Utils::isUnset($request->lazy)) { + $query['Lazy'] = $request->lazy; + } + if (!Utils::isUnset($request->opus)) { + $query['Opus'] = $request->opus; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->profile)) { + $query['Profile'] = $request->profile; + } + if (!Utils::isUnset($request->template)) { + $query['Template'] = $request->template; + } + if (!Utils::isUnset($request->templateType)) { + $query['TemplateType'] = $request->templateType; + } + if (!Utils::isUnset($request->videoBitrate)) { + $query['VideoBitrate'] = $request->videoBitrate; + } + if (!Utils::isUnset($request->width)) { + $query['Width'] = $request->width; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'AddRtsLiveStreamTranscode', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return AddRtsLiveStreamTranscodeResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param AddRtsLiveStreamTranscodeRequest $request + * + * @return AddRtsLiveStreamTranscodeResponse + */ + public function addRtsLiveStreamTranscode($request) + { + $runtime = new RuntimeOptions([]); + + return $this->addRtsLiveStreamTranscodeWithOptions($request, $runtime); + } + + /** + * @param AddShowIntoShowListRequest $request + * @param RuntimeOptions $runtime + * + * @return AddShowIntoShowListResponse + */ + public function addShowIntoShowListWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->casterId)) { + $query['CasterId'] = $request->casterId; + } + if (!Utils::isUnset($request->duration)) { + $query['Duration'] = $request->duration; + } + if (!Utils::isUnset($request->liveInputType)) { + $query['LiveInputType'] = $request->liveInputType; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->repeatTimes)) { + $query['RepeatTimes'] = $request->repeatTimes; + } + if (!Utils::isUnset($request->resourceId)) { + $query['ResourceId'] = $request->resourceId; + } + if (!Utils::isUnset($request->resourceType)) { + $query['ResourceType'] = $request->resourceType; + } + if (!Utils::isUnset($request->resourceUrl)) { + $query['ResourceUrl'] = $request->resourceUrl; + } + if (!Utils::isUnset($request->showName)) { + $query['ShowName'] = $request->showName; + } + if (!Utils::isUnset($request->spot)) { + $query['Spot'] = $request->spot; + } + if (!Utils::isUnset($request->isBatchMode)) { + $query['isBatchMode'] = $request->isBatchMode; + } + if (!Utils::isUnset($request->showList)) { + $query['showList'] = $request->showList; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'AddShowIntoShowList', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return AddShowIntoShowListResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param AddShowIntoShowListRequest $request + * + * @return AddShowIntoShowListResponse + */ + public function addShowIntoShowList($request) + { + $runtime = new RuntimeOptions([]); + + return $this->addShowIntoShowListWithOptions($request, $runtime); + } + + /** + * @param AddStudioLayoutRequest $request + * @param RuntimeOptions $runtime + * + * @return AddStudioLayoutResponse + */ + public function addStudioLayoutWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->bgImageConfig)) { + $query['BgImageConfig'] = $request->bgImageConfig; + } + if (!Utils::isUnset($request->casterId)) { + $query['CasterId'] = $request->casterId; + } + if (!Utils::isUnset($request->commonConfig)) { + $query['CommonConfig'] = $request->commonConfig; + } + if (!Utils::isUnset($request->layerOrderConfigList)) { + $query['LayerOrderConfigList'] = $request->layerOrderConfigList; + } + if (!Utils::isUnset($request->layoutName)) { + $query['LayoutName'] = $request->layoutName; + } + if (!Utils::isUnset($request->layoutType)) { + $query['LayoutType'] = $request->layoutType; + } + if (!Utils::isUnset($request->mediaInputConfigList)) { + $query['MediaInputConfigList'] = $request->mediaInputConfigList; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->screenInputConfigList)) { + $query['ScreenInputConfigList'] = $request->screenInputConfigList; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'AddStudioLayout', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return AddStudioLayoutResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param AddStudioLayoutRequest $request + * + * @return AddStudioLayoutResponse + */ + public function addStudioLayout($request) + { + $runtime = new RuntimeOptions([]); + + return $this->addStudioLayoutWithOptions($request, $runtime); + } + + /** + * @param AddTrancodeSEIRequest $request + * @param RuntimeOptions $runtime + * + * @return AddTrancodeSEIResponse + */ + public function addTrancodeSEIWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->appName)) { + $query['AppName'] = $request->appName; + } + if (!Utils::isUnset($request->delay)) { + $query['Delay'] = $request->delay; + } + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->pattern)) { + $query['Pattern'] = $request->pattern; + } + if (!Utils::isUnset($request->repeat)) { + $query['Repeat'] = $request->repeat; + } + if (!Utils::isUnset($request->streamName)) { + $query['StreamName'] = $request->streamName; + } + if (!Utils::isUnset($request->text)) { + $query['Text'] = $request->text; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'AddTrancodeSEI', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return AddTrancodeSEIResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param AddTrancodeSEIRequest $request + * + * @return AddTrancodeSEIResponse + */ + public function addTrancodeSEI($request) + { + $runtime = new RuntimeOptions([]); + + return $this->addTrancodeSEIWithOptions($request, $runtime); + } + + /** + * @param AllowPushStreamRequest $request + * @param RuntimeOptions $runtime + * + * @return AllowPushStreamResponse + */ + public function allowPushStreamWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->appId)) { + $query['AppId'] = $request->appId; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->roomId)) { + $query['RoomId'] = $request->roomId; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'AllowPushStream', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return AllowPushStreamResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param AllowPushStreamRequest $request + * + * @return AllowPushStreamResponse + */ + public function allowPushStream($request) + { + $runtime = new RuntimeOptions([]); + + return $this->allowPushStreamWithOptions($request, $runtime); + } + + /** + * @param BatchDeleteLiveDomainConfigsRequest $request + * @param RuntimeOptions $runtime + * + * @return BatchDeleteLiveDomainConfigsResponse + */ + public function batchDeleteLiveDomainConfigsWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->domainNames)) { + $query['DomainNames'] = $request->domainNames; + } + if (!Utils::isUnset($request->functionNames)) { + $query['FunctionNames'] = $request->functionNames; + } + if (!Utils::isUnset($request->ownerAccount)) { + $query['OwnerAccount'] = $request->ownerAccount; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->securityToken)) { + $query['SecurityToken'] = $request->securityToken; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'BatchDeleteLiveDomainConfigs', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return BatchDeleteLiveDomainConfigsResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param BatchDeleteLiveDomainConfigsRequest $request + * + * @return BatchDeleteLiveDomainConfigsResponse + */ + public function batchDeleteLiveDomainConfigs($request) + { + $runtime = new RuntimeOptions([]); + + return $this->batchDeleteLiveDomainConfigsWithOptions($request, $runtime); + } + + /** + * @param BatchSetLiveDomainConfigsRequest $request + * @param RuntimeOptions $runtime + * + * @return BatchSetLiveDomainConfigsResponse + */ + public function batchSetLiveDomainConfigsWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->domainNames)) { + $query['DomainNames'] = $request->domainNames; + } + if (!Utils::isUnset($request->functions)) { + $query['Functions'] = $request->functions; + } + if (!Utils::isUnset($request->ownerAccount)) { + $query['OwnerAccount'] = $request->ownerAccount; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->securityToken)) { + $query['SecurityToken'] = $request->securityToken; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'BatchSetLiveDomainConfigs', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return BatchSetLiveDomainConfigsResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param BatchSetLiveDomainConfigsRequest $request + * + * @return BatchSetLiveDomainConfigsResponse + */ + public function batchSetLiveDomainConfigs($request) + { + $runtime = new RuntimeOptions([]); + + return $this->batchSetLiveDomainConfigsWithOptions($request, $runtime); + } + + /** + * @param CancelMuteAllGroupUserRequest $request + * @param RuntimeOptions $runtime + * + * @return CancelMuteAllGroupUserResponse + */ + public function cancelMuteAllGroupUserWithOptions($request, $runtime) + { + Utils::validateModel($request); + $body = []; + if (!Utils::isUnset($request->appId)) { + $body['AppId'] = $request->appId; + } + if (!Utils::isUnset($request->groupId)) { + $body['GroupId'] = $request->groupId; + } + if (!Utils::isUnset($request->operatorUserId)) { + $body['OperatorUserId'] = $request->operatorUserId; + } + $req = new OpenApiRequest([ + 'body' => OpenApiUtilClient::parseToMap($body), + ]); + $params = new Params([ + 'action' => 'CancelMuteAllGroupUser', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return CancelMuteAllGroupUserResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param CancelMuteAllGroupUserRequest $request + * + * @return CancelMuteAllGroupUserResponse + */ + public function cancelMuteAllGroupUser($request) + { + $runtime = new RuntimeOptions([]); + + return $this->cancelMuteAllGroupUserWithOptions($request, $runtime); + } + + /** + * @param CloseLiveShiftRequest $request + * @param RuntimeOptions $runtime + * + * @return CloseLiveShiftResponse + */ + public function closeLiveShiftWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->appName)) { + $query['AppName'] = $request->appName; + } + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->streamName)) { + $query['StreamName'] = $request->streamName; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'CloseLiveShift', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return CloseLiveShiftResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param CloseLiveShiftRequest $request + * + * @return CloseLiveShiftResponse + */ + public function closeLiveShift($request) + { + $runtime = new RuntimeOptions([]); + + return $this->closeLiveShiftWithOptions($request, $runtime); + } + + /** + * @param CopyCasterRequest $request + * @param RuntimeOptions $runtime + * + * @return CopyCasterResponse + */ + public function copyCasterWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->casterName)) { + $query['CasterName'] = $request->casterName; + } + if (!Utils::isUnset($request->clientToken)) { + $query['ClientToken'] = $request->clientToken; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->srcCasterId)) { + $query['SrcCasterId'] = $request->srcCasterId; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'CopyCaster', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return CopyCasterResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param CopyCasterRequest $request + * + * @return CopyCasterResponse + */ + public function copyCaster($request) + { + $runtime = new RuntimeOptions([]); + + return $this->copyCasterWithOptions($request, $runtime); + } + + /** + * @param CopyCasterSceneConfigRequest $request + * @param RuntimeOptions $runtime + * + * @return CopyCasterSceneConfigResponse + */ + public function copyCasterSceneConfigWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->casterId)) { + $query['CasterId'] = $request->casterId; + } + if (!Utils::isUnset($request->fromSceneId)) { + $query['FromSceneId'] = $request->fromSceneId; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->toSceneId)) { + $query['ToSceneId'] = $request->toSceneId; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'CopyCasterSceneConfig', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return CopyCasterSceneConfigResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param CopyCasterSceneConfigRequest $request + * + * @return CopyCasterSceneConfigResponse + */ + public function copyCasterSceneConfig($request) + { + $runtime = new RuntimeOptions([]); + + return $this->copyCasterSceneConfigWithOptions($request, $runtime); + } + + /** + * @param CreateCasterRequest $request + * @param RuntimeOptions $runtime + * + * @return CreateCasterResponse + */ + public function createCasterWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->casterName)) { + $query['CasterName'] = $request->casterName; + } + if (!Utils::isUnset($request->casterTemplate)) { + $query['CasterTemplate'] = $request->casterTemplate; + } + if (!Utils::isUnset($request->chargeType)) { + $query['ChargeType'] = $request->chargeType; + } + if (!Utils::isUnset($request->clientToken)) { + $query['ClientToken'] = $request->clientToken; + } + if (!Utils::isUnset($request->expireTime)) { + $query['ExpireTime'] = $request->expireTime; + } + if (!Utils::isUnset($request->normType)) { + $query['NormType'] = $request->normType; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->purchaseTime)) { + $query['PurchaseTime'] = $request->purchaseTime; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'CreateCaster', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return CreateCasterResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param CreateCasterRequest $request + * + * @return CreateCasterResponse + */ + public function createCaster($request) + { + $runtime = new RuntimeOptions([]); + + return $this->createCasterWithOptions($request, $runtime); + } + + /** + * @param CreateCustomTemplateRequest $request + * @param RuntimeOptions $runtime + * + * @return CreateCustomTemplateResponse + */ + public function createCustomTemplateWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->customTemplate)) { + $query['CustomTemplate'] = $request->customTemplate; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->template)) { + $query['Template'] = $request->template; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'CreateCustomTemplate', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return CreateCustomTemplateResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param CreateCustomTemplateRequest $request + * + * @return CreateCustomTemplateResponse + */ + public function createCustomTemplate($request) + { + $runtime = new RuntimeOptions([]); + + return $this->createCustomTemplateWithOptions($request, $runtime); + } + + /** + * @param CreateLiveRealTimeLogDeliveryRequest $request + * @param RuntimeOptions $runtime + * + * @return CreateLiveRealTimeLogDeliveryResponse + */ + public function createLiveRealTimeLogDeliveryWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = OpenApiUtilClient::query(Utils::toMap($request)); + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'CreateLiveRealTimeLogDelivery', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'GET', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return CreateLiveRealTimeLogDeliveryResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param CreateLiveRealTimeLogDeliveryRequest $request + * + * @return CreateLiveRealTimeLogDeliveryResponse + */ + public function createLiveRealTimeLogDelivery($request) + { + $runtime = new RuntimeOptions([]); + + return $this->createLiveRealTimeLogDeliveryWithOptions($request, $runtime); + } + + /** + * @param CreateLiveStreamMonitorRequest $request + * @param RuntimeOptions $runtime + * + * @return CreateLiveStreamMonitorResponse + */ + public function createLiveStreamMonitorWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->app)) { + $query['App'] = $request->app; + } + if (!Utils::isUnset($request->domain)) { + $query['Domain'] = $request->domain; + } + if (!Utils::isUnset($request->inputList)) { + $query['InputList'] = $request->inputList; + } + if (!Utils::isUnset($request->monitorName)) { + $query['MonitorName'] = $request->monitorName; + } + if (!Utils::isUnset($request->outputTemplate)) { + $query['OutputTemplate'] = $request->outputTemplate; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->stream)) { + $query['Stream'] = $request->stream; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'CreateLiveStreamMonitor', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return CreateLiveStreamMonitorResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param CreateLiveStreamMonitorRequest $request + * + * @return CreateLiveStreamMonitorResponse + */ + public function createLiveStreamMonitor($request) + { + $runtime = new RuntimeOptions([]); + + return $this->createLiveStreamMonitorWithOptions($request, $runtime); + } + + /** + * @param CreateLiveStreamRecordIndexFilesRequest $request + * @param RuntimeOptions $runtime + * + * @return CreateLiveStreamRecordIndexFilesResponse + */ + public function createLiveStreamRecordIndexFilesWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->appName)) { + $query['AppName'] = $request->appName; + } + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->endTime)) { + $query['EndTime'] = $request->endTime; + } + if (!Utils::isUnset($request->ossBucket)) { + $query['OssBucket'] = $request->ossBucket; + } + if (!Utils::isUnset($request->ossEndpoint)) { + $query['OssEndpoint'] = $request->ossEndpoint; + } + if (!Utils::isUnset($request->ossObject)) { + $query['OssObject'] = $request->ossObject; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->securityToken)) { + $query['SecurityToken'] = $request->securityToken; + } + if (!Utils::isUnset($request->startTime)) { + $query['StartTime'] = $request->startTime; + } + if (!Utils::isUnset($request->streamName)) { + $query['StreamName'] = $request->streamName; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'CreateLiveStreamRecordIndexFiles', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return CreateLiveStreamRecordIndexFilesResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param CreateLiveStreamRecordIndexFilesRequest $request + * + * @return CreateLiveStreamRecordIndexFilesResponse + */ + public function createLiveStreamRecordIndexFiles($request) + { + $runtime = new RuntimeOptions([]); + + return $this->createLiveStreamRecordIndexFilesWithOptions($request, $runtime); + } + + /** + * @param CreateLiveTranscodeTemplateRequest $request + * @param RuntimeOptions $runtime + * + * @return CreateLiveTranscodeTemplateResponse + */ + public function createLiveTranscodeTemplateWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->securityToken)) { + $query['SecurityToken'] = $request->securityToken; + } + if (!Utils::isUnset($request->templateConfig)) { + $query['TemplateConfig'] = $request->templateConfig; + } + if (!Utils::isUnset($request->type)) { + $query['Type'] = $request->type; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'CreateLiveTranscodeTemplate', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return CreateLiveTranscodeTemplateResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param CreateLiveTranscodeTemplateRequest $request + * + * @return CreateLiveTranscodeTemplateResponse + */ + public function createLiveTranscodeTemplate($request) + { + $runtime = new RuntimeOptions([]); + + return $this->createLiveTranscodeTemplateWithOptions($request, $runtime); + } + + /** + * @param CreateMessageAppRequest $tmpReq + * @param RuntimeOptions $runtime + * + * @return CreateMessageAppResponse + */ + public function createMessageAppWithOptions($tmpReq, $runtime) + { + Utils::validateModel($tmpReq); + $request = new CreateMessageAppShrinkRequest([]); + OpenApiUtilClient::convert($tmpReq, $request); + if (!Utils::isUnset($tmpReq->appConfig)) { + $request->appConfigShrink = OpenApiUtilClient::arrayToStringWithSpecifiedStyle($tmpReq->appConfig, 'AppConfig', 'json'); + } + if (!Utils::isUnset($tmpReq->extension)) { + $request->extensionShrink = OpenApiUtilClient::arrayToStringWithSpecifiedStyle($tmpReq->extension, 'Extension', 'json'); + } + $body = []; + if (!Utils::isUnset($request->appConfigShrink)) { + $body['AppConfig'] = $request->appConfigShrink; + } + if (!Utils::isUnset($request->appName)) { + $body['AppName'] = $request->appName; + } + if (!Utils::isUnset($request->extensionShrink)) { + $body['Extension'] = $request->extensionShrink; + } + $req = new OpenApiRequest([ + 'body' => OpenApiUtilClient::parseToMap($body), + ]); + $params = new Params([ + 'action' => 'CreateMessageApp', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return CreateMessageAppResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param CreateMessageAppRequest $request + * + * @return CreateMessageAppResponse + */ + public function createMessageApp($request) + { + $runtime = new RuntimeOptions([]); + + return $this->createMessageAppWithOptions($request, $runtime); + } + + /** + * @param CreateMessageGroupRequest $tmpReq + * @param RuntimeOptions $runtime + * + * @return CreateMessageGroupResponse + */ + public function createMessageGroupWithOptions($tmpReq, $runtime) + { + Utils::validateModel($tmpReq); + $request = new CreateMessageGroupShrinkRequest([]); + OpenApiUtilClient::convert($tmpReq, $request); + if (!Utils::isUnset($tmpReq->extension)) { + $request->extensionShrink = OpenApiUtilClient::arrayToStringWithSpecifiedStyle($tmpReq->extension, 'Extension', 'json'); + } + $body = []; + if (!Utils::isUnset($request->appId)) { + $body['AppId'] = $request->appId; + } + if (!Utils::isUnset($request->creatorId)) { + $body['CreatorId'] = $request->creatorId; + } + if (!Utils::isUnset($request->extensionShrink)) { + $body['Extension'] = $request->extensionShrink; + } + $req = new OpenApiRequest([ + 'body' => OpenApiUtilClient::parseToMap($body), + ]); + $params = new Params([ + 'action' => 'CreateMessageGroup', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return CreateMessageGroupResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param CreateMessageGroupRequest $request + * + * @return CreateMessageGroupResponse + */ + public function createMessageGroup($request) + { + $runtime = new RuntimeOptions([]); + + return $this->createMessageGroupWithOptions($request, $runtime); + } + + /** + * @param CreateMixStreamRequest $request + * @param RuntimeOptions $runtime + * + * @return CreateMixStreamResponse + */ + public function createMixStreamWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->callbackConfig)) { + $query['CallbackConfig'] = $request->callbackConfig; + } + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->inputStreamList)) { + $query['InputStreamList'] = $request->inputStreamList; + } + if (!Utils::isUnset($request->layoutId)) { + $query['LayoutId'] = $request->layoutId; + } + if (!Utils::isUnset($request->outputConfig)) { + $query['OutputConfig'] = $request->outputConfig; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'CreateMixStream', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return CreateMixStreamResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param CreateMixStreamRequest $request + * + * @return CreateMixStreamResponse + */ + public function createMixStream($request) + { + $runtime = new RuntimeOptions([]); + + return $this->createMixStreamWithOptions($request, $runtime); + } + + /** + * @param DeleteCasterRequest $request + * @param RuntimeOptions $runtime + * + * @return DeleteCasterResponse + */ + public function deleteCasterWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->casterId)) { + $query['CasterId'] = $request->casterId; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DeleteCaster', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DeleteCasterResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DeleteCasterRequest $request + * + * @return DeleteCasterResponse + */ + public function deleteCaster($request) + { + $runtime = new RuntimeOptions([]); + + return $this->deleteCasterWithOptions($request, $runtime); + } + + /** + * @param DeleteCasterComponentRequest $request + * @param RuntimeOptions $runtime + * + * @return DeleteCasterComponentResponse + */ + public function deleteCasterComponentWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->casterId)) { + $query['CasterId'] = $request->casterId; + } + if (!Utils::isUnset($request->componentId)) { + $query['ComponentId'] = $request->componentId; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DeleteCasterComponent', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DeleteCasterComponentResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DeleteCasterComponentRequest $request + * + * @return DeleteCasterComponentResponse + */ + public function deleteCasterComponent($request) + { + $runtime = new RuntimeOptions([]); + + return $this->deleteCasterComponentWithOptions($request, $runtime); + } + + /** + * @param DeleteCasterEpisodeRequest $request + * @param RuntimeOptions $runtime + * + * @return DeleteCasterEpisodeResponse + */ + public function deleteCasterEpisodeWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->casterId)) { + $query['CasterId'] = $request->casterId; + } + if (!Utils::isUnset($request->episodeId)) { + $query['EpisodeId'] = $request->episodeId; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DeleteCasterEpisode', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DeleteCasterEpisodeResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DeleteCasterEpisodeRequest $request + * + * @return DeleteCasterEpisodeResponse + */ + public function deleteCasterEpisode($request) + { + $runtime = new RuntimeOptions([]); + + return $this->deleteCasterEpisodeWithOptions($request, $runtime); + } + + /** + * @param DeleteCasterEpisodeGroupRequest $request + * @param RuntimeOptions $runtime + * + * @return DeleteCasterEpisodeGroupResponse + */ + public function deleteCasterEpisodeGroupWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->programId)) { + $query['ProgramId'] = $request->programId; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DeleteCasterEpisodeGroup', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DeleteCasterEpisodeGroupResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DeleteCasterEpisodeGroupRequest $request + * + * @return DeleteCasterEpisodeGroupResponse + */ + public function deleteCasterEpisodeGroup($request) + { + $runtime = new RuntimeOptions([]); + + return $this->deleteCasterEpisodeGroupWithOptions($request, $runtime); + } + + /** + * @param DeleteCasterLayoutRequest $request + * @param RuntimeOptions $runtime + * + * @return DeleteCasterLayoutResponse + */ + public function deleteCasterLayoutWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->casterId)) { + $query['CasterId'] = $request->casterId; + } + if (!Utils::isUnset($request->layoutId)) { + $query['LayoutId'] = $request->layoutId; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DeleteCasterLayout', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DeleteCasterLayoutResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DeleteCasterLayoutRequest $request + * + * @return DeleteCasterLayoutResponse + */ + public function deleteCasterLayout($request) + { + $runtime = new RuntimeOptions([]); + + return $this->deleteCasterLayoutWithOptions($request, $runtime); + } + + /** + * @param DeleteCasterProgramRequest $request + * @param RuntimeOptions $runtime + * + * @return DeleteCasterProgramResponse + */ + public function deleteCasterProgramWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->casterId)) { + $query['CasterId'] = $request->casterId; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DeleteCasterProgram', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DeleteCasterProgramResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DeleteCasterProgramRequest $request + * + * @return DeleteCasterProgramResponse + */ + public function deleteCasterProgram($request) + { + $runtime = new RuntimeOptions([]); + + return $this->deleteCasterProgramWithOptions($request, $runtime); + } + + /** + * @param DeleteCasterSceneConfigRequest $request + * @param RuntimeOptions $runtime + * + * @return DeleteCasterSceneConfigResponse + */ + public function deleteCasterSceneConfigWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->casterId)) { + $query['CasterId'] = $request->casterId; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->sceneId)) { + $query['SceneId'] = $request->sceneId; + } + if (!Utils::isUnset($request->type)) { + $query['Type'] = $request->type; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DeleteCasterSceneConfig', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DeleteCasterSceneConfigResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DeleteCasterSceneConfigRequest $request + * + * @return DeleteCasterSceneConfigResponse + */ + public function deleteCasterSceneConfig($request) + { + $runtime = new RuntimeOptions([]); + + return $this->deleteCasterSceneConfigWithOptions($request, $runtime); + } + + /** + * @param DeleteCasterVideoResourceRequest $request + * @param RuntimeOptions $runtime + * + * @return DeleteCasterVideoResourceResponse + */ + public function deleteCasterVideoResourceWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->casterId)) { + $query['CasterId'] = $request->casterId; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->resourceId)) { + $query['ResourceId'] = $request->resourceId; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DeleteCasterVideoResource', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DeleteCasterVideoResourceResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DeleteCasterVideoResourceRequest $request + * + * @return DeleteCasterVideoResourceResponse + */ + public function deleteCasterVideoResource($request) + { + $runtime = new RuntimeOptions([]); + + return $this->deleteCasterVideoResourceWithOptions($request, $runtime); + } + + /** + * @param DeleteCustomTemplateRequest $request + * @param RuntimeOptions $runtime + * + * @return DeleteCustomTemplateResponse + */ + public function deleteCustomTemplateWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->template)) { + $query['Template'] = $request->template; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DeleteCustomTemplate', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DeleteCustomTemplateResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DeleteCustomTemplateRequest $request + * + * @return DeleteCustomTemplateResponse + */ + public function deleteCustomTemplate($request) + { + $runtime = new RuntimeOptions([]); + + return $this->deleteCustomTemplateWithOptions($request, $runtime); + } + + /** + * @param DeleteLiveAppRecordConfigRequest $request + * @param RuntimeOptions $runtime + * + * @return DeleteLiveAppRecordConfigResponse + */ + public function deleteLiveAppRecordConfigWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->appName)) { + $query['AppName'] = $request->appName; + } + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->securityToken)) { + $query['SecurityToken'] = $request->securityToken; + } + if (!Utils::isUnset($request->streamName)) { + $query['StreamName'] = $request->streamName; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DeleteLiveAppRecordConfig', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DeleteLiveAppRecordConfigResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DeleteLiveAppRecordConfigRequest $request + * + * @return DeleteLiveAppRecordConfigResponse + */ + public function deleteLiveAppRecordConfig($request) + { + $runtime = new RuntimeOptions([]); + + return $this->deleteLiveAppRecordConfigWithOptions($request, $runtime); + } + + /** + * @param DeleteLiveAppSnapshotConfigRequest $request + * @param RuntimeOptions $runtime + * + * @return DeleteLiveAppSnapshotConfigResponse + */ + public function deleteLiveAppSnapshotConfigWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->appName)) { + $query['AppName'] = $request->appName; + } + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->securityToken)) { + $query['SecurityToken'] = $request->securityToken; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DeleteLiveAppSnapshotConfig', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DeleteLiveAppSnapshotConfigResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DeleteLiveAppSnapshotConfigRequest $request + * + * @return DeleteLiveAppSnapshotConfigResponse + */ + public function deleteLiveAppSnapshotConfig($request) + { + $runtime = new RuntimeOptions([]); + + return $this->deleteLiveAppSnapshotConfigWithOptions($request, $runtime); + } + + /** + * @param DeleteLiveAudioAuditConfigRequest $request + * @param RuntimeOptions $runtime + * + * @return DeleteLiveAudioAuditConfigResponse + */ + public function deleteLiveAudioAuditConfigWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->appName)) { + $query['AppName'] = $request->appName; + } + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->streamName)) { + $query['StreamName'] = $request->streamName; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DeleteLiveAudioAuditConfig', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DeleteLiveAudioAuditConfigResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DeleteLiveAudioAuditConfigRequest $request + * + * @return DeleteLiveAudioAuditConfigResponse + */ + public function deleteLiveAudioAuditConfig($request) + { + $runtime = new RuntimeOptions([]); + + return $this->deleteLiveAudioAuditConfigWithOptions($request, $runtime); + } + + /** + * @param DeleteLiveAudioAuditNotifyConfigRequest $request + * @param RuntimeOptions $runtime + * + * @return DeleteLiveAudioAuditNotifyConfigResponse + */ + public function deleteLiveAudioAuditNotifyConfigWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DeleteLiveAudioAuditNotifyConfig', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DeleteLiveAudioAuditNotifyConfigResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DeleteLiveAudioAuditNotifyConfigRequest $request + * + * @return DeleteLiveAudioAuditNotifyConfigResponse + */ + public function deleteLiveAudioAuditNotifyConfig($request) + { + $runtime = new RuntimeOptions([]); + + return $this->deleteLiveAudioAuditNotifyConfigWithOptions($request, $runtime); + } + + /** + * @param DeleteLiveDetectNotifyConfigRequest $request + * @param RuntimeOptions $runtime + * + * @return DeleteLiveDetectNotifyConfigResponse + */ + public function deleteLiveDetectNotifyConfigWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->securityToken)) { + $query['SecurityToken'] = $request->securityToken; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DeleteLiveDetectNotifyConfig', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DeleteLiveDetectNotifyConfigResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DeleteLiveDetectNotifyConfigRequest $request + * + * @return DeleteLiveDetectNotifyConfigResponse + */ + public function deleteLiveDetectNotifyConfig($request) + { + $runtime = new RuntimeOptions([]); + + return $this->deleteLiveDetectNotifyConfigWithOptions($request, $runtime); + } + + /** + * @param DeleteLiveDomainRequest $request + * @param RuntimeOptions $runtime + * + * @return DeleteLiveDomainResponse + */ + public function deleteLiveDomainWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->ownerAccount)) { + $query['OwnerAccount'] = $request->ownerAccount; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->securityToken)) { + $query['SecurityToken'] = $request->securityToken; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DeleteLiveDomain', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DeleteLiveDomainResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DeleteLiveDomainRequest $request + * + * @return DeleteLiveDomainResponse + */ + public function deleteLiveDomain($request) + { + $runtime = new RuntimeOptions([]); + + return $this->deleteLiveDomainWithOptions($request, $runtime); + } + + /** + * @param DeleteLiveDomainMappingRequest $request + * @param RuntimeOptions $runtime + * + * @return DeleteLiveDomainMappingResponse + */ + public function deleteLiveDomainMappingWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->pullDomain)) { + $query['PullDomain'] = $request->pullDomain; + } + if (!Utils::isUnset($request->pushDomain)) { + $query['PushDomain'] = $request->pushDomain; + } + if (!Utils::isUnset($request->securityToken)) { + $query['SecurityToken'] = $request->securityToken; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DeleteLiveDomainMapping', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DeleteLiveDomainMappingResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DeleteLiveDomainMappingRequest $request + * + * @return DeleteLiveDomainMappingResponse + */ + public function deleteLiveDomainMapping($request) + { + $runtime = new RuntimeOptions([]); + + return $this->deleteLiveDomainMappingWithOptions($request, $runtime); + } + + /** + * @param DeleteLiveDomainPlayMappingRequest $request + * @param RuntimeOptions $runtime + * + * @return DeleteLiveDomainPlayMappingResponse + */ + public function deleteLiveDomainPlayMappingWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->playDomain)) { + $query['PlayDomain'] = $request->playDomain; + } + if (!Utils::isUnset($request->pullDomain)) { + $query['PullDomain'] = $request->pullDomain; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DeleteLiveDomainPlayMapping', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DeleteLiveDomainPlayMappingResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DeleteLiveDomainPlayMappingRequest $request + * + * @return DeleteLiveDomainPlayMappingResponse + */ + public function deleteLiveDomainPlayMapping($request) + { + $runtime = new RuntimeOptions([]); + + return $this->deleteLiveDomainPlayMappingWithOptions($request, $runtime); + } + + /** + * @param DeleteLiveEdgeTransferRequest $request + * @param RuntimeOptions $runtime + * + * @return DeleteLiveEdgeTransferResponse + */ + public function deleteLiveEdgeTransferWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DeleteLiveEdgeTransfer', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DeleteLiveEdgeTransferResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DeleteLiveEdgeTransferRequest $request + * + * @return DeleteLiveEdgeTransferResponse + */ + public function deleteLiveEdgeTransfer($request) + { + $runtime = new RuntimeOptions([]); + + return $this->deleteLiveEdgeTransferWithOptions($request, $runtime); + } + + /** + * @param DeleteLiveLazyPullStreamInfoConfigRequest $request + * @param RuntimeOptions $runtime + * + * @return DeleteLiveLazyPullStreamInfoConfigResponse + */ + public function deleteLiveLazyPullStreamInfoConfigWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->appName)) { + $query['AppName'] = $request->appName; + } + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DeleteLiveLazyPullStreamInfoConfig', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DeleteLiveLazyPullStreamInfoConfigResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DeleteLiveLazyPullStreamInfoConfigRequest $request + * + * @return DeleteLiveLazyPullStreamInfoConfigResponse + */ + public function deleteLiveLazyPullStreamInfoConfig($request) + { + $runtime = new RuntimeOptions([]); + + return $this->deleteLiveLazyPullStreamInfoConfigWithOptions($request, $runtime); + } + + /** + * @param DeleteLivePullStreamInfoConfigRequest $request + * @param RuntimeOptions $runtime + * + * @return DeleteLivePullStreamInfoConfigResponse + */ + public function deleteLivePullStreamInfoConfigWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->appName)) { + $query['AppName'] = $request->appName; + } + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->streamName)) { + $query['StreamName'] = $request->streamName; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DeleteLivePullStreamInfoConfig', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DeleteLivePullStreamInfoConfigResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DeleteLivePullStreamInfoConfigRequest $request + * + * @return DeleteLivePullStreamInfoConfigResponse + */ + public function deleteLivePullStreamInfoConfig($request) + { + $runtime = new RuntimeOptions([]); + + return $this->deleteLivePullStreamInfoConfigWithOptions($request, $runtime); + } + + /** + * @param DeleteLiveRealTimeLogLogstoreRequest $request + * @param RuntimeOptions $runtime + * + * @return DeleteLiveRealTimeLogLogstoreResponse + */ + public function deleteLiveRealTimeLogLogstoreWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = OpenApiUtilClient::query(Utils::toMap($request)); + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DeleteLiveRealTimeLogLogstore', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'GET', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DeleteLiveRealTimeLogLogstoreResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DeleteLiveRealTimeLogLogstoreRequest $request + * + * @return DeleteLiveRealTimeLogLogstoreResponse + */ + public function deleteLiveRealTimeLogLogstore($request) + { + $runtime = new RuntimeOptions([]); + + return $this->deleteLiveRealTimeLogLogstoreWithOptions($request, $runtime); + } + + /** + * @param DeleteLiveRealtimeLogDeliveryRequest $request + * @param RuntimeOptions $runtime + * + * @return DeleteLiveRealtimeLogDeliveryResponse + */ + public function deleteLiveRealtimeLogDeliveryWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = OpenApiUtilClient::query(Utils::toMap($request)); + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DeleteLiveRealtimeLogDelivery', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'GET', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DeleteLiveRealtimeLogDeliveryResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DeleteLiveRealtimeLogDeliveryRequest $request + * + * @return DeleteLiveRealtimeLogDeliveryResponse + */ + public function deleteLiveRealtimeLogDelivery($request) + { + $runtime = new RuntimeOptions([]); + + return $this->deleteLiveRealtimeLogDeliveryWithOptions($request, $runtime); + } + + /** + * @param DeleteLiveRecordNotifyConfigRequest $request + * @param RuntimeOptions $runtime + * + * @return DeleteLiveRecordNotifyConfigResponse + */ + public function deleteLiveRecordNotifyConfigWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->securityToken)) { + $query['SecurityToken'] = $request->securityToken; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DeleteLiveRecordNotifyConfig', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DeleteLiveRecordNotifyConfigResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DeleteLiveRecordNotifyConfigRequest $request + * + * @return DeleteLiveRecordNotifyConfigResponse + */ + public function deleteLiveRecordNotifyConfig($request) + { + $runtime = new RuntimeOptions([]); + + return $this->deleteLiveRecordNotifyConfigWithOptions($request, $runtime); + } + + /** + * @param DeleteLiveRecordVodConfigRequest $request + * @param RuntimeOptions $runtime + * + * @return DeleteLiveRecordVodConfigResponse + */ + public function deleteLiveRecordVodConfigWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->appName)) { + $query['AppName'] = $request->appName; + } + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->streamName)) { + $query['StreamName'] = $request->streamName; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DeleteLiveRecordVodConfig', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DeleteLiveRecordVodConfigResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DeleteLiveRecordVodConfigRequest $request + * + * @return DeleteLiveRecordVodConfigResponse + */ + public function deleteLiveRecordVodConfig($request) + { + $runtime = new RuntimeOptions([]); + + return $this->deleteLiveRecordVodConfigWithOptions($request, $runtime); + } + + /** + * @param DeleteLiveSnapshotDetectPornConfigRequest $request + * @param RuntimeOptions $runtime + * + * @return DeleteLiveSnapshotDetectPornConfigResponse + */ + public function deleteLiveSnapshotDetectPornConfigWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->appName)) { + $query['AppName'] = $request->appName; + } + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->securityToken)) { + $query['SecurityToken'] = $request->securityToken; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DeleteLiveSnapshotDetectPornConfig', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DeleteLiveSnapshotDetectPornConfigResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DeleteLiveSnapshotDetectPornConfigRequest $request + * + * @return DeleteLiveSnapshotDetectPornConfigResponse + */ + public function deleteLiveSnapshotDetectPornConfig($request) + { + $runtime = new RuntimeOptions([]); + + return $this->deleteLiveSnapshotDetectPornConfigWithOptions($request, $runtime); + } + + /** + * @param DeleteLiveSnapshotNotifyConfigRequest $request + * @param RuntimeOptions $runtime + * + * @return DeleteLiveSnapshotNotifyConfigResponse + */ + public function deleteLiveSnapshotNotifyConfigWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DeleteLiveSnapshotNotifyConfig', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DeleteLiveSnapshotNotifyConfigResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DeleteLiveSnapshotNotifyConfigRequest $request + * + * @return DeleteLiveSnapshotNotifyConfigResponse + */ + public function deleteLiveSnapshotNotifyConfig($request) + { + $runtime = new RuntimeOptions([]); + + return $this->deleteLiveSnapshotNotifyConfigWithOptions($request, $runtime); + } + + /** + * @param DeleteLiveSpecificStagingConfigRequest $request + * @param RuntimeOptions $runtime + * + * @return DeleteLiveSpecificStagingConfigResponse + */ + public function deleteLiveSpecificStagingConfigWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->configId)) { + $query['ConfigId'] = $request->configId; + } + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->securityToken)) { + $query['SecurityToken'] = $request->securityToken; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DeleteLiveSpecificStagingConfig', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DeleteLiveSpecificStagingConfigResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DeleteLiveSpecificStagingConfigRequest $request + * + * @return DeleteLiveSpecificStagingConfigResponse + */ + public function deleteLiveSpecificStagingConfig($request) + { + $runtime = new RuntimeOptions([]); + + return $this->deleteLiveSpecificStagingConfigWithOptions($request, $runtime); + } + + /** + * @param DeleteLiveStreamMonitorRequest $request + * @param RuntimeOptions $runtime + * + * @return DeleteLiveStreamMonitorResponse + */ + public function deleteLiveStreamMonitorWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->monitorId)) { + $query['MonitorId'] = $request->monitorId; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DeleteLiveStreamMonitor', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DeleteLiveStreamMonitorResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DeleteLiveStreamMonitorRequest $request + * + * @return DeleteLiveStreamMonitorResponse + */ + public function deleteLiveStreamMonitor($request) + { + $runtime = new RuntimeOptions([]); + + return $this->deleteLiveStreamMonitorWithOptions($request, $runtime); + } + + /** + * @param DeleteLiveStreamRecordIndexFilesRequest $request + * @param RuntimeOptions $runtime + * + * @return DeleteLiveStreamRecordIndexFilesResponse + */ + public function deleteLiveStreamRecordIndexFilesWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->appName)) { + $query['AppName'] = $request->appName; + } + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->recordId)) { + $query['RecordId'] = $request->recordId; + } + if (!Utils::isUnset($request->removeFile)) { + $query['RemoveFile'] = $request->removeFile; + } + if (!Utils::isUnset($request->streamName)) { + $query['StreamName'] = $request->streamName; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DeleteLiveStreamRecordIndexFiles', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DeleteLiveStreamRecordIndexFilesResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DeleteLiveStreamRecordIndexFilesRequest $request + * + * @return DeleteLiveStreamRecordIndexFilesResponse + */ + public function deleteLiveStreamRecordIndexFiles($request) + { + $runtime = new RuntimeOptions([]); + + return $this->deleteLiveStreamRecordIndexFilesWithOptions($request, $runtime); + } + + /** + * @param DeleteLiveStreamTranscodeRequest $request + * @param RuntimeOptions $runtime + * + * @return DeleteLiveStreamTranscodeResponse + */ + public function deleteLiveStreamTranscodeWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->app)) { + $query['App'] = $request->app; + } + if (!Utils::isUnset($request->domain)) { + $query['Domain'] = $request->domain; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->securityToken)) { + $query['SecurityToken'] = $request->securityToken; + } + if (!Utils::isUnset($request->template)) { + $query['Template'] = $request->template; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DeleteLiveStreamTranscode', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DeleteLiveStreamTranscodeResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DeleteLiveStreamTranscodeRequest $request + * + * @return DeleteLiveStreamTranscodeResponse + */ + public function deleteLiveStreamTranscode($request) + { + $runtime = new RuntimeOptions([]); + + return $this->deleteLiveStreamTranscodeWithOptions($request, $runtime); + } + + /** + * @param DeleteLiveStreamWatermarkRequest $request + * @param RuntimeOptions $runtime + * + * @return DeleteLiveStreamWatermarkResponse + */ + public function deleteLiveStreamWatermarkWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->templateId)) { + $query['TemplateId'] = $request->templateId; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DeleteLiveStreamWatermark', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DeleteLiveStreamWatermarkResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DeleteLiveStreamWatermarkRequest $request + * + * @return DeleteLiveStreamWatermarkResponse + */ + public function deleteLiveStreamWatermark($request) + { + $runtime = new RuntimeOptions([]); + + return $this->deleteLiveStreamWatermarkWithOptions($request, $runtime); + } + + /** + * @param DeleteLiveStreamWatermarkRuleRequest $request + * @param RuntimeOptions $runtime + * + * @return DeleteLiveStreamWatermarkRuleResponse + */ + public function deleteLiveStreamWatermarkRuleWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->app)) { + $query['App'] = $request->app; + } + if (!Utils::isUnset($request->domain)) { + $query['Domain'] = $request->domain; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->ruleId)) { + $query['RuleId'] = $request->ruleId; + } + if (!Utils::isUnset($request->stream)) { + $query['Stream'] = $request->stream; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DeleteLiveStreamWatermarkRule', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DeleteLiveStreamWatermarkRuleResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DeleteLiveStreamWatermarkRuleRequest $request + * + * @return DeleteLiveStreamWatermarkRuleResponse + */ + public function deleteLiveStreamWatermarkRule($request) + { + $runtime = new RuntimeOptions([]); + + return $this->deleteLiveStreamWatermarkRuleWithOptions($request, $runtime); + } + + /** + * @param DeleteLiveStreamsNotifyUrlConfigRequest $request + * @param RuntimeOptions $runtime + * + * @return DeleteLiveStreamsNotifyUrlConfigResponse + */ + public function deleteLiveStreamsNotifyUrlConfigWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DeleteLiveStreamsNotifyUrlConfig', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DeleteLiveStreamsNotifyUrlConfigResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DeleteLiveStreamsNotifyUrlConfigRequest $request + * + * @return DeleteLiveStreamsNotifyUrlConfigResponse + */ + public function deleteLiveStreamsNotifyUrlConfig($request) + { + $runtime = new RuntimeOptions([]); + + return $this->deleteLiveStreamsNotifyUrlConfigWithOptions($request, $runtime); + } + + /** + * @param DeleteMessageAppRequest $request + * @param RuntimeOptions $runtime + * + * @return DeleteMessageAppResponse + */ + public function deleteMessageAppWithOptions($request, $runtime) + { + Utils::validateModel($request); + $body = []; + if (!Utils::isUnset($request->appId)) { + $body['AppId'] = $request->appId; + } + $req = new OpenApiRequest([ + 'body' => OpenApiUtilClient::parseToMap($body), + ]); + $params = new Params([ + 'action' => 'DeleteMessageApp', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DeleteMessageAppResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DeleteMessageAppRequest $request + * + * @return DeleteMessageAppResponse + */ + public function deleteMessageApp($request) + { + $runtime = new RuntimeOptions([]); + + return $this->deleteMessageAppWithOptions($request, $runtime); + } + + /** + * @param DeleteMixStreamRequest $request + * @param RuntimeOptions $runtime + * + * @return DeleteMixStreamResponse + */ + public function deleteMixStreamWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->appName)) { + $query['AppName'] = $request->appName; + } + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->mixStreamId)) { + $query['MixStreamId'] = $request->mixStreamId; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->streamName)) { + $query['StreamName'] = $request->streamName; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DeleteMixStream', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DeleteMixStreamResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DeleteMixStreamRequest $request + * + * @return DeleteMixStreamResponse + */ + public function deleteMixStream($request) + { + $runtime = new RuntimeOptions([]); + + return $this->deleteMixStreamWithOptions($request, $runtime); + } + + /** + * @param DeleteMultiRateConfigRequest $request + * @param RuntimeOptions $runtime + * + * @return DeleteMultiRateConfigResponse + */ + public function deleteMultiRateConfigWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->app)) { + $query['App'] = $request->app; + } + if (!Utils::isUnset($request->deleteAll)) { + $query['DeleteAll'] = $request->deleteAll; + } + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->groupId)) { + $query['GroupId'] = $request->groupId; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->templates)) { + $query['Templates'] = $request->templates; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DeleteMultiRateConfig', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DeleteMultiRateConfigResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DeleteMultiRateConfigRequest $request + * + * @return DeleteMultiRateConfigResponse + */ + public function deleteMultiRateConfig($request) + { + $runtime = new RuntimeOptions([]); + + return $this->deleteMultiRateConfigWithOptions($request, $runtime); + } + + /** + * @param DeletePlaylistRequest $request + * @param RuntimeOptions $runtime + * + * @return DeletePlaylistResponse + */ + public function deletePlaylistWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->programId)) { + $query['ProgramId'] = $request->programId; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DeletePlaylist', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DeletePlaylistResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DeletePlaylistRequest $request + * + * @return DeletePlaylistResponse + */ + public function deletePlaylist($request) + { + $runtime = new RuntimeOptions([]); + + return $this->deletePlaylistWithOptions($request, $runtime); + } + + /** + * @param DeletePlaylistItemsRequest $request + * @param RuntimeOptions $runtime + * + * @return DeletePlaylistItemsResponse + */ + public function deletePlaylistItemsWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->programId)) { + $query['ProgramId'] = $request->programId; + } + if (!Utils::isUnset($request->programItemIds)) { + $query['ProgramItemIds'] = $request->programItemIds; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DeletePlaylistItems', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DeletePlaylistItemsResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DeletePlaylistItemsRequest $request + * + * @return DeletePlaylistItemsResponse + */ + public function deletePlaylistItems($request) + { + $runtime = new RuntimeOptions([]); + + return $this->deletePlaylistItemsWithOptions($request, $runtime); + } + + /** + * @param DeleteRoomRequest $request + * @param RuntimeOptions $runtime + * + * @return DeleteRoomResponse + */ + public function deleteRoomWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->appId)) { + $query['AppId'] = $request->appId; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->roomId)) { + $query['RoomId'] = $request->roomId; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DeleteRoom', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DeleteRoomResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DeleteRoomRequest $request + * + * @return DeleteRoomResponse + */ + public function deleteRoom($request) + { + $runtime = new RuntimeOptions([]); + + return $this->deleteRoomWithOptions($request, $runtime); + } + + /** + * @param DeleteSnapshotCallbackAuthRequest $request + * @param RuntimeOptions $runtime + * + * @return DeleteSnapshotCallbackAuthResponse + */ + public function deleteSnapshotCallbackAuthWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DeleteSnapshotCallbackAuth', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DeleteSnapshotCallbackAuthResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DeleteSnapshotCallbackAuthRequest $request + * + * @return DeleteSnapshotCallbackAuthResponse + */ + public function deleteSnapshotCallbackAuth($request) + { + $runtime = new RuntimeOptions([]); + + return $this->deleteSnapshotCallbackAuthWithOptions($request, $runtime); + } + + /** + * @param DeleteSnapshotFilesRequest $request + * @param RuntimeOptions $runtime + * + * @return DeleteSnapshotFilesResponse + */ + public function deleteSnapshotFilesWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->appName)) { + $query['AppName'] = $request->appName; + } + if (!Utils::isUnset($request->createTimestampList)) { + $query['CreateTimestampList'] = $request->createTimestampList; + } + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->removeFile)) { + $query['RemoveFile'] = $request->removeFile; + } + if (!Utils::isUnset($request->streamName)) { + $query['StreamName'] = $request->streamName; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DeleteSnapshotFiles', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DeleteSnapshotFilesResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DeleteSnapshotFilesRequest $request + * + * @return DeleteSnapshotFilesResponse + */ + public function deleteSnapshotFiles($request) + { + $runtime = new RuntimeOptions([]); + + return $this->deleteSnapshotFilesWithOptions($request, $runtime); + } + + /** + * @param DeleteStudioLayoutRequest $request + * @param RuntimeOptions $runtime + * + * @return DeleteStudioLayoutResponse + */ + public function deleteStudioLayoutWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->casterId)) { + $query['CasterId'] = $request->casterId; + } + if (!Utils::isUnset($request->layoutId)) { + $query['LayoutId'] = $request->layoutId; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DeleteStudioLayout', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DeleteStudioLayoutResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DeleteStudioLayoutRequest $request + * + * @return DeleteStudioLayoutResponse + */ + public function deleteStudioLayout($request) + { + $runtime = new RuntimeOptions([]); + + return $this->deleteStudioLayoutWithOptions($request, $runtime); + } + + /** + * @param DescribeAutoShowListTasksRequest $request + * @param RuntimeOptions $runtime + * + * @return DescribeAutoShowListTasksResponse + */ + public function describeAutoShowListTasksWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->casterId)) { + $query['CasterId'] = $request->casterId; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DescribeAutoShowListTasks', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DescribeAutoShowListTasksResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DescribeAutoShowListTasksRequest $request + * + * @return DescribeAutoShowListTasksResponse + */ + public function describeAutoShowListTasks($request) + { + $runtime = new RuntimeOptions([]); + + return $this->describeAutoShowListTasksWithOptions($request, $runtime); + } + + /** + * @param DescribeCasterChannelsRequest $request + * @param RuntimeOptions $runtime + * + * @return DescribeCasterChannelsResponse + */ + public function describeCasterChannelsWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->casterId)) { + $query['CasterId'] = $request->casterId; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DescribeCasterChannels', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DescribeCasterChannelsResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DescribeCasterChannelsRequest $request + * + * @return DescribeCasterChannelsResponse + */ + public function describeCasterChannels($request) + { + $runtime = new RuntimeOptions([]); + + return $this->describeCasterChannelsWithOptions($request, $runtime); + } + + /** + * @param DescribeCasterComponentsRequest $request + * @param RuntimeOptions $runtime + * + * @return DescribeCasterComponentsResponse + */ + public function describeCasterComponentsWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->casterId)) { + $query['CasterId'] = $request->casterId; + } + if (!Utils::isUnset($request->componentId)) { + $query['ComponentId'] = $request->componentId; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DescribeCasterComponents', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DescribeCasterComponentsResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DescribeCasterComponentsRequest $request + * + * @return DescribeCasterComponentsResponse + */ + public function describeCasterComponents($request) + { + $runtime = new RuntimeOptions([]); + + return $this->describeCasterComponentsWithOptions($request, $runtime); + } + + /** + * @param DescribeCasterConfigRequest $request + * @param RuntimeOptions $runtime + * + * @return DescribeCasterConfigResponse + */ + public function describeCasterConfigWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->casterId)) { + $query['CasterId'] = $request->casterId; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DescribeCasterConfig', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DescribeCasterConfigResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DescribeCasterConfigRequest $request + * + * @return DescribeCasterConfigResponse + */ + public function describeCasterConfig($request) + { + $runtime = new RuntimeOptions([]); + + return $this->describeCasterConfigWithOptions($request, $runtime); + } + + /** + * @param DescribeCasterLayoutsRequest $request + * @param RuntimeOptions $runtime + * + * @return DescribeCasterLayoutsResponse + */ + public function describeCasterLayoutsWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->casterId)) { + $query['CasterId'] = $request->casterId; + } + if (!Utils::isUnset($request->layoutId)) { + $query['LayoutId'] = $request->layoutId; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DescribeCasterLayouts', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DescribeCasterLayoutsResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DescribeCasterLayoutsRequest $request + * + * @return DescribeCasterLayoutsResponse + */ + public function describeCasterLayouts($request) + { + $runtime = new RuntimeOptions([]); + + return $this->describeCasterLayoutsWithOptions($request, $runtime); + } + + /** + * @param DescribeCasterProgramRequest $request + * @param RuntimeOptions $runtime + * + * @return DescribeCasterProgramResponse + */ + public function describeCasterProgramWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->casterId)) { + $query['CasterId'] = $request->casterId; + } + if (!Utils::isUnset($request->endTime)) { + $query['EndTime'] = $request->endTime; + } + if (!Utils::isUnset($request->episodeId)) { + $query['EpisodeId'] = $request->episodeId; + } + if (!Utils::isUnset($request->episodeType)) { + $query['EpisodeType'] = $request->episodeType; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->pageNum)) { + $query['PageNum'] = $request->pageNum; + } + if (!Utils::isUnset($request->pageSize)) { + $query['PageSize'] = $request->pageSize; + } + if (!Utils::isUnset($request->startTime)) { + $query['StartTime'] = $request->startTime; + } + if (!Utils::isUnset($request->status)) { + $query['Status'] = $request->status; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DescribeCasterProgram', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DescribeCasterProgramResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DescribeCasterProgramRequest $request + * + * @return DescribeCasterProgramResponse + */ + public function describeCasterProgram($request) + { + $runtime = new RuntimeOptions([]); + + return $this->describeCasterProgramWithOptions($request, $runtime); + } + + /** + * @param DescribeCasterSceneAudioRequest $request + * @param RuntimeOptions $runtime + * + * @return DescribeCasterSceneAudioResponse + */ + public function describeCasterSceneAudioWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->casterId)) { + $query['CasterId'] = $request->casterId; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->sceneId)) { + $query['SceneId'] = $request->sceneId; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DescribeCasterSceneAudio', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DescribeCasterSceneAudioResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DescribeCasterSceneAudioRequest $request + * + * @return DescribeCasterSceneAudioResponse + */ + public function describeCasterSceneAudio($request) + { + $runtime = new RuntimeOptions([]); + + return $this->describeCasterSceneAudioWithOptions($request, $runtime); + } + + /** + * @param DescribeCasterScenesRequest $request + * @param RuntimeOptions $runtime + * + * @return DescribeCasterScenesResponse + */ + public function describeCasterScenesWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->casterId)) { + $query['CasterId'] = $request->casterId; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->sceneId)) { + $query['SceneId'] = $request->sceneId; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DescribeCasterScenes', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DescribeCasterScenesResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DescribeCasterScenesRequest $request + * + * @return DescribeCasterScenesResponse + */ + public function describeCasterScenes($request) + { + $runtime = new RuntimeOptions([]); + + return $this->describeCasterScenesWithOptions($request, $runtime); + } + + /** + * @param DescribeCasterStreamUrlRequest $request + * @param RuntimeOptions $runtime + * + * @return DescribeCasterStreamUrlResponse + */ + public function describeCasterStreamUrlWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->casterId)) { + $query['CasterId'] = $request->casterId; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DescribeCasterStreamUrl', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DescribeCasterStreamUrlResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DescribeCasterStreamUrlRequest $request + * + * @return DescribeCasterStreamUrlResponse + */ + public function describeCasterStreamUrl($request) + { + $runtime = new RuntimeOptions([]); + + return $this->describeCasterStreamUrlWithOptions($request, $runtime); + } + + /** + * @param DescribeCasterSyncGroupRequest $request + * @param RuntimeOptions $runtime + * + * @return DescribeCasterSyncGroupResponse + */ + public function describeCasterSyncGroupWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->casterId)) { + $query['CasterId'] = $request->casterId; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DescribeCasterSyncGroup', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DescribeCasterSyncGroupResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DescribeCasterSyncGroupRequest $request + * + * @return DescribeCasterSyncGroupResponse + */ + public function describeCasterSyncGroup($request) + { + $runtime = new RuntimeOptions([]); + + return $this->describeCasterSyncGroupWithOptions($request, $runtime); + } + + /** + * @param DescribeCasterVideoResourcesRequest $request + * @param RuntimeOptions $runtime + * + * @return DescribeCasterVideoResourcesResponse + */ + public function describeCasterVideoResourcesWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->casterId)) { + $query['CasterId'] = $request->casterId; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DescribeCasterVideoResources', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DescribeCasterVideoResourcesResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DescribeCasterVideoResourcesRequest $request + * + * @return DescribeCasterVideoResourcesResponse + */ + public function describeCasterVideoResources($request) + { + $runtime = new RuntimeOptions([]); + + return $this->describeCasterVideoResourcesWithOptions($request, $runtime); + } + + /** + * @param DescribeCastersRequest $request + * @param RuntimeOptions $runtime + * + * @return DescribeCastersResponse + */ + public function describeCastersWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->casterId)) { + $query['CasterId'] = $request->casterId; + } + if (!Utils::isUnset($request->casterName)) { + $query['CasterName'] = $request->casterName; + } + if (!Utils::isUnset($request->chargeType)) { + $query['ChargeType'] = $request->chargeType; + } + if (!Utils::isUnset($request->endTime)) { + $query['EndTime'] = $request->endTime; + } + if (!Utils::isUnset($request->normType)) { + $query['NormType'] = $request->normType; + } + if (!Utils::isUnset($request->orderByModifyAsc)) { + $query['OrderByModifyAsc'] = $request->orderByModifyAsc; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->pageNum)) { + $query['PageNum'] = $request->pageNum; + } + if (!Utils::isUnset($request->pageSize)) { + $query['PageSize'] = $request->pageSize; + } + if (!Utils::isUnset($request->startTime)) { + $query['StartTime'] = $request->startTime; + } + if (!Utils::isUnset($request->status)) { + $query['Status'] = $request->status; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DescribeCasters', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DescribeCastersResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DescribeCastersRequest $request + * + * @return DescribeCastersResponse + */ + public function describeCasters($request) + { + $runtime = new RuntimeOptions([]); + + return $this->describeCastersWithOptions($request, $runtime); + } + + /** + * @param DescribeDomainUsageDataRequest $request + * @param RuntimeOptions $runtime + * + * @return DescribeDomainUsageDataResponse + */ + public function describeDomainUsageDataWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->area)) { + $query['Area'] = $request->area; + } + if (!Utils::isUnset($request->dataProtocol)) { + $query['DataProtocol'] = $request->dataProtocol; + } + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->endTime)) { + $query['EndTime'] = $request->endTime; + } + if (!Utils::isUnset($request->field)) { + $query['Field'] = $request->field; + } + if (!Utils::isUnset($request->interval)) { + $query['Interval'] = $request->interval; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->startTime)) { + $query['StartTime'] = $request->startTime; + } + if (!Utils::isUnset($request->type)) { + $query['Type'] = $request->type; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DescribeDomainUsageData', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DescribeDomainUsageDataResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DescribeDomainUsageDataRequest $request + * + * @return DescribeDomainUsageDataResponse + */ + public function describeDomainUsageData($request) + { + $runtime = new RuntimeOptions([]); + + return $this->describeDomainUsageDataWithOptions($request, $runtime); + } + + /** + * @param DescribeDomainWithIntegrityRequest $request + * @param RuntimeOptions $runtime + * + * @return DescribeDomainWithIntegrityResponse + */ + public function describeDomainWithIntegrityWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = OpenApiUtilClient::query(Utils::toMap($request)); + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DescribeDomainWithIntegrity', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'GET', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DescribeDomainWithIntegrityResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DescribeDomainWithIntegrityRequest $request + * + * @return DescribeDomainWithIntegrityResponse + */ + public function describeDomainWithIntegrity($request) + { + $runtime = new RuntimeOptions([]); + + return $this->describeDomainWithIntegrityWithOptions($request, $runtime); + } + + /** + * @param DescribeForbidPushStreamRoomListRequest $request + * @param RuntimeOptions $runtime + * + * @return DescribeForbidPushStreamRoomListResponse + */ + public function describeForbidPushStreamRoomListWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->appId)) { + $query['AppId'] = $request->appId; + } + if (!Utils::isUnset($request->order)) { + $query['Order'] = $request->order; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->pageNum)) { + $query['PageNum'] = $request->pageNum; + } + if (!Utils::isUnset($request->pageSize)) { + $query['PageSize'] = $request->pageSize; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DescribeForbidPushStreamRoomList', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DescribeForbidPushStreamRoomListResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DescribeForbidPushStreamRoomListRequest $request + * + * @return DescribeForbidPushStreamRoomListResponse + */ + public function describeForbidPushStreamRoomList($request) + { + $runtime = new RuntimeOptions([]); + + return $this->describeForbidPushStreamRoomListWithOptions($request, $runtime); + } + + /** + * @param DescribeHlsLiveStreamRealTimeBpsDataRequest $request + * @param RuntimeOptions $runtime + * + * @return DescribeHlsLiveStreamRealTimeBpsDataResponse + */ + public function describeHlsLiveStreamRealTimeBpsDataWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = OpenApiUtilClient::query(Utils::toMap($request)); + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DescribeHlsLiveStreamRealTimeBpsData', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'GET', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DescribeHlsLiveStreamRealTimeBpsDataResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DescribeHlsLiveStreamRealTimeBpsDataRequest $request + * + * @return DescribeHlsLiveStreamRealTimeBpsDataResponse + */ + public function describeHlsLiveStreamRealTimeBpsData($request) + { + $runtime = new RuntimeOptions([]); + + return $this->describeHlsLiveStreamRealTimeBpsDataWithOptions($request, $runtime); + } + + /** + * @param DescribeLiveAudioAuditConfigRequest $request + * @param RuntimeOptions $runtime + * + * @return DescribeLiveAudioAuditConfigResponse + */ + public function describeLiveAudioAuditConfigWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->appName)) { + $query['AppName'] = $request->appName; + } + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->streamName)) { + $query['StreamName'] = $request->streamName; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DescribeLiveAudioAuditConfig', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DescribeLiveAudioAuditConfigResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DescribeLiveAudioAuditConfigRequest $request + * + * @return DescribeLiveAudioAuditConfigResponse + */ + public function describeLiveAudioAuditConfig($request) + { + $runtime = new RuntimeOptions([]); + + return $this->describeLiveAudioAuditConfigWithOptions($request, $runtime); + } + + /** + * @param DescribeLiveAudioAuditNotifyConfigRequest $request + * @param RuntimeOptions $runtime + * + * @return DescribeLiveAudioAuditNotifyConfigResponse + */ + public function describeLiveAudioAuditNotifyConfigWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DescribeLiveAudioAuditNotifyConfig', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DescribeLiveAudioAuditNotifyConfigResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DescribeLiveAudioAuditNotifyConfigRequest $request + * + * @return DescribeLiveAudioAuditNotifyConfigResponse + */ + public function describeLiveAudioAuditNotifyConfig($request) + { + $runtime = new RuntimeOptions([]); + + return $this->describeLiveAudioAuditNotifyConfigWithOptions($request, $runtime); + } + + /** + * @param DescribeLiveCertificateDetailRequest $request + * @param RuntimeOptions $runtime + * + * @return DescribeLiveCertificateDetailResponse + */ + public function describeLiveCertificateDetailWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->certName)) { + $query['CertName'] = $request->certName; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->securityToken)) { + $query['SecurityToken'] = $request->securityToken; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DescribeLiveCertificateDetail', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DescribeLiveCertificateDetailResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DescribeLiveCertificateDetailRequest $request + * + * @return DescribeLiveCertificateDetailResponse + */ + public function describeLiveCertificateDetail($request) + { + $runtime = new RuntimeOptions([]); + + return $this->describeLiveCertificateDetailWithOptions($request, $runtime); + } + + /** + * @param DescribeLiveCertificateListRequest $request + * @param RuntimeOptions $runtime + * + * @return DescribeLiveCertificateListResponse + */ + public function describeLiveCertificateListWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->securityToken)) { + $query['SecurityToken'] = $request->securityToken; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DescribeLiveCertificateList', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DescribeLiveCertificateListResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DescribeLiveCertificateListRequest $request + * + * @return DescribeLiveCertificateListResponse + */ + public function describeLiveCertificateList($request) + { + $runtime = new RuntimeOptions([]); + + return $this->describeLiveCertificateListWithOptions($request, $runtime); + } + + /** + * @param DescribeLiveDetectNotifyConfigRequest $request + * @param RuntimeOptions $runtime + * + * @return DescribeLiveDetectNotifyConfigResponse + */ + public function describeLiveDetectNotifyConfigWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->securityToken)) { + $query['SecurityToken'] = $request->securityToken; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DescribeLiveDetectNotifyConfig', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DescribeLiveDetectNotifyConfigResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DescribeLiveDetectNotifyConfigRequest $request + * + * @return DescribeLiveDetectNotifyConfigResponse + */ + public function describeLiveDetectNotifyConfig($request) + { + $runtime = new RuntimeOptions([]); + + return $this->describeLiveDetectNotifyConfigWithOptions($request, $runtime); + } + + /** + * @param DescribeLiveDetectPornDataRequest $request + * @param RuntimeOptions $runtime + * + * @return DescribeLiveDetectPornDataResponse + */ + public function describeLiveDetectPornDataWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->app)) { + $query['App'] = $request->app; + } + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->endTime)) { + $query['EndTime'] = $request->endTime; + } + if (!Utils::isUnset($request->fee)) { + $query['Fee'] = $request->fee; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->region)) { + $query['Region'] = $request->region; + } + if (!Utils::isUnset($request->scene)) { + $query['Scene'] = $request->scene; + } + if (!Utils::isUnset($request->splitBy)) { + $query['SplitBy'] = $request->splitBy; + } + if (!Utils::isUnset($request->startTime)) { + $query['StartTime'] = $request->startTime; + } + if (!Utils::isUnset($request->stream)) { + $query['Stream'] = $request->stream; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DescribeLiveDetectPornData', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DescribeLiveDetectPornDataResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DescribeLiveDetectPornDataRequest $request + * + * @return DescribeLiveDetectPornDataResponse + */ + public function describeLiveDetectPornData($request) + { + $runtime = new RuntimeOptions([]); + + return $this->describeLiveDetectPornDataWithOptions($request, $runtime); + } + + /** + * @param DescribeLiveDomainBpsDataRequest $request + * @param RuntimeOptions $runtime + * + * @return DescribeLiveDomainBpsDataResponse + */ + public function describeLiveDomainBpsDataWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->endTime)) { + $query['EndTime'] = $request->endTime; + } + if (!Utils::isUnset($request->interval)) { + $query['Interval'] = $request->interval; + } + if (!Utils::isUnset($request->ispNameEn)) { + $query['IspNameEn'] = $request->ispNameEn; + } + if (!Utils::isUnset($request->locationNameEn)) { + $query['LocationNameEn'] = $request->locationNameEn; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->startTime)) { + $query['StartTime'] = $request->startTime; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DescribeLiveDomainBpsData', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DescribeLiveDomainBpsDataResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DescribeLiveDomainBpsDataRequest $request + * + * @return DescribeLiveDomainBpsDataResponse + */ + public function describeLiveDomainBpsData($request) + { + $runtime = new RuntimeOptions([]); + + return $this->describeLiveDomainBpsDataWithOptions($request, $runtime); + } + + /** + * @param DescribeLiveDomainBpsDataByLayerRequest $request + * @param RuntimeOptions $runtime + * + * @return DescribeLiveDomainBpsDataByLayerResponse + */ + public function describeLiveDomainBpsDataByLayerWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->endTime)) { + $query['EndTime'] = $request->endTime; + } + if (!Utils::isUnset($request->interval)) { + $query['Interval'] = $request->interval; + } + if (!Utils::isUnset($request->ispNameEn)) { + $query['IspNameEn'] = $request->ispNameEn; + } + if (!Utils::isUnset($request->layer)) { + $query['Layer'] = $request->layer; + } + if (!Utils::isUnset($request->locationNameEn)) { + $query['LocationNameEn'] = $request->locationNameEn; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->startTime)) { + $query['StartTime'] = $request->startTime; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DescribeLiveDomainBpsDataByLayer', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DescribeLiveDomainBpsDataByLayerResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DescribeLiveDomainBpsDataByLayerRequest $request + * + * @return DescribeLiveDomainBpsDataByLayerResponse + */ + public function describeLiveDomainBpsDataByLayer($request) + { + $runtime = new RuntimeOptions([]); + + return $this->describeLiveDomainBpsDataByLayerWithOptions($request, $runtime); + } + + /** + * @param DescribeLiveDomainBpsDataByTimeStampRequest $request + * @param RuntimeOptions $runtime + * + * @return DescribeLiveDomainBpsDataByTimeStampResponse + */ + public function describeLiveDomainBpsDataByTimeStampWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->ispNames)) { + $query['IspNames'] = $request->ispNames; + } + if (!Utils::isUnset($request->locationNames)) { + $query['LocationNames'] = $request->locationNames; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->timePoint)) { + $query['TimePoint'] = $request->timePoint; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DescribeLiveDomainBpsDataByTimeStamp', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DescribeLiveDomainBpsDataByTimeStampResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DescribeLiveDomainBpsDataByTimeStampRequest $request + * + * @return DescribeLiveDomainBpsDataByTimeStampResponse + */ + public function describeLiveDomainBpsDataByTimeStamp($request) + { + $runtime = new RuntimeOptions([]); + + return $this->describeLiveDomainBpsDataByTimeStampWithOptions($request, $runtime); + } + + /** + * @param DescribeLiveDomainCertificateInfoRequest $request + * @param RuntimeOptions $runtime + * + * @return DescribeLiveDomainCertificateInfoResponse + */ + public function describeLiveDomainCertificateInfoWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DescribeLiveDomainCertificateInfo', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DescribeLiveDomainCertificateInfoResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DescribeLiveDomainCertificateInfoRequest $request + * + * @return DescribeLiveDomainCertificateInfoResponse + */ + public function describeLiveDomainCertificateInfo($request) + { + $runtime = new RuntimeOptions([]); + + return $this->describeLiveDomainCertificateInfoWithOptions($request, $runtime); + } + + /** + * @param DescribeLiveDomainConfigsRequest $request + * @param RuntimeOptions $runtime + * + * @return DescribeLiveDomainConfigsResponse + */ + public function describeLiveDomainConfigsWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->functionNames)) { + $query['FunctionNames'] = $request->functionNames; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->securityToken)) { + $query['SecurityToken'] = $request->securityToken; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DescribeLiveDomainConfigs', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DescribeLiveDomainConfigsResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DescribeLiveDomainConfigsRequest $request + * + * @return DescribeLiveDomainConfigsResponse + */ + public function describeLiveDomainConfigs($request) + { + $runtime = new RuntimeOptions([]); + + return $this->describeLiveDomainConfigsWithOptions($request, $runtime); + } + + /** + * @param DescribeLiveDomainDetailRequest $request + * @param RuntimeOptions $runtime + * + * @return DescribeLiveDomainDetailResponse + */ + public function describeLiveDomainDetailWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->securityToken)) { + $query['SecurityToken'] = $request->securityToken; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DescribeLiveDomainDetail', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DescribeLiveDomainDetailResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DescribeLiveDomainDetailRequest $request + * + * @return DescribeLiveDomainDetailResponse + */ + public function describeLiveDomainDetail($request) + { + $runtime = new RuntimeOptions([]); + + return $this->describeLiveDomainDetailWithOptions($request, $runtime); + } + + /** + * @param DescribeLiveDomainFrameRateAndBitRateDataRequest $request + * @param RuntimeOptions $runtime + * + * @return DescribeLiveDomainFrameRateAndBitRateDataResponse + */ + public function describeLiveDomainFrameRateAndBitRateDataWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->queryTime)) { + $query['QueryTime'] = $request->queryTime; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DescribeLiveDomainFrameRateAndBitRateData', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DescribeLiveDomainFrameRateAndBitRateDataResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DescribeLiveDomainFrameRateAndBitRateDataRequest $request + * + * @return DescribeLiveDomainFrameRateAndBitRateDataResponse + */ + public function describeLiveDomainFrameRateAndBitRateData($request) + { + $runtime = new RuntimeOptions([]); + + return $this->describeLiveDomainFrameRateAndBitRateDataWithOptions($request, $runtime); + } + + /** + * @param DescribeLiveDomainLimitRequest $request + * @param RuntimeOptions $runtime + * + * @return DescribeLiveDomainLimitResponse + */ + public function describeLiveDomainLimitWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DescribeLiveDomainLimit', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DescribeLiveDomainLimitResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DescribeLiveDomainLimitRequest $request + * + * @return DescribeLiveDomainLimitResponse + */ + public function describeLiveDomainLimit($request) + { + $runtime = new RuntimeOptions([]); + + return $this->describeLiveDomainLimitWithOptions($request, $runtime); + } + + /** + * @param DescribeLiveDomainLogRequest $request + * @param RuntimeOptions $runtime + * + * @return DescribeLiveDomainLogResponse + */ + public function describeLiveDomainLogWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->endTime)) { + $query['EndTime'] = $request->endTime; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->pageNumber)) { + $query['PageNumber'] = $request->pageNumber; + } + if (!Utils::isUnset($request->pageSize)) { + $query['PageSize'] = $request->pageSize; + } + if (!Utils::isUnset($request->startTime)) { + $query['StartTime'] = $request->startTime; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DescribeLiveDomainLog', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DescribeLiveDomainLogResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DescribeLiveDomainLogRequest $request + * + * @return DescribeLiveDomainLogResponse + */ + public function describeLiveDomainLog($request) + { + $runtime = new RuntimeOptions([]); + + return $this->describeLiveDomainLogWithOptions($request, $runtime); + } + + /** + * @param DescribeLiveDomainMappingRequest $request + * @param RuntimeOptions $runtime + * + * @return DescribeLiveDomainMappingResponse + */ + public function describeLiveDomainMappingWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = OpenApiUtilClient::query(Utils::toMap($request)); + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DescribeLiveDomainMapping', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'GET', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DescribeLiveDomainMappingResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DescribeLiveDomainMappingRequest $request + * + * @return DescribeLiveDomainMappingResponse + */ + public function describeLiveDomainMapping($request) + { + $runtime = new RuntimeOptions([]); + + return $this->describeLiveDomainMappingWithOptions($request, $runtime); + } + + /** + * @param DescribeLiveDomainOnlineUserNumRequest $request + * @param RuntimeOptions $runtime + * + * @return DescribeLiveDomainOnlineUserNumResponse + */ + public function describeLiveDomainOnlineUserNumWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->queryTime)) { + $query['QueryTime'] = $request->queryTime; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DescribeLiveDomainOnlineUserNum', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DescribeLiveDomainOnlineUserNumResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DescribeLiveDomainOnlineUserNumRequest $request + * + * @return DescribeLiveDomainOnlineUserNumResponse + */ + public function describeLiveDomainOnlineUserNum($request) + { + $runtime = new RuntimeOptions([]); + + return $this->describeLiveDomainOnlineUserNumWithOptions($request, $runtime); + } + + /** + * @param DescribeLiveDomainPushBpsDataRequest $request + * @param RuntimeOptions $runtime + * + * @return DescribeLiveDomainPushBpsDataResponse + */ + public function describeLiveDomainPushBpsDataWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->endTime)) { + $query['EndTime'] = $request->endTime; + } + if (!Utils::isUnset($request->interval)) { + $query['Interval'] = $request->interval; + } + if (!Utils::isUnset($request->ispNameEn)) { + $query['IspNameEn'] = $request->ispNameEn; + } + if (!Utils::isUnset($request->locationNameEn)) { + $query['LocationNameEn'] = $request->locationNameEn; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->startTime)) { + $query['StartTime'] = $request->startTime; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DescribeLiveDomainPushBpsData', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DescribeLiveDomainPushBpsDataResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DescribeLiveDomainPushBpsDataRequest $request + * + * @return DescribeLiveDomainPushBpsDataResponse + */ + public function describeLiveDomainPushBpsData($request) + { + $runtime = new RuntimeOptions([]); + + return $this->describeLiveDomainPushBpsDataWithOptions($request, $runtime); + } + + /** + * @param DescribeLiveDomainPushTrafficDataRequest $request + * @param RuntimeOptions $runtime + * + * @return DescribeLiveDomainPushTrafficDataResponse + */ + public function describeLiveDomainPushTrafficDataWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->endTime)) { + $query['EndTime'] = $request->endTime; + } + if (!Utils::isUnset($request->interval)) { + $query['Interval'] = $request->interval; + } + if (!Utils::isUnset($request->ispNameEn)) { + $query['IspNameEn'] = $request->ispNameEn; + } + if (!Utils::isUnset($request->locationNameEn)) { + $query['LocationNameEn'] = $request->locationNameEn; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->startTime)) { + $query['StartTime'] = $request->startTime; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DescribeLiveDomainPushTrafficData', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DescribeLiveDomainPushTrafficDataResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DescribeLiveDomainPushTrafficDataRequest $request + * + * @return DescribeLiveDomainPushTrafficDataResponse + */ + public function describeLiveDomainPushTrafficData($request) + { + $runtime = new RuntimeOptions([]); + + return $this->describeLiveDomainPushTrafficDataWithOptions($request, $runtime); + } + + /** + * @param DescribeLiveDomainPvUvDataRequest $request + * @param RuntimeOptions $runtime + * + * @return DescribeLiveDomainPvUvDataResponse + */ + public function describeLiveDomainPvUvDataWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->endTime)) { + $query['EndTime'] = $request->endTime; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->startTime)) { + $query['StartTime'] = $request->startTime; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DescribeLiveDomainPvUvData', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DescribeLiveDomainPvUvDataResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DescribeLiveDomainPvUvDataRequest $request + * + * @return DescribeLiveDomainPvUvDataResponse + */ + public function describeLiveDomainPvUvData($request) + { + $runtime = new RuntimeOptions([]); + + return $this->describeLiveDomainPvUvDataWithOptions($request, $runtime); + } + + /** + * @param DescribeLiveDomainRealTimeBpsDataRequest $request + * @param RuntimeOptions $runtime + * + * @return DescribeLiveDomainRealTimeBpsDataResponse + */ + public function describeLiveDomainRealTimeBpsDataWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = OpenApiUtilClient::query(Utils::toMap($request)); + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DescribeLiveDomainRealTimeBpsData', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'GET', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DescribeLiveDomainRealTimeBpsDataResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DescribeLiveDomainRealTimeBpsDataRequest $request + * + * @return DescribeLiveDomainRealTimeBpsDataResponse + */ + public function describeLiveDomainRealTimeBpsData($request) + { + $runtime = new RuntimeOptions([]); + + return $this->describeLiveDomainRealTimeBpsDataWithOptions($request, $runtime); + } + + /** + * @param DescribeLiveDomainRealTimeHttpCodeDataRequest $request + * @param RuntimeOptions $runtime + * + * @return DescribeLiveDomainRealTimeHttpCodeDataResponse + */ + public function describeLiveDomainRealTimeHttpCodeDataWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->endTime)) { + $query['EndTime'] = $request->endTime; + } + if (!Utils::isUnset($request->ispNameEn)) { + $query['IspNameEn'] = $request->ispNameEn; + } + if (!Utils::isUnset($request->locationNameEn)) { + $query['LocationNameEn'] = $request->locationNameEn; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->startTime)) { + $query['StartTime'] = $request->startTime; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DescribeLiveDomainRealTimeHttpCodeData', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DescribeLiveDomainRealTimeHttpCodeDataResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DescribeLiveDomainRealTimeHttpCodeDataRequest $request + * + * @return DescribeLiveDomainRealTimeHttpCodeDataResponse + */ + public function describeLiveDomainRealTimeHttpCodeData($request) + { + $runtime = new RuntimeOptions([]); + + return $this->describeLiveDomainRealTimeHttpCodeDataWithOptions($request, $runtime); + } + + /** + * @param DescribeLiveDomainRealTimeTrafficDataRequest $request + * @param RuntimeOptions $runtime + * + * @return DescribeLiveDomainRealTimeTrafficDataResponse + */ + public function describeLiveDomainRealTimeTrafficDataWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->endTime)) { + $query['EndTime'] = $request->endTime; + } + if (!Utils::isUnset($request->ispNameEn)) { + $query['IspNameEn'] = $request->ispNameEn; + } + if (!Utils::isUnset($request->locationNameEn)) { + $query['LocationNameEn'] = $request->locationNameEn; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->startTime)) { + $query['StartTime'] = $request->startTime; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DescribeLiveDomainRealTimeTrafficData', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DescribeLiveDomainRealTimeTrafficDataResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DescribeLiveDomainRealTimeTrafficDataRequest $request + * + * @return DescribeLiveDomainRealTimeTrafficDataResponse + */ + public function describeLiveDomainRealTimeTrafficData($request) + { + $runtime = new RuntimeOptions([]); + + return $this->describeLiveDomainRealTimeTrafficDataWithOptions($request, $runtime); + } + + /** + * @param DescribeLiveDomainRealtimeLogDeliveryRequest $request + * @param RuntimeOptions $runtime + * + * @return DescribeLiveDomainRealtimeLogDeliveryResponse + */ + public function describeLiveDomainRealtimeLogDeliveryWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = OpenApiUtilClient::query(Utils::toMap($request)); + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DescribeLiveDomainRealtimeLogDelivery', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'GET', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DescribeLiveDomainRealtimeLogDeliveryResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DescribeLiveDomainRealtimeLogDeliveryRequest $request + * + * @return DescribeLiveDomainRealtimeLogDeliveryResponse + */ + public function describeLiveDomainRealtimeLogDelivery($request) + { + $runtime = new RuntimeOptions([]); + + return $this->describeLiveDomainRealtimeLogDeliveryWithOptions($request, $runtime); + } + + /** + * @param DescribeLiveDomainRecordDataRequest $request + * @param RuntimeOptions $runtime + * + * @return DescribeLiveDomainRecordDataResponse + */ + public function describeLiveDomainRecordDataWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->endTime)) { + $query['EndTime'] = $request->endTime; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->recordType)) { + $query['RecordType'] = $request->recordType; + } + if (!Utils::isUnset($request->startTime)) { + $query['StartTime'] = $request->startTime; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DescribeLiveDomainRecordData', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DescribeLiveDomainRecordDataResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DescribeLiveDomainRecordDataRequest $request + * + * @return DescribeLiveDomainRecordDataResponse + */ + public function describeLiveDomainRecordData($request) + { + $runtime = new RuntimeOptions([]); + + return $this->describeLiveDomainRecordDataWithOptions($request, $runtime); + } + + /** + * @param DescribeLiveDomainRecordUsageDataRequest $request + * @param RuntimeOptions $runtime + * + * @return DescribeLiveDomainRecordUsageDataResponse + */ + public function describeLiveDomainRecordUsageDataWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->endTime)) { + $query['EndTime'] = $request->endTime; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->splitBy)) { + $query['SplitBy'] = $request->splitBy; + } + if (!Utils::isUnset($request->startTime)) { + $query['StartTime'] = $request->startTime; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DescribeLiveDomainRecordUsageData', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DescribeLiveDomainRecordUsageDataResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DescribeLiveDomainRecordUsageDataRequest $request + * + * @return DescribeLiveDomainRecordUsageDataResponse + */ + public function describeLiveDomainRecordUsageData($request) + { + $runtime = new RuntimeOptions([]); + + return $this->describeLiveDomainRecordUsageDataWithOptions($request, $runtime); + } + + /** + * @param DescribeLiveDomainSnapshotDataRequest $request + * @param RuntimeOptions $runtime + * + * @return DescribeLiveDomainSnapshotDataResponse + */ + public function describeLiveDomainSnapshotDataWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->endTime)) { + $query['EndTime'] = $request->endTime; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->startTime)) { + $query['StartTime'] = $request->startTime; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DescribeLiveDomainSnapshotData', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DescribeLiveDomainSnapshotDataResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DescribeLiveDomainSnapshotDataRequest $request + * + * @return DescribeLiveDomainSnapshotDataResponse + */ + public function describeLiveDomainSnapshotData($request) + { + $runtime = new RuntimeOptions([]); + + return $this->describeLiveDomainSnapshotDataWithOptions($request, $runtime); + } + + /** + * @param DescribeLiveDomainStagingConfigRequest $request + * @param RuntimeOptions $runtime + * + * @return DescribeLiveDomainStagingConfigResponse + */ + public function describeLiveDomainStagingConfigWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->functionNames)) { + $query['FunctionNames'] = $request->functionNames; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DescribeLiveDomainStagingConfig', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DescribeLiveDomainStagingConfigResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DescribeLiveDomainStagingConfigRequest $request + * + * @return DescribeLiveDomainStagingConfigResponse + */ + public function describeLiveDomainStagingConfig($request) + { + $runtime = new RuntimeOptions([]); + + return $this->describeLiveDomainStagingConfigWithOptions($request, $runtime); + } + + /** + * @param DescribeLiveDomainStreamTranscodeDataRequest $request + * @param RuntimeOptions $runtime + * + * @return DescribeLiveDomainStreamTranscodeDataResponse + */ + public function describeLiveDomainStreamTranscodeDataWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->endTime)) { + $query['EndTime'] = $request->endTime; + } + if (!Utils::isUnset($request->interval)) { + $query['Interval'] = $request->interval; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->split)) { + $query['Split'] = $request->split; + } + if (!Utils::isUnset($request->startTime)) { + $query['StartTime'] = $request->startTime; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DescribeLiveDomainStreamTranscodeData', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DescribeLiveDomainStreamTranscodeDataResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DescribeLiveDomainStreamTranscodeDataRequest $request + * + * @return DescribeLiveDomainStreamTranscodeDataResponse + */ + public function describeLiveDomainStreamTranscodeData($request) + { + $runtime = new RuntimeOptions([]); + + return $this->describeLiveDomainStreamTranscodeDataWithOptions($request, $runtime); + } + + /** + * @param DescribeLiveDomainTimeShiftDataRequest $request + * @param RuntimeOptions $runtime + * + * @return DescribeLiveDomainTimeShiftDataResponse + */ + public function describeLiveDomainTimeShiftDataWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->endTime)) { + $query['EndTime'] = $request->endTime; + } + if (!Utils::isUnset($request->interval)) { + $query['Interval'] = $request->interval; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->startTime)) { + $query['StartTime'] = $request->startTime; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DescribeLiveDomainTimeShiftData', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DescribeLiveDomainTimeShiftDataResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DescribeLiveDomainTimeShiftDataRequest $request + * + * @return DescribeLiveDomainTimeShiftDataResponse + */ + public function describeLiveDomainTimeShiftData($request) + { + $runtime = new RuntimeOptions([]); + + return $this->describeLiveDomainTimeShiftDataWithOptions($request, $runtime); + } + + /** + * @param DescribeLiveDomainTrafficDataRequest $request + * @param RuntimeOptions $runtime + * + * @return DescribeLiveDomainTrafficDataResponse + */ + public function describeLiveDomainTrafficDataWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->endTime)) { + $query['EndTime'] = $request->endTime; + } + if (!Utils::isUnset($request->interval)) { + $query['Interval'] = $request->interval; + } + if (!Utils::isUnset($request->ispNameEn)) { + $query['IspNameEn'] = $request->ispNameEn; + } + if (!Utils::isUnset($request->locationNameEn)) { + $query['LocationNameEn'] = $request->locationNameEn; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->startTime)) { + $query['StartTime'] = $request->startTime; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DescribeLiveDomainTrafficData', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DescribeLiveDomainTrafficDataResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DescribeLiveDomainTrafficDataRequest $request + * + * @return DescribeLiveDomainTrafficDataResponse + */ + public function describeLiveDomainTrafficData($request) + { + $runtime = new RuntimeOptions([]); + + return $this->describeLiveDomainTrafficDataWithOptions($request, $runtime); + } + + /** + * @param DescribeLiveDomainTranscodeDataRequest $request + * @param RuntimeOptions $runtime + * + * @return DescribeLiveDomainTranscodeDataResponse + */ + public function describeLiveDomainTranscodeDataWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->endTime)) { + $query['EndTime'] = $request->endTime; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->startTime)) { + $query['StartTime'] = $request->startTime; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DescribeLiveDomainTranscodeData', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DescribeLiveDomainTranscodeDataResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DescribeLiveDomainTranscodeDataRequest $request + * + * @return DescribeLiveDomainTranscodeDataResponse + */ + public function describeLiveDomainTranscodeData($request) + { + $runtime = new RuntimeOptions([]); + + return $this->describeLiveDomainTranscodeDataWithOptions($request, $runtime); + } + + /** + * @param DescribeLiveDrmUsageDataRequest $request + * @param RuntimeOptions $runtime + * + * @return DescribeLiveDrmUsageDataResponse + */ + public function describeLiveDrmUsageDataWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->endTime)) { + $query['EndTime'] = $request->endTime; + } + if (!Utils::isUnset($request->interval)) { + $query['Interval'] = $request->interval; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->splitBy)) { + $query['SplitBy'] = $request->splitBy; + } + if (!Utils::isUnset($request->startTime)) { + $query['StartTime'] = $request->startTime; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DescribeLiveDrmUsageData', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DescribeLiveDrmUsageDataResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DescribeLiveDrmUsageDataRequest $request + * + * @return DescribeLiveDrmUsageDataResponse + */ + public function describeLiveDrmUsageData($request) + { + $runtime = new RuntimeOptions([]); + + return $this->describeLiveDrmUsageDataWithOptions($request, $runtime); + } + + /** + * @param DescribeLiveEdgeTransferRequest $request + * @param RuntimeOptions $runtime + * + * @return DescribeLiveEdgeTransferResponse + */ + public function describeLiveEdgeTransferWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DescribeLiveEdgeTransfer', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DescribeLiveEdgeTransferResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DescribeLiveEdgeTransferRequest $request + * + * @return DescribeLiveEdgeTransferResponse + */ + public function describeLiveEdgeTransfer($request) + { + $runtime = new RuntimeOptions([]); + + return $this->describeLiveEdgeTransferWithOptions($request, $runtime); + } + + /** + * @param DescribeLiveLazyPullStreamConfigRequest $request + * @param RuntimeOptions $runtime + * + * @return DescribeLiveLazyPullStreamConfigResponse + */ + public function describeLiveLazyPullStreamConfigWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->appName)) { + $query['AppName'] = $request->appName; + } + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DescribeLiveLazyPullStreamConfig', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DescribeLiveLazyPullStreamConfigResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DescribeLiveLazyPullStreamConfigRequest $request + * + * @return DescribeLiveLazyPullStreamConfigResponse + */ + public function describeLiveLazyPullStreamConfig($request) + { + $runtime = new RuntimeOptions([]); + + return $this->describeLiveLazyPullStreamConfigWithOptions($request, $runtime); + } + + /** + * @param DescribeLiveProducerUsageDataRequest $request + * @param RuntimeOptions $runtime + * + * @return DescribeLiveProducerUsageDataResponse + */ + public function describeLiveProducerUsageDataWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->endTime)) { + $query['EndTime'] = $request->endTime; + } + if (!Utils::isUnset($request->instance)) { + $query['Instance'] = $request->instance; + } + if (!Utils::isUnset($request->interval)) { + $query['Interval'] = $request->interval; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->region)) { + $query['Region'] = $request->region; + } + if (!Utils::isUnset($request->splitBy)) { + $query['SplitBy'] = $request->splitBy; + } + if (!Utils::isUnset($request->startTime)) { + $query['StartTime'] = $request->startTime; + } + if (!Utils::isUnset($request->type)) { + $query['Type'] = $request->type; + } + if (!Utils::isUnset($request->app)) { + $query['app'] = $request->app; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DescribeLiveProducerUsageData', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DescribeLiveProducerUsageDataResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DescribeLiveProducerUsageDataRequest $request + * + * @return DescribeLiveProducerUsageDataResponse + */ + public function describeLiveProducerUsageData($request) + { + $runtime = new RuntimeOptions([]); + + return $this->describeLiveProducerUsageDataWithOptions($request, $runtime); + } + + /** + * @param DescribeLivePullStreamConfigRequest $request + * @param RuntimeOptions $runtime + * + * @return DescribeLivePullStreamConfigResponse + */ + public function describeLivePullStreamConfigWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DescribeLivePullStreamConfig', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DescribeLivePullStreamConfigResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DescribeLivePullStreamConfigRequest $request + * + * @return DescribeLivePullStreamConfigResponse + */ + public function describeLivePullStreamConfig($request) + { + $runtime = new RuntimeOptions([]); + + return $this->describeLivePullStreamConfigWithOptions($request, $runtime); + } + + /** + * @param DescribeLiveRealtimeDeliveryAccRequest $request + * @param RuntimeOptions $runtime + * + * @return DescribeLiveRealtimeDeliveryAccResponse + */ + public function describeLiveRealtimeDeliveryAccWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->endTime)) { + $query['EndTime'] = $request->endTime; + } + if (!Utils::isUnset($request->interval)) { + $query['Interval'] = $request->interval; + } + if (!Utils::isUnset($request->logStore)) { + $query['LogStore'] = $request->logStore; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->project)) { + $query['Project'] = $request->project; + } + if (!Utils::isUnset($request->startTime)) { + $query['StartTime'] = $request->startTime; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DescribeLiveRealtimeDeliveryAcc', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DescribeLiveRealtimeDeliveryAccResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DescribeLiveRealtimeDeliveryAccRequest $request + * + * @return DescribeLiveRealtimeDeliveryAccResponse + */ + public function describeLiveRealtimeDeliveryAcc($request) + { + $runtime = new RuntimeOptions([]); + + return $this->describeLiveRealtimeDeliveryAccWithOptions($request, $runtime); + } + + /** + * @param DescribeLiveRealtimeLogAuthorizedRequest $request + * @param RuntimeOptions $runtime + * + * @return DescribeLiveRealtimeLogAuthorizedResponse + */ + public function describeLiveRealtimeLogAuthorizedWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = OpenApiUtilClient::query(Utils::toMap($request)); + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DescribeLiveRealtimeLogAuthorized', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'GET', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DescribeLiveRealtimeLogAuthorizedResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DescribeLiveRealtimeLogAuthorizedRequest $request + * + * @return DescribeLiveRealtimeLogAuthorizedResponse + */ + public function describeLiveRealtimeLogAuthorized($request) + { + $runtime = new RuntimeOptions([]); + + return $this->describeLiveRealtimeLogAuthorizedWithOptions($request, $runtime); + } + + /** + * @param DescribeLiveRecordConfigRequest $request + * @param RuntimeOptions $runtime + * + * @return DescribeLiveRecordConfigResponse + */ + public function describeLiveRecordConfigWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->appName)) { + $query['AppName'] = $request->appName; + } + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->order)) { + $query['Order'] = $request->order; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->pageNum)) { + $query['PageNum'] = $request->pageNum; + } + if (!Utils::isUnset($request->pageSize)) { + $query['PageSize'] = $request->pageSize; + } + if (!Utils::isUnset($request->securityToken)) { + $query['SecurityToken'] = $request->securityToken; + } + if (!Utils::isUnset($request->streamName)) { + $query['StreamName'] = $request->streamName; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DescribeLiveRecordConfig', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DescribeLiveRecordConfigResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DescribeLiveRecordConfigRequest $request + * + * @return DescribeLiveRecordConfigResponse + */ + public function describeLiveRecordConfig($request) + { + $runtime = new RuntimeOptions([]); + + return $this->describeLiveRecordConfigWithOptions($request, $runtime); + } + + /** + * @param DescribeLiveRecordNotifyConfigRequest $request + * @param RuntimeOptions $runtime + * + * @return DescribeLiveRecordNotifyConfigResponse + */ + public function describeLiveRecordNotifyConfigWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->securityToken)) { + $query['SecurityToken'] = $request->securityToken; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DescribeLiveRecordNotifyConfig', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DescribeLiveRecordNotifyConfigResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DescribeLiveRecordNotifyConfigRequest $request + * + * @return DescribeLiveRecordNotifyConfigResponse + */ + public function describeLiveRecordNotifyConfig($request) + { + $runtime = new RuntimeOptions([]); + + return $this->describeLiveRecordNotifyConfigWithOptions($request, $runtime); + } + + /** + * @param DescribeLiveRecordVodConfigsRequest $request + * @param RuntimeOptions $runtime + * + * @return DescribeLiveRecordVodConfigsResponse + */ + public function describeLiveRecordVodConfigsWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->appName)) { + $query['AppName'] = $request->appName; + } + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->pageNum)) { + $query['PageNum'] = $request->pageNum; + } + if (!Utils::isUnset($request->pageSize)) { + $query['PageSize'] = $request->pageSize; + } + if (!Utils::isUnset($request->streamName)) { + $query['StreamName'] = $request->streamName; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DescribeLiveRecordVodConfigs', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DescribeLiveRecordVodConfigsResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DescribeLiveRecordVodConfigsRequest $request + * + * @return DescribeLiveRecordVodConfigsResponse + */ + public function describeLiveRecordVodConfigs($request) + { + $runtime = new RuntimeOptions([]); + + return $this->describeLiveRecordVodConfigsWithOptions($request, $runtime); + } + + /** + * @param DescribeLiveShiftConfigsRequest $request + * @param RuntimeOptions $runtime + * + * @return DescribeLiveShiftConfigsResponse + */ + public function describeLiveShiftConfigsWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DescribeLiveShiftConfigs', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DescribeLiveShiftConfigsResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DescribeLiveShiftConfigsRequest $request + * + * @return DescribeLiveShiftConfigsResponse + */ + public function describeLiveShiftConfigs($request) + { + $runtime = new RuntimeOptions([]); + + return $this->describeLiveShiftConfigsWithOptions($request, $runtime); + } + + /** + * @param DescribeLiveSnapshotConfigRequest $request + * @param RuntimeOptions $runtime + * + * @return DescribeLiveSnapshotConfigResponse + */ + public function describeLiveSnapshotConfigWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->appName)) { + $query['AppName'] = $request->appName; + } + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->order)) { + $query['Order'] = $request->order; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->pageNum)) { + $query['PageNum'] = $request->pageNum; + } + if (!Utils::isUnset($request->pageSize)) { + $query['PageSize'] = $request->pageSize; + } + if (!Utils::isUnset($request->securityToken)) { + $query['SecurityToken'] = $request->securityToken; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DescribeLiveSnapshotConfig', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DescribeLiveSnapshotConfigResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DescribeLiveSnapshotConfigRequest $request + * + * @return DescribeLiveSnapshotConfigResponse + */ + public function describeLiveSnapshotConfig($request) + { + $runtime = new RuntimeOptions([]); + + return $this->describeLiveSnapshotConfigWithOptions($request, $runtime); + } + + /** + * @param DescribeLiveSnapshotDetectPornConfigRequest $request + * @param RuntimeOptions $runtime + * + * @return DescribeLiveSnapshotDetectPornConfigResponse + */ + public function describeLiveSnapshotDetectPornConfigWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->appName)) { + $query['AppName'] = $request->appName; + } + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->order)) { + $query['Order'] = $request->order; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->pageNum)) { + $query['PageNum'] = $request->pageNum; + } + if (!Utils::isUnset($request->pageSize)) { + $query['PageSize'] = $request->pageSize; + } + if (!Utils::isUnset($request->securityToken)) { + $query['SecurityToken'] = $request->securityToken; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DescribeLiveSnapshotDetectPornConfig', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DescribeLiveSnapshotDetectPornConfigResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DescribeLiveSnapshotDetectPornConfigRequest $request + * + * @return DescribeLiveSnapshotDetectPornConfigResponse + */ + public function describeLiveSnapshotDetectPornConfig($request) + { + $runtime = new RuntimeOptions([]); + + return $this->describeLiveSnapshotDetectPornConfigWithOptions($request, $runtime); + } + + /** + * @param DescribeLiveSnapshotNotifyConfigRequest $request + * @param RuntimeOptions $runtime + * + * @return DescribeLiveSnapshotNotifyConfigResponse + */ + public function describeLiveSnapshotNotifyConfigWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DescribeLiveSnapshotNotifyConfig', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DescribeLiveSnapshotNotifyConfigResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DescribeLiveSnapshotNotifyConfigRequest $request + * + * @return DescribeLiveSnapshotNotifyConfigResponse + */ + public function describeLiveSnapshotNotifyConfig($request) + { + $runtime = new RuntimeOptions([]); + + return $this->describeLiveSnapshotNotifyConfigWithOptions($request, $runtime); + } + + /** + * @param DescribeLiveStreamAuthCheckingRequest $request + * @param RuntimeOptions $runtime + * + * @return DescribeLiveStreamAuthCheckingResponse + */ + public function describeLiveStreamAuthCheckingWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->url)) { + $query['Url'] = $request->url; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DescribeLiveStreamAuthChecking', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DescribeLiveStreamAuthCheckingResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DescribeLiveStreamAuthCheckingRequest $request + * + * @return DescribeLiveStreamAuthCheckingResponse + */ + public function describeLiveStreamAuthChecking($request) + { + $runtime = new RuntimeOptions([]); + + return $this->describeLiveStreamAuthCheckingWithOptions($request, $runtime); + } + + /** + * @param DescribeLiveStreamBitRateDataRequest $request + * @param RuntimeOptions $runtime + * + * @return DescribeLiveStreamBitRateDataResponse + */ + public function describeLiveStreamBitRateDataWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->appName)) { + $query['AppName'] = $request->appName; + } + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->endTime)) { + $query['EndTime'] = $request->endTime; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->securityToken)) { + $query['SecurityToken'] = $request->securityToken; + } + if (!Utils::isUnset($request->startTime)) { + $query['StartTime'] = $request->startTime; + } + if (!Utils::isUnset($request->streamName)) { + $query['StreamName'] = $request->streamName; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DescribeLiveStreamBitRateData', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DescribeLiveStreamBitRateDataResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DescribeLiveStreamBitRateDataRequest $request + * + * @return DescribeLiveStreamBitRateDataResponse + */ + public function describeLiveStreamBitRateData($request) + { + $runtime = new RuntimeOptions([]); + + return $this->describeLiveStreamBitRateDataWithOptions($request, $runtime); + } + + /** + * @param DescribeLiveStreamCountRequest $request + * @param RuntimeOptions $runtime + * + * @return DescribeLiveStreamCountResponse + */ + public function describeLiveStreamCountWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = OpenApiUtilClient::query(Utils::toMap($request)); + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DescribeLiveStreamCount', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'GET', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DescribeLiveStreamCountResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DescribeLiveStreamCountRequest $request + * + * @return DescribeLiveStreamCountResponse + */ + public function describeLiveStreamCount($request) + { + $runtime = new RuntimeOptions([]); + + return $this->describeLiveStreamCountWithOptions($request, $runtime); + } + + /** + * @param DescribeLiveStreamDelayConfigRequest $request + * @param RuntimeOptions $runtime + * + * @return DescribeLiveStreamDelayConfigResponse + */ + public function describeLiveStreamDelayConfigWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DescribeLiveStreamDelayConfig', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DescribeLiveStreamDelayConfigResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DescribeLiveStreamDelayConfigRequest $request + * + * @return DescribeLiveStreamDelayConfigResponse + */ + public function describeLiveStreamDelayConfig($request) + { + $runtime = new RuntimeOptions([]); + + return $this->describeLiveStreamDelayConfigWithOptions($request, $runtime); + } + + /** + * @param DescribeLiveStreamHistoryUserNumRequest $request + * @param RuntimeOptions $runtime + * + * @return DescribeLiveStreamHistoryUserNumResponse + */ + public function describeLiveStreamHistoryUserNumWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->appName)) { + $query['AppName'] = $request->appName; + } + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->endTime)) { + $query['EndTime'] = $request->endTime; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->securityToken)) { + $query['SecurityToken'] = $request->securityToken; + } + if (!Utils::isUnset($request->startTime)) { + $query['StartTime'] = $request->startTime; + } + if (!Utils::isUnset($request->streamName)) { + $query['StreamName'] = $request->streamName; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DescribeLiveStreamHistoryUserNum', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DescribeLiveStreamHistoryUserNumResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DescribeLiveStreamHistoryUserNumRequest $request + * + * @return DescribeLiveStreamHistoryUserNumResponse + */ + public function describeLiveStreamHistoryUserNum($request) + { + $runtime = new RuntimeOptions([]); + + return $this->describeLiveStreamHistoryUserNumWithOptions($request, $runtime); + } + + /** + * @param DescribeLiveStreamMetricDetailDataRequest $request + * @param RuntimeOptions $runtime + * + * @return DescribeLiveStreamMetricDetailDataResponse + */ + public function describeLiveStreamMetricDetailDataWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->appName)) { + $query['AppName'] = $request->appName; + } + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->endTime)) { + $query['EndTime'] = $request->endTime; + } + if (!Utils::isUnset($request->nextPageToken)) { + $query['NextPageToken'] = $request->nextPageToken; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->protocol)) { + $query['Protocol'] = $request->protocol; + } + if (!Utils::isUnset($request->startTime)) { + $query['StartTime'] = $request->startTime; + } + if (!Utils::isUnset($request->streamName)) { + $query['StreamName'] = $request->streamName; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DescribeLiveStreamMetricDetailData', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DescribeLiveStreamMetricDetailDataResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DescribeLiveStreamMetricDetailDataRequest $request + * + * @return DescribeLiveStreamMetricDetailDataResponse + */ + public function describeLiveStreamMetricDetailData($request) + { + $runtime = new RuntimeOptions([]); + + return $this->describeLiveStreamMetricDetailDataWithOptions($request, $runtime); + } + + /** + * @param DescribeLiveStreamMonitorListRequest $request + * @param RuntimeOptions $runtime + * + * @return DescribeLiveStreamMonitorListResponse + */ + public function describeLiveStreamMonitorListWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->monitorId)) { + $query['MonitorId'] = $request->monitorId; + } + if (!Utils::isUnset($request->orderRule)) { + $query['OrderRule'] = $request->orderRule; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->pageNum)) { + $query['PageNum'] = $request->pageNum; + } + if (!Utils::isUnset($request->pageSize)) { + $query['PageSize'] = $request->pageSize; + } + if (!Utils::isUnset($request->status)) { + $query['Status'] = $request->status; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DescribeLiveStreamMonitorList', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DescribeLiveStreamMonitorListResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DescribeLiveStreamMonitorListRequest $request + * + * @return DescribeLiveStreamMonitorListResponse + */ + public function describeLiveStreamMonitorList($request) + { + $runtime = new RuntimeOptions([]); + + return $this->describeLiveStreamMonitorListWithOptions($request, $runtime); + } + + /** + * @param DescribeLiveStreamOptimizedFeatureConfigRequest $request + * @param RuntimeOptions $runtime + * + * @return DescribeLiveStreamOptimizedFeatureConfigResponse + */ + public function describeLiveStreamOptimizedFeatureConfigWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->configName)) { + $query['ConfigName'] = $request->configName; + } + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DescribeLiveStreamOptimizedFeatureConfig', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DescribeLiveStreamOptimizedFeatureConfigResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DescribeLiveStreamOptimizedFeatureConfigRequest $request + * + * @return DescribeLiveStreamOptimizedFeatureConfigResponse + */ + public function describeLiveStreamOptimizedFeatureConfig($request) + { + $runtime = new RuntimeOptions([]); + + return $this->describeLiveStreamOptimizedFeatureConfigWithOptions($request, $runtime); + } + + /** + * @param DescribeLiveStreamRecordContentRequest $request + * @param RuntimeOptions $runtime + * + * @return DescribeLiveStreamRecordContentResponse + */ + public function describeLiveStreamRecordContentWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->appName)) { + $query['AppName'] = $request->appName; + } + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->endTime)) { + $query['EndTime'] = $request->endTime; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->securityToken)) { + $query['SecurityToken'] = $request->securityToken; + } + if (!Utils::isUnset($request->startTime)) { + $query['StartTime'] = $request->startTime; + } + if (!Utils::isUnset($request->streamName)) { + $query['StreamName'] = $request->streamName; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DescribeLiveStreamRecordContent', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DescribeLiveStreamRecordContentResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DescribeLiveStreamRecordContentRequest $request + * + * @return DescribeLiveStreamRecordContentResponse + */ + public function describeLiveStreamRecordContent($request) + { + $runtime = new RuntimeOptions([]); + + return $this->describeLiveStreamRecordContentWithOptions($request, $runtime); + } + + /** + * @param DescribeLiveStreamRecordIndexFileRequest $request + * @param RuntimeOptions $runtime + * + * @return DescribeLiveStreamRecordIndexFileResponse + */ + public function describeLiveStreamRecordIndexFileWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->appName)) { + $query['AppName'] = $request->appName; + } + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->recordId)) { + $query['RecordId'] = $request->recordId; + } + if (!Utils::isUnset($request->securityToken)) { + $query['SecurityToken'] = $request->securityToken; + } + if (!Utils::isUnset($request->streamName)) { + $query['StreamName'] = $request->streamName; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DescribeLiveStreamRecordIndexFile', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DescribeLiveStreamRecordIndexFileResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DescribeLiveStreamRecordIndexFileRequest $request + * + * @return DescribeLiveStreamRecordIndexFileResponse + */ + public function describeLiveStreamRecordIndexFile($request) + { + $runtime = new RuntimeOptions([]); + + return $this->describeLiveStreamRecordIndexFileWithOptions($request, $runtime); + } + + /** + * @param DescribeLiveStreamRecordIndexFilesRequest $request + * @param RuntimeOptions $runtime + * + * @return DescribeLiveStreamRecordIndexFilesResponse + */ + public function describeLiveStreamRecordIndexFilesWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->appName)) { + $query['AppName'] = $request->appName; + } + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->endTime)) { + $query['EndTime'] = $request->endTime; + } + if (!Utils::isUnset($request->order)) { + $query['Order'] = $request->order; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->pageNum)) { + $query['PageNum'] = $request->pageNum; + } + if (!Utils::isUnset($request->pageSize)) { + $query['PageSize'] = $request->pageSize; + } + if (!Utils::isUnset($request->securityToken)) { + $query['SecurityToken'] = $request->securityToken; + } + if (!Utils::isUnset($request->startTime)) { + $query['StartTime'] = $request->startTime; + } + if (!Utils::isUnset($request->streamName)) { + $query['StreamName'] = $request->streamName; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DescribeLiveStreamRecordIndexFiles', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DescribeLiveStreamRecordIndexFilesResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DescribeLiveStreamRecordIndexFilesRequest $request + * + * @return DescribeLiveStreamRecordIndexFilesResponse + */ + public function describeLiveStreamRecordIndexFiles($request) + { + $runtime = new RuntimeOptions([]); + + return $this->describeLiveStreamRecordIndexFilesWithOptions($request, $runtime); + } + + /** + * @param DescribeLiveStreamSnapshotInfoRequest $request + * @param RuntimeOptions $runtime + * + * @return DescribeLiveStreamSnapshotInfoResponse + */ + public function describeLiveStreamSnapshotInfoWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->appName)) { + $query['AppName'] = $request->appName; + } + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->endTime)) { + $query['EndTime'] = $request->endTime; + } + if (!Utils::isUnset($request->limit)) { + $query['Limit'] = $request->limit; + } + if (!Utils::isUnset($request->order)) { + $query['Order'] = $request->order; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->securityToken)) { + $query['SecurityToken'] = $request->securityToken; + } + if (!Utils::isUnset($request->startTime)) { + $query['StartTime'] = $request->startTime; + } + if (!Utils::isUnset($request->streamName)) { + $query['StreamName'] = $request->streamName; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DescribeLiveStreamSnapshotInfo', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DescribeLiveStreamSnapshotInfoResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DescribeLiveStreamSnapshotInfoRequest $request + * + * @return DescribeLiveStreamSnapshotInfoResponse + */ + public function describeLiveStreamSnapshotInfo($request) + { + $runtime = new RuntimeOptions([]); + + return $this->describeLiveStreamSnapshotInfoWithOptions($request, $runtime); + } + + /** + * @param DescribeLiveStreamStateRequest $request + * @param RuntimeOptions $runtime + * + * @return DescribeLiveStreamStateResponse + */ + public function describeLiveStreamStateWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->appName)) { + $query['AppName'] = $request->appName; + } + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->streamName)) { + $query['StreamName'] = $request->streamName; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DescribeLiveStreamState', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DescribeLiveStreamStateResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DescribeLiveStreamStateRequest $request + * + * @return DescribeLiveStreamStateResponse + */ + public function describeLiveStreamState($request) + { + $runtime = new RuntimeOptions([]); + + return $this->describeLiveStreamStateWithOptions($request, $runtime); + } + + /** + * @param DescribeLiveStreamTranscodeInfoRequest $request + * @param RuntimeOptions $runtime + * + * @return DescribeLiveStreamTranscodeInfoResponse + */ + public function describeLiveStreamTranscodeInfoWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->domainTranscodeName)) { + $query['DomainTranscodeName'] = $request->domainTranscodeName; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DescribeLiveStreamTranscodeInfo', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DescribeLiveStreamTranscodeInfoResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DescribeLiveStreamTranscodeInfoRequest $request + * + * @return DescribeLiveStreamTranscodeInfoResponse + */ + public function describeLiveStreamTranscodeInfo($request) + { + $runtime = new RuntimeOptions([]); + + return $this->describeLiveStreamTranscodeInfoWithOptions($request, $runtime); + } + + /** + * @param DescribeLiveStreamTranscodeStreamNumRequest $request + * @param RuntimeOptions $runtime + * + * @return DescribeLiveStreamTranscodeStreamNumResponse + */ + public function describeLiveStreamTranscodeStreamNumWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DescribeLiveStreamTranscodeStreamNum', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DescribeLiveStreamTranscodeStreamNumResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DescribeLiveStreamTranscodeStreamNumRequest $request + * + * @return DescribeLiveStreamTranscodeStreamNumResponse + */ + public function describeLiveStreamTranscodeStreamNum($request) + { + $runtime = new RuntimeOptions([]); + + return $this->describeLiveStreamTranscodeStreamNumWithOptions($request, $runtime); + } + + /** + * @param DescribeLiveStreamWatermarkRulesRequest $request + * @param RuntimeOptions $runtime + * + * @return DescribeLiveStreamWatermarkRulesResponse + */ + public function describeLiveStreamWatermarkRulesWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->pageNumber)) { + $query['PageNumber'] = $request->pageNumber; + } + if (!Utils::isUnset($request->pageSize)) { + $query['PageSize'] = $request->pageSize; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DescribeLiveStreamWatermarkRules', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DescribeLiveStreamWatermarkRulesResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DescribeLiveStreamWatermarkRulesRequest $request + * + * @return DescribeLiveStreamWatermarkRulesResponse + */ + public function describeLiveStreamWatermarkRules($request) + { + $runtime = new RuntimeOptions([]); + + return $this->describeLiveStreamWatermarkRulesWithOptions($request, $runtime); + } + + /** + * @param DescribeLiveStreamWatermarksRequest $request + * @param RuntimeOptions $runtime + * + * @return DescribeLiveStreamWatermarksResponse + */ + public function describeLiveStreamWatermarksWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->pageNumber)) { + $query['PageNumber'] = $request->pageNumber; + } + if (!Utils::isUnset($request->pageSize)) { + $query['PageSize'] = $request->pageSize; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DescribeLiveStreamWatermarks', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DescribeLiveStreamWatermarksResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DescribeLiveStreamWatermarksRequest $request + * + * @return DescribeLiveStreamWatermarksResponse + */ + public function describeLiveStreamWatermarks($request) + { + $runtime = new RuntimeOptions([]); + + return $this->describeLiveStreamWatermarksWithOptions($request, $runtime); + } + + /** + * @param DescribeLiveStreamsBlockListRequest $request + * @param RuntimeOptions $runtime + * + * @return DescribeLiveStreamsBlockListResponse + */ + public function describeLiveStreamsBlockListWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->pageNum)) { + $query['PageNum'] = $request->pageNum; + } + if (!Utils::isUnset($request->pageSize)) { + $query['PageSize'] = $request->pageSize; + } + if (!Utils::isUnset($request->securityToken)) { + $query['SecurityToken'] = $request->securityToken; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DescribeLiveStreamsBlockList', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DescribeLiveStreamsBlockListResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DescribeLiveStreamsBlockListRequest $request + * + * @return DescribeLiveStreamsBlockListResponse + */ + public function describeLiveStreamsBlockList($request) + { + $runtime = new RuntimeOptions([]); + + return $this->describeLiveStreamsBlockListWithOptions($request, $runtime); + } + + /** + * @param DescribeLiveStreamsControlHistoryRequest $request + * @param RuntimeOptions $runtime + * + * @return DescribeLiveStreamsControlHistoryResponse + */ + public function describeLiveStreamsControlHistoryWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->appName)) { + $query['AppName'] = $request->appName; + } + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->endTime)) { + $query['EndTime'] = $request->endTime; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->startTime)) { + $query['StartTime'] = $request->startTime; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DescribeLiveStreamsControlHistory', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DescribeLiveStreamsControlHistoryResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DescribeLiveStreamsControlHistoryRequest $request + * + * @return DescribeLiveStreamsControlHistoryResponse + */ + public function describeLiveStreamsControlHistory($request) + { + $runtime = new RuntimeOptions([]); + + return $this->describeLiveStreamsControlHistoryWithOptions($request, $runtime); + } + + /** + * @param DescribeLiveStreamsNotifyRecordsRequest $request + * @param RuntimeOptions $runtime + * + * @return DescribeLiveStreamsNotifyRecordsResponse + */ + public function describeLiveStreamsNotifyRecordsWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->appName)) { + $query['AppName'] = $request->appName; + } + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->endTime)) { + $query['EndTime'] = $request->endTime; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->pageNumber)) { + $query['PageNumber'] = $request->pageNumber; + } + if (!Utils::isUnset($request->pageSize)) { + $query['PageSize'] = $request->pageSize; + } + if (!Utils::isUnset($request->startTime)) { + $query['StartTime'] = $request->startTime; + } + if (!Utils::isUnset($request->status)) { + $query['Status'] = $request->status; + } + if (!Utils::isUnset($request->streamName)) { + $query['StreamName'] = $request->streamName; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DescribeLiveStreamsNotifyRecords', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DescribeLiveStreamsNotifyRecordsResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DescribeLiveStreamsNotifyRecordsRequest $request + * + * @return DescribeLiveStreamsNotifyRecordsResponse + */ + public function describeLiveStreamsNotifyRecords($request) + { + $runtime = new RuntimeOptions([]); + + return $this->describeLiveStreamsNotifyRecordsWithOptions($request, $runtime); + } + + /** + * @param DescribeLiveStreamsNotifyUrlConfigRequest $request + * @param RuntimeOptions $runtime + * + * @return DescribeLiveStreamsNotifyUrlConfigResponse + */ + public function describeLiveStreamsNotifyUrlConfigWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DescribeLiveStreamsNotifyUrlConfig', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DescribeLiveStreamsNotifyUrlConfigResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DescribeLiveStreamsNotifyUrlConfigRequest $request + * + * @return DescribeLiveStreamsNotifyUrlConfigResponse + */ + public function describeLiveStreamsNotifyUrlConfig($request) + { + $runtime = new RuntimeOptions([]); + + return $this->describeLiveStreamsNotifyUrlConfigWithOptions($request, $runtime); + } + + /** + * @param DescribeLiveStreamsOnlineListRequest $request + * @param RuntimeOptions $runtime + * + * @return DescribeLiveStreamsOnlineListResponse + */ + public function describeLiveStreamsOnlineListWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->appName)) { + $query['AppName'] = $request->appName; + } + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->onlyStream)) { + $query['OnlyStream'] = $request->onlyStream; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->pageNum)) { + $query['PageNum'] = $request->pageNum; + } + if (!Utils::isUnset($request->pageSize)) { + $query['PageSize'] = $request->pageSize; + } + if (!Utils::isUnset($request->queryType)) { + $query['QueryType'] = $request->queryType; + } + if (!Utils::isUnset($request->streamName)) { + $query['StreamName'] = $request->streamName; + } + if (!Utils::isUnset($request->streamType)) { + $query['StreamType'] = $request->streamType; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DescribeLiveStreamsOnlineList', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DescribeLiveStreamsOnlineListResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DescribeLiveStreamsOnlineListRequest $request + * + * @return DescribeLiveStreamsOnlineListResponse + */ + public function describeLiveStreamsOnlineList($request) + { + $runtime = new RuntimeOptions([]); + + return $this->describeLiveStreamsOnlineListWithOptions($request, $runtime); + } + + /** + * @param DescribeLiveStreamsPublishListRequest $request + * @param RuntimeOptions $runtime + * + * @return DescribeLiveStreamsPublishListResponse + */ + public function describeLiveStreamsPublishListWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->appName)) { + $query['AppName'] = $request->appName; + } + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->endTime)) { + $query['EndTime'] = $request->endTime; + } + if (!Utils::isUnset($request->orderBy)) { + $query['OrderBy'] = $request->orderBy; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->pageNumber)) { + $query['PageNumber'] = $request->pageNumber; + } + if (!Utils::isUnset($request->pageSize)) { + $query['PageSize'] = $request->pageSize; + } + if (!Utils::isUnset($request->queryType)) { + $query['QueryType'] = $request->queryType; + } + if (!Utils::isUnset($request->startTime)) { + $query['StartTime'] = $request->startTime; + } + if (!Utils::isUnset($request->streamName)) { + $query['StreamName'] = $request->streamName; + } + if (!Utils::isUnset($request->streamType)) { + $query['StreamType'] = $request->streamType; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DescribeLiveStreamsPublishList', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DescribeLiveStreamsPublishListResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DescribeLiveStreamsPublishListRequest $request + * + * @return DescribeLiveStreamsPublishListResponse + */ + public function describeLiveStreamsPublishList($request) + { + $runtime = new RuntimeOptions([]); + + return $this->describeLiveStreamsPublishListWithOptions($request, $runtime); + } + + /** + * @param DescribeLiveTagResourcesRequest $request + * @param RuntimeOptions $runtime + * + * @return DescribeLiveTagResourcesResponse + */ + public function describeLiveTagResourcesWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->resourceId)) { + $query['ResourceId'] = $request->resourceId; + } + if (!Utils::isUnset($request->resourceType)) { + $query['ResourceType'] = $request->resourceType; + } + if (!Utils::isUnset($request->tag)) { + $query['Tag'] = $request->tag; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DescribeLiveTagResources', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DescribeLiveTagResourcesResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DescribeLiveTagResourcesRequest $request + * + * @return DescribeLiveTagResourcesResponse + */ + public function describeLiveTagResources($request) + { + $runtime = new RuntimeOptions([]); + + return $this->describeLiveTagResourcesWithOptions($request, $runtime); + } + + /** + * @param DescribeLiveTopDomainsByFlowRequest $request + * @param RuntimeOptions $runtime + * + * @return DescribeLiveTopDomainsByFlowResponse + */ + public function describeLiveTopDomainsByFlowWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->endTime)) { + $query['EndTime'] = $request->endTime; + } + if (!Utils::isUnset($request->limit)) { + $query['Limit'] = $request->limit; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->startTime)) { + $query['StartTime'] = $request->startTime; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DescribeLiveTopDomainsByFlow', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DescribeLiveTopDomainsByFlowResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DescribeLiveTopDomainsByFlowRequest $request + * + * @return DescribeLiveTopDomainsByFlowResponse + */ + public function describeLiveTopDomainsByFlow($request) + { + $runtime = new RuntimeOptions([]); + + return $this->describeLiveTopDomainsByFlowWithOptions($request, $runtime); + } + + /** + * @param DescribeLiveUserBillPredictionRequest $request + * @param RuntimeOptions $runtime + * + * @return DescribeLiveUserBillPredictionResponse + */ + public function describeLiveUserBillPredictionWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->area)) { + $query['Area'] = $request->area; + } + if (!Utils::isUnset($request->dimension)) { + $query['Dimension'] = $request->dimension; + } + if (!Utils::isUnset($request->endTime)) { + $query['EndTime'] = $request->endTime; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->startTime)) { + $query['StartTime'] = $request->startTime; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DescribeLiveUserBillPrediction', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DescribeLiveUserBillPredictionResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DescribeLiveUserBillPredictionRequest $request + * + * @return DescribeLiveUserBillPredictionResponse + */ + public function describeLiveUserBillPrediction($request) + { + $runtime = new RuntimeOptions([]); + + return $this->describeLiveUserBillPredictionWithOptions($request, $runtime); + } + + /** + * @param DescribeLiveUserDomainsRequest $request + * @param RuntimeOptions $runtime + * + * @return DescribeLiveUserDomainsResponse + */ + public function describeLiveUserDomainsWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->domainSearchType)) { + $query['DomainSearchType'] = $request->domainSearchType; + } + if (!Utils::isUnset($request->domainStatus)) { + $query['DomainStatus'] = $request->domainStatus; + } + if (!Utils::isUnset($request->liveDomainType)) { + $query['LiveDomainType'] = $request->liveDomainType; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->pageNumber)) { + $query['PageNumber'] = $request->pageNumber; + } + if (!Utils::isUnset($request->pageSize)) { + $query['PageSize'] = $request->pageSize; + } + if (!Utils::isUnset($request->regionName)) { + $query['RegionName'] = $request->regionName; + } + if (!Utils::isUnset($request->securityToken)) { + $query['SecurityToken'] = $request->securityToken; + } + if (!Utils::isUnset($request->tag)) { + $query['Tag'] = $request->tag; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DescribeLiveUserDomains', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DescribeLiveUserDomainsResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DescribeLiveUserDomainsRequest $request + * + * @return DescribeLiveUserDomainsResponse + */ + public function describeLiveUserDomains($request) + { + $runtime = new RuntimeOptions([]); + + return $this->describeLiveUserDomainsWithOptions($request, $runtime); + } + + /** + * @param DescribeLiveUserTagsRequest $request + * @param RuntimeOptions $runtime + * + * @return DescribeLiveUserTagsResponse + */ + public function describeLiveUserTagsWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DescribeLiveUserTags', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DescribeLiveUserTagsResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DescribeLiveUserTagsRequest $request + * + * @return DescribeLiveUserTagsResponse + */ + public function describeLiveUserTags($request) + { + $runtime = new RuntimeOptions([]); + + return $this->describeLiveUserTagsWithOptions($request, $runtime); + } + + /** + * @param DescribeMeterLiveRtcDurationRequest $request + * @param RuntimeOptions $runtime + * + * @return DescribeMeterLiveRtcDurationResponse + */ + public function describeMeterLiveRtcDurationWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->endTime)) { + $query['EndTime'] = $request->endTime; + } + if (!Utils::isUnset($request->interval)) { + $query['Interval'] = $request->interval; + } + if (!Utils::isUnset($request->serviceArea)) { + $query['ServiceArea'] = $request->serviceArea; + } + if (!Utils::isUnset($request->startTime)) { + $query['StartTime'] = $request->startTime; + } + if (!Utils::isUnset($request->appId)) { + $query['appId'] = $request->appId; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DescribeMeterLiveRtcDuration', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DescribeMeterLiveRtcDurationResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DescribeMeterLiveRtcDurationRequest $request + * + * @return DescribeMeterLiveRtcDurationResponse + */ + public function describeMeterLiveRtcDuration($request) + { + $runtime = new RuntimeOptions([]); + + return $this->describeMeterLiveRtcDurationWithOptions($request, $runtime); + } + + /** + * @param DescribeMixStreamListRequest $request + * @param RuntimeOptions $runtime + * + * @return DescribeMixStreamListResponse + */ + public function describeMixStreamListWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->appName)) { + $query['AppName'] = $request->appName; + } + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->endTime)) { + $query['EndTime'] = $request->endTime; + } + if (!Utils::isUnset($request->mixStreamId)) { + $query['MixStreamId'] = $request->mixStreamId; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->pageNo)) { + $query['PageNo'] = $request->pageNo; + } + if (!Utils::isUnset($request->pageSize)) { + $query['PageSize'] = $request->pageSize; + } + if (!Utils::isUnset($request->startTime)) { + $query['StartTime'] = $request->startTime; + } + if (!Utils::isUnset($request->streamName)) { + $query['StreamName'] = $request->streamName; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DescribeMixStreamList', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DescribeMixStreamListResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DescribeMixStreamListRequest $request + * + * @return DescribeMixStreamListResponse + */ + public function describeMixStreamList($request) + { + $runtime = new RuntimeOptions([]); + + return $this->describeMixStreamListWithOptions($request, $runtime); + } + + /** + * @param DescribeRTSNativeSDKFirstFrameCostRequest $tmpReq + * @param RuntimeOptions $runtime + * + * @return DescribeRTSNativeSDKFirstFrameCostResponse + */ + public function describeRTSNativeSDKFirstFrameCostWithOptions($tmpReq, $runtime) + { + Utils::validateModel($tmpReq); + $request = new DescribeRTSNativeSDKFirstFrameCostShrinkRequest([]); + OpenApiUtilClient::convert($tmpReq, $request); + if (!Utils::isUnset($tmpReq->domainNameList)) { + $request->domainNameListShrink = OpenApiUtilClient::arrayToStringWithSpecifiedStyle($tmpReq->domainNameList, 'DomainNameList', 'json'); + } + $query = []; + if (!Utils::isUnset($request->dataInterval)) { + $query['DataInterval'] = $request->dataInterval; + } + if (!Utils::isUnset($request->domainNameListShrink)) { + $query['DomainNameList'] = $request->domainNameListShrink; + } + if (!Utils::isUnset($request->endTime)) { + $query['EndTime'] = $request->endTime; + } + if (!Utils::isUnset($request->startTime)) { + $query['StartTime'] = $request->startTime; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DescribeRTSNativeSDKFirstFrameCost', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DescribeRTSNativeSDKFirstFrameCostResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DescribeRTSNativeSDKFirstFrameCostRequest $request + * + * @return DescribeRTSNativeSDKFirstFrameCostResponse + */ + public function describeRTSNativeSDKFirstFrameCost($request) + { + $runtime = new RuntimeOptions([]); + + return $this->describeRTSNativeSDKFirstFrameCostWithOptions($request, $runtime); + } + + /** + * @param DescribeRTSNativeSDKFirstFrameDelayRequest $tmpReq + * @param RuntimeOptions $runtime + * + * @return DescribeRTSNativeSDKFirstFrameDelayResponse + */ + public function describeRTSNativeSDKFirstFrameDelayWithOptions($tmpReq, $runtime) + { + Utils::validateModel($tmpReq); + $request = new DescribeRTSNativeSDKFirstFrameDelayShrinkRequest([]); + OpenApiUtilClient::convert($tmpReq, $request); + if (!Utils::isUnset($tmpReq->domainNameList)) { + $request->domainNameListShrink = OpenApiUtilClient::arrayToStringWithSpecifiedStyle($tmpReq->domainNameList, 'DomainNameList', 'json'); + } + $query = []; + if (!Utils::isUnset($request->dataInterval)) { + $query['DataInterval'] = $request->dataInterval; + } + if (!Utils::isUnset($request->domainNameListShrink)) { + $query['DomainNameList'] = $request->domainNameListShrink; + } + if (!Utils::isUnset($request->endTime)) { + $query['EndTime'] = $request->endTime; + } + if (!Utils::isUnset($request->startTime)) { + $query['StartTime'] = $request->startTime; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DescribeRTSNativeSDKFirstFrameDelay', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DescribeRTSNativeSDKFirstFrameDelayResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DescribeRTSNativeSDKFirstFrameDelayRequest $request + * + * @return DescribeRTSNativeSDKFirstFrameDelayResponse + */ + public function describeRTSNativeSDKFirstFrameDelay($request) + { + $runtime = new RuntimeOptions([]); + + return $this->describeRTSNativeSDKFirstFrameDelayWithOptions($request, $runtime); + } + + /** + * @param DescribeRTSNativeSDKPlayFailStatusRequest $tmpReq + * @param RuntimeOptions $runtime + * + * @return DescribeRTSNativeSDKPlayFailStatusResponse + */ + public function describeRTSNativeSDKPlayFailStatusWithOptions($tmpReq, $runtime) + { + Utils::validateModel($tmpReq); + $request = new DescribeRTSNativeSDKPlayFailStatusShrinkRequest([]); + OpenApiUtilClient::convert($tmpReq, $request); + if (!Utils::isUnset($tmpReq->domainNameList)) { + $request->domainNameListShrink = OpenApiUtilClient::arrayToStringWithSpecifiedStyle($tmpReq->domainNameList, 'DomainNameList', 'json'); + } + $query = []; + if (!Utils::isUnset($request->dataInterval)) { + $query['DataInterval'] = $request->dataInterval; + } + if (!Utils::isUnset($request->domainNameListShrink)) { + $query['DomainNameList'] = $request->domainNameListShrink; + } + if (!Utils::isUnset($request->endTime)) { + $query['EndTime'] = $request->endTime; + } + if (!Utils::isUnset($request->startTime)) { + $query['StartTime'] = $request->startTime; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DescribeRTSNativeSDKPlayFailStatus', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DescribeRTSNativeSDKPlayFailStatusResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DescribeRTSNativeSDKPlayFailStatusRequest $request + * + * @return DescribeRTSNativeSDKPlayFailStatusResponse + */ + public function describeRTSNativeSDKPlayFailStatus($request) + { + $runtime = new RuntimeOptions([]); + + return $this->describeRTSNativeSDKPlayFailStatusWithOptions($request, $runtime); + } + + /** + * @param DescribeRTSNativeSDKPlayTimeRequest $tmpReq + * @param RuntimeOptions $runtime + * + * @return DescribeRTSNativeSDKPlayTimeResponse + */ + public function describeRTSNativeSDKPlayTimeWithOptions($tmpReq, $runtime) + { + Utils::validateModel($tmpReq); + $request = new DescribeRTSNativeSDKPlayTimeShrinkRequest([]); + OpenApiUtilClient::convert($tmpReq, $request); + if (!Utils::isUnset($tmpReq->domainNameList)) { + $request->domainNameListShrink = OpenApiUtilClient::arrayToStringWithSpecifiedStyle($tmpReq->domainNameList, 'DomainNameList', 'json'); + } + $query = []; + if (!Utils::isUnset($request->dataInterval)) { + $query['DataInterval'] = $request->dataInterval; + } + if (!Utils::isUnset($request->domainNameListShrink)) { + $query['DomainNameList'] = $request->domainNameListShrink; + } + if (!Utils::isUnset($request->endTime)) { + $query['EndTime'] = $request->endTime; + } + if (!Utils::isUnset($request->startTime)) { + $query['StartTime'] = $request->startTime; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DescribeRTSNativeSDKPlayTime', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DescribeRTSNativeSDKPlayTimeResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DescribeRTSNativeSDKPlayTimeRequest $request + * + * @return DescribeRTSNativeSDKPlayTimeResponse + */ + public function describeRTSNativeSDKPlayTime($request) + { + $runtime = new RuntimeOptions([]); + + return $this->describeRTSNativeSDKPlayTimeWithOptions($request, $runtime); + } + + /** + * @param DescribeRTSNativeSDKVvDataRequest $tmpReq + * @param RuntimeOptions $runtime + * + * @return DescribeRTSNativeSDKVvDataResponse + */ + public function describeRTSNativeSDKVvDataWithOptions($tmpReq, $runtime) + { + Utils::validateModel($tmpReq); + $request = new DescribeRTSNativeSDKVvDataShrinkRequest([]); + OpenApiUtilClient::convert($tmpReq, $request); + if (!Utils::isUnset($tmpReq->domainNameList)) { + $request->domainNameListShrink = OpenApiUtilClient::arrayToStringWithSpecifiedStyle($tmpReq->domainNameList, 'DomainNameList', 'json'); + } + $query = []; + if (!Utils::isUnset($request->dataInterval)) { + $query['DataInterval'] = $request->dataInterval; + } + if (!Utils::isUnset($request->domainNameListShrink)) { + $query['DomainNameList'] = $request->domainNameListShrink; + } + if (!Utils::isUnset($request->endTime)) { + $query['EndTime'] = $request->endTime; + } + if (!Utils::isUnset($request->startTime)) { + $query['StartTime'] = $request->startTime; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DescribeRTSNativeSDKVvData', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DescribeRTSNativeSDKVvDataResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DescribeRTSNativeSDKVvDataRequest $request + * + * @return DescribeRTSNativeSDKVvDataResponse + */ + public function describeRTSNativeSDKVvData($request) + { + $runtime = new RuntimeOptions([]); + + return $this->describeRTSNativeSDKVvDataWithOptions($request, $runtime); + } + + /** + * @param DescribeRoomKickoutUserListRequest $request + * @param RuntimeOptions $runtime + * + * @return DescribeRoomKickoutUserListResponse + */ + public function describeRoomKickoutUserListWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->appId)) { + $query['AppId'] = $request->appId; + } + if (!Utils::isUnset($request->order)) { + $query['Order'] = $request->order; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->pageNum)) { + $query['PageNum'] = $request->pageNum; + } + if (!Utils::isUnset($request->pageSize)) { + $query['PageSize'] = $request->pageSize; + } + if (!Utils::isUnset($request->roomId)) { + $query['RoomId'] = $request->roomId; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DescribeRoomKickoutUserList', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DescribeRoomKickoutUserListResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DescribeRoomKickoutUserListRequest $request + * + * @return DescribeRoomKickoutUserListResponse + */ + public function describeRoomKickoutUserList($request) + { + $runtime = new RuntimeOptions([]); + + return $this->describeRoomKickoutUserListWithOptions($request, $runtime); + } + + /** + * @param DescribeRoomListRequest $request + * @param RuntimeOptions $runtime + * + * @return DescribeRoomListResponse + */ + public function describeRoomListWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->anchorId)) { + $query['AnchorId'] = $request->anchorId; + } + if (!Utils::isUnset($request->appId)) { + $query['AppId'] = $request->appId; + } + if (!Utils::isUnset($request->endTime)) { + $query['EndTime'] = $request->endTime; + } + if (!Utils::isUnset($request->order)) { + $query['Order'] = $request->order; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->pageNum)) { + $query['PageNum'] = $request->pageNum; + } + if (!Utils::isUnset($request->pageSize)) { + $query['PageSize'] = $request->pageSize; + } + if (!Utils::isUnset($request->roomId)) { + $query['RoomId'] = $request->roomId; + } + if (!Utils::isUnset($request->roomStatus)) { + $query['RoomStatus'] = $request->roomStatus; + } + if (!Utils::isUnset($request->startTime)) { + $query['StartTime'] = $request->startTime; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DescribeRoomList', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DescribeRoomListResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DescribeRoomListRequest $request + * + * @return DescribeRoomListResponse + */ + public function describeRoomList($request) + { + $runtime = new RuntimeOptions([]); + + return $this->describeRoomListWithOptions($request, $runtime); + } + + /** + * @param DescribeRoomStatusRequest $request + * @param RuntimeOptions $runtime + * + * @return DescribeRoomStatusResponse + */ + public function describeRoomStatusWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->appId)) { + $query['AppId'] = $request->appId; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->roomId)) { + $query['RoomId'] = $request->roomId; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DescribeRoomStatus', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DescribeRoomStatusResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DescribeRoomStatusRequest $request + * + * @return DescribeRoomStatusResponse + */ + public function describeRoomStatus($request) + { + $runtime = new RuntimeOptions([]); + + return $this->describeRoomStatusWithOptions($request, $runtime); + } + + /** + * @param DescribeShowListRequest $request + * @param RuntimeOptions $runtime + * + * @return DescribeShowListResponse + */ + public function describeShowListWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->casterId)) { + $query['CasterId'] = $request->casterId; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DescribeShowList', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DescribeShowListResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DescribeShowListRequest $request + * + * @return DescribeShowListResponse + */ + public function describeShowList($request) + { + $runtime = new RuntimeOptions([]); + + return $this->describeShowListWithOptions($request, $runtime); + } + + /** + * @param DescribeStudioLayoutsRequest $request + * @param RuntimeOptions $runtime + * + * @return DescribeStudioLayoutsResponse + */ + public function describeStudioLayoutsWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->casterId)) { + $query['CasterId'] = $request->casterId; + } + if (!Utils::isUnset($request->layoutId)) { + $query['LayoutId'] = $request->layoutId; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DescribeStudioLayouts', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DescribeStudioLayoutsResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DescribeStudioLayoutsRequest $request + * + * @return DescribeStudioLayoutsResponse + */ + public function describeStudioLayouts($request) + { + $runtime = new RuntimeOptions([]); + + return $this->describeStudioLayoutsWithOptions($request, $runtime); + } + + /** + * @param DescribeToutiaoLivePlayRequest $request + * @param RuntimeOptions $runtime + * + * @return DescribeToutiaoLivePlayResponse + */ + public function describeToutiaoLivePlayWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->app)) { + $query['App'] = $request->app; + } + if (!Utils::isUnset($request->domain)) { + $query['Domain'] = $request->domain; + } + if (!Utils::isUnset($request->endTime)) { + $query['EndTime'] = $request->endTime; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->startTime)) { + $query['StartTime'] = $request->startTime; + } + if (!Utils::isUnset($request->stream)) { + $query['Stream'] = $request->stream; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DescribeToutiaoLivePlay', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DescribeToutiaoLivePlayResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DescribeToutiaoLivePlayRequest $request + * + * @return DescribeToutiaoLivePlayResponse + */ + public function describeToutiaoLivePlay($request) + { + $runtime = new RuntimeOptions([]); + + return $this->describeToutiaoLivePlayWithOptions($request, $runtime); + } + + /** + * @param DescribeToutiaoLivePublishRequest $request + * @param RuntimeOptions $runtime + * + * @return DescribeToutiaoLivePublishResponse + */ + public function describeToutiaoLivePublishWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->app)) { + $query['App'] = $request->app; + } + if (!Utils::isUnset($request->domain)) { + $query['Domain'] = $request->domain; + } + if (!Utils::isUnset($request->endTime)) { + $query['EndTime'] = $request->endTime; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->startTime)) { + $query['StartTime'] = $request->startTime; + } + if (!Utils::isUnset($request->stream)) { + $query['Stream'] = $request->stream; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DescribeToutiaoLivePublish', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DescribeToutiaoLivePublishResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DescribeToutiaoLivePublishRequest $request + * + * @return DescribeToutiaoLivePublishResponse + */ + public function describeToutiaoLivePublish($request) + { + $runtime = new RuntimeOptions([]); + + return $this->describeToutiaoLivePublishWithOptions($request, $runtime); + } + + /** + * @param DescribeUpBpsPeakDataRequest $request + * @param RuntimeOptions $runtime + * + * @return DescribeUpBpsPeakDataResponse + */ + public function describeUpBpsPeakDataWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->domainSwitch)) { + $query['DomainSwitch'] = $request->domainSwitch; + } + if (!Utils::isUnset($request->endTime)) { + $query['EndTime'] = $request->endTime; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->startTime)) { + $query['StartTime'] = $request->startTime; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DescribeUpBpsPeakData', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DescribeUpBpsPeakDataResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DescribeUpBpsPeakDataRequest $request + * + * @return DescribeUpBpsPeakDataResponse + */ + public function describeUpBpsPeakData($request) + { + $runtime = new RuntimeOptions([]); + + return $this->describeUpBpsPeakDataWithOptions($request, $runtime); + } + + /** + * @param DescribeUpBpsPeakOfLineRequest $request + * @param RuntimeOptions $runtime + * + * @return DescribeUpBpsPeakOfLineResponse + */ + public function describeUpBpsPeakOfLineWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->domainSwitch)) { + $query['DomainSwitch'] = $request->domainSwitch; + } + if (!Utils::isUnset($request->endTime)) { + $query['EndTime'] = $request->endTime; + } + if (!Utils::isUnset($request->line)) { + $query['Line'] = $request->line; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->startTime)) { + $query['StartTime'] = $request->startTime; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DescribeUpBpsPeakOfLine', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DescribeUpBpsPeakOfLineResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DescribeUpBpsPeakOfLineRequest $request + * + * @return DescribeUpBpsPeakOfLineResponse + */ + public function describeUpBpsPeakOfLine($request) + { + $runtime = new RuntimeOptions([]); + + return $this->describeUpBpsPeakOfLineWithOptions($request, $runtime); + } + + /** + * @param DescribeUpPeakPublishStreamDataRequest $request + * @param RuntimeOptions $runtime + * + * @return DescribeUpPeakPublishStreamDataResponse + */ + public function describeUpPeakPublishStreamDataWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->domainSwitch)) { + $query['DomainSwitch'] = $request->domainSwitch; + } + if (!Utils::isUnset($request->endTime)) { + $query['EndTime'] = $request->endTime; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->startTime)) { + $query['StartTime'] = $request->startTime; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DescribeUpPeakPublishStreamData', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DescribeUpPeakPublishStreamDataResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DescribeUpPeakPublishStreamDataRequest $request + * + * @return DescribeUpPeakPublishStreamDataResponse + */ + public function describeUpPeakPublishStreamData($request) + { + $runtime = new RuntimeOptions([]); + + return $this->describeUpPeakPublishStreamDataWithOptions($request, $runtime); + } + + /** + * @param DisableLiveRealtimeLogDeliveryRequest $request + * @param RuntimeOptions $runtime + * + * @return DisableLiveRealtimeLogDeliveryResponse + */ + public function disableLiveRealtimeLogDeliveryWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = OpenApiUtilClient::query(Utils::toMap($request)); + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DisableLiveRealtimeLogDelivery', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'GET', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DisableLiveRealtimeLogDeliveryResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DisableLiveRealtimeLogDeliveryRequest $request + * + * @return DisableLiveRealtimeLogDeliveryResponse + */ + public function disableLiveRealtimeLogDelivery($request) + { + $runtime = new RuntimeOptions([]); + + return $this->disableLiveRealtimeLogDeliveryWithOptions($request, $runtime); + } + + /** + * @param DynamicUpdateWaterMarkStreamRuleRequest $request + * @param RuntimeOptions $runtime + * + * @return DynamicUpdateWaterMarkStreamRuleResponse + */ + public function dynamicUpdateWaterMarkStreamRuleWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->app)) { + $query['App'] = $request->app; + } + if (!Utils::isUnset($request->domain)) { + $query['Domain'] = $request->domain; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->stream)) { + $query['Stream'] = $request->stream; + } + if (!Utils::isUnset($request->templateId)) { + $query['TemplateId'] = $request->templateId; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'DynamicUpdateWaterMarkStreamRule', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return DynamicUpdateWaterMarkStreamRuleResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param DynamicUpdateWaterMarkStreamRuleRequest $request + * + * @return DynamicUpdateWaterMarkStreamRuleResponse + */ + public function dynamicUpdateWaterMarkStreamRule($request) + { + $runtime = new RuntimeOptions([]); + + return $this->dynamicUpdateWaterMarkStreamRuleWithOptions($request, $runtime); + } + + /** + * @param EditPlaylistRequest $request + * @param RuntimeOptions $runtime + * + * @return EditPlaylistResponse + */ + public function editPlaylistWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->programConfig)) { + $query['ProgramConfig'] = $request->programConfig; + } + if (!Utils::isUnset($request->programId)) { + $query['ProgramId'] = $request->programId; + } + if (!Utils::isUnset($request->programItems)) { + $query['ProgramItems'] = $request->programItems; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'EditPlaylist', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return EditPlaylistResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param EditPlaylistRequest $request + * + * @return EditPlaylistResponse + */ + public function editPlaylist($request) + { + $runtime = new RuntimeOptions([]); + + return $this->editPlaylistWithOptions($request, $runtime); + } + + /** + * @param EditShowAndReplaceRequest $request + * @param RuntimeOptions $runtime + * + * @return EditShowAndReplaceResponse + */ + public function editShowAndReplaceWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->casterId)) { + $query['CasterId'] = $request->casterId; + } + if (!Utils::isUnset($request->endTime)) { + $query['EndTime'] = $request->endTime; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->showId)) { + $query['ShowId'] = $request->showId; + } + if (!Utils::isUnset($request->startTime)) { + $query['StartTime'] = $request->startTime; + } + if (!Utils::isUnset($request->storageInfo)) { + $query['StorageInfo'] = $request->storageInfo; + } + if (!Utils::isUnset($request->userData)) { + $query['UserData'] = $request->userData; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'EditShowAndReplace', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return EditShowAndReplaceResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param EditShowAndReplaceRequest $request + * + * @return EditShowAndReplaceResponse + */ + public function editShowAndReplace($request) + { + $runtime = new RuntimeOptions([]); + + return $this->editShowAndReplaceWithOptions($request, $runtime); + } + + /** + * @param EffectCasterUrgentRequest $request + * @param RuntimeOptions $runtime + * + * @return EffectCasterUrgentResponse + */ + public function effectCasterUrgentWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->casterId)) { + $query['CasterId'] = $request->casterId; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->sceneId)) { + $query['SceneId'] = $request->sceneId; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'EffectCasterUrgent', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return EffectCasterUrgentResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param EffectCasterUrgentRequest $request + * + * @return EffectCasterUrgentResponse + */ + public function effectCasterUrgent($request) + { + $runtime = new RuntimeOptions([]); + + return $this->effectCasterUrgentWithOptions($request, $runtime); + } + + /** + * @param EffectCasterVideoResourceRequest $request + * @param RuntimeOptions $runtime + * + * @return EffectCasterVideoResourceResponse + */ + public function effectCasterVideoResourceWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->casterId)) { + $query['CasterId'] = $request->casterId; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->resourceId)) { + $query['ResourceId'] = $request->resourceId; + } + if (!Utils::isUnset($request->sceneId)) { + $query['SceneId'] = $request->sceneId; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'EffectCasterVideoResource', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return EffectCasterVideoResourceResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param EffectCasterVideoResourceRequest $request + * + * @return EffectCasterVideoResourceResponse + */ + public function effectCasterVideoResource($request) + { + $runtime = new RuntimeOptions([]); + + return $this->effectCasterVideoResourceWithOptions($request, $runtime); + } + + /** + * @param EnableLiveRealtimeLogDeliveryRequest $request + * @param RuntimeOptions $runtime + * + * @return EnableLiveRealtimeLogDeliveryResponse + */ + public function enableLiveRealtimeLogDeliveryWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = OpenApiUtilClient::query(Utils::toMap($request)); + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'EnableLiveRealtimeLogDelivery', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'GET', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return EnableLiveRealtimeLogDeliveryResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param EnableLiveRealtimeLogDeliveryRequest $request + * + * @return EnableLiveRealtimeLogDeliveryResponse + */ + public function enableLiveRealtimeLogDelivery($request) + { + $runtime = new RuntimeOptions([]); + + return $this->enableLiveRealtimeLogDeliveryWithOptions($request, $runtime); + } + + /** + * @param ForbidLiveStreamRequest $request + * @param RuntimeOptions $runtime + * + * @return ForbidLiveStreamResponse + */ + public function forbidLiveStreamWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->appName)) { + $query['AppName'] = $request->appName; + } + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->liveStreamType)) { + $query['LiveStreamType'] = $request->liveStreamType; + } + if (!Utils::isUnset($request->oneshot)) { + $query['Oneshot'] = $request->oneshot; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->resumeTime)) { + $query['ResumeTime'] = $request->resumeTime; + } + if (!Utils::isUnset($request->streamName)) { + $query['StreamName'] = $request->streamName; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'ForbidLiveStream', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return ForbidLiveStreamResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param ForbidLiveStreamRequest $request + * + * @return ForbidLiveStreamResponse + */ + public function forbidLiveStream($request) + { + $runtime = new RuntimeOptions([]); + + return $this->forbidLiveStreamWithOptions($request, $runtime); + } + + /** + * @param ForbidPushStreamRequest $request + * @param RuntimeOptions $runtime + * + * @return ForbidPushStreamResponse + */ + public function forbidPushStreamWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->appId)) { + $query['AppId'] = $request->appId; + } + if (!Utils::isUnset($request->endTime)) { + $query['EndTime'] = $request->endTime; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->roomId)) { + $query['RoomId'] = $request->roomId; + } + if (!Utils::isUnset($request->userData)) { + $query['UserData'] = $request->userData; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'ForbidPushStream', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return ForbidPushStreamResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param ForbidPushStreamRequest $request + * + * @return ForbidPushStreamResponse + */ + public function forbidPushStream($request) + { + $runtime = new RuntimeOptions([]); + + return $this->forbidPushStreamWithOptions($request, $runtime); + } + + /** + * @param GetAllCustomTemplatesRequest $request + * @param RuntimeOptions $runtime + * + * @return GetAllCustomTemplatesResponse + */ + public function getAllCustomTemplatesWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->userId)) { + $query['UserId'] = $request->userId; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'GetAllCustomTemplates', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return GetAllCustomTemplatesResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param GetAllCustomTemplatesRequest $request + * + * @return GetAllCustomTemplatesResponse + */ + public function getAllCustomTemplates($request) + { + $runtime = new RuntimeOptions([]); + + return $this->getAllCustomTemplatesWithOptions($request, $runtime); + } + + /** + * @param GetCustomTemplateRequest $request + * @param RuntimeOptions $runtime + * + * @return GetCustomTemplateResponse + */ + public function getCustomTemplateWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->template)) { + $query['Template'] = $request->template; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'GetCustomTemplate', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return GetCustomTemplateResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param GetCustomTemplateRequest $request + * + * @return GetCustomTemplateResponse + */ + public function getCustomTemplate($request) + { + $runtime = new RuntimeOptions([]); + + return $this->getCustomTemplateWithOptions($request, $runtime); + } + + /** + * @param GetEditingJobInfoRequest $request + * @param RuntimeOptions $runtime + * + * @return GetEditingJobInfoResponse + */ + public function getEditingJobInfoWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->casterId)) { + $query['CasterId'] = $request->casterId; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->showId)) { + $query['ShowId'] = $request->showId; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'GetEditingJobInfo', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return GetEditingJobInfoResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param GetEditingJobInfoRequest $request + * + * @return GetEditingJobInfoResponse + */ + public function getEditingJobInfo($request) + { + $runtime = new RuntimeOptions([]); + + return $this->getEditingJobInfoWithOptions($request, $runtime); + } + + /** + * @param GetMessageAppRequest $request + * @param RuntimeOptions $runtime + * + * @return GetMessageAppResponse + */ + public function getMessageAppWithOptions($request, $runtime) + { + Utils::validateModel($request); + $body = []; + if (!Utils::isUnset($request->appId)) { + $body['AppId'] = $request->appId; + } + $req = new OpenApiRequest([ + 'body' => OpenApiUtilClient::parseToMap($body), + ]); + $params = new Params([ + 'action' => 'GetMessageApp', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return GetMessageAppResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param GetMessageAppRequest $request + * + * @return GetMessageAppResponse + */ + public function getMessageApp($request) + { + $runtime = new RuntimeOptions([]); + + return $this->getMessageAppWithOptions($request, $runtime); + } + + /** + * @param GetMessageGroupRequest $request + * @param RuntimeOptions $runtime + * + * @return GetMessageGroupResponse + */ + public function getMessageGroupWithOptions($request, $runtime) + { + Utils::validateModel($request); + $body = []; + if (!Utils::isUnset($request->appId)) { + $body['AppId'] = $request->appId; + } + if (!Utils::isUnset($request->groupId)) { + $body['GroupId'] = $request->groupId; + } + $req = new OpenApiRequest([ + 'body' => OpenApiUtilClient::parseToMap($body), + ]); + $params = new Params([ + 'action' => 'GetMessageGroup', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return GetMessageGroupResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param GetMessageGroupRequest $request + * + * @return GetMessageGroupResponse + */ + public function getMessageGroup($request) + { + $runtime = new RuntimeOptions([]); + + return $this->getMessageGroupWithOptions($request, $runtime); + } + + /** + * @param GetMessageTokenRequest $request + * @param RuntimeOptions $runtime + * + * @return GetMessageTokenResponse + */ + public function getMessageTokenWithOptions($request, $runtime) + { + Utils::validateModel($request); + $body = []; + if (!Utils::isUnset($request->appId)) { + $body['AppId'] = $request->appId; + } + if (!Utils::isUnset($request->deviceId)) { + $body['DeviceId'] = $request->deviceId; + } + if (!Utils::isUnset($request->deviceType)) { + $body['DeviceType'] = $request->deviceType; + } + if (!Utils::isUnset($request->userId)) { + $body['UserId'] = $request->userId; + } + $req = new OpenApiRequest([ + 'body' => OpenApiUtilClient::parseToMap($body), + ]); + $params = new Params([ + 'action' => 'GetMessageToken', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return GetMessageTokenResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param GetMessageTokenRequest $request + * + * @return GetMessageTokenResponse + */ + public function getMessageToken($request) + { + $runtime = new RuntimeOptions([]); + + return $this->getMessageTokenWithOptions($request, $runtime); + } + + /** + * @param GetMultiRateConfigRequest $request + * @param RuntimeOptions $runtime + * + * @return GetMultiRateConfigResponse + */ + public function getMultiRateConfigWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->app)) { + $query['App'] = $request->app; + } + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->groupId)) { + $query['GroupId'] = $request->groupId; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'GetMultiRateConfig', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return GetMultiRateConfigResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param GetMultiRateConfigRequest $request + * + * @return GetMultiRateConfigResponse + */ + public function getMultiRateConfig($request) + { + $runtime = new RuntimeOptions([]); + + return $this->getMultiRateConfigWithOptions($request, $runtime); + } + + /** + * @param GetMultiRateConfigListRequest $request + * @param RuntimeOptions $runtime + * + * @return GetMultiRateConfigListResponse + */ + public function getMultiRateConfigListWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'GetMultiRateConfigList', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return GetMultiRateConfigListResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param GetMultiRateConfigListRequest $request + * + * @return GetMultiRateConfigListResponse + */ + public function getMultiRateConfigList($request) + { + $runtime = new RuntimeOptions([]); + + return $this->getMultiRateConfigListWithOptions($request, $runtime); + } + + /** + * @param HotLiveRtcStreamRequest $request + * @param RuntimeOptions $runtime + * + * @return HotLiveRtcStreamResponse + */ + public function hotLiveRtcStreamWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->appName)) { + $query['AppName'] = $request->appName; + } + if (!Utils::isUnset($request->audioMsid)) { + $query['AudioMsid'] = $request->audioMsid; + } + if (!Utils::isUnset($request->connectionTimeout)) { + $query['ConnectionTimeout'] = $request->connectionTimeout; + } + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->mediaTimeout)) { + $query['MediaTimeout'] = $request->mediaTimeout; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->regionCode)) { + $query['RegionCode'] = $request->regionCode; + } + if (!Utils::isUnset($request->streamName)) { + $query['StreamName'] = $request->streamName; + } + if (!Utils::isUnset($request->videoMsid)) { + $query['VideoMsid'] = $request->videoMsid; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'HotLiveRtcStream', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return HotLiveRtcStreamResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param HotLiveRtcStreamRequest $request + * + * @return HotLiveRtcStreamResponse + */ + public function hotLiveRtcStream($request) + { + $runtime = new RuntimeOptions([]); + + return $this->hotLiveRtcStreamWithOptions($request, $runtime); + } + + /** + * @param InitializeAutoShowListTaskRequest $request + * @param RuntimeOptions $runtime + * + * @return InitializeAutoShowListTaskResponse + */ + public function initializeAutoShowListTaskWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->callBackUrl)) { + $query['CallBackUrl'] = $request->callBackUrl; + } + if (!Utils::isUnset($request->casterConfig)) { + $query['CasterConfig'] = $request->casterConfig; + } + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->endTime)) { + $query['EndTime'] = $request->endTime; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->resourceIds)) { + $query['ResourceIds'] = $request->resourceIds; + } + if (!Utils::isUnset($request->startTime)) { + $query['StartTime'] = $request->startTime; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'InitializeAutoShowListTask', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return InitializeAutoShowListTaskResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param InitializeAutoShowListTaskRequest $request + * + * @return InitializeAutoShowListTaskResponse + */ + public function initializeAutoShowListTask($request) + { + $runtime = new RuntimeOptions([]); + + return $this->initializeAutoShowListTaskWithOptions($request, $runtime); + } + + /** + * @param JoinMessageGroupRequest $request + * @param RuntimeOptions $runtime + * + * @return JoinMessageGroupResponse + */ + public function joinMessageGroupWithOptions($request, $runtime) + { + Utils::validateModel($request); + $body = []; + if (!Utils::isUnset($request->appId)) { + $body['AppId'] = $request->appId; + } + if (!Utils::isUnset($request->broadCastStatistics)) { + $body['BroadCastStatistics'] = $request->broadCastStatistics; + } + if (!Utils::isUnset($request->broadCastType)) { + $body['BroadCastType'] = $request->broadCastType; + } + if (!Utils::isUnset($request->groupId)) { + $body['GroupId'] = $request->groupId; + } + if (!Utils::isUnset($request->userId)) { + $body['UserId'] = $request->userId; + } + $req = new OpenApiRequest([ + 'body' => OpenApiUtilClient::parseToMap($body), + ]); + $params = new Params([ + 'action' => 'JoinMessageGroup', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return JoinMessageGroupResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param JoinMessageGroupRequest $request + * + * @return JoinMessageGroupResponse + */ + public function joinMessageGroup($request) + { + $runtime = new RuntimeOptions([]); + + return $this->joinMessageGroupWithOptions($request, $runtime); + } + + /** + * @param LeaveMessageGroupRequest $request + * @param RuntimeOptions $runtime + * + * @return LeaveMessageGroupResponse + */ + public function leaveMessageGroupWithOptions($request, $runtime) + { + Utils::validateModel($request); + $body = []; + if (!Utils::isUnset($request->appId)) { + $body['AppId'] = $request->appId; + } + if (!Utils::isUnset($request->broadCastStatistics)) { + $body['BroadCastStatistics'] = $request->broadCastStatistics; + } + if (!Utils::isUnset($request->broadCastType)) { + $body['BroadCastType'] = $request->broadCastType; + } + if (!Utils::isUnset($request->groupId)) { + $body['GroupId'] = $request->groupId; + } + if (!Utils::isUnset($request->userId)) { + $body['UserId'] = $request->userId; + } + $req = new OpenApiRequest([ + 'body' => OpenApiUtilClient::parseToMap($body), + ]); + $params = new Params([ + 'action' => 'LeaveMessageGroup', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return LeaveMessageGroupResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param LeaveMessageGroupRequest $request + * + * @return LeaveMessageGroupResponse + */ + public function leaveMessageGroup($request) + { + $runtime = new RuntimeOptions([]); + + return $this->leaveMessageGroupWithOptions($request, $runtime); + } + + /** + * @param ListLiveRealtimeLogDeliveryRequest $request + * @param RuntimeOptions $runtime + * + * @return ListLiveRealtimeLogDeliveryResponse + */ + public function listLiveRealtimeLogDeliveryWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = OpenApiUtilClient::query(Utils::toMap($request)); + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'ListLiveRealtimeLogDelivery', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'GET', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return ListLiveRealtimeLogDeliveryResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param ListLiveRealtimeLogDeliveryRequest $request + * + * @return ListLiveRealtimeLogDeliveryResponse + */ + public function listLiveRealtimeLogDelivery($request) + { + $runtime = new RuntimeOptions([]); + + return $this->listLiveRealtimeLogDeliveryWithOptions($request, $runtime); + } + + /** + * @param ListLiveRealtimeLogDeliveryDomainsRequest $request + * @param RuntimeOptions $runtime + * + * @return ListLiveRealtimeLogDeliveryDomainsResponse + */ + public function listLiveRealtimeLogDeliveryDomainsWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = OpenApiUtilClient::query(Utils::toMap($request)); + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'ListLiveRealtimeLogDeliveryDomains', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'GET', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return ListLiveRealtimeLogDeliveryDomainsResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param ListLiveRealtimeLogDeliveryDomainsRequest $request + * + * @return ListLiveRealtimeLogDeliveryDomainsResponse + */ + public function listLiveRealtimeLogDeliveryDomains($request) + { + $runtime = new RuntimeOptions([]); + + return $this->listLiveRealtimeLogDeliveryDomainsWithOptions($request, $runtime); + } + + /** + * @param ListLiveRealtimeLogDeliveryInfosRequest $request + * @param RuntimeOptions $runtime + * + * @return ListLiveRealtimeLogDeliveryInfosResponse + */ + public function listLiveRealtimeLogDeliveryInfosWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = OpenApiUtilClient::query(Utils::toMap($request)); + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'ListLiveRealtimeLogDeliveryInfos', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'GET', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return ListLiveRealtimeLogDeliveryInfosResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param ListLiveRealtimeLogDeliveryInfosRequest $request + * + * @return ListLiveRealtimeLogDeliveryInfosResponse + */ + public function listLiveRealtimeLogDeliveryInfos($request) + { + $runtime = new RuntimeOptions([]); + + return $this->listLiveRealtimeLogDeliveryInfosWithOptions($request, $runtime); + } + + /** + * @param ListMessageRequest $request + * @param RuntimeOptions $runtime + * + * @return ListMessageResponse + */ + public function listMessageWithOptions($request, $runtime) + { + Utils::validateModel($request); + $body = []; + if (!Utils::isUnset($request->appId)) { + $body['AppId'] = $request->appId; + } + if (!Utils::isUnset($request->groupId)) { + $body['GroupId'] = $request->groupId; + } + if (!Utils::isUnset($request->pageNum)) { + $body['PageNum'] = $request->pageNum; + } + if (!Utils::isUnset($request->pageSize)) { + $body['PageSize'] = $request->pageSize; + } + if (!Utils::isUnset($request->sortType)) { + $body['SortType'] = $request->sortType; + } + if (!Utils::isUnset($request->type)) { + $body['Type'] = $request->type; + } + $req = new OpenApiRequest([ + 'body' => OpenApiUtilClient::parseToMap($body), + ]); + $params = new Params([ + 'action' => 'ListMessage', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return ListMessageResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param ListMessageRequest $request + * + * @return ListMessageResponse + */ + public function listMessage($request) + { + $runtime = new RuntimeOptions([]); + + return $this->listMessageWithOptions($request, $runtime); + } + + /** + * @param ListMessageAppRequest $request + * @param RuntimeOptions $runtime + * + * @return ListMessageAppResponse + */ + public function listMessageAppWithOptions($request, $runtime) + { + Utils::validateModel($request); + $body = []; + if (!Utils::isUnset($request->pageNum)) { + $body['PageNum'] = $request->pageNum; + } + if (!Utils::isUnset($request->pageSize)) { + $body['PageSize'] = $request->pageSize; + } + if (!Utils::isUnset($request->sortType)) { + $body['SortType'] = $request->sortType; + } + $req = new OpenApiRequest([ + 'body' => OpenApiUtilClient::parseToMap($body), + ]); + $params = new Params([ + 'action' => 'ListMessageApp', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return ListMessageAppResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param ListMessageAppRequest $request + * + * @return ListMessageAppResponse + */ + public function listMessageApp($request) + { + $runtime = new RuntimeOptions([]); + + return $this->listMessageAppWithOptions($request, $runtime); + } + + /** + * @param ListMessageGroupRequest $request + * @param RuntimeOptions $runtime + * + * @return ListMessageGroupResponse + */ + public function listMessageGroupWithOptions($request, $runtime) + { + Utils::validateModel($request); + $body = []; + if (!Utils::isUnset($request->appId)) { + $body['AppId'] = $request->appId; + } + if (!Utils::isUnset($request->pageNum)) { + $body['PageNum'] = $request->pageNum; + } + if (!Utils::isUnset($request->pageSize)) { + $body['PageSize'] = $request->pageSize; + } + if (!Utils::isUnset($request->sortType)) { + $body['SortType'] = $request->sortType; + } + if (!Utils::isUnset($request->userId)) { + $body['UserId'] = $request->userId; + } + $req = new OpenApiRequest([ + 'body' => OpenApiUtilClient::parseToMap($body), + ]); + $params = new Params([ + 'action' => 'ListMessageGroup', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return ListMessageGroupResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param ListMessageGroupRequest $request + * + * @return ListMessageGroupResponse + */ + public function listMessageGroup($request) + { + $runtime = new RuntimeOptions([]); + + return $this->listMessageGroupWithOptions($request, $runtime); + } + + /** + * @param ListMessageGroupUserRequest $request + * @param RuntimeOptions $runtime + * + * @return ListMessageGroupUserResponse + */ + public function listMessageGroupUserWithOptions($request, $runtime) + { + Utils::validateModel($request); + $body = []; + if (!Utils::isUnset($request->appId)) { + $body['AppId'] = $request->appId; + } + if (!Utils::isUnset($request->groupId)) { + $body['GroupId'] = $request->groupId; + } + if (!Utils::isUnset($request->pageNum)) { + $body['PageNum'] = $request->pageNum; + } + if (!Utils::isUnset($request->pageSize)) { + $body['PageSize'] = $request->pageSize; + } + if (!Utils::isUnset($request->sortType)) { + $body['SortType'] = $request->sortType; + } + $req = new OpenApiRequest([ + 'body' => OpenApiUtilClient::parseToMap($body), + ]); + $params = new Params([ + 'action' => 'ListMessageGroupUser', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return ListMessageGroupUserResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param ListMessageGroupUserRequest $request + * + * @return ListMessageGroupUserResponse + */ + public function listMessageGroupUser($request) + { + $runtime = new RuntimeOptions([]); + + return $this->listMessageGroupUserWithOptions($request, $runtime); + } + + /** + * @param ListMessageGroupUserByIdRequest $tmpReq + * @param RuntimeOptions $runtime + * + * @return ListMessageGroupUserByIdResponse + */ + public function listMessageGroupUserByIdWithOptions($tmpReq, $runtime) + { + Utils::validateModel($tmpReq); + $request = new ListMessageGroupUserByIdShrinkRequest([]); + OpenApiUtilClient::convert($tmpReq, $request); + if (!Utils::isUnset($tmpReq->userIdList)) { + $request->userIdListShrink = OpenApiUtilClient::arrayToStringWithSpecifiedStyle($tmpReq->userIdList, 'UserIdList', 'simple'); + } + $body = []; + if (!Utils::isUnset($request->appId)) { + $body['AppId'] = $request->appId; + } + if (!Utils::isUnset($request->groupId)) { + $body['GroupId'] = $request->groupId; + } + if (!Utils::isUnset($request->userIdListShrink)) { + $body['UserIdList'] = $request->userIdListShrink; + } + $req = new OpenApiRequest([ + 'body' => OpenApiUtilClient::parseToMap($body), + ]); + $params = new Params([ + 'action' => 'ListMessageGroupUserById', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return ListMessageGroupUserByIdResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param ListMessageGroupUserByIdRequest $request + * + * @return ListMessageGroupUserByIdResponse + */ + public function listMessageGroupUserById($request) + { + $runtime = new RuntimeOptions([]); + + return $this->listMessageGroupUserByIdWithOptions($request, $runtime); + } + + /** + * @param ListPlaylistRequest $request + * @param RuntimeOptions $runtime + * + * @return ListPlaylistResponse + */ + public function listPlaylistWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->page)) { + $query['Page'] = $request->page; + } + if (!Utils::isUnset($request->pageSize)) { + $query['PageSize'] = $request->pageSize; + } + if (!Utils::isUnset($request->programId)) { + $query['ProgramId'] = $request->programId; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'ListPlaylist', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return ListPlaylistResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param ListPlaylistRequest $request + * + * @return ListPlaylistResponse + */ + public function listPlaylist($request) + { + $runtime = new RuntimeOptions([]); + + return $this->listPlaylistWithOptions($request, $runtime); + } + + /** + * @param ListPlaylistItemsRequest $request + * @param RuntimeOptions $runtime + * + * @return ListPlaylistItemsResponse + */ + public function listPlaylistItemsWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->programId)) { + $query['ProgramId'] = $request->programId; + } + if (!Utils::isUnset($request->programItemIds)) { + $query['ProgramItemIds'] = $request->programItemIds; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'ListPlaylistItems', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return ListPlaylistItemsResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param ListPlaylistItemsRequest $request + * + * @return ListPlaylistItemsResponse + */ + public function listPlaylistItems($request) + { + $runtime = new RuntimeOptions([]); + + return $this->listPlaylistItemsWithOptions($request, $runtime); + } + + /** + * @param ModifyCasterComponentRequest $request + * @param RuntimeOptions $runtime + * + * @return ModifyCasterComponentResponse + */ + public function modifyCasterComponentWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->captionLayerContent)) { + $query['CaptionLayerContent'] = $request->captionLayerContent; + } + if (!Utils::isUnset($request->casterId)) { + $query['CasterId'] = $request->casterId; + } + if (!Utils::isUnset($request->componentId)) { + $query['ComponentId'] = $request->componentId; + } + if (!Utils::isUnset($request->componentLayer)) { + $query['ComponentLayer'] = $request->componentLayer; + } + if (!Utils::isUnset($request->componentName)) { + $query['ComponentName'] = $request->componentName; + } + if (!Utils::isUnset($request->componentType)) { + $query['ComponentType'] = $request->componentType; + } + if (!Utils::isUnset($request->effect)) { + $query['Effect'] = $request->effect; + } + if (!Utils::isUnset($request->imageLayerContent)) { + $query['ImageLayerContent'] = $request->imageLayerContent; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->textLayerContent)) { + $query['TextLayerContent'] = $request->textLayerContent; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'ModifyCasterComponent', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return ModifyCasterComponentResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param ModifyCasterComponentRequest $request + * + * @return ModifyCasterComponentResponse + */ + public function modifyCasterComponent($request) + { + $runtime = new RuntimeOptions([]); + + return $this->modifyCasterComponentWithOptions($request, $runtime); + } + + /** + * @param ModifyCasterEpisodeRequest $request + * @param RuntimeOptions $runtime + * + * @return ModifyCasterEpisodeResponse + */ + public function modifyCasterEpisodeWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->casterId)) { + $query['CasterId'] = $request->casterId; + } + if (!Utils::isUnset($request->componentId)) { + $query['ComponentId'] = $request->componentId; + } + if (!Utils::isUnset($request->endTime)) { + $query['EndTime'] = $request->endTime; + } + if (!Utils::isUnset($request->episodeId)) { + $query['EpisodeId'] = $request->episodeId; + } + if (!Utils::isUnset($request->episodeName)) { + $query['EpisodeName'] = $request->episodeName; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->resourceId)) { + $query['ResourceId'] = $request->resourceId; + } + if (!Utils::isUnset($request->startTime)) { + $query['StartTime'] = $request->startTime; + } + if (!Utils::isUnset($request->switchType)) { + $query['SwitchType'] = $request->switchType; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'ModifyCasterEpisode', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return ModifyCasterEpisodeResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param ModifyCasterEpisodeRequest $request + * + * @return ModifyCasterEpisodeResponse + */ + public function modifyCasterEpisode($request) + { + $runtime = new RuntimeOptions([]); + + return $this->modifyCasterEpisodeWithOptions($request, $runtime); + } + + /** + * @param ModifyCasterLayoutRequest $request + * @param RuntimeOptions $runtime + * + * @return ModifyCasterLayoutResponse + */ + public function modifyCasterLayoutWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->audioLayer)) { + $query['AudioLayer'] = $request->audioLayer; + } + if (!Utils::isUnset($request->blendList)) { + $query['BlendList'] = $request->blendList; + } + if (!Utils::isUnset($request->casterId)) { + $query['CasterId'] = $request->casterId; + } + if (!Utils::isUnset($request->layoutId)) { + $query['LayoutId'] = $request->layoutId; + } + if (!Utils::isUnset($request->mixList)) { + $query['MixList'] = $request->mixList; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->videoLayer)) { + $query['VideoLayer'] = $request->videoLayer; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'ModifyCasterLayout', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return ModifyCasterLayoutResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param ModifyCasterLayoutRequest $request + * + * @return ModifyCasterLayoutResponse + */ + public function modifyCasterLayout($request) + { + $runtime = new RuntimeOptions([]); + + return $this->modifyCasterLayoutWithOptions($request, $runtime); + } + + /** + * @param ModifyCasterProgramRequest $request + * @param RuntimeOptions $runtime + * + * @return ModifyCasterProgramResponse + */ + public function modifyCasterProgramWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->casterId)) { + $query['CasterId'] = $request->casterId; + } + if (!Utils::isUnset($request->episode)) { + $query['Episode'] = $request->episode; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'ModifyCasterProgram', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return ModifyCasterProgramResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param ModifyCasterProgramRequest $request + * + * @return ModifyCasterProgramResponse + */ + public function modifyCasterProgram($request) + { + $runtime = new RuntimeOptions([]); + + return $this->modifyCasterProgramWithOptions($request, $runtime); + } + + /** + * @param ModifyCasterVideoResourceRequest $request + * @param RuntimeOptions $runtime + * + * @return ModifyCasterVideoResourceResponse + */ + public function modifyCasterVideoResourceWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->beginOffset)) { + $query['BeginOffset'] = $request->beginOffset; + } + if (!Utils::isUnset($request->casterId)) { + $query['CasterId'] = $request->casterId; + } + if (!Utils::isUnset($request->endOffset)) { + $query['EndOffset'] = $request->endOffset; + } + if (!Utils::isUnset($request->liveStreamUrl)) { + $query['LiveStreamUrl'] = $request->liveStreamUrl; + } + if (!Utils::isUnset($request->materialId)) { + $query['MaterialId'] = $request->materialId; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->ptsCallbackInterval)) { + $query['PtsCallbackInterval'] = $request->ptsCallbackInterval; + } + if (!Utils::isUnset($request->repeatNum)) { + $query['RepeatNum'] = $request->repeatNum; + } + if (!Utils::isUnset($request->resourceId)) { + $query['ResourceId'] = $request->resourceId; + } + if (!Utils::isUnset($request->resourceName)) { + $query['ResourceName'] = $request->resourceName; + } + if (!Utils::isUnset($request->vodUrl)) { + $query['VodUrl'] = $request->vodUrl; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'ModifyCasterVideoResource', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return ModifyCasterVideoResourceResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param ModifyCasterVideoResourceRequest $request + * + * @return ModifyCasterVideoResourceResponse + */ + public function modifyCasterVideoResource($request) + { + $runtime = new RuntimeOptions([]); + + return $this->modifyCasterVideoResourceWithOptions($request, $runtime); + } + + /** + * @param ModifyLiveDomainSchdmByPropertyRequest $request + * @param RuntimeOptions $runtime + * + * @return ModifyLiveDomainSchdmByPropertyResponse + */ + public function modifyLiveDomainSchdmByPropertyWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->property)) { + $query['Property'] = $request->property; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'ModifyLiveDomainSchdmByProperty', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return ModifyLiveDomainSchdmByPropertyResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param ModifyLiveDomainSchdmByPropertyRequest $request + * + * @return ModifyLiveDomainSchdmByPropertyResponse + */ + public function modifyLiveDomainSchdmByProperty($request) + { + $runtime = new RuntimeOptions([]); + + return $this->modifyLiveDomainSchdmByPropertyWithOptions($request, $runtime); + } + + /** + * @param ModifyLiveRealtimeLogDeliveryRequest $request + * @param RuntimeOptions $runtime + * + * @return ModifyLiveRealtimeLogDeliveryResponse + */ + public function modifyLiveRealtimeLogDeliveryWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = OpenApiUtilClient::query(Utils::toMap($request)); + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'ModifyLiveRealtimeLogDelivery', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'GET', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return ModifyLiveRealtimeLogDeliveryResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param ModifyLiveRealtimeLogDeliveryRequest $request + * + * @return ModifyLiveRealtimeLogDeliveryResponse + */ + public function modifyLiveRealtimeLogDelivery($request) + { + $runtime = new RuntimeOptions([]); + + return $this->modifyLiveRealtimeLogDeliveryWithOptions($request, $runtime); + } + + /** + * @param ModifyShowListRequest $request + * @param RuntimeOptions $runtime + * + * @return ModifyShowListResponse + */ + public function modifyShowListWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->casterId)) { + $query['CasterId'] = $request->casterId; + } + if (!Utils::isUnset($request->highPriorityShowId)) { + $query['HighPriorityShowId'] = $request->highPriorityShowId; + } + if (!Utils::isUnset($request->highPriorityShowStartTime)) { + $query['HighPriorityShowStartTime'] = $request->highPriorityShowStartTime; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->repeatTimes)) { + $query['RepeatTimes'] = $request->repeatTimes; + } + if (!Utils::isUnset($request->showId)) { + $query['ShowId'] = $request->showId; + } + if (!Utils::isUnset($request->spot)) { + $query['Spot'] = $request->spot; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'ModifyShowList', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return ModifyShowListResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param ModifyShowListRequest $request + * + * @return ModifyShowListResponse + */ + public function modifyShowList($request) + { + $runtime = new RuntimeOptions([]); + + return $this->modifyShowListWithOptions($request, $runtime); + } + + /** + * @param ModifyStudioLayoutRequest $request + * @param RuntimeOptions $runtime + * + * @return ModifyStudioLayoutResponse + */ + public function modifyStudioLayoutWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->bgImageConfig)) { + $query['BgImageConfig'] = $request->bgImageConfig; + } + if (!Utils::isUnset($request->casterId)) { + $query['CasterId'] = $request->casterId; + } + if (!Utils::isUnset($request->commonConfig)) { + $query['CommonConfig'] = $request->commonConfig; + } + if (!Utils::isUnset($request->layerOrderConfigList)) { + $query['LayerOrderConfigList'] = $request->layerOrderConfigList; + } + if (!Utils::isUnset($request->layoutId)) { + $query['LayoutId'] = $request->layoutId; + } + if (!Utils::isUnset($request->layoutName)) { + $query['LayoutName'] = $request->layoutName; + } + if (!Utils::isUnset($request->mediaInputConfigList)) { + $query['MediaInputConfigList'] = $request->mediaInputConfigList; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->screenInputConfigList)) { + $query['ScreenInputConfigList'] = $request->screenInputConfigList; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'ModifyStudioLayout', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return ModifyStudioLayoutResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param ModifyStudioLayoutRequest $request + * + * @return ModifyStudioLayoutResponse + */ + public function modifyStudioLayout($request) + { + $runtime = new RuntimeOptions([]); + + return $this->modifyStudioLayoutWithOptions($request, $runtime); + } + + /** + * @param OpenLiveShiftRequest $request + * @param RuntimeOptions $runtime + * + * @return OpenLiveShiftResponse + */ + public function openLiveShiftWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->appName)) { + $query['AppName'] = $request->appName; + } + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->duration)) { + $query['Duration'] = $request->duration; + } + if (!Utils::isUnset($request->ignoreTranscode)) { + $query['IgnoreTranscode'] = $request->ignoreTranscode; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->streamName)) { + $query['StreamName'] = $request->streamName; + } + if (!Utils::isUnset($request->vision)) { + $query['Vision'] = $request->vision; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'OpenLiveShift', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return OpenLiveShiftResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param OpenLiveShiftRequest $request + * + * @return OpenLiveShiftResponse + */ + public function openLiveShift($request) + { + $runtime = new RuntimeOptions([]); + + return $this->openLiveShiftWithOptions($request, $runtime); + } + + /** + * @param PlayChoosenShowRequest $request + * @param RuntimeOptions $runtime + * + * @return PlayChoosenShowResponse + */ + public function playChoosenShowWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->casterId)) { + $query['CasterId'] = $request->casterId; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->showId)) { + $query['ShowId'] = $request->showId; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'PlayChoosenShow', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return PlayChoosenShowResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param PlayChoosenShowRequest $request + * + * @return PlayChoosenShowResponse + */ + public function playChoosenShow($request) + { + $runtime = new RuntimeOptions([]); + + return $this->playChoosenShowWithOptions($request, $runtime); + } + + /** + * @param PublishLiveStagingConfigToProductionRequest $request + * @param RuntimeOptions $runtime + * + * @return PublishLiveStagingConfigToProductionResponse + */ + public function publishLiveStagingConfigToProductionWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->functionName)) { + $query['FunctionName'] = $request->functionName; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'PublishLiveStagingConfigToProduction', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return PublishLiveStagingConfigToProductionResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param PublishLiveStagingConfigToProductionRequest $request + * + * @return PublishLiveStagingConfigToProductionResponse + */ + public function publishLiveStagingConfigToProduction($request) + { + $runtime = new RuntimeOptions([]); + + return $this->publishLiveStagingConfigToProductionWithOptions($request, $runtime); + } + + /** + * @param QueryMessageAppRequest $request + * @param RuntimeOptions $runtime + * + * @return QueryMessageAppResponse + */ + public function queryMessageAppWithOptions($request, $runtime) + { + Utils::validateModel($request); + $body = []; + if (!Utils::isUnset($request->appId)) { + $body['AppId'] = $request->appId; + } + if (!Utils::isUnset($request->appName)) { + $body['AppName'] = $request->appName; + } + if (!Utils::isUnset($request->pageNum)) { + $body['PageNum'] = $request->pageNum; + } + if (!Utils::isUnset($request->pageSize)) { + $body['PageSize'] = $request->pageSize; + } + if (!Utils::isUnset($request->sortType)) { + $body['SortType'] = $request->sortType; + } + $req = new OpenApiRequest([ + 'body' => OpenApiUtilClient::parseToMap($body), + ]); + $params = new Params([ + 'action' => 'QueryMessageApp', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return QueryMessageAppResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param QueryMessageAppRequest $request + * + * @return QueryMessageAppResponse + */ + public function queryMessageApp($request) + { + $runtime = new RuntimeOptions([]); + + return $this->queryMessageAppWithOptions($request, $runtime); + } + + /** + * @param QuerySnapshotCallbackAuthRequest $request + * @param RuntimeOptions $runtime + * + * @return QuerySnapshotCallbackAuthResponse + */ + public function querySnapshotCallbackAuthWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'QuerySnapshotCallbackAuth', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return QuerySnapshotCallbackAuthResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param QuerySnapshotCallbackAuthRequest $request + * + * @return QuerySnapshotCallbackAuthResponse + */ + public function querySnapshotCallbackAuth($request) + { + $runtime = new RuntimeOptions([]); + + return $this->querySnapshotCallbackAuthWithOptions($request, $runtime); + } + + /** + * @param RealTimeRecordCommandRequest $request + * @param RuntimeOptions $runtime + * + * @return RealTimeRecordCommandResponse + */ + public function realTimeRecordCommandWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->appName)) { + $query['AppName'] = $request->appName; + } + if (!Utils::isUnset($request->command)) { + $query['Command'] = $request->command; + } + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->streamName)) { + $query['StreamName'] = $request->streamName; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'RealTimeRecordCommand', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return RealTimeRecordCommandResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param RealTimeRecordCommandRequest $request + * + * @return RealTimeRecordCommandResponse + */ + public function realTimeRecordCommand($request) + { + $runtime = new RuntimeOptions([]); + + return $this->realTimeRecordCommandWithOptions($request, $runtime); + } + + /** + * @param RealTimeSnapshotCommandRequest $request + * @param RuntimeOptions $runtime + * + * @return RealTimeSnapshotCommandResponse + */ + public function realTimeSnapshotCommandWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->appName)) { + $query['AppName'] = $request->appName; + } + if (!Utils::isUnset($request->command)) { + $query['Command'] = $request->command; + } + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->interval)) { + $query['Interval'] = $request->interval; + } + if (!Utils::isUnset($request->mode)) { + $query['Mode'] = $request->mode; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->source)) { + $query['Source'] = $request->source; + } + if (!Utils::isUnset($request->streamName)) { + $query['StreamName'] = $request->streamName; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'RealTimeSnapshotCommand', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return RealTimeSnapshotCommandResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param RealTimeSnapshotCommandRequest $request + * + * @return RealTimeSnapshotCommandResponse + */ + public function realTimeSnapshotCommand($request) + { + $runtime = new RuntimeOptions([]); + + return $this->realTimeSnapshotCommandWithOptions($request, $runtime); + } + + /** + * @param RemoveShowFromShowListRequest $request + * @param RuntimeOptions $runtime + * + * @return RemoveShowFromShowListResponse + */ + public function removeShowFromShowListWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->casterId)) { + $query['CasterId'] = $request->casterId; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->showId)) { + $query['ShowId'] = $request->showId; + } + if (!Utils::isUnset($request->isBatchMode)) { + $query['isBatchMode'] = $request->isBatchMode; + } + if (!Utils::isUnset($request->showIdList)) { + $query['showIdList'] = $request->showIdList; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'RemoveShowFromShowList', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return RemoveShowFromShowListResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param RemoveShowFromShowListRequest $request + * + * @return RemoveShowFromShowListResponse + */ + public function removeShowFromShowList($request) + { + $runtime = new RuntimeOptions([]); + + return $this->removeShowFromShowListWithOptions($request, $runtime); + } + + /** + * @param RestartCasterRequest $request + * @param RuntimeOptions $runtime + * + * @return RestartCasterResponse + */ + public function restartCasterWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->casterId)) { + $query['CasterId'] = $request->casterId; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'RestartCaster', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return RestartCasterResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param RestartCasterRequest $request + * + * @return RestartCasterResponse + */ + public function restartCaster($request) + { + $runtime = new RuntimeOptions([]); + + return $this->restartCasterWithOptions($request, $runtime); + } + + /** + * @param ResumeLiveStreamRequest $request + * @param RuntimeOptions $runtime + * + * @return ResumeLiveStreamResponse + */ + public function resumeLiveStreamWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->appName)) { + $query['AppName'] = $request->appName; + } + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->liveStreamType)) { + $query['LiveStreamType'] = $request->liveStreamType; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->securityToken)) { + $query['SecurityToken'] = $request->securityToken; + } + if (!Utils::isUnset($request->streamName)) { + $query['StreamName'] = $request->streamName; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'ResumeLiveStream', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return ResumeLiveStreamResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param ResumeLiveStreamRequest $request + * + * @return ResumeLiveStreamResponse + */ + public function resumeLiveStream($request) + { + $runtime = new RuntimeOptions([]); + + return $this->resumeLiveStreamWithOptions($request, $runtime); + } + + /** + * @param RollbackLiveStagingConfigRequest $request + * @param RuntimeOptions $runtime + * + * @return RollbackLiveStagingConfigResponse + */ + public function rollbackLiveStagingConfigWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->functionName)) { + $query['FunctionName'] = $request->functionName; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'RollbackLiveStagingConfig', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return RollbackLiveStagingConfigResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param RollbackLiveStagingConfigRequest $request + * + * @return RollbackLiveStagingConfigResponse + */ + public function rollbackLiveStagingConfig($request) + { + $runtime = new RuntimeOptions([]); + + return $this->rollbackLiveStagingConfigWithOptions($request, $runtime); + } + + /** + * @param SendLikeRequest $request + * @param RuntimeOptions $runtime + * + * @return SendLikeResponse + */ + public function sendLikeWithOptions($request, $runtime) + { + Utils::validateModel($request); + $body = []; + if (!Utils::isUnset($request->appId)) { + $body['AppId'] = $request->appId; + } + if (!Utils::isUnset($request->broadCastType)) { + $body['BroadCastType'] = $request->broadCastType; + } + if (!Utils::isUnset($request->count)) { + $body['Count'] = $request->count; + } + if (!Utils::isUnset($request->groupId)) { + $body['GroupId'] = $request->groupId; + } + if (!Utils::isUnset($request->operatorUserId)) { + $body['OperatorUserId'] = $request->operatorUserId; + } + $req = new OpenApiRequest([ + 'body' => OpenApiUtilClient::parseToMap($body), + ]); + $params = new Params([ + 'action' => 'SendLike', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return SendLikeResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param SendLikeRequest $request + * + * @return SendLikeResponse + */ + public function sendLike($request) + { + $runtime = new RuntimeOptions([]); + + return $this->sendLikeWithOptions($request, $runtime); + } + + /** + * @param SendMessageToGroupRequest $request + * @param RuntimeOptions $runtime + * + * @return SendMessageToGroupResponse + */ + public function sendMessageToGroupWithOptions($request, $runtime) + { + Utils::validateModel($request); + $body = []; + if (!Utils::isUnset($request->appId)) { + $body['AppId'] = $request->appId; + } + if (!Utils::isUnset($request->data)) { + $body['Data'] = $request->data; + } + if (!Utils::isUnset($request->groupId)) { + $body['GroupId'] = $request->groupId; + } + if (!Utils::isUnset($request->operatorUserId)) { + $body['OperatorUserId'] = $request->operatorUserId; + } + if (!Utils::isUnset($request->type)) { + $body['Type'] = $request->type; + } + $req = new OpenApiRequest([ + 'body' => OpenApiUtilClient::parseToMap($body), + ]); + $params = new Params([ + 'action' => 'SendMessageToGroup', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return SendMessageToGroupResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param SendMessageToGroupRequest $request + * + * @return SendMessageToGroupResponse + */ + public function sendMessageToGroup($request) + { + $runtime = new RuntimeOptions([]); + + return $this->sendMessageToGroupWithOptions($request, $runtime); + } + + /** + * @param SendMessageToGroupUsersRequest $tmpReq + * @param RuntimeOptions $runtime + * + * @return SendMessageToGroupUsersResponse + */ + public function sendMessageToGroupUsersWithOptions($tmpReq, $runtime) + { + Utils::validateModel($tmpReq); + $request = new SendMessageToGroupUsersShrinkRequest([]); + OpenApiUtilClient::convert($tmpReq, $request); + if (!Utils::isUnset($tmpReq->receiverIdList)) { + $request->receiverIdListShrink = OpenApiUtilClient::arrayToStringWithSpecifiedStyle($tmpReq->receiverIdList, 'ReceiverIdList', 'json'); + } + $body = []; + if (!Utils::isUnset($request->appId)) { + $body['AppId'] = $request->appId; + } + if (!Utils::isUnset($request->data)) { + $body['Data'] = $request->data; + } + if (!Utils::isUnset($request->groupId)) { + $body['GroupId'] = $request->groupId; + } + if (!Utils::isUnset($request->operatorUserId)) { + $body['OperatorUserId'] = $request->operatorUserId; + } + if (!Utils::isUnset($request->receiverIdListShrink)) { + $body['ReceiverIdList'] = $request->receiverIdListShrink; + } + if (!Utils::isUnset($request->type)) { + $body['Type'] = $request->type; + } + $req = new OpenApiRequest([ + 'body' => OpenApiUtilClient::parseToMap($body), + ]); + $params = new Params([ + 'action' => 'SendMessageToGroupUsers', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return SendMessageToGroupUsersResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param SendMessageToGroupUsersRequest $request + * + * @return SendMessageToGroupUsersResponse + */ + public function sendMessageToGroupUsers($request) + { + $runtime = new RuntimeOptions([]); + + return $this->sendMessageToGroupUsersWithOptions($request, $runtime); + } + + /** + * @param SendRoomNotificationRequest $request + * @param RuntimeOptions $runtime + * + * @return SendRoomNotificationResponse + */ + public function sendRoomNotificationWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->appId)) { + $query['AppId'] = $request->appId; + } + if (!Utils::isUnset($request->appUid)) { + $query['AppUid'] = $request->appUid; + } + if (!Utils::isUnset($request->data)) { + $query['Data'] = $request->data; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->priority)) { + $query['Priority'] = $request->priority; + } + if (!Utils::isUnset($request->roomId)) { + $query['RoomId'] = $request->roomId; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'SendRoomNotification', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return SendRoomNotificationResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param SendRoomNotificationRequest $request + * + * @return SendRoomNotificationResponse + */ + public function sendRoomNotification($request) + { + $runtime = new RuntimeOptions([]); + + return $this->sendRoomNotificationWithOptions($request, $runtime); + } + + /** + * @param SendRoomUserNotificationRequest $request + * @param RuntimeOptions $runtime + * + * @return SendRoomUserNotificationResponse + */ + public function sendRoomUserNotificationWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->appId)) { + $query['AppId'] = $request->appId; + } + if (!Utils::isUnset($request->appUid)) { + $query['AppUid'] = $request->appUid; + } + if (!Utils::isUnset($request->data)) { + $query['Data'] = $request->data; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->priority)) { + $query['Priority'] = $request->priority; + } + if (!Utils::isUnset($request->roomId)) { + $query['RoomId'] = $request->roomId; + } + if (!Utils::isUnset($request->toAppUid)) { + $query['ToAppUid'] = $request->toAppUid; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'SendRoomUserNotification', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return SendRoomUserNotificationResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param SendRoomUserNotificationRequest $request + * + * @return SendRoomUserNotificationResponse + */ + public function sendRoomUserNotification($request) + { + $runtime = new RuntimeOptions([]); + + return $this->sendRoomUserNotificationWithOptions($request, $runtime); + } + + /** + * @param SetCasterChannelRequest $request + * @param RuntimeOptions $runtime + * + * @return SetCasterChannelResponse + */ + public function setCasterChannelWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->casterId)) { + $query['CasterId'] = $request->casterId; + } + if (!Utils::isUnset($request->channelId)) { + $query['ChannelId'] = $request->channelId; + } + if (!Utils::isUnset($request->faceBeauty)) { + $query['FaceBeauty'] = $request->faceBeauty; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->playStatus)) { + $query['PlayStatus'] = $request->playStatus; + } + if (!Utils::isUnset($request->resourceId)) { + $query['ResourceId'] = $request->resourceId; + } + if (!Utils::isUnset($request->seekOffset)) { + $query['SeekOffset'] = $request->seekOffset; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'SetCasterChannel', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return SetCasterChannelResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param SetCasterChannelRequest $request + * + * @return SetCasterChannelResponse + */ + public function setCasterChannel($request) + { + $runtime = new RuntimeOptions([]); + + return $this->setCasterChannelWithOptions($request, $runtime); + } + + /** + * @param SetCasterConfigRequest $request + * @param RuntimeOptions $runtime + * + * @return SetCasterConfigResponse + */ + public function setCasterConfigWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->callbackUrl)) { + $query['CallbackUrl'] = $request->callbackUrl; + } + if (!Utils::isUnset($request->casterId)) { + $query['CasterId'] = $request->casterId; + } + if (!Utils::isUnset($request->casterName)) { + $query['CasterName'] = $request->casterName; + } + if (!Utils::isUnset($request->channelEnable)) { + $query['ChannelEnable'] = $request->channelEnable; + } + if (!Utils::isUnset($request->delay)) { + $query['Delay'] = $request->delay; + } + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->programEffect)) { + $query['ProgramEffect'] = $request->programEffect; + } + if (!Utils::isUnset($request->programName)) { + $query['ProgramName'] = $request->programName; + } + if (!Utils::isUnset($request->recordConfig)) { + $query['RecordConfig'] = $request->recordConfig; + } + if (!Utils::isUnset($request->sideOutputUrl)) { + $query['SideOutputUrl'] = $request->sideOutputUrl; + } + if (!Utils::isUnset($request->sideOutputUrlList)) { + $query['SideOutputUrlList'] = $request->sideOutputUrlList; + } + if (!Utils::isUnset($request->syncGroupsConfig)) { + $query['SyncGroupsConfig'] = $request->syncGroupsConfig; + } + if (!Utils::isUnset($request->transcodeConfig)) { + $query['TranscodeConfig'] = $request->transcodeConfig; + } + if (!Utils::isUnset($request->urgentLiveStreamUrl)) { + $query['UrgentLiveStreamUrl'] = $request->urgentLiveStreamUrl; + } + if (!Utils::isUnset($request->urgentMaterialId)) { + $query['UrgentMaterialId'] = $request->urgentMaterialId; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'SetCasterConfig', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return SetCasterConfigResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param SetCasterConfigRequest $request + * + * @return SetCasterConfigResponse + */ + public function setCasterConfig($request) + { + $runtime = new RuntimeOptions([]); + + return $this->setCasterConfigWithOptions($request, $runtime); + } + + /** + * @param SetCasterSceneConfigRequest $request + * @param RuntimeOptions $runtime + * + * @return SetCasterSceneConfigResponse + */ + public function setCasterSceneConfigWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->casterId)) { + $query['CasterId'] = $request->casterId; + } + if (!Utils::isUnset($request->componentId)) { + $query['ComponentId'] = $request->componentId; + } + if (!Utils::isUnset($request->layoutId)) { + $query['LayoutId'] = $request->layoutId; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->sceneId)) { + $query['SceneId'] = $request->sceneId; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'SetCasterSceneConfig', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return SetCasterSceneConfigResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param SetCasterSceneConfigRequest $request + * + * @return SetCasterSceneConfigResponse + */ + public function setCasterSceneConfig($request) + { + $runtime = new RuntimeOptions([]); + + return $this->setCasterSceneConfigWithOptions($request, $runtime); + } + + /** + * @param SetCasterSyncGroupRequest $request + * @param RuntimeOptions $runtime + * + * @return SetCasterSyncGroupResponse + */ + public function setCasterSyncGroupWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->casterId)) { + $query['CasterId'] = $request->casterId; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->syncGroup)) { + $query['SyncGroup'] = $request->syncGroup; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'SetCasterSyncGroup', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return SetCasterSyncGroupResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param SetCasterSyncGroupRequest $request + * + * @return SetCasterSyncGroupResponse + */ + public function setCasterSyncGroup($request) + { + $runtime = new RuntimeOptions([]); + + return $this->setCasterSyncGroupWithOptions($request, $runtime); + } + + /** + * @param SetCasterTimedEventRequest $request + * @param RuntimeOptions $runtime + * + * @return SetCasterTimedEventResponse + */ + public function setCasterTimedEventWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->casterId)) { + $query['CasterId'] = $request->casterId; + } + if (!Utils::isUnset($request->eventName)) { + $query['EventName'] = $request->eventName; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->startTimeUTC)) { + $query['StartTimeUTC'] = $request->startTimeUTC; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'SetCasterTimedEvent', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return SetCasterTimedEventResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param SetCasterTimedEventRequest $request + * + * @return SetCasterTimedEventResponse + */ + public function setCasterTimedEvent($request) + { + $runtime = new RuntimeOptions([]); + + return $this->setCasterTimedEventWithOptions($request, $runtime); + } + + /** + * @param SetLiveDomainCertificateRequest $request + * @param RuntimeOptions $runtime + * + * @return SetLiveDomainCertificateResponse + */ + public function setLiveDomainCertificateWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->certName)) { + $query['CertName'] = $request->certName; + } + if (!Utils::isUnset($request->certType)) { + $query['CertType'] = $request->certType; + } + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->forceSet)) { + $query['ForceSet'] = $request->forceSet; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->SSLPri)) { + $query['SSLPri'] = $request->SSLPri; + } + if (!Utils::isUnset($request->SSLProtocol)) { + $query['SSLProtocol'] = $request->SSLProtocol; + } + if (!Utils::isUnset($request->SSLPub)) { + $query['SSLPub'] = $request->SSLPub; + } + if (!Utils::isUnset($request->securityToken)) { + $query['SecurityToken'] = $request->securityToken; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'SetLiveDomainCertificate', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return SetLiveDomainCertificateResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param SetLiveDomainCertificateRequest $request + * + * @return SetLiveDomainCertificateResponse + */ + public function setLiveDomainCertificate($request) + { + $runtime = new RuntimeOptions([]); + + return $this->setLiveDomainCertificateWithOptions($request, $runtime); + } + + /** + * @param SetLiveDomainStagingConfigRequest $request + * @param RuntimeOptions $runtime + * + * @return SetLiveDomainStagingConfigResponse + */ + public function setLiveDomainStagingConfigWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->functions)) { + $query['Functions'] = $request->functions; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'SetLiveDomainStagingConfig', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return SetLiveDomainStagingConfigResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param SetLiveDomainStagingConfigRequest $request + * + * @return SetLiveDomainStagingConfigResponse + */ + public function setLiveDomainStagingConfig($request) + { + $runtime = new RuntimeOptions([]); + + return $this->setLiveDomainStagingConfigWithOptions($request, $runtime); + } + + /** + * @param SetLiveEdgeTransferRequest $request + * @param RuntimeOptions $runtime + * + * @return SetLiveEdgeTransferResponse + */ + public function setLiveEdgeTransferWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->appName)) { + $query['AppName'] = $request->appName; + } + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->httpDns)) { + $query['HttpDns'] = $request->httpDns; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->streamName)) { + $query['StreamName'] = $request->streamName; + } + if (!Utils::isUnset($request->targetDomainList)) { + $query['TargetDomainList'] = $request->targetDomainList; + } + if (!Utils::isUnset($request->transferArgs)) { + $query['TransferArgs'] = $request->transferArgs; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'SetLiveEdgeTransfer', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return SetLiveEdgeTransferResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param SetLiveEdgeTransferRequest $request + * + * @return SetLiveEdgeTransferResponse + */ + public function setLiveEdgeTransfer($request) + { + $runtime = new RuntimeOptions([]); + + return $this->setLiveEdgeTransferWithOptions($request, $runtime); + } + + /** + * @param SetLiveLazyPullStreamInfoConfigRequest $request + * @param RuntimeOptions $runtime + * + * @return SetLiveLazyPullStreamInfoConfigResponse + */ + public function setLiveLazyPullStreamInfoConfigWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->appName)) { + $query['AppName'] = $request->appName; + } + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->pullAppName)) { + $query['PullAppName'] = $request->pullAppName; + } + if (!Utils::isUnset($request->pullDomainName)) { + $query['PullDomainName'] = $request->pullDomainName; + } + if (!Utils::isUnset($request->pullProtocol)) { + $query['PullProtocol'] = $request->pullProtocol; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'SetLiveLazyPullStreamInfoConfig', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return SetLiveLazyPullStreamInfoConfigResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param SetLiveLazyPullStreamInfoConfigRequest $request + * + * @return SetLiveLazyPullStreamInfoConfigResponse + */ + public function setLiveLazyPullStreamInfoConfig($request) + { + $runtime = new RuntimeOptions([]); + + return $this->setLiveLazyPullStreamInfoConfigWithOptions($request, $runtime); + } + + /** + * @param SetLiveStreamDelayConfigRequest $request + * @param RuntimeOptions $runtime + * + * @return SetLiveStreamDelayConfigResponse + */ + public function setLiveStreamDelayConfigWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->flvDelay)) { + $query['FlvDelay'] = $request->flvDelay; + } + if (!Utils::isUnset($request->flvLevel)) { + $query['FlvLevel'] = $request->flvLevel; + } + if (!Utils::isUnset($request->hlsDelay)) { + $query['HlsDelay'] = $request->hlsDelay; + } + if (!Utils::isUnset($request->hlsLevel)) { + $query['HlsLevel'] = $request->hlsLevel; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->rtmpDelay)) { + $query['RtmpDelay'] = $request->rtmpDelay; + } + if (!Utils::isUnset($request->rtmpLevel)) { + $query['RtmpLevel'] = $request->rtmpLevel; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'SetLiveStreamDelayConfig', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return SetLiveStreamDelayConfigResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param SetLiveStreamDelayConfigRequest $request + * + * @return SetLiveStreamDelayConfigResponse + */ + public function setLiveStreamDelayConfig($request) + { + $runtime = new RuntimeOptions([]); + + return $this->setLiveStreamDelayConfigWithOptions($request, $runtime); + } + + /** + * @param SetLiveStreamOptimizedFeatureConfigRequest $request + * @param RuntimeOptions $runtime + * + * @return SetLiveStreamOptimizedFeatureConfigResponse + */ + public function setLiveStreamOptimizedFeatureConfigWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->configName)) { + $query['ConfigName'] = $request->configName; + } + if (!Utils::isUnset($request->configStatus)) { + $query['ConfigStatus'] = $request->configStatus; + } + if (!Utils::isUnset($request->configValue)) { + $query['ConfigValue'] = $request->configValue; + } + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'SetLiveStreamOptimizedFeatureConfig', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return SetLiveStreamOptimizedFeatureConfigResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param SetLiveStreamOptimizedFeatureConfigRequest $request + * + * @return SetLiveStreamOptimizedFeatureConfigResponse + */ + public function setLiveStreamOptimizedFeatureConfig($request) + { + $runtime = new RuntimeOptions([]); + + return $this->setLiveStreamOptimizedFeatureConfigWithOptions($request, $runtime); + } + + /** + * @param SetLiveStreamsNotifyUrlConfigRequest $request + * @param RuntimeOptions $runtime + * + * @return SetLiveStreamsNotifyUrlConfigResponse + */ + public function setLiveStreamsNotifyUrlConfigWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->notifyAuthKey)) { + $query['NotifyAuthKey'] = $request->notifyAuthKey; + } + if (!Utils::isUnset($request->notifyReqAuth)) { + $query['NotifyReqAuth'] = $request->notifyReqAuth; + } + if (!Utils::isUnset($request->notifyUrl)) { + $query['NotifyUrl'] = $request->notifyUrl; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'SetLiveStreamsNotifyUrlConfig', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return SetLiveStreamsNotifyUrlConfigResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param SetLiveStreamsNotifyUrlConfigRequest $request + * + * @return SetLiveStreamsNotifyUrlConfigResponse + */ + public function setLiveStreamsNotifyUrlConfig($request) + { + $runtime = new RuntimeOptions([]); + + return $this->setLiveStreamsNotifyUrlConfigWithOptions($request, $runtime); + } + + /** + * @param SetSnapshotCallbackAuthRequest $request + * @param RuntimeOptions $runtime + * + * @return SetSnapshotCallbackAuthResponse + */ + public function setSnapshotCallbackAuthWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->callbackAuthKey)) { + $query['CallbackAuthKey'] = $request->callbackAuthKey; + } + if (!Utils::isUnset($request->callbackReqAuth)) { + $query['CallbackReqAuth'] = $request->callbackReqAuth; + } + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'SetSnapshotCallbackAuth', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return SetSnapshotCallbackAuthResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param SetSnapshotCallbackAuthRequest $request + * + * @return SetSnapshotCallbackAuthResponse + */ + public function setSnapshotCallbackAuth($request) + { + $runtime = new RuntimeOptions([]); + + return $this->setSnapshotCallbackAuthWithOptions($request, $runtime); + } + + /** + * @param StartCasterRequest $request + * @param RuntimeOptions $runtime + * + * @return StartCasterResponse + */ + public function startCasterWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->casterId)) { + $query['CasterId'] = $request->casterId; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'StartCaster', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return StartCasterResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param StartCasterRequest $request + * + * @return StartCasterResponse + */ + public function startCaster($request) + { + $runtime = new RuntimeOptions([]); + + return $this->startCasterWithOptions($request, $runtime); + } + + /** + * @param StartCasterSceneRequest $request + * @param RuntimeOptions $runtime + * + * @return StartCasterSceneResponse + */ + public function startCasterSceneWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->casterId)) { + $query['CasterId'] = $request->casterId; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->sceneId)) { + $query['SceneId'] = $request->sceneId; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'StartCasterScene', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return StartCasterSceneResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param StartCasterSceneRequest $request + * + * @return StartCasterSceneResponse + */ + public function startCasterScene($request) + { + $runtime = new RuntimeOptions([]); + + return $this->startCasterSceneWithOptions($request, $runtime); + } + + /** + * @param StartLiveDomainRequest $request + * @param RuntimeOptions $runtime + * + * @return StartLiveDomainResponse + */ + public function startLiveDomainWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->securityToken)) { + $query['SecurityToken'] = $request->securityToken; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'StartLiveDomain', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return StartLiveDomainResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param StartLiveDomainRequest $request + * + * @return StartLiveDomainResponse + */ + public function startLiveDomain($request) + { + $runtime = new RuntimeOptions([]); + + return $this->startLiveDomainWithOptions($request, $runtime); + } + + /** + * @param StartLiveStreamMonitorRequest $request + * @param RuntimeOptions $runtime + * + * @return StartLiveStreamMonitorResponse + */ + public function startLiveStreamMonitorWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->monitorId)) { + $query['MonitorId'] = $request->monitorId; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'StartLiveStreamMonitor', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return StartLiveStreamMonitorResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param StartLiveStreamMonitorRequest $request + * + * @return StartLiveStreamMonitorResponse + */ + public function startLiveStreamMonitor($request) + { + $runtime = new RuntimeOptions([]); + + return $this->startLiveStreamMonitorWithOptions($request, $runtime); + } + + /** + * @param StartPlaylistRequest $request + * @param RuntimeOptions $runtime + * + * @return StartPlaylistResponse + */ + public function startPlaylistWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->offset)) { + $query['Offset'] = $request->offset; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->programId)) { + $query['ProgramId'] = $request->programId; + } + if (!Utils::isUnset($request->resumeMode)) { + $query['ResumeMode'] = $request->resumeMode; + } + if (!Utils::isUnset($request->startItemId)) { + $query['StartItemId'] = $request->startItemId; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'StartPlaylist', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return StartPlaylistResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param StartPlaylistRequest $request + * + * @return StartPlaylistResponse + */ + public function startPlaylist($request) + { + $runtime = new RuntimeOptions([]); + + return $this->startPlaylistWithOptions($request, $runtime); + } + + /** + * @param StopCasterRequest $request + * @param RuntimeOptions $runtime + * + * @return StopCasterResponse + */ + public function stopCasterWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->casterId)) { + $query['CasterId'] = $request->casterId; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'StopCaster', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return StopCasterResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param StopCasterRequest $request + * + * @return StopCasterResponse + */ + public function stopCaster($request) + { + $runtime = new RuntimeOptions([]); + + return $this->stopCasterWithOptions($request, $runtime); + } + + /** + * @param StopCasterSceneRequest $request + * @param RuntimeOptions $runtime + * + * @return StopCasterSceneResponse + */ + public function stopCasterSceneWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->casterId)) { + $query['CasterId'] = $request->casterId; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->sceneId)) { + $query['SceneId'] = $request->sceneId; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'StopCasterScene', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return StopCasterSceneResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param StopCasterSceneRequest $request + * + * @return StopCasterSceneResponse + */ + public function stopCasterScene($request) + { + $runtime = new RuntimeOptions([]); + + return $this->stopCasterSceneWithOptions($request, $runtime); + } + + /** + * @param StopLiveDomainRequest $request + * @param RuntimeOptions $runtime + * + * @return StopLiveDomainResponse + */ + public function stopLiveDomainWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->securityToken)) { + $query['SecurityToken'] = $request->securityToken; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'StopLiveDomain', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return StopLiveDomainResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param StopLiveDomainRequest $request + * + * @return StopLiveDomainResponse + */ + public function stopLiveDomain($request) + { + $runtime = new RuntimeOptions([]); + + return $this->stopLiveDomainWithOptions($request, $runtime); + } + + /** + * @param StopLiveStreamMonitorRequest $request + * @param RuntimeOptions $runtime + * + * @return StopLiveStreamMonitorResponse + */ + public function stopLiveStreamMonitorWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->monitorId)) { + $query['MonitorId'] = $request->monitorId; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'StopLiveStreamMonitor', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return StopLiveStreamMonitorResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param StopLiveStreamMonitorRequest $request + * + * @return StopLiveStreamMonitorResponse + */ + public function stopLiveStreamMonitor($request) + { + $runtime = new RuntimeOptions([]); + + return $this->stopLiveStreamMonitorWithOptions($request, $runtime); + } + + /** + * @param StopPlaylistRequest $request + * @param RuntimeOptions $runtime + * + * @return StopPlaylistResponse + */ + public function stopPlaylistWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->programId)) { + $query['ProgramId'] = $request->programId; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'StopPlaylist', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return StopPlaylistResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param StopPlaylistRequest $request + * + * @return StopPlaylistResponse + */ + public function stopPlaylist($request) + { + $runtime = new RuntimeOptions([]); + + return $this->stopPlaylistWithOptions($request, $runtime); + } + + /** + * @param TagLiveResourcesRequest $request + * @param RuntimeOptions $runtime + * + * @return TagLiveResourcesResponse + */ + public function tagLiveResourcesWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->resourceId)) { + $query['ResourceId'] = $request->resourceId; + } + if (!Utils::isUnset($request->resourceType)) { + $query['ResourceType'] = $request->resourceType; + } + if (!Utils::isUnset($request->tag)) { + $query['Tag'] = $request->tag; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'TagLiveResources', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return TagLiveResourcesResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param TagLiveResourcesRequest $request + * + * @return TagLiveResourcesResponse + */ + public function tagLiveResources($request) + { + $runtime = new RuntimeOptions([]); + + return $this->tagLiveResourcesWithOptions($request, $runtime); + } + + /** + * @param UnTagLiveResourcesRequest $request + * @param RuntimeOptions $runtime + * + * @return UnTagLiveResourcesResponse + */ + public function unTagLiveResourcesWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->all)) { + $query['All'] = $request->all; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->resourceId)) { + $query['ResourceId'] = $request->resourceId; + } + if (!Utils::isUnset($request->resourceType)) { + $query['ResourceType'] = $request->resourceType; + } + if (!Utils::isUnset($request->tagKey)) { + $query['TagKey'] = $request->tagKey; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'UnTagLiveResources', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return UnTagLiveResourcesResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param UnTagLiveResourcesRequest $request + * + * @return UnTagLiveResourcesResponse + */ + public function unTagLiveResources($request) + { + $runtime = new RuntimeOptions([]); + + return $this->unTagLiveResourcesWithOptions($request, $runtime); + } + + /** + * @param UpdateCasterSceneAudioRequest $request + * @param RuntimeOptions $runtime + * + * @return UpdateCasterSceneAudioResponse + */ + public function updateCasterSceneAudioWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->audioLayer)) { + $query['AudioLayer'] = $request->audioLayer; + } + if (!Utils::isUnset($request->casterId)) { + $query['CasterId'] = $request->casterId; + } + if (!Utils::isUnset($request->followEnable)) { + $query['FollowEnable'] = $request->followEnable; + } + if (!Utils::isUnset($request->mixList)) { + $query['MixList'] = $request->mixList; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->sceneId)) { + $query['SceneId'] = $request->sceneId; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'UpdateCasterSceneAudio', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return UpdateCasterSceneAudioResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param UpdateCasterSceneAudioRequest $request + * + * @return UpdateCasterSceneAudioResponse + */ + public function updateCasterSceneAudio($request) + { + $runtime = new RuntimeOptions([]); + + return $this->updateCasterSceneAudioWithOptions($request, $runtime); + } + + /** + * @param UpdateCasterSceneConfigRequest $request + * @param RuntimeOptions $runtime + * + * @return UpdateCasterSceneConfigResponse + */ + public function updateCasterSceneConfigWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->casterId)) { + $query['CasterId'] = $request->casterId; + } + if (!Utils::isUnset($request->componentId)) { + $query['ComponentId'] = $request->componentId; + } + if (!Utils::isUnset($request->layoutId)) { + $query['LayoutId'] = $request->layoutId; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->sceneId)) { + $query['SceneId'] = $request->sceneId; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'UpdateCasterSceneConfig', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return UpdateCasterSceneConfigResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param UpdateCasterSceneConfigRequest $request + * + * @return UpdateCasterSceneConfigResponse + */ + public function updateCasterSceneConfig($request) + { + $runtime = new RuntimeOptions([]); + + return $this->updateCasterSceneConfigWithOptions($request, $runtime); + } + + /** + * @param UpdateLiveAppSnapshotConfigRequest $request + * @param RuntimeOptions $runtime + * + * @return UpdateLiveAppSnapshotConfigResponse + */ + public function updateLiveAppSnapshotConfigWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->appName)) { + $query['AppName'] = $request->appName; + } + if (!Utils::isUnset($request->callback)) { + $query['Callback'] = $request->callback; + } + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->ossBucket)) { + $query['OssBucket'] = $request->ossBucket; + } + if (!Utils::isUnset($request->ossEndpoint)) { + $query['OssEndpoint'] = $request->ossEndpoint; + } + if (!Utils::isUnset($request->overwriteOssObject)) { + $query['OverwriteOssObject'] = $request->overwriteOssObject; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->securityToken)) { + $query['SecurityToken'] = $request->securityToken; + } + if (!Utils::isUnset($request->sequenceOssObject)) { + $query['SequenceOssObject'] = $request->sequenceOssObject; + } + if (!Utils::isUnset($request->timeInterval)) { + $query['TimeInterval'] = $request->timeInterval; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'UpdateLiveAppSnapshotConfig', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return UpdateLiveAppSnapshotConfigResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param UpdateLiveAppSnapshotConfigRequest $request + * + * @return UpdateLiveAppSnapshotConfigResponse + */ + public function updateLiveAppSnapshotConfig($request) + { + $runtime = new RuntimeOptions([]); + + return $this->updateLiveAppSnapshotConfigWithOptions($request, $runtime); + } + + /** + * @param UpdateLiveAudioAuditConfigRequest $request + * @param RuntimeOptions $runtime + * + * @return UpdateLiveAudioAuditConfigResponse + */ + public function updateLiveAudioAuditConfigWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->appName)) { + $query['AppName'] = $request->appName; + } + if (!Utils::isUnset($request->bizType)) { + $query['BizType'] = $request->bizType; + } + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->ossBucket)) { + $query['OssBucket'] = $request->ossBucket; + } + if (!Utils::isUnset($request->ossEndpoint)) { + $query['OssEndpoint'] = $request->ossEndpoint; + } + if (!Utils::isUnset($request->ossObject)) { + $query['OssObject'] = $request->ossObject; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->streamName)) { + $query['StreamName'] = $request->streamName; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'UpdateLiveAudioAuditConfig', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return UpdateLiveAudioAuditConfigResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param UpdateLiveAudioAuditConfigRequest $request + * + * @return UpdateLiveAudioAuditConfigResponse + */ + public function updateLiveAudioAuditConfig($request) + { + $runtime = new RuntimeOptions([]); + + return $this->updateLiveAudioAuditConfigWithOptions($request, $runtime); + } + + /** + * @param UpdateLiveAudioAuditNotifyConfigRequest $request + * @param RuntimeOptions $runtime + * + * @return UpdateLiveAudioAuditNotifyConfigResponse + */ + public function updateLiveAudioAuditNotifyConfigWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->callback)) { + $query['Callback'] = $request->callback; + } + if (!Utils::isUnset($request->callbackTemplate)) { + $query['CallbackTemplate'] = $request->callbackTemplate; + } + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'UpdateLiveAudioAuditNotifyConfig', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return UpdateLiveAudioAuditNotifyConfigResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param UpdateLiveAudioAuditNotifyConfigRequest $request + * + * @return UpdateLiveAudioAuditNotifyConfigResponse + */ + public function updateLiveAudioAuditNotifyConfig($request) + { + $runtime = new RuntimeOptions([]); + + return $this->updateLiveAudioAuditNotifyConfigWithOptions($request, $runtime); + } + + /** + * @param UpdateLiveDetectNotifyConfigRequest $request + * @param RuntimeOptions $runtime + * + * @return UpdateLiveDetectNotifyConfigResponse + */ + public function updateLiveDetectNotifyConfigWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->notifyUrl)) { + $query['NotifyUrl'] = $request->notifyUrl; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->securityToken)) { + $query['SecurityToken'] = $request->securityToken; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'UpdateLiveDetectNotifyConfig', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return UpdateLiveDetectNotifyConfigResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param UpdateLiveDetectNotifyConfigRequest $request + * + * @return UpdateLiveDetectNotifyConfigResponse + */ + public function updateLiveDetectNotifyConfig($request) + { + $runtime = new RuntimeOptions([]); + + return $this->updateLiveDetectNotifyConfigWithOptions($request, $runtime); + } + + /** + * @param UpdateLivePullStreamInfoConfigRequest $request + * @param RuntimeOptions $runtime + * + * @return UpdateLivePullStreamInfoConfigResponse + */ + public function updateLivePullStreamInfoConfigWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = OpenApiUtilClient::query(Utils::toMap($request)); + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'UpdateLivePullStreamInfoConfig', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'GET', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return UpdateLivePullStreamInfoConfigResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param UpdateLivePullStreamInfoConfigRequest $request + * + * @return UpdateLivePullStreamInfoConfigResponse + */ + public function updateLivePullStreamInfoConfig($request) + { + $runtime = new RuntimeOptions([]); + + return $this->updateLivePullStreamInfoConfigWithOptions($request, $runtime); + } + + /** + * @param UpdateLiveRecordNotifyConfigRequest $request + * @param RuntimeOptions $runtime + * + * @return UpdateLiveRecordNotifyConfigResponse + */ + public function updateLiveRecordNotifyConfigWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->needStatusNotify)) { + $query['NeedStatusNotify'] = $request->needStatusNotify; + } + if (!Utils::isUnset($request->notifyUrl)) { + $query['NotifyUrl'] = $request->notifyUrl; + } + if (!Utils::isUnset($request->onDemandUrl)) { + $query['OnDemandUrl'] = $request->onDemandUrl; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->securityToken)) { + $query['SecurityToken'] = $request->securityToken; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'UpdateLiveRecordNotifyConfig', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return UpdateLiveRecordNotifyConfigResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param UpdateLiveRecordNotifyConfigRequest $request + * + * @return UpdateLiveRecordNotifyConfigResponse + */ + public function updateLiveRecordNotifyConfig($request) + { + $runtime = new RuntimeOptions([]); + + return $this->updateLiveRecordNotifyConfigWithOptions($request, $runtime); + } + + /** + * @param UpdateLiveSnapshotDetectPornConfigRequest $request + * @param RuntimeOptions $runtime + * + * @return UpdateLiveSnapshotDetectPornConfigResponse + */ + public function updateLiveSnapshotDetectPornConfigWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->appName)) { + $query['AppName'] = $request->appName; + } + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->interval)) { + $query['Interval'] = $request->interval; + } + if (!Utils::isUnset($request->ossBucket)) { + $query['OssBucket'] = $request->ossBucket; + } + if (!Utils::isUnset($request->ossEndpoint)) { + $query['OssEndpoint'] = $request->ossEndpoint; + } + if (!Utils::isUnset($request->ossObject)) { + $query['OssObject'] = $request->ossObject; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->scene)) { + $query['Scene'] = $request->scene; + } + if (!Utils::isUnset($request->securityToken)) { + $query['SecurityToken'] = $request->securityToken; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'UpdateLiveSnapshotDetectPornConfig', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return UpdateLiveSnapshotDetectPornConfigResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param UpdateLiveSnapshotDetectPornConfigRequest $request + * + * @return UpdateLiveSnapshotDetectPornConfigResponse + */ + public function updateLiveSnapshotDetectPornConfig($request) + { + $runtime = new RuntimeOptions([]); + + return $this->updateLiveSnapshotDetectPornConfigWithOptions($request, $runtime); + } + + /** + * @param UpdateLiveSnapshotNotifyConfigRequest $request + * @param RuntimeOptions $runtime + * + * @return UpdateLiveSnapshotNotifyConfigResponse + */ + public function updateLiveSnapshotNotifyConfigWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->notifyAuthKey)) { + $query['NotifyAuthKey'] = $request->notifyAuthKey; + } + if (!Utils::isUnset($request->notifyReqAuth)) { + $query['NotifyReqAuth'] = $request->notifyReqAuth; + } + if (!Utils::isUnset($request->notifyUrl)) { + $query['NotifyUrl'] = $request->notifyUrl; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'UpdateLiveSnapshotNotifyConfig', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return UpdateLiveSnapshotNotifyConfigResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param UpdateLiveSnapshotNotifyConfigRequest $request + * + * @return UpdateLiveSnapshotNotifyConfigResponse + */ + public function updateLiveSnapshotNotifyConfig($request) + { + $runtime = new RuntimeOptions([]); + + return $this->updateLiveSnapshotNotifyConfigWithOptions($request, $runtime); + } + + /** + * @param UpdateLiveStreamMonitorRequest $request + * @param RuntimeOptions $runtime + * + * @return UpdateLiveStreamMonitorResponse + */ + public function updateLiveStreamMonitorWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->app)) { + $query['App'] = $request->app; + } + if (!Utils::isUnset($request->domain)) { + $query['Domain'] = $request->domain; + } + if (!Utils::isUnset($request->inputList)) { + $query['InputList'] = $request->inputList; + } + if (!Utils::isUnset($request->monitorId)) { + $query['MonitorId'] = $request->monitorId; + } + if (!Utils::isUnset($request->monitorName)) { + $query['MonitorName'] = $request->monitorName; + } + if (!Utils::isUnset($request->outputTemplate)) { + $query['OutputTemplate'] = $request->outputTemplate; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->stream)) { + $query['Stream'] = $request->stream; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'UpdateLiveStreamMonitor', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return UpdateLiveStreamMonitorResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param UpdateLiveStreamMonitorRequest $request + * + * @return UpdateLiveStreamMonitorResponse + */ + public function updateLiveStreamMonitor($request) + { + $runtime = new RuntimeOptions([]); + + return $this->updateLiveStreamMonitorWithOptions($request, $runtime); + } + + /** + * @param UpdateLiveStreamWatermarkRequest $request + * @param RuntimeOptions $runtime + * + * @return UpdateLiveStreamWatermarkResponse + */ + public function updateLiveStreamWatermarkWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->description)) { + $query['Description'] = $request->description; + } + if (!Utils::isUnset($request->height)) { + $query['Height'] = $request->height; + } + if (!Utils::isUnset($request->name)) { + $query['Name'] = $request->name; + } + if (!Utils::isUnset($request->offsetCorner)) { + $query['OffsetCorner'] = $request->offsetCorner; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->pictureUrl)) { + $query['PictureUrl'] = $request->pictureUrl; + } + if (!Utils::isUnset($request->refHeight)) { + $query['RefHeight'] = $request->refHeight; + } + if (!Utils::isUnset($request->refWidth)) { + $query['RefWidth'] = $request->refWidth; + } + if (!Utils::isUnset($request->templateId)) { + $query['TemplateId'] = $request->templateId; + } + if (!Utils::isUnset($request->transparency)) { + $query['Transparency'] = $request->transparency; + } + if (!Utils::isUnset($request->XOffset)) { + $query['XOffset'] = $request->XOffset; + } + if (!Utils::isUnset($request->YOffset)) { + $query['YOffset'] = $request->YOffset; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'UpdateLiveStreamWatermark', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return UpdateLiveStreamWatermarkResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param UpdateLiveStreamWatermarkRequest $request + * + * @return UpdateLiveStreamWatermarkResponse + */ + public function updateLiveStreamWatermark($request) + { + $runtime = new RuntimeOptions([]); + + return $this->updateLiveStreamWatermarkWithOptions($request, $runtime); + } + + /** + * @param UpdateLiveStreamWatermarkRuleRequest $request + * @param RuntimeOptions $runtime + * + * @return UpdateLiveStreamWatermarkRuleResponse + */ + public function updateLiveStreamWatermarkRuleWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->description)) { + $query['Description'] = $request->description; + } + if (!Utils::isUnset($request->name)) { + $query['Name'] = $request->name; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->ruleId)) { + $query['RuleId'] = $request->ruleId; + } + if (!Utils::isUnset($request->templateId)) { + $query['TemplateId'] = $request->templateId; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'UpdateLiveStreamWatermarkRule', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return UpdateLiveStreamWatermarkRuleResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param UpdateLiveStreamWatermarkRuleRequest $request + * + * @return UpdateLiveStreamWatermarkRuleResponse + */ + public function updateLiveStreamWatermarkRule($request) + { + $runtime = new RuntimeOptions([]); + + return $this->updateLiveStreamWatermarkRuleWithOptions($request, $runtime); + } + + /** + * @param UpdateLiveTopLevelDomainRequest $request + * @param RuntimeOptions $runtime + * + * @return UpdateLiveTopLevelDomainResponse + */ + public function updateLiveTopLevelDomainWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->securityToken)) { + $query['SecurityToken'] = $request->securityToken; + } + if (!Utils::isUnset($request->topLevelDomain)) { + $query['TopLevelDomain'] = $request->topLevelDomain; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'UpdateLiveTopLevelDomain', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return UpdateLiveTopLevelDomainResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param UpdateLiveTopLevelDomainRequest $request + * + * @return UpdateLiveTopLevelDomainResponse + */ + public function updateLiveTopLevelDomain($request) + { + $runtime = new RuntimeOptions([]); + + return $this->updateLiveTopLevelDomainWithOptions($request, $runtime); + } + + /** + * @param UpdateMessageAppRequest $tmpReq + * @param RuntimeOptions $runtime + * + * @return UpdateMessageAppResponse + */ + public function updateMessageAppWithOptions($tmpReq, $runtime) + { + Utils::validateModel($tmpReq); + $request = new UpdateMessageAppShrinkRequest([]); + OpenApiUtilClient::convert($tmpReq, $request); + if (!Utils::isUnset($tmpReq->appConfig)) { + $request->appConfigShrink = OpenApiUtilClient::arrayToStringWithSpecifiedStyle($tmpReq->appConfig, 'AppConfig', 'json'); + } + if (!Utils::isUnset($tmpReq->extension)) { + $request->extensionShrink = OpenApiUtilClient::arrayToStringWithSpecifiedStyle($tmpReq->extension, 'Extension', 'json'); + } + $body = []; + if (!Utils::isUnset($request->appConfigShrink)) { + $body['AppConfig'] = $request->appConfigShrink; + } + if (!Utils::isUnset($request->appId)) { + $body['AppId'] = $request->appId; + } + if (!Utils::isUnset($request->appName)) { + $body['AppName'] = $request->appName; + } + if (!Utils::isUnset($request->extensionShrink)) { + $body['Extension'] = $request->extensionShrink; + } + $req = new OpenApiRequest([ + 'body' => OpenApiUtilClient::parseToMap($body), + ]); + $params = new Params([ + 'action' => 'UpdateMessageApp', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return UpdateMessageAppResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param UpdateMessageAppRequest $request + * + * @return UpdateMessageAppResponse + */ + public function updateMessageApp($request) + { + $runtime = new RuntimeOptions([]); + + return $this->updateMessageAppWithOptions($request, $runtime); + } + + /** + * @param UpdateMessageGroupRequest $tmpReq + * @param RuntimeOptions $runtime + * + * @return UpdateMessageGroupResponse + */ + public function updateMessageGroupWithOptions($tmpReq, $runtime) + { + Utils::validateModel($tmpReq); + $request = new UpdateMessageGroupShrinkRequest([]); + OpenApiUtilClient::convert($tmpReq, $request); + if (!Utils::isUnset($tmpReq->extension)) { + $request->extensionShrink = OpenApiUtilClient::arrayToStringWithSpecifiedStyle($tmpReq->extension, 'Extension', 'json'); + } + $body = []; + if (!Utils::isUnset($request->appId)) { + $body['AppId'] = $request->appId; + } + if (!Utils::isUnset($request->extensionShrink)) { + $body['Extension'] = $request->extensionShrink; + } + if (!Utils::isUnset($request->groupId)) { + $body['GroupId'] = $request->groupId; + } + $req = new OpenApiRequest([ + 'body' => OpenApiUtilClient::parseToMap($body), + ]); + $params = new Params([ + 'action' => 'UpdateMessageGroup', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return UpdateMessageGroupResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param UpdateMessageGroupRequest $request + * + * @return UpdateMessageGroupResponse + */ + public function updateMessageGroup($request) + { + $runtime = new RuntimeOptions([]); + + return $this->updateMessageGroupWithOptions($request, $runtime); + } + + /** + * @param UpdateMixStreamRequest $request + * @param RuntimeOptions $runtime + * + * @return UpdateMixStreamResponse + */ + public function updateMixStreamWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->inputStreamList)) { + $query['InputStreamList'] = $request->inputStreamList; + } + if (!Utils::isUnset($request->layoutId)) { + $query['LayoutId'] = $request->layoutId; + } + if (!Utils::isUnset($request->mixStreamId)) { + $query['MixStreamId'] = $request->mixStreamId; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'UpdateMixStream', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return UpdateMixStreamResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param UpdateMixStreamRequest $request + * + * @return UpdateMixStreamResponse + */ + public function updateMixStream($request) + { + $runtime = new RuntimeOptions([]); + + return $this->updateMixStreamWithOptions($request, $runtime); + } + + /** + * @param VerifyLiveDomainOwnerRequest $request + * @param RuntimeOptions $runtime + * + * @return VerifyLiveDomainOwnerResponse + */ + public function verifyLiveDomainOwnerWithOptions($request, $runtime) + { + Utils::validateModel($request); + $query = []; + if (!Utils::isUnset($request->domainName)) { + $query['DomainName'] = $request->domainName; + } + if (!Utils::isUnset($request->ownerId)) { + $query['OwnerId'] = $request->ownerId; + } + if (!Utils::isUnset($request->verifyType)) { + $query['VerifyType'] = $request->verifyType; + } + $req = new OpenApiRequest([ + 'query' => OpenApiUtilClient::query($query), + ]); + $params = new Params([ + 'action' => 'VerifyLiveDomainOwner', + 'version' => '2016-11-01', + 'protocol' => 'HTTPS', + 'pathname' => '/', + 'method' => 'POST', + 'authType' => 'AK', + 'style' => 'RPC', + 'reqBodyType' => 'formData', + 'bodyType' => 'json', + ]); + + return VerifyLiveDomainOwnerResponse::fromMap($this->callApi($params, $req, $runtime)); + } + + /** + * @param VerifyLiveDomainOwnerRequest $request + * + * @return VerifyLiveDomainOwnerResponse + */ + public function verifyLiveDomainOwner($request) + { + $runtime = new RuntimeOptions([]); + + return $this->verifyLiveDomainOwnerWithOptions($request, $runtime); + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddCasterComponentRequest.php b/vendor/alibabacloud/live-20161101/src/Models/AddCasterComponentRequest.php new file mode 100644 index 000000000..3afa44cad --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/AddCasterComponentRequest.php @@ -0,0 +1,179 @@ + 'CaptionLayerContent', + 'casterId' => 'CasterId', + 'componentLayer' => 'ComponentLayer', + 'componentName' => 'ComponentName', + 'componentType' => 'ComponentType', + 'effect' => 'Effect', + 'htmlLayerContent' => 'HtmlLayerContent', + 'imageLayerContent' => 'ImageLayerContent', + 'layerOrder' => 'LayerOrder', + 'locationId' => 'LocationId', + 'ownerId' => 'OwnerId', + 'textLayerContent' => 'TextLayerContent', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->captionLayerContent) { + $res['CaptionLayerContent'] = $this->captionLayerContent; + } + if (null !== $this->casterId) { + $res['CasterId'] = $this->casterId; + } + if (null !== $this->componentLayer) { + $res['ComponentLayer'] = $this->componentLayer; + } + if (null !== $this->componentName) { + $res['ComponentName'] = $this->componentName; + } + if (null !== $this->componentType) { + $res['ComponentType'] = $this->componentType; + } + if (null !== $this->effect) { + $res['Effect'] = $this->effect; + } + if (null !== $this->htmlLayerContent) { + $res['HtmlLayerContent'] = $this->htmlLayerContent; + } + if (null !== $this->imageLayerContent) { + $res['ImageLayerContent'] = $this->imageLayerContent; + } + if (null !== $this->layerOrder) { + $res['LayerOrder'] = $this->layerOrder; + } + if (null !== $this->locationId) { + $res['LocationId'] = $this->locationId; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->textLayerContent) { + $res['TextLayerContent'] = $this->textLayerContent; + } + + return $res; + } + + /** + * @param array $map + * + * @return AddCasterComponentRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CaptionLayerContent'])) { + $model->captionLayerContent = $map['CaptionLayerContent']; + } + if (isset($map['CasterId'])) { + $model->casterId = $map['CasterId']; + } + if (isset($map['ComponentLayer'])) { + $model->componentLayer = $map['ComponentLayer']; + } + if (isset($map['ComponentName'])) { + $model->componentName = $map['ComponentName']; + } + if (isset($map['ComponentType'])) { + $model->componentType = $map['ComponentType']; + } + if (isset($map['Effect'])) { + $model->effect = $map['Effect']; + } + if (isset($map['HtmlLayerContent'])) { + $model->htmlLayerContent = $map['HtmlLayerContent']; + } + if (isset($map['ImageLayerContent'])) { + $model->imageLayerContent = $map['ImageLayerContent']; + } + if (isset($map['LayerOrder'])) { + $model->layerOrder = $map['LayerOrder']; + } + if (isset($map['LocationId'])) { + $model->locationId = $map['LocationId']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['TextLayerContent'])) { + $model->textLayerContent = $map['TextLayerContent']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddCasterComponentResponse.php b/vendor/alibabacloud/live-20161101/src/Models/AddCasterComponentResponse.php new file mode 100644 index 000000000..bd42317f8 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/AddCasterComponentResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return AddCasterComponentResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = AddCasterComponentResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddCasterComponentResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/AddCasterComponentResponseBody.php new file mode 100644 index 000000000..e270fb850 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/AddCasterComponentResponseBody.php @@ -0,0 +1,59 @@ + 'ComponentId', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->componentId) { + $res['ComponentId'] = $this->componentId; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return AddCasterComponentResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['ComponentId'])) { + $model->componentId = $map['ComponentId']; + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddCasterEpisodeGroupContentRequest.php b/vendor/alibabacloud/live-20161101/src/Models/AddCasterEpisodeGroupContentRequest.php new file mode 100644 index 000000000..968e5dee1 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/AddCasterEpisodeGroupContentRequest.php @@ -0,0 +1,71 @@ + 'ClientToken', + 'content' => 'Content', + 'ownerId' => 'OwnerId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->clientToken) { + $res['ClientToken'] = $this->clientToken; + } + if (null !== $this->content) { + $res['Content'] = $this->content; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + return $res; + } + + /** + * @param array $map + * + * @return AddCasterEpisodeGroupContentRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['ClientToken'])) { + $model->clientToken = $map['ClientToken']; + } + if (isset($map['Content'])) { + $model->content = $map['Content']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddCasterEpisodeGroupContentResponse.php b/vendor/alibabacloud/live-20161101/src/Models/AddCasterEpisodeGroupContentResponse.php new file mode 100644 index 000000000..86714e0b9 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/AddCasterEpisodeGroupContentResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return AddCasterEpisodeGroupContentResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = AddCasterEpisodeGroupContentResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddCasterEpisodeGroupContentResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/AddCasterEpisodeGroupContentResponseBody.php new file mode 100644 index 000000000..f309f6bb7 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/AddCasterEpisodeGroupContentResponseBody.php @@ -0,0 +1,72 @@ + 'ItemIds', + 'programId' => 'ProgramId', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->itemIds) { + $res['ItemIds'] = null !== $this->itemIds ? $this->itemIds->toMap() : null; + } + if (null !== $this->programId) { + $res['ProgramId'] = $this->programId; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return AddCasterEpisodeGroupContentResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['ItemIds'])) { + $model->itemIds = itemIds::fromMap($map['ItemIds']); + } + if (isset($map['ProgramId'])) { + $model->programId = $map['ProgramId']; + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddCasterEpisodeGroupContentResponseBody/itemIds.php b/vendor/alibabacloud/live-20161101/src/Models/AddCasterEpisodeGroupContentResponseBody/itemIds.php new file mode 100644 index 000000000..85c2207e7 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/AddCasterEpisodeGroupContentResponseBody/itemIds.php @@ -0,0 +1,49 @@ + 'ItemId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->itemId) { + $res['ItemId'] = $this->itemId; + } + + return $res; + } + + /** + * @param array $map + * + * @return itemIds + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['ItemId'])) { + if (!empty($map['ItemId'])) { + $model->itemId = $map['ItemId']; + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddCasterEpisodeGroupRequest.php b/vendor/alibabacloud/live-20161101/src/Models/AddCasterEpisodeGroupRequest.php new file mode 100644 index 000000000..4a5d12f17 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/AddCasterEpisodeGroupRequest.php @@ -0,0 +1,144 @@ + 'CallbackUrl', + 'clientToken' => 'ClientToken', + 'domainName' => 'DomainName', + 'item' => 'Item', + 'ownerId' => 'OwnerId', + 'repeatNum' => 'RepeatNum', + 'sideOutputUrl' => 'SideOutputUrl', + 'startTime' => 'StartTime', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->callbackUrl) { + $res['CallbackUrl'] = $this->callbackUrl; + } + if (null !== $this->clientToken) { + $res['ClientToken'] = $this->clientToken; + } + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->item) { + $res['Item'] = []; + if (null !== $this->item && \is_array($this->item)) { + $n = 0; + foreach ($this->item as $item) { + $res['Item'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->repeatNum) { + $res['RepeatNum'] = $this->repeatNum; + } + if (null !== $this->sideOutputUrl) { + $res['SideOutputUrl'] = $this->sideOutputUrl; + } + if (null !== $this->startTime) { + $res['StartTime'] = $this->startTime; + } + + return $res; + } + + /** + * @param array $map + * + * @return AddCasterEpisodeGroupRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CallbackUrl'])) { + $model->callbackUrl = $map['CallbackUrl']; + } + if (isset($map['ClientToken'])) { + $model->clientToken = $map['ClientToken']; + } + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['Item'])) { + if (!empty($map['Item'])) { + $model->item = []; + $n = 0; + foreach ($map['Item'] as $item) { + $model->item[$n++] = null !== $item ? item::fromMap($item) : $item; + } + } + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['RepeatNum'])) { + $model->repeatNum = $map['RepeatNum']; + } + if (isset($map['SideOutputUrl'])) { + $model->sideOutputUrl = $map['SideOutputUrl']; + } + if (isset($map['StartTime'])) { + $model->startTime = $map['StartTime']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddCasterEpisodeGroupRequest/item.php b/vendor/alibabacloud/live-20161101/src/Models/AddCasterEpisodeGroupRequest/item.php new file mode 100644 index 000000000..3e99994ea --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/AddCasterEpisodeGroupRequest/item.php @@ -0,0 +1,59 @@ + 'ItemName', + 'vodUrl' => 'VodUrl', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->itemName) { + $res['ItemName'] = $this->itemName; + } + if (null !== $this->vodUrl) { + $res['VodUrl'] = $this->vodUrl; + } + + return $res; + } + + /** + * @param array $map + * + * @return item + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['ItemName'])) { + $model->itemName = $map['ItemName']; + } + if (isset($map['VodUrl'])) { + $model->vodUrl = $map['VodUrl']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddCasterEpisodeGroupResponse.php b/vendor/alibabacloud/live-20161101/src/Models/AddCasterEpisodeGroupResponse.php new file mode 100644 index 000000000..c7cfd0f87 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/AddCasterEpisodeGroupResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return AddCasterEpisodeGroupResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = AddCasterEpisodeGroupResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddCasterEpisodeGroupResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/AddCasterEpisodeGroupResponseBody.php new file mode 100644 index 000000000..36180da89 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/AddCasterEpisodeGroupResponseBody.php @@ -0,0 +1,72 @@ + 'ItemIds', + 'programId' => 'ProgramId', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->itemIds) { + $res['ItemIds'] = null !== $this->itemIds ? $this->itemIds->toMap() : null; + } + if (null !== $this->programId) { + $res['ProgramId'] = $this->programId; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return AddCasterEpisodeGroupResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['ItemIds'])) { + $model->itemIds = itemIds::fromMap($map['ItemIds']); + } + if (isset($map['ProgramId'])) { + $model->programId = $map['ProgramId']; + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddCasterEpisodeGroupResponseBody/itemIds.php b/vendor/alibabacloud/live-20161101/src/Models/AddCasterEpisodeGroupResponseBody/itemIds.php new file mode 100644 index 000000000..2bac48462 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/AddCasterEpisodeGroupResponseBody/itemIds.php @@ -0,0 +1,49 @@ + 'ItemId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->itemId) { + $res['ItemId'] = $this->itemId; + } + + return $res; + } + + /** + * @param array $map + * + * @return itemIds + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['ItemId'])) { + if (!empty($map['ItemId'])) { + $model->itemId = $map['ItemId']; + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddCasterEpisodeRequest.php b/vendor/alibabacloud/live-20161101/src/Models/AddCasterEpisodeRequest.php new file mode 100644 index 000000000..8af9136f3 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/AddCasterEpisodeRequest.php @@ -0,0 +1,145 @@ + 'CasterId', + 'componentId' => 'ComponentId', + 'endTime' => 'EndTime', + 'episodeName' => 'EpisodeName', + 'episodeType' => 'EpisodeType', + 'ownerId' => 'OwnerId', + 'resourceId' => 'ResourceId', + 'startTime' => 'StartTime', + 'switchType' => 'SwitchType', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->casterId) { + $res['CasterId'] = $this->casterId; + } + if (null !== $this->componentId) { + $res['ComponentId'] = $this->componentId; + } + if (null !== $this->endTime) { + $res['EndTime'] = $this->endTime; + } + if (null !== $this->episodeName) { + $res['EpisodeName'] = $this->episodeName; + } + if (null !== $this->episodeType) { + $res['EpisodeType'] = $this->episodeType; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->resourceId) { + $res['ResourceId'] = $this->resourceId; + } + if (null !== $this->startTime) { + $res['StartTime'] = $this->startTime; + } + if (null !== $this->switchType) { + $res['SwitchType'] = $this->switchType; + } + + return $res; + } + + /** + * @param array $map + * + * @return AddCasterEpisodeRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CasterId'])) { + $model->casterId = $map['CasterId']; + } + if (isset($map['ComponentId'])) { + if (!empty($map['ComponentId'])) { + $model->componentId = $map['ComponentId']; + } + } + if (isset($map['EndTime'])) { + $model->endTime = $map['EndTime']; + } + if (isset($map['EpisodeName'])) { + $model->episodeName = $map['EpisodeName']; + } + if (isset($map['EpisodeType'])) { + $model->episodeType = $map['EpisodeType']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['ResourceId'])) { + $model->resourceId = $map['ResourceId']; + } + if (isset($map['StartTime'])) { + $model->startTime = $map['StartTime']; + } + if (isset($map['SwitchType'])) { + $model->switchType = $map['SwitchType']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddCasterEpisodeResponse.php b/vendor/alibabacloud/live-20161101/src/Models/AddCasterEpisodeResponse.php new file mode 100644 index 000000000..047d36421 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/AddCasterEpisodeResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return AddCasterEpisodeResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = AddCasterEpisodeResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddCasterEpisodeResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/AddCasterEpisodeResponseBody.php new file mode 100644 index 000000000..1c6e458e6 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/AddCasterEpisodeResponseBody.php @@ -0,0 +1,59 @@ + 'EpisodeId', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->episodeId) { + $res['EpisodeId'] = $this->episodeId; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return AddCasterEpisodeResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['EpisodeId'])) { + $model->episodeId = $map['EpisodeId']; + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddCasterLayoutRequest.php b/vendor/alibabacloud/live-20161101/src/Models/AddCasterLayoutRequest.php new file mode 100644 index 000000000..9092146f6 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/AddCasterLayoutRequest.php @@ -0,0 +1,137 @@ + 'AudioLayer', + 'blendList' => 'BlendList', + 'casterId' => 'CasterId', + 'mixList' => 'MixList', + 'ownerId' => 'OwnerId', + 'videoLayer' => 'VideoLayer', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->audioLayer) { + $res['AudioLayer'] = []; + if (null !== $this->audioLayer && \is_array($this->audioLayer)) { + $n = 0; + foreach ($this->audioLayer as $item) { + $res['AudioLayer'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + if (null !== $this->blendList) { + $res['BlendList'] = $this->blendList; + } + if (null !== $this->casterId) { + $res['CasterId'] = $this->casterId; + } + if (null !== $this->mixList) { + $res['MixList'] = $this->mixList; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->videoLayer) { + $res['VideoLayer'] = []; + if (null !== $this->videoLayer && \is_array($this->videoLayer)) { + $n = 0; + foreach ($this->videoLayer as $item) { + $res['VideoLayer'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return AddCasterLayoutRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AudioLayer'])) { + if (!empty($map['AudioLayer'])) { + $model->audioLayer = []; + $n = 0; + foreach ($map['AudioLayer'] as $item) { + $model->audioLayer[$n++] = null !== $item ? audioLayer::fromMap($item) : $item; + } + } + } + if (isset($map['BlendList'])) { + if (!empty($map['BlendList'])) { + $model->blendList = $map['BlendList']; + } + } + if (isset($map['CasterId'])) { + $model->casterId = $map['CasterId']; + } + if (isset($map['MixList'])) { + if (!empty($map['MixList'])) { + $model->mixList = $map['MixList']; + } + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['VideoLayer'])) { + if (!empty($map['VideoLayer'])) { + $model->videoLayer = []; + $n = 0; + foreach ($map['VideoLayer'] as $item) { + $model->videoLayer[$n++] = null !== $item ? videoLayer::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddCasterLayoutRequest/audioLayer.php b/vendor/alibabacloud/live-20161101/src/Models/AddCasterLayoutRequest/audioLayer.php new file mode 100644 index 000000000..a516d98fc --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/AddCasterLayoutRequest/audioLayer.php @@ -0,0 +1,71 @@ + 'FixedDelayDuration', + 'validChannel' => 'ValidChannel', + 'volumeRate' => 'VolumeRate', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->fixedDelayDuration) { + $res['FixedDelayDuration'] = $this->fixedDelayDuration; + } + if (null !== $this->validChannel) { + $res['ValidChannel'] = $this->validChannel; + } + if (null !== $this->volumeRate) { + $res['VolumeRate'] = $this->volumeRate; + } + + return $res; + } + + /** + * @param array $map + * + * @return audioLayer + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['FixedDelayDuration'])) { + $model->fixedDelayDuration = $map['FixedDelayDuration']; + } + if (isset($map['ValidChannel'])) { + $model->validChannel = $map['ValidChannel']; + } + if (isset($map['VolumeRate'])) { + $model->volumeRate = $map['VolumeRate']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddCasterLayoutRequest/videoLayer.php b/vendor/alibabacloud/live-20161101/src/Models/AddCasterLayoutRequest/videoLayer.php new file mode 100644 index 000000000..e3d33a49b --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/AddCasterLayoutRequest/videoLayer.php @@ -0,0 +1,109 @@ + 'FillMode', + 'fixedDelayDuration' => 'FixedDelayDuration', + 'heightNormalized' => 'HeightNormalized', + 'positionNormalized' => 'PositionNormalized', + 'positionRefer' => 'PositionRefer', + 'widthNormalized' => 'WidthNormalized', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->fillMode) { + $res['FillMode'] = $this->fillMode; + } + if (null !== $this->fixedDelayDuration) { + $res['FixedDelayDuration'] = $this->fixedDelayDuration; + } + if (null !== $this->heightNormalized) { + $res['HeightNormalized'] = $this->heightNormalized; + } + if (null !== $this->positionNormalized) { + $res['PositionNormalized'] = $this->positionNormalized; + } + if (null !== $this->positionRefer) { + $res['PositionRefer'] = $this->positionRefer; + } + if (null !== $this->widthNormalized) { + $res['WidthNormalized'] = $this->widthNormalized; + } + + return $res; + } + + /** + * @param array $map + * + * @return videoLayer + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['FillMode'])) { + $model->fillMode = $map['FillMode']; + } + if (isset($map['FixedDelayDuration'])) { + $model->fixedDelayDuration = $map['FixedDelayDuration']; + } + if (isset($map['HeightNormalized'])) { + $model->heightNormalized = $map['HeightNormalized']; + } + if (isset($map['PositionNormalized'])) { + if (!empty($map['PositionNormalized'])) { + $model->positionNormalized = $map['PositionNormalized']; + } + } + if (isset($map['PositionRefer'])) { + $model->positionRefer = $map['PositionRefer']; + } + if (isset($map['WidthNormalized'])) { + $model->widthNormalized = $map['WidthNormalized']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddCasterLayoutResponse.php b/vendor/alibabacloud/live-20161101/src/Models/AddCasterLayoutResponse.php new file mode 100644 index 000000000..63e9610e6 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/AddCasterLayoutResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return AddCasterLayoutResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = AddCasterLayoutResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddCasterLayoutResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/AddCasterLayoutResponseBody.php new file mode 100644 index 000000000..c5ee28cee --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/AddCasterLayoutResponseBody.php @@ -0,0 +1,59 @@ + 'LayoutId', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->layoutId) { + $res['LayoutId'] = $this->layoutId; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return AddCasterLayoutResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['LayoutId'])) { + $model->layoutId = $map['LayoutId']; + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddCasterProgramRequest.php b/vendor/alibabacloud/live-20161101/src/Models/AddCasterProgramRequest.php new file mode 100644 index 000000000..2c4581d9a --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/AddCasterProgramRequest.php @@ -0,0 +1,84 @@ + 'CasterId', + 'episode' => 'Episode', + 'ownerId' => 'OwnerId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->casterId) { + $res['CasterId'] = $this->casterId; + } + if (null !== $this->episode) { + $res['Episode'] = []; + if (null !== $this->episode && \is_array($this->episode)) { + $n = 0; + foreach ($this->episode as $item) { + $res['Episode'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + return $res; + } + + /** + * @param array $map + * + * @return AddCasterProgramRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CasterId'])) { + $model->casterId = $map['CasterId']; + } + if (isset($map['Episode'])) { + if (!empty($map['Episode'])) { + $model->episode = []; + $n = 0; + foreach ($map['Episode'] as $item) { + $model->episode[$n++] = null !== $item ? episode::fromMap($item) : $item; + } + } + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddCasterProgramRequest/episode.php b/vendor/alibabacloud/live-20161101/src/Models/AddCasterProgramRequest/episode.php new file mode 100644 index 000000000..5b67f1402 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/AddCasterProgramRequest/episode.php @@ -0,0 +1,121 @@ + 'ComponentId', + 'endTime' => 'EndTime', + 'episodeName' => 'EpisodeName', + 'episodeType' => 'EpisodeType', + 'resourceId' => 'ResourceId', + 'startTime' => 'StartTime', + 'switchType' => 'SwitchType', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->componentId) { + $res['ComponentId'] = $this->componentId; + } + if (null !== $this->endTime) { + $res['EndTime'] = $this->endTime; + } + if (null !== $this->episodeName) { + $res['EpisodeName'] = $this->episodeName; + } + if (null !== $this->episodeType) { + $res['EpisodeType'] = $this->episodeType; + } + if (null !== $this->resourceId) { + $res['ResourceId'] = $this->resourceId; + } + if (null !== $this->startTime) { + $res['StartTime'] = $this->startTime; + } + if (null !== $this->switchType) { + $res['SwitchType'] = $this->switchType; + } + + return $res; + } + + /** + * @param array $map + * + * @return episode + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['ComponentId'])) { + if (!empty($map['ComponentId'])) { + $model->componentId = $map['ComponentId']; + } + } + if (isset($map['EndTime'])) { + $model->endTime = $map['EndTime']; + } + if (isset($map['EpisodeName'])) { + $model->episodeName = $map['EpisodeName']; + } + if (isset($map['EpisodeType'])) { + $model->episodeType = $map['EpisodeType']; + } + if (isset($map['ResourceId'])) { + $model->resourceId = $map['ResourceId']; + } + if (isset($map['StartTime'])) { + $model->startTime = $map['StartTime']; + } + if (isset($map['SwitchType'])) { + $model->switchType = $map['SwitchType']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddCasterProgramResponse.php b/vendor/alibabacloud/live-20161101/src/Models/AddCasterProgramResponse.php new file mode 100644 index 000000000..9b69637e7 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/AddCasterProgramResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return AddCasterProgramResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = AddCasterProgramResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddCasterProgramResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/AddCasterProgramResponseBody.php new file mode 100644 index 000000000..96d919d36 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/AddCasterProgramResponseBody.php @@ -0,0 +1,60 @@ + 'EpisodeIds', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->episodeIds) { + $res['EpisodeIds'] = null !== $this->episodeIds ? $this->episodeIds->toMap() : null; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return AddCasterProgramResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['EpisodeIds'])) { + $model->episodeIds = episodeIds::fromMap($map['EpisodeIds']); + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddCasterProgramResponseBody/episodeIds.php b/vendor/alibabacloud/live-20161101/src/Models/AddCasterProgramResponseBody/episodeIds.php new file mode 100644 index 000000000..ecc021483 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/AddCasterProgramResponseBody/episodeIds.php @@ -0,0 +1,60 @@ + 'EpisodeId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->episodeId) { + $res['EpisodeId'] = []; + if (null !== $this->episodeId && \is_array($this->episodeId)) { + $n = 0; + foreach ($this->episodeId as $item) { + $res['EpisodeId'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return episodeIds + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['EpisodeId'])) { + if (!empty($map['EpisodeId'])) { + $model->episodeId = []; + $n = 0; + foreach ($map['EpisodeId'] as $item) { + $model->episodeId[$n++] = null !== $item ? episodeId::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddCasterProgramResponseBody/episodeIds/episodeId.php b/vendor/alibabacloud/live-20161101/src/Models/AddCasterProgramResponseBody/episodeIds/episodeId.php new file mode 100644 index 000000000..cc8cce5d7 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/AddCasterProgramResponseBody/episodeIds/episodeId.php @@ -0,0 +1,47 @@ + 'EpisodeId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->episodeId) { + $res['EpisodeId'] = $this->episodeId; + } + + return $res; + } + + /** + * @param array $map + * + * @return episodeId + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['EpisodeId'])) { + $model->episodeId = $map['EpisodeId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddCasterVideoResourceRequest.php b/vendor/alibabacloud/live-20161101/src/Models/AddCasterVideoResourceRequest.php new file mode 100644 index 000000000..782377131 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/AddCasterVideoResourceRequest.php @@ -0,0 +1,191 @@ + 'BeginOffset', + 'casterId' => 'CasterId', + 'endOffset' => 'EndOffset', + 'fixedDelayDuration' => 'FixedDelayDuration', + 'liveStreamUrl' => 'LiveStreamUrl', + 'locationId' => 'LocationId', + 'materialId' => 'MaterialId', + 'ownerId' => 'OwnerId', + 'ptsCallbackInterval' => 'PtsCallbackInterval', + 'repeatNum' => 'RepeatNum', + 'resourceName' => 'ResourceName', + 'streamId' => 'StreamId', + 'vodUrl' => 'VodUrl', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->beginOffset) { + $res['BeginOffset'] = $this->beginOffset; + } + if (null !== $this->casterId) { + $res['CasterId'] = $this->casterId; + } + if (null !== $this->endOffset) { + $res['EndOffset'] = $this->endOffset; + } + if (null !== $this->fixedDelayDuration) { + $res['FixedDelayDuration'] = $this->fixedDelayDuration; + } + if (null !== $this->liveStreamUrl) { + $res['LiveStreamUrl'] = $this->liveStreamUrl; + } + if (null !== $this->locationId) { + $res['LocationId'] = $this->locationId; + } + if (null !== $this->materialId) { + $res['MaterialId'] = $this->materialId; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->ptsCallbackInterval) { + $res['PtsCallbackInterval'] = $this->ptsCallbackInterval; + } + if (null !== $this->repeatNum) { + $res['RepeatNum'] = $this->repeatNum; + } + if (null !== $this->resourceName) { + $res['ResourceName'] = $this->resourceName; + } + if (null !== $this->streamId) { + $res['StreamId'] = $this->streamId; + } + if (null !== $this->vodUrl) { + $res['VodUrl'] = $this->vodUrl; + } + + return $res; + } + + /** + * @param array $map + * + * @return AddCasterVideoResourceRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['BeginOffset'])) { + $model->beginOffset = $map['BeginOffset']; + } + if (isset($map['CasterId'])) { + $model->casterId = $map['CasterId']; + } + if (isset($map['EndOffset'])) { + $model->endOffset = $map['EndOffset']; + } + if (isset($map['FixedDelayDuration'])) { + $model->fixedDelayDuration = $map['FixedDelayDuration']; + } + if (isset($map['LiveStreamUrl'])) { + $model->liveStreamUrl = $map['LiveStreamUrl']; + } + if (isset($map['LocationId'])) { + $model->locationId = $map['LocationId']; + } + if (isset($map['MaterialId'])) { + $model->materialId = $map['MaterialId']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['PtsCallbackInterval'])) { + $model->ptsCallbackInterval = $map['PtsCallbackInterval']; + } + if (isset($map['RepeatNum'])) { + $model->repeatNum = $map['RepeatNum']; + } + if (isset($map['ResourceName'])) { + $model->resourceName = $map['ResourceName']; + } + if (isset($map['StreamId'])) { + $model->streamId = $map['StreamId']; + } + if (isset($map['VodUrl'])) { + $model->vodUrl = $map['VodUrl']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddCasterVideoResourceResponse.php b/vendor/alibabacloud/live-20161101/src/Models/AddCasterVideoResourceResponse.php new file mode 100644 index 000000000..f1829a17e --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/AddCasterVideoResourceResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return AddCasterVideoResourceResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = AddCasterVideoResourceResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddCasterVideoResourceResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/AddCasterVideoResourceResponseBody.php new file mode 100644 index 000000000..1121b249b --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/AddCasterVideoResourceResponseBody.php @@ -0,0 +1,59 @@ + 'RequestId', + 'resourceId' => 'ResourceId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->resourceId) { + $res['ResourceId'] = $this->resourceId; + } + + return $res; + } + + /** + * @param array $map + * + * @return AddCasterVideoResourceResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['ResourceId'])) { + $model->resourceId = $map['ResourceId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddCustomLiveStreamTranscodeRequest.php b/vendor/alibabacloud/live-20161101/src/Models/AddCustomLiveStreamTranscodeRequest.php new file mode 100644 index 000000000..db33e46fd --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/AddCustomLiveStreamTranscodeRequest.php @@ -0,0 +1,275 @@ + 'App', + 'audioBitrate' => 'AudioBitrate', + 'audioChannelNum' => 'AudioChannelNum', + 'audioCodec' => 'AudioCodec', + 'audioProfile' => 'AudioProfile', + 'audioRate' => 'AudioRate', + 'domain' => 'Domain', + 'encryptParameters' => 'EncryptParameters', + 'FPS' => 'FPS', + 'gop' => 'Gop', + 'height' => 'Height', + 'kmsKeyExpireInterval' => 'KmsKeyExpireInterval', + 'kmsKeyID' => 'KmsKeyID', + 'kmsUID' => 'KmsUID', + 'ownerId' => 'OwnerId', + 'profile' => 'Profile', + 'template' => 'Template', + 'templateType' => 'TemplateType', + 'videoBitrate' => 'VideoBitrate', + 'width' => 'Width', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->app) { + $res['App'] = $this->app; + } + if (null !== $this->audioBitrate) { + $res['AudioBitrate'] = $this->audioBitrate; + } + if (null !== $this->audioChannelNum) { + $res['AudioChannelNum'] = $this->audioChannelNum; + } + if (null !== $this->audioCodec) { + $res['AudioCodec'] = $this->audioCodec; + } + if (null !== $this->audioProfile) { + $res['AudioProfile'] = $this->audioProfile; + } + if (null !== $this->audioRate) { + $res['AudioRate'] = $this->audioRate; + } + if (null !== $this->domain) { + $res['Domain'] = $this->domain; + } + if (null !== $this->encryptParameters) { + $res['EncryptParameters'] = $this->encryptParameters; + } + if (null !== $this->FPS) { + $res['FPS'] = $this->FPS; + } + if (null !== $this->gop) { + $res['Gop'] = $this->gop; + } + if (null !== $this->height) { + $res['Height'] = $this->height; + } + if (null !== $this->kmsKeyExpireInterval) { + $res['KmsKeyExpireInterval'] = $this->kmsKeyExpireInterval; + } + if (null !== $this->kmsKeyID) { + $res['KmsKeyID'] = $this->kmsKeyID; + } + if (null !== $this->kmsUID) { + $res['KmsUID'] = $this->kmsUID; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->profile) { + $res['Profile'] = $this->profile; + } + if (null !== $this->template) { + $res['Template'] = $this->template; + } + if (null !== $this->templateType) { + $res['TemplateType'] = $this->templateType; + } + if (null !== $this->videoBitrate) { + $res['VideoBitrate'] = $this->videoBitrate; + } + if (null !== $this->width) { + $res['Width'] = $this->width; + } + + return $res; + } + + /** + * @param array $map + * + * @return AddCustomLiveStreamTranscodeRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['App'])) { + $model->app = $map['App']; + } + if (isset($map['AudioBitrate'])) { + $model->audioBitrate = $map['AudioBitrate']; + } + if (isset($map['AudioChannelNum'])) { + $model->audioChannelNum = $map['AudioChannelNum']; + } + if (isset($map['AudioCodec'])) { + $model->audioCodec = $map['AudioCodec']; + } + if (isset($map['AudioProfile'])) { + $model->audioProfile = $map['AudioProfile']; + } + if (isset($map['AudioRate'])) { + $model->audioRate = $map['AudioRate']; + } + if (isset($map['Domain'])) { + $model->domain = $map['Domain']; + } + if (isset($map['EncryptParameters'])) { + $model->encryptParameters = $map['EncryptParameters']; + } + if (isset($map['FPS'])) { + $model->FPS = $map['FPS']; + } + if (isset($map['Gop'])) { + $model->gop = $map['Gop']; + } + if (isset($map['Height'])) { + $model->height = $map['Height']; + } + if (isset($map['KmsKeyExpireInterval'])) { + $model->kmsKeyExpireInterval = $map['KmsKeyExpireInterval']; + } + if (isset($map['KmsKeyID'])) { + $model->kmsKeyID = $map['KmsKeyID']; + } + if (isset($map['KmsUID'])) { + $model->kmsUID = $map['KmsUID']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['Profile'])) { + $model->profile = $map['Profile']; + } + if (isset($map['Template'])) { + $model->template = $map['Template']; + } + if (isset($map['TemplateType'])) { + $model->templateType = $map['TemplateType']; + } + if (isset($map['VideoBitrate'])) { + $model->videoBitrate = $map['VideoBitrate']; + } + if (isset($map['Width'])) { + $model->width = $map['Width']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddCustomLiveStreamTranscodeResponse.php b/vendor/alibabacloud/live-20161101/src/Models/AddCustomLiveStreamTranscodeResponse.php new file mode 100644 index 000000000..48a83f123 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/AddCustomLiveStreamTranscodeResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return AddCustomLiveStreamTranscodeResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = AddCustomLiveStreamTranscodeResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddCustomLiveStreamTranscodeResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/AddCustomLiveStreamTranscodeResponseBody.php new file mode 100644 index 000000000..8d4d94037 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/AddCustomLiveStreamTranscodeResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return AddCustomLiveStreamTranscodeResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddDRMCertificateRequest.php b/vendor/alibabacloud/live-20161101/src/Models/AddDRMCertificateRequest.php new file mode 100644 index 000000000..58a2af072 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/AddDRMCertificateRequest.php @@ -0,0 +1,119 @@ + 'OwnerId', + 'certName' => 'CertName', + 'servCert' => 'ServCert', + 'privateKey' => 'PrivateKey', + 'passphrase' => 'Passphrase', + 'ask' => 'Ask', + 'description' => 'Description', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->certName) { + $res['CertName'] = $this->certName; + } + if (null !== $this->servCert) { + $res['ServCert'] = $this->servCert; + } + if (null !== $this->privateKey) { + $res['PrivateKey'] = $this->privateKey; + } + if (null !== $this->passphrase) { + $res['Passphrase'] = $this->passphrase; + } + if (null !== $this->ask) { + $res['Ask'] = $this->ask; + } + if (null !== $this->description) { + $res['Description'] = $this->description; + } + + return $res; + } + + /** + * @param array $map + * + * @return AddDRMCertificateRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['CertName'])) { + $model->certName = $map['CertName']; + } + if (isset($map['ServCert'])) { + $model->servCert = $map['ServCert']; + } + if (isset($map['PrivateKey'])) { + $model->privateKey = $map['PrivateKey']; + } + if (isset($map['Passphrase'])) { + $model->passphrase = $map['Passphrase']; + } + if (isset($map['Ask'])) { + $model->ask = $map['Ask']; + } + if (isset($map['Description'])) { + $model->description = $map['Description']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddDRMCertificateResponse.php b/vendor/alibabacloud/live-20161101/src/Models/AddDRMCertificateResponse.php new file mode 100644 index 000000000..3d9d8ce17 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/AddDRMCertificateResponse.php @@ -0,0 +1,61 @@ + 'headers', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return AddDRMCertificateResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['body'])) { + $model->body = AddDRMCertificateResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddDRMCertificateResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/AddDRMCertificateResponseBody.php new file mode 100644 index 000000000..f0da1069e --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/AddDRMCertificateResponseBody.php @@ -0,0 +1,59 @@ + 'RequestId', + 'certId' => 'CertId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->certId) { + $res['CertId'] = $this->certId; + } + + return $res; + } + + /** + * @param array $map + * + * @return AddDRMCertificateResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['CertId'])) { + $model->certId = $map['CertId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddLiveASRConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/AddLiveASRConfigRequest.php new file mode 100644 index 000000000..bee2da4c5 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/AddLiveASRConfigRequest.php @@ -0,0 +1,131 @@ + 'OwnerId', + 'domainName' => 'DomainName', + 'appName' => 'AppName', + 'streamName' => 'StreamName', + 'mnsTopic' => 'MnsTopic', + 'mnsRegion' => 'MnsRegion', + 'period' => 'Period', + 'httpCallbackURL' => 'HttpCallbackURL', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->appName) { + $res['AppName'] = $this->appName; + } + if (null !== $this->streamName) { + $res['StreamName'] = $this->streamName; + } + if (null !== $this->mnsTopic) { + $res['MnsTopic'] = $this->mnsTopic; + } + if (null !== $this->mnsRegion) { + $res['MnsRegion'] = $this->mnsRegion; + } + if (null !== $this->period) { + $res['Period'] = $this->period; + } + if (null !== $this->httpCallbackURL) { + $res['HttpCallbackURL'] = $this->httpCallbackURL; + } + + return $res; + } + + /** + * @param array $map + * + * @return AddLiveASRConfigRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['AppName'])) { + $model->appName = $map['AppName']; + } + if (isset($map['StreamName'])) { + $model->streamName = $map['StreamName']; + } + if (isset($map['MnsTopic'])) { + $model->mnsTopic = $map['MnsTopic']; + } + if (isset($map['MnsRegion'])) { + $model->mnsRegion = $map['MnsRegion']; + } + if (isset($map['Period'])) { + $model->period = $map['Period']; + } + if (isset($map['HttpCallbackURL'])) { + $model->httpCallbackURL = $map['HttpCallbackURL']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddLiveASRConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/AddLiveASRConfigResponse.php new file mode 100644 index 000000000..ca49bf1c9 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/AddLiveASRConfigResponse.php @@ -0,0 +1,61 @@ + 'headers', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return AddLiveASRConfigResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['body'])) { + $model->body = AddLiveASRConfigResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddLiveASRConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/AddLiveASRConfigResponseBody.php new file mode 100644 index 000000000..a39bb2e9e --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/AddLiveASRConfigResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return AddLiveASRConfigResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddLiveAppRecordConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/AddLiveAppRecordConfigRequest.php new file mode 100644 index 000000000..efee785bf --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/AddLiveAppRecordConfigRequest.php @@ -0,0 +1,219 @@ + 'AppName', + 'domainName' => 'DomainName', + 'endTime' => 'EndTime', + 'onDemand' => 'OnDemand', + 'ossBucket' => 'OssBucket', + 'ossEndpoint' => 'OssEndpoint', + 'ownerId' => 'OwnerId', + 'recordFormat' => 'RecordFormat', + 'securityToken' => 'SecurityToken', + 'startTime' => 'StartTime', + 'streamName' => 'StreamName', + 'transcodeRecordFormat' => 'TranscodeRecordFormat', + 'transcodeTemplates' => 'TranscodeTemplates', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->appName) { + $res['AppName'] = $this->appName; + } + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->endTime) { + $res['EndTime'] = $this->endTime; + } + if (null !== $this->onDemand) { + $res['OnDemand'] = $this->onDemand; + } + if (null !== $this->ossBucket) { + $res['OssBucket'] = $this->ossBucket; + } + if (null !== $this->ossEndpoint) { + $res['OssEndpoint'] = $this->ossEndpoint; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->recordFormat) { + $res['RecordFormat'] = []; + if (null !== $this->recordFormat && \is_array($this->recordFormat)) { + $n = 0; + foreach ($this->recordFormat as $item) { + $res['RecordFormat'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + if (null !== $this->securityToken) { + $res['SecurityToken'] = $this->securityToken; + } + if (null !== $this->startTime) { + $res['StartTime'] = $this->startTime; + } + if (null !== $this->streamName) { + $res['StreamName'] = $this->streamName; + } + if (null !== $this->transcodeRecordFormat) { + $res['TranscodeRecordFormat'] = []; + if (null !== $this->transcodeRecordFormat && \is_array($this->transcodeRecordFormat)) { + $n = 0; + foreach ($this->transcodeRecordFormat as $item) { + $res['TranscodeRecordFormat'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + if (null !== $this->transcodeTemplates) { + $res['TranscodeTemplates'] = $this->transcodeTemplates; + } + + return $res; + } + + /** + * @param array $map + * + * @return AddLiveAppRecordConfigRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppName'])) { + $model->appName = $map['AppName']; + } + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['EndTime'])) { + $model->endTime = $map['EndTime']; + } + if (isset($map['OnDemand'])) { + $model->onDemand = $map['OnDemand']; + } + if (isset($map['OssBucket'])) { + $model->ossBucket = $map['OssBucket']; + } + if (isset($map['OssEndpoint'])) { + $model->ossEndpoint = $map['OssEndpoint']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['RecordFormat'])) { + if (!empty($map['RecordFormat'])) { + $model->recordFormat = []; + $n = 0; + foreach ($map['RecordFormat'] as $item) { + $model->recordFormat[$n++] = null !== $item ? recordFormat::fromMap($item) : $item; + } + } + } + if (isset($map['SecurityToken'])) { + $model->securityToken = $map['SecurityToken']; + } + if (isset($map['StartTime'])) { + $model->startTime = $map['StartTime']; + } + if (isset($map['StreamName'])) { + $model->streamName = $map['StreamName']; + } + if (isset($map['TranscodeRecordFormat'])) { + if (!empty($map['TranscodeRecordFormat'])) { + $model->transcodeRecordFormat = []; + $n = 0; + foreach ($map['TranscodeRecordFormat'] as $item) { + $model->transcodeRecordFormat[$n++] = null !== $item ? transcodeRecordFormat::fromMap($item) : $item; + } + } + } + if (isset($map['TranscodeTemplates'])) { + if (!empty($map['TranscodeTemplates'])) { + $model->transcodeTemplates = $map['TranscodeTemplates']; + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddLiveAppRecordConfigRequest/recordFormat.php b/vendor/alibabacloud/live-20161101/src/Models/AddLiveAppRecordConfigRequest/recordFormat.php new file mode 100644 index 000000000..bed675b0c --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/AddLiveAppRecordConfigRequest/recordFormat.php @@ -0,0 +1,95 @@ + 'CycleDuration', + 'format' => 'Format', + 'ossObjectPrefix' => 'OssObjectPrefix', + 'sliceDuration' => 'SliceDuration', + 'sliceOssObjectPrefix' => 'SliceOssObjectPrefix', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->cycleDuration) { + $res['CycleDuration'] = $this->cycleDuration; + } + if (null !== $this->format) { + $res['Format'] = $this->format; + } + if (null !== $this->ossObjectPrefix) { + $res['OssObjectPrefix'] = $this->ossObjectPrefix; + } + if (null !== $this->sliceDuration) { + $res['SliceDuration'] = $this->sliceDuration; + } + if (null !== $this->sliceOssObjectPrefix) { + $res['SliceOssObjectPrefix'] = $this->sliceOssObjectPrefix; + } + + return $res; + } + + /** + * @param array $map + * + * @return recordFormat + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CycleDuration'])) { + $model->cycleDuration = $map['CycleDuration']; + } + if (isset($map['Format'])) { + $model->format = $map['Format']; + } + if (isset($map['OssObjectPrefix'])) { + $model->ossObjectPrefix = $map['OssObjectPrefix']; + } + if (isset($map['SliceDuration'])) { + $model->sliceDuration = $map['SliceDuration']; + } + if (isset($map['SliceOssObjectPrefix'])) { + $model->sliceOssObjectPrefix = $map['SliceOssObjectPrefix']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddLiveAppRecordConfigRequest/transcodeRecordFormat.php b/vendor/alibabacloud/live-20161101/src/Models/AddLiveAppRecordConfigRequest/transcodeRecordFormat.php new file mode 100644 index 000000000..e454bac14 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/AddLiveAppRecordConfigRequest/transcodeRecordFormat.php @@ -0,0 +1,95 @@ + 'CycleDuration', + 'format' => 'Format', + 'ossObjectPrefix' => 'OssObjectPrefix', + 'sliceDuration' => 'SliceDuration', + 'sliceOssObjectPrefix' => 'SliceOssObjectPrefix', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->cycleDuration) { + $res['CycleDuration'] = $this->cycleDuration; + } + if (null !== $this->format) { + $res['Format'] = $this->format; + } + if (null !== $this->ossObjectPrefix) { + $res['OssObjectPrefix'] = $this->ossObjectPrefix; + } + if (null !== $this->sliceDuration) { + $res['SliceDuration'] = $this->sliceDuration; + } + if (null !== $this->sliceOssObjectPrefix) { + $res['SliceOssObjectPrefix'] = $this->sliceOssObjectPrefix; + } + + return $res; + } + + /** + * @param array $map + * + * @return transcodeRecordFormat + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CycleDuration'])) { + $model->cycleDuration = $map['CycleDuration']; + } + if (isset($map['Format'])) { + $model->format = $map['Format']; + } + if (isset($map['OssObjectPrefix'])) { + $model->ossObjectPrefix = $map['OssObjectPrefix']; + } + if (isset($map['SliceDuration'])) { + $model->sliceDuration = $map['SliceDuration']; + } + if (isset($map['SliceOssObjectPrefix'])) { + $model->sliceOssObjectPrefix = $map['SliceOssObjectPrefix']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddLiveAppRecordConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/AddLiveAppRecordConfigResponse.php new file mode 100644 index 000000000..cd73ef4c0 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/AddLiveAppRecordConfigResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return AddLiveAppRecordConfigResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = AddLiveAppRecordConfigResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddLiveAppRecordConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/AddLiveAppRecordConfigResponseBody.php new file mode 100644 index 000000000..6b0727c06 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/AddLiveAppRecordConfigResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return AddLiveAppRecordConfigResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddLiveAppSnapshotConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/AddLiveAppSnapshotConfigRequest.php new file mode 100644 index 000000000..616609863 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/AddLiveAppSnapshotConfigRequest.php @@ -0,0 +1,155 @@ + 'AppName', + 'callback' => 'Callback', + 'domainName' => 'DomainName', + 'ossBucket' => 'OssBucket', + 'ossEndpoint' => 'OssEndpoint', + 'overwriteOssObject' => 'OverwriteOssObject', + 'ownerId' => 'OwnerId', + 'securityToken' => 'SecurityToken', + 'sequenceOssObject' => 'SequenceOssObject', + 'timeInterval' => 'TimeInterval', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->appName) { + $res['AppName'] = $this->appName; + } + if (null !== $this->callback) { + $res['Callback'] = $this->callback; + } + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->ossBucket) { + $res['OssBucket'] = $this->ossBucket; + } + if (null !== $this->ossEndpoint) { + $res['OssEndpoint'] = $this->ossEndpoint; + } + if (null !== $this->overwriteOssObject) { + $res['OverwriteOssObject'] = $this->overwriteOssObject; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->securityToken) { + $res['SecurityToken'] = $this->securityToken; + } + if (null !== $this->sequenceOssObject) { + $res['SequenceOssObject'] = $this->sequenceOssObject; + } + if (null !== $this->timeInterval) { + $res['TimeInterval'] = $this->timeInterval; + } + + return $res; + } + + /** + * @param array $map + * + * @return AddLiveAppSnapshotConfigRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppName'])) { + $model->appName = $map['AppName']; + } + if (isset($map['Callback'])) { + $model->callback = $map['Callback']; + } + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['OssBucket'])) { + $model->ossBucket = $map['OssBucket']; + } + if (isset($map['OssEndpoint'])) { + $model->ossEndpoint = $map['OssEndpoint']; + } + if (isset($map['OverwriteOssObject'])) { + $model->overwriteOssObject = $map['OverwriteOssObject']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['SecurityToken'])) { + $model->securityToken = $map['SecurityToken']; + } + if (isset($map['SequenceOssObject'])) { + $model->sequenceOssObject = $map['SequenceOssObject']; + } + if (isset($map['TimeInterval'])) { + $model->timeInterval = $map['TimeInterval']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddLiveAppSnapshotConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/AddLiveAppSnapshotConfigResponse.php new file mode 100644 index 000000000..c4f9b1af3 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/AddLiveAppSnapshotConfigResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return AddLiveAppSnapshotConfigResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = AddLiveAppSnapshotConfigResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddLiveAppSnapshotConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/AddLiveAppSnapshotConfigResponseBody.php new file mode 100644 index 000000000..16dd5cce5 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/AddLiveAppSnapshotConfigResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return AddLiveAppSnapshotConfigResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddLiveAudioAuditConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/AddLiveAudioAuditConfigRequest.php new file mode 100644 index 000000000..45401b11e --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/AddLiveAudioAuditConfigRequest.php @@ -0,0 +1,131 @@ + 'AppName', + 'bizType' => 'BizType', + 'domainName' => 'DomainName', + 'ossBucket' => 'OssBucket', + 'ossEndpoint' => 'OssEndpoint', + 'ossObject' => 'OssObject', + 'ownerId' => 'OwnerId', + 'streamName' => 'StreamName', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->appName) { + $res['AppName'] = $this->appName; + } + if (null !== $this->bizType) { + $res['BizType'] = $this->bizType; + } + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->ossBucket) { + $res['OssBucket'] = $this->ossBucket; + } + if (null !== $this->ossEndpoint) { + $res['OssEndpoint'] = $this->ossEndpoint; + } + if (null !== $this->ossObject) { + $res['OssObject'] = $this->ossObject; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->streamName) { + $res['StreamName'] = $this->streamName; + } + + return $res; + } + + /** + * @param array $map + * + * @return AddLiveAudioAuditConfigRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppName'])) { + $model->appName = $map['AppName']; + } + if (isset($map['BizType'])) { + $model->bizType = $map['BizType']; + } + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['OssBucket'])) { + $model->ossBucket = $map['OssBucket']; + } + if (isset($map['OssEndpoint'])) { + $model->ossEndpoint = $map['OssEndpoint']; + } + if (isset($map['OssObject'])) { + $model->ossObject = $map['OssObject']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['StreamName'])) { + $model->streamName = $map['StreamName']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddLiveAudioAuditConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/AddLiveAudioAuditConfigResponse.php new file mode 100644 index 000000000..103b7e14b --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/AddLiveAudioAuditConfigResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return AddLiveAudioAuditConfigResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = AddLiveAudioAuditConfigResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddLiveAudioAuditConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/AddLiveAudioAuditConfigResponseBody.php new file mode 100644 index 000000000..16d68bf32 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/AddLiveAudioAuditConfigResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return AddLiveAudioAuditConfigResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddLiveAudioAuditNotifyConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/AddLiveAudioAuditNotifyConfigRequest.php new file mode 100644 index 000000000..acb43c679 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/AddLiveAudioAuditNotifyConfigRequest.php @@ -0,0 +1,83 @@ + 'Callback', + 'callbackTemplate' => 'CallbackTemplate', + 'domainName' => 'DomainName', + 'ownerId' => 'OwnerId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->callback) { + $res['Callback'] = $this->callback; + } + if (null !== $this->callbackTemplate) { + $res['CallbackTemplate'] = $this->callbackTemplate; + } + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + return $res; + } + + /** + * @param array $map + * + * @return AddLiveAudioAuditNotifyConfigRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Callback'])) { + $model->callback = $map['Callback']; + } + if (isset($map['CallbackTemplate'])) { + $model->callbackTemplate = $map['CallbackTemplate']; + } + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddLiveAudioAuditNotifyConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/AddLiveAudioAuditNotifyConfigResponse.php new file mode 100644 index 000000000..8495bbe9e --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/AddLiveAudioAuditNotifyConfigResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return AddLiveAudioAuditNotifyConfigResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = AddLiveAudioAuditNotifyConfigResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddLiveAudioAuditNotifyConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/AddLiveAudioAuditNotifyConfigResponseBody.php new file mode 100644 index 000000000..0f3a9c520 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/AddLiveAudioAuditNotifyConfigResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return AddLiveAudioAuditNotifyConfigResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddLiveDetectNotifyConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/AddLiveDetectNotifyConfigRequest.php new file mode 100644 index 000000000..9aa8489c8 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/AddLiveDetectNotifyConfigRequest.php @@ -0,0 +1,83 @@ + 'DomainName', + 'notifyUrl' => 'NotifyUrl', + 'ownerId' => 'OwnerId', + 'securityToken' => 'SecurityToken', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->notifyUrl) { + $res['NotifyUrl'] = $this->notifyUrl; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->securityToken) { + $res['SecurityToken'] = $this->securityToken; + } + + return $res; + } + + /** + * @param array $map + * + * @return AddLiveDetectNotifyConfigRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['NotifyUrl'])) { + $model->notifyUrl = $map['NotifyUrl']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['SecurityToken'])) { + $model->securityToken = $map['SecurityToken']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddLiveDetectNotifyConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/AddLiveDetectNotifyConfigResponse.php new file mode 100644 index 000000000..c531caa65 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/AddLiveDetectNotifyConfigResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return AddLiveDetectNotifyConfigResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = AddLiveDetectNotifyConfigResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddLiveDetectNotifyConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/AddLiveDetectNotifyConfigResponseBody.php new file mode 100644 index 000000000..44d75f7b5 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/AddLiveDetectNotifyConfigResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return AddLiveDetectNotifyConfigResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddLiveDomainMappingRequest.php b/vendor/alibabacloud/live-20161101/src/Models/AddLiveDomainMappingRequest.php new file mode 100644 index 000000000..3e4c1b917 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/AddLiveDomainMappingRequest.php @@ -0,0 +1,83 @@ + 'OwnerId', + 'pullDomain' => 'PullDomain', + 'pushDomain' => 'PushDomain', + 'securityToken' => 'SecurityToken', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->pullDomain) { + $res['PullDomain'] = $this->pullDomain; + } + if (null !== $this->pushDomain) { + $res['PushDomain'] = $this->pushDomain; + } + if (null !== $this->securityToken) { + $res['SecurityToken'] = $this->securityToken; + } + + return $res; + } + + /** + * @param array $map + * + * @return AddLiveDomainMappingRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['PullDomain'])) { + $model->pullDomain = $map['PullDomain']; + } + if (isset($map['PushDomain'])) { + $model->pushDomain = $map['PushDomain']; + } + if (isset($map['SecurityToken'])) { + $model->securityToken = $map['SecurityToken']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddLiveDomainMappingResponse.php b/vendor/alibabacloud/live-20161101/src/Models/AddLiveDomainMappingResponse.php new file mode 100644 index 000000000..f790c2d93 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/AddLiveDomainMappingResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return AddLiveDomainMappingResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = AddLiveDomainMappingResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddLiveDomainMappingResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/AddLiveDomainMappingResponseBody.php new file mode 100644 index 000000000..719cecf74 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/AddLiveDomainMappingResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return AddLiveDomainMappingResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddLiveDomainPlayMappingRequest.php b/vendor/alibabacloud/live-20161101/src/Models/AddLiveDomainPlayMappingRequest.php new file mode 100644 index 000000000..c6ffba122 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/AddLiveDomainPlayMappingRequest.php @@ -0,0 +1,71 @@ + 'OwnerId', + 'playDomain' => 'PlayDomain', + 'pullDomain' => 'PullDomain', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->playDomain) { + $res['PlayDomain'] = $this->playDomain; + } + if (null !== $this->pullDomain) { + $res['PullDomain'] = $this->pullDomain; + } + + return $res; + } + + /** + * @param array $map + * + * @return AddLiveDomainPlayMappingRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['PlayDomain'])) { + $model->playDomain = $map['PlayDomain']; + } + if (isset($map['PullDomain'])) { + $model->pullDomain = $map['PullDomain']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddLiveDomainPlayMappingResponse.php b/vendor/alibabacloud/live-20161101/src/Models/AddLiveDomainPlayMappingResponse.php new file mode 100644 index 000000000..d2928b0a7 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/AddLiveDomainPlayMappingResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return AddLiveDomainPlayMappingResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = AddLiveDomainPlayMappingResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddLiveDomainPlayMappingResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/AddLiveDomainPlayMappingResponseBody.php new file mode 100644 index 000000000..217ccb380 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/AddLiveDomainPlayMappingResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return AddLiveDomainPlayMappingResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddLiveDomainRequest.php b/vendor/alibabacloud/live-20161101/src/Models/AddLiveDomainRequest.php new file mode 100644 index 000000000..929176fa1 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/AddLiveDomainRequest.php @@ -0,0 +1,143 @@ + 'CheckUrl', + 'domainName' => 'DomainName', + 'liveDomainType' => 'LiveDomainType', + 'ownerAccount' => 'OwnerAccount', + 'ownerId' => 'OwnerId', + 'region' => 'Region', + 'scope' => 'Scope', + 'securityToken' => 'SecurityToken', + 'topLevelDomain' => 'TopLevelDomain', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->checkUrl) { + $res['CheckUrl'] = $this->checkUrl; + } + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->liveDomainType) { + $res['LiveDomainType'] = $this->liveDomainType; + } + if (null !== $this->ownerAccount) { + $res['OwnerAccount'] = $this->ownerAccount; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->region) { + $res['Region'] = $this->region; + } + if (null !== $this->scope) { + $res['Scope'] = $this->scope; + } + if (null !== $this->securityToken) { + $res['SecurityToken'] = $this->securityToken; + } + if (null !== $this->topLevelDomain) { + $res['TopLevelDomain'] = $this->topLevelDomain; + } + + return $res; + } + + /** + * @param array $map + * + * @return AddLiveDomainRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CheckUrl'])) { + $model->checkUrl = $map['CheckUrl']; + } + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['LiveDomainType'])) { + $model->liveDomainType = $map['LiveDomainType']; + } + if (isset($map['OwnerAccount'])) { + $model->ownerAccount = $map['OwnerAccount']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['Region'])) { + $model->region = $map['Region']; + } + if (isset($map['Scope'])) { + $model->scope = $map['Scope']; + } + if (isset($map['SecurityToken'])) { + $model->securityToken = $map['SecurityToken']; + } + if (isset($map['TopLevelDomain'])) { + $model->topLevelDomain = $map['TopLevelDomain']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddLiveDomainResponse.php b/vendor/alibabacloud/live-20161101/src/Models/AddLiveDomainResponse.php new file mode 100644 index 000000000..ba45d82a5 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/AddLiveDomainResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return AddLiveDomainResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = AddLiveDomainResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddLiveDomainResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/AddLiveDomainResponseBody.php new file mode 100644 index 000000000..78d200f00 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/AddLiveDomainResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return AddLiveDomainResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddLivePullStreamInfoConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/AddLivePullStreamInfoConfigRequest.php new file mode 100644 index 000000000..50cfae805 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/AddLivePullStreamInfoConfigRequest.php @@ -0,0 +1,119 @@ + 'AppName', + 'domainName' => 'DomainName', + 'endTime' => 'EndTime', + 'ownerId' => 'OwnerId', + 'sourceUrl' => 'SourceUrl', + 'startTime' => 'StartTime', + 'streamName' => 'StreamName', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->appName) { + $res['AppName'] = $this->appName; + } + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->endTime) { + $res['EndTime'] = $this->endTime; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->sourceUrl) { + $res['SourceUrl'] = $this->sourceUrl; + } + if (null !== $this->startTime) { + $res['StartTime'] = $this->startTime; + } + if (null !== $this->streamName) { + $res['StreamName'] = $this->streamName; + } + + return $res; + } + + /** + * @param array $map + * + * @return AddLivePullStreamInfoConfigRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppName'])) { + $model->appName = $map['AppName']; + } + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['EndTime'])) { + $model->endTime = $map['EndTime']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['SourceUrl'])) { + $model->sourceUrl = $map['SourceUrl']; + } + if (isset($map['StartTime'])) { + $model->startTime = $map['StartTime']; + } + if (isset($map['StreamName'])) { + $model->streamName = $map['StreamName']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddLivePullStreamInfoConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/AddLivePullStreamInfoConfigResponse.php new file mode 100644 index 000000000..8923e3708 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/AddLivePullStreamInfoConfigResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return AddLivePullStreamInfoConfigResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = AddLivePullStreamInfoConfigResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddLivePullStreamInfoConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/AddLivePullStreamInfoConfigResponseBody.php new file mode 100644 index 000000000..de5c79430 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/AddLivePullStreamInfoConfigResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return AddLivePullStreamInfoConfigResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddLiveRecordNotifyConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/AddLiveRecordNotifyConfigRequest.php new file mode 100644 index 000000000..d2c6f4cd5 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/AddLiveRecordNotifyConfigRequest.php @@ -0,0 +1,107 @@ + 'DomainName', + 'needStatusNotify' => 'NeedStatusNotify', + 'notifyUrl' => 'NotifyUrl', + 'onDemandUrl' => 'OnDemandUrl', + 'ownerId' => 'OwnerId', + 'securityToken' => 'SecurityToken', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->needStatusNotify) { + $res['NeedStatusNotify'] = $this->needStatusNotify; + } + if (null !== $this->notifyUrl) { + $res['NotifyUrl'] = $this->notifyUrl; + } + if (null !== $this->onDemandUrl) { + $res['OnDemandUrl'] = $this->onDemandUrl; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->securityToken) { + $res['SecurityToken'] = $this->securityToken; + } + + return $res; + } + + /** + * @param array $map + * + * @return AddLiveRecordNotifyConfigRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['NeedStatusNotify'])) { + $model->needStatusNotify = $map['NeedStatusNotify']; + } + if (isset($map['NotifyUrl'])) { + $model->notifyUrl = $map['NotifyUrl']; + } + if (isset($map['OnDemandUrl'])) { + $model->onDemandUrl = $map['OnDemandUrl']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['SecurityToken'])) { + $model->securityToken = $map['SecurityToken']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddLiveRecordNotifyConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/AddLiveRecordNotifyConfigResponse.php new file mode 100644 index 000000000..d11827f3d --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/AddLiveRecordNotifyConfigResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return AddLiveRecordNotifyConfigResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = AddLiveRecordNotifyConfigResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddLiveRecordNotifyConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/AddLiveRecordNotifyConfigResponseBody.php new file mode 100644 index 000000000..1a1bef842 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/AddLiveRecordNotifyConfigResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return AddLiveRecordNotifyConfigResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddLiveRecordVodConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/AddLiveRecordVodConfigRequest.php new file mode 100644 index 000000000..6c663b34b --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/AddLiveRecordVodConfigRequest.php @@ -0,0 +1,143 @@ + 'AppName', + 'autoCompose' => 'AutoCompose', + 'composeVodTranscodeGroupId' => 'ComposeVodTranscodeGroupId', + 'cycleDuration' => 'CycleDuration', + 'domainName' => 'DomainName', + 'ownerId' => 'OwnerId', + 'storageLocation' => 'StorageLocation', + 'streamName' => 'StreamName', + 'vodTranscodeGroupId' => 'VodTranscodeGroupId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->appName) { + $res['AppName'] = $this->appName; + } + if (null !== $this->autoCompose) { + $res['AutoCompose'] = $this->autoCompose; + } + if (null !== $this->composeVodTranscodeGroupId) { + $res['ComposeVodTranscodeGroupId'] = $this->composeVodTranscodeGroupId; + } + if (null !== $this->cycleDuration) { + $res['CycleDuration'] = $this->cycleDuration; + } + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->storageLocation) { + $res['StorageLocation'] = $this->storageLocation; + } + if (null !== $this->streamName) { + $res['StreamName'] = $this->streamName; + } + if (null !== $this->vodTranscodeGroupId) { + $res['VodTranscodeGroupId'] = $this->vodTranscodeGroupId; + } + + return $res; + } + + /** + * @param array $map + * + * @return AddLiveRecordVodConfigRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppName'])) { + $model->appName = $map['AppName']; + } + if (isset($map['AutoCompose'])) { + $model->autoCompose = $map['AutoCompose']; + } + if (isset($map['ComposeVodTranscodeGroupId'])) { + $model->composeVodTranscodeGroupId = $map['ComposeVodTranscodeGroupId']; + } + if (isset($map['CycleDuration'])) { + $model->cycleDuration = $map['CycleDuration']; + } + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['StorageLocation'])) { + $model->storageLocation = $map['StorageLocation']; + } + if (isset($map['StreamName'])) { + $model->streamName = $map['StreamName']; + } + if (isset($map['VodTranscodeGroupId'])) { + $model->vodTranscodeGroupId = $map['VodTranscodeGroupId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddLiveRecordVodConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/AddLiveRecordVodConfigResponse.php new file mode 100644 index 000000000..210e22309 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/AddLiveRecordVodConfigResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return AddLiveRecordVodConfigResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = AddLiveRecordVodConfigResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddLiveRecordVodConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/AddLiveRecordVodConfigResponseBody.php new file mode 100644 index 000000000..8e8788462 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/AddLiveRecordVodConfigResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return AddLiveRecordVodConfigResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddLiveSnapshotDetectPornConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/AddLiveSnapshotDetectPornConfigRequest.php new file mode 100644 index 000000000..0fc79947c --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/AddLiveSnapshotDetectPornConfigRequest.php @@ -0,0 +1,145 @@ + 'AppName', + 'domainName' => 'DomainName', + 'interval' => 'Interval', + 'ossBucket' => 'OssBucket', + 'ossEndpoint' => 'OssEndpoint', + 'ossObject' => 'OssObject', + 'ownerId' => 'OwnerId', + 'scene' => 'Scene', + 'securityToken' => 'SecurityToken', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->appName) { + $res['AppName'] = $this->appName; + } + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->interval) { + $res['Interval'] = $this->interval; + } + if (null !== $this->ossBucket) { + $res['OssBucket'] = $this->ossBucket; + } + if (null !== $this->ossEndpoint) { + $res['OssEndpoint'] = $this->ossEndpoint; + } + if (null !== $this->ossObject) { + $res['OssObject'] = $this->ossObject; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->scene) { + $res['Scene'] = $this->scene; + } + if (null !== $this->securityToken) { + $res['SecurityToken'] = $this->securityToken; + } + + return $res; + } + + /** + * @param array $map + * + * @return AddLiveSnapshotDetectPornConfigRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppName'])) { + $model->appName = $map['AppName']; + } + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['Interval'])) { + $model->interval = $map['Interval']; + } + if (isset($map['OssBucket'])) { + $model->ossBucket = $map['OssBucket']; + } + if (isset($map['OssEndpoint'])) { + $model->ossEndpoint = $map['OssEndpoint']; + } + if (isset($map['OssObject'])) { + $model->ossObject = $map['OssObject']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['Scene'])) { + if (!empty($map['Scene'])) { + $model->scene = $map['Scene']; + } + } + if (isset($map['SecurityToken'])) { + $model->securityToken = $map['SecurityToken']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddLiveSnapshotDetectPornConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/AddLiveSnapshotDetectPornConfigResponse.php new file mode 100644 index 000000000..50cf0f2a8 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/AddLiveSnapshotDetectPornConfigResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return AddLiveSnapshotDetectPornConfigResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = AddLiveSnapshotDetectPornConfigResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddLiveSnapshotDetectPornConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/AddLiveSnapshotDetectPornConfigResponseBody.php new file mode 100644 index 000000000..c1db9afa6 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/AddLiveSnapshotDetectPornConfigResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return AddLiveSnapshotDetectPornConfigResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddLiveSnapshotNotifyConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/AddLiveSnapshotNotifyConfigRequest.php new file mode 100644 index 000000000..4ed3f52c0 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/AddLiveSnapshotNotifyConfigRequest.php @@ -0,0 +1,95 @@ + 'DomainName', + 'notifyAuthKey' => 'NotifyAuthKey', + 'notifyReqAuth' => 'NotifyReqAuth', + 'notifyUrl' => 'NotifyUrl', + 'ownerId' => 'OwnerId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->notifyAuthKey) { + $res['NotifyAuthKey'] = $this->notifyAuthKey; + } + if (null !== $this->notifyReqAuth) { + $res['NotifyReqAuth'] = $this->notifyReqAuth; + } + if (null !== $this->notifyUrl) { + $res['NotifyUrl'] = $this->notifyUrl; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + return $res; + } + + /** + * @param array $map + * + * @return AddLiveSnapshotNotifyConfigRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['NotifyAuthKey'])) { + $model->notifyAuthKey = $map['NotifyAuthKey']; + } + if (isset($map['NotifyReqAuth'])) { + $model->notifyReqAuth = $map['NotifyReqAuth']; + } + if (isset($map['NotifyUrl'])) { + $model->notifyUrl = $map['NotifyUrl']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddLiveSnapshotNotifyConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/AddLiveSnapshotNotifyConfigResponse.php new file mode 100644 index 000000000..cde151c9e --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/AddLiveSnapshotNotifyConfigResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return AddLiveSnapshotNotifyConfigResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = AddLiveSnapshotNotifyConfigResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddLiveSnapshotNotifyConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/AddLiveSnapshotNotifyConfigResponseBody.php new file mode 100644 index 000000000..e27202068 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/AddLiveSnapshotNotifyConfigResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return AddLiveSnapshotNotifyConfigResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddLiveStreamTranscodeRequest.php b/vendor/alibabacloud/live-20161101/src/Models/AddLiveStreamTranscodeRequest.php new file mode 100644 index 000000000..95926e36f --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/AddLiveStreamTranscodeRequest.php @@ -0,0 +1,107 @@ + 'App', + 'domain' => 'Domain', + 'encryptParameters' => 'EncryptParameters', + 'lazy' => 'Lazy', + 'ownerId' => 'OwnerId', + 'template' => 'Template', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->app) { + $res['App'] = $this->app; + } + if (null !== $this->domain) { + $res['Domain'] = $this->domain; + } + if (null !== $this->encryptParameters) { + $res['EncryptParameters'] = $this->encryptParameters; + } + if (null !== $this->lazy) { + $res['Lazy'] = $this->lazy; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->template) { + $res['Template'] = $this->template; + } + + return $res; + } + + /** + * @param array $map + * + * @return AddLiveStreamTranscodeRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['App'])) { + $model->app = $map['App']; + } + if (isset($map['Domain'])) { + $model->domain = $map['Domain']; + } + if (isset($map['EncryptParameters'])) { + $model->encryptParameters = $map['EncryptParameters']; + } + if (isset($map['Lazy'])) { + $model->lazy = $map['Lazy']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['Template'])) { + $model->template = $map['Template']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddLiveStreamTranscodeResponse.php b/vendor/alibabacloud/live-20161101/src/Models/AddLiveStreamTranscodeResponse.php new file mode 100644 index 000000000..900e2dd58 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/AddLiveStreamTranscodeResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return AddLiveStreamTranscodeResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = AddLiveStreamTranscodeResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddLiveStreamTranscodeResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/AddLiveStreamTranscodeResponseBody.php new file mode 100644 index 000000000..1bd8b29c3 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/AddLiveStreamTranscodeResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return AddLiveStreamTranscodeResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddLiveStreamWatermarkRequest.php b/vendor/alibabacloud/live-20161101/src/Models/AddLiveStreamWatermarkRequest.php new file mode 100644 index 000000000..95c2952a8 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/AddLiveStreamWatermarkRequest.php @@ -0,0 +1,179 @@ + 'Description', + 'height' => 'Height', + 'name' => 'Name', + 'offsetCorner' => 'OffsetCorner', + 'ownerId' => 'OwnerId', + 'pictureUrl' => 'PictureUrl', + 'refHeight' => 'RefHeight', + 'refWidth' => 'RefWidth', + 'transparency' => 'Transparency', + 'type' => 'Type', + 'XOffset' => 'XOffset', + 'YOffset' => 'YOffset', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->description) { + $res['Description'] = $this->description; + } + if (null !== $this->height) { + $res['Height'] = $this->height; + } + if (null !== $this->name) { + $res['Name'] = $this->name; + } + if (null !== $this->offsetCorner) { + $res['OffsetCorner'] = $this->offsetCorner; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->pictureUrl) { + $res['PictureUrl'] = $this->pictureUrl; + } + if (null !== $this->refHeight) { + $res['RefHeight'] = $this->refHeight; + } + if (null !== $this->refWidth) { + $res['RefWidth'] = $this->refWidth; + } + if (null !== $this->transparency) { + $res['Transparency'] = $this->transparency; + } + if (null !== $this->type) { + $res['Type'] = $this->type; + } + if (null !== $this->XOffset) { + $res['XOffset'] = $this->XOffset; + } + if (null !== $this->YOffset) { + $res['YOffset'] = $this->YOffset; + } + + return $res; + } + + /** + * @param array $map + * + * @return AddLiveStreamWatermarkRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Description'])) { + $model->description = $map['Description']; + } + if (isset($map['Height'])) { + $model->height = $map['Height']; + } + if (isset($map['Name'])) { + $model->name = $map['Name']; + } + if (isset($map['OffsetCorner'])) { + $model->offsetCorner = $map['OffsetCorner']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['PictureUrl'])) { + $model->pictureUrl = $map['PictureUrl']; + } + if (isset($map['RefHeight'])) { + $model->refHeight = $map['RefHeight']; + } + if (isset($map['RefWidth'])) { + $model->refWidth = $map['RefWidth']; + } + if (isset($map['Transparency'])) { + $model->transparency = $map['Transparency']; + } + if (isset($map['Type'])) { + $model->type = $map['Type']; + } + if (isset($map['XOffset'])) { + $model->XOffset = $map['XOffset']; + } + if (isset($map['YOffset'])) { + $model->YOffset = $map['YOffset']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddLiveStreamWatermarkResponse.php b/vendor/alibabacloud/live-20161101/src/Models/AddLiveStreamWatermarkResponse.php new file mode 100644 index 000000000..06c2a9b84 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/AddLiveStreamWatermarkResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return AddLiveStreamWatermarkResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = AddLiveStreamWatermarkResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddLiveStreamWatermarkResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/AddLiveStreamWatermarkResponseBody.php new file mode 100644 index 000000000..c2fcce7a1 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/AddLiveStreamWatermarkResponseBody.php @@ -0,0 +1,59 @@ + 'RequestId', + 'templateId' => 'TemplateId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->templateId) { + $res['TemplateId'] = $this->templateId; + } + + return $res; + } + + /** + * @param array $map + * + * @return AddLiveStreamWatermarkResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['TemplateId'])) { + $model->templateId = $map['TemplateId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddLiveStreamWatermarkRuleRequest.php b/vendor/alibabacloud/live-20161101/src/Models/AddLiveStreamWatermarkRuleRequest.php new file mode 100644 index 000000000..3e8633caf --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/AddLiveStreamWatermarkRuleRequest.php @@ -0,0 +1,119 @@ + 'App', + 'description' => 'Description', + 'domain' => 'Domain', + 'name' => 'Name', + 'ownerId' => 'OwnerId', + 'stream' => 'Stream', + 'templateId' => 'TemplateId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->app) { + $res['App'] = $this->app; + } + if (null !== $this->description) { + $res['Description'] = $this->description; + } + if (null !== $this->domain) { + $res['Domain'] = $this->domain; + } + if (null !== $this->name) { + $res['Name'] = $this->name; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->stream) { + $res['Stream'] = $this->stream; + } + if (null !== $this->templateId) { + $res['TemplateId'] = $this->templateId; + } + + return $res; + } + + /** + * @param array $map + * + * @return AddLiveStreamWatermarkRuleRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['App'])) { + $model->app = $map['App']; + } + if (isset($map['Description'])) { + $model->description = $map['Description']; + } + if (isset($map['Domain'])) { + $model->domain = $map['Domain']; + } + if (isset($map['Name'])) { + $model->name = $map['Name']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['Stream'])) { + $model->stream = $map['Stream']; + } + if (isset($map['TemplateId'])) { + $model->templateId = $map['TemplateId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddLiveStreamWatermarkRuleResponse.php b/vendor/alibabacloud/live-20161101/src/Models/AddLiveStreamWatermarkRuleResponse.php new file mode 100644 index 000000000..d851ce702 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/AddLiveStreamWatermarkRuleResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return AddLiveStreamWatermarkRuleResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = AddLiveStreamWatermarkRuleResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddLiveStreamWatermarkRuleResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/AddLiveStreamWatermarkRuleResponseBody.php new file mode 100644 index 000000000..317d87397 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/AddLiveStreamWatermarkRuleResponseBody.php @@ -0,0 +1,59 @@ + 'RequestId', + 'ruleId' => 'RuleId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->ruleId) { + $res['RuleId'] = $this->ruleId; + } + + return $res; + } + + /** + * @param array $map + * + * @return AddLiveStreamWatermarkRuleResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['RuleId'])) { + $model->ruleId = $map['RuleId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddMultiRateConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/AddMultiRateConfigRequest.php new file mode 100644 index 000000000..9fb321408 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/AddMultiRateConfigRequest.php @@ -0,0 +1,131 @@ + 'App', + 'avFormat' => 'AvFormat', + 'domainName' => 'DomainName', + 'groupId' => 'GroupId', + 'isLazy' => 'IsLazy', + 'isTimeAlign' => 'IsTimeAlign', + 'ownerId' => 'OwnerId', + 'templates' => 'Templates', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->app) { + $res['App'] = $this->app; + } + if (null !== $this->avFormat) { + $res['AvFormat'] = $this->avFormat; + } + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->groupId) { + $res['GroupId'] = $this->groupId; + } + if (null !== $this->isLazy) { + $res['IsLazy'] = $this->isLazy; + } + if (null !== $this->isTimeAlign) { + $res['IsTimeAlign'] = $this->isTimeAlign; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->templates) { + $res['Templates'] = $this->templates; + } + + return $res; + } + + /** + * @param array $map + * + * @return AddMultiRateConfigRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['App'])) { + $model->app = $map['App']; + } + if (isset($map['AvFormat'])) { + $model->avFormat = $map['AvFormat']; + } + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['GroupId'])) { + $model->groupId = $map['GroupId']; + } + if (isset($map['IsLazy'])) { + $model->isLazy = $map['IsLazy']; + } + if (isset($map['IsTimeAlign'])) { + $model->isTimeAlign = $map['IsTimeAlign']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['Templates'])) { + $model->templates = $map['Templates']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddMultiRateConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/AddMultiRateConfigResponse.php new file mode 100644 index 000000000..34f44d83a --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/AddMultiRateConfigResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return AddMultiRateConfigResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = AddMultiRateConfigResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddMultiRateConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/AddMultiRateConfigResponseBody.php new file mode 100644 index 000000000..eda5c3642 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/AddMultiRateConfigResponseBody.php @@ -0,0 +1,84 @@ + 'Body', + 'code' => 'Code', + 'message' => 'Message', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->body) { + $res['Body'] = null !== $this->body ? $this->body->toMap() : null; + } + if (null !== $this->code) { + $res['Code'] = $this->code; + } + if (null !== $this->message) { + $res['Message'] = $this->message; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return AddMultiRateConfigResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Body'])) { + $model->body = body::fromMap($map['Body']); + } + if (isset($map['Code'])) { + $model->code = $map['Code']; + } + if (isset($map['Message'])) { + $model->message = $map['Message']; + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddMultiRateConfigResponseBody/body.php b/vendor/alibabacloud/live-20161101/src/Models/AddMultiRateConfigResponseBody/body.php new file mode 100644 index 000000000..fd5cc3a6a --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/AddMultiRateConfigResponseBody/body.php @@ -0,0 +1,60 @@ + 'FailedTemplates', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->failedTemplates) { + $res['FailedTemplates'] = []; + if (null !== $this->failedTemplates && \is_array($this->failedTemplates)) { + $n = 0; + foreach ($this->failedTemplates as $item) { + $res['FailedTemplates'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return body + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['FailedTemplates'])) { + if (!empty($map['FailedTemplates'])) { + $model->failedTemplates = []; + $n = 0; + foreach ($map['FailedTemplates'] as $item) { + $model->failedTemplates[$n++] = null !== $item ? failedTemplates::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddMultiRateConfigResponseBody/body/failedTemplates.php b/vendor/alibabacloud/live-20161101/src/Models/AddMultiRateConfigResponseBody/body/failedTemplates.php new file mode 100644 index 000000000..d177636e0 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/AddMultiRateConfigResponseBody/body/failedTemplates.php @@ -0,0 +1,203 @@ + 'AudioBitrate', + 'audioChannelNum' => 'AudioChannelNum', + 'audioCodec' => 'AudioCodec', + 'audioProfile' => 'AudioProfile', + 'audioRate' => 'AudioRate', + 'bandWidth' => 'BandWidth', + 'fps' => 'Fps', + 'gop' => 'Gop', + 'height' => 'Height', + 'profile' => 'Profile', + 'template' => 'Template', + 'templateType' => 'TemplateType', + 'videoBitrate' => 'VideoBitrate', + 'width' => 'Width', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->audioBitrate) { + $res['AudioBitrate'] = $this->audioBitrate; + } + if (null !== $this->audioChannelNum) { + $res['AudioChannelNum'] = $this->audioChannelNum; + } + if (null !== $this->audioCodec) { + $res['AudioCodec'] = $this->audioCodec; + } + if (null !== $this->audioProfile) { + $res['AudioProfile'] = $this->audioProfile; + } + if (null !== $this->audioRate) { + $res['AudioRate'] = $this->audioRate; + } + if (null !== $this->bandWidth) { + $res['BandWidth'] = $this->bandWidth; + } + if (null !== $this->fps) { + $res['Fps'] = $this->fps; + } + if (null !== $this->gop) { + $res['Gop'] = $this->gop; + } + if (null !== $this->height) { + $res['Height'] = $this->height; + } + if (null !== $this->profile) { + $res['Profile'] = $this->profile; + } + if (null !== $this->template) { + $res['Template'] = $this->template; + } + if (null !== $this->templateType) { + $res['TemplateType'] = $this->templateType; + } + if (null !== $this->videoBitrate) { + $res['VideoBitrate'] = $this->videoBitrate; + } + if (null !== $this->width) { + $res['Width'] = $this->width; + } + + return $res; + } + + /** + * @param array $map + * + * @return failedTemplates + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AudioBitrate'])) { + $model->audioBitrate = $map['AudioBitrate']; + } + if (isset($map['AudioChannelNum'])) { + $model->audioChannelNum = $map['AudioChannelNum']; + } + if (isset($map['AudioCodec'])) { + $model->audioCodec = $map['AudioCodec']; + } + if (isset($map['AudioProfile'])) { + $model->audioProfile = $map['AudioProfile']; + } + if (isset($map['AudioRate'])) { + $model->audioRate = $map['AudioRate']; + } + if (isset($map['BandWidth'])) { + $model->bandWidth = $map['BandWidth']; + } + if (isset($map['Fps'])) { + $model->fps = $map['Fps']; + } + if (isset($map['Gop'])) { + $model->gop = $map['Gop']; + } + if (isset($map['Height'])) { + $model->height = $map['Height']; + } + if (isset($map['Profile'])) { + $model->profile = $map['Profile']; + } + if (isset($map['Template'])) { + $model->template = $map['Template']; + } + if (isset($map['TemplateType'])) { + $model->templateType = $map['TemplateType']; + } + if (isset($map['VideoBitrate'])) { + $model->videoBitrate = $map['VideoBitrate']; + } + if (isset($map['Width'])) { + $model->width = $map['Width']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddPlaylistItemsRequest.php b/vendor/alibabacloud/live-20161101/src/Models/AddPlaylistItemsRequest.php new file mode 100644 index 000000000..ab6a3bfff --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/AddPlaylistItemsRequest.php @@ -0,0 +1,95 @@ + 'CasterId', + 'ownerId' => 'OwnerId', + 'programConfig' => 'ProgramConfig', + 'programId' => 'ProgramId', + 'programItems' => 'ProgramItems', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->casterId) { + $res['CasterId'] = $this->casterId; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->programConfig) { + $res['ProgramConfig'] = $this->programConfig; + } + if (null !== $this->programId) { + $res['ProgramId'] = $this->programId; + } + if (null !== $this->programItems) { + $res['ProgramItems'] = $this->programItems; + } + + return $res; + } + + /** + * @param array $map + * + * @return AddPlaylistItemsRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CasterId'])) { + $model->casterId = $map['CasterId']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['ProgramConfig'])) { + $model->programConfig = $map['ProgramConfig']; + } + if (isset($map['ProgramId'])) { + $model->programId = $map['ProgramId']; + } + if (isset($map['ProgramItems'])) { + $model->programItems = $map['ProgramItems']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddPlaylistItemsResponse.php b/vendor/alibabacloud/live-20161101/src/Models/AddPlaylistItemsResponse.php new file mode 100644 index 000000000..9a18aa9a7 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/AddPlaylistItemsResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return AddPlaylistItemsResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = AddPlaylistItemsResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddPlaylistItemsResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/AddPlaylistItemsResponseBody.php new file mode 100644 index 000000000..9b022b657 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/AddPlaylistItemsResponseBody.php @@ -0,0 +1,72 @@ + 'Items', + 'programId' => 'ProgramId', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->items) { + $res['Items'] = null !== $this->items ? $this->items->toMap() : null; + } + if (null !== $this->programId) { + $res['ProgramId'] = $this->programId; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return AddPlaylistItemsResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Items'])) { + $model->items = items::fromMap($map['Items']); + } + if (isset($map['ProgramId'])) { + $model->programId = $map['ProgramId']; + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddPlaylistItemsResponseBody/items.php b/vendor/alibabacloud/live-20161101/src/Models/AddPlaylistItemsResponseBody/items.php new file mode 100644 index 000000000..eb3092617 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/AddPlaylistItemsResponseBody/items.php @@ -0,0 +1,85 @@ + 'FailedItems', + 'successItems' => 'SuccessItems', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->failedItems) { + $res['FailedItems'] = []; + if (null !== $this->failedItems && \is_array($this->failedItems)) { + $n = 0; + foreach ($this->failedItems as $item) { + $res['FailedItems'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + if (null !== $this->successItems) { + $res['SuccessItems'] = []; + if (null !== $this->successItems && \is_array($this->successItems)) { + $n = 0; + foreach ($this->successItems as $item) { + $res['SuccessItems'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return items + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['FailedItems'])) { + if (!empty($map['FailedItems'])) { + $model->failedItems = []; + $n = 0; + foreach ($map['FailedItems'] as $item) { + $model->failedItems[$n++] = null !== $item ? failedItems::fromMap($item) : $item; + } + } + } + if (isset($map['SuccessItems'])) { + if (!empty($map['SuccessItems'])) { + $model->successItems = []; + $n = 0; + foreach ($map['SuccessItems'] as $item) { + $model->successItems[$n++] = null !== $item ? successItems::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddPlaylistItemsResponseBody/items/failedItems.php b/vendor/alibabacloud/live-20161101/src/Models/AddPlaylistItemsResponseBody/items/failedItems.php new file mode 100644 index 000000000..24f511078 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/AddPlaylistItemsResponseBody/items/failedItems.php @@ -0,0 +1,59 @@ + 'ItemId', + 'itemName' => 'ItemName', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->itemId) { + $res['ItemId'] = $this->itemId; + } + if (null !== $this->itemName) { + $res['ItemName'] = $this->itemName; + } + + return $res; + } + + /** + * @param array $map + * + * @return failedItems + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['ItemId'])) { + $model->itemId = $map['ItemId']; + } + if (isset($map['ItemName'])) { + $model->itemName = $map['ItemName']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddPlaylistItemsResponseBody/items/successItems.php b/vendor/alibabacloud/live-20161101/src/Models/AddPlaylistItemsResponseBody/items/successItems.php new file mode 100644 index 000000000..24f07c01f --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/AddPlaylistItemsResponseBody/items/successItems.php @@ -0,0 +1,59 @@ + 'ItemId', + 'itemName' => 'ItemName', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->itemId) { + $res['ItemId'] = $this->itemId; + } + if (null !== $this->itemName) { + $res['ItemName'] = $this->itemName; + } + + return $res; + } + + /** + * @param array $map + * + * @return successItems + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['ItemId'])) { + $model->itemId = $map['ItemId']; + } + if (isset($map['ItemName'])) { + $model->itemName = $map['ItemName']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddRtsLiveStreamTranscodeRequest.php b/vendor/alibabacloud/live-20161101/src/Models/AddRtsLiveStreamTranscodeRequest.php new file mode 100644 index 000000000..e6bb942f3 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/AddRtsLiveStreamTranscodeRequest.php @@ -0,0 +1,263 @@ + 'App', + 'audioBitrate' => 'AudioBitrate', + 'audioChannelNum' => 'AudioChannelNum', + 'audioCodec' => 'AudioCodec', + 'audioProfile' => 'AudioProfile', + 'audioRate' => 'AudioRate', + 'deleteBframes' => 'DeleteBframes', + 'domain' => 'Domain', + 'FPS' => 'FPS', + 'gop' => 'Gop', + 'height' => 'Height', + 'lazy' => 'Lazy', + 'opus' => 'Opus', + 'ownerId' => 'OwnerId', + 'profile' => 'Profile', + 'template' => 'Template', + 'templateType' => 'TemplateType', + 'videoBitrate' => 'VideoBitrate', + 'width' => 'Width', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->app) { + $res['App'] = $this->app; + } + if (null !== $this->audioBitrate) { + $res['AudioBitrate'] = $this->audioBitrate; + } + if (null !== $this->audioChannelNum) { + $res['AudioChannelNum'] = $this->audioChannelNum; + } + if (null !== $this->audioCodec) { + $res['AudioCodec'] = $this->audioCodec; + } + if (null !== $this->audioProfile) { + $res['AudioProfile'] = $this->audioProfile; + } + if (null !== $this->audioRate) { + $res['AudioRate'] = $this->audioRate; + } + if (null !== $this->deleteBframes) { + $res['DeleteBframes'] = $this->deleteBframes; + } + if (null !== $this->domain) { + $res['Domain'] = $this->domain; + } + if (null !== $this->FPS) { + $res['FPS'] = $this->FPS; + } + if (null !== $this->gop) { + $res['Gop'] = $this->gop; + } + if (null !== $this->height) { + $res['Height'] = $this->height; + } + if (null !== $this->lazy) { + $res['Lazy'] = $this->lazy; + } + if (null !== $this->opus) { + $res['Opus'] = $this->opus; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->profile) { + $res['Profile'] = $this->profile; + } + if (null !== $this->template) { + $res['Template'] = $this->template; + } + if (null !== $this->templateType) { + $res['TemplateType'] = $this->templateType; + } + if (null !== $this->videoBitrate) { + $res['VideoBitrate'] = $this->videoBitrate; + } + if (null !== $this->width) { + $res['Width'] = $this->width; + } + + return $res; + } + + /** + * @param array $map + * + * @return AddRtsLiveStreamTranscodeRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['App'])) { + $model->app = $map['App']; + } + if (isset($map['AudioBitrate'])) { + $model->audioBitrate = $map['AudioBitrate']; + } + if (isset($map['AudioChannelNum'])) { + $model->audioChannelNum = $map['AudioChannelNum']; + } + if (isset($map['AudioCodec'])) { + $model->audioCodec = $map['AudioCodec']; + } + if (isset($map['AudioProfile'])) { + $model->audioProfile = $map['AudioProfile']; + } + if (isset($map['AudioRate'])) { + $model->audioRate = $map['AudioRate']; + } + if (isset($map['DeleteBframes'])) { + $model->deleteBframes = $map['DeleteBframes']; + } + if (isset($map['Domain'])) { + $model->domain = $map['Domain']; + } + if (isset($map['FPS'])) { + $model->FPS = $map['FPS']; + } + if (isset($map['Gop'])) { + $model->gop = $map['Gop']; + } + if (isset($map['Height'])) { + $model->height = $map['Height']; + } + if (isset($map['Lazy'])) { + $model->lazy = $map['Lazy']; + } + if (isset($map['Opus'])) { + $model->opus = $map['Opus']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['Profile'])) { + $model->profile = $map['Profile']; + } + if (isset($map['Template'])) { + $model->template = $map['Template']; + } + if (isset($map['TemplateType'])) { + $model->templateType = $map['TemplateType']; + } + if (isset($map['VideoBitrate'])) { + $model->videoBitrate = $map['VideoBitrate']; + } + if (isset($map['Width'])) { + $model->width = $map['Width']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddRtsLiveStreamTranscodeResponse.php b/vendor/alibabacloud/live-20161101/src/Models/AddRtsLiveStreamTranscodeResponse.php new file mode 100644 index 000000000..7ebb9f8b3 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/AddRtsLiveStreamTranscodeResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return AddRtsLiveStreamTranscodeResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = AddRtsLiveStreamTranscodeResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddRtsLiveStreamTranscodeResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/AddRtsLiveStreamTranscodeResponseBody.php new file mode 100644 index 000000000..fdf1c493c --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/AddRtsLiveStreamTranscodeResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return AddRtsLiveStreamTranscodeResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddShowIntoShowListRequest.php b/vendor/alibabacloud/live-20161101/src/Models/AddShowIntoShowListRequest.php new file mode 100644 index 000000000..ba919e0a2 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/AddShowIntoShowListRequest.php @@ -0,0 +1,192 @@ + 'CasterId', + 'duration' => 'Duration', + 'liveInputType' => 'LiveInputType', + 'ownerId' => 'OwnerId', + 'repeatTimes' => 'RepeatTimes', + 'resourceId' => 'ResourceId', + 'resourceType' => 'ResourceType', + 'resourceUrl' => 'ResourceUrl', + 'showName' => 'ShowName', + 'spot' => 'Spot', + 'isBatchMode' => 'isBatchMode', + 'showList' => 'showList', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->casterId) { + $res['CasterId'] = $this->casterId; + } + if (null !== $this->duration) { + $res['Duration'] = $this->duration; + } + if (null !== $this->liveInputType) { + $res['LiveInputType'] = $this->liveInputType; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->repeatTimes) { + $res['RepeatTimes'] = $this->repeatTimes; + } + if (null !== $this->resourceId) { + $res['ResourceId'] = $this->resourceId; + } + if (null !== $this->resourceType) { + $res['ResourceType'] = $this->resourceType; + } + if (null !== $this->resourceUrl) { + $res['ResourceUrl'] = $this->resourceUrl; + } + if (null !== $this->showName) { + $res['ShowName'] = $this->showName; + } + if (null !== $this->spot) { + $res['Spot'] = $this->spot; + } + if (null !== $this->isBatchMode) { + $res['isBatchMode'] = $this->isBatchMode; + } + if (null !== $this->showList) { + $res['showList'] = []; + if (null !== $this->showList && \is_array($this->showList)) { + $n = 0; + foreach ($this->showList as $item) { + $res['showList'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return AddShowIntoShowListRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CasterId'])) { + $model->casterId = $map['CasterId']; + } + if (isset($map['Duration'])) { + $model->duration = $map['Duration']; + } + if (isset($map['LiveInputType'])) { + $model->liveInputType = $map['LiveInputType']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['RepeatTimes'])) { + $model->repeatTimes = $map['RepeatTimes']; + } + if (isset($map['ResourceId'])) { + $model->resourceId = $map['ResourceId']; + } + if (isset($map['ResourceType'])) { + $model->resourceType = $map['ResourceType']; + } + if (isset($map['ResourceUrl'])) { + $model->resourceUrl = $map['ResourceUrl']; + } + if (isset($map['ShowName'])) { + $model->showName = $map['ShowName']; + } + if (isset($map['Spot'])) { + $model->spot = $map['Spot']; + } + if (isset($map['isBatchMode'])) { + $model->isBatchMode = $map['isBatchMode']; + } + if (isset($map['showList'])) { + if (!empty($map['showList'])) { + $model->showList = []; + $n = 0; + foreach ($map['showList'] as $item) { + $model->showList[$n++] = null !== $item ? showList::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddShowIntoShowListRequest/showList.php b/vendor/alibabacloud/live-20161101/src/Models/AddShowIntoShowListRequest/showList.php new file mode 100644 index 000000000..977bfab15 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/AddShowIntoShowListRequest/showList.php @@ -0,0 +1,119 @@ + 'duration', + 'liveInputType' => 'liveInputType', + 'repeatTimes' => 'repeatTimes', + 'resourceId' => 'resourceId', + 'resourceType' => 'resourceType', + 'resourceUrl' => 'resourceUrl', + 'showName' => 'showName', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->duration) { + $res['duration'] = $this->duration; + } + if (null !== $this->liveInputType) { + $res['liveInputType'] = $this->liveInputType; + } + if (null !== $this->repeatTimes) { + $res['repeatTimes'] = $this->repeatTimes; + } + if (null !== $this->resourceId) { + $res['resourceId'] = $this->resourceId; + } + if (null !== $this->resourceType) { + $res['resourceType'] = $this->resourceType; + } + if (null !== $this->resourceUrl) { + $res['resourceUrl'] = $this->resourceUrl; + } + if (null !== $this->showName) { + $res['showName'] = $this->showName; + } + + return $res; + } + + /** + * @param array $map + * + * @return showList + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['duration'])) { + $model->duration = $map['duration']; + } + if (isset($map['liveInputType'])) { + $model->liveInputType = $map['liveInputType']; + } + if (isset($map['repeatTimes'])) { + $model->repeatTimes = $map['repeatTimes']; + } + if (isset($map['resourceId'])) { + $model->resourceId = $map['resourceId']; + } + if (isset($map['resourceType'])) { + $model->resourceType = $map['resourceType']; + } + if (isset($map['resourceUrl'])) { + $model->resourceUrl = $map['resourceUrl']; + } + if (isset($map['showName'])) { + $model->showName = $map['showName']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddShowIntoShowListResponse.php b/vendor/alibabacloud/live-20161101/src/Models/AddShowIntoShowListResponse.php new file mode 100644 index 000000000..5309fd5bf --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/AddShowIntoShowListResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return AddShowIntoShowListResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = AddShowIntoShowListResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddShowIntoShowListResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/AddShowIntoShowListResponseBody.php new file mode 100644 index 000000000..3f2787a57 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/AddShowIntoShowListResponseBody.php @@ -0,0 +1,83 @@ + 'RequestId', + 'showId' => 'ShowId', + 'failedList' => 'failedList', + 'successfulShowIds' => 'successfulShowIds', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->showId) { + $res['ShowId'] = $this->showId; + } + if (null !== $this->failedList) { + $res['failedList'] = $this->failedList; + } + if (null !== $this->successfulShowIds) { + $res['successfulShowIds'] = $this->successfulShowIds; + } + + return $res; + } + + /** + * @param array $map + * + * @return AddShowIntoShowListResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['ShowId'])) { + $model->showId = $map['ShowId']; + } + if (isset($map['failedList'])) { + $model->failedList = $map['failedList']; + } + if (isset($map['successfulShowIds'])) { + $model->successfulShowIds = $map['successfulShowIds']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddStudioLayoutRequest.php b/vendor/alibabacloud/live-20161101/src/Models/AddStudioLayoutRequest.php new file mode 100644 index 000000000..4414a3294 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/AddStudioLayoutRequest.php @@ -0,0 +1,143 @@ + 'BgImageConfig', + 'casterId' => 'CasterId', + 'commonConfig' => 'CommonConfig', + 'layerOrderConfigList' => 'LayerOrderConfigList', + 'layoutName' => 'LayoutName', + 'layoutType' => 'LayoutType', + 'mediaInputConfigList' => 'MediaInputConfigList', + 'ownerId' => 'OwnerId', + 'screenInputConfigList' => 'ScreenInputConfigList', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->bgImageConfig) { + $res['BgImageConfig'] = $this->bgImageConfig; + } + if (null !== $this->casterId) { + $res['CasterId'] = $this->casterId; + } + if (null !== $this->commonConfig) { + $res['CommonConfig'] = $this->commonConfig; + } + if (null !== $this->layerOrderConfigList) { + $res['LayerOrderConfigList'] = $this->layerOrderConfigList; + } + if (null !== $this->layoutName) { + $res['LayoutName'] = $this->layoutName; + } + if (null !== $this->layoutType) { + $res['LayoutType'] = $this->layoutType; + } + if (null !== $this->mediaInputConfigList) { + $res['MediaInputConfigList'] = $this->mediaInputConfigList; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->screenInputConfigList) { + $res['ScreenInputConfigList'] = $this->screenInputConfigList; + } + + return $res; + } + + /** + * @param array $map + * + * @return AddStudioLayoutRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['BgImageConfig'])) { + $model->bgImageConfig = $map['BgImageConfig']; + } + if (isset($map['CasterId'])) { + $model->casterId = $map['CasterId']; + } + if (isset($map['CommonConfig'])) { + $model->commonConfig = $map['CommonConfig']; + } + if (isset($map['LayerOrderConfigList'])) { + $model->layerOrderConfigList = $map['LayerOrderConfigList']; + } + if (isset($map['LayoutName'])) { + $model->layoutName = $map['LayoutName']; + } + if (isset($map['LayoutType'])) { + $model->layoutType = $map['LayoutType']; + } + if (isset($map['MediaInputConfigList'])) { + $model->mediaInputConfigList = $map['MediaInputConfigList']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['ScreenInputConfigList'])) { + $model->screenInputConfigList = $map['ScreenInputConfigList']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddStudioLayoutResponse.php b/vendor/alibabacloud/live-20161101/src/Models/AddStudioLayoutResponse.php new file mode 100644 index 000000000..8f8c528f3 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/AddStudioLayoutResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return AddStudioLayoutResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = AddStudioLayoutResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddStudioLayoutResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/AddStudioLayoutResponseBody.php new file mode 100644 index 000000000..d9b564a07 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/AddStudioLayoutResponseBody.php @@ -0,0 +1,59 @@ + 'LayoutId', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->layoutId) { + $res['LayoutId'] = $this->layoutId; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return AddStudioLayoutResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['LayoutId'])) { + $model->layoutId = $map['LayoutId']; + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddTrancodeSEIRequest.php b/vendor/alibabacloud/live-20161101/src/Models/AddTrancodeSEIRequest.php new file mode 100644 index 000000000..7e42239fc --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/AddTrancodeSEIRequest.php @@ -0,0 +1,131 @@ + 'AppName', + 'delay' => 'Delay', + 'domainName' => 'DomainName', + 'ownerId' => 'OwnerId', + 'pattern' => 'Pattern', + 'repeat' => 'Repeat', + 'streamName' => 'StreamName', + 'text' => 'Text', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->appName) { + $res['AppName'] = $this->appName; + } + if (null !== $this->delay) { + $res['Delay'] = $this->delay; + } + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->pattern) { + $res['Pattern'] = $this->pattern; + } + if (null !== $this->repeat) { + $res['Repeat'] = $this->repeat; + } + if (null !== $this->streamName) { + $res['StreamName'] = $this->streamName; + } + if (null !== $this->text) { + $res['Text'] = $this->text; + } + + return $res; + } + + /** + * @param array $map + * + * @return AddTrancodeSEIRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppName'])) { + $model->appName = $map['AppName']; + } + if (isset($map['Delay'])) { + $model->delay = $map['Delay']; + } + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['Pattern'])) { + $model->pattern = $map['Pattern']; + } + if (isset($map['Repeat'])) { + $model->repeat = $map['Repeat']; + } + if (isset($map['StreamName'])) { + $model->streamName = $map['StreamName']; + } + if (isset($map['Text'])) { + $model->text = $map['Text']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddTrancodeSEIResponse.php b/vendor/alibabacloud/live-20161101/src/Models/AddTrancodeSEIResponse.php new file mode 100644 index 000000000..211ebf8ec --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/AddTrancodeSEIResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return AddTrancodeSEIResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = AddTrancodeSEIResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/AddTrancodeSEIResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/AddTrancodeSEIResponseBody.php new file mode 100644 index 000000000..c3df83c92 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/AddTrancodeSEIResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return AddTrancodeSEIResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/AllowPushStreamRequest.php b/vendor/alibabacloud/live-20161101/src/Models/AllowPushStreamRequest.php new file mode 100644 index 000000000..f1786cc3f --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/AllowPushStreamRequest.php @@ -0,0 +1,71 @@ + 'AppId', + 'ownerId' => 'OwnerId', + 'roomId' => 'RoomId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->appId) { + $res['AppId'] = $this->appId; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->roomId) { + $res['RoomId'] = $this->roomId; + } + + return $res; + } + + /** + * @param array $map + * + * @return AllowPushStreamRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppId'])) { + $model->appId = $map['AppId']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['RoomId'])) { + $model->roomId = $map['RoomId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/AllowPushStreamResponse.php b/vendor/alibabacloud/live-20161101/src/Models/AllowPushStreamResponse.php new file mode 100644 index 000000000..f5ebef8fc --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/AllowPushStreamResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return AllowPushStreamResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = AllowPushStreamResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/AllowPushStreamResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/AllowPushStreamResponseBody.php new file mode 100644 index 000000000..a2e2a0e8f --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/AllowPushStreamResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return AllowPushStreamResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/ApplyBoardTokenRequest.php b/vendor/alibabacloud/live-20161101/src/Models/ApplyBoardTokenRequest.php new file mode 100644 index 000000000..8edb0f0ef --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/ApplyBoardTokenRequest.php @@ -0,0 +1,83 @@ + 'OwnerId', + 'appId' => 'AppId', + 'appUid' => 'AppUid', + 'boardId' => 'BoardId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->appId) { + $res['AppId'] = $this->appId; + } + if (null !== $this->appUid) { + $res['AppUid'] = $this->appUid; + } + if (null !== $this->boardId) { + $res['BoardId'] = $this->boardId; + } + + return $res; + } + + /** + * @param array $map + * + * @return ApplyBoardTokenRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['AppId'])) { + $model->appId = $map['AppId']; + } + if (isset($map['AppUid'])) { + $model->appUid = $map['AppUid']; + } + if (isset($map['BoardId'])) { + $model->boardId = $map['BoardId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/ApplyBoardTokenResponse.php b/vendor/alibabacloud/live-20161101/src/Models/ApplyBoardTokenResponse.php new file mode 100644 index 000000000..61008b6b1 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/ApplyBoardTokenResponse.php @@ -0,0 +1,61 @@ + 'headers', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return ApplyBoardTokenResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['body'])) { + $model->body = ApplyBoardTokenResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/ApplyBoardTokenResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/ApplyBoardTokenResponseBody.php new file mode 100644 index 000000000..3e7ea6cc0 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/ApplyBoardTokenResponseBody.php @@ -0,0 +1,71 @@ + 'RequestId', + 'token' => 'Token', + 'expired' => 'Expired', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->token) { + $res['Token'] = $this->token; + } + if (null !== $this->expired) { + $res['Expired'] = $this->expired; + } + + return $res; + } + + /** + * @param array $map + * + * @return ApplyBoardTokenResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['Token'])) { + $model->token = $map['Token']; + } + if (isset($map['Expired'])) { + $model->expired = $map['Expired']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/ApplyRecordTokenRequest.php b/vendor/alibabacloud/live-20161101/src/Models/ApplyRecordTokenRequest.php new file mode 100644 index 000000000..a1882557d --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/ApplyRecordTokenRequest.php @@ -0,0 +1,59 @@ + 'OwnerId', + 'appId' => 'AppId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->appId) { + $res['AppId'] = $this->appId; + } + + return $res; + } + + /** + * @param array $map + * + * @return ApplyRecordTokenRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['AppId'])) { + $model->appId = $map['AppId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/ApplyRecordTokenResponse.php b/vendor/alibabacloud/live-20161101/src/Models/ApplyRecordTokenResponse.php new file mode 100644 index 000000000..61062bd0d --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/ApplyRecordTokenResponse.php @@ -0,0 +1,61 @@ + 'headers', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return ApplyRecordTokenResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['body'])) { + $model->body = ApplyRecordTokenResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/ApplyRecordTokenResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/ApplyRecordTokenResponseBody.php new file mode 100644 index 000000000..a6da6f6f7 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/ApplyRecordTokenResponseBody.php @@ -0,0 +1,95 @@ + 'SecurityToken', + 'requestId' => 'RequestId', + 'accessKeyId' => 'AccessKeyId', + 'accessKeySecret' => 'AccessKeySecret', + 'expiration' => 'Expiration', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->securityToken) { + $res['SecurityToken'] = $this->securityToken; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->accessKeyId) { + $res['AccessKeyId'] = $this->accessKeyId; + } + if (null !== $this->accessKeySecret) { + $res['AccessKeySecret'] = $this->accessKeySecret; + } + if (null !== $this->expiration) { + $res['Expiration'] = $this->expiration; + } + + return $res; + } + + /** + * @param array $map + * + * @return ApplyRecordTokenResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['SecurityToken'])) { + $model->securityToken = $map['SecurityToken']; + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['AccessKeyId'])) { + $model->accessKeyId = $map['AccessKeyId']; + } + if (isset($map['AccessKeySecret'])) { + $model->accessKeySecret = $map['AccessKeySecret']; + } + if (isset($map['Expiration'])) { + $model->expiration = $map['Expiration']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/BatchDeleteLiveDomainConfigsRequest.php b/vendor/alibabacloud/live-20161101/src/Models/BatchDeleteLiveDomainConfigsRequest.php new file mode 100644 index 000000000..998ddc5e6 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/BatchDeleteLiveDomainConfigsRequest.php @@ -0,0 +1,95 @@ + 'DomainNames', + 'functionNames' => 'FunctionNames', + 'ownerAccount' => 'OwnerAccount', + 'ownerId' => 'OwnerId', + 'securityToken' => 'SecurityToken', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->domainNames) { + $res['DomainNames'] = $this->domainNames; + } + if (null !== $this->functionNames) { + $res['FunctionNames'] = $this->functionNames; + } + if (null !== $this->ownerAccount) { + $res['OwnerAccount'] = $this->ownerAccount; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->securityToken) { + $res['SecurityToken'] = $this->securityToken; + } + + return $res; + } + + /** + * @param array $map + * + * @return BatchDeleteLiveDomainConfigsRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DomainNames'])) { + $model->domainNames = $map['DomainNames']; + } + if (isset($map['FunctionNames'])) { + $model->functionNames = $map['FunctionNames']; + } + if (isset($map['OwnerAccount'])) { + $model->ownerAccount = $map['OwnerAccount']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['SecurityToken'])) { + $model->securityToken = $map['SecurityToken']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/BatchDeleteLiveDomainConfigsResponse.php b/vendor/alibabacloud/live-20161101/src/Models/BatchDeleteLiveDomainConfigsResponse.php new file mode 100644 index 000000000..d0afdda70 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/BatchDeleteLiveDomainConfigsResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return BatchDeleteLiveDomainConfigsResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = BatchDeleteLiveDomainConfigsResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/BatchDeleteLiveDomainConfigsResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/BatchDeleteLiveDomainConfigsResponseBody.php new file mode 100644 index 000000000..b05d0f5e5 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/BatchDeleteLiveDomainConfigsResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return BatchDeleteLiveDomainConfigsResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/BatchSetLiveDomainConfigsRequest.php b/vendor/alibabacloud/live-20161101/src/Models/BatchSetLiveDomainConfigsRequest.php new file mode 100644 index 000000000..e691f4c20 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/BatchSetLiveDomainConfigsRequest.php @@ -0,0 +1,95 @@ + 'DomainNames', + 'functions' => 'Functions', + 'ownerAccount' => 'OwnerAccount', + 'ownerId' => 'OwnerId', + 'securityToken' => 'SecurityToken', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->domainNames) { + $res['DomainNames'] = $this->domainNames; + } + if (null !== $this->functions) { + $res['Functions'] = $this->functions; + } + if (null !== $this->ownerAccount) { + $res['OwnerAccount'] = $this->ownerAccount; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->securityToken) { + $res['SecurityToken'] = $this->securityToken; + } + + return $res; + } + + /** + * @param array $map + * + * @return BatchSetLiveDomainConfigsRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DomainNames'])) { + $model->domainNames = $map['DomainNames']; + } + if (isset($map['Functions'])) { + $model->functions = $map['Functions']; + } + if (isset($map['OwnerAccount'])) { + $model->ownerAccount = $map['OwnerAccount']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['SecurityToken'])) { + $model->securityToken = $map['SecurityToken']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/BatchSetLiveDomainConfigsResponse.php b/vendor/alibabacloud/live-20161101/src/Models/BatchSetLiveDomainConfigsResponse.php new file mode 100644 index 000000000..85dc666aa --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/BatchSetLiveDomainConfigsResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return BatchSetLiveDomainConfigsResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = BatchSetLiveDomainConfigsResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/BatchSetLiveDomainConfigsResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/BatchSetLiveDomainConfigsResponseBody.php new file mode 100644 index 000000000..f5889705d --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/BatchSetLiveDomainConfigsResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return BatchSetLiveDomainConfigsResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/CancelMuteAllGroupUserRequest.php b/vendor/alibabacloud/live-20161101/src/Models/CancelMuteAllGroupUserRequest.php new file mode 100644 index 000000000..d5f229576 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/CancelMuteAllGroupUserRequest.php @@ -0,0 +1,71 @@ + 'AppId', + 'groupId' => 'GroupId', + 'operatorUserId' => 'OperatorUserId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->appId) { + $res['AppId'] = $this->appId; + } + if (null !== $this->groupId) { + $res['GroupId'] = $this->groupId; + } + if (null !== $this->operatorUserId) { + $res['OperatorUserId'] = $this->operatorUserId; + } + + return $res; + } + + /** + * @param array $map + * + * @return CancelMuteAllGroupUserRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppId'])) { + $model->appId = $map['AppId']; + } + if (isset($map['GroupId'])) { + $model->groupId = $map['GroupId']; + } + if (isset($map['OperatorUserId'])) { + $model->operatorUserId = $map['OperatorUserId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/CancelMuteAllGroupUserResponse.php b/vendor/alibabacloud/live-20161101/src/Models/CancelMuteAllGroupUserResponse.php new file mode 100644 index 000000000..7a008b15f --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/CancelMuteAllGroupUserResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return CancelMuteAllGroupUserResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = CancelMuteAllGroupUserResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/CancelMuteAllGroupUserResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/CancelMuteAllGroupUserResponseBody.php new file mode 100644 index 000000000..b76cc2750 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/CancelMuteAllGroupUserResponseBody.php @@ -0,0 +1,60 @@ + 'RequestId', + 'result' => 'Result', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->result) { + $res['Result'] = null !== $this->result ? $this->result->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return CancelMuteAllGroupUserResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['Result'])) { + $model->result = result::fromMap($map['Result']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/CancelMuteAllGroupUserResponseBody/result.php b/vendor/alibabacloud/live-20161101/src/Models/CancelMuteAllGroupUserResponseBody/result.php new file mode 100644 index 000000000..7e12b6aec --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/CancelMuteAllGroupUserResponseBody/result.php @@ -0,0 +1,47 @@ + 'Success', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->success) { + $res['Success'] = $this->success; + } + + return $res; + } + + /** + * @param array $map + * + * @return result + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Success'])) { + $model->success = $map['Success']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/CheckServiceForRoleRequest.php b/vendor/alibabacloud/live-20161101/src/Models/CheckServiceForRoleRequest.php new file mode 100644 index 000000000..b1b6423d9 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/CheckServiceForRoleRequest.php @@ -0,0 +1,95 @@ + 'RoleArn', + 'SPIRegionId' => 'SPIRegionId', + 'serviceName' => 'ServiceName', + 'deletionTaskId' => 'DeletionTaskId', + 'accountId' => 'AccountId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->roleArn) { + $res['RoleArn'] = $this->roleArn; + } + if (null !== $this->SPIRegionId) { + $res['SPIRegionId'] = $this->SPIRegionId; + } + if (null !== $this->serviceName) { + $res['ServiceName'] = $this->serviceName; + } + if (null !== $this->deletionTaskId) { + $res['DeletionTaskId'] = $this->deletionTaskId; + } + if (null !== $this->accountId) { + $res['AccountId'] = $this->accountId; + } + + return $res; + } + + /** + * @param array $map + * + * @return CheckServiceForRoleRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RoleArn'])) { + $model->roleArn = $map['RoleArn']; + } + if (isset($map['SPIRegionId'])) { + $model->SPIRegionId = $map['SPIRegionId']; + } + if (isset($map['ServiceName'])) { + $model->serviceName = $map['ServiceName']; + } + if (isset($map['DeletionTaskId'])) { + $model->deletionTaskId = $map['DeletionTaskId']; + } + if (isset($map['AccountId'])) { + $model->accountId = $map['AccountId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/CheckServiceForRoleResponse.php b/vendor/alibabacloud/live-20161101/src/Models/CheckServiceForRoleResponse.php new file mode 100644 index 000000000..615474843 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/CheckServiceForRoleResponse.php @@ -0,0 +1,61 @@ + 'headers', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return CheckServiceForRoleResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['body'])) { + $model->body = CheckServiceForRoleResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/CheckServiceForRoleResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/CheckServiceForRoleResponseBody.php new file mode 100644 index 000000000..47ca5f760 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/CheckServiceForRoleResponseBody.php @@ -0,0 +1,59 @@ + 'RequestId', + 'deletable' => 'Deletable', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->deletable) { + $res['Deletable'] = $this->deletable; + } + + return $res; + } + + /** + * @param array $map + * + * @return CheckServiceForRoleResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['Deletable'])) { + $model->deletable = $map['Deletable']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/CloseLiveShiftRequest.php b/vendor/alibabacloud/live-20161101/src/Models/CloseLiveShiftRequest.php new file mode 100644 index 000000000..1446f2a2f --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/CloseLiveShiftRequest.php @@ -0,0 +1,83 @@ + 'AppName', + 'domainName' => 'DomainName', + 'ownerId' => 'OwnerId', + 'streamName' => 'StreamName', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->appName) { + $res['AppName'] = $this->appName; + } + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->streamName) { + $res['StreamName'] = $this->streamName; + } + + return $res; + } + + /** + * @param array $map + * + * @return CloseLiveShiftRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppName'])) { + $model->appName = $map['AppName']; + } + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['StreamName'])) { + $model->streamName = $map['StreamName']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/CloseLiveShiftResponse.php b/vendor/alibabacloud/live-20161101/src/Models/CloseLiveShiftResponse.php new file mode 100644 index 000000000..5d3e23b9f --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/CloseLiveShiftResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return CloseLiveShiftResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = CloseLiveShiftResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/CloseLiveShiftResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/CloseLiveShiftResponseBody.php new file mode 100644 index 000000000..fa110b25f --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/CloseLiveShiftResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return CloseLiveShiftResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/CloseMessageGroupRequest.php b/vendor/alibabacloud/live-20161101/src/Models/CloseMessageGroupRequest.php new file mode 100644 index 000000000..61dc0e5f1 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/CloseMessageGroupRequest.php @@ -0,0 +1,59 @@ + 'AppId', + 'groupId' => 'GroupId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->appId) { + $res['AppId'] = $this->appId; + } + if (null !== $this->groupId) { + $res['GroupId'] = $this->groupId; + } + + return $res; + } + + /** + * @param array $map + * + * @return CloseMessageGroupRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppId'])) { + $model->appId = $map['AppId']; + } + if (isset($map['GroupId'])) { + $model->groupId = $map['GroupId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/CloseMessageGroupResponse.php b/vendor/alibabacloud/live-20161101/src/Models/CloseMessageGroupResponse.php new file mode 100644 index 000000000..62b11625f --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/CloseMessageGroupResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return CloseMessageGroupResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = CloseMessageGroupResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/CloseMessageGroupResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/CloseMessageGroupResponseBody.php new file mode 100644 index 000000000..b1f952bac --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/CloseMessageGroupResponseBody.php @@ -0,0 +1,60 @@ + 'RequestId', + 'result' => 'Result', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->result) { + $res['Result'] = null !== $this->result ? $this->result->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return CloseMessageGroupResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['Result'])) { + $model->result = result::fromMap($map['Result']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/CloseMessageGroupResponseBody/result.php b/vendor/alibabacloud/live-20161101/src/Models/CloseMessageGroupResponseBody/result.php new file mode 100644 index 000000000..7e3aea9dd --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/CloseMessageGroupResponseBody/result.php @@ -0,0 +1,47 @@ + 'Success', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->success) { + $res['Success'] = $this->success; + } + + return $res; + } + + /** + * @param array $map + * + * @return result + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Success'])) { + $model->success = $map['Success']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/CompleteBoardRecordRequest.php b/vendor/alibabacloud/live-20161101/src/Models/CompleteBoardRecordRequest.php new file mode 100644 index 000000000..8c05c2def --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/CompleteBoardRecordRequest.php @@ -0,0 +1,83 @@ + 'OwnerId', + 'appId' => 'AppId', + 'recordId' => 'RecordId', + 'endTime' => 'EndTime', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->appId) { + $res['AppId'] = $this->appId; + } + if (null !== $this->recordId) { + $res['RecordId'] = $this->recordId; + } + if (null !== $this->endTime) { + $res['EndTime'] = $this->endTime; + } + + return $res; + } + + /** + * @param array $map + * + * @return CompleteBoardRecordRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['AppId'])) { + $model->appId = $map['AppId']; + } + if (isset($map['RecordId'])) { + $model->recordId = $map['RecordId']; + } + if (isset($map['EndTime'])) { + $model->endTime = $map['EndTime']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/CompleteBoardRecordResponse.php b/vendor/alibabacloud/live-20161101/src/Models/CompleteBoardRecordResponse.php new file mode 100644 index 000000000..d649d6a2a --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/CompleteBoardRecordResponse.php @@ -0,0 +1,61 @@ + 'headers', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return CompleteBoardRecordResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['body'])) { + $model->body = CompleteBoardRecordResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/CompleteBoardRecordResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/CompleteBoardRecordResponseBody.php new file mode 100644 index 000000000..914579ca9 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/CompleteBoardRecordResponseBody.php @@ -0,0 +1,59 @@ + 'RequestId', + 'ossPath' => 'OssPath', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->ossPath) { + $res['OssPath'] = $this->ossPath; + } + + return $res; + } + + /** + * @param array $map + * + * @return CompleteBoardRecordResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['OssPath'])) { + $model->ossPath = $map['OssPath']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/CompleteBoardRequest.php b/vendor/alibabacloud/live-20161101/src/Models/CompleteBoardRequest.php new file mode 100644 index 000000000..2812323a3 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/CompleteBoardRequest.php @@ -0,0 +1,71 @@ + 'OwnerId', + 'appId' => 'AppId', + 'boardId' => 'BoardId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->appId) { + $res['AppId'] = $this->appId; + } + if (null !== $this->boardId) { + $res['BoardId'] = $this->boardId; + } + + return $res; + } + + /** + * @param array $map + * + * @return CompleteBoardRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['AppId'])) { + $model->appId = $map['AppId']; + } + if (isset($map['BoardId'])) { + $model->boardId = $map['BoardId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/CompleteBoardResponse.php b/vendor/alibabacloud/live-20161101/src/Models/CompleteBoardResponse.php new file mode 100644 index 000000000..6ce991ed9 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/CompleteBoardResponse.php @@ -0,0 +1,61 @@ + 'headers', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return CompleteBoardResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['body'])) { + $model->body = CompleteBoardResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/CompleteBoardResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/CompleteBoardResponseBody.php new file mode 100644 index 000000000..22c60b76b --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/CompleteBoardResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return CompleteBoardResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/ControlHtmlResourceRequest.php b/vendor/alibabacloud/live-20161101/src/Models/ControlHtmlResourceRequest.php new file mode 100644 index 000000000..1feb481ae --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/ControlHtmlResourceRequest.php @@ -0,0 +1,95 @@ + 'OwnerId', + 'htmlResourceId' => 'HtmlResourceId', + 'htmlUrl' => 'htmlUrl', + 'casterId' => 'CasterId', + 'operate' => 'Operate', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->htmlResourceId) { + $res['HtmlResourceId'] = $this->htmlResourceId; + } + if (null !== $this->htmlUrl) { + $res['htmlUrl'] = $this->htmlUrl; + } + if (null !== $this->casterId) { + $res['CasterId'] = $this->casterId; + } + if (null !== $this->operate) { + $res['Operate'] = $this->operate; + } + + return $res; + } + + /** + * @param array $map + * + * @return ControlHtmlResourceRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['HtmlResourceId'])) { + $model->htmlResourceId = $map['HtmlResourceId']; + } + if (isset($map['htmlUrl'])) { + $model->htmlUrl = $map['htmlUrl']; + } + if (isset($map['CasterId'])) { + $model->casterId = $map['CasterId']; + } + if (isset($map['Operate'])) { + $model->operate = $map['Operate']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/ControlHtmlResourceResponse.php b/vendor/alibabacloud/live-20161101/src/Models/ControlHtmlResourceResponse.php new file mode 100644 index 000000000..b371e890b --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/ControlHtmlResourceResponse.php @@ -0,0 +1,61 @@ + 'headers', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return ControlHtmlResourceResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['body'])) { + $model->body = ControlHtmlResourceResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/ControlHtmlResourceResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/ControlHtmlResourceResponseBody.php new file mode 100644 index 000000000..791e11ee9 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/ControlHtmlResourceResponseBody.php @@ -0,0 +1,59 @@ + 'StreamId', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->streamId) { + $res['StreamId'] = $this->streamId; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return ControlHtmlResourceResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['StreamId'])) { + $model->streamId = $map['StreamId']; + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/CopyCasterRequest.php b/vendor/alibabacloud/live-20161101/src/Models/CopyCasterRequest.php new file mode 100644 index 000000000..fd6b9c1ed --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/CopyCasterRequest.php @@ -0,0 +1,83 @@ + 'CasterName', + 'clientToken' => 'ClientToken', + 'ownerId' => 'OwnerId', + 'srcCasterId' => 'SrcCasterId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->casterName) { + $res['CasterName'] = $this->casterName; + } + if (null !== $this->clientToken) { + $res['ClientToken'] = $this->clientToken; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->srcCasterId) { + $res['SrcCasterId'] = $this->srcCasterId; + } + + return $res; + } + + /** + * @param array $map + * + * @return CopyCasterRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CasterName'])) { + $model->casterName = $map['CasterName']; + } + if (isset($map['ClientToken'])) { + $model->clientToken = $map['ClientToken']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['SrcCasterId'])) { + $model->srcCasterId = $map['SrcCasterId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/CopyCasterResponse.php b/vendor/alibabacloud/live-20161101/src/Models/CopyCasterResponse.php new file mode 100644 index 000000000..12d4c9dd9 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/CopyCasterResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return CopyCasterResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = CopyCasterResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/CopyCasterResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/CopyCasterResponseBody.php new file mode 100644 index 000000000..5a75a6c3a --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/CopyCasterResponseBody.php @@ -0,0 +1,59 @@ + 'CasterId', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->casterId) { + $res['CasterId'] = $this->casterId; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return CopyCasterResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CasterId'])) { + $model->casterId = $map['CasterId']; + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/CopyCasterSceneConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/CopyCasterSceneConfigRequest.php new file mode 100644 index 000000000..c662b7545 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/CopyCasterSceneConfigRequest.php @@ -0,0 +1,83 @@ + 'CasterId', + 'fromSceneId' => 'FromSceneId', + 'ownerId' => 'OwnerId', + 'toSceneId' => 'ToSceneId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->casterId) { + $res['CasterId'] = $this->casterId; + } + if (null !== $this->fromSceneId) { + $res['FromSceneId'] = $this->fromSceneId; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->toSceneId) { + $res['ToSceneId'] = $this->toSceneId; + } + + return $res; + } + + /** + * @param array $map + * + * @return CopyCasterSceneConfigRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CasterId'])) { + $model->casterId = $map['CasterId']; + } + if (isset($map['FromSceneId'])) { + $model->fromSceneId = $map['FromSceneId']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['ToSceneId'])) { + $model->toSceneId = $map['ToSceneId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/CopyCasterSceneConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/CopyCasterSceneConfigResponse.php new file mode 100644 index 000000000..e7fee2574 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/CopyCasterSceneConfigResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return CopyCasterSceneConfigResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = CopyCasterSceneConfigResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/CopyCasterSceneConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/CopyCasterSceneConfigResponseBody.php new file mode 100644 index 000000000..f55cfb3fa --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/CopyCasterSceneConfigResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return CopyCasterSceneConfigResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/CreateBoardRequest.php b/vendor/alibabacloud/live-20161101/src/Models/CreateBoardRequest.php new file mode 100644 index 000000000..3345f2c6d --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/CreateBoardRequest.php @@ -0,0 +1,71 @@ + 'OwnerId', + 'appId' => 'AppId', + 'appUid' => 'AppUid', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->appId) { + $res['AppId'] = $this->appId; + } + if (null !== $this->appUid) { + $res['AppUid'] = $this->appUid; + } + + return $res; + } + + /** + * @param array $map + * + * @return CreateBoardRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['AppId'])) { + $model->appId = $map['AppId']; + } + if (isset($map['AppUid'])) { + $model->appUid = $map['AppUid']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/CreateBoardResponse.php b/vendor/alibabacloud/live-20161101/src/Models/CreateBoardResponse.php new file mode 100644 index 000000000..bb9667ebf --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/CreateBoardResponse.php @@ -0,0 +1,61 @@ + 'headers', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return CreateBoardResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['body'])) { + $model->body = CreateBoardResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/CreateBoardResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/CreateBoardResponseBody.php new file mode 100644 index 000000000..8af4835ff --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/CreateBoardResponseBody.php @@ -0,0 +1,59 @@ + 'BoardId', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->boardId) { + $res['BoardId'] = $this->boardId; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return CreateBoardResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['BoardId'])) { + $model->boardId = $map['BoardId']; + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/CreateCasterRequest.php b/vendor/alibabacloud/live-20161101/src/Models/CreateCasterRequest.php new file mode 100644 index 000000000..e57b8b8a5 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/CreateCasterRequest.php @@ -0,0 +1,131 @@ + 'CasterName', + 'casterTemplate' => 'CasterTemplate', + 'chargeType' => 'ChargeType', + 'clientToken' => 'ClientToken', + 'expireTime' => 'ExpireTime', + 'normType' => 'NormType', + 'ownerId' => 'OwnerId', + 'purchaseTime' => 'PurchaseTime', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->casterName) { + $res['CasterName'] = $this->casterName; + } + if (null !== $this->casterTemplate) { + $res['CasterTemplate'] = $this->casterTemplate; + } + if (null !== $this->chargeType) { + $res['ChargeType'] = $this->chargeType; + } + if (null !== $this->clientToken) { + $res['ClientToken'] = $this->clientToken; + } + if (null !== $this->expireTime) { + $res['ExpireTime'] = $this->expireTime; + } + if (null !== $this->normType) { + $res['NormType'] = $this->normType; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->purchaseTime) { + $res['PurchaseTime'] = $this->purchaseTime; + } + + return $res; + } + + /** + * @param array $map + * + * @return CreateCasterRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CasterName'])) { + $model->casterName = $map['CasterName']; + } + if (isset($map['CasterTemplate'])) { + $model->casterTemplate = $map['CasterTemplate']; + } + if (isset($map['ChargeType'])) { + $model->chargeType = $map['ChargeType']; + } + if (isset($map['ClientToken'])) { + $model->clientToken = $map['ClientToken']; + } + if (isset($map['ExpireTime'])) { + $model->expireTime = $map['ExpireTime']; + } + if (isset($map['NormType'])) { + $model->normType = $map['NormType']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['PurchaseTime'])) { + $model->purchaseTime = $map['PurchaseTime']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/CreateCasterResponse.php b/vendor/alibabacloud/live-20161101/src/Models/CreateCasterResponse.php new file mode 100644 index 000000000..1332048ba --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/CreateCasterResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return CreateCasterResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = CreateCasterResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/CreateCasterResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/CreateCasterResponseBody.php new file mode 100644 index 000000000..711c261a7 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/CreateCasterResponseBody.php @@ -0,0 +1,59 @@ + 'CasterId', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->casterId) { + $res['CasterId'] = $this->casterId; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return CreateCasterResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CasterId'])) { + $model->casterId = $map['CasterId']; + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/CreateCustomTemplateRequest.php b/vendor/alibabacloud/live-20161101/src/Models/CreateCustomTemplateRequest.php new file mode 100644 index 000000000..408afe439 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/CreateCustomTemplateRequest.php @@ -0,0 +1,71 @@ + 'CustomTemplate', + 'ownerId' => 'OwnerId', + 'template' => 'Template', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->customTemplate) { + $res['CustomTemplate'] = $this->customTemplate; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->template) { + $res['Template'] = $this->template; + } + + return $res; + } + + /** + * @param array $map + * + * @return CreateCustomTemplateRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CustomTemplate'])) { + $model->customTemplate = $map['CustomTemplate']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['Template'])) { + $model->template = $map['Template']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/CreateCustomTemplateResponse.php b/vendor/alibabacloud/live-20161101/src/Models/CreateCustomTemplateResponse.php new file mode 100644 index 000000000..0dd59f3ff --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/CreateCustomTemplateResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return CreateCustomTemplateResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = CreateCustomTemplateResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/CreateCustomTemplateResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/CreateCustomTemplateResponseBody.php new file mode 100644 index 000000000..6609d72a6 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/CreateCustomTemplateResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return CreateCustomTemplateResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/CreateLiveRealTimeLogDeliveryRequest.php b/vendor/alibabacloud/live-20161101/src/Models/CreateLiveRealTimeLogDeliveryRequest.php new file mode 100644 index 000000000..7a50f9042 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/CreateLiveRealTimeLogDeliveryRequest.php @@ -0,0 +1,95 @@ + 'DomainName', + 'logstore' => 'Logstore', + 'ownerId' => 'OwnerId', + 'project' => 'Project', + 'region' => 'Region', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->logstore) { + $res['Logstore'] = $this->logstore; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->project) { + $res['Project'] = $this->project; + } + if (null !== $this->region) { + $res['Region'] = $this->region; + } + + return $res; + } + + /** + * @param array $map + * + * @return CreateLiveRealTimeLogDeliveryRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['Logstore'])) { + $model->logstore = $map['Logstore']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['Project'])) { + $model->project = $map['Project']; + } + if (isset($map['Region'])) { + $model->region = $map['Region']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/CreateLiveRealTimeLogDeliveryResponse.php b/vendor/alibabacloud/live-20161101/src/Models/CreateLiveRealTimeLogDeliveryResponse.php new file mode 100644 index 000000000..c2130b288 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/CreateLiveRealTimeLogDeliveryResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return CreateLiveRealTimeLogDeliveryResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = CreateLiveRealTimeLogDeliveryResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/CreateLiveRealTimeLogDeliveryResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/CreateLiveRealTimeLogDeliveryResponseBody.php new file mode 100644 index 000000000..594730212 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/CreateLiveRealTimeLogDeliveryResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return CreateLiveRealTimeLogDeliveryResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/CreateLiveStreamMonitorRequest.php b/vendor/alibabacloud/live-20161101/src/Models/CreateLiveStreamMonitorRequest.php new file mode 100644 index 000000000..1ac7e79b9 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/CreateLiveStreamMonitorRequest.php @@ -0,0 +1,119 @@ + 'App', + 'domain' => 'Domain', + 'inputList' => 'InputList', + 'monitorName' => 'MonitorName', + 'outputTemplate' => 'OutputTemplate', + 'ownerId' => 'OwnerId', + 'stream' => 'Stream', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->app) { + $res['App'] = $this->app; + } + if (null !== $this->domain) { + $res['Domain'] = $this->domain; + } + if (null !== $this->inputList) { + $res['InputList'] = $this->inputList; + } + if (null !== $this->monitorName) { + $res['MonitorName'] = $this->monitorName; + } + if (null !== $this->outputTemplate) { + $res['OutputTemplate'] = $this->outputTemplate; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->stream) { + $res['Stream'] = $this->stream; + } + + return $res; + } + + /** + * @param array $map + * + * @return CreateLiveStreamMonitorRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['App'])) { + $model->app = $map['App']; + } + if (isset($map['Domain'])) { + $model->domain = $map['Domain']; + } + if (isset($map['InputList'])) { + $model->inputList = $map['InputList']; + } + if (isset($map['MonitorName'])) { + $model->monitorName = $map['MonitorName']; + } + if (isset($map['OutputTemplate'])) { + $model->outputTemplate = $map['OutputTemplate']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['Stream'])) { + $model->stream = $map['Stream']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/CreateLiveStreamMonitorResponse.php b/vendor/alibabacloud/live-20161101/src/Models/CreateLiveStreamMonitorResponse.php new file mode 100644 index 000000000..1731d8d91 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/CreateLiveStreamMonitorResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return CreateLiveStreamMonitorResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = CreateLiveStreamMonitorResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/CreateLiveStreamMonitorResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/CreateLiveStreamMonitorResponseBody.php new file mode 100644 index 000000000..d964d0e83 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/CreateLiveStreamMonitorResponseBody.php @@ -0,0 +1,59 @@ + 'MonitorId', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->monitorId) { + $res['MonitorId'] = $this->monitorId; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return CreateLiveStreamMonitorResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['MonitorId'])) { + $model->monitorId = $map['MonitorId']; + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/CreateLiveStreamRecordIndexFilesRequest.php b/vendor/alibabacloud/live-20161101/src/Models/CreateLiveStreamRecordIndexFilesRequest.php new file mode 100644 index 000000000..ab3c14fab --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/CreateLiveStreamRecordIndexFilesRequest.php @@ -0,0 +1,155 @@ + 'AppName', + 'domainName' => 'DomainName', + 'endTime' => 'EndTime', + 'ossBucket' => 'OssBucket', + 'ossEndpoint' => 'OssEndpoint', + 'ossObject' => 'OssObject', + 'ownerId' => 'OwnerId', + 'securityToken' => 'SecurityToken', + 'startTime' => 'StartTime', + 'streamName' => 'StreamName', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->appName) { + $res['AppName'] = $this->appName; + } + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->endTime) { + $res['EndTime'] = $this->endTime; + } + if (null !== $this->ossBucket) { + $res['OssBucket'] = $this->ossBucket; + } + if (null !== $this->ossEndpoint) { + $res['OssEndpoint'] = $this->ossEndpoint; + } + if (null !== $this->ossObject) { + $res['OssObject'] = $this->ossObject; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->securityToken) { + $res['SecurityToken'] = $this->securityToken; + } + if (null !== $this->startTime) { + $res['StartTime'] = $this->startTime; + } + if (null !== $this->streamName) { + $res['StreamName'] = $this->streamName; + } + + return $res; + } + + /** + * @param array $map + * + * @return CreateLiveStreamRecordIndexFilesRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppName'])) { + $model->appName = $map['AppName']; + } + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['EndTime'])) { + $model->endTime = $map['EndTime']; + } + if (isset($map['OssBucket'])) { + $model->ossBucket = $map['OssBucket']; + } + if (isset($map['OssEndpoint'])) { + $model->ossEndpoint = $map['OssEndpoint']; + } + if (isset($map['OssObject'])) { + $model->ossObject = $map['OssObject']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['SecurityToken'])) { + $model->securityToken = $map['SecurityToken']; + } + if (isset($map['StartTime'])) { + $model->startTime = $map['StartTime']; + } + if (isset($map['StreamName'])) { + $model->streamName = $map['StreamName']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/CreateLiveStreamRecordIndexFilesResponse.php b/vendor/alibabacloud/live-20161101/src/Models/CreateLiveStreamRecordIndexFilesResponse.php new file mode 100644 index 000000000..94b1972cb --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/CreateLiveStreamRecordIndexFilesResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return CreateLiveStreamRecordIndexFilesResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = CreateLiveStreamRecordIndexFilesResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/CreateLiveStreamRecordIndexFilesResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/CreateLiveStreamRecordIndexFilesResponseBody.php new file mode 100644 index 000000000..4eb14912a --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/CreateLiveStreamRecordIndexFilesResponseBody.php @@ -0,0 +1,60 @@ + 'RecordInfo', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->recordInfo) { + $res['RecordInfo'] = null !== $this->recordInfo ? $this->recordInfo->toMap() : null; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return CreateLiveStreamRecordIndexFilesResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RecordInfo'])) { + $model->recordInfo = recordInfo::fromMap($map['RecordInfo']); + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/CreateLiveStreamRecordIndexFilesResponseBody/recordInfo.php b/vendor/alibabacloud/live-20161101/src/Models/CreateLiveStreamRecordIndexFilesResponseBody/recordInfo.php new file mode 100644 index 000000000..6727b680c --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/CreateLiveStreamRecordIndexFilesResponseBody/recordInfo.php @@ -0,0 +1,203 @@ + 'AppName', + 'createTime' => 'CreateTime', + 'domainName' => 'DomainName', + 'duration' => 'Duration', + 'endTime' => 'EndTime', + 'height' => 'Height', + 'ossBucket' => 'OssBucket', + 'ossEndpoint' => 'OssEndpoint', + 'ossObject' => 'OssObject', + 'recordId' => 'RecordId', + 'recordUrl' => 'RecordUrl', + 'startTime' => 'StartTime', + 'streamName' => 'StreamName', + 'width' => 'Width', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->appName) { + $res['AppName'] = $this->appName; + } + if (null !== $this->createTime) { + $res['CreateTime'] = $this->createTime; + } + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->duration) { + $res['Duration'] = $this->duration; + } + if (null !== $this->endTime) { + $res['EndTime'] = $this->endTime; + } + if (null !== $this->height) { + $res['Height'] = $this->height; + } + if (null !== $this->ossBucket) { + $res['OssBucket'] = $this->ossBucket; + } + if (null !== $this->ossEndpoint) { + $res['OssEndpoint'] = $this->ossEndpoint; + } + if (null !== $this->ossObject) { + $res['OssObject'] = $this->ossObject; + } + if (null !== $this->recordId) { + $res['RecordId'] = $this->recordId; + } + if (null !== $this->recordUrl) { + $res['RecordUrl'] = $this->recordUrl; + } + if (null !== $this->startTime) { + $res['StartTime'] = $this->startTime; + } + if (null !== $this->streamName) { + $res['StreamName'] = $this->streamName; + } + if (null !== $this->width) { + $res['Width'] = $this->width; + } + + return $res; + } + + /** + * @param array $map + * + * @return recordInfo + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppName'])) { + $model->appName = $map['AppName']; + } + if (isset($map['CreateTime'])) { + $model->createTime = $map['CreateTime']; + } + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['Duration'])) { + $model->duration = $map['Duration']; + } + if (isset($map['EndTime'])) { + $model->endTime = $map['EndTime']; + } + if (isset($map['Height'])) { + $model->height = $map['Height']; + } + if (isset($map['OssBucket'])) { + $model->ossBucket = $map['OssBucket']; + } + if (isset($map['OssEndpoint'])) { + $model->ossEndpoint = $map['OssEndpoint']; + } + if (isset($map['OssObject'])) { + $model->ossObject = $map['OssObject']; + } + if (isset($map['RecordId'])) { + $model->recordId = $map['RecordId']; + } + if (isset($map['RecordUrl'])) { + $model->recordUrl = $map['RecordUrl']; + } + if (isset($map['StartTime'])) { + $model->startTime = $map['StartTime']; + } + if (isset($map['StreamName'])) { + $model->streamName = $map['StreamName']; + } + if (isset($map['Width'])) { + $model->width = $map['Width']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/CreateLiveTranscodeTemplateRequest.php b/vendor/alibabacloud/live-20161101/src/Models/CreateLiveTranscodeTemplateRequest.php new file mode 100644 index 000000000..630b42211 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/CreateLiveTranscodeTemplateRequest.php @@ -0,0 +1,83 @@ + 'OwnerId', + 'securityToken' => 'SecurityToken', + 'templateConfig' => 'TemplateConfig', + 'type' => 'Type', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->securityToken) { + $res['SecurityToken'] = $this->securityToken; + } + if (null !== $this->templateConfig) { + $res['TemplateConfig'] = $this->templateConfig; + } + if (null !== $this->type) { + $res['Type'] = $this->type; + } + + return $res; + } + + /** + * @param array $map + * + * @return CreateLiveTranscodeTemplateRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['SecurityToken'])) { + $model->securityToken = $map['SecurityToken']; + } + if (isset($map['TemplateConfig'])) { + $model->templateConfig = $map['TemplateConfig']; + } + if (isset($map['Type'])) { + $model->type = $map['Type']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/CreateLiveTranscodeTemplateResponse.php b/vendor/alibabacloud/live-20161101/src/Models/CreateLiveTranscodeTemplateResponse.php new file mode 100644 index 000000000..7a6985452 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/CreateLiveTranscodeTemplateResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return CreateLiveTranscodeTemplateResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = CreateLiveTranscodeTemplateResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/CreateLiveTranscodeTemplateResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/CreateLiveTranscodeTemplateResponseBody.php new file mode 100644 index 000000000..9009190d1 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/CreateLiveTranscodeTemplateResponseBody.php @@ -0,0 +1,59 @@ + 'RequestId', + 'templateId' => 'TemplateId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->templateId) { + $res['TemplateId'] = $this->templateId; + } + + return $res; + } + + /** + * @param array $map + * + * @return CreateLiveTranscodeTemplateResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['TemplateId'])) { + $model->templateId = $map['TemplateId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/CreateMessageAppRequest.php b/vendor/alibabacloud/live-20161101/src/Models/CreateMessageAppRequest.php new file mode 100644 index 000000000..c54b02b4e --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/CreateMessageAppRequest.php @@ -0,0 +1,71 @@ + 'AppConfig', + 'appName' => 'AppName', + 'extension' => 'Extension', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->appConfig) { + $res['AppConfig'] = $this->appConfig; + } + if (null !== $this->appName) { + $res['AppName'] = $this->appName; + } + if (null !== $this->extension) { + $res['Extension'] = $this->extension; + } + + return $res; + } + + /** + * @param array $map + * + * @return CreateMessageAppRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppConfig'])) { + $model->appConfig = $map['AppConfig']; + } + if (isset($map['AppName'])) { + $model->appName = $map['AppName']; + } + if (isset($map['Extension'])) { + $model->extension = $map['Extension']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/CreateMessageAppResponse.php b/vendor/alibabacloud/live-20161101/src/Models/CreateMessageAppResponse.php new file mode 100644 index 000000000..643e22c66 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/CreateMessageAppResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return CreateMessageAppResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = CreateMessageAppResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/CreateMessageAppResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/CreateMessageAppResponseBody.php new file mode 100644 index 000000000..e4959e78e --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/CreateMessageAppResponseBody.php @@ -0,0 +1,60 @@ + 'RequestId', + 'result' => 'Result', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->result) { + $res['Result'] = null !== $this->result ? $this->result->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return CreateMessageAppResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['Result'])) { + $model->result = result::fromMap($map['Result']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/CreateMessageAppResponseBody/result.php b/vendor/alibabacloud/live-20161101/src/Models/CreateMessageAppResponseBody/result.php new file mode 100644 index 000000000..50ea6aa95 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/CreateMessageAppResponseBody/result.php @@ -0,0 +1,47 @@ + 'AppId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->appId) { + $res['AppId'] = $this->appId; + } + + return $res; + } + + /** + * @param array $map + * + * @return result + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppId'])) { + $model->appId = $map['AppId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/CreateMessageAppShrinkRequest.php b/vendor/alibabacloud/live-20161101/src/Models/CreateMessageAppShrinkRequest.php new file mode 100644 index 000000000..ced9ebc5a --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/CreateMessageAppShrinkRequest.php @@ -0,0 +1,71 @@ + 'AppConfig', + 'appName' => 'AppName', + 'extensionShrink' => 'Extension', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->appConfigShrink) { + $res['AppConfig'] = $this->appConfigShrink; + } + if (null !== $this->appName) { + $res['AppName'] = $this->appName; + } + if (null !== $this->extensionShrink) { + $res['Extension'] = $this->extensionShrink; + } + + return $res; + } + + /** + * @param array $map + * + * @return CreateMessageAppShrinkRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppConfig'])) { + $model->appConfigShrink = $map['AppConfig']; + } + if (isset($map['AppName'])) { + $model->appName = $map['AppName']; + } + if (isset($map['Extension'])) { + $model->extensionShrink = $map['Extension']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/CreateMessageGroupRequest.php b/vendor/alibabacloud/live-20161101/src/Models/CreateMessageGroupRequest.php new file mode 100644 index 000000000..abdde2f07 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/CreateMessageGroupRequest.php @@ -0,0 +1,71 @@ + 'AppId', + 'creatorId' => 'CreatorId', + 'extension' => 'Extension', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->appId) { + $res['AppId'] = $this->appId; + } + if (null !== $this->creatorId) { + $res['CreatorId'] = $this->creatorId; + } + if (null !== $this->extension) { + $res['Extension'] = $this->extension; + } + + return $res; + } + + /** + * @param array $map + * + * @return CreateMessageGroupRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppId'])) { + $model->appId = $map['AppId']; + } + if (isset($map['CreatorId'])) { + $model->creatorId = $map['CreatorId']; + } + if (isset($map['Extension'])) { + $model->extension = $map['Extension']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/CreateMessageGroupResponse.php b/vendor/alibabacloud/live-20161101/src/Models/CreateMessageGroupResponse.php new file mode 100644 index 000000000..fbb68b45c --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/CreateMessageGroupResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return CreateMessageGroupResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = CreateMessageGroupResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/CreateMessageGroupResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/CreateMessageGroupResponseBody.php new file mode 100644 index 000000000..11a8613d5 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/CreateMessageGroupResponseBody.php @@ -0,0 +1,60 @@ + 'RequestId', + 'result' => 'Result', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->result) { + $res['Result'] = null !== $this->result ? $this->result->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return CreateMessageGroupResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['Result'])) { + $model->result = result::fromMap($map['Result']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/CreateMessageGroupResponseBody/result.php b/vendor/alibabacloud/live-20161101/src/Models/CreateMessageGroupResponseBody/result.php new file mode 100644 index 000000000..3c2164069 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/CreateMessageGroupResponseBody/result.php @@ -0,0 +1,59 @@ + 'Extension', + 'groupId' => 'GroupId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->extension) { + $res['Extension'] = $this->extension; + } + if (null !== $this->groupId) { + $res['GroupId'] = $this->groupId; + } + + return $res; + } + + /** + * @param array $map + * + * @return result + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Extension'])) { + $model->extension = $map['Extension']; + } + if (isset($map['GroupId'])) { + $model->groupId = $map['GroupId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/CreateMessageGroupShrinkRequest.php b/vendor/alibabacloud/live-20161101/src/Models/CreateMessageGroupShrinkRequest.php new file mode 100644 index 000000000..d46f99482 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/CreateMessageGroupShrinkRequest.php @@ -0,0 +1,71 @@ + 'AppId', + 'creatorId' => 'CreatorId', + 'extensionShrink' => 'Extension', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->appId) { + $res['AppId'] = $this->appId; + } + if (null !== $this->creatorId) { + $res['CreatorId'] = $this->creatorId; + } + if (null !== $this->extensionShrink) { + $res['Extension'] = $this->extensionShrink; + } + + return $res; + } + + /** + * @param array $map + * + * @return CreateMessageGroupShrinkRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppId'])) { + $model->appId = $map['AppId']; + } + if (isset($map['CreatorId'])) { + $model->creatorId = $map['CreatorId']; + } + if (isset($map['Extension'])) { + $model->extensionShrink = $map['Extension']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/CreateMixStreamRequest.php b/vendor/alibabacloud/live-20161101/src/Models/CreateMixStreamRequest.php new file mode 100644 index 000000000..63191107c --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/CreateMixStreamRequest.php @@ -0,0 +1,107 @@ + 'CallbackConfig', + 'domainName' => 'DomainName', + 'inputStreamList' => 'InputStreamList', + 'layoutId' => 'LayoutId', + 'outputConfig' => 'OutputConfig', + 'ownerId' => 'OwnerId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->callbackConfig) { + $res['CallbackConfig'] = $this->callbackConfig; + } + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->inputStreamList) { + $res['InputStreamList'] = $this->inputStreamList; + } + if (null !== $this->layoutId) { + $res['LayoutId'] = $this->layoutId; + } + if (null !== $this->outputConfig) { + $res['OutputConfig'] = $this->outputConfig; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + return $res; + } + + /** + * @param array $map + * + * @return CreateMixStreamRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CallbackConfig'])) { + $model->callbackConfig = $map['CallbackConfig']; + } + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['InputStreamList'])) { + $model->inputStreamList = $map['InputStreamList']; + } + if (isset($map['LayoutId'])) { + $model->layoutId = $map['LayoutId']; + } + if (isset($map['OutputConfig'])) { + $model->outputConfig = $map['OutputConfig']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/CreateMixStreamResponse.php b/vendor/alibabacloud/live-20161101/src/Models/CreateMixStreamResponse.php new file mode 100644 index 000000000..c72104133 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/CreateMixStreamResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return CreateMixStreamResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = CreateMixStreamResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/CreateMixStreamResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/CreateMixStreamResponseBody.php new file mode 100644 index 000000000..104f3dbe2 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/CreateMixStreamResponseBody.php @@ -0,0 +1,59 @@ + 'MixStreamId', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->mixStreamId) { + $res['MixStreamId'] = $this->mixStreamId; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return CreateMixStreamResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['MixStreamId'])) { + $model->mixStreamId = $map['MixStreamId']; + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/CreateRoomRequest.php b/vendor/alibabacloud/live-20161101/src/Models/CreateRoomRequest.php new file mode 100644 index 000000000..21444d9c2 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/CreateRoomRequest.php @@ -0,0 +1,107 @@ + 'OwnerId', + 'appId' => 'AppId', + 'roomId' => 'RoomId', + 'anchorId' => 'AnchorId', + 'templateIds' => 'TemplateIds', + 'useAppTranscode' => 'UseAppTranscode', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->appId) { + $res['AppId'] = $this->appId; + } + if (null !== $this->roomId) { + $res['RoomId'] = $this->roomId; + } + if (null !== $this->anchorId) { + $res['AnchorId'] = $this->anchorId; + } + if (null !== $this->templateIds) { + $res['TemplateIds'] = $this->templateIds; + } + if (null !== $this->useAppTranscode) { + $res['UseAppTranscode'] = $this->useAppTranscode; + } + + return $res; + } + + /** + * @param array $map + * + * @return CreateRoomRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['AppId'])) { + $model->appId = $map['AppId']; + } + if (isset($map['RoomId'])) { + $model->roomId = $map['RoomId']; + } + if (isset($map['AnchorId'])) { + $model->anchorId = $map['AnchorId']; + } + if (isset($map['TemplateIds'])) { + $model->templateIds = $map['TemplateIds']; + } + if (isset($map['UseAppTranscode'])) { + $model->useAppTranscode = $map['UseAppTranscode']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/CreateRoomResponse.php b/vendor/alibabacloud/live-20161101/src/Models/CreateRoomResponse.php new file mode 100644 index 000000000..8606c84fa --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/CreateRoomResponse.php @@ -0,0 +1,61 @@ + 'headers', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return CreateRoomResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['body'])) { + $model->body = CreateRoomResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/CreateRoomResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/CreateRoomResponseBody.php new file mode 100644 index 000000000..11066ef3a --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/CreateRoomResponseBody.php @@ -0,0 +1,83 @@ + 'RequestId', + 'appId' => 'AppId', + 'anchorId' => 'AnchorId', + 'roomId' => 'RoomId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->appId) { + $res['AppId'] = $this->appId; + } + if (null !== $this->anchorId) { + $res['AnchorId'] = $this->anchorId; + } + if (null !== $this->roomId) { + $res['RoomId'] = $this->roomId; + } + + return $res; + } + + /** + * @param array $map + * + * @return CreateRoomResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['AppId'])) { + $model->appId = $map['AppId']; + } + if (isset($map['AnchorId'])) { + $model->anchorId = $map['AnchorId']; + } + if (isset($map['RoomId'])) { + $model->roomId = $map['RoomId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteBoardRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteBoardRequest.php new file mode 100644 index 000000000..bd5792e5e --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteBoardRequest.php @@ -0,0 +1,71 @@ + 'OwnerId', + 'appId' => 'AppId', + 'boardId' => 'BoardId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->appId) { + $res['AppId'] = $this->appId; + } + if (null !== $this->boardId) { + $res['BoardId'] = $this->boardId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteBoardRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['AppId'])) { + $model->appId = $map['AppId']; + } + if (isset($map['BoardId'])) { + $model->boardId = $map['BoardId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteBoardResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteBoardResponse.php new file mode 100644 index 000000000..a54c103a3 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteBoardResponse.php @@ -0,0 +1,61 @@ + 'headers', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteBoardResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['body'])) { + $model->body = DeleteBoardResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteBoardResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteBoardResponseBody.php new file mode 100644 index 000000000..4274f3ba8 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteBoardResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteBoardResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterComponentRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterComponentRequest.php new file mode 100644 index 000000000..74e4fb6fe --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterComponentRequest.php @@ -0,0 +1,71 @@ + 'CasterId', + 'componentId' => 'ComponentId', + 'ownerId' => 'OwnerId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->casterId) { + $res['CasterId'] = $this->casterId; + } + if (null !== $this->componentId) { + $res['ComponentId'] = $this->componentId; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteCasterComponentRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CasterId'])) { + $model->casterId = $map['CasterId']; + } + if (isset($map['ComponentId'])) { + $model->componentId = $map['ComponentId']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterComponentResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterComponentResponse.php new file mode 100644 index 000000000..3002e6336 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterComponentResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteCasterComponentResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DeleteCasterComponentResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterComponentResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterComponentResponseBody.php new file mode 100644 index 000000000..cb15acdf1 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterComponentResponseBody.php @@ -0,0 +1,71 @@ + 'CasterId', + 'componentId' => 'ComponentId', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->casterId) { + $res['CasterId'] = $this->casterId; + } + if (null !== $this->componentId) { + $res['ComponentId'] = $this->componentId; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteCasterComponentResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CasterId'])) { + $model->casterId = $map['CasterId']; + } + if (isset($map['ComponentId'])) { + $model->componentId = $map['ComponentId']; + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterEpisodeGroupRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterEpisodeGroupRequest.php new file mode 100644 index 000000000..0a5509cd0 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterEpisodeGroupRequest.php @@ -0,0 +1,59 @@ + 'OwnerId', + 'programId' => 'ProgramId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->programId) { + $res['ProgramId'] = $this->programId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteCasterEpisodeGroupRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['ProgramId'])) { + $model->programId = $map['ProgramId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterEpisodeGroupResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterEpisodeGroupResponse.php new file mode 100644 index 000000000..b20de34c4 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterEpisodeGroupResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteCasterEpisodeGroupResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DeleteCasterEpisodeGroupResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterEpisodeGroupResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterEpisodeGroupResponseBody.php new file mode 100644 index 000000000..937b1c067 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterEpisodeGroupResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteCasterEpisodeGroupResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterEpisodeRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterEpisodeRequest.php new file mode 100644 index 000000000..a46e422c9 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterEpisodeRequest.php @@ -0,0 +1,71 @@ + 'CasterId', + 'episodeId' => 'EpisodeId', + 'ownerId' => 'OwnerId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->casterId) { + $res['CasterId'] = $this->casterId; + } + if (null !== $this->episodeId) { + $res['EpisodeId'] = $this->episodeId; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteCasterEpisodeRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CasterId'])) { + $model->casterId = $map['CasterId']; + } + if (isset($map['EpisodeId'])) { + $model->episodeId = $map['EpisodeId']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterEpisodeResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterEpisodeResponse.php new file mode 100644 index 000000000..c10583e1e --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterEpisodeResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteCasterEpisodeResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DeleteCasterEpisodeResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterEpisodeResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterEpisodeResponseBody.php new file mode 100644 index 000000000..ae783cba5 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterEpisodeResponseBody.php @@ -0,0 +1,71 @@ + 'CasterId', + 'episodeId' => 'EpisodeId', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->casterId) { + $res['CasterId'] = $this->casterId; + } + if (null !== $this->episodeId) { + $res['EpisodeId'] = $this->episodeId; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteCasterEpisodeResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CasterId'])) { + $model->casterId = $map['CasterId']; + } + if (isset($map['EpisodeId'])) { + $model->episodeId = $map['EpisodeId']; + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterLayoutRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterLayoutRequest.php new file mode 100644 index 000000000..a7f0f51c8 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterLayoutRequest.php @@ -0,0 +1,71 @@ + 'CasterId', + 'layoutId' => 'LayoutId', + 'ownerId' => 'OwnerId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->casterId) { + $res['CasterId'] = $this->casterId; + } + if (null !== $this->layoutId) { + $res['LayoutId'] = $this->layoutId; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteCasterLayoutRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CasterId'])) { + $model->casterId = $map['CasterId']; + } + if (isset($map['LayoutId'])) { + $model->layoutId = $map['LayoutId']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterLayoutResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterLayoutResponse.php new file mode 100644 index 000000000..1043d5ab1 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterLayoutResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteCasterLayoutResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DeleteCasterLayoutResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterLayoutResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterLayoutResponseBody.php new file mode 100644 index 000000000..b67120a98 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterLayoutResponseBody.php @@ -0,0 +1,71 @@ + 'CasterId', + 'layoutId' => 'LayoutId', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->casterId) { + $res['CasterId'] = $this->casterId; + } + if (null !== $this->layoutId) { + $res['LayoutId'] = $this->layoutId; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteCasterLayoutResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CasterId'])) { + $model->casterId = $map['CasterId']; + } + if (isset($map['LayoutId'])) { + $model->layoutId = $map['LayoutId']; + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterProgramRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterProgramRequest.php new file mode 100644 index 000000000..12651ffb1 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterProgramRequest.php @@ -0,0 +1,59 @@ + 'CasterId', + 'ownerId' => 'OwnerId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->casterId) { + $res['CasterId'] = $this->casterId; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteCasterProgramRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CasterId'])) { + $model->casterId = $map['CasterId']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterProgramResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterProgramResponse.php new file mode 100644 index 000000000..b1ba2b884 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterProgramResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteCasterProgramResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DeleteCasterProgramResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterProgramResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterProgramResponseBody.php new file mode 100644 index 000000000..d98da2a04 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterProgramResponseBody.php @@ -0,0 +1,59 @@ + 'CasterId', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->casterId) { + $res['CasterId'] = $this->casterId; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteCasterProgramResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CasterId'])) { + $model->casterId = $map['CasterId']; + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterRequest.php new file mode 100644 index 000000000..5e125685e --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterRequest.php @@ -0,0 +1,59 @@ + 'CasterId', + 'ownerId' => 'OwnerId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->casterId) { + $res['CasterId'] = $this->casterId; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteCasterRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CasterId'])) { + $model->casterId = $map['CasterId']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterResponse.php new file mode 100644 index 000000000..7d74df75b --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteCasterResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DeleteCasterResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterResponseBody.php new file mode 100644 index 000000000..7d8ee440e --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterResponseBody.php @@ -0,0 +1,59 @@ + 'CasterId', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->casterId) { + $res['CasterId'] = $this->casterId; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteCasterResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CasterId'])) { + $model->casterId = $map['CasterId']; + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterSceneConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterSceneConfigRequest.php new file mode 100644 index 000000000..b6ac83ac1 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterSceneConfigRequest.php @@ -0,0 +1,83 @@ + 'CasterId', + 'ownerId' => 'OwnerId', + 'sceneId' => 'SceneId', + 'type' => 'Type', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->casterId) { + $res['CasterId'] = $this->casterId; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->sceneId) { + $res['SceneId'] = $this->sceneId; + } + if (null !== $this->type) { + $res['Type'] = $this->type; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteCasterSceneConfigRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CasterId'])) { + $model->casterId = $map['CasterId']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['SceneId'])) { + $model->sceneId = $map['SceneId']; + } + if (isset($map['Type'])) { + $model->type = $map['Type']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterSceneConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterSceneConfigResponse.php new file mode 100644 index 000000000..5fcc05355 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterSceneConfigResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteCasterSceneConfigResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DeleteCasterSceneConfigResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterSceneConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterSceneConfigResponseBody.php new file mode 100644 index 000000000..3d5073641 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterSceneConfigResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteCasterSceneConfigResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterVideoResourceRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterVideoResourceRequest.php new file mode 100644 index 000000000..cded3d925 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterVideoResourceRequest.php @@ -0,0 +1,71 @@ + 'CasterId', + 'ownerId' => 'OwnerId', + 'resourceId' => 'ResourceId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->casterId) { + $res['CasterId'] = $this->casterId; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->resourceId) { + $res['ResourceId'] = $this->resourceId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteCasterVideoResourceRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CasterId'])) { + $model->casterId = $map['CasterId']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['ResourceId'])) { + $model->resourceId = $map['ResourceId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterVideoResourceResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterVideoResourceResponse.php new file mode 100644 index 000000000..945d1e5f6 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterVideoResourceResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteCasterVideoResourceResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DeleteCasterVideoResourceResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterVideoResourceResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterVideoResourceResponseBody.php new file mode 100644 index 000000000..8439a6e89 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteCasterVideoResourceResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteCasterVideoResourceResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteCustomTemplateRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteCustomTemplateRequest.php new file mode 100644 index 000000000..7f34e319c --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteCustomTemplateRequest.php @@ -0,0 +1,59 @@ + 'OwnerId', + 'template' => 'Template', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->template) { + $res['Template'] = $this->template; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteCustomTemplateRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['Template'])) { + $model->template = $map['Template']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteCustomTemplateResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteCustomTemplateResponse.php new file mode 100644 index 000000000..0cfb1bf16 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteCustomTemplateResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteCustomTemplateResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DeleteCustomTemplateResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteCustomTemplateResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteCustomTemplateResponseBody.php new file mode 100644 index 000000000..ed4e871ea --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteCustomTemplateResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteCustomTemplateResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteHtmlResourceRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteHtmlResourceRequest.php new file mode 100644 index 000000000..43f325648 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteHtmlResourceRequest.php @@ -0,0 +1,83 @@ + 'OwnerId', + 'htmlResourceId' => 'HtmlResourceId', + 'htmlUrl' => 'htmlUrl', + 'casterId' => 'CasterId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->htmlResourceId) { + $res['HtmlResourceId'] = $this->htmlResourceId; + } + if (null !== $this->htmlUrl) { + $res['htmlUrl'] = $this->htmlUrl; + } + if (null !== $this->casterId) { + $res['CasterId'] = $this->casterId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteHtmlResourceRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['HtmlResourceId'])) { + $model->htmlResourceId = $map['HtmlResourceId']; + } + if (isset($map['htmlUrl'])) { + $model->htmlUrl = $map['htmlUrl']; + } + if (isset($map['CasterId'])) { + $model->casterId = $map['CasterId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteHtmlResourceResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteHtmlResourceResponse.php new file mode 100644 index 000000000..8f3f7774d --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteHtmlResourceResponse.php @@ -0,0 +1,61 @@ + 'headers', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteHtmlResourceResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['body'])) { + $model->body = DeleteHtmlResourceResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteHtmlResourceResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteHtmlResourceResponseBody.php new file mode 100644 index 000000000..fb0a9970a --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteHtmlResourceResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteHtmlResourceResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveASRConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveASRConfigRequest.php new file mode 100644 index 000000000..3ec419c58 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveASRConfigRequest.php @@ -0,0 +1,83 @@ + 'OwnerId', + 'domainName' => 'DomainName', + 'appName' => 'AppName', + 'streamName' => 'StreamName', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->appName) { + $res['AppName'] = $this->appName; + } + if (null !== $this->streamName) { + $res['StreamName'] = $this->streamName; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteLiveASRConfigRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['AppName'])) { + $model->appName = $map['AppName']; + } + if (isset($map['StreamName'])) { + $model->streamName = $map['StreamName']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveASRConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveASRConfigResponse.php new file mode 100644 index 000000000..74f905629 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveASRConfigResponse.php @@ -0,0 +1,61 @@ + 'headers', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteLiveASRConfigResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['body'])) { + $model->body = DeleteLiveASRConfigResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveASRConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveASRConfigResponseBody.php new file mode 100644 index 000000000..532e8d903 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveASRConfigResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteLiveASRConfigResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveAppRecordConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveAppRecordConfigRequest.php new file mode 100644 index 000000000..3b39cfa8b --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveAppRecordConfigRequest.php @@ -0,0 +1,95 @@ + 'AppName', + 'domainName' => 'DomainName', + 'ownerId' => 'OwnerId', + 'securityToken' => 'SecurityToken', + 'streamName' => 'StreamName', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->appName) { + $res['AppName'] = $this->appName; + } + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->securityToken) { + $res['SecurityToken'] = $this->securityToken; + } + if (null !== $this->streamName) { + $res['StreamName'] = $this->streamName; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteLiveAppRecordConfigRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppName'])) { + $model->appName = $map['AppName']; + } + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['SecurityToken'])) { + $model->securityToken = $map['SecurityToken']; + } + if (isset($map['StreamName'])) { + $model->streamName = $map['StreamName']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveAppRecordConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveAppRecordConfigResponse.php new file mode 100644 index 000000000..cb1da4022 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveAppRecordConfigResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteLiveAppRecordConfigResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DeleteLiveAppRecordConfigResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveAppRecordConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveAppRecordConfigResponseBody.php new file mode 100644 index 000000000..b2845ccd2 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveAppRecordConfigResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteLiveAppRecordConfigResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveAppSnapshotConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveAppSnapshotConfigRequest.php new file mode 100644 index 000000000..6d7c4d9db --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveAppSnapshotConfigRequest.php @@ -0,0 +1,83 @@ + 'AppName', + 'domainName' => 'DomainName', + 'ownerId' => 'OwnerId', + 'securityToken' => 'SecurityToken', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->appName) { + $res['AppName'] = $this->appName; + } + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->securityToken) { + $res['SecurityToken'] = $this->securityToken; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteLiveAppSnapshotConfigRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppName'])) { + $model->appName = $map['AppName']; + } + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['SecurityToken'])) { + $model->securityToken = $map['SecurityToken']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveAppSnapshotConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveAppSnapshotConfigResponse.php new file mode 100644 index 000000000..780b84e91 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveAppSnapshotConfigResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteLiveAppSnapshotConfigResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DeleteLiveAppSnapshotConfigResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveAppSnapshotConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveAppSnapshotConfigResponseBody.php new file mode 100644 index 000000000..63c9910c5 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveAppSnapshotConfigResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteLiveAppSnapshotConfigResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveAudioAuditConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveAudioAuditConfigRequest.php new file mode 100644 index 000000000..ec2a50ad2 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveAudioAuditConfigRequest.php @@ -0,0 +1,83 @@ + 'AppName', + 'domainName' => 'DomainName', + 'ownerId' => 'OwnerId', + 'streamName' => 'StreamName', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->appName) { + $res['AppName'] = $this->appName; + } + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->streamName) { + $res['StreamName'] = $this->streamName; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteLiveAudioAuditConfigRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppName'])) { + $model->appName = $map['AppName']; + } + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['StreamName'])) { + $model->streamName = $map['StreamName']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveAudioAuditConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveAudioAuditConfigResponse.php new file mode 100644 index 000000000..156d34c2c --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveAudioAuditConfigResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteLiveAudioAuditConfigResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DeleteLiveAudioAuditConfigResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveAudioAuditConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveAudioAuditConfigResponseBody.php new file mode 100644 index 000000000..3dd34483f --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveAudioAuditConfigResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteLiveAudioAuditConfigResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveAudioAuditNotifyConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveAudioAuditNotifyConfigRequest.php new file mode 100644 index 000000000..9b1fd9944 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveAudioAuditNotifyConfigRequest.php @@ -0,0 +1,59 @@ + 'DomainName', + 'ownerId' => 'OwnerId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteLiveAudioAuditNotifyConfigRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveAudioAuditNotifyConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveAudioAuditNotifyConfigResponse.php new file mode 100644 index 000000000..c51cf125a --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveAudioAuditNotifyConfigResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteLiveAudioAuditNotifyConfigResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DeleteLiveAudioAuditNotifyConfigResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveAudioAuditNotifyConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveAudioAuditNotifyConfigResponseBody.php new file mode 100644 index 000000000..05a4afedb --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveAudioAuditNotifyConfigResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteLiveAudioAuditNotifyConfigResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveDetectNotifyConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveDetectNotifyConfigRequest.php new file mode 100644 index 000000000..36f80420c --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveDetectNotifyConfigRequest.php @@ -0,0 +1,71 @@ + 'DomainName', + 'ownerId' => 'OwnerId', + 'securityToken' => 'SecurityToken', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->securityToken) { + $res['SecurityToken'] = $this->securityToken; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteLiveDetectNotifyConfigRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['SecurityToken'])) { + $model->securityToken = $map['SecurityToken']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveDetectNotifyConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveDetectNotifyConfigResponse.php new file mode 100644 index 000000000..0ce954d74 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveDetectNotifyConfigResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteLiveDetectNotifyConfigResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DeleteLiveDetectNotifyConfigResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveDetectNotifyConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveDetectNotifyConfigResponseBody.php new file mode 100644 index 000000000..3a715b74e --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveDetectNotifyConfigResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteLiveDetectNotifyConfigResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveDomainMappingRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveDomainMappingRequest.php new file mode 100644 index 000000000..e2c22d4d2 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveDomainMappingRequest.php @@ -0,0 +1,83 @@ + 'OwnerId', + 'pullDomain' => 'PullDomain', + 'pushDomain' => 'PushDomain', + 'securityToken' => 'SecurityToken', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->pullDomain) { + $res['PullDomain'] = $this->pullDomain; + } + if (null !== $this->pushDomain) { + $res['PushDomain'] = $this->pushDomain; + } + if (null !== $this->securityToken) { + $res['SecurityToken'] = $this->securityToken; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteLiveDomainMappingRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['PullDomain'])) { + $model->pullDomain = $map['PullDomain']; + } + if (isset($map['PushDomain'])) { + $model->pushDomain = $map['PushDomain']; + } + if (isset($map['SecurityToken'])) { + $model->securityToken = $map['SecurityToken']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveDomainMappingResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveDomainMappingResponse.php new file mode 100644 index 000000000..bf9232b52 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveDomainMappingResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteLiveDomainMappingResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DeleteLiveDomainMappingResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveDomainMappingResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveDomainMappingResponseBody.php new file mode 100644 index 000000000..8f3f9dec7 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveDomainMappingResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteLiveDomainMappingResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveDomainPlayMappingRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveDomainPlayMappingRequest.php new file mode 100644 index 000000000..63a7431a5 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveDomainPlayMappingRequest.php @@ -0,0 +1,71 @@ + 'OwnerId', + 'playDomain' => 'PlayDomain', + 'pullDomain' => 'PullDomain', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->playDomain) { + $res['PlayDomain'] = $this->playDomain; + } + if (null !== $this->pullDomain) { + $res['PullDomain'] = $this->pullDomain; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteLiveDomainPlayMappingRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['PlayDomain'])) { + $model->playDomain = $map['PlayDomain']; + } + if (isset($map['PullDomain'])) { + $model->pullDomain = $map['PullDomain']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveDomainPlayMappingResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveDomainPlayMappingResponse.php new file mode 100644 index 000000000..82e7e7a59 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveDomainPlayMappingResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteLiveDomainPlayMappingResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DeleteLiveDomainPlayMappingResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveDomainPlayMappingResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveDomainPlayMappingResponseBody.php new file mode 100644 index 000000000..462272000 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveDomainPlayMappingResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteLiveDomainPlayMappingResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveDomainRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveDomainRequest.php new file mode 100644 index 000000000..7dd95c643 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveDomainRequest.php @@ -0,0 +1,83 @@ + 'DomainName', + 'ownerAccount' => 'OwnerAccount', + 'ownerId' => 'OwnerId', + 'securityToken' => 'SecurityToken', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->ownerAccount) { + $res['OwnerAccount'] = $this->ownerAccount; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->securityToken) { + $res['SecurityToken'] = $this->securityToken; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteLiveDomainRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['OwnerAccount'])) { + $model->ownerAccount = $map['OwnerAccount']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['SecurityToken'])) { + $model->securityToken = $map['SecurityToken']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveDomainResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveDomainResponse.php new file mode 100644 index 000000000..8b4010b45 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveDomainResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteLiveDomainResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DeleteLiveDomainResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveDomainResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveDomainResponseBody.php new file mode 100644 index 000000000..23b74823b --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveDomainResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteLiveDomainResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveEdgeTransferRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveEdgeTransferRequest.php new file mode 100644 index 000000000..c636a1e30 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveEdgeTransferRequest.php @@ -0,0 +1,59 @@ + 'DomainName', + 'ownerId' => 'OwnerId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteLiveEdgeTransferRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveEdgeTransferResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveEdgeTransferResponse.php new file mode 100644 index 000000000..4f7fb32da --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveEdgeTransferResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteLiveEdgeTransferResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DeleteLiveEdgeTransferResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveEdgeTransferResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveEdgeTransferResponseBody.php new file mode 100644 index 000000000..ee2a1a064 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveEdgeTransferResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteLiveEdgeTransferResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveLazyPullStreamInfoConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveLazyPullStreamInfoConfigRequest.php new file mode 100644 index 000000000..c98d95134 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveLazyPullStreamInfoConfigRequest.php @@ -0,0 +1,71 @@ + 'AppName', + 'domainName' => 'DomainName', + 'ownerId' => 'OwnerId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->appName) { + $res['AppName'] = $this->appName; + } + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteLiveLazyPullStreamInfoConfigRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppName'])) { + $model->appName = $map['AppName']; + } + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveLazyPullStreamInfoConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveLazyPullStreamInfoConfigResponse.php new file mode 100644 index 000000000..3693730d1 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveLazyPullStreamInfoConfigResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteLiveLazyPullStreamInfoConfigResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DeleteLiveLazyPullStreamInfoConfigResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveLazyPullStreamInfoConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveLazyPullStreamInfoConfigResponseBody.php new file mode 100644 index 000000000..d1cb17d9e --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveLazyPullStreamInfoConfigResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteLiveLazyPullStreamInfoConfigResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLivePullStreamInfoConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLivePullStreamInfoConfigRequest.php new file mode 100644 index 000000000..00e237f41 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLivePullStreamInfoConfigRequest.php @@ -0,0 +1,83 @@ + 'AppName', + 'domainName' => 'DomainName', + 'ownerId' => 'OwnerId', + 'streamName' => 'StreamName', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->appName) { + $res['AppName'] = $this->appName; + } + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->streamName) { + $res['StreamName'] = $this->streamName; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteLivePullStreamInfoConfigRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppName'])) { + $model->appName = $map['AppName']; + } + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['StreamName'])) { + $model->streamName = $map['StreamName']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLivePullStreamInfoConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLivePullStreamInfoConfigResponse.php new file mode 100644 index 000000000..a771e4afb --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLivePullStreamInfoConfigResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteLivePullStreamInfoConfigResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DeleteLivePullStreamInfoConfigResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLivePullStreamInfoConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLivePullStreamInfoConfigResponseBody.php new file mode 100644 index 000000000..3863d9c81 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLivePullStreamInfoConfigResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteLivePullStreamInfoConfigResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveRealTimeLogLogstoreRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveRealTimeLogLogstoreRequest.php new file mode 100644 index 000000000..2a7a62ca4 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveRealTimeLogLogstoreRequest.php @@ -0,0 +1,83 @@ + 'Logstore', + 'ownerId' => 'OwnerId', + 'project' => 'Project', + 'region' => 'Region', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->logstore) { + $res['Logstore'] = $this->logstore; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->project) { + $res['Project'] = $this->project; + } + if (null !== $this->region) { + $res['Region'] = $this->region; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteLiveRealTimeLogLogstoreRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Logstore'])) { + $model->logstore = $map['Logstore']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['Project'])) { + $model->project = $map['Project']; + } + if (isset($map['Region'])) { + $model->region = $map['Region']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveRealTimeLogLogstoreResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveRealTimeLogLogstoreResponse.php new file mode 100644 index 000000000..a81c0ea3c --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveRealTimeLogLogstoreResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteLiveRealTimeLogLogstoreResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DeleteLiveRealTimeLogLogstoreResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveRealTimeLogLogstoreResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveRealTimeLogLogstoreResponseBody.php new file mode 100644 index 000000000..d76bfffa3 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveRealTimeLogLogstoreResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteLiveRealTimeLogLogstoreResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveRealtimeLogDeliveryRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveRealtimeLogDeliveryRequest.php new file mode 100644 index 000000000..91dbb6e5c --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveRealtimeLogDeliveryRequest.php @@ -0,0 +1,95 @@ + 'DomainName', + 'logstore' => 'Logstore', + 'ownerId' => 'OwnerId', + 'project' => 'Project', + 'region' => 'Region', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->logstore) { + $res['Logstore'] = $this->logstore; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->project) { + $res['Project'] = $this->project; + } + if (null !== $this->region) { + $res['Region'] = $this->region; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteLiveRealtimeLogDeliveryRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['Logstore'])) { + $model->logstore = $map['Logstore']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['Project'])) { + $model->project = $map['Project']; + } + if (isset($map['Region'])) { + $model->region = $map['Region']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveRealtimeLogDeliveryResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveRealtimeLogDeliveryResponse.php new file mode 100644 index 000000000..b797a376c --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveRealtimeLogDeliveryResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteLiveRealtimeLogDeliveryResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DeleteLiveRealtimeLogDeliveryResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveRealtimeLogDeliveryResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveRealtimeLogDeliveryResponseBody.php new file mode 100644 index 000000000..b2d02e328 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveRealtimeLogDeliveryResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteLiveRealtimeLogDeliveryResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveRecordNotifyConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveRecordNotifyConfigRequest.php new file mode 100644 index 000000000..a681863c7 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveRecordNotifyConfigRequest.php @@ -0,0 +1,71 @@ + 'DomainName', + 'ownerId' => 'OwnerId', + 'securityToken' => 'SecurityToken', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->securityToken) { + $res['SecurityToken'] = $this->securityToken; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteLiveRecordNotifyConfigRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['SecurityToken'])) { + $model->securityToken = $map['SecurityToken']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveRecordNotifyConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveRecordNotifyConfigResponse.php new file mode 100644 index 000000000..2cedd9b6a --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveRecordNotifyConfigResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteLiveRecordNotifyConfigResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DeleteLiveRecordNotifyConfigResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveRecordNotifyConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveRecordNotifyConfigResponseBody.php new file mode 100644 index 000000000..30d5fe28f --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveRecordNotifyConfigResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteLiveRecordNotifyConfigResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveRecordVodConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveRecordVodConfigRequest.php new file mode 100644 index 000000000..a3ec53c6b --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveRecordVodConfigRequest.php @@ -0,0 +1,83 @@ + 'AppName', + 'domainName' => 'DomainName', + 'ownerId' => 'OwnerId', + 'streamName' => 'StreamName', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->appName) { + $res['AppName'] = $this->appName; + } + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->streamName) { + $res['StreamName'] = $this->streamName; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteLiveRecordVodConfigRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppName'])) { + $model->appName = $map['AppName']; + } + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['StreamName'])) { + $model->streamName = $map['StreamName']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveRecordVodConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveRecordVodConfigResponse.php new file mode 100644 index 000000000..dd51bfcc4 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveRecordVodConfigResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteLiveRecordVodConfigResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DeleteLiveRecordVodConfigResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveRecordVodConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveRecordVodConfigResponseBody.php new file mode 100644 index 000000000..643bf8020 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveRecordVodConfigResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteLiveRecordVodConfigResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveSnapshotDetectPornConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveSnapshotDetectPornConfigRequest.php new file mode 100644 index 000000000..7b88af329 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveSnapshotDetectPornConfigRequest.php @@ -0,0 +1,83 @@ + 'AppName', + 'domainName' => 'DomainName', + 'ownerId' => 'OwnerId', + 'securityToken' => 'SecurityToken', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->appName) { + $res['AppName'] = $this->appName; + } + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->securityToken) { + $res['SecurityToken'] = $this->securityToken; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteLiveSnapshotDetectPornConfigRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppName'])) { + $model->appName = $map['AppName']; + } + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['SecurityToken'])) { + $model->securityToken = $map['SecurityToken']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveSnapshotDetectPornConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveSnapshotDetectPornConfigResponse.php new file mode 100644 index 000000000..7b8808d43 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveSnapshotDetectPornConfigResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteLiveSnapshotDetectPornConfigResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DeleteLiveSnapshotDetectPornConfigResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveSnapshotDetectPornConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveSnapshotDetectPornConfigResponseBody.php new file mode 100644 index 000000000..77f155e00 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveSnapshotDetectPornConfigResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteLiveSnapshotDetectPornConfigResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveSnapshotNotifyConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveSnapshotNotifyConfigRequest.php new file mode 100644 index 000000000..8481006dd --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveSnapshotNotifyConfigRequest.php @@ -0,0 +1,59 @@ + 'DomainName', + 'ownerId' => 'OwnerId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteLiveSnapshotNotifyConfigRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveSnapshotNotifyConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveSnapshotNotifyConfigResponse.php new file mode 100644 index 000000000..afd84d796 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveSnapshotNotifyConfigResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteLiveSnapshotNotifyConfigResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DeleteLiveSnapshotNotifyConfigResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveSnapshotNotifyConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveSnapshotNotifyConfigResponseBody.php new file mode 100644 index 000000000..96ee78cd4 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveSnapshotNotifyConfigResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteLiveSnapshotNotifyConfigResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveSpecificStagingConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveSpecificStagingConfigRequest.php new file mode 100644 index 000000000..09b83980e --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveSpecificStagingConfigRequest.php @@ -0,0 +1,83 @@ + 'ConfigId', + 'domainName' => 'DomainName', + 'ownerId' => 'OwnerId', + 'securityToken' => 'SecurityToken', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->configId) { + $res['ConfigId'] = $this->configId; + } + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->securityToken) { + $res['SecurityToken'] = $this->securityToken; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteLiveSpecificStagingConfigRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['ConfigId'])) { + $model->configId = $map['ConfigId']; + } + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['SecurityToken'])) { + $model->securityToken = $map['SecurityToken']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveSpecificStagingConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveSpecificStagingConfigResponse.php new file mode 100644 index 000000000..abc6545b6 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveSpecificStagingConfigResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteLiveSpecificStagingConfigResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DeleteLiveSpecificStagingConfigResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveSpecificStagingConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveSpecificStagingConfigResponseBody.php new file mode 100644 index 000000000..2bbcf3e5b --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveSpecificStagingConfigResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteLiveSpecificStagingConfigResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamMonitorRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamMonitorRequest.php new file mode 100644 index 000000000..4c600e6de --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamMonitorRequest.php @@ -0,0 +1,59 @@ + 'MonitorId', + 'ownerId' => 'OwnerId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->monitorId) { + $res['MonitorId'] = $this->monitorId; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteLiveStreamMonitorRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['MonitorId'])) { + $model->monitorId = $map['MonitorId']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamMonitorResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamMonitorResponse.php new file mode 100644 index 000000000..f056c9b7e --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamMonitorResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteLiveStreamMonitorResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DeleteLiveStreamMonitorResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamMonitorResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamMonitorResponseBody.php new file mode 100644 index 000000000..9916ef1c9 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamMonitorResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteLiveStreamMonitorResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamRecordIndexFilesRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamRecordIndexFilesRequest.php new file mode 100644 index 000000000..7dcc9c0a1 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamRecordIndexFilesRequest.php @@ -0,0 +1,109 @@ + 'AppName', + 'domainName' => 'DomainName', + 'ownerId' => 'OwnerId', + 'recordId' => 'RecordId', + 'removeFile' => 'RemoveFile', + 'streamName' => 'StreamName', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->appName) { + $res['AppName'] = $this->appName; + } + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->recordId) { + $res['RecordId'] = $this->recordId; + } + if (null !== $this->removeFile) { + $res['RemoveFile'] = $this->removeFile; + } + if (null !== $this->streamName) { + $res['StreamName'] = $this->streamName; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteLiveStreamRecordIndexFilesRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppName'])) { + $model->appName = $map['AppName']; + } + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['RecordId'])) { + if (!empty($map['RecordId'])) { + $model->recordId = $map['RecordId']; + } + } + if (isset($map['RemoveFile'])) { + $model->removeFile = $map['RemoveFile']; + } + if (isset($map['StreamName'])) { + $model->streamName = $map['StreamName']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamRecordIndexFilesResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamRecordIndexFilesResponse.php new file mode 100644 index 000000000..f560f4928 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamRecordIndexFilesResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteLiveStreamRecordIndexFilesResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DeleteLiveStreamRecordIndexFilesResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamRecordIndexFilesResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamRecordIndexFilesResponseBody.php new file mode 100644 index 000000000..0f44b1e37 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamRecordIndexFilesResponseBody.php @@ -0,0 +1,84 @@ + 'Code', + 'message' => 'Message', + 'recordDeleteInfoList' => 'RecordDeleteInfoList', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->code) { + $res['Code'] = $this->code; + } + if (null !== $this->message) { + $res['Message'] = $this->message; + } + if (null !== $this->recordDeleteInfoList) { + $res['RecordDeleteInfoList'] = null !== $this->recordDeleteInfoList ? $this->recordDeleteInfoList->toMap() : null; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteLiveStreamRecordIndexFilesResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Code'])) { + $model->code = $map['Code']; + } + if (isset($map['Message'])) { + $model->message = $map['Message']; + } + if (isset($map['RecordDeleteInfoList'])) { + $model->recordDeleteInfoList = recordDeleteInfoList::fromMap($map['RecordDeleteInfoList']); + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamRecordIndexFilesResponseBody/recordDeleteInfoList.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamRecordIndexFilesResponseBody/recordDeleteInfoList.php new file mode 100644 index 000000000..d8f2480da --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamRecordIndexFilesResponseBody/recordDeleteInfoList.php @@ -0,0 +1,60 @@ + 'RecordDeleteInfo', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->recordDeleteInfo) { + $res['RecordDeleteInfo'] = []; + if (null !== $this->recordDeleteInfo && \is_array($this->recordDeleteInfo)) { + $n = 0; + foreach ($this->recordDeleteInfo as $item) { + $res['RecordDeleteInfo'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return recordDeleteInfoList + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RecordDeleteInfo'])) { + if (!empty($map['RecordDeleteInfo'])) { + $model->recordDeleteInfo = []; + $n = 0; + foreach ($map['RecordDeleteInfo'] as $item) { + $model->recordDeleteInfo[$n++] = null !== $item ? recordDeleteInfo::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamRecordIndexFilesResponseBody/recordDeleteInfoList/recordDeleteInfo.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamRecordIndexFilesResponseBody/recordDeleteInfoList/recordDeleteInfo.php new file mode 100644 index 000000000..9dbb98ebe --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamRecordIndexFilesResponseBody/recordDeleteInfoList/recordDeleteInfo.php @@ -0,0 +1,59 @@ + 'Message', + 'recordId' => 'RecordId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->message) { + $res['Message'] = $this->message; + } + if (null !== $this->recordId) { + $res['RecordId'] = $this->recordId; + } + + return $res; + } + + /** + * @param array $map + * + * @return recordDeleteInfo + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Message'])) { + $model->message = $map['Message']; + } + if (isset($map['RecordId'])) { + $model->recordId = $map['RecordId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamTranscodeRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamTranscodeRequest.php new file mode 100644 index 000000000..95a5dfc85 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamTranscodeRequest.php @@ -0,0 +1,95 @@ + 'App', + 'domain' => 'Domain', + 'ownerId' => 'OwnerId', + 'securityToken' => 'SecurityToken', + 'template' => 'Template', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->app) { + $res['App'] = $this->app; + } + if (null !== $this->domain) { + $res['Domain'] = $this->domain; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->securityToken) { + $res['SecurityToken'] = $this->securityToken; + } + if (null !== $this->template) { + $res['Template'] = $this->template; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteLiveStreamTranscodeRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['App'])) { + $model->app = $map['App']; + } + if (isset($map['Domain'])) { + $model->domain = $map['Domain']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['SecurityToken'])) { + $model->securityToken = $map['SecurityToken']; + } + if (isset($map['Template'])) { + $model->template = $map['Template']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamTranscodeResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamTranscodeResponse.php new file mode 100644 index 000000000..40235070d --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamTranscodeResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteLiveStreamTranscodeResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DeleteLiveStreamTranscodeResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamTranscodeResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamTranscodeResponseBody.php new file mode 100644 index 000000000..5e799e5ee --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamTranscodeResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteLiveStreamTranscodeResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamWatermarkRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamWatermarkRequest.php new file mode 100644 index 000000000..7df6557ee --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamWatermarkRequest.php @@ -0,0 +1,59 @@ + 'OwnerId', + 'templateId' => 'TemplateId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->templateId) { + $res['TemplateId'] = $this->templateId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteLiveStreamWatermarkRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['TemplateId'])) { + $model->templateId = $map['TemplateId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamWatermarkResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamWatermarkResponse.php new file mode 100644 index 000000000..17af27c82 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamWatermarkResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteLiveStreamWatermarkResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DeleteLiveStreamWatermarkResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamWatermarkResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamWatermarkResponseBody.php new file mode 100644 index 000000000..51034aaaa --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamWatermarkResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteLiveStreamWatermarkResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamWatermarkRuleRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamWatermarkRuleRequest.php new file mode 100644 index 000000000..e76eb5aa1 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamWatermarkRuleRequest.php @@ -0,0 +1,95 @@ + 'App', + 'domain' => 'Domain', + 'ownerId' => 'OwnerId', + 'ruleId' => 'RuleId', + 'stream' => 'Stream', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->app) { + $res['App'] = $this->app; + } + if (null !== $this->domain) { + $res['Domain'] = $this->domain; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->ruleId) { + $res['RuleId'] = $this->ruleId; + } + if (null !== $this->stream) { + $res['Stream'] = $this->stream; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteLiveStreamWatermarkRuleRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['App'])) { + $model->app = $map['App']; + } + if (isset($map['Domain'])) { + $model->domain = $map['Domain']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['RuleId'])) { + $model->ruleId = $map['RuleId']; + } + if (isset($map['Stream'])) { + $model->stream = $map['Stream']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamWatermarkRuleResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamWatermarkRuleResponse.php new file mode 100644 index 000000000..d7953fd6a --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamWatermarkRuleResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteLiveStreamWatermarkRuleResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DeleteLiveStreamWatermarkRuleResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamWatermarkRuleResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamWatermarkRuleResponseBody.php new file mode 100644 index 000000000..afed908e1 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamWatermarkRuleResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteLiveStreamWatermarkRuleResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamsNotifyUrlConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamsNotifyUrlConfigRequest.php new file mode 100644 index 000000000..0482c10fb --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamsNotifyUrlConfigRequest.php @@ -0,0 +1,59 @@ + 'DomainName', + 'ownerId' => 'OwnerId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteLiveStreamsNotifyUrlConfigRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamsNotifyUrlConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamsNotifyUrlConfigResponse.php new file mode 100644 index 000000000..37b3a45be --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamsNotifyUrlConfigResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteLiveStreamsNotifyUrlConfigResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DeleteLiveStreamsNotifyUrlConfigResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamsNotifyUrlConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamsNotifyUrlConfigResponseBody.php new file mode 100644 index 000000000..8ae037b5d --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteLiveStreamsNotifyUrlConfigResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteLiveStreamsNotifyUrlConfigResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteMessageAppRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteMessageAppRequest.php new file mode 100644 index 000000000..627f9582a --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteMessageAppRequest.php @@ -0,0 +1,47 @@ + 'AppId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->appId) { + $res['AppId'] = $this->appId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteMessageAppRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppId'])) { + $model->appId = $map['AppId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteMessageAppResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteMessageAppResponse.php new file mode 100644 index 000000000..fa49c3331 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteMessageAppResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteMessageAppResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DeleteMessageAppResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteMessageAppResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteMessageAppResponseBody.php new file mode 100644 index 000000000..ba9144205 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteMessageAppResponseBody.php @@ -0,0 +1,60 @@ + 'RequestId', + 'result' => 'Result', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->result) { + $res['Result'] = null !== $this->result ? $this->result->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteMessageAppResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['Result'])) { + $model->result = result::fromMap($map['Result']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteMessageAppResponseBody/result.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteMessageAppResponseBody/result.php new file mode 100644 index 000000000..f2efcae24 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteMessageAppResponseBody/result.php @@ -0,0 +1,47 @@ + 'Success', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->success) { + $res['Success'] = $this->success; + } + + return $res; + } + + /** + * @param array $map + * + * @return result + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Success'])) { + $model->success = $map['Success']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteMixStreamRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteMixStreamRequest.php new file mode 100644 index 000000000..35f65b78a --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteMixStreamRequest.php @@ -0,0 +1,95 @@ + 'AppName', + 'domainName' => 'DomainName', + 'mixStreamId' => 'MixStreamId', + 'ownerId' => 'OwnerId', + 'streamName' => 'StreamName', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->appName) { + $res['AppName'] = $this->appName; + } + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->mixStreamId) { + $res['MixStreamId'] = $this->mixStreamId; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->streamName) { + $res['StreamName'] = $this->streamName; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteMixStreamRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppName'])) { + $model->appName = $map['AppName']; + } + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['MixStreamId'])) { + $model->mixStreamId = $map['MixStreamId']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['StreamName'])) { + $model->streamName = $map['StreamName']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteMixStreamResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteMixStreamResponse.php new file mode 100644 index 000000000..7705f4fab --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteMixStreamResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteMixStreamResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DeleteMixStreamResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteMixStreamResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteMixStreamResponseBody.php new file mode 100644 index 000000000..1d9fd0ccb --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteMixStreamResponseBody.php @@ -0,0 +1,59 @@ + 'MixStreamId', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->mixStreamId) { + $res['MixStreamId'] = $this->mixStreamId; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteMixStreamResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['MixStreamId'])) { + $model->mixStreamId = $map['MixStreamId']; + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteMultiRateConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteMultiRateConfigRequest.php new file mode 100644 index 000000000..f179c0d9c --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteMultiRateConfigRequest.php @@ -0,0 +1,107 @@ + 'App', + 'deleteAll' => 'DeleteAll', + 'domainName' => 'DomainName', + 'groupId' => 'GroupId', + 'ownerId' => 'OwnerId', + 'templates' => 'Templates', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->app) { + $res['App'] = $this->app; + } + if (null !== $this->deleteAll) { + $res['DeleteAll'] = $this->deleteAll; + } + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->groupId) { + $res['GroupId'] = $this->groupId; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->templates) { + $res['Templates'] = $this->templates; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteMultiRateConfigRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['App'])) { + $model->app = $map['App']; + } + if (isset($map['DeleteAll'])) { + $model->deleteAll = $map['DeleteAll']; + } + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['GroupId'])) { + $model->groupId = $map['GroupId']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['Templates'])) { + $model->templates = $map['Templates']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteMultiRateConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteMultiRateConfigResponse.php new file mode 100644 index 000000000..33d16e28a --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteMultiRateConfigResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteMultiRateConfigResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DeleteMultiRateConfigResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteMultiRateConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteMultiRateConfigResponseBody.php new file mode 100644 index 000000000..3c996bc12 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteMultiRateConfigResponseBody.php @@ -0,0 +1,71 @@ + 'Code', + 'message' => 'Message', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->code) { + $res['Code'] = $this->code; + } + if (null !== $this->message) { + $res['Message'] = $this->message; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteMultiRateConfigResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Code'])) { + $model->code = $map['Code']; + } + if (isset($map['Message'])) { + $model->message = $map['Message']; + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeletePlaylistItemsRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DeletePlaylistItemsRequest.php new file mode 100644 index 000000000..8bb79d8ff --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeletePlaylistItemsRequest.php @@ -0,0 +1,71 @@ + 'OwnerId', + 'programId' => 'ProgramId', + 'programItemIds' => 'ProgramItemIds', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->programId) { + $res['ProgramId'] = $this->programId; + } + if (null !== $this->programItemIds) { + $res['ProgramItemIds'] = $this->programItemIds; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeletePlaylistItemsRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['ProgramId'])) { + $model->programId = $map['ProgramId']; + } + if (isset($map['ProgramItemIds'])) { + $model->programItemIds = $map['ProgramItemIds']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeletePlaylistItemsResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DeletePlaylistItemsResponse.php new file mode 100644 index 000000000..2d876a492 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeletePlaylistItemsResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeletePlaylistItemsResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DeletePlaylistItemsResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeletePlaylistItemsResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DeletePlaylistItemsResponseBody.php new file mode 100644 index 000000000..266ed4633 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeletePlaylistItemsResponseBody.php @@ -0,0 +1,59 @@ + 'ProgramId', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->programId) { + $res['ProgramId'] = $this->programId; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeletePlaylistItemsResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['ProgramId'])) { + $model->programId = $map['ProgramId']; + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeletePlaylistRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DeletePlaylistRequest.php new file mode 100644 index 000000000..51c84c2ae --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeletePlaylistRequest.php @@ -0,0 +1,59 @@ + 'OwnerId', + 'programId' => 'ProgramId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->programId) { + $res['ProgramId'] = $this->programId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeletePlaylistRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['ProgramId'])) { + $model->programId = $map['ProgramId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeletePlaylistResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DeletePlaylistResponse.php new file mode 100644 index 000000000..b3187b362 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeletePlaylistResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeletePlaylistResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DeletePlaylistResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeletePlaylistResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DeletePlaylistResponseBody.php new file mode 100644 index 000000000..4d06b4d71 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeletePlaylistResponseBody.php @@ -0,0 +1,59 @@ + 'ProgramId', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->programId) { + $res['ProgramId'] = $this->programId; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeletePlaylistResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['ProgramId'])) { + $model->programId = $map['ProgramId']; + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteRoomRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteRoomRequest.php new file mode 100644 index 000000000..be91aefdb --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteRoomRequest.php @@ -0,0 +1,71 @@ + 'AppId', + 'ownerId' => 'OwnerId', + 'roomId' => 'RoomId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->appId) { + $res['AppId'] = $this->appId; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->roomId) { + $res['RoomId'] = $this->roomId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteRoomRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppId'])) { + $model->appId = $map['AppId']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['RoomId'])) { + $model->roomId = $map['RoomId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteRoomResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteRoomResponse.php new file mode 100644 index 000000000..18cf7c5cf --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteRoomResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteRoomResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DeleteRoomResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteRoomResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteRoomResponseBody.php new file mode 100644 index 000000000..be18fe1a6 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteRoomResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteRoomResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteSnapshotCallbackAuthRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteSnapshotCallbackAuthRequest.php new file mode 100644 index 000000000..2acc757ff --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteSnapshotCallbackAuthRequest.php @@ -0,0 +1,59 @@ + 'DomainName', + 'ownerId' => 'OwnerId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteSnapshotCallbackAuthRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteSnapshotCallbackAuthResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteSnapshotCallbackAuthResponse.php new file mode 100644 index 000000000..1e614e380 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteSnapshotCallbackAuthResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteSnapshotCallbackAuthResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DeleteSnapshotCallbackAuthResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteSnapshotCallbackAuthResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteSnapshotCallbackAuthResponseBody.php new file mode 100644 index 000000000..7ea9c30eb --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteSnapshotCallbackAuthResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteSnapshotCallbackAuthResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteSnapshotFilesRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteSnapshotFilesRequest.php new file mode 100644 index 000000000..a58a2538f --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteSnapshotFilesRequest.php @@ -0,0 +1,109 @@ + 'AppName', + 'createTimestampList' => 'CreateTimestampList', + 'domainName' => 'DomainName', + 'ownerId' => 'OwnerId', + 'removeFile' => 'RemoveFile', + 'streamName' => 'StreamName', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->appName) { + $res['AppName'] = $this->appName; + } + if (null !== $this->createTimestampList) { + $res['CreateTimestampList'] = $this->createTimestampList; + } + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->removeFile) { + $res['RemoveFile'] = $this->removeFile; + } + if (null !== $this->streamName) { + $res['StreamName'] = $this->streamName; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteSnapshotFilesRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppName'])) { + $model->appName = $map['AppName']; + } + if (isset($map['CreateTimestampList'])) { + if (!empty($map['CreateTimestampList'])) { + $model->createTimestampList = $map['CreateTimestampList']; + } + } + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['RemoveFile'])) { + $model->removeFile = $map['RemoveFile']; + } + if (isset($map['StreamName'])) { + $model->streamName = $map['StreamName']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteSnapshotFilesResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteSnapshotFilesResponse.php new file mode 100644 index 000000000..4f4ca3672 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteSnapshotFilesResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteSnapshotFilesResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DeleteSnapshotFilesResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteSnapshotFilesResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteSnapshotFilesResponseBody.php new file mode 100644 index 000000000..9562c1a7d --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteSnapshotFilesResponseBody.php @@ -0,0 +1,84 @@ + 'FailureCount', + 'requestId' => 'RequestId', + 'snapshotDeleteInfoList' => 'SnapshotDeleteInfoList', + 'successCount' => 'SuccessCount', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->failureCount) { + $res['FailureCount'] = $this->failureCount; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->snapshotDeleteInfoList) { + $res['SnapshotDeleteInfoList'] = null !== $this->snapshotDeleteInfoList ? $this->snapshotDeleteInfoList->toMap() : null; + } + if (null !== $this->successCount) { + $res['SuccessCount'] = $this->successCount; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteSnapshotFilesResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['FailureCount'])) { + $model->failureCount = $map['FailureCount']; + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['SnapshotDeleteInfoList'])) { + $model->snapshotDeleteInfoList = snapshotDeleteInfoList::fromMap($map['SnapshotDeleteInfoList']); + } + if (isset($map['SuccessCount'])) { + $model->successCount = $map['SuccessCount']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteSnapshotFilesResponseBody/snapshotDeleteInfoList.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteSnapshotFilesResponseBody/snapshotDeleteInfoList.php new file mode 100644 index 000000000..bd692dec2 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteSnapshotFilesResponseBody/snapshotDeleteInfoList.php @@ -0,0 +1,60 @@ + 'SnapshotDeleteInfo', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->snapshotDeleteInfo) { + $res['SnapshotDeleteInfo'] = []; + if (null !== $this->snapshotDeleteInfo && \is_array($this->snapshotDeleteInfo)) { + $n = 0; + foreach ($this->snapshotDeleteInfo as $item) { + $res['SnapshotDeleteInfo'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return snapshotDeleteInfoList + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['SnapshotDeleteInfo'])) { + if (!empty($map['SnapshotDeleteInfo'])) { + $model->snapshotDeleteInfo = []; + $n = 0; + foreach ($map['SnapshotDeleteInfo'] as $item) { + $model->snapshotDeleteInfo[$n++] = null !== $item ? snapshotDeleteInfo::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteSnapshotFilesResponseBody/snapshotDeleteInfoList/snapshotDeleteInfo.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteSnapshotFilesResponseBody/snapshotDeleteInfoList/snapshotDeleteInfo.php new file mode 100644 index 000000000..7669fce26 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteSnapshotFilesResponseBody/snapshotDeleteInfoList/snapshotDeleteInfo.php @@ -0,0 +1,59 @@ + 'CreateTimestamp', + 'message' => 'Message', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->createTimestamp) { + $res['CreateTimestamp'] = $this->createTimestamp; + } + if (null !== $this->message) { + $res['Message'] = $this->message; + } + + return $res; + } + + /** + * @param array $map + * + * @return snapshotDeleteInfo + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CreateTimestamp'])) { + $model->createTimestamp = $map['CreateTimestamp']; + } + if (isset($map['Message'])) { + $model->message = $map['Message']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteStudioLayoutRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteStudioLayoutRequest.php new file mode 100644 index 000000000..bd52ed211 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteStudioLayoutRequest.php @@ -0,0 +1,71 @@ + 'CasterId', + 'layoutId' => 'LayoutId', + 'ownerId' => 'OwnerId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->casterId) { + $res['CasterId'] = $this->casterId; + } + if (null !== $this->layoutId) { + $res['LayoutId'] = $this->layoutId; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteStudioLayoutRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CasterId'])) { + $model->casterId = $map['CasterId']; + } + if (isset($map['LayoutId'])) { + $model->layoutId = $map['LayoutId']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteStudioLayoutResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteStudioLayoutResponse.php new file mode 100644 index 000000000..4d7851c6b --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteStudioLayoutResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteStudioLayoutResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DeleteStudioLayoutResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DeleteStudioLayoutResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DeleteStudioLayoutResponseBody.php new file mode 100644 index 000000000..1382af00c --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DeleteStudioLayoutResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DeleteStudioLayoutResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeAutoShowListTasksRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeAutoShowListTasksRequest.php new file mode 100644 index 000000000..e0cd1f08e --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeAutoShowListTasksRequest.php @@ -0,0 +1,59 @@ + 'CasterId', + 'ownerId' => 'OwnerId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->casterId) { + $res['CasterId'] = $this->casterId; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeAutoShowListTasksRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CasterId'])) { + $model->casterId = $map['CasterId']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeAutoShowListTasksResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeAutoShowListTasksResponse.php new file mode 100644 index 000000000..1505d5d4d --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeAutoShowListTasksResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeAutoShowListTasksResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DescribeAutoShowListTasksResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeAutoShowListTasksResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeAutoShowListTasksResponseBody.php new file mode 100644 index 000000000..2aba6534c --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeAutoShowListTasksResponseBody.php @@ -0,0 +1,59 @@ + 'AutoShowListTasks', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->autoShowListTasks) { + $res['AutoShowListTasks'] = $this->autoShowListTasks; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeAutoShowListTasksResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AutoShowListTasks'])) { + $model->autoShowListTasks = $map['AutoShowListTasks']; + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeBoardEventsRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeBoardEventsRequest.php new file mode 100644 index 000000000..61e1b1466 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeBoardEventsRequest.php @@ -0,0 +1,95 @@ + 'OwnerId', + 'appId' => 'AppId', + 'startTime' => 'StartTime', + 'endTime' => 'EndTime', + 'boardId' => 'BoardId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->appId) { + $res['AppId'] = $this->appId; + } + if (null !== $this->startTime) { + $res['StartTime'] = $this->startTime; + } + if (null !== $this->endTime) { + $res['EndTime'] = $this->endTime; + } + if (null !== $this->boardId) { + $res['BoardId'] = $this->boardId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeBoardEventsRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['AppId'])) { + $model->appId = $map['AppId']; + } + if (isset($map['StartTime'])) { + $model->startTime = $map['StartTime']; + } + if (isset($map['EndTime'])) { + $model->endTime = $map['EndTime']; + } + if (isset($map['BoardId'])) { + $model->boardId = $map['BoardId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeBoardEventsResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeBoardEventsResponse.php new file mode 100644 index 000000000..90b342770 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeBoardEventsResponse.php @@ -0,0 +1,61 @@ + 'headers', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeBoardEventsResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['body'])) { + $model->body = DescribeBoardEventsResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeBoardEventsResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeBoardEventsResponseBody.php new file mode 100644 index 000000000..53c14c30c --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeBoardEventsResponseBody.php @@ -0,0 +1,72 @@ + 'RequestId', + 'events' => 'Events', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->events) { + $res['Events'] = []; + if (null !== $this->events && \is_array($this->events)) { + $n = 0; + foreach ($this->events as $item) { + $res['Events'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeBoardEventsResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['Events'])) { + if (!empty($map['Events'])) { + $model->events = []; + $n = 0; + foreach ($map['Events'] as $item) { + $model->events[$n++] = null !== $item ? events::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeBoardEventsResponseBody/events.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeBoardEventsResponseBody/events.php new file mode 100644 index 000000000..376e9bf6b --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeBoardEventsResponseBody/events.php @@ -0,0 +1,95 @@ + 'EventId', + 'data' => 'Data', + 'eventType' => 'EventType', + 'userId' => 'UserId', + 'timestamp' => 'Timestamp', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->eventId) { + $res['EventId'] = $this->eventId; + } + if (null !== $this->data) { + $res['Data'] = $this->data; + } + if (null !== $this->eventType) { + $res['EventType'] = $this->eventType; + } + if (null !== $this->userId) { + $res['UserId'] = $this->userId; + } + if (null !== $this->timestamp) { + $res['Timestamp'] = $this->timestamp; + } + + return $res; + } + + /** + * @param array $map + * + * @return events + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['EventId'])) { + $model->eventId = $map['EventId']; + } + if (isset($map['Data'])) { + $model->data = $map['Data']; + } + if (isset($map['EventType'])) { + $model->eventType = $map['EventType']; + } + if (isset($map['UserId'])) { + $model->userId = $map['UserId']; + } + if (isset($map['Timestamp'])) { + $model->timestamp = $map['Timestamp']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeBoardSnapshotRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeBoardSnapshotRequest.php new file mode 100644 index 000000000..97f95f133 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeBoardSnapshotRequest.php @@ -0,0 +1,71 @@ + 'OwnerId', + 'appId' => 'AppId', + 'boardId' => 'BoardId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->appId) { + $res['AppId'] = $this->appId; + } + if (null !== $this->boardId) { + $res['BoardId'] = $this->boardId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeBoardSnapshotRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['AppId'])) { + $model->appId = $map['AppId']; + } + if (isset($map['BoardId'])) { + $model->boardId = $map['BoardId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeBoardSnapshotResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeBoardSnapshotResponse.php new file mode 100644 index 000000000..ec34a1c68 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeBoardSnapshotResponse.php @@ -0,0 +1,61 @@ + 'headers', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeBoardSnapshotResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['body'])) { + $model->body = DescribeBoardSnapshotResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeBoardSnapshotResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeBoardSnapshotResponseBody.php new file mode 100644 index 000000000..28851cf84 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeBoardSnapshotResponseBody.php @@ -0,0 +1,60 @@ + 'Snapshot', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->snapshot) { + $res['Snapshot'] = null !== $this->snapshot ? $this->snapshot->toMap() : null; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeBoardSnapshotResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Snapshot'])) { + $model->snapshot = snapshot::fromMap($map['Snapshot']); + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeBoardSnapshotResponseBody/snapshot.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeBoardSnapshotResponseBody/snapshot.php new file mode 100644 index 000000000..1550ba607 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeBoardSnapshotResponseBody/snapshot.php @@ -0,0 +1,48 @@ + 'Board', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->board) { + $res['Board'] = null !== $this->board ? $this->board->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return snapshot + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Board'])) { + $model->board = board::fromMap($map['Board']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeBoardSnapshotResponseBody/snapshot/board.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeBoardSnapshotResponseBody/snapshot/board.php new file mode 100644 index 000000000..ea1b48246 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeBoardSnapshotResponseBody/snapshot/board.php @@ -0,0 +1,145 @@ + 'UpdateTimestamp', + 'appUid' => 'AppUid', + 'boardId' => 'BoardId', + 'configs' => 'Configs', + 'pages' => 'Pages', + 'eventTimestamp' => 'EventTimestamp', + 'createTimestamp' => 'CreateTimestamp', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->updateTimestamp) { + $res['UpdateTimestamp'] = $this->updateTimestamp; + } + if (null !== $this->appUid) { + $res['AppUid'] = $this->appUid; + } + if (null !== $this->boardId) { + $res['BoardId'] = $this->boardId; + } + if (null !== $this->configs) { + $res['Configs'] = []; + if (null !== $this->configs && \is_array($this->configs)) { + $n = 0; + foreach ($this->configs as $item) { + $res['Configs'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + if (null !== $this->pages) { + $res['Pages'] = []; + if (null !== $this->pages && \is_array($this->pages)) { + $n = 0; + foreach ($this->pages as $item) { + $res['Pages'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + if (null !== $this->eventTimestamp) { + $res['EventTimestamp'] = $this->eventTimestamp; + } + if (null !== $this->createTimestamp) { + $res['CreateTimestamp'] = $this->createTimestamp; + } + + return $res; + } + + /** + * @param array $map + * + * @return board + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['UpdateTimestamp'])) { + $model->updateTimestamp = $map['UpdateTimestamp']; + } + if (isset($map['AppUid'])) { + $model->appUid = $map['AppUid']; + } + if (isset($map['BoardId'])) { + $model->boardId = $map['BoardId']; + } + if (isset($map['Configs'])) { + if (!empty($map['Configs'])) { + $model->configs = []; + $n = 0; + foreach ($map['Configs'] as $item) { + $model->configs[$n++] = null !== $item ? configs::fromMap($item) : $item; + } + } + } + if (isset($map['Pages'])) { + if (!empty($map['Pages'])) { + $model->pages = []; + $n = 0; + foreach ($map['Pages'] as $item) { + $model->pages[$n++] = null !== $item ? pages::fromMap($item) : $item; + } + } + } + if (isset($map['EventTimestamp'])) { + $model->eventTimestamp = $map['EventTimestamp']; + } + if (isset($map['CreateTimestamp'])) { + $model->createTimestamp = $map['CreateTimestamp']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeBoardSnapshotResponseBody/snapshot/board/configs.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeBoardSnapshotResponseBody/snapshot/board/configs.php new file mode 100644 index 000000000..b4ddd5805 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeBoardSnapshotResponseBody/snapshot/board/configs.php @@ -0,0 +1,59 @@ + 'AppUid', + 'data' => 'Data', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->appUid) { + $res['AppUid'] = $this->appUid; + } + if (null !== $this->data) { + $res['Data'] = $this->data; + } + + return $res; + } + + /** + * @param array $map + * + * @return configs + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppUid'])) { + $model->appUid = $map['AppUid']; + } + if (isset($map['Data'])) { + $model->data = $map['Data']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeBoardSnapshotResponseBody/snapshot/board/pages.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeBoardSnapshotResponseBody/snapshot/board/pages.php new file mode 100644 index 000000000..e4a5e12c3 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeBoardSnapshotResponseBody/snapshot/board/pages.php @@ -0,0 +1,72 @@ + 'PageIndex', + 'elements' => 'Elements', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->pageIndex) { + $res['PageIndex'] = $this->pageIndex; + } + if (null !== $this->elements) { + $res['Elements'] = []; + if (null !== $this->elements && \is_array($this->elements)) { + $n = 0; + foreach ($this->elements as $item) { + $res['Elements'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return pages + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['PageIndex'])) { + $model->pageIndex = $map['PageIndex']; + } + if (isset($map['Elements'])) { + if (!empty($map['Elements'])) { + $model->elements = []; + $n = 0; + foreach ($map['Elements'] as $item) { + $model->elements[$n++] = null !== $item ? elements::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeBoardSnapshotResponseBody/snapshot/board/pages/elements.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeBoardSnapshotResponseBody/snapshot/board/pages/elements.php new file mode 100644 index 000000000..6faba605c --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeBoardSnapshotResponseBody/snapshot/board/pages/elements.php @@ -0,0 +1,95 @@ + 'UpdateTimestamp', + 'data' => 'Data', + 'elementIndex' => 'ElementIndex', + 'elementType' => 'ElementType', + 'ownerId' => 'OwnerId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->updateTimestamp) { + $res['UpdateTimestamp'] = $this->updateTimestamp; + } + if (null !== $this->data) { + $res['Data'] = $this->data; + } + if (null !== $this->elementIndex) { + $res['ElementIndex'] = $this->elementIndex; + } + if (null !== $this->elementType) { + $res['ElementType'] = $this->elementType; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + return $res; + } + + /** + * @param array $map + * + * @return elements + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['UpdateTimestamp'])) { + $model->updateTimestamp = $map['UpdateTimestamp']; + } + if (isset($map['Data'])) { + $model->data = $map['Data']; + } + if (isset($map['ElementIndex'])) { + $model->elementIndex = $map['ElementIndex']; + } + if (isset($map['ElementType'])) { + $model->elementType = $map['ElementType']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeBoardsRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeBoardsRequest.php new file mode 100644 index 000000000..261e7ad35 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeBoardsRequest.php @@ -0,0 +1,83 @@ + 'OwnerId', + 'appId' => 'AppId', + 'pageNum' => 'PageNum', + 'pageSize' => 'PageSize', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->appId) { + $res['AppId'] = $this->appId; + } + if (null !== $this->pageNum) { + $res['PageNum'] = $this->pageNum; + } + if (null !== $this->pageSize) { + $res['PageSize'] = $this->pageSize; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeBoardsRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['AppId'])) { + $model->appId = $map['AppId']; + } + if (isset($map['PageNum'])) { + $model->pageNum = $map['PageNum']; + } + if (isset($map['PageSize'])) { + $model->pageSize = $map['PageSize']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeBoardsResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeBoardsResponse.php new file mode 100644 index 000000000..b4eaf2433 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeBoardsResponse.php @@ -0,0 +1,61 @@ + 'headers', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeBoardsResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['body'])) { + $model->body = DescribeBoardsResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeBoardsResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeBoardsResponseBody.php new file mode 100644 index 000000000..1d7684012 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeBoardsResponseBody.php @@ -0,0 +1,72 @@ + 'RequestId', + 'boards' => 'Boards', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->boards) { + $res['Boards'] = []; + if (null !== $this->boards && \is_array($this->boards)) { + $n = 0; + foreach ($this->boards as $item) { + $res['Boards'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeBoardsResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['Boards'])) { + if (!empty($map['Boards'])) { + $model->boards = []; + $n = 0; + foreach ($map['Boards'] as $item) { + $model->boards[$n++] = null !== $item ? boards::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeBoardsResponseBody/boards.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeBoardsResponseBody/boards.php new file mode 100644 index 000000000..4c42e8ffe --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeBoardsResponseBody/boards.php @@ -0,0 +1,83 @@ + 'BoardId', + 'state' => 'State', + 'userId' => 'UserId', + 'topic' => 'Topic', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->boardId) { + $res['BoardId'] = $this->boardId; + } + if (null !== $this->state) { + $res['State'] = $this->state; + } + if (null !== $this->userId) { + $res['UserId'] = $this->userId; + } + if (null !== $this->topic) { + $res['Topic'] = $this->topic; + } + + return $res; + } + + /** + * @param array $map + * + * @return boards + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['BoardId'])) { + $model->boardId = $map['BoardId']; + } + if (isset($map['State'])) { + $model->state = $map['State']; + } + if (isset($map['UserId'])) { + $model->userId = $map['UserId']; + } + if (isset($map['Topic'])) { + $model->topic = $map['Topic']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterChannelsRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterChannelsRequest.php new file mode 100644 index 000000000..7add5e457 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterChannelsRequest.php @@ -0,0 +1,59 @@ + 'CasterId', + 'ownerId' => 'OwnerId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->casterId) { + $res['CasterId'] = $this->casterId; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeCasterChannelsRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CasterId'])) { + $model->casterId = $map['CasterId']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterChannelsResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterChannelsResponse.php new file mode 100644 index 000000000..b3ae08222 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterChannelsResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeCasterChannelsResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DescribeCasterChannelsResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterChannelsResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterChannelsResponseBody.php new file mode 100644 index 000000000..fe3124612 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterChannelsResponseBody.php @@ -0,0 +1,72 @@ + 'Channels', + 'requestId' => 'RequestId', + 'total' => 'Total', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->channels) { + $res['Channels'] = null !== $this->channels ? $this->channels->toMap() : null; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->total) { + $res['Total'] = $this->total; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeCasterChannelsResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Channels'])) { + $model->channels = channels::fromMap($map['Channels']); + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['Total'])) { + $model->total = $map['Total']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterChannelsResponseBody/channels.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterChannelsResponseBody/channels.php new file mode 100644 index 000000000..6a58569d8 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterChannelsResponseBody/channels.php @@ -0,0 +1,60 @@ + 'Channel', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->channel) { + $res['Channel'] = []; + if (null !== $this->channel && \is_array($this->channel)) { + $n = 0; + foreach ($this->channel as $item) { + $res['Channel'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return channels + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Channel'])) { + if (!empty($map['Channel'])) { + $model->channel = []; + $n = 0; + foreach ($map['Channel'] as $item) { + $model->channel[$n++] = null !== $item ? channel::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterChannelsResponseBody/channels/channel.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterChannelsResponseBody/channels/channel.php new file mode 100644 index 000000000..9b93c9f47 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterChannelsResponseBody/channels/channel.php @@ -0,0 +1,95 @@ + 'ChannelId', + 'faceBeauty' => 'FaceBeauty', + 'resourceId' => 'ResourceId', + 'rtmpUrl' => 'RtmpUrl', + 'streamUrl' => 'StreamUrl', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->channelId) { + $res['ChannelId'] = $this->channelId; + } + if (null !== $this->faceBeauty) { + $res['FaceBeauty'] = $this->faceBeauty; + } + if (null !== $this->resourceId) { + $res['ResourceId'] = $this->resourceId; + } + if (null !== $this->rtmpUrl) { + $res['RtmpUrl'] = $this->rtmpUrl; + } + if (null !== $this->streamUrl) { + $res['StreamUrl'] = $this->streamUrl; + } + + return $res; + } + + /** + * @param array $map + * + * @return channel + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['ChannelId'])) { + $model->channelId = $map['ChannelId']; + } + if (isset($map['FaceBeauty'])) { + $model->faceBeauty = $map['FaceBeauty']; + } + if (isset($map['ResourceId'])) { + $model->resourceId = $map['ResourceId']; + } + if (isset($map['RtmpUrl'])) { + $model->rtmpUrl = $map['RtmpUrl']; + } + if (isset($map['StreamUrl'])) { + $model->streamUrl = $map['StreamUrl']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterComponentsRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterComponentsRequest.php new file mode 100644 index 000000000..35513c77b --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterComponentsRequest.php @@ -0,0 +1,71 @@ + 'CasterId', + 'componentId' => 'ComponentId', + 'ownerId' => 'OwnerId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->casterId) { + $res['CasterId'] = $this->casterId; + } + if (null !== $this->componentId) { + $res['ComponentId'] = $this->componentId; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeCasterComponentsRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CasterId'])) { + $model->casterId = $map['CasterId']; + } + if (isset($map['ComponentId'])) { + $model->componentId = $map['ComponentId']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterComponentsResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterComponentsResponse.php new file mode 100644 index 000000000..7d1f9d32f --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterComponentsResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeCasterComponentsResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DescribeCasterComponentsResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterComponentsResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterComponentsResponseBody.php new file mode 100644 index 000000000..fd53dd27f --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterComponentsResponseBody.php @@ -0,0 +1,72 @@ + 'Components', + 'requestId' => 'RequestId', + 'total' => 'Total', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->components) { + $res['Components'] = null !== $this->components ? $this->components->toMap() : null; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->total) { + $res['Total'] = $this->total; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeCasterComponentsResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Components'])) { + $model->components = components::fromMap($map['Components']); + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['Total'])) { + $model->total = $map['Total']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterComponentsResponseBody/components.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterComponentsResponseBody/components.php new file mode 100644 index 000000000..4a3865284 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterComponentsResponseBody/components.php @@ -0,0 +1,60 @@ + 'Component', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->component) { + $res['Component'] = []; + if (null !== $this->component && \is_array($this->component)) { + $n = 0; + foreach ($this->component as $item) { + $res['Component'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return components + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Component'])) { + if (!empty($map['Component'])) { + $model->component = []; + $n = 0; + foreach ($map['Component'] as $item) { + $model->component[$n++] = null !== $item ? component::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterComponentsResponseBody/components/component.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterComponentsResponseBody/components/component.php new file mode 100644 index 000000000..622708712 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterComponentsResponseBody/components/component.php @@ -0,0 +1,147 @@ + 'CaptionLayerContent', + 'componentId' => 'ComponentId', + 'componentLayer' => 'ComponentLayer', + 'componentName' => 'ComponentName', + 'componentType' => 'ComponentType', + 'effect' => 'Effect', + 'imageLayerContent' => 'ImageLayerContent', + 'locationId' => 'LocationId', + 'textLayerContent' => 'TextLayerContent', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->captionLayerContent) { + $res['CaptionLayerContent'] = null !== $this->captionLayerContent ? $this->captionLayerContent->toMap() : null; + } + if (null !== $this->componentId) { + $res['ComponentId'] = $this->componentId; + } + if (null !== $this->componentLayer) { + $res['ComponentLayer'] = null !== $this->componentLayer ? $this->componentLayer->toMap() : null; + } + if (null !== $this->componentName) { + $res['ComponentName'] = $this->componentName; + } + if (null !== $this->componentType) { + $res['ComponentType'] = $this->componentType; + } + if (null !== $this->effect) { + $res['Effect'] = $this->effect; + } + if (null !== $this->imageLayerContent) { + $res['ImageLayerContent'] = null !== $this->imageLayerContent ? $this->imageLayerContent->toMap() : null; + } + if (null !== $this->locationId) { + $res['LocationId'] = $this->locationId; + } + if (null !== $this->textLayerContent) { + $res['TextLayerContent'] = null !== $this->textLayerContent ? $this->textLayerContent->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return component + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CaptionLayerContent'])) { + $model->captionLayerContent = captionLayerContent::fromMap($map['CaptionLayerContent']); + } + if (isset($map['ComponentId'])) { + $model->componentId = $map['ComponentId']; + } + if (isset($map['ComponentLayer'])) { + $model->componentLayer = componentLayer::fromMap($map['ComponentLayer']); + } + if (isset($map['ComponentName'])) { + $model->componentName = $map['ComponentName']; + } + if (isset($map['ComponentType'])) { + $model->componentType = $map['ComponentType']; + } + if (isset($map['Effect'])) { + $model->effect = $map['Effect']; + } + if (isset($map['ImageLayerContent'])) { + $model->imageLayerContent = imageLayerContent::fromMap($map['ImageLayerContent']); + } + if (isset($map['LocationId'])) { + $model->locationId = $map['LocationId']; + } + if (isset($map['TextLayerContent'])) { + $model->textLayerContent = textLayerContent::fromMap($map['TextLayerContent']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterComponentsResponseBody/components/component/captionLayerContent.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterComponentsResponseBody/components/component/captionLayerContent.php new file mode 100644 index 000000000..111f43bff --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterComponentsResponseBody/components/component/captionLayerContent.php @@ -0,0 +1,203 @@ + 'BorderColor', + 'borderWidthNormalized' => 'BorderWidthNormalized', + 'color' => 'Color', + 'fontName' => 'FontName', + 'lineSpaceNormalized' => 'LineSpaceNormalized', + 'locationId' => 'LocationId', + 'ptsOffset' => 'PtsOffset', + 'showSourceLan' => 'ShowSourceLan', + 'sizeNormalized' => 'SizeNormalized', + 'sourceLan' => 'SourceLan', + 'targetLan' => 'TargetLan', + 'wordCountPerLine' => 'WordCountPerLine', + 'wordSpaceNormalized' => 'WordSpaceNormalized', + 'wordsCount' => 'WordsCount', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->borderColor) { + $res['BorderColor'] = $this->borderColor; + } + if (null !== $this->borderWidthNormalized) { + $res['BorderWidthNormalized'] = $this->borderWidthNormalized; + } + if (null !== $this->color) { + $res['Color'] = $this->color; + } + if (null !== $this->fontName) { + $res['FontName'] = $this->fontName; + } + if (null !== $this->lineSpaceNormalized) { + $res['LineSpaceNormalized'] = $this->lineSpaceNormalized; + } + if (null !== $this->locationId) { + $res['LocationId'] = $this->locationId; + } + if (null !== $this->ptsOffset) { + $res['PtsOffset'] = $this->ptsOffset; + } + if (null !== $this->showSourceLan) { + $res['ShowSourceLan'] = $this->showSourceLan; + } + if (null !== $this->sizeNormalized) { + $res['SizeNormalized'] = $this->sizeNormalized; + } + if (null !== $this->sourceLan) { + $res['SourceLan'] = $this->sourceLan; + } + if (null !== $this->targetLan) { + $res['TargetLan'] = $this->targetLan; + } + if (null !== $this->wordCountPerLine) { + $res['WordCountPerLine'] = $this->wordCountPerLine; + } + if (null !== $this->wordSpaceNormalized) { + $res['WordSpaceNormalized'] = $this->wordSpaceNormalized; + } + if (null !== $this->wordsCount) { + $res['WordsCount'] = $this->wordsCount; + } + + return $res; + } + + /** + * @param array $map + * + * @return captionLayerContent + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['BorderColor'])) { + $model->borderColor = $map['BorderColor']; + } + if (isset($map['BorderWidthNormalized'])) { + $model->borderWidthNormalized = $map['BorderWidthNormalized']; + } + if (isset($map['Color'])) { + $model->color = $map['Color']; + } + if (isset($map['FontName'])) { + $model->fontName = $map['FontName']; + } + if (isset($map['LineSpaceNormalized'])) { + $model->lineSpaceNormalized = $map['LineSpaceNormalized']; + } + if (isset($map['LocationId'])) { + $model->locationId = $map['LocationId']; + } + if (isset($map['PtsOffset'])) { + $model->ptsOffset = $map['PtsOffset']; + } + if (isset($map['ShowSourceLan'])) { + $model->showSourceLan = $map['ShowSourceLan']; + } + if (isset($map['SizeNormalized'])) { + $model->sizeNormalized = $map['SizeNormalized']; + } + if (isset($map['SourceLan'])) { + $model->sourceLan = $map['SourceLan']; + } + if (isset($map['TargetLan'])) { + $model->targetLan = $map['TargetLan']; + } + if (isset($map['WordCountPerLine'])) { + $model->wordCountPerLine = $map['WordCountPerLine']; + } + if (isset($map['WordSpaceNormalized'])) { + $model->wordSpaceNormalized = $map['WordSpaceNormalized']; + } + if (isset($map['WordsCount'])) { + $model->wordsCount = $map['WordsCount']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterComponentsResponseBody/components/component/componentLayer.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterComponentsResponseBody/components/component/componentLayer.php new file mode 100644 index 000000000..ed4d3cc7a --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterComponentsResponseBody/components/component/componentLayer.php @@ -0,0 +1,96 @@ + 'HeightNormalized', + 'positionNormalizeds' => 'PositionNormalizeds', + 'positionRefer' => 'PositionRefer', + 'transparency' => 'Transparency', + 'widthNormalized' => 'WidthNormalized', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->heightNormalized) { + $res['HeightNormalized'] = $this->heightNormalized; + } + if (null !== $this->positionNormalizeds) { + $res['PositionNormalizeds'] = null !== $this->positionNormalizeds ? $this->positionNormalizeds->toMap() : null; + } + if (null !== $this->positionRefer) { + $res['PositionRefer'] = $this->positionRefer; + } + if (null !== $this->transparency) { + $res['Transparency'] = $this->transparency; + } + if (null !== $this->widthNormalized) { + $res['WidthNormalized'] = $this->widthNormalized; + } + + return $res; + } + + /** + * @param array $map + * + * @return componentLayer + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['HeightNormalized'])) { + $model->heightNormalized = $map['HeightNormalized']; + } + if (isset($map['PositionNormalizeds'])) { + $model->positionNormalizeds = positionNormalizeds::fromMap($map['PositionNormalizeds']); + } + if (isset($map['PositionRefer'])) { + $model->positionRefer = $map['PositionRefer']; + } + if (isset($map['Transparency'])) { + $model->transparency = $map['Transparency']; + } + if (isset($map['WidthNormalized'])) { + $model->widthNormalized = $map['WidthNormalized']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterComponentsResponseBody/components/component/componentLayer/positionNormalizeds.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterComponentsResponseBody/components/component/componentLayer/positionNormalizeds.php new file mode 100644 index 000000000..c51e179a2 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterComponentsResponseBody/components/component/componentLayer/positionNormalizeds.php @@ -0,0 +1,49 @@ + 'Position', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->position) { + $res['Position'] = $this->position; + } + + return $res; + } + + /** + * @param array $map + * + * @return positionNormalizeds + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Position'])) { + if (!empty($map['Position'])) { + $model->position = $map['Position']; + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterComponentsResponseBody/components/component/imageLayerContent.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterComponentsResponseBody/components/component/imageLayerContent.php new file mode 100644 index 000000000..624bd618c --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterComponentsResponseBody/components/component/imageLayerContent.php @@ -0,0 +1,47 @@ + 'MaterialId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->materialId) { + $res['MaterialId'] = $this->materialId; + } + + return $res; + } + + /** + * @param array $map + * + * @return imageLayerContent + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['MaterialId'])) { + $model->materialId = $map['MaterialId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterComponentsResponseBody/components/component/textLayerContent.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterComponentsResponseBody/components/component/textLayerContent.php new file mode 100644 index 000000000..5228adaff --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterComponentsResponseBody/components/component/textLayerContent.php @@ -0,0 +1,107 @@ + 'BorderColor', + 'borderWidthNormalized' => 'BorderWidthNormalized', + 'color' => 'Color', + 'fontName' => 'FontName', + 'sizeNormalized' => 'SizeNormalized', + 'text' => 'Text', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->borderColor) { + $res['BorderColor'] = $this->borderColor; + } + if (null !== $this->borderWidthNormalized) { + $res['BorderWidthNormalized'] = $this->borderWidthNormalized; + } + if (null !== $this->color) { + $res['Color'] = $this->color; + } + if (null !== $this->fontName) { + $res['FontName'] = $this->fontName; + } + if (null !== $this->sizeNormalized) { + $res['SizeNormalized'] = $this->sizeNormalized; + } + if (null !== $this->text) { + $res['Text'] = $this->text; + } + + return $res; + } + + /** + * @param array $map + * + * @return textLayerContent + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['BorderColor'])) { + $model->borderColor = $map['BorderColor']; + } + if (isset($map['BorderWidthNormalized'])) { + $model->borderWidthNormalized = $map['BorderWidthNormalized']; + } + if (isset($map['Color'])) { + $model->color = $map['Color']; + } + if (isset($map['FontName'])) { + $model->fontName = $map['FontName']; + } + if (isset($map['SizeNormalized'])) { + $model->sizeNormalized = $map['SizeNormalized']; + } + if (isset($map['Text'])) { + $model->text = $map['Text']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterConfigRequest.php new file mode 100644 index 000000000..7dd1cfc65 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterConfigRequest.php @@ -0,0 +1,59 @@ + 'CasterId', + 'ownerId' => 'OwnerId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->casterId) { + $res['CasterId'] = $this->casterId; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeCasterConfigRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CasterId'])) { + $model->casterId = $map['CasterId']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterConfigResponse.php new file mode 100644 index 000000000..0240709b3 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterConfigResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeCasterConfigResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DescribeCasterConfigResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterConfigResponseBody.php new file mode 100644 index 000000000..53ca07695 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterConfigResponseBody.php @@ -0,0 +1,230 @@ + 'CallbackUrl', + 'casterId' => 'CasterId', + 'casterName' => 'CasterName', + 'channelEnable' => 'ChannelEnable', + 'delay' => 'Delay', + 'domainName' => 'DomainName', + 'programEffect' => 'ProgramEffect', + 'programName' => 'ProgramName', + 'recordConfig' => 'RecordConfig', + 'requestId' => 'RequestId', + 'sideOutputUrl' => 'SideOutputUrl', + 'sideOutputUrlList' => 'SideOutputUrlList', + 'syncGroupsConfig' => 'SyncGroupsConfig', + 'transcodeConfig' => 'TranscodeConfig', + 'urgentLiveStreamUrl' => 'UrgentLiveStreamUrl', + 'urgentMaterialId' => 'UrgentMaterialId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->callbackUrl) { + $res['CallbackUrl'] = $this->callbackUrl; + } + if (null !== $this->casterId) { + $res['CasterId'] = $this->casterId; + } + if (null !== $this->casterName) { + $res['CasterName'] = $this->casterName; + } + if (null !== $this->channelEnable) { + $res['ChannelEnable'] = $this->channelEnable; + } + if (null !== $this->delay) { + $res['Delay'] = $this->delay; + } + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->programEffect) { + $res['ProgramEffect'] = $this->programEffect; + } + if (null !== $this->programName) { + $res['ProgramName'] = $this->programName; + } + if (null !== $this->recordConfig) { + $res['RecordConfig'] = null !== $this->recordConfig ? $this->recordConfig->toMap() : null; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->sideOutputUrl) { + $res['SideOutputUrl'] = $this->sideOutputUrl; + } + if (null !== $this->sideOutputUrlList) { + $res['SideOutputUrlList'] = $this->sideOutputUrlList; + } + if (null !== $this->syncGroupsConfig) { + $res['SyncGroupsConfig'] = null !== $this->syncGroupsConfig ? $this->syncGroupsConfig->toMap() : null; + } + if (null !== $this->transcodeConfig) { + $res['TranscodeConfig'] = null !== $this->transcodeConfig ? $this->transcodeConfig->toMap() : null; + } + if (null !== $this->urgentLiveStreamUrl) { + $res['UrgentLiveStreamUrl'] = $this->urgentLiveStreamUrl; + } + if (null !== $this->urgentMaterialId) { + $res['UrgentMaterialId'] = $this->urgentMaterialId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeCasterConfigResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CallbackUrl'])) { + $model->callbackUrl = $map['CallbackUrl']; + } + if (isset($map['CasterId'])) { + $model->casterId = $map['CasterId']; + } + if (isset($map['CasterName'])) { + $model->casterName = $map['CasterName']; + } + if (isset($map['ChannelEnable'])) { + $model->channelEnable = $map['ChannelEnable']; + } + if (isset($map['Delay'])) { + $model->delay = $map['Delay']; + } + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['ProgramEffect'])) { + $model->programEffect = $map['ProgramEffect']; + } + if (isset($map['ProgramName'])) { + $model->programName = $map['ProgramName']; + } + if (isset($map['RecordConfig'])) { + $model->recordConfig = recordConfig::fromMap($map['RecordConfig']); + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['SideOutputUrl'])) { + $model->sideOutputUrl = $map['SideOutputUrl']; + } + if (isset($map['SideOutputUrlList'])) { + $model->sideOutputUrlList = $map['SideOutputUrlList']; + } + if (isset($map['SyncGroupsConfig'])) { + $model->syncGroupsConfig = syncGroupsConfig::fromMap($map['SyncGroupsConfig']); + } + if (isset($map['TranscodeConfig'])) { + $model->transcodeConfig = transcodeConfig::fromMap($map['TranscodeConfig']); + } + if (isset($map['UrgentLiveStreamUrl'])) { + $model->urgentLiveStreamUrl = $map['UrgentLiveStreamUrl']; + } + if (isset($map['UrgentMaterialId'])) { + $model->urgentMaterialId = $map['UrgentMaterialId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterConfigResponseBody/recordConfig.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterConfigResponseBody/recordConfig.php new file mode 100644 index 000000000..867a6160f --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterConfigResponseBody/recordConfig.php @@ -0,0 +1,72 @@ + 'OssBucket', + 'ossEndpoint' => 'OssEndpoint', + 'recordFormat' => 'RecordFormat', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->ossBucket) { + $res['OssBucket'] = $this->ossBucket; + } + if (null !== $this->ossEndpoint) { + $res['OssEndpoint'] = $this->ossEndpoint; + } + if (null !== $this->recordFormat) { + $res['RecordFormat'] = null !== $this->recordFormat ? $this->recordFormat->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return recordConfig + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['OssBucket'])) { + $model->ossBucket = $map['OssBucket']; + } + if (isset($map['OssEndpoint'])) { + $model->ossEndpoint = $map['OssEndpoint']; + } + if (isset($map['RecordFormat'])) { + $model->recordFormat = recordFormat::fromMap($map['RecordFormat']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterConfigResponseBody/recordConfig/recordFormat.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterConfigResponseBody/recordConfig/recordFormat.php new file mode 100644 index 000000000..16e8a3520 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterConfigResponseBody/recordConfig/recordFormat.php @@ -0,0 +1,59 @@ + 'RecordFormat', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->recordFormat) { + $res['RecordFormat'] = []; + if (null !== $this->recordFormat && \is_array($this->recordFormat)) { + $n = 0; + foreach ($this->recordFormat as $item) { + $res['RecordFormat'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return recordFormat + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RecordFormat'])) { + if (!empty($map['RecordFormat'])) { + $model->recordFormat = []; + $n = 0; + foreach ($map['RecordFormat'] as $item) { + $model->recordFormat[$n++] = null !== $item ? \AlibabaCloud\SDK\Live\V20161101\Models\DescribeCasterConfigResponseBody\recordConfig\recordFormat\recordFormat::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterConfigResponseBody/recordConfig/recordFormat/recordFormat.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterConfigResponseBody/recordConfig/recordFormat/recordFormat.php new file mode 100644 index 000000000..62ae370e7 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterConfigResponseBody/recordConfig/recordFormat/recordFormat.php @@ -0,0 +1,83 @@ + 'CycleDuration', + 'format' => 'Format', + 'ossObjectPrefix' => 'OssObjectPrefix', + 'sliceOssObjectPrefix' => 'SliceOssObjectPrefix', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->cycleDuration) { + $res['CycleDuration'] = $this->cycleDuration; + } + if (null !== $this->format) { + $res['Format'] = $this->format; + } + if (null !== $this->ossObjectPrefix) { + $res['OssObjectPrefix'] = $this->ossObjectPrefix; + } + if (null !== $this->sliceOssObjectPrefix) { + $res['SliceOssObjectPrefix'] = $this->sliceOssObjectPrefix; + } + + return $res; + } + + /** + * @param array $map + * + * @return recordFormat + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CycleDuration'])) { + $model->cycleDuration = $map['CycleDuration']; + } + if (isset($map['Format'])) { + $model->format = $map['Format']; + } + if (isset($map['OssObjectPrefix'])) { + $model->ossObjectPrefix = $map['OssObjectPrefix']; + } + if (isset($map['SliceOssObjectPrefix'])) { + $model->sliceOssObjectPrefix = $map['SliceOssObjectPrefix']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterConfigResponseBody/syncGroupsConfig.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterConfigResponseBody/syncGroupsConfig.php new file mode 100644 index 000000000..600fd1d6d --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterConfigResponseBody/syncGroupsConfig.php @@ -0,0 +1,60 @@ + 'SyncGroup', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->syncGroup) { + $res['SyncGroup'] = []; + if (null !== $this->syncGroup && \is_array($this->syncGroup)) { + $n = 0; + foreach ($this->syncGroup as $item) { + $res['SyncGroup'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return syncGroupsConfig + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['SyncGroup'])) { + if (!empty($map['SyncGroup'])) { + $model->syncGroup = []; + $n = 0; + foreach ($map['SyncGroup'] as $item) { + $model->syncGroup[$n++] = null !== $item ? syncGroup::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterConfigResponseBody/syncGroupsConfig/syncGroup.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterConfigResponseBody/syncGroupsConfig/syncGroup.php new file mode 100644 index 000000000..8d27b96a6 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterConfigResponseBody/syncGroupsConfig/syncGroup.php @@ -0,0 +1,72 @@ + 'HostResourceId', + 'mode' => 'Mode', + 'resourceIds' => 'ResourceIds', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->hostResourceId) { + $res['HostResourceId'] = $this->hostResourceId; + } + if (null !== $this->mode) { + $res['Mode'] = $this->mode; + } + if (null !== $this->resourceIds) { + $res['ResourceIds'] = null !== $this->resourceIds ? $this->resourceIds->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return syncGroup + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['HostResourceId'])) { + $model->hostResourceId = $map['HostResourceId']; + } + if (isset($map['Mode'])) { + $model->mode = $map['Mode']; + } + if (isset($map['ResourceIds'])) { + $model->resourceIds = resourceIds::fromMap($map['ResourceIds']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterConfigResponseBody/syncGroupsConfig/syncGroup/resourceIds.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterConfigResponseBody/syncGroupsConfig/syncGroup/resourceIds.php new file mode 100644 index 000000000..e70d7006b --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterConfigResponseBody/syncGroupsConfig/syncGroup/resourceIds.php @@ -0,0 +1,49 @@ + 'ResourceId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->resourceId) { + $res['ResourceId'] = $this->resourceId; + } + + return $res; + } + + /** + * @param array $map + * + * @return resourceIds + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['ResourceId'])) { + if (!empty($map['ResourceId'])) { + $model->resourceId = $map['ResourceId']; + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterConfigResponseBody/transcodeConfig.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterConfigResponseBody/transcodeConfig.php new file mode 100644 index 000000000..d81dacd94 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterConfigResponseBody/transcodeConfig.php @@ -0,0 +1,60 @@ + 'CasterTemplate', + 'liveTemplateIds' => 'LiveTemplateIds', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->casterTemplate) { + $res['CasterTemplate'] = $this->casterTemplate; + } + if (null !== $this->liveTemplateIds) { + $res['LiveTemplateIds'] = null !== $this->liveTemplateIds ? $this->liveTemplateIds->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return transcodeConfig + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CasterTemplate'])) { + $model->casterTemplate = $map['CasterTemplate']; + } + if (isset($map['LiveTemplateIds'])) { + $model->liveTemplateIds = liveTemplateIds::fromMap($map['LiveTemplateIds']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterConfigResponseBody/transcodeConfig/liveTemplateIds.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterConfigResponseBody/transcodeConfig/liveTemplateIds.php new file mode 100644 index 000000000..c6cc0c137 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterConfigResponseBody/transcodeConfig/liveTemplateIds.php @@ -0,0 +1,49 @@ + 'LocationId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->locationId) { + $res['LocationId'] = $this->locationId; + } + + return $res; + } + + /** + * @param array $map + * + * @return liveTemplateIds + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['LocationId'])) { + if (!empty($map['LocationId'])) { + $model->locationId = $map['LocationId']; + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterLayoutsRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterLayoutsRequest.php new file mode 100644 index 000000000..4e91d1fc0 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterLayoutsRequest.php @@ -0,0 +1,71 @@ + 'CasterId', + 'layoutId' => 'LayoutId', + 'ownerId' => 'OwnerId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->casterId) { + $res['CasterId'] = $this->casterId; + } + if (null !== $this->layoutId) { + $res['LayoutId'] = $this->layoutId; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeCasterLayoutsRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CasterId'])) { + $model->casterId = $map['CasterId']; + } + if (isset($map['LayoutId'])) { + $model->layoutId = $map['LayoutId']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterLayoutsResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterLayoutsResponse.php new file mode 100644 index 000000000..094f97c14 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterLayoutsResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeCasterLayoutsResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DescribeCasterLayoutsResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterLayoutsResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterLayoutsResponseBody.php new file mode 100644 index 000000000..6c653a00e --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterLayoutsResponseBody.php @@ -0,0 +1,72 @@ + 'Layouts', + 'requestId' => 'RequestId', + 'total' => 'Total', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->layouts) { + $res['Layouts'] = null !== $this->layouts ? $this->layouts->toMap() : null; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->total) { + $res['Total'] = $this->total; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeCasterLayoutsResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Layouts'])) { + $model->layouts = layouts::fromMap($map['Layouts']); + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['Total'])) { + $model->total = $map['Total']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterLayoutsResponseBody/layouts.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterLayoutsResponseBody/layouts.php new file mode 100644 index 000000000..3e917160e --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterLayoutsResponseBody/layouts.php @@ -0,0 +1,60 @@ + 'Layout', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->layout) { + $res['Layout'] = []; + if (null !== $this->layout && \is_array($this->layout)) { + $n = 0; + foreach ($this->layout as $item) { + $res['Layout'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return layouts + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Layout'])) { + if (!empty($map['Layout'])) { + $model->layout = []; + $n = 0; + foreach ($map['Layout'] as $item) { + $model->layout[$n++] = null !== $item ? layout::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterLayoutsResponseBody/layouts/layout.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterLayoutsResponseBody/layouts/layout.php new file mode 100644 index 000000000..56f5a361e --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterLayoutsResponseBody/layouts/layout.php @@ -0,0 +1,99 @@ + 'AudioLayers', + 'blendList' => 'BlendList', + 'layoutId' => 'LayoutId', + 'mixList' => 'MixList', + 'videoLayers' => 'VideoLayers', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->audioLayers) { + $res['AudioLayers'] = null !== $this->audioLayers ? $this->audioLayers->toMap() : null; + } + if (null !== $this->blendList) { + $res['BlendList'] = null !== $this->blendList ? $this->blendList->toMap() : null; + } + if (null !== $this->layoutId) { + $res['LayoutId'] = $this->layoutId; + } + if (null !== $this->mixList) { + $res['MixList'] = null !== $this->mixList ? $this->mixList->toMap() : null; + } + if (null !== $this->videoLayers) { + $res['VideoLayers'] = null !== $this->videoLayers ? $this->videoLayers->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return layout + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AudioLayers'])) { + $model->audioLayers = audioLayers::fromMap($map['AudioLayers']); + } + if (isset($map['BlendList'])) { + $model->blendList = blendList::fromMap($map['BlendList']); + } + if (isset($map['LayoutId'])) { + $model->layoutId = $map['LayoutId']; + } + if (isset($map['MixList'])) { + $model->mixList = mixList::fromMap($map['MixList']); + } + if (isset($map['VideoLayers'])) { + $model->videoLayers = videoLayers::fromMap($map['VideoLayers']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterLayoutsResponseBody/layouts/layout/audioLayers.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterLayoutsResponseBody/layouts/layout/audioLayers.php new file mode 100644 index 000000000..62c6cab33 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterLayoutsResponseBody/layouts/layout/audioLayers.php @@ -0,0 +1,60 @@ + 'AudioLayer', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->audioLayer) { + $res['AudioLayer'] = []; + if (null !== $this->audioLayer && \is_array($this->audioLayer)) { + $n = 0; + foreach ($this->audioLayer as $item) { + $res['AudioLayer'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return audioLayers + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AudioLayer'])) { + if (!empty($map['AudioLayer'])) { + $model->audioLayer = []; + $n = 0; + foreach ($map['AudioLayer'] as $item) { + $model->audioLayer[$n++] = null !== $item ? audioLayer::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterLayoutsResponseBody/layouts/layout/audioLayers/audioLayer.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterLayoutsResponseBody/layouts/layout/audioLayers/audioLayer.php new file mode 100644 index 000000000..6fd8cd22b --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterLayoutsResponseBody/layouts/layout/audioLayers/audioLayer.php @@ -0,0 +1,71 @@ + 'FixedDelayDuration', + 'validChannel' => 'ValidChannel', + 'volumeRate' => 'VolumeRate', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->fixedDelayDuration) { + $res['FixedDelayDuration'] = $this->fixedDelayDuration; + } + if (null !== $this->validChannel) { + $res['ValidChannel'] = $this->validChannel; + } + if (null !== $this->volumeRate) { + $res['VolumeRate'] = $this->volumeRate; + } + + return $res; + } + + /** + * @param array $map + * + * @return audioLayer + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['FixedDelayDuration'])) { + $model->fixedDelayDuration = $map['FixedDelayDuration']; + } + if (isset($map['ValidChannel'])) { + $model->validChannel = $map['ValidChannel']; + } + if (isset($map['VolumeRate'])) { + $model->volumeRate = $map['VolumeRate']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterLayoutsResponseBody/layouts/layout/blendList.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterLayoutsResponseBody/layouts/layout/blendList.php new file mode 100644 index 000000000..620aef54c --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterLayoutsResponseBody/layouts/layout/blendList.php @@ -0,0 +1,49 @@ + 'LocationId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->locationId) { + $res['LocationId'] = $this->locationId; + } + + return $res; + } + + /** + * @param array $map + * + * @return blendList + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['LocationId'])) { + if (!empty($map['LocationId'])) { + $model->locationId = $map['LocationId']; + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterLayoutsResponseBody/layouts/layout/mixList.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterLayoutsResponseBody/layouts/layout/mixList.php new file mode 100644 index 000000000..105dc6bbc --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterLayoutsResponseBody/layouts/layout/mixList.php @@ -0,0 +1,49 @@ + 'LocationId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->locationId) { + $res['LocationId'] = $this->locationId; + } + + return $res; + } + + /** + * @param array $map + * + * @return mixList + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['LocationId'])) { + if (!empty($map['LocationId'])) { + $model->locationId = $map['LocationId']; + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterLayoutsResponseBody/layouts/layout/videoLayers.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterLayoutsResponseBody/layouts/layout/videoLayers.php new file mode 100644 index 000000000..0f396abe9 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterLayoutsResponseBody/layouts/layout/videoLayers.php @@ -0,0 +1,60 @@ + 'VideoLayer', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->videoLayer) { + $res['VideoLayer'] = []; + if (null !== $this->videoLayer && \is_array($this->videoLayer)) { + $n = 0; + foreach ($this->videoLayer as $item) { + $res['VideoLayer'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return videoLayers + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['VideoLayer'])) { + if (!empty($map['VideoLayer'])) { + $model->videoLayer = []; + $n = 0; + foreach ($map['VideoLayer'] as $item) { + $model->videoLayer[$n++] = null !== $item ? videoLayer::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterLayoutsResponseBody/layouts/layout/videoLayers/videoLayer.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterLayoutsResponseBody/layouts/layout/videoLayers/videoLayer.php new file mode 100644 index 000000000..8b20b00dd --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterLayoutsResponseBody/layouts/layout/videoLayers/videoLayer.php @@ -0,0 +1,108 @@ + 'FillMode', + 'fixedDelayDuration' => 'FixedDelayDuration', + 'heightNormalized' => 'HeightNormalized', + 'positionNormalizeds' => 'PositionNormalizeds', + 'positionRefer' => 'PositionRefer', + 'widthNormalized' => 'WidthNormalized', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->fillMode) { + $res['FillMode'] = $this->fillMode; + } + if (null !== $this->fixedDelayDuration) { + $res['FixedDelayDuration'] = $this->fixedDelayDuration; + } + if (null !== $this->heightNormalized) { + $res['HeightNormalized'] = $this->heightNormalized; + } + if (null !== $this->positionNormalizeds) { + $res['PositionNormalizeds'] = null !== $this->positionNormalizeds ? $this->positionNormalizeds->toMap() : null; + } + if (null !== $this->positionRefer) { + $res['PositionRefer'] = $this->positionRefer; + } + if (null !== $this->widthNormalized) { + $res['WidthNormalized'] = $this->widthNormalized; + } + + return $res; + } + + /** + * @param array $map + * + * @return videoLayer + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['FillMode'])) { + $model->fillMode = $map['FillMode']; + } + if (isset($map['FixedDelayDuration'])) { + $model->fixedDelayDuration = $map['FixedDelayDuration']; + } + if (isset($map['HeightNormalized'])) { + $model->heightNormalized = $map['HeightNormalized']; + } + if (isset($map['PositionNormalizeds'])) { + $model->positionNormalizeds = positionNormalizeds::fromMap($map['PositionNormalizeds']); + } + if (isset($map['PositionRefer'])) { + $model->positionRefer = $map['PositionRefer']; + } + if (isset($map['WidthNormalized'])) { + $model->widthNormalized = $map['WidthNormalized']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterLayoutsResponseBody/layouts/layout/videoLayers/videoLayer/positionNormalizeds.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterLayoutsResponseBody/layouts/layout/videoLayers/videoLayer/positionNormalizeds.php new file mode 100644 index 000000000..978c16230 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterLayoutsResponseBody/layouts/layout/videoLayers/videoLayer/positionNormalizeds.php @@ -0,0 +1,49 @@ + 'Position', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->position) { + $res['Position'] = $this->position; + } + + return $res; + } + + /** + * @param array $map + * + * @return positionNormalizeds + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Position'])) { + if (!empty($map['Position'])) { + $model->position = $map['Position']; + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterProgramRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterProgramRequest.php new file mode 100644 index 000000000..681090ed3 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterProgramRequest.php @@ -0,0 +1,143 @@ + 'CasterId', + 'endTime' => 'EndTime', + 'episodeId' => 'EpisodeId', + 'episodeType' => 'EpisodeType', + 'ownerId' => 'OwnerId', + 'pageNum' => 'PageNum', + 'pageSize' => 'PageSize', + 'startTime' => 'StartTime', + 'status' => 'Status', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->casterId) { + $res['CasterId'] = $this->casterId; + } + if (null !== $this->endTime) { + $res['EndTime'] = $this->endTime; + } + if (null !== $this->episodeId) { + $res['EpisodeId'] = $this->episodeId; + } + if (null !== $this->episodeType) { + $res['EpisodeType'] = $this->episodeType; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->pageNum) { + $res['PageNum'] = $this->pageNum; + } + if (null !== $this->pageSize) { + $res['PageSize'] = $this->pageSize; + } + if (null !== $this->startTime) { + $res['StartTime'] = $this->startTime; + } + if (null !== $this->status) { + $res['Status'] = $this->status; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeCasterProgramRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CasterId'])) { + $model->casterId = $map['CasterId']; + } + if (isset($map['EndTime'])) { + $model->endTime = $map['EndTime']; + } + if (isset($map['EpisodeId'])) { + $model->episodeId = $map['EpisodeId']; + } + if (isset($map['EpisodeType'])) { + $model->episodeType = $map['EpisodeType']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['PageNum'])) { + $model->pageNum = $map['PageNum']; + } + if (isset($map['PageSize'])) { + $model->pageSize = $map['PageSize']; + } + if (isset($map['StartTime'])) { + $model->startTime = $map['StartTime']; + } + if (isset($map['Status'])) { + $model->status = $map['Status']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterProgramResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterProgramResponse.php new file mode 100644 index 000000000..a2c12cacf --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterProgramResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeCasterProgramResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DescribeCasterProgramResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterProgramResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterProgramResponseBody.php new file mode 100644 index 000000000..1827b8b46 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterProgramResponseBody.php @@ -0,0 +1,108 @@ + 'CasterId', + 'episodes' => 'Episodes', + 'programEffect' => 'ProgramEffect', + 'programName' => 'ProgramName', + 'requestId' => 'RequestId', + 'total' => 'Total', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->casterId) { + $res['CasterId'] = $this->casterId; + } + if (null !== $this->episodes) { + $res['Episodes'] = null !== $this->episodes ? $this->episodes->toMap() : null; + } + if (null !== $this->programEffect) { + $res['ProgramEffect'] = $this->programEffect; + } + if (null !== $this->programName) { + $res['ProgramName'] = $this->programName; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->total) { + $res['Total'] = $this->total; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeCasterProgramResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CasterId'])) { + $model->casterId = $map['CasterId']; + } + if (isset($map['Episodes'])) { + $model->episodes = episodes::fromMap($map['Episodes']); + } + if (isset($map['ProgramEffect'])) { + $model->programEffect = $map['ProgramEffect']; + } + if (isset($map['ProgramName'])) { + $model->programName = $map['ProgramName']; + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['Total'])) { + $model->total = $map['Total']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterProgramResponseBody/episodes.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterProgramResponseBody/episodes.php new file mode 100644 index 000000000..688e5b0c4 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterProgramResponseBody/episodes.php @@ -0,0 +1,60 @@ + 'Episode', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->episode) { + $res['Episode'] = []; + if (null !== $this->episode && \is_array($this->episode)) { + $n = 0; + foreach ($this->episode as $item) { + $res['Episode'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return episodes + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Episode'])) { + if (!empty($map['Episode'])) { + $model->episode = []; + $n = 0; + foreach ($map['Episode'] as $item) { + $model->episode[$n++] = null !== $item ? episode::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterProgramResponseBody/episodes/episode.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterProgramResponseBody/episodes/episode.php new file mode 100644 index 000000000..8d8b4e6ad --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterProgramResponseBody/episodes/episode.php @@ -0,0 +1,144 @@ + 'ComponentIds', + 'endTime' => 'EndTime', + 'episodeId' => 'EpisodeId', + 'episodeName' => 'EpisodeName', + 'episodeType' => 'EpisodeType', + 'resourceId' => 'ResourceId', + 'startTime' => 'StartTime', + 'status' => 'Status', + 'switchType' => 'SwitchType', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->componentIds) { + $res['ComponentIds'] = null !== $this->componentIds ? $this->componentIds->toMap() : null; + } + if (null !== $this->endTime) { + $res['EndTime'] = $this->endTime; + } + if (null !== $this->episodeId) { + $res['EpisodeId'] = $this->episodeId; + } + if (null !== $this->episodeName) { + $res['EpisodeName'] = $this->episodeName; + } + if (null !== $this->episodeType) { + $res['EpisodeType'] = $this->episodeType; + } + if (null !== $this->resourceId) { + $res['ResourceId'] = $this->resourceId; + } + if (null !== $this->startTime) { + $res['StartTime'] = $this->startTime; + } + if (null !== $this->status) { + $res['Status'] = $this->status; + } + if (null !== $this->switchType) { + $res['SwitchType'] = $this->switchType; + } + + return $res; + } + + /** + * @param array $map + * + * @return episode + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['ComponentIds'])) { + $model->componentIds = componentIds::fromMap($map['ComponentIds']); + } + if (isset($map['EndTime'])) { + $model->endTime = $map['EndTime']; + } + if (isset($map['EpisodeId'])) { + $model->episodeId = $map['EpisodeId']; + } + if (isset($map['EpisodeName'])) { + $model->episodeName = $map['EpisodeName']; + } + if (isset($map['EpisodeType'])) { + $model->episodeType = $map['EpisodeType']; + } + if (isset($map['ResourceId'])) { + $model->resourceId = $map['ResourceId']; + } + if (isset($map['StartTime'])) { + $model->startTime = $map['StartTime']; + } + if (isset($map['Status'])) { + $model->status = $map['Status']; + } + if (isset($map['SwitchType'])) { + $model->switchType = $map['SwitchType']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterProgramResponseBody/episodes/episode/componentIds.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterProgramResponseBody/episodes/episode/componentIds.php new file mode 100644 index 000000000..7cce85faa --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterProgramResponseBody/episodes/episode/componentIds.php @@ -0,0 +1,49 @@ + 'ComponentId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->componentId) { + $res['ComponentId'] = $this->componentId; + } + + return $res; + } + + /** + * @param array $map + * + * @return componentIds + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['ComponentId'])) { + if (!empty($map['ComponentId'])) { + $model->componentId = $map['ComponentId']; + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterRtcInfoRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterRtcInfoRequest.php new file mode 100644 index 000000000..768412c47 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterRtcInfoRequest.php @@ -0,0 +1,59 @@ + 'OwnerId', + 'casterId' => 'CasterId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->casterId) { + $res['CasterId'] = $this->casterId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeCasterRtcInfoRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['CasterId'])) { + $model->casterId = $map['CasterId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterRtcInfoResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterRtcInfoResponse.php new file mode 100644 index 000000000..517bd1140 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterRtcInfoResponse.php @@ -0,0 +1,61 @@ + 'headers', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeCasterRtcInfoResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['body'])) { + $model->body = DescribeCasterRtcInfoResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterRtcInfoResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterRtcInfoResponseBody.php new file mode 100644 index 000000000..c462f7e7d --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterRtcInfoResponseBody.php @@ -0,0 +1,71 @@ + 'RequestId', + 'authToken' => 'AuthToken', + 'casterId' => 'CasterId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->authToken) { + $res['AuthToken'] = $this->authToken; + } + if (null !== $this->casterId) { + $res['CasterId'] = $this->casterId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeCasterRtcInfoResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['AuthToken'])) { + $model->authToken = $map['AuthToken']; + } + if (isset($map['CasterId'])) { + $model->casterId = $map['CasterId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterSceneAudioRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterSceneAudioRequest.php new file mode 100644 index 000000000..832046806 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterSceneAudioRequest.php @@ -0,0 +1,71 @@ + 'CasterId', + 'ownerId' => 'OwnerId', + 'sceneId' => 'SceneId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->casterId) { + $res['CasterId'] = $this->casterId; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->sceneId) { + $res['SceneId'] = $this->sceneId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeCasterSceneAudioRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CasterId'])) { + $model->casterId = $map['CasterId']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['SceneId'])) { + $model->sceneId = $map['SceneId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterSceneAudioResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterSceneAudioResponse.php new file mode 100644 index 000000000..a1d39d650 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterSceneAudioResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeCasterSceneAudioResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DescribeCasterSceneAudioResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterSceneAudioResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterSceneAudioResponseBody.php new file mode 100644 index 000000000..868241b9b --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterSceneAudioResponseBody.php @@ -0,0 +1,97 @@ + 'AudioLayers', + 'casterId' => 'CasterId', + 'followEnable' => 'FollowEnable', + 'mixList' => 'MixList', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->audioLayers) { + $res['AudioLayers'] = null !== $this->audioLayers ? $this->audioLayers->toMap() : null; + } + if (null !== $this->casterId) { + $res['CasterId'] = $this->casterId; + } + if (null !== $this->followEnable) { + $res['FollowEnable'] = $this->followEnable; + } + if (null !== $this->mixList) { + $res['MixList'] = null !== $this->mixList ? $this->mixList->toMap() : null; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeCasterSceneAudioResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AudioLayers'])) { + $model->audioLayers = audioLayers::fromMap($map['AudioLayers']); + } + if (isset($map['CasterId'])) { + $model->casterId = $map['CasterId']; + } + if (isset($map['FollowEnable'])) { + $model->followEnable = $map['FollowEnable']; + } + if (isset($map['MixList'])) { + $model->mixList = mixList::fromMap($map['MixList']); + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterSceneAudioResponseBody/audioLayers.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterSceneAudioResponseBody/audioLayers.php new file mode 100644 index 000000000..9d2802dc1 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterSceneAudioResponseBody/audioLayers.php @@ -0,0 +1,60 @@ + 'AudioLayer', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->audioLayer) { + $res['AudioLayer'] = []; + if (null !== $this->audioLayer && \is_array($this->audioLayer)) { + $n = 0; + foreach ($this->audioLayer as $item) { + $res['AudioLayer'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return audioLayers + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AudioLayer'])) { + if (!empty($map['AudioLayer'])) { + $model->audioLayer = []; + $n = 0; + foreach ($map['AudioLayer'] as $item) { + $model->audioLayer[$n++] = null !== $item ? audioLayer::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterSceneAudioResponseBody/audioLayers/audioLayer.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterSceneAudioResponseBody/audioLayers/audioLayer.php new file mode 100644 index 000000000..8517f7a9e --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterSceneAudioResponseBody/audioLayers/audioLayer.php @@ -0,0 +1,71 @@ + 'FixedDelayDuration', + 'validChannel' => 'ValidChannel', + 'volumeRate' => 'VolumeRate', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->fixedDelayDuration) { + $res['FixedDelayDuration'] = $this->fixedDelayDuration; + } + if (null !== $this->validChannel) { + $res['ValidChannel'] = $this->validChannel; + } + if (null !== $this->volumeRate) { + $res['VolumeRate'] = $this->volumeRate; + } + + return $res; + } + + /** + * @param array $map + * + * @return audioLayer + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['FixedDelayDuration'])) { + $model->fixedDelayDuration = $map['FixedDelayDuration']; + } + if (isset($map['ValidChannel'])) { + $model->validChannel = $map['ValidChannel']; + } + if (isset($map['VolumeRate'])) { + $model->volumeRate = $map['VolumeRate']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterSceneAudioResponseBody/mixList.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterSceneAudioResponseBody/mixList.php new file mode 100644 index 000000000..c0c4afde9 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterSceneAudioResponseBody/mixList.php @@ -0,0 +1,49 @@ + 'LocationId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->locationId) { + $res['LocationId'] = $this->locationId; + } + + return $res; + } + + /** + * @param array $map + * + * @return mixList + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['LocationId'])) { + if (!empty($map['LocationId'])) { + $model->locationId = $map['LocationId']; + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterScenesRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterScenesRequest.php new file mode 100644 index 000000000..849a978d5 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterScenesRequest.php @@ -0,0 +1,71 @@ + 'CasterId', + 'ownerId' => 'OwnerId', + 'sceneId' => 'SceneId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->casterId) { + $res['CasterId'] = $this->casterId; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->sceneId) { + $res['SceneId'] = $this->sceneId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeCasterScenesRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CasterId'])) { + $model->casterId = $map['CasterId']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['SceneId'])) { + $model->sceneId = $map['SceneId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterScenesResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterScenesResponse.php new file mode 100644 index 000000000..1866cc049 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterScenesResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeCasterScenesResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DescribeCasterScenesResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterScenesResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterScenesResponseBody.php new file mode 100644 index 000000000..105a47c6c --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterScenesResponseBody.php @@ -0,0 +1,72 @@ + 'RequestId', + 'sceneList' => 'SceneList', + 'total' => 'Total', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->sceneList) { + $res['SceneList'] = null !== $this->sceneList ? $this->sceneList->toMap() : null; + } + if (null !== $this->total) { + $res['Total'] = $this->total; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeCasterScenesResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['SceneList'])) { + $model->sceneList = sceneList::fromMap($map['SceneList']); + } + if (isset($map['Total'])) { + $model->total = $map['Total']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterScenesResponseBody/sceneList.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterScenesResponseBody/sceneList.php new file mode 100644 index 000000000..04c91a9b2 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterScenesResponseBody/sceneList.php @@ -0,0 +1,60 @@ + 'Scene', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->scene) { + $res['Scene'] = []; + if (null !== $this->scene && \is_array($this->scene)) { + $n = 0; + foreach ($this->scene as $item) { + $res['Scene'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return sceneList + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Scene'])) { + if (!empty($map['Scene'])) { + $model->scene = []; + $n = 0; + foreach ($map['Scene'] as $item) { + $model->scene[$n++] = null !== $item ? scene::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterScenesResponseBody/sceneList/scene.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterScenesResponseBody/sceneList/scene.php new file mode 100644 index 000000000..d855bb177 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterScenesResponseBody/sceneList/scene.php @@ -0,0 +1,133 @@ + 'ComponentIds', + 'layoutId' => 'LayoutId', + 'outputType' => 'OutputType', + 'sceneId' => 'SceneId', + 'sceneName' => 'SceneName', + 'status' => 'Status', + 'streamInfos' => 'StreamInfos', + 'streamUrl' => 'StreamUrl', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->componentIds) { + $res['ComponentIds'] = null !== $this->componentIds ? $this->componentIds->toMap() : null; + } + if (null !== $this->layoutId) { + $res['LayoutId'] = $this->layoutId; + } + if (null !== $this->outputType) { + $res['OutputType'] = $this->outputType; + } + if (null !== $this->sceneId) { + $res['SceneId'] = $this->sceneId; + } + if (null !== $this->sceneName) { + $res['SceneName'] = $this->sceneName; + } + if (null !== $this->status) { + $res['Status'] = $this->status; + } + if (null !== $this->streamInfos) { + $res['StreamInfos'] = null !== $this->streamInfos ? $this->streamInfos->toMap() : null; + } + if (null !== $this->streamUrl) { + $res['StreamUrl'] = $this->streamUrl; + } + + return $res; + } + + /** + * @param array $map + * + * @return scene + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['ComponentIds'])) { + $model->componentIds = componentIds::fromMap($map['ComponentIds']); + } + if (isset($map['LayoutId'])) { + $model->layoutId = $map['LayoutId']; + } + if (isset($map['OutputType'])) { + $model->outputType = $map['OutputType']; + } + if (isset($map['SceneId'])) { + $model->sceneId = $map['SceneId']; + } + if (isset($map['SceneName'])) { + $model->sceneName = $map['SceneName']; + } + if (isset($map['Status'])) { + $model->status = $map['Status']; + } + if (isset($map['StreamInfos'])) { + $model->streamInfos = streamInfos::fromMap($map['StreamInfos']); + } + if (isset($map['StreamUrl'])) { + $model->streamUrl = $map['StreamUrl']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterScenesResponseBody/sceneList/scene/componentIds.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterScenesResponseBody/sceneList/scene/componentIds.php new file mode 100644 index 000000000..13cc67f50 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterScenesResponseBody/sceneList/scene/componentIds.php @@ -0,0 +1,49 @@ + 'componentId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->componentId) { + $res['componentId'] = $this->componentId; + } + + return $res; + } + + /** + * @param array $map + * + * @return componentIds + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['componentId'])) { + if (!empty($map['componentId'])) { + $model->componentId = $map['componentId']; + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterScenesResponseBody/sceneList/scene/streamInfos.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterScenesResponseBody/sceneList/scene/streamInfos.php new file mode 100644 index 000000000..9b25d0a55 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterScenesResponseBody/sceneList/scene/streamInfos.php @@ -0,0 +1,60 @@ + 'StreamInfo', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->streamInfo) { + $res['StreamInfo'] = []; + if (null !== $this->streamInfo && \is_array($this->streamInfo)) { + $n = 0; + foreach ($this->streamInfo as $item) { + $res['StreamInfo'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return streamInfos + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['StreamInfo'])) { + if (!empty($map['StreamInfo'])) { + $model->streamInfo = []; + $n = 0; + foreach ($map['StreamInfo'] as $item) { + $model->streamInfo[$n++] = null !== $item ? streamInfo::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterScenesResponseBody/sceneList/scene/streamInfos/streamInfo.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterScenesResponseBody/sceneList/scene/streamInfos/streamInfo.php new file mode 100644 index 000000000..9e56351c3 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterScenesResponseBody/sceneList/scene/streamInfos/streamInfo.php @@ -0,0 +1,71 @@ + 'OutputStreamUrl', + 'transcodeConfig' => 'TranscodeConfig', + 'videoFormat' => 'VideoFormat', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->outputStreamUrl) { + $res['OutputStreamUrl'] = $this->outputStreamUrl; + } + if (null !== $this->transcodeConfig) { + $res['TranscodeConfig'] = $this->transcodeConfig; + } + if (null !== $this->videoFormat) { + $res['VideoFormat'] = $this->videoFormat; + } + + return $res; + } + + /** + * @param array $map + * + * @return streamInfo + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['OutputStreamUrl'])) { + $model->outputStreamUrl = $map['OutputStreamUrl']; + } + if (isset($map['TranscodeConfig'])) { + $model->transcodeConfig = $map['TranscodeConfig']; + } + if (isset($map['VideoFormat'])) { + $model->videoFormat = $map['VideoFormat']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterStreamUrlRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterStreamUrlRequest.php new file mode 100644 index 000000000..eae7be963 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterStreamUrlRequest.php @@ -0,0 +1,59 @@ + 'CasterId', + 'ownerId' => 'OwnerId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->casterId) { + $res['CasterId'] = $this->casterId; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeCasterStreamUrlRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CasterId'])) { + $model->casterId = $map['CasterId']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterStreamUrlResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterStreamUrlResponse.php new file mode 100644 index 000000000..f381a436c --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterStreamUrlResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeCasterStreamUrlResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DescribeCasterStreamUrlResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterStreamUrlResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterStreamUrlResponseBody.php new file mode 100644 index 000000000..c2a47ab38 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterStreamUrlResponseBody.php @@ -0,0 +1,84 @@ + 'CasterId', + 'casterStreams' => 'CasterStreams', + 'requestId' => 'RequestId', + 'total' => 'Total', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->casterId) { + $res['CasterId'] = $this->casterId; + } + if (null !== $this->casterStreams) { + $res['CasterStreams'] = null !== $this->casterStreams ? $this->casterStreams->toMap() : null; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->total) { + $res['Total'] = $this->total; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeCasterStreamUrlResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CasterId'])) { + $model->casterId = $map['CasterId']; + } + if (isset($map['CasterStreams'])) { + $model->casterStreams = casterStreams::fromMap($map['CasterStreams']); + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['Total'])) { + $model->total = $map['Total']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterStreamUrlResponseBody/casterStreams.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterStreamUrlResponseBody/casterStreams.php new file mode 100644 index 000000000..317028b8e --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterStreamUrlResponseBody/casterStreams.php @@ -0,0 +1,60 @@ + 'CasterStream', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->casterStream) { + $res['CasterStream'] = []; + if (null !== $this->casterStream && \is_array($this->casterStream)) { + $n = 0; + foreach ($this->casterStream as $item) { + $res['CasterStream'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return casterStreams + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CasterStream'])) { + if (!empty($map['CasterStream'])) { + $model->casterStream = []; + $n = 0; + foreach ($map['CasterStream'] as $item) { + $model->casterStream[$n++] = null !== $item ? casterStream::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterStreamUrlResponseBody/casterStreams/casterStream.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterStreamUrlResponseBody/casterStreams/casterStream.php new file mode 100644 index 000000000..aa96faf67 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterStreamUrlResponseBody/casterStreams/casterStream.php @@ -0,0 +1,96 @@ + 'OutputType', + 'rtmpUrl' => 'RtmpUrl', + 'sceneId' => 'SceneId', + 'streamInfos' => 'StreamInfos', + 'streamUrl' => 'StreamUrl', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->outputType) { + $res['OutputType'] = $this->outputType; + } + if (null !== $this->rtmpUrl) { + $res['RtmpUrl'] = $this->rtmpUrl; + } + if (null !== $this->sceneId) { + $res['SceneId'] = $this->sceneId; + } + if (null !== $this->streamInfos) { + $res['StreamInfos'] = null !== $this->streamInfos ? $this->streamInfos->toMap() : null; + } + if (null !== $this->streamUrl) { + $res['StreamUrl'] = $this->streamUrl; + } + + return $res; + } + + /** + * @param array $map + * + * @return casterStream + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['OutputType'])) { + $model->outputType = $map['OutputType']; + } + if (isset($map['RtmpUrl'])) { + $model->rtmpUrl = $map['RtmpUrl']; + } + if (isset($map['SceneId'])) { + $model->sceneId = $map['SceneId']; + } + if (isset($map['StreamInfos'])) { + $model->streamInfos = streamInfos::fromMap($map['StreamInfos']); + } + if (isset($map['StreamUrl'])) { + $model->streamUrl = $map['StreamUrl']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterStreamUrlResponseBody/casterStreams/casterStream/streamInfos.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterStreamUrlResponseBody/casterStreams/casterStream/streamInfos.php new file mode 100644 index 000000000..f2a01e8da --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterStreamUrlResponseBody/casterStreams/casterStream/streamInfos.php @@ -0,0 +1,60 @@ + 'StreamInfo', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->streamInfo) { + $res['StreamInfo'] = []; + if (null !== $this->streamInfo && \is_array($this->streamInfo)) { + $n = 0; + foreach ($this->streamInfo as $item) { + $res['StreamInfo'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return streamInfos + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['StreamInfo'])) { + if (!empty($map['StreamInfo'])) { + $model->streamInfo = []; + $n = 0; + foreach ($map['StreamInfo'] as $item) { + $model->streamInfo[$n++] = null !== $item ? streamInfo::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterStreamUrlResponseBody/casterStreams/casterStream/streamInfos/streamInfo.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterStreamUrlResponseBody/casterStreams/casterStream/streamInfos/streamInfo.php new file mode 100644 index 000000000..492120015 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterStreamUrlResponseBody/casterStreams/casterStream/streamInfos/streamInfo.php @@ -0,0 +1,71 @@ + 'OutputStreamUrl', + 'transcodeConfig' => 'TranscodeConfig', + 'videoFormat' => 'VideoFormat', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->outputStreamUrl) { + $res['OutputStreamUrl'] = $this->outputStreamUrl; + } + if (null !== $this->transcodeConfig) { + $res['TranscodeConfig'] = $this->transcodeConfig; + } + if (null !== $this->videoFormat) { + $res['VideoFormat'] = $this->videoFormat; + } + + return $res; + } + + /** + * @param array $map + * + * @return streamInfo + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['OutputStreamUrl'])) { + $model->outputStreamUrl = $map['OutputStreamUrl']; + } + if (isset($map['TranscodeConfig'])) { + $model->transcodeConfig = $map['TranscodeConfig']; + } + if (isset($map['VideoFormat'])) { + $model->videoFormat = $map['VideoFormat']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterSyncGroupRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterSyncGroupRequest.php new file mode 100644 index 000000000..ab676f235 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterSyncGroupRequest.php @@ -0,0 +1,59 @@ + 'CasterId', + 'ownerId' => 'OwnerId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->casterId) { + $res['CasterId'] = $this->casterId; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeCasterSyncGroupRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CasterId'])) { + $model->casterId = $map['CasterId']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterSyncGroupResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterSyncGroupResponse.php new file mode 100644 index 000000000..f57f6f019 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterSyncGroupResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeCasterSyncGroupResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DescribeCasterSyncGroupResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterSyncGroupResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterSyncGroupResponseBody.php new file mode 100644 index 000000000..dda6b259e --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterSyncGroupResponseBody.php @@ -0,0 +1,72 @@ + 'CasterId', + 'requestId' => 'RequestId', + 'syncGroups' => 'SyncGroups', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->casterId) { + $res['CasterId'] = $this->casterId; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->syncGroups) { + $res['SyncGroups'] = null !== $this->syncGroups ? $this->syncGroups->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeCasterSyncGroupResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CasterId'])) { + $model->casterId = $map['CasterId']; + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['SyncGroups'])) { + $model->syncGroups = syncGroups::fromMap($map['SyncGroups']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterSyncGroupResponseBody/syncGroups.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterSyncGroupResponseBody/syncGroups.php new file mode 100644 index 000000000..355da7f8c --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterSyncGroupResponseBody/syncGroups.php @@ -0,0 +1,60 @@ + 'SyncGroup', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->syncGroup) { + $res['SyncGroup'] = []; + if (null !== $this->syncGroup && \is_array($this->syncGroup)) { + $n = 0; + foreach ($this->syncGroup as $item) { + $res['SyncGroup'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return syncGroups + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['SyncGroup'])) { + if (!empty($map['SyncGroup'])) { + $model->syncGroup = []; + $n = 0; + foreach ($map['SyncGroup'] as $item) { + $model->syncGroup[$n++] = null !== $item ? syncGroup::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterSyncGroupResponseBody/syncGroups/syncGroup.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterSyncGroupResponseBody/syncGroups/syncGroup.php new file mode 100644 index 000000000..f5bb71db1 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterSyncGroupResponseBody/syncGroups/syncGroup.php @@ -0,0 +1,72 @@ + 'HostResourceId', + 'mode' => 'Mode', + 'resourceIds' => 'ResourceIds', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->hostResourceId) { + $res['HostResourceId'] = $this->hostResourceId; + } + if (null !== $this->mode) { + $res['Mode'] = $this->mode; + } + if (null !== $this->resourceIds) { + $res['ResourceIds'] = null !== $this->resourceIds ? $this->resourceIds->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return syncGroup + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['HostResourceId'])) { + $model->hostResourceId = $map['HostResourceId']; + } + if (isset($map['Mode'])) { + $model->mode = $map['Mode']; + } + if (isset($map['ResourceIds'])) { + $model->resourceIds = resourceIds::fromMap($map['ResourceIds']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterSyncGroupResponseBody/syncGroups/syncGroup/resourceIds.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterSyncGroupResponseBody/syncGroups/syncGroup/resourceIds.php new file mode 100644 index 000000000..1aa58ecc6 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterSyncGroupResponseBody/syncGroups/syncGroup/resourceIds.php @@ -0,0 +1,49 @@ + 'ResourceId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->resourceId) { + $res['ResourceId'] = $this->resourceId; + } + + return $res; + } + + /** + * @param array $map + * + * @return resourceIds + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['ResourceId'])) { + if (!empty($map['ResourceId'])) { + $model->resourceId = $map['ResourceId']; + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterVideoResourcesRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterVideoResourcesRequest.php new file mode 100644 index 000000000..f338059f6 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterVideoResourcesRequest.php @@ -0,0 +1,59 @@ + 'CasterId', + 'ownerId' => 'OwnerId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->casterId) { + $res['CasterId'] = $this->casterId; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeCasterVideoResourcesRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CasterId'])) { + $model->casterId = $map['CasterId']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterVideoResourcesResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterVideoResourcesResponse.php new file mode 100644 index 000000000..633736bb1 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterVideoResourcesResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeCasterVideoResourcesResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DescribeCasterVideoResourcesResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterVideoResourcesResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterVideoResourcesResponseBody.php new file mode 100644 index 000000000..1cd1675da --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterVideoResourcesResponseBody.php @@ -0,0 +1,72 @@ + 'RequestId', + 'total' => 'Total', + 'videoResources' => 'VideoResources', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->total) { + $res['Total'] = $this->total; + } + if (null !== $this->videoResources) { + $res['VideoResources'] = null !== $this->videoResources ? $this->videoResources->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeCasterVideoResourcesResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['Total'])) { + $model->total = $map['Total']; + } + if (isset($map['VideoResources'])) { + $model->videoResources = videoResources::fromMap($map['VideoResources']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterVideoResourcesResponseBody/videoResources.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterVideoResourcesResponseBody/videoResources.php new file mode 100644 index 000000000..95a92dfbb --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterVideoResourcesResponseBody/videoResources.php @@ -0,0 +1,60 @@ + 'VideoResource', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->videoResource) { + $res['VideoResource'] = []; + if (null !== $this->videoResource && \is_array($this->videoResource)) { + $n = 0; + foreach ($this->videoResource as $item) { + $res['VideoResource'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return videoResources + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['VideoResource'])) { + if (!empty($map['VideoResource'])) { + $model->videoResource = []; + $n = 0; + foreach ($map['VideoResource'] as $item) { + $model->videoResource[$n++] = null !== $item ? videoResource::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterVideoResourcesResponseBody/videoResources/videoResource.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterVideoResourcesResponseBody/videoResources/videoResource.php new file mode 100644 index 000000000..0c1efc0b4 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCasterVideoResourcesResponseBody/videoResources/videoResource.php @@ -0,0 +1,167 @@ + 'BeginOffset', + 'endOffset' => 'EndOffset', + 'flvUrl' => 'FlvUrl', + 'liveStreamUrl' => 'LiveStreamUrl', + 'locationId' => 'LocationId', + 'materialId' => 'MaterialId', + 'ptsCallbackInterval' => 'PtsCallbackInterval', + 'repeatNum' => 'RepeatNum', + 'resourceId' => 'ResourceId', + 'resourceName' => 'ResourceName', + 'vodUrl' => 'VodUrl', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->beginOffset) { + $res['BeginOffset'] = $this->beginOffset; + } + if (null !== $this->endOffset) { + $res['EndOffset'] = $this->endOffset; + } + if (null !== $this->flvUrl) { + $res['FlvUrl'] = $this->flvUrl; + } + if (null !== $this->liveStreamUrl) { + $res['LiveStreamUrl'] = $this->liveStreamUrl; + } + if (null !== $this->locationId) { + $res['LocationId'] = $this->locationId; + } + if (null !== $this->materialId) { + $res['MaterialId'] = $this->materialId; + } + if (null !== $this->ptsCallbackInterval) { + $res['PtsCallbackInterval'] = $this->ptsCallbackInterval; + } + if (null !== $this->repeatNum) { + $res['RepeatNum'] = $this->repeatNum; + } + if (null !== $this->resourceId) { + $res['ResourceId'] = $this->resourceId; + } + if (null !== $this->resourceName) { + $res['ResourceName'] = $this->resourceName; + } + if (null !== $this->vodUrl) { + $res['VodUrl'] = $this->vodUrl; + } + + return $res; + } + + /** + * @param array $map + * + * @return videoResource + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['BeginOffset'])) { + $model->beginOffset = $map['BeginOffset']; + } + if (isset($map['EndOffset'])) { + $model->endOffset = $map['EndOffset']; + } + if (isset($map['FlvUrl'])) { + $model->flvUrl = $map['FlvUrl']; + } + if (isset($map['LiveStreamUrl'])) { + $model->liveStreamUrl = $map['LiveStreamUrl']; + } + if (isset($map['LocationId'])) { + $model->locationId = $map['LocationId']; + } + if (isset($map['MaterialId'])) { + $model->materialId = $map['MaterialId']; + } + if (isset($map['PtsCallbackInterval'])) { + $model->ptsCallbackInterval = $map['PtsCallbackInterval']; + } + if (isset($map['RepeatNum'])) { + $model->repeatNum = $map['RepeatNum']; + } + if (isset($map['ResourceId'])) { + $model->resourceId = $map['ResourceId']; + } + if (isset($map['ResourceName'])) { + $model->resourceName = $map['ResourceName']; + } + if (isset($map['VodUrl'])) { + $model->vodUrl = $map['VodUrl']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCastersRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCastersRequest.php new file mode 100644 index 000000000..3bc09da2d --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCastersRequest.php @@ -0,0 +1,167 @@ + 'CasterId', + 'casterName' => 'CasterName', + 'chargeType' => 'ChargeType', + 'endTime' => 'EndTime', + 'normType' => 'NormType', + 'orderByModifyAsc' => 'OrderByModifyAsc', + 'ownerId' => 'OwnerId', + 'pageNum' => 'PageNum', + 'pageSize' => 'PageSize', + 'startTime' => 'StartTime', + 'status' => 'Status', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->casterId) { + $res['CasterId'] = $this->casterId; + } + if (null !== $this->casterName) { + $res['CasterName'] = $this->casterName; + } + if (null !== $this->chargeType) { + $res['ChargeType'] = $this->chargeType; + } + if (null !== $this->endTime) { + $res['EndTime'] = $this->endTime; + } + if (null !== $this->normType) { + $res['NormType'] = $this->normType; + } + if (null !== $this->orderByModifyAsc) { + $res['OrderByModifyAsc'] = $this->orderByModifyAsc; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->pageNum) { + $res['PageNum'] = $this->pageNum; + } + if (null !== $this->pageSize) { + $res['PageSize'] = $this->pageSize; + } + if (null !== $this->startTime) { + $res['StartTime'] = $this->startTime; + } + if (null !== $this->status) { + $res['Status'] = $this->status; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeCastersRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CasterId'])) { + $model->casterId = $map['CasterId']; + } + if (isset($map['CasterName'])) { + $model->casterName = $map['CasterName']; + } + if (isset($map['ChargeType'])) { + $model->chargeType = $map['ChargeType']; + } + if (isset($map['EndTime'])) { + $model->endTime = $map['EndTime']; + } + if (isset($map['NormType'])) { + $model->normType = $map['NormType']; + } + if (isset($map['OrderByModifyAsc'])) { + $model->orderByModifyAsc = $map['OrderByModifyAsc']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['PageNum'])) { + $model->pageNum = $map['PageNum']; + } + if (isset($map['PageSize'])) { + $model->pageSize = $map['PageSize']; + } + if (isset($map['StartTime'])) { + $model->startTime = $map['StartTime']; + } + if (isset($map['Status'])) { + $model->status = $map['Status']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCastersResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCastersResponse.php new file mode 100644 index 000000000..a9fddc71b --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCastersResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeCastersResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DescribeCastersResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCastersResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCastersResponseBody.php new file mode 100644 index 000000000..c94ea6ae7 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCastersResponseBody.php @@ -0,0 +1,72 @@ + 'CasterList', + 'requestId' => 'RequestId', + 'total' => 'Total', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->casterList) { + $res['CasterList'] = null !== $this->casterList ? $this->casterList->toMap() : null; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->total) { + $res['Total'] = $this->total; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeCastersResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CasterList'])) { + $model->casterList = casterList::fromMap($map['CasterList']); + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['Total'])) { + $model->total = $map['Total']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCastersResponseBody/casterList.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCastersResponseBody/casterList.php new file mode 100644 index 000000000..c9facafa1 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCastersResponseBody/casterList.php @@ -0,0 +1,60 @@ + 'Caster', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->caster) { + $res['Caster'] = []; + if (null !== $this->caster && \is_array($this->caster)) { + $n = 0; + foreach ($this->caster as $item) { + $res['Caster'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return casterList + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Caster'])) { + if (!empty($map['Caster'])) { + $model->caster = []; + $n = 0; + foreach ($map['Caster'] as $item) { + $model->caster[$n++] = null !== $item ? caster::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeCastersResponseBody/casterList/caster.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeCastersResponseBody/casterList/caster.php new file mode 100644 index 000000000..d33504351 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeCastersResponseBody/casterList/caster.php @@ -0,0 +1,191 @@ + 'CasterId', + 'casterName' => 'CasterName', + 'casterTemplate' => 'CasterTemplate', + 'channelEnable' => 'ChannelEnable', + 'chargeType' => 'ChargeType', + 'createTime' => 'CreateTime', + 'duration' => 'Duration', + 'expireTime' => 'ExpireTime', + 'lastModified' => 'LastModified', + 'normType' => 'NormType', + 'purchaseTime' => 'PurchaseTime', + 'startTime' => 'StartTime', + 'status' => 'Status', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->casterId) { + $res['CasterId'] = $this->casterId; + } + if (null !== $this->casterName) { + $res['CasterName'] = $this->casterName; + } + if (null !== $this->casterTemplate) { + $res['CasterTemplate'] = $this->casterTemplate; + } + if (null !== $this->channelEnable) { + $res['ChannelEnable'] = $this->channelEnable; + } + if (null !== $this->chargeType) { + $res['ChargeType'] = $this->chargeType; + } + if (null !== $this->createTime) { + $res['CreateTime'] = $this->createTime; + } + if (null !== $this->duration) { + $res['Duration'] = $this->duration; + } + if (null !== $this->expireTime) { + $res['ExpireTime'] = $this->expireTime; + } + if (null !== $this->lastModified) { + $res['LastModified'] = $this->lastModified; + } + if (null !== $this->normType) { + $res['NormType'] = $this->normType; + } + if (null !== $this->purchaseTime) { + $res['PurchaseTime'] = $this->purchaseTime; + } + if (null !== $this->startTime) { + $res['StartTime'] = $this->startTime; + } + if (null !== $this->status) { + $res['Status'] = $this->status; + } + + return $res; + } + + /** + * @param array $map + * + * @return caster + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CasterId'])) { + $model->casterId = $map['CasterId']; + } + if (isset($map['CasterName'])) { + $model->casterName = $map['CasterName']; + } + if (isset($map['CasterTemplate'])) { + $model->casterTemplate = $map['CasterTemplate']; + } + if (isset($map['ChannelEnable'])) { + $model->channelEnable = $map['ChannelEnable']; + } + if (isset($map['ChargeType'])) { + $model->chargeType = $map['ChargeType']; + } + if (isset($map['CreateTime'])) { + $model->createTime = $map['CreateTime']; + } + if (isset($map['Duration'])) { + $model->duration = $map['Duration']; + } + if (isset($map['ExpireTime'])) { + $model->expireTime = $map['ExpireTime']; + } + if (isset($map['LastModified'])) { + $model->lastModified = $map['LastModified']; + } + if (isset($map['NormType'])) { + $model->normType = $map['NormType']; + } + if (isset($map['PurchaseTime'])) { + $model->purchaseTime = $map['PurchaseTime']; + } + if (isset($map['StartTime'])) { + $model->startTime = $map['StartTime']; + } + if (isset($map['Status'])) { + $model->status = $map['Status']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeDRMCertListRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeDRMCertListRequest.php new file mode 100644 index 000000000..b28e7f523 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeDRMCertListRequest.php @@ -0,0 +1,71 @@ + 'OwnerId', + 'pageNum' => 'PageNum', + 'pageSize' => 'PageSize', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->pageNum) { + $res['PageNum'] = $this->pageNum; + } + if (null !== $this->pageSize) { + $res['PageSize'] = $this->pageSize; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeDRMCertListRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['PageNum'])) { + $model->pageNum = $map['PageNum']; + } + if (isset($map['PageSize'])) { + $model->pageSize = $map['PageSize']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeDRMCertListResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeDRMCertListResponse.php new file mode 100644 index 000000000..3be211fea --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeDRMCertListResponse.php @@ -0,0 +1,61 @@ + 'headers', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeDRMCertListResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['body'])) { + $model->body = DescribeDRMCertListResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeDRMCertListResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeDRMCertListResponseBody.php new file mode 100644 index 000000000..86889aa9c --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeDRMCertListResponseBody.php @@ -0,0 +1,60 @@ + 'DRMCertInfoListList', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->DRMCertInfoListList) { + $res['DRMCertInfoListList'] = null !== $this->DRMCertInfoListList ? $this->DRMCertInfoListList->toMap() : null; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeDRMCertListResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DRMCertInfoListList'])) { + $model->DRMCertInfoListList = DRMCertInfoListList::fromMap($map['DRMCertInfoListList']); + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeDRMCertListResponseBody/DRMCertInfoListList.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeDRMCertListResponseBody/DRMCertInfoListList.php new file mode 100644 index 000000000..79928a2a2 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeDRMCertListResponseBody/DRMCertInfoListList.php @@ -0,0 +1,60 @@ + 'CertInfo', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->certInfo) { + $res['CertInfo'] = []; + if (null !== $this->certInfo && \is_array($this->certInfo)) { + $n = 0; + foreach ($this->certInfo as $item) { + $res['CertInfo'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return DRMCertInfoListList + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CertInfo'])) { + if (!empty($map['CertInfo'])) { + $model->certInfo = []; + $n = 0; + foreach ($map['CertInfo'] as $item) { + $model->certInfo[$n++] = null !== $item ? certInfo::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeDRMCertListResponseBody/DRMCertInfoListList/certInfo.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeDRMCertListResponseBody/DRMCertInfoListList/certInfo.php new file mode 100644 index 000000000..eac15c2ae --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeDRMCertListResponseBody/DRMCertInfoListList/certInfo.php @@ -0,0 +1,119 @@ + 'Description', + 'privateKey' => 'PrivateKey', + 'servCert' => 'ServCert', + 'certName' => 'CertName', + 'passphrase' => 'Passphrase', + 'certId' => 'CertId', + 'ask' => 'Ask', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->description) { + $res['Description'] = $this->description; + } + if (null !== $this->privateKey) { + $res['PrivateKey'] = $this->privateKey; + } + if (null !== $this->servCert) { + $res['ServCert'] = $this->servCert; + } + if (null !== $this->certName) { + $res['CertName'] = $this->certName; + } + if (null !== $this->passphrase) { + $res['Passphrase'] = $this->passphrase; + } + if (null !== $this->certId) { + $res['CertId'] = $this->certId; + } + if (null !== $this->ask) { + $res['Ask'] = $this->ask; + } + + return $res; + } + + /** + * @param array $map + * + * @return certInfo + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Description'])) { + $model->description = $map['Description']; + } + if (isset($map['PrivateKey'])) { + $model->privateKey = $map['PrivateKey']; + } + if (isset($map['ServCert'])) { + $model->servCert = $map['ServCert']; + } + if (isset($map['CertName'])) { + $model->certName = $map['CertName']; + } + if (isset($map['Passphrase'])) { + $model->passphrase = $map['Passphrase']; + } + if (isset($map['CertId'])) { + $model->certId = $map['CertId']; + } + if (isset($map['Ask'])) { + $model->ask = $map['Ask']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeDomainUsageDataRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeDomainUsageDataRequest.php new file mode 100644 index 000000000..1b130d045 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeDomainUsageDataRequest.php @@ -0,0 +1,143 @@ + 'Area', + 'dataProtocol' => 'DataProtocol', + 'domainName' => 'DomainName', + 'endTime' => 'EndTime', + 'field' => 'Field', + 'interval' => 'Interval', + 'ownerId' => 'OwnerId', + 'startTime' => 'StartTime', + 'type' => 'Type', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->area) { + $res['Area'] = $this->area; + } + if (null !== $this->dataProtocol) { + $res['DataProtocol'] = $this->dataProtocol; + } + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->endTime) { + $res['EndTime'] = $this->endTime; + } + if (null !== $this->field) { + $res['Field'] = $this->field; + } + if (null !== $this->interval) { + $res['Interval'] = $this->interval; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->startTime) { + $res['StartTime'] = $this->startTime; + } + if (null !== $this->type) { + $res['Type'] = $this->type; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeDomainUsageDataRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Area'])) { + $model->area = $map['Area']; + } + if (isset($map['DataProtocol'])) { + $model->dataProtocol = $map['DataProtocol']; + } + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['EndTime'])) { + $model->endTime = $map['EndTime']; + } + if (isset($map['Field'])) { + $model->field = $map['Field']; + } + if (isset($map['Interval'])) { + $model->interval = $map['Interval']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['StartTime'])) { + $model->startTime = $map['StartTime']; + } + if (isset($map['Type'])) { + $model->type = $map['Type']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeDomainUsageDataResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeDomainUsageDataResponse.php new file mode 100644 index 000000000..2a45e0ce4 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeDomainUsageDataResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeDomainUsageDataResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DescribeDomainUsageDataResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeDomainUsageDataResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeDomainUsageDataResponseBody.php new file mode 100644 index 000000000..f72537f88 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeDomainUsageDataResponseBody.php @@ -0,0 +1,132 @@ + 'Area', + 'dataInterval' => 'DataInterval', + 'domainName' => 'DomainName', + 'endTime' => 'EndTime', + 'requestId' => 'RequestId', + 'startTime' => 'StartTime', + 'type' => 'Type', + 'usageDataPerInterval' => 'UsageDataPerInterval', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->area) { + $res['Area'] = $this->area; + } + if (null !== $this->dataInterval) { + $res['DataInterval'] = $this->dataInterval; + } + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->endTime) { + $res['EndTime'] = $this->endTime; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->startTime) { + $res['StartTime'] = $this->startTime; + } + if (null !== $this->type) { + $res['Type'] = $this->type; + } + if (null !== $this->usageDataPerInterval) { + $res['UsageDataPerInterval'] = null !== $this->usageDataPerInterval ? $this->usageDataPerInterval->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeDomainUsageDataResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Area'])) { + $model->area = $map['Area']; + } + if (isset($map['DataInterval'])) { + $model->dataInterval = $map['DataInterval']; + } + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['EndTime'])) { + $model->endTime = $map['EndTime']; + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['StartTime'])) { + $model->startTime = $map['StartTime']; + } + if (isset($map['Type'])) { + $model->type = $map['Type']; + } + if (isset($map['UsageDataPerInterval'])) { + $model->usageDataPerInterval = usageDataPerInterval::fromMap($map['UsageDataPerInterval']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeDomainUsageDataResponseBody/usageDataPerInterval.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeDomainUsageDataResponseBody/usageDataPerInterval.php new file mode 100644 index 000000000..7741119cb --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeDomainUsageDataResponseBody/usageDataPerInterval.php @@ -0,0 +1,60 @@ + 'DataModule', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->dataModule) { + $res['DataModule'] = []; + if (null !== $this->dataModule && \is_array($this->dataModule)) { + $n = 0; + foreach ($this->dataModule as $item) { + $res['DataModule'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return usageDataPerInterval + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DataModule'])) { + if (!empty($map['DataModule'])) { + $model->dataModule = []; + $n = 0; + foreach ($map['DataModule'] as $item) { + $model->dataModule[$n++] = null !== $item ? dataModule::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeDomainUsageDataResponseBody/usageDataPerInterval/dataModule.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeDomainUsageDataResponseBody/usageDataPerInterval/dataModule.php new file mode 100644 index 000000000..4c57f06fd --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeDomainUsageDataResponseBody/usageDataPerInterval/dataModule.php @@ -0,0 +1,59 @@ + 'TimeStamp', + 'value' => 'Value', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->timeStamp) { + $res['TimeStamp'] = $this->timeStamp; + } + if (null !== $this->value) { + $res['Value'] = $this->value; + } + + return $res; + } + + /** + * @param array $map + * + * @return dataModule + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['TimeStamp'])) { + $model->timeStamp = $map['TimeStamp']; + } + if (isset($map['Value'])) { + $model->value = $map['Value']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeDomainWithIntegrityRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeDomainWithIntegrityRequest.php new file mode 100644 index 000000000..ef75c1e62 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeDomainWithIntegrityRequest.php @@ -0,0 +1,83 @@ + 'EndTime', + 'integrity' => 'Integrity', + 'ownerId' => 'OwnerId', + 'startTime' => 'StartTime', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->endTime) { + $res['EndTime'] = $this->endTime; + } + if (null !== $this->integrity) { + $res['Integrity'] = $this->integrity; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->startTime) { + $res['StartTime'] = $this->startTime; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeDomainWithIntegrityRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['EndTime'])) { + $model->endTime = $map['EndTime']; + } + if (isset($map['Integrity'])) { + $model->integrity = $map['Integrity']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['StartTime'])) { + $model->startTime = $map['StartTime']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeDomainWithIntegrityResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeDomainWithIntegrityResponse.php new file mode 100644 index 000000000..5a7640020 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeDomainWithIntegrityResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeDomainWithIntegrityResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DescribeDomainWithIntegrityResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeDomainWithIntegrityResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeDomainWithIntegrityResponseBody.php new file mode 100644 index 000000000..9e0d0dcc2 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeDomainWithIntegrityResponseBody.php @@ -0,0 +1,72 @@ + 'Content', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->content) { + $res['Content'] = []; + if (null !== $this->content && \is_array($this->content)) { + $n = 0; + foreach ($this->content as $item) { + $res['Content'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeDomainWithIntegrityResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Content'])) { + if (!empty($map['Content'])) { + $model->content = []; + $n = 0; + foreach ($map['Content'] as $item) { + $model->content[$n++] = null !== $item ? content::fromMap($item) : $item; + } + } + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeDomainWithIntegrityResponseBody/content.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeDomainWithIntegrityResponseBody/content.php new file mode 100644 index 000000000..6097bd3da --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeDomainWithIntegrityResponseBody/content.php @@ -0,0 +1,75 @@ + 'Columns', + 'name' => 'Name', + 'points' => 'Points', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->columns) { + $res['Columns'] = $this->columns; + } + if (null !== $this->name) { + $res['Name'] = $this->name; + } + if (null !== $this->points) { + $res['Points'] = $this->points; + } + + return $res; + } + + /** + * @param array $map + * + * @return content + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Columns'])) { + if (!empty($map['Columns'])) { + $model->columns = $map['Columns']; + } + } + if (isset($map['Name'])) { + $model->name = $map['Name']; + } + if (isset($map['Points'])) { + if (!empty($map['Points'])) { + $model->points = $map['Points']; + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeForbidPushStreamRoomListRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeForbidPushStreamRoomListRequest.php new file mode 100644 index 000000000..5e26a9785 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeForbidPushStreamRoomListRequest.php @@ -0,0 +1,95 @@ + 'AppId', + 'order' => 'Order', + 'ownerId' => 'OwnerId', + 'pageNum' => 'PageNum', + 'pageSize' => 'PageSize', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->appId) { + $res['AppId'] = $this->appId; + } + if (null !== $this->order) { + $res['Order'] = $this->order; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->pageNum) { + $res['PageNum'] = $this->pageNum; + } + if (null !== $this->pageSize) { + $res['PageSize'] = $this->pageSize; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeForbidPushStreamRoomListRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppId'])) { + $model->appId = $map['AppId']; + } + if (isset($map['Order'])) { + $model->order = $map['Order']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['PageNum'])) { + $model->pageNum = $map['PageNum']; + } + if (isset($map['PageSize'])) { + $model->pageSize = $map['PageSize']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeForbidPushStreamRoomListResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeForbidPushStreamRoomListResponse.php new file mode 100644 index 000000000..5d3ef97d7 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeForbidPushStreamRoomListResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeForbidPushStreamRoomListResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DescribeForbidPushStreamRoomListResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeForbidPushStreamRoomListResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeForbidPushStreamRoomListResponseBody.php new file mode 100644 index 000000000..6f0d1bac9 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeForbidPushStreamRoomListResponseBody.php @@ -0,0 +1,96 @@ + 'RequestId', + 'roomList' => 'RoomList', + 'totalNum' => 'TotalNum', + 'totalPage' => 'TotalPage', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->roomList) { + $res['RoomList'] = []; + if (null !== $this->roomList && \is_array($this->roomList)) { + $n = 0; + foreach ($this->roomList as $item) { + $res['RoomList'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + if (null !== $this->totalNum) { + $res['TotalNum'] = $this->totalNum; + } + if (null !== $this->totalPage) { + $res['TotalPage'] = $this->totalPage; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeForbidPushStreamRoomListResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['RoomList'])) { + if (!empty($map['RoomList'])) { + $model->roomList = []; + $n = 0; + foreach ($map['RoomList'] as $item) { + $model->roomList[$n++] = null !== $item ? roomList::fromMap($item) : $item; + } + } + } + if (isset($map['TotalNum'])) { + $model->totalNum = $map['TotalNum']; + } + if (isset($map['TotalPage'])) { + $model->totalPage = $map['TotalPage']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeForbidPushStreamRoomListResponseBody/roomList.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeForbidPushStreamRoomListResponseBody/roomList.php new file mode 100644 index 000000000..4514f02be --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeForbidPushStreamRoomListResponseBody/roomList.php @@ -0,0 +1,83 @@ + 'AnchorId', + 'opEndTime' => 'OpEndTime', + 'opStartTime' => 'OpStartTime', + 'roomId' => 'RoomId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->anchorId) { + $res['AnchorId'] = $this->anchorId; + } + if (null !== $this->opEndTime) { + $res['OpEndTime'] = $this->opEndTime; + } + if (null !== $this->opStartTime) { + $res['OpStartTime'] = $this->opStartTime; + } + if (null !== $this->roomId) { + $res['RoomId'] = $this->roomId; + } + + return $res; + } + + /** + * @param array $map + * + * @return roomList + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AnchorId'])) { + $model->anchorId = $map['AnchorId']; + } + if (isset($map['OpEndTime'])) { + $model->opEndTime = $map['OpEndTime']; + } + if (isset($map['OpStartTime'])) { + $model->opStartTime = $map['OpStartTime']; + } + if (isset($map['RoomId'])) { + $model->roomId = $map['RoomId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeHlsLiveStreamRealTimeBpsDataRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeHlsLiveStreamRealTimeBpsDataRequest.php new file mode 100644 index 000000000..efa10ec65 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeHlsLiveStreamRealTimeBpsDataRequest.php @@ -0,0 +1,71 @@ + 'DomainName', + 'ownerId' => 'OwnerId', + 'time' => 'Time', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->time) { + $res['Time'] = $this->time; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeHlsLiveStreamRealTimeBpsDataRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['Time'])) { + $model->time = $map['Time']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeHlsLiveStreamRealTimeBpsDataResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeHlsLiveStreamRealTimeBpsDataResponse.php new file mode 100644 index 000000000..4472cd5c2 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeHlsLiveStreamRealTimeBpsDataResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeHlsLiveStreamRealTimeBpsDataResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DescribeHlsLiveStreamRealTimeBpsDataResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeHlsLiveStreamRealTimeBpsDataResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeHlsLiveStreamRealTimeBpsDataResponseBody.php new file mode 100644 index 000000000..f41378bdc --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeHlsLiveStreamRealTimeBpsDataResponseBody.php @@ -0,0 +1,84 @@ + 'RequestId', + 'time' => 'Time', + 'usageData' => 'UsageData', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->time) { + $res['Time'] = $this->time; + } + if (null !== $this->usageData) { + $res['UsageData'] = []; + if (null !== $this->usageData && \is_array($this->usageData)) { + $n = 0; + foreach ($this->usageData as $item) { + $res['UsageData'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeHlsLiveStreamRealTimeBpsDataResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['Time'])) { + $model->time = $map['Time']; + } + if (isset($map['UsageData'])) { + if (!empty($map['UsageData'])) { + $model->usageData = []; + $n = 0; + foreach ($map['UsageData'] as $item) { + $model->usageData[$n++] = null !== $item ? usageData::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeHlsLiveStreamRealTimeBpsDataResponseBody/usageData.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeHlsLiveStreamRealTimeBpsDataResponseBody/usageData.php new file mode 100644 index 000000000..0f972b93f --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeHlsLiveStreamRealTimeBpsDataResponseBody/usageData.php @@ -0,0 +1,72 @@ + 'DomainName', + 'streamInfos' => 'StreamInfos', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->streamInfos) { + $res['StreamInfos'] = []; + if (null !== $this->streamInfos && \is_array($this->streamInfos)) { + $n = 0; + foreach ($this->streamInfos as $item) { + $res['StreamInfos'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return usageData + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['StreamInfos'])) { + if (!empty($map['StreamInfos'])) { + $model->streamInfos = []; + $n = 0; + foreach ($map['StreamInfos'] as $item) { + $model->streamInfos[$n++] = null !== $item ? streamInfos::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeHlsLiveStreamRealTimeBpsDataResponseBody/usageData/streamInfos.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeHlsLiveStreamRealTimeBpsDataResponseBody/usageData/streamInfos.php new file mode 100644 index 000000000..10ded95fc --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeHlsLiveStreamRealTimeBpsDataResponseBody/usageData/streamInfos.php @@ -0,0 +1,72 @@ + 'Infos', + 'streamName' => 'StreamName', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->infos) { + $res['Infos'] = []; + if (null !== $this->infos && \is_array($this->infos)) { + $n = 0; + foreach ($this->infos as $item) { + $res['Infos'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + if (null !== $this->streamName) { + $res['StreamName'] = $this->streamName; + } + + return $res; + } + + /** + * @param array $map + * + * @return streamInfos + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Infos'])) { + if (!empty($map['Infos'])) { + $model->infos = []; + $n = 0; + foreach ($map['Infos'] as $item) { + $model->infos[$n++] = null !== $item ? infos::fromMap($item) : $item; + } + } + } + if (isset($map['StreamName'])) { + $model->streamName = $map['StreamName']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeHlsLiveStreamRealTimeBpsDataResponseBody/usageData/streamInfos/infos.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeHlsLiveStreamRealTimeBpsDataResponseBody/usageData/streamInfos/infos.php new file mode 100644 index 000000000..7aed01028 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeHlsLiveStreamRealTimeBpsDataResponseBody/usageData/streamInfos/infos.php @@ -0,0 +1,71 @@ + 'DownFlow', + 'online' => 'Online', + 'rate' => 'Rate', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->downFlow) { + $res['DownFlow'] = $this->downFlow; + } + if (null !== $this->online) { + $res['Online'] = $this->online; + } + if (null !== $this->rate) { + $res['Rate'] = $this->rate; + } + + return $res; + } + + /** + * @param array $map + * + * @return infos + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DownFlow'])) { + $model->downFlow = $map['DownFlow']; + } + if (isset($map['Online'])) { + $model->online = $map['Online']; + } + if (isset($map['Rate'])) { + $model->rate = $map['Rate']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeHtmlResourceRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeHtmlResourceRequest.php new file mode 100644 index 000000000..2f527fb80 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeHtmlResourceRequest.php @@ -0,0 +1,83 @@ + 'OwnerId', + 'htmlResourceId' => 'HtmlResourceId', + 'htmlUrl' => 'htmlUrl', + 'casterId' => 'CasterId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->htmlResourceId) { + $res['HtmlResourceId'] = $this->htmlResourceId; + } + if (null !== $this->htmlUrl) { + $res['htmlUrl'] = $this->htmlUrl; + } + if (null !== $this->casterId) { + $res['CasterId'] = $this->casterId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeHtmlResourceRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['HtmlResourceId'])) { + $model->htmlResourceId = $map['HtmlResourceId']; + } + if (isset($map['htmlUrl'])) { + $model->htmlUrl = $map['htmlUrl']; + } + if (isset($map['CasterId'])) { + $model->casterId = $map['CasterId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeHtmlResourceResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeHtmlResourceResponse.php new file mode 100644 index 000000000..1d1f2e02f --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeHtmlResourceResponse.php @@ -0,0 +1,61 @@ + 'headers', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeHtmlResourceResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['body'])) { + $model->body = DescribeHtmlResourceResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeHtmlResourceResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeHtmlResourceResponseBody.php new file mode 100644 index 000000000..ee4076769 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeHtmlResourceResponseBody.php @@ -0,0 +1,60 @@ + 'RequestId', + 'htmlResource' => 'HtmlResource', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->htmlResource) { + $res['HtmlResource'] = null !== $this->htmlResource ? $this->htmlResource->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeHtmlResourceResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['HtmlResource'])) { + $model->htmlResource = htmlResource::fromMap($map['HtmlResource']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeHtmlResourceResponseBody/htmlResource.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeHtmlResourceResponseBody/htmlResource.php new file mode 100644 index 000000000..5aeb2eb85 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeHtmlResourceResponseBody/htmlResource.php @@ -0,0 +1,107 @@ + 'HtmlUrl', + 'casterId' => 'CasterId', + 'streamId' => 'StreamId', + 'config' => 'Config', + 'htmlResourceId' => 'HtmlResourceId', + 'htmlContent' => 'HtmlContent', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->htmlUrl) { + $res['HtmlUrl'] = $this->htmlUrl; + } + if (null !== $this->casterId) { + $res['CasterId'] = $this->casterId; + } + if (null !== $this->streamId) { + $res['StreamId'] = $this->streamId; + } + if (null !== $this->config) { + $res['Config'] = $this->config; + } + if (null !== $this->htmlResourceId) { + $res['HtmlResourceId'] = $this->htmlResourceId; + } + if (null !== $this->htmlContent) { + $res['HtmlContent'] = $this->htmlContent; + } + + return $res; + } + + /** + * @param array $map + * + * @return htmlResource + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['HtmlUrl'])) { + $model->htmlUrl = $map['HtmlUrl']; + } + if (isset($map['CasterId'])) { + $model->casterId = $map['CasterId']; + } + if (isset($map['StreamId'])) { + $model->streamId = $map['StreamId']; + } + if (isset($map['Config'])) { + $model->config = $map['Config']; + } + if (isset($map['HtmlResourceId'])) { + $model->htmlResourceId = $map['HtmlResourceId']; + } + if (isset($map['HtmlContent'])) { + $model->htmlContent = $map['HtmlContent']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveAsrConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveAsrConfigRequest.php new file mode 100644 index 000000000..c1d044d72 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveAsrConfigRequest.php @@ -0,0 +1,83 @@ + 'OwnerId', + 'domainName' => 'DomainName', + 'appName' => 'AppName', + 'streamName' => 'StreamName', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->appName) { + $res['AppName'] = $this->appName; + } + if (null !== $this->streamName) { + $res['StreamName'] = $this->streamName; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveAsrConfigRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['AppName'])) { + $model->appName = $map['AppName']; + } + if (isset($map['StreamName'])) { + $model->streamName = $map['StreamName']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveAsrConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveAsrConfigResponse.php new file mode 100644 index 000000000..a6c8155e6 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveAsrConfigResponse.php @@ -0,0 +1,61 @@ + 'headers', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveAsrConfigResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['body'])) { + $model->body = DescribeLiveAsrConfigResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveAsrConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveAsrConfigResponseBody.php new file mode 100644 index 000000000..b7da67d48 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveAsrConfigResponseBody.php @@ -0,0 +1,60 @@ + 'RequestId', + 'liveAsrConfig' => 'LiveAsrConfig', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->liveAsrConfig) { + $res['LiveAsrConfig'] = null !== $this->liveAsrConfig ? $this->liveAsrConfig->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveAsrConfigResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['LiveAsrConfig'])) { + $model->liveAsrConfig = liveAsrConfig::fromMap($map['LiveAsrConfig']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveAsrConfigResponseBody/liveAsrConfig.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveAsrConfigResponseBody/liveAsrConfig.php new file mode 100644 index 000000000..23ec69a29 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveAsrConfigResponseBody/liveAsrConfig.php @@ -0,0 +1,60 @@ + 'LiveAsrConfigList', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->liveAsrConfigList) { + $res['LiveAsrConfigList'] = []; + if (null !== $this->liveAsrConfigList && \is_array($this->liveAsrConfigList)) { + $n = 0; + foreach ($this->liveAsrConfigList as $item) { + $res['LiveAsrConfigList'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return liveAsrConfig + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['LiveAsrConfigList'])) { + if (!empty($map['LiveAsrConfigList'])) { + $model->liveAsrConfigList = []; + $n = 0; + foreach ($map['LiveAsrConfigList'] as $item) { + $model->liveAsrConfigList[$n++] = null !== $item ? liveAsrConfigList::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveAsrConfigResponseBody/liveAsrConfig/liveAsrConfigList.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveAsrConfigResponseBody/liveAsrConfig/liveAsrConfigList.php new file mode 100644 index 000000000..4c4bae138 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveAsrConfigResponseBody/liveAsrConfig/liveAsrConfigList.php @@ -0,0 +1,119 @@ + 'AppName', + 'mnsRegion' => 'MnsRegion', + 'streamName' => 'StreamName', + 'httpCallbackURL' => 'HttpCallbackURL', + 'domainName' => 'DomainName', + 'period' => 'Period', + 'mnsTopic' => 'MnsTopic', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->appName) { + $res['AppName'] = $this->appName; + } + if (null !== $this->mnsRegion) { + $res['MnsRegion'] = $this->mnsRegion; + } + if (null !== $this->streamName) { + $res['StreamName'] = $this->streamName; + } + if (null !== $this->httpCallbackURL) { + $res['HttpCallbackURL'] = $this->httpCallbackURL; + } + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->period) { + $res['Period'] = $this->period; + } + if (null !== $this->mnsTopic) { + $res['MnsTopic'] = $this->mnsTopic; + } + + return $res; + } + + /** + * @param array $map + * + * @return liveAsrConfigList + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppName'])) { + $model->appName = $map['AppName']; + } + if (isset($map['MnsRegion'])) { + $model->mnsRegion = $map['MnsRegion']; + } + if (isset($map['StreamName'])) { + $model->streamName = $map['StreamName']; + } + if (isset($map['HttpCallbackURL'])) { + $model->httpCallbackURL = $map['HttpCallbackURL']; + } + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['Period'])) { + $model->period = $map['Period']; + } + if (isset($map['MnsTopic'])) { + $model->mnsTopic = $map['MnsTopic']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveAudioAuditConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveAudioAuditConfigRequest.php new file mode 100644 index 000000000..0d38fb1ae --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveAudioAuditConfigRequest.php @@ -0,0 +1,83 @@ + 'AppName', + 'domainName' => 'DomainName', + 'ownerId' => 'OwnerId', + 'streamName' => 'StreamName', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->appName) { + $res['AppName'] = $this->appName; + } + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->streamName) { + $res['StreamName'] = $this->streamName; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveAudioAuditConfigRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppName'])) { + $model->appName = $map['AppName']; + } + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['StreamName'])) { + $model->streamName = $map['StreamName']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveAudioAuditConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveAudioAuditConfigResponse.php new file mode 100644 index 000000000..42bb5ff6a --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveAudioAuditConfigResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveAudioAuditConfigResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DescribeLiveAudioAuditConfigResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveAudioAuditConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveAudioAuditConfigResponseBody.php new file mode 100644 index 000000000..db76c361b --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveAudioAuditConfigResponseBody.php @@ -0,0 +1,60 @@ + 'LiveAudioAuditConfigList', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->liveAudioAuditConfigList) { + $res['LiveAudioAuditConfigList'] = null !== $this->liveAudioAuditConfigList ? $this->liveAudioAuditConfigList->toMap() : null; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveAudioAuditConfigResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['LiveAudioAuditConfigList'])) { + $model->liveAudioAuditConfigList = liveAudioAuditConfigList::fromMap($map['LiveAudioAuditConfigList']); + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveAudioAuditConfigResponseBody/liveAudioAuditConfigList.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveAudioAuditConfigResponseBody/liveAudioAuditConfigList.php new file mode 100644 index 000000000..8a249ef16 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveAudioAuditConfigResponseBody/liveAudioAuditConfigList.php @@ -0,0 +1,60 @@ + 'LiveAudioAuditConfig', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->liveAudioAuditConfig) { + $res['LiveAudioAuditConfig'] = []; + if (null !== $this->liveAudioAuditConfig && \is_array($this->liveAudioAuditConfig)) { + $n = 0; + foreach ($this->liveAudioAuditConfig as $item) { + $res['LiveAudioAuditConfig'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return liveAudioAuditConfigList + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['LiveAudioAuditConfig'])) { + if (!empty($map['LiveAudioAuditConfig'])) { + $model->liveAudioAuditConfig = []; + $n = 0; + foreach ($map['LiveAudioAuditConfig'] as $item) { + $model->liveAudioAuditConfig[$n++] = null !== $item ? liveAudioAuditConfig::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveAudioAuditConfigResponseBody/liveAudioAuditConfigList/liveAudioAuditConfig.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveAudioAuditConfigResponseBody/liveAudioAuditConfigList/liveAudioAuditConfig.php new file mode 100644 index 000000000..098c754ee --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveAudioAuditConfigResponseBody/liveAudioAuditConfigList/liveAudioAuditConfig.php @@ -0,0 +1,96 @@ + 'AppName', + 'bizType' => 'BizType', + 'domainName' => 'DomainName', + 'scenes' => 'Scenes', + 'streamName' => 'StreamName', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->appName) { + $res['AppName'] = $this->appName; + } + if (null !== $this->bizType) { + $res['BizType'] = $this->bizType; + } + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->scenes) { + $res['Scenes'] = null !== $this->scenes ? $this->scenes->toMap() : null; + } + if (null !== $this->streamName) { + $res['StreamName'] = $this->streamName; + } + + return $res; + } + + /** + * @param array $map + * + * @return liveAudioAuditConfig + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppName'])) { + $model->appName = $map['AppName']; + } + if (isset($map['BizType'])) { + $model->bizType = $map['BizType']; + } + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['Scenes'])) { + $model->scenes = scenes::fromMap($map['Scenes']); + } + if (isset($map['StreamName'])) { + $model->streamName = $map['StreamName']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveAudioAuditConfigResponseBody/liveAudioAuditConfigList/liveAudioAuditConfig/scenes.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveAudioAuditConfigResponseBody/liveAudioAuditConfigList/liveAudioAuditConfig/scenes.php new file mode 100644 index 000000000..2b5dadcd3 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveAudioAuditConfigResponseBody/liveAudioAuditConfigList/liveAudioAuditConfig/scenes.php @@ -0,0 +1,49 @@ + 'scene', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->scene) { + $res['scene'] = $this->scene; + } + + return $res; + } + + /** + * @param array $map + * + * @return scenes + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['scene'])) { + if (!empty($map['scene'])) { + $model->scene = $map['scene']; + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveAudioAuditNotifyConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveAudioAuditNotifyConfigRequest.php new file mode 100644 index 000000000..d63356fd7 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveAudioAuditNotifyConfigRequest.php @@ -0,0 +1,59 @@ + 'DomainName', + 'ownerId' => 'OwnerId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveAudioAuditNotifyConfigRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveAudioAuditNotifyConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveAudioAuditNotifyConfigResponse.php new file mode 100644 index 000000000..2d070b334 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveAudioAuditNotifyConfigResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveAudioAuditNotifyConfigResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DescribeLiveAudioAuditNotifyConfigResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveAudioAuditNotifyConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveAudioAuditNotifyConfigResponseBody.php new file mode 100644 index 000000000..2ec917f6a --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveAudioAuditNotifyConfigResponseBody.php @@ -0,0 +1,60 @@ + 'LiveAudioAuditNotifyConfigList', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->liveAudioAuditNotifyConfigList) { + $res['LiveAudioAuditNotifyConfigList'] = null !== $this->liveAudioAuditNotifyConfigList ? $this->liveAudioAuditNotifyConfigList->toMap() : null; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveAudioAuditNotifyConfigResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['LiveAudioAuditNotifyConfigList'])) { + $model->liveAudioAuditNotifyConfigList = liveAudioAuditNotifyConfigList::fromMap($map['LiveAudioAuditNotifyConfigList']); + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveAudioAuditNotifyConfigResponseBody/liveAudioAuditNotifyConfigList.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveAudioAuditNotifyConfigResponseBody/liveAudioAuditNotifyConfigList.php new file mode 100644 index 000000000..dde714df3 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveAudioAuditNotifyConfigResponseBody/liveAudioAuditNotifyConfigList.php @@ -0,0 +1,60 @@ + 'LiveAudioAuditNotifyConfig', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->liveAudioAuditNotifyConfig) { + $res['LiveAudioAuditNotifyConfig'] = []; + if (null !== $this->liveAudioAuditNotifyConfig && \is_array($this->liveAudioAuditNotifyConfig)) { + $n = 0; + foreach ($this->liveAudioAuditNotifyConfig as $item) { + $res['LiveAudioAuditNotifyConfig'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return liveAudioAuditNotifyConfigList + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['LiveAudioAuditNotifyConfig'])) { + if (!empty($map['LiveAudioAuditNotifyConfig'])) { + $model->liveAudioAuditNotifyConfig = []; + $n = 0; + foreach ($map['LiveAudioAuditNotifyConfig'] as $item) { + $model->liveAudioAuditNotifyConfig[$n++] = null !== $item ? liveAudioAuditNotifyConfig::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveAudioAuditNotifyConfigResponseBody/liveAudioAuditNotifyConfigList/liveAudioAuditNotifyConfig.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveAudioAuditNotifyConfigResponseBody/liveAudioAuditNotifyConfigList/liveAudioAuditNotifyConfig.php new file mode 100644 index 000000000..a8cca0ce5 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveAudioAuditNotifyConfigResponseBody/liveAudioAuditNotifyConfigList/liveAudioAuditNotifyConfig.php @@ -0,0 +1,71 @@ + 'Callback', + 'callbackTemplate' => 'CallbackTemplate', + 'domainName' => 'DomainName', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->callback) { + $res['Callback'] = $this->callback; + } + if (null !== $this->callbackTemplate) { + $res['CallbackTemplate'] = $this->callbackTemplate; + } + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + + return $res; + } + + /** + * @param array $map + * + * @return liveAudioAuditNotifyConfig + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Callback'])) { + $model->callback = $map['Callback']; + } + if (isset($map['CallbackTemplate'])) { + $model->callbackTemplate = $map['CallbackTemplate']; + } + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveCertificateDetailRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveCertificateDetailRequest.php new file mode 100644 index 000000000..8e46d9862 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveCertificateDetailRequest.php @@ -0,0 +1,71 @@ + 'CertName', + 'ownerId' => 'OwnerId', + 'securityToken' => 'SecurityToken', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->certName) { + $res['CertName'] = $this->certName; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->securityToken) { + $res['SecurityToken'] = $this->securityToken; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveCertificateDetailRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CertName'])) { + $model->certName = $map['CertName']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['SecurityToken'])) { + $model->securityToken = $map['SecurityToken']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveCertificateDetailResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveCertificateDetailResponse.php new file mode 100644 index 000000000..7442a59cd --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveCertificateDetailResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveCertificateDetailResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DescribeLiveCertificateDetailResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveCertificateDetailResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveCertificateDetailResponseBody.php new file mode 100644 index 000000000..9425bfe80 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveCertificateDetailResponseBody.php @@ -0,0 +1,83 @@ + 'Cert', + 'certId' => 'CertId', + 'certName' => 'CertName', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->cert) { + $res['Cert'] = $this->cert; + } + if (null !== $this->certId) { + $res['CertId'] = $this->certId; + } + if (null !== $this->certName) { + $res['CertName'] = $this->certName; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveCertificateDetailResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Cert'])) { + $model->cert = $map['Cert']; + } + if (isset($map['CertId'])) { + $model->certId = $map['CertId']; + } + if (isset($map['CertName'])) { + $model->certName = $map['CertName']; + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveCertificateListRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveCertificateListRequest.php new file mode 100644 index 000000000..630772422 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveCertificateListRequest.php @@ -0,0 +1,71 @@ + 'DomainName', + 'ownerId' => 'OwnerId', + 'securityToken' => 'SecurityToken', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->securityToken) { + $res['SecurityToken'] = $this->securityToken; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveCertificateListRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['SecurityToken'])) { + $model->securityToken = $map['SecurityToken']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveCertificateListResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveCertificateListResponse.php new file mode 100644 index 000000000..ae25532c5 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveCertificateListResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveCertificateListResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DescribeLiveCertificateListResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveCertificateListResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveCertificateListResponseBody.php new file mode 100644 index 000000000..04051d33c --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveCertificateListResponseBody.php @@ -0,0 +1,60 @@ + 'CertificateListModel', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->certificateListModel) { + $res['CertificateListModel'] = null !== $this->certificateListModel ? $this->certificateListModel->toMap() : null; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveCertificateListResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CertificateListModel'])) { + $model->certificateListModel = certificateListModel::fromMap($map['CertificateListModel']); + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveCertificateListResponseBody/certificateListModel.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveCertificateListResponseBody/certificateListModel.php new file mode 100644 index 000000000..0cf2e4d8d --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveCertificateListResponseBody/certificateListModel.php @@ -0,0 +1,60 @@ + 'CertList', + 'count' => 'Count', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->certList) { + $res['CertList'] = null !== $this->certList ? $this->certList->toMap() : null; + } + if (null !== $this->count) { + $res['Count'] = $this->count; + } + + return $res; + } + + /** + * @param array $map + * + * @return certificateListModel + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CertList'])) { + $model->certList = certList::fromMap($map['CertList']); + } + if (isset($map['Count'])) { + $model->count = $map['Count']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveCertificateListResponseBody/certificateListModel/certList.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveCertificateListResponseBody/certificateListModel/certList.php new file mode 100644 index 000000000..5bc9d55eb --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveCertificateListResponseBody/certificateListModel/certList.php @@ -0,0 +1,60 @@ + 'Cert', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->cert) { + $res['Cert'] = []; + if (null !== $this->cert && \is_array($this->cert)) { + $n = 0; + foreach ($this->cert as $item) { + $res['Cert'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return certList + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Cert'])) { + if (!empty($map['Cert'])) { + $model->cert = []; + $n = 0; + foreach ($map['Cert'] as $item) { + $model->cert[$n++] = null !== $item ? cert::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveCertificateListResponseBody/certificateListModel/certList/cert.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveCertificateListResponseBody/certificateListModel/certList/cert.php new file mode 100644 index 000000000..02b6edb77 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveCertificateListResponseBody/certificateListModel/certList/cert.php @@ -0,0 +1,107 @@ + 'CertId', + 'certName' => 'CertName', + 'common' => 'Common', + 'fingerprint' => 'Fingerprint', + 'issuer' => 'Issuer', + 'lastTime' => 'LastTime', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->certId) { + $res['CertId'] = $this->certId; + } + if (null !== $this->certName) { + $res['CertName'] = $this->certName; + } + if (null !== $this->common) { + $res['Common'] = $this->common; + } + if (null !== $this->fingerprint) { + $res['Fingerprint'] = $this->fingerprint; + } + if (null !== $this->issuer) { + $res['Issuer'] = $this->issuer; + } + if (null !== $this->lastTime) { + $res['LastTime'] = $this->lastTime; + } + + return $res; + } + + /** + * @param array $map + * + * @return cert + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CertId'])) { + $model->certId = $map['CertId']; + } + if (isset($map['CertName'])) { + $model->certName = $map['CertName']; + } + if (isset($map['Common'])) { + $model->common = $map['Common']; + } + if (isset($map['Fingerprint'])) { + $model->fingerprint = $map['Fingerprint']; + } + if (isset($map['Issuer'])) { + $model->issuer = $map['Issuer']; + } + if (isset($map['LastTime'])) { + $model->lastTime = $map['LastTime']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDetectNotifyConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDetectNotifyConfigRequest.php new file mode 100644 index 000000000..354846f04 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDetectNotifyConfigRequest.php @@ -0,0 +1,71 @@ + 'DomainName', + 'ownerId' => 'OwnerId', + 'securityToken' => 'SecurityToken', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->securityToken) { + $res['SecurityToken'] = $this->securityToken; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveDetectNotifyConfigRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['SecurityToken'])) { + $model->securityToken = $map['SecurityToken']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDetectNotifyConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDetectNotifyConfigResponse.php new file mode 100644 index 000000000..87683f60c --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDetectNotifyConfigResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveDetectNotifyConfigResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DescribeLiveDetectNotifyConfigResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDetectNotifyConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDetectNotifyConfigResponseBody.php new file mode 100644 index 000000000..b54f3444a --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDetectNotifyConfigResponseBody.php @@ -0,0 +1,60 @@ + 'LiveDetectNotifyConfig', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->liveDetectNotifyConfig) { + $res['LiveDetectNotifyConfig'] = null !== $this->liveDetectNotifyConfig ? $this->liveDetectNotifyConfig->toMap() : null; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveDetectNotifyConfigResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['LiveDetectNotifyConfig'])) { + $model->liveDetectNotifyConfig = liveDetectNotifyConfig::fromMap($map['LiveDetectNotifyConfig']); + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDetectNotifyConfigResponseBody/liveDetectNotifyConfig.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDetectNotifyConfigResponseBody/liveDetectNotifyConfig.php new file mode 100644 index 000000000..2e68d6e22 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDetectNotifyConfigResponseBody/liveDetectNotifyConfig.php @@ -0,0 +1,59 @@ + 'DomainName', + 'notifyUrl' => 'NotifyUrl', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->notifyUrl) { + $res['NotifyUrl'] = $this->notifyUrl; + } + + return $res; + } + + /** + * @param array $map + * + * @return liveDetectNotifyConfig + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['NotifyUrl'])) { + $model->notifyUrl = $map['NotifyUrl']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDetectPornDataRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDetectPornDataRequest.php new file mode 100644 index 000000000..0c46a7904 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDetectPornDataRequest.php @@ -0,0 +1,155 @@ + 'App', + 'domainName' => 'DomainName', + 'endTime' => 'EndTime', + 'fee' => 'Fee', + 'ownerId' => 'OwnerId', + 'region' => 'Region', + 'scene' => 'Scene', + 'splitBy' => 'SplitBy', + 'startTime' => 'StartTime', + 'stream' => 'Stream', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->app) { + $res['App'] = $this->app; + } + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->endTime) { + $res['EndTime'] = $this->endTime; + } + if (null !== $this->fee) { + $res['Fee'] = $this->fee; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->region) { + $res['Region'] = $this->region; + } + if (null !== $this->scene) { + $res['Scene'] = $this->scene; + } + if (null !== $this->splitBy) { + $res['SplitBy'] = $this->splitBy; + } + if (null !== $this->startTime) { + $res['StartTime'] = $this->startTime; + } + if (null !== $this->stream) { + $res['Stream'] = $this->stream; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveDetectPornDataRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['App'])) { + $model->app = $map['App']; + } + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['EndTime'])) { + $model->endTime = $map['EndTime']; + } + if (isset($map['Fee'])) { + $model->fee = $map['Fee']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['Region'])) { + $model->region = $map['Region']; + } + if (isset($map['Scene'])) { + $model->scene = $map['Scene']; + } + if (isset($map['SplitBy'])) { + $model->splitBy = $map['SplitBy']; + } + if (isset($map['StartTime'])) { + $model->startTime = $map['StartTime']; + } + if (isset($map['Stream'])) { + $model->stream = $map['Stream']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDetectPornDataResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDetectPornDataResponse.php new file mode 100644 index 000000000..5b0d55980 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDetectPornDataResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveDetectPornDataResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DescribeLiveDetectPornDataResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDetectPornDataResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDetectPornDataResponseBody.php new file mode 100644 index 000000000..12f79562b --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDetectPornDataResponseBody.php @@ -0,0 +1,60 @@ + 'DetectPornData', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->detectPornData) { + $res['DetectPornData'] = null !== $this->detectPornData ? $this->detectPornData->toMap() : null; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveDetectPornDataResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DetectPornData'])) { + $model->detectPornData = detectPornData::fromMap($map['DetectPornData']); + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDetectPornDataResponseBody/detectPornData.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDetectPornDataResponseBody/detectPornData.php new file mode 100644 index 000000000..ec71c2fad --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDetectPornDataResponseBody/detectPornData.php @@ -0,0 +1,60 @@ + 'DataModule', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->dataModule) { + $res['DataModule'] = []; + if (null !== $this->dataModule && \is_array($this->dataModule)) { + $n = 0; + foreach ($this->dataModule as $item) { + $res['DataModule'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return detectPornData + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DataModule'])) { + if (!empty($map['DataModule'])) { + $model->dataModule = []; + $n = 0; + foreach ($map['DataModule'] as $item) { + $model->dataModule[$n++] = null !== $item ? dataModule::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDetectPornDataResponseBody/detectPornData/dataModule.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDetectPornDataResponseBody/detectPornData/dataModule.php new file mode 100644 index 000000000..dd4b4ccda --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDetectPornDataResponseBody/detectPornData/dataModule.php @@ -0,0 +1,131 @@ + 'App', + 'count' => 'Count', + 'domain' => 'Domain', + 'fee' => 'Fee', + 'region' => 'Region', + 'scene' => 'Scene', + 'stream' => 'Stream', + 'timeStamp' => 'TimeStamp', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->app) { + $res['App'] = $this->app; + } + if (null !== $this->count) { + $res['Count'] = $this->count; + } + if (null !== $this->domain) { + $res['Domain'] = $this->domain; + } + if (null !== $this->fee) { + $res['Fee'] = $this->fee; + } + if (null !== $this->region) { + $res['Region'] = $this->region; + } + if (null !== $this->scene) { + $res['Scene'] = $this->scene; + } + if (null !== $this->stream) { + $res['Stream'] = $this->stream; + } + if (null !== $this->timeStamp) { + $res['TimeStamp'] = $this->timeStamp; + } + + return $res; + } + + /** + * @param array $map + * + * @return dataModule + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['App'])) { + $model->app = $map['App']; + } + if (isset($map['Count'])) { + $model->count = $map['Count']; + } + if (isset($map['Domain'])) { + $model->domain = $map['Domain']; + } + if (isset($map['Fee'])) { + $model->fee = $map['Fee']; + } + if (isset($map['Region'])) { + $model->region = $map['Region']; + } + if (isset($map['Scene'])) { + $model->scene = $map['Scene']; + } + if (isset($map['Stream'])) { + $model->stream = $map['Stream']; + } + if (isset($map['TimeStamp'])) { + $model->timeStamp = $map['TimeStamp']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainBpsDataByLayerRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainBpsDataByLayerRequest.php new file mode 100644 index 000000000..32324c1d5 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainBpsDataByLayerRequest.php @@ -0,0 +1,131 @@ + 'DomainName', + 'endTime' => 'EndTime', + 'interval' => 'Interval', + 'ispNameEn' => 'IspNameEn', + 'layer' => 'Layer', + 'locationNameEn' => 'LocationNameEn', + 'ownerId' => 'OwnerId', + 'startTime' => 'StartTime', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->endTime) { + $res['EndTime'] = $this->endTime; + } + if (null !== $this->interval) { + $res['Interval'] = $this->interval; + } + if (null !== $this->ispNameEn) { + $res['IspNameEn'] = $this->ispNameEn; + } + if (null !== $this->layer) { + $res['Layer'] = $this->layer; + } + if (null !== $this->locationNameEn) { + $res['LocationNameEn'] = $this->locationNameEn; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->startTime) { + $res['StartTime'] = $this->startTime; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveDomainBpsDataByLayerRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['EndTime'])) { + $model->endTime = $map['EndTime']; + } + if (isset($map['Interval'])) { + $model->interval = $map['Interval']; + } + if (isset($map['IspNameEn'])) { + $model->ispNameEn = $map['IspNameEn']; + } + if (isset($map['Layer'])) { + $model->layer = $map['Layer']; + } + if (isset($map['LocationNameEn'])) { + $model->locationNameEn = $map['LocationNameEn']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['StartTime'])) { + $model->startTime = $map['StartTime']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainBpsDataByLayerResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainBpsDataByLayerResponse.php new file mode 100644 index 000000000..1ad316bc8 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainBpsDataByLayerResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveDomainBpsDataByLayerResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DescribeLiveDomainBpsDataByLayerResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainBpsDataByLayerResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainBpsDataByLayerResponseBody.php new file mode 100644 index 000000000..a61507c45 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainBpsDataByLayerResponseBody.php @@ -0,0 +1,72 @@ + 'BpsDataInterval', + 'dataInterval' => 'DataInterval', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->bpsDataInterval) { + $res['BpsDataInterval'] = null !== $this->bpsDataInterval ? $this->bpsDataInterval->toMap() : null; + } + if (null !== $this->dataInterval) { + $res['DataInterval'] = $this->dataInterval; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveDomainBpsDataByLayerResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['BpsDataInterval'])) { + $model->bpsDataInterval = bpsDataInterval::fromMap($map['BpsDataInterval']); + } + if (isset($map['DataInterval'])) { + $model->dataInterval = $map['DataInterval']; + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainBpsDataByLayerResponseBody/bpsDataInterval.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainBpsDataByLayerResponseBody/bpsDataInterval.php new file mode 100644 index 000000000..ceaddcaf1 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainBpsDataByLayerResponseBody/bpsDataInterval.php @@ -0,0 +1,60 @@ + 'DataModule', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->dataModule) { + $res['DataModule'] = []; + if (null !== $this->dataModule && \is_array($this->dataModule)) { + $n = 0; + foreach ($this->dataModule as $item) { + $res['DataModule'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return bpsDataInterval + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DataModule'])) { + if (!empty($map['DataModule'])) { + $model->dataModule = []; + $n = 0; + foreach ($map['DataModule'] as $item) { + $model->dataModule[$n++] = null !== $item ? dataModule::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainBpsDataByLayerResponseBody/bpsDataInterval/dataModule.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainBpsDataByLayerResponseBody/bpsDataInterval/dataModule.php new file mode 100644 index 000000000..55d8ecb8d --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainBpsDataByLayerResponseBody/bpsDataInterval/dataModule.php @@ -0,0 +1,71 @@ + 'TimeStamp', + 'trafficValue' => 'TrafficValue', + 'value' => 'Value', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->timeStamp) { + $res['TimeStamp'] = $this->timeStamp; + } + if (null !== $this->trafficValue) { + $res['TrafficValue'] = $this->trafficValue; + } + if (null !== $this->value) { + $res['Value'] = $this->value; + } + + return $res; + } + + /** + * @param array $map + * + * @return dataModule + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['TimeStamp'])) { + $model->timeStamp = $map['TimeStamp']; + } + if (isset($map['TrafficValue'])) { + $model->trafficValue = $map['TrafficValue']; + } + if (isset($map['Value'])) { + $model->value = $map['Value']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainBpsDataByTimeStampRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainBpsDataByTimeStampRequest.php new file mode 100644 index 000000000..db44b34e3 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainBpsDataByTimeStampRequest.php @@ -0,0 +1,95 @@ + 'DomainName', + 'ispNames' => 'IspNames', + 'locationNames' => 'LocationNames', + 'ownerId' => 'OwnerId', + 'timePoint' => 'TimePoint', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->ispNames) { + $res['IspNames'] = $this->ispNames; + } + if (null !== $this->locationNames) { + $res['LocationNames'] = $this->locationNames; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->timePoint) { + $res['TimePoint'] = $this->timePoint; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveDomainBpsDataByTimeStampRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['IspNames'])) { + $model->ispNames = $map['IspNames']; + } + if (isset($map['LocationNames'])) { + $model->locationNames = $map['LocationNames']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['TimePoint'])) { + $model->timePoint = $map['TimePoint']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainBpsDataByTimeStampResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainBpsDataByTimeStampResponse.php new file mode 100644 index 000000000..091df8d4b --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainBpsDataByTimeStampResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveDomainBpsDataByTimeStampResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DescribeLiveDomainBpsDataByTimeStampResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainBpsDataByTimeStampResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainBpsDataByTimeStampResponseBody.php new file mode 100644 index 000000000..84acdcd6f --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainBpsDataByTimeStampResponseBody.php @@ -0,0 +1,84 @@ + 'BpsDataList', + 'domainName' => 'DomainName', + 'requestId' => 'RequestId', + 'timeStamp' => 'TimeStamp', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->bpsDataList) { + $res['BpsDataList'] = null !== $this->bpsDataList ? $this->bpsDataList->toMap() : null; + } + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->timeStamp) { + $res['TimeStamp'] = $this->timeStamp; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveDomainBpsDataByTimeStampResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['BpsDataList'])) { + $model->bpsDataList = bpsDataList::fromMap($map['BpsDataList']); + } + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['TimeStamp'])) { + $model->timeStamp = $map['TimeStamp']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainBpsDataByTimeStampResponseBody/bpsDataList.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainBpsDataByTimeStampResponseBody/bpsDataList.php new file mode 100644 index 000000000..4440a6108 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainBpsDataByTimeStampResponseBody/bpsDataList.php @@ -0,0 +1,60 @@ + 'BpsDataModel', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->bpsDataModel) { + $res['BpsDataModel'] = []; + if (null !== $this->bpsDataModel && \is_array($this->bpsDataModel)) { + $n = 0; + foreach ($this->bpsDataModel as $item) { + $res['BpsDataModel'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return bpsDataList + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['BpsDataModel'])) { + if (!empty($map['BpsDataModel'])) { + $model->bpsDataModel = []; + $n = 0; + foreach ($map['BpsDataModel'] as $item) { + $model->bpsDataModel[$n++] = null !== $item ? bpsDataModel::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainBpsDataByTimeStampResponseBody/bpsDataList/bpsDataModel.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainBpsDataByTimeStampResponseBody/bpsDataList/bpsDataModel.php new file mode 100644 index 000000000..2737465d3 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainBpsDataByTimeStampResponseBody/bpsDataList/bpsDataModel.php @@ -0,0 +1,83 @@ + 'Bps', + 'ispName' => 'IspName', + 'locationName' => 'LocationName', + 'timeStamp' => 'TimeStamp', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->bps) { + $res['Bps'] = $this->bps; + } + if (null !== $this->ispName) { + $res['IspName'] = $this->ispName; + } + if (null !== $this->locationName) { + $res['LocationName'] = $this->locationName; + } + if (null !== $this->timeStamp) { + $res['TimeStamp'] = $this->timeStamp; + } + + return $res; + } + + /** + * @param array $map + * + * @return bpsDataModel + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Bps'])) { + $model->bps = $map['Bps']; + } + if (isset($map['IspName'])) { + $model->ispName = $map['IspName']; + } + if (isset($map['LocationName'])) { + $model->locationName = $map['LocationName']; + } + if (isset($map['TimeStamp'])) { + $model->timeStamp = $map['TimeStamp']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainBpsDataRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainBpsDataRequest.php new file mode 100644 index 000000000..b587c408d --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainBpsDataRequest.php @@ -0,0 +1,119 @@ + 'DomainName', + 'endTime' => 'EndTime', + 'interval' => 'Interval', + 'ispNameEn' => 'IspNameEn', + 'locationNameEn' => 'LocationNameEn', + 'ownerId' => 'OwnerId', + 'startTime' => 'StartTime', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->endTime) { + $res['EndTime'] = $this->endTime; + } + if (null !== $this->interval) { + $res['Interval'] = $this->interval; + } + if (null !== $this->ispNameEn) { + $res['IspNameEn'] = $this->ispNameEn; + } + if (null !== $this->locationNameEn) { + $res['LocationNameEn'] = $this->locationNameEn; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->startTime) { + $res['StartTime'] = $this->startTime; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveDomainBpsDataRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['EndTime'])) { + $model->endTime = $map['EndTime']; + } + if (isset($map['Interval'])) { + $model->interval = $map['Interval']; + } + if (isset($map['IspNameEn'])) { + $model->ispNameEn = $map['IspNameEn']; + } + if (isset($map['LocationNameEn'])) { + $model->locationNameEn = $map['LocationNameEn']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['StartTime'])) { + $model->startTime = $map['StartTime']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainBpsDataResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainBpsDataResponse.php new file mode 100644 index 000000000..2dc4e409e --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainBpsDataResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveDomainBpsDataResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DescribeLiveDomainBpsDataResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainBpsDataResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainBpsDataResponseBody.php new file mode 100644 index 000000000..ff0981ab8 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainBpsDataResponseBody.php @@ -0,0 +1,108 @@ + 'BpsDataPerInterval', + 'dataInterval' => 'DataInterval', + 'domainName' => 'DomainName', + 'endTime' => 'EndTime', + 'requestId' => 'RequestId', + 'startTime' => 'StartTime', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->bpsDataPerInterval) { + $res['BpsDataPerInterval'] = null !== $this->bpsDataPerInterval ? $this->bpsDataPerInterval->toMap() : null; + } + if (null !== $this->dataInterval) { + $res['DataInterval'] = $this->dataInterval; + } + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->endTime) { + $res['EndTime'] = $this->endTime; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->startTime) { + $res['StartTime'] = $this->startTime; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveDomainBpsDataResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['BpsDataPerInterval'])) { + $model->bpsDataPerInterval = bpsDataPerInterval::fromMap($map['BpsDataPerInterval']); + } + if (isset($map['DataInterval'])) { + $model->dataInterval = $map['DataInterval']; + } + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['EndTime'])) { + $model->endTime = $map['EndTime']; + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['StartTime'])) { + $model->startTime = $map['StartTime']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainBpsDataResponseBody/bpsDataPerInterval.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainBpsDataResponseBody/bpsDataPerInterval.php new file mode 100644 index 000000000..aaa967e57 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainBpsDataResponseBody/bpsDataPerInterval.php @@ -0,0 +1,60 @@ + 'DataModule', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->dataModule) { + $res['DataModule'] = []; + if (null !== $this->dataModule && \is_array($this->dataModule)) { + $n = 0; + foreach ($this->dataModule as $item) { + $res['DataModule'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return bpsDataPerInterval + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DataModule'])) { + if (!empty($map['DataModule'])) { + $model->dataModule = []; + $n = 0; + foreach ($map['DataModule'] as $item) { + $model->dataModule[$n++] = null !== $item ? dataModule::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainBpsDataResponseBody/bpsDataPerInterval/dataModule.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainBpsDataResponseBody/bpsDataPerInterval/dataModule.php new file mode 100644 index 000000000..65aba7c54 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainBpsDataResponseBody/bpsDataPerInterval/dataModule.php @@ -0,0 +1,83 @@ + 'BpsValue', + 'httpBpsValue' => 'HttpBpsValue', + 'httpsBpsValue' => 'HttpsBpsValue', + 'timeStamp' => 'TimeStamp', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->bpsValue) { + $res['BpsValue'] = $this->bpsValue; + } + if (null !== $this->httpBpsValue) { + $res['HttpBpsValue'] = $this->httpBpsValue; + } + if (null !== $this->httpsBpsValue) { + $res['HttpsBpsValue'] = $this->httpsBpsValue; + } + if (null !== $this->timeStamp) { + $res['TimeStamp'] = $this->timeStamp; + } + + return $res; + } + + /** + * @param array $map + * + * @return dataModule + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['BpsValue'])) { + $model->bpsValue = $map['BpsValue']; + } + if (isset($map['HttpBpsValue'])) { + $model->httpBpsValue = $map['HttpBpsValue']; + } + if (isset($map['HttpsBpsValue'])) { + $model->httpsBpsValue = $map['HttpsBpsValue']; + } + if (isset($map['TimeStamp'])) { + $model->timeStamp = $map['TimeStamp']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainCertificateInfoRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainCertificateInfoRequest.php new file mode 100644 index 000000000..f23ff8461 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainCertificateInfoRequest.php @@ -0,0 +1,59 @@ + 'DomainName', + 'ownerId' => 'OwnerId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveDomainCertificateInfoRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainCertificateInfoResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainCertificateInfoResponse.php new file mode 100644 index 000000000..af37291f5 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainCertificateInfoResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveDomainCertificateInfoResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DescribeLiveDomainCertificateInfoResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainCertificateInfoResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainCertificateInfoResponseBody.php new file mode 100644 index 000000000..ed1b93eb2 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainCertificateInfoResponseBody.php @@ -0,0 +1,60 @@ + 'CertInfos', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->certInfos) { + $res['CertInfos'] = null !== $this->certInfos ? $this->certInfos->toMap() : null; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveDomainCertificateInfoResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CertInfos'])) { + $model->certInfos = certInfos::fromMap($map['CertInfos']); + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainCertificateInfoResponseBody/certInfos.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainCertificateInfoResponseBody/certInfos.php new file mode 100644 index 000000000..2e868fd5c --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainCertificateInfoResponseBody/certInfos.php @@ -0,0 +1,60 @@ + 'CertInfo', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->certInfo) { + $res['CertInfo'] = []; + if (null !== $this->certInfo && \is_array($this->certInfo)) { + $n = 0; + foreach ($this->certInfo as $item) { + $res['CertInfo'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return certInfos + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CertInfo'])) { + if (!empty($map['CertInfo'])) { + $model->certInfo = []; + $n = 0; + foreach ($map['CertInfo'] as $item) { + $model->certInfo[$n++] = null !== $item ? certInfo::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainCertificateInfoResponseBody/certInfos/certInfo.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainCertificateInfoResponseBody/certInfos/certInfo.php new file mode 100644 index 000000000..849e24e6e --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainCertificateInfoResponseBody/certInfos/certInfo.php @@ -0,0 +1,155 @@ + 'CertDomainName', + 'certExpireTime' => 'CertExpireTime', + 'certLife' => 'CertLife', + 'certName' => 'CertName', + 'certOrg' => 'CertOrg', + 'certType' => 'CertType', + 'domainName' => 'DomainName', + 'SSLProtocol' => 'SSLProtocol', + 'SSLPub' => 'SSLPub', + 'status' => 'Status', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->certDomainName) { + $res['CertDomainName'] = $this->certDomainName; + } + if (null !== $this->certExpireTime) { + $res['CertExpireTime'] = $this->certExpireTime; + } + if (null !== $this->certLife) { + $res['CertLife'] = $this->certLife; + } + if (null !== $this->certName) { + $res['CertName'] = $this->certName; + } + if (null !== $this->certOrg) { + $res['CertOrg'] = $this->certOrg; + } + if (null !== $this->certType) { + $res['CertType'] = $this->certType; + } + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->SSLProtocol) { + $res['SSLProtocol'] = $this->SSLProtocol; + } + if (null !== $this->SSLPub) { + $res['SSLPub'] = $this->SSLPub; + } + if (null !== $this->status) { + $res['Status'] = $this->status; + } + + return $res; + } + + /** + * @param array $map + * + * @return certInfo + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CertDomainName'])) { + $model->certDomainName = $map['CertDomainName']; + } + if (isset($map['CertExpireTime'])) { + $model->certExpireTime = $map['CertExpireTime']; + } + if (isset($map['CertLife'])) { + $model->certLife = $map['CertLife']; + } + if (isset($map['CertName'])) { + $model->certName = $map['CertName']; + } + if (isset($map['CertOrg'])) { + $model->certOrg = $map['CertOrg']; + } + if (isset($map['CertType'])) { + $model->certType = $map['CertType']; + } + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['SSLProtocol'])) { + $model->SSLProtocol = $map['SSLProtocol']; + } + if (isset($map['SSLPub'])) { + $model->SSLPub = $map['SSLPub']; + } + if (isset($map['Status'])) { + $model->status = $map['Status']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainConfigsRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainConfigsRequest.php new file mode 100644 index 000000000..923b6d4ea --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainConfigsRequest.php @@ -0,0 +1,83 @@ + 'DomainName', + 'functionNames' => 'FunctionNames', + 'ownerId' => 'OwnerId', + 'securityToken' => 'SecurityToken', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->functionNames) { + $res['FunctionNames'] = $this->functionNames; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->securityToken) { + $res['SecurityToken'] = $this->securityToken; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveDomainConfigsRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['FunctionNames'])) { + $model->functionNames = $map['FunctionNames']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['SecurityToken'])) { + $model->securityToken = $map['SecurityToken']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainConfigsResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainConfigsResponse.php new file mode 100644 index 000000000..188d8ebe5 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainConfigsResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveDomainConfigsResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DescribeLiveDomainConfigsResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainConfigsResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainConfigsResponseBody.php new file mode 100644 index 000000000..b0e6e2e13 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainConfigsResponseBody.php @@ -0,0 +1,60 @@ + 'DomainConfigs', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->domainConfigs) { + $res['DomainConfigs'] = null !== $this->domainConfigs ? $this->domainConfigs->toMap() : null; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveDomainConfigsResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DomainConfigs'])) { + $model->domainConfigs = domainConfigs::fromMap($map['DomainConfigs']); + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainConfigsResponseBody/domainConfigs.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainConfigsResponseBody/domainConfigs.php new file mode 100644 index 000000000..59f253cf1 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainConfigsResponseBody/domainConfigs.php @@ -0,0 +1,60 @@ + 'DomainConfig', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->domainConfig) { + $res['DomainConfig'] = []; + if (null !== $this->domainConfig && \is_array($this->domainConfig)) { + $n = 0; + foreach ($this->domainConfig as $item) { + $res['DomainConfig'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return domainConfigs + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DomainConfig'])) { + if (!empty($map['DomainConfig'])) { + $model->domainConfig = []; + $n = 0; + foreach ($map['DomainConfig'] as $item) { + $model->domainConfig[$n++] = null !== $item ? domainConfig::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainConfigsResponseBody/domainConfigs/domainConfig.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainConfigsResponseBody/domainConfigs/domainConfig.php new file mode 100644 index 000000000..a454c9451 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainConfigsResponseBody/domainConfigs/domainConfig.php @@ -0,0 +1,84 @@ + 'ConfigId', + 'functionArgs' => 'FunctionArgs', + 'functionName' => 'FunctionName', + 'status' => 'Status', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->configId) { + $res['ConfigId'] = $this->configId; + } + if (null !== $this->functionArgs) { + $res['FunctionArgs'] = null !== $this->functionArgs ? $this->functionArgs->toMap() : null; + } + if (null !== $this->functionName) { + $res['FunctionName'] = $this->functionName; + } + if (null !== $this->status) { + $res['Status'] = $this->status; + } + + return $res; + } + + /** + * @param array $map + * + * @return domainConfig + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['ConfigId'])) { + $model->configId = $map['ConfigId']; + } + if (isset($map['FunctionArgs'])) { + $model->functionArgs = functionArgs::fromMap($map['FunctionArgs']); + } + if (isset($map['FunctionName'])) { + $model->functionName = $map['FunctionName']; + } + if (isset($map['Status'])) { + $model->status = $map['Status']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainConfigsResponseBody/domainConfigs/domainConfig/functionArgs.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainConfigsResponseBody/domainConfigs/domainConfig/functionArgs.php new file mode 100644 index 000000000..e9da3571b --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainConfigsResponseBody/domainConfigs/domainConfig/functionArgs.php @@ -0,0 +1,60 @@ + 'FunctionArg', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->functionArg) { + $res['FunctionArg'] = []; + if (null !== $this->functionArg && \is_array($this->functionArg)) { + $n = 0; + foreach ($this->functionArg as $item) { + $res['FunctionArg'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return functionArgs + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['FunctionArg'])) { + if (!empty($map['FunctionArg'])) { + $model->functionArg = []; + $n = 0; + foreach ($map['FunctionArg'] as $item) { + $model->functionArg[$n++] = null !== $item ? functionArg::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainConfigsResponseBody/domainConfigs/domainConfig/functionArgs/functionArg.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainConfigsResponseBody/domainConfigs/domainConfig/functionArgs/functionArg.php new file mode 100644 index 000000000..6720f356e --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainConfigsResponseBody/domainConfigs/domainConfig/functionArgs/functionArg.php @@ -0,0 +1,59 @@ + 'ArgName', + 'argValue' => 'ArgValue', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->argName) { + $res['ArgName'] = $this->argName; + } + if (null !== $this->argValue) { + $res['ArgValue'] = $this->argValue; + } + + return $res; + } + + /** + * @param array $map + * + * @return functionArg + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['ArgName'])) { + $model->argName = $map['ArgName']; + } + if (isset($map['ArgValue'])) { + $model->argValue = $map['ArgValue']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainDetailRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainDetailRequest.php new file mode 100644 index 000000000..b151bf4f8 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainDetailRequest.php @@ -0,0 +1,71 @@ + 'DomainName', + 'ownerId' => 'OwnerId', + 'securityToken' => 'SecurityToken', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->securityToken) { + $res['SecurityToken'] = $this->securityToken; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveDomainDetailRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['SecurityToken'])) { + $model->securityToken = $map['SecurityToken']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainDetailResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainDetailResponse.php new file mode 100644 index 000000000..b8402f1b3 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainDetailResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveDomainDetailResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DescribeLiveDomainDetailResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainDetailResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainDetailResponseBody.php new file mode 100644 index 000000000..20bf80332 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainDetailResponseBody.php @@ -0,0 +1,60 @@ + 'DomainDetail', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->domainDetail) { + $res['DomainDetail'] = null !== $this->domainDetail ? $this->domainDetail->toMap() : null; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveDomainDetailResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DomainDetail'])) { + $model->domainDetail = domainDetail::fromMap($map['DomainDetail']); + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainDetailResponseBody/domainDetail.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainDetailResponseBody/domainDetail.php new file mode 100644 index 000000000..cf4c43e92 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainDetailResponseBody/domainDetail.php @@ -0,0 +1,179 @@ + 'CertName', + 'cname' => 'Cname', + 'description' => 'Description', + 'domainName' => 'DomainName', + 'domainStatus' => 'DomainStatus', + 'gmtCreated' => 'GmtCreated', + 'gmtModified' => 'GmtModified', + 'liveDomainType' => 'LiveDomainType', + 'region' => 'Region', + 'SSLProtocol' => 'SSLProtocol', + 'SSLPub' => 'SSLPub', + 'scope' => 'Scope', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->certName) { + $res['CertName'] = $this->certName; + } + if (null !== $this->cname) { + $res['Cname'] = $this->cname; + } + if (null !== $this->description) { + $res['Description'] = $this->description; + } + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->domainStatus) { + $res['DomainStatus'] = $this->domainStatus; + } + if (null !== $this->gmtCreated) { + $res['GmtCreated'] = $this->gmtCreated; + } + if (null !== $this->gmtModified) { + $res['GmtModified'] = $this->gmtModified; + } + if (null !== $this->liveDomainType) { + $res['LiveDomainType'] = $this->liveDomainType; + } + if (null !== $this->region) { + $res['Region'] = $this->region; + } + if (null !== $this->SSLProtocol) { + $res['SSLProtocol'] = $this->SSLProtocol; + } + if (null !== $this->SSLPub) { + $res['SSLPub'] = $this->SSLPub; + } + if (null !== $this->scope) { + $res['Scope'] = $this->scope; + } + + return $res; + } + + /** + * @param array $map + * + * @return domainDetail + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CertName'])) { + $model->certName = $map['CertName']; + } + if (isset($map['Cname'])) { + $model->cname = $map['Cname']; + } + if (isset($map['Description'])) { + $model->description = $map['Description']; + } + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['DomainStatus'])) { + $model->domainStatus = $map['DomainStatus']; + } + if (isset($map['GmtCreated'])) { + $model->gmtCreated = $map['GmtCreated']; + } + if (isset($map['GmtModified'])) { + $model->gmtModified = $map['GmtModified']; + } + if (isset($map['LiveDomainType'])) { + $model->liveDomainType = $map['LiveDomainType']; + } + if (isset($map['Region'])) { + $model->region = $map['Region']; + } + if (isset($map['SSLProtocol'])) { + $model->SSLProtocol = $map['SSLProtocol']; + } + if (isset($map['SSLPub'])) { + $model->SSLPub = $map['SSLPub']; + } + if (isset($map['Scope'])) { + $model->scope = $map['Scope']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainFrameRateAndBitRateDataRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainFrameRateAndBitRateDataRequest.php new file mode 100644 index 000000000..c2c211f84 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainFrameRateAndBitRateDataRequest.php @@ -0,0 +1,71 @@ + 'DomainName', + 'ownerId' => 'OwnerId', + 'queryTime' => 'QueryTime', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->queryTime) { + $res['QueryTime'] = $this->queryTime; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveDomainFrameRateAndBitRateDataRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['QueryTime'])) { + $model->queryTime = $map['QueryTime']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainFrameRateAndBitRateDataResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainFrameRateAndBitRateDataResponse.php new file mode 100644 index 000000000..f85a499a2 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainFrameRateAndBitRateDataResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveDomainFrameRateAndBitRateDataResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DescribeLiveDomainFrameRateAndBitRateDataResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainFrameRateAndBitRateDataResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainFrameRateAndBitRateDataResponseBody.php new file mode 100644 index 000000000..0b368127b --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainFrameRateAndBitRateDataResponseBody.php @@ -0,0 +1,60 @@ + 'FrameRateAndBitRateInfos', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->frameRateAndBitRateInfos) { + $res['FrameRateAndBitRateInfos'] = null !== $this->frameRateAndBitRateInfos ? $this->frameRateAndBitRateInfos->toMap() : null; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveDomainFrameRateAndBitRateDataResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['FrameRateAndBitRateInfos'])) { + $model->frameRateAndBitRateInfos = frameRateAndBitRateInfos::fromMap($map['FrameRateAndBitRateInfos']); + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainFrameRateAndBitRateDataResponseBody/frameRateAndBitRateInfos.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainFrameRateAndBitRateDataResponseBody/frameRateAndBitRateInfos.php new file mode 100644 index 000000000..a5c356288 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainFrameRateAndBitRateDataResponseBody/frameRateAndBitRateInfos.php @@ -0,0 +1,60 @@ + 'FrameRateAndBitRateInfo', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->frameRateAndBitRateInfo) { + $res['FrameRateAndBitRateInfo'] = []; + if (null !== $this->frameRateAndBitRateInfo && \is_array($this->frameRateAndBitRateInfo)) { + $n = 0; + foreach ($this->frameRateAndBitRateInfo as $item) { + $res['FrameRateAndBitRateInfo'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return frameRateAndBitRateInfos + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['FrameRateAndBitRateInfo'])) { + if (!empty($map['FrameRateAndBitRateInfo'])) { + $model->frameRateAndBitRateInfo = []; + $n = 0; + foreach ($map['FrameRateAndBitRateInfo'] as $item) { + $model->frameRateAndBitRateInfo[$n++] = null !== $item ? frameRateAndBitRateInfo::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainFrameRateAndBitRateDataResponseBody/frameRateAndBitRateInfos/frameRateAndBitRateInfo.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainFrameRateAndBitRateDataResponseBody/frameRateAndBitRateInfos/frameRateAndBitRateInfo.php new file mode 100644 index 000000000..e3f6e57e4 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainFrameRateAndBitRateDataResponseBody/frameRateAndBitRateInfos/frameRateAndBitRateInfo.php @@ -0,0 +1,83 @@ + 'AudioFrameRate', + 'bitRate' => 'BitRate', + 'streamUrl' => 'StreamUrl', + 'videoFrameRate' => 'VideoFrameRate', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->audioFrameRate) { + $res['AudioFrameRate'] = $this->audioFrameRate; + } + if (null !== $this->bitRate) { + $res['BitRate'] = $this->bitRate; + } + if (null !== $this->streamUrl) { + $res['StreamUrl'] = $this->streamUrl; + } + if (null !== $this->videoFrameRate) { + $res['VideoFrameRate'] = $this->videoFrameRate; + } + + return $res; + } + + /** + * @param array $map + * + * @return frameRateAndBitRateInfo + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AudioFrameRate'])) { + $model->audioFrameRate = $map['AudioFrameRate']; + } + if (isset($map['BitRate'])) { + $model->bitRate = $map['BitRate']; + } + if (isset($map['StreamUrl'])) { + $model->streamUrl = $map['StreamUrl']; + } + if (isset($map['VideoFrameRate'])) { + $model->videoFrameRate = $map['VideoFrameRate']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainLimitRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainLimitRequest.php new file mode 100644 index 000000000..d3b3ac21d --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainLimitRequest.php @@ -0,0 +1,59 @@ + 'DomainName', + 'ownerId' => 'OwnerId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveDomainLimitRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainLimitResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainLimitResponse.php new file mode 100644 index 000000000..4247874f5 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainLimitResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveDomainLimitResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DescribeLiveDomainLimitResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainLimitResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainLimitResponseBody.php new file mode 100644 index 000000000..03057e709 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainLimitResponseBody.php @@ -0,0 +1,60 @@ + 'LiveDomainLimitList', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->liveDomainLimitList) { + $res['LiveDomainLimitList'] = null !== $this->liveDomainLimitList ? $this->liveDomainLimitList->toMap() : null; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveDomainLimitResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['LiveDomainLimitList'])) { + $model->liveDomainLimitList = liveDomainLimitList::fromMap($map['LiveDomainLimitList']); + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainLimitResponseBody/liveDomainLimitList.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainLimitResponseBody/liveDomainLimitList.php new file mode 100644 index 000000000..6630811d9 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainLimitResponseBody/liveDomainLimitList.php @@ -0,0 +1,60 @@ + 'LiveDomainLimit', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->liveDomainLimit) { + $res['LiveDomainLimit'] = []; + if (null !== $this->liveDomainLimit && \is_array($this->liveDomainLimit)) { + $n = 0; + foreach ($this->liveDomainLimit as $item) { + $res['LiveDomainLimit'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return liveDomainLimitList + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['LiveDomainLimit'])) { + if (!empty($map['LiveDomainLimit'])) { + $model->liveDomainLimit = []; + $n = 0; + foreach ($map['LiveDomainLimit'] as $item) { + $model->liveDomainLimit[$n++] = null !== $item ? liveDomainLimit::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainLimitResponseBody/liveDomainLimitList/liveDomainLimit.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainLimitResponseBody/liveDomainLimitList/liveDomainLimit.php new file mode 100644 index 000000000..2ddb3a580 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainLimitResponseBody/liveDomainLimitList/liveDomainLimit.php @@ -0,0 +1,83 @@ + 'DomainName', + 'limitNum' => 'LimitNum', + 'limitTranscodeNum' => 'LimitTranscodeNum', + 'limitTransferNum' => 'LimitTransferNum', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->limitNum) { + $res['LimitNum'] = $this->limitNum; + } + if (null !== $this->limitTranscodeNum) { + $res['LimitTranscodeNum'] = $this->limitTranscodeNum; + } + if (null !== $this->limitTransferNum) { + $res['LimitTransferNum'] = $this->limitTransferNum; + } + + return $res; + } + + /** + * @param array $map + * + * @return liveDomainLimit + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['LimitNum'])) { + $model->limitNum = $map['LimitNum']; + } + if (isset($map['LimitTranscodeNum'])) { + $model->limitTranscodeNum = $map['LimitTranscodeNum']; + } + if (isset($map['LimitTransferNum'])) { + $model->limitTransferNum = $map['LimitTransferNum']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainLogRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainLogRequest.php new file mode 100644 index 000000000..f92fc80c0 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainLogRequest.php @@ -0,0 +1,107 @@ + 'DomainName', + 'endTime' => 'EndTime', + 'ownerId' => 'OwnerId', + 'pageNumber' => 'PageNumber', + 'pageSize' => 'PageSize', + 'startTime' => 'StartTime', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->endTime) { + $res['EndTime'] = $this->endTime; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->pageNumber) { + $res['PageNumber'] = $this->pageNumber; + } + if (null !== $this->pageSize) { + $res['PageSize'] = $this->pageSize; + } + if (null !== $this->startTime) { + $res['StartTime'] = $this->startTime; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveDomainLogRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['EndTime'])) { + $model->endTime = $map['EndTime']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['PageNumber'])) { + $model->pageNumber = $map['PageNumber']; + } + if (isset($map['PageSize'])) { + $model->pageSize = $map['PageSize']; + } + if (isset($map['StartTime'])) { + $model->startTime = $map['StartTime']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainLogResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainLogResponse.php new file mode 100644 index 000000000..ff0e32d8f --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainLogResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveDomainLogResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DescribeLiveDomainLogResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainLogResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainLogResponseBody.php new file mode 100644 index 000000000..f3551feb8 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainLogResponseBody.php @@ -0,0 +1,72 @@ + 'DomainLogDetails', + 'domainName' => 'DomainName', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->domainLogDetails) { + $res['DomainLogDetails'] = null !== $this->domainLogDetails ? $this->domainLogDetails->toMap() : null; + } + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveDomainLogResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DomainLogDetails'])) { + $model->domainLogDetails = domainLogDetails::fromMap($map['DomainLogDetails']); + } + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainLogResponseBody/domainLogDetails.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainLogResponseBody/domainLogDetails.php new file mode 100644 index 000000000..a455b7aaf --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainLogResponseBody/domainLogDetails.php @@ -0,0 +1,60 @@ + 'DomainLogDetail', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->domainLogDetail) { + $res['DomainLogDetail'] = []; + if (null !== $this->domainLogDetail && \is_array($this->domainLogDetail)) { + $n = 0; + foreach ($this->domainLogDetail as $item) { + $res['DomainLogDetail'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return domainLogDetails + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DomainLogDetail'])) { + if (!empty($map['DomainLogDetail'])) { + $model->domainLogDetail = []; + $n = 0; + foreach ($map['DomainLogDetail'] as $item) { + $model->domainLogDetail[$n++] = null !== $item ? domainLogDetail::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainLogResponseBody/domainLogDetails/domainLogDetail.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainLogResponseBody/domainLogDetails/domainLogDetail.php new file mode 100644 index 000000000..eacee3838 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainLogResponseBody/domainLogDetails/domainLogDetail.php @@ -0,0 +1,73 @@ + 'LogCount', + 'logInfos' => 'LogInfos', + 'pageInfos' => 'PageInfos', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->logCount) { + $res['LogCount'] = $this->logCount; + } + if (null !== $this->logInfos) { + $res['LogInfos'] = null !== $this->logInfos ? $this->logInfos->toMap() : null; + } + if (null !== $this->pageInfos) { + $res['PageInfos'] = null !== $this->pageInfos ? $this->pageInfos->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return domainLogDetail + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['LogCount'])) { + $model->logCount = $map['LogCount']; + } + if (isset($map['LogInfos'])) { + $model->logInfos = logInfos::fromMap($map['LogInfos']); + } + if (isset($map['PageInfos'])) { + $model->pageInfos = pageInfos::fromMap($map['PageInfos']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainLogResponseBody/domainLogDetails/domainLogDetail/logInfos.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainLogResponseBody/domainLogDetails/domainLogDetail/logInfos.php new file mode 100644 index 000000000..dc0cfd037 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainLogResponseBody/domainLogDetails/domainLogDetail/logInfos.php @@ -0,0 +1,60 @@ + 'LogInfoDetail', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->logInfoDetail) { + $res['LogInfoDetail'] = []; + if (null !== $this->logInfoDetail && \is_array($this->logInfoDetail)) { + $n = 0; + foreach ($this->logInfoDetail as $item) { + $res['LogInfoDetail'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return logInfos + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['LogInfoDetail'])) { + if (!empty($map['LogInfoDetail'])) { + $model->logInfoDetail = []; + $n = 0; + foreach ($map['LogInfoDetail'] as $item) { + $model->logInfoDetail[$n++] = null !== $item ? logInfoDetail::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainLogResponseBody/domainLogDetails/domainLogDetail/logInfos/logInfoDetail.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainLogResponseBody/domainLogDetails/domainLogDetail/logInfos/logInfoDetail.php new file mode 100644 index 000000000..8cdbc247d --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainLogResponseBody/domainLogDetails/domainLogDetail/logInfos/logInfoDetail.php @@ -0,0 +1,95 @@ + 'EndTime', + 'logName' => 'LogName', + 'logPath' => 'LogPath', + 'logSize' => 'LogSize', + 'startTime' => 'StartTime', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->endTime) { + $res['EndTime'] = $this->endTime; + } + if (null !== $this->logName) { + $res['LogName'] = $this->logName; + } + if (null !== $this->logPath) { + $res['LogPath'] = $this->logPath; + } + if (null !== $this->logSize) { + $res['LogSize'] = $this->logSize; + } + if (null !== $this->startTime) { + $res['StartTime'] = $this->startTime; + } + + return $res; + } + + /** + * @param array $map + * + * @return logInfoDetail + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['EndTime'])) { + $model->endTime = $map['EndTime']; + } + if (isset($map['LogName'])) { + $model->logName = $map['LogName']; + } + if (isset($map['LogPath'])) { + $model->logPath = $map['LogPath']; + } + if (isset($map['LogSize'])) { + $model->logSize = $map['LogSize']; + } + if (isset($map['StartTime'])) { + $model->startTime = $map['StartTime']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainLogResponseBody/domainLogDetails/domainLogDetail/pageInfos.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainLogResponseBody/domainLogDetails/domainLogDetail/pageInfos.php new file mode 100644 index 000000000..0342244a8 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainLogResponseBody/domainLogDetails/domainLogDetail/pageInfos.php @@ -0,0 +1,71 @@ + 'PageIndex', + 'pageSize' => 'PageSize', + 'total' => 'Total', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->pageIndex) { + $res['PageIndex'] = $this->pageIndex; + } + if (null !== $this->pageSize) { + $res['PageSize'] = $this->pageSize; + } + if (null !== $this->total) { + $res['Total'] = $this->total; + } + + return $res; + } + + /** + * @param array $map + * + * @return pageInfos + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['PageIndex'])) { + $model->pageIndex = $map['PageIndex']; + } + if (isset($map['PageSize'])) { + $model->pageSize = $map['PageSize']; + } + if (isset($map['Total'])) { + $model->total = $map['Total']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainMappingRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainMappingRequest.php new file mode 100644 index 000000000..cd66e8d08 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainMappingRequest.php @@ -0,0 +1,59 @@ + 'DomainName', + 'ownerId' => 'OwnerId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveDomainMappingRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainMappingResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainMappingResponse.php new file mode 100644 index 000000000..2937702fb --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainMappingResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveDomainMappingResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DescribeLiveDomainMappingResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainMappingResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainMappingResponseBody.php new file mode 100644 index 000000000..8003d4e45 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainMappingResponseBody.php @@ -0,0 +1,60 @@ + 'LiveDomainModels', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->liveDomainModels) { + $res['LiveDomainModels'] = null !== $this->liveDomainModels ? $this->liveDomainModels->toMap() : null; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveDomainMappingResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['LiveDomainModels'])) { + $model->liveDomainModels = liveDomainModels::fromMap($map['LiveDomainModels']); + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainMappingResponseBody/liveDomainModels.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainMappingResponseBody/liveDomainModels.php new file mode 100644 index 000000000..7d9c3e303 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainMappingResponseBody/liveDomainModels.php @@ -0,0 +1,60 @@ + 'LiveDomainModel', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->liveDomainModel) { + $res['LiveDomainModel'] = []; + if (null !== $this->liveDomainModel && \is_array($this->liveDomainModel)) { + $n = 0; + foreach ($this->liveDomainModel as $item) { + $res['LiveDomainModel'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return liveDomainModels + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['LiveDomainModel'])) { + if (!empty($map['LiveDomainModel'])) { + $model->liveDomainModel = []; + $n = 0; + foreach ($map['LiveDomainModel'] as $item) { + $model->liveDomainModel[$n++] = null !== $item ? liveDomainModel::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainMappingResponseBody/liveDomainModels/liveDomainModel.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainMappingResponseBody/liveDomainModels/liveDomainModel.php new file mode 100644 index 000000000..aa2fdf2e9 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainMappingResponseBody/liveDomainModels/liveDomainModel.php @@ -0,0 +1,59 @@ + 'DomainName', + 'type' => 'Type', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->type) { + $res['Type'] = $this->type; + } + + return $res; + } + + /** + * @param array $map + * + * @return liveDomainModel + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['Type'])) { + $model->type = $map['Type']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainOnlineUserNumRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainOnlineUserNumRequest.php new file mode 100644 index 000000000..4c8a933fb --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainOnlineUserNumRequest.php @@ -0,0 +1,71 @@ + 'DomainName', + 'ownerId' => 'OwnerId', + 'queryTime' => 'QueryTime', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->queryTime) { + $res['QueryTime'] = $this->queryTime; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveDomainOnlineUserNumRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['QueryTime'])) { + $model->queryTime = $map['QueryTime']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainOnlineUserNumResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainOnlineUserNumResponse.php new file mode 100644 index 000000000..2cc1254df --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainOnlineUserNumResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveDomainOnlineUserNumResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DescribeLiveDomainOnlineUserNumResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainOnlineUserNumResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainOnlineUserNumResponseBody.php new file mode 100644 index 000000000..492038753 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainOnlineUserNumResponseBody.php @@ -0,0 +1,84 @@ + 'OnlineUserInfo', + 'requestId' => 'RequestId', + 'streamCount' => 'StreamCount', + 'userCount' => 'UserCount', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->onlineUserInfo) { + $res['OnlineUserInfo'] = null !== $this->onlineUserInfo ? $this->onlineUserInfo->toMap() : null; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->streamCount) { + $res['StreamCount'] = $this->streamCount; + } + if (null !== $this->userCount) { + $res['UserCount'] = $this->userCount; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveDomainOnlineUserNumResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['OnlineUserInfo'])) { + $model->onlineUserInfo = onlineUserInfo::fromMap($map['OnlineUserInfo']); + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['StreamCount'])) { + $model->streamCount = $map['StreamCount']; + } + if (isset($map['UserCount'])) { + $model->userCount = $map['UserCount']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainOnlineUserNumResponseBody/onlineUserInfo.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainOnlineUserNumResponseBody/onlineUserInfo.php new file mode 100644 index 000000000..c2fff2bbc --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainOnlineUserNumResponseBody/onlineUserInfo.php @@ -0,0 +1,60 @@ + 'LiveStreamOnlineUserNumInfo', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->liveStreamOnlineUserNumInfo) { + $res['LiveStreamOnlineUserNumInfo'] = []; + if (null !== $this->liveStreamOnlineUserNumInfo && \is_array($this->liveStreamOnlineUserNumInfo)) { + $n = 0; + foreach ($this->liveStreamOnlineUserNumInfo as $item) { + $res['LiveStreamOnlineUserNumInfo'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return onlineUserInfo + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['LiveStreamOnlineUserNumInfo'])) { + if (!empty($map['LiveStreamOnlineUserNumInfo'])) { + $model->liveStreamOnlineUserNumInfo = []; + $n = 0; + foreach ($map['LiveStreamOnlineUserNumInfo'] as $item) { + $model->liveStreamOnlineUserNumInfo[$n++] = null !== $item ? liveStreamOnlineUserNumInfo::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainOnlineUserNumResponseBody/onlineUserInfo/liveStreamOnlineUserNumInfo.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainOnlineUserNumResponseBody/onlineUserInfo/liveStreamOnlineUserNumInfo.php new file mode 100644 index 000000000..4767c488e --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainOnlineUserNumResponseBody/onlineUserInfo/liveStreamOnlineUserNumInfo.php @@ -0,0 +1,60 @@ + 'Infos', + 'streamName' => 'StreamName', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->infos) { + $res['Infos'] = null !== $this->infos ? $this->infos->toMap() : null; + } + if (null !== $this->streamName) { + $res['StreamName'] = $this->streamName; + } + + return $res; + } + + /** + * @param array $map + * + * @return liveStreamOnlineUserNumInfo + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Infos'])) { + $model->infos = infos::fromMap($map['Infos']); + } + if (isset($map['StreamName'])) { + $model->streamName = $map['StreamName']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainOnlineUserNumResponseBody/onlineUserInfo/liveStreamOnlineUserNumInfo/infos.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainOnlineUserNumResponseBody/onlineUserInfo/liveStreamOnlineUserNumInfo/infos.php new file mode 100644 index 000000000..1f775430a --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainOnlineUserNumResponseBody/onlineUserInfo/liveStreamOnlineUserNumInfo/infos.php @@ -0,0 +1,60 @@ + 'Info', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->info) { + $res['Info'] = []; + if (null !== $this->info && \is_array($this->info)) { + $n = 0; + foreach ($this->info as $item) { + $res['Info'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return infos + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Info'])) { + if (!empty($map['Info'])) { + $model->info = []; + $n = 0; + foreach ($map['Info'] as $item) { + $model->info[$n++] = null !== $item ? info::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainOnlineUserNumResponseBody/onlineUserInfo/liveStreamOnlineUserNumInfo/infos/info.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainOnlineUserNumResponseBody/onlineUserInfo/liveStreamOnlineUserNumInfo/infos/info.php new file mode 100644 index 000000000..4a07c4f5b --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainOnlineUserNumResponseBody/onlineUserInfo/liveStreamOnlineUserNumInfo/infos/info.php @@ -0,0 +1,59 @@ + 'TranscodeTemplate', + 'userNumber' => 'UserNumber', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->transcodeTemplate) { + $res['TranscodeTemplate'] = $this->transcodeTemplate; + } + if (null !== $this->userNumber) { + $res['UserNumber'] = $this->userNumber; + } + + return $res; + } + + /** + * @param array $map + * + * @return info + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['TranscodeTemplate'])) { + $model->transcodeTemplate = $map['TranscodeTemplate']; + } + if (isset($map['UserNumber'])) { + $model->userNumber = $map['UserNumber']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainPushBpsDataRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainPushBpsDataRequest.php new file mode 100644 index 000000000..85eb019f1 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainPushBpsDataRequest.php @@ -0,0 +1,119 @@ + 'DomainName', + 'endTime' => 'EndTime', + 'interval' => 'Interval', + 'ispNameEn' => 'IspNameEn', + 'locationNameEn' => 'LocationNameEn', + 'ownerId' => 'OwnerId', + 'startTime' => 'StartTime', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->endTime) { + $res['EndTime'] = $this->endTime; + } + if (null !== $this->interval) { + $res['Interval'] = $this->interval; + } + if (null !== $this->ispNameEn) { + $res['IspNameEn'] = $this->ispNameEn; + } + if (null !== $this->locationNameEn) { + $res['LocationNameEn'] = $this->locationNameEn; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->startTime) { + $res['StartTime'] = $this->startTime; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveDomainPushBpsDataRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['EndTime'])) { + $model->endTime = $map['EndTime']; + } + if (isset($map['Interval'])) { + $model->interval = $map['Interval']; + } + if (isset($map['IspNameEn'])) { + $model->ispNameEn = $map['IspNameEn']; + } + if (isset($map['LocationNameEn'])) { + $model->locationNameEn = $map['LocationNameEn']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['StartTime'])) { + $model->startTime = $map['StartTime']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainPushBpsDataResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainPushBpsDataResponse.php new file mode 100644 index 000000000..ef5330c40 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainPushBpsDataResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveDomainPushBpsDataResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DescribeLiveDomainPushBpsDataResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainPushBpsDataResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainPushBpsDataResponseBody.php new file mode 100644 index 000000000..728a521f8 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainPushBpsDataResponseBody.php @@ -0,0 +1,108 @@ + 'BpsDataPerInterval', + 'dataInterval' => 'DataInterval', + 'domainName' => 'DomainName', + 'endTime' => 'EndTime', + 'requestId' => 'RequestId', + 'startTime' => 'StartTime', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->bpsDataPerInterval) { + $res['BpsDataPerInterval'] = null !== $this->bpsDataPerInterval ? $this->bpsDataPerInterval->toMap() : null; + } + if (null !== $this->dataInterval) { + $res['DataInterval'] = $this->dataInterval; + } + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->endTime) { + $res['EndTime'] = $this->endTime; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->startTime) { + $res['StartTime'] = $this->startTime; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveDomainPushBpsDataResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['BpsDataPerInterval'])) { + $model->bpsDataPerInterval = bpsDataPerInterval::fromMap($map['BpsDataPerInterval']); + } + if (isset($map['DataInterval'])) { + $model->dataInterval = $map['DataInterval']; + } + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['EndTime'])) { + $model->endTime = $map['EndTime']; + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['StartTime'])) { + $model->startTime = $map['StartTime']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainPushBpsDataResponseBody/bpsDataPerInterval.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainPushBpsDataResponseBody/bpsDataPerInterval.php new file mode 100644 index 000000000..ed360059c --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainPushBpsDataResponseBody/bpsDataPerInterval.php @@ -0,0 +1,60 @@ + 'DataModule', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->dataModule) { + $res['DataModule'] = []; + if (null !== $this->dataModule && \is_array($this->dataModule)) { + $n = 0; + foreach ($this->dataModule as $item) { + $res['DataModule'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return bpsDataPerInterval + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DataModule'])) { + if (!empty($map['DataModule'])) { + $model->dataModule = []; + $n = 0; + foreach ($map['DataModule'] as $item) { + $model->dataModule[$n++] = null !== $item ? dataModule::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainPushBpsDataResponseBody/bpsDataPerInterval/dataModule.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainPushBpsDataResponseBody/bpsDataPerInterval/dataModule.php new file mode 100644 index 000000000..42f81342d --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainPushBpsDataResponseBody/bpsDataPerInterval/dataModule.php @@ -0,0 +1,59 @@ + 'BpsValue', + 'timeStamp' => 'TimeStamp', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->bpsValue) { + $res['BpsValue'] = $this->bpsValue; + } + if (null !== $this->timeStamp) { + $res['TimeStamp'] = $this->timeStamp; + } + + return $res; + } + + /** + * @param array $map + * + * @return dataModule + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['BpsValue'])) { + $model->bpsValue = $map['BpsValue']; + } + if (isset($map['TimeStamp'])) { + $model->timeStamp = $map['TimeStamp']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainPushTrafficDataRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainPushTrafficDataRequest.php new file mode 100644 index 000000000..919e02c89 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainPushTrafficDataRequest.php @@ -0,0 +1,119 @@ + 'DomainName', + 'endTime' => 'EndTime', + 'interval' => 'Interval', + 'ispNameEn' => 'IspNameEn', + 'locationNameEn' => 'LocationNameEn', + 'ownerId' => 'OwnerId', + 'startTime' => 'StartTime', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->endTime) { + $res['EndTime'] = $this->endTime; + } + if (null !== $this->interval) { + $res['Interval'] = $this->interval; + } + if (null !== $this->ispNameEn) { + $res['IspNameEn'] = $this->ispNameEn; + } + if (null !== $this->locationNameEn) { + $res['LocationNameEn'] = $this->locationNameEn; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->startTime) { + $res['StartTime'] = $this->startTime; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveDomainPushTrafficDataRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['EndTime'])) { + $model->endTime = $map['EndTime']; + } + if (isset($map['Interval'])) { + $model->interval = $map['Interval']; + } + if (isset($map['IspNameEn'])) { + $model->ispNameEn = $map['IspNameEn']; + } + if (isset($map['LocationNameEn'])) { + $model->locationNameEn = $map['LocationNameEn']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['StartTime'])) { + $model->startTime = $map['StartTime']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainPushTrafficDataResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainPushTrafficDataResponse.php new file mode 100644 index 000000000..de49beb04 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainPushTrafficDataResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveDomainPushTrafficDataResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DescribeLiveDomainPushTrafficDataResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainPushTrafficDataResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainPushTrafficDataResponseBody.php new file mode 100644 index 000000000..931657cb4 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainPushTrafficDataResponseBody.php @@ -0,0 +1,108 @@ + 'DataInterval', + 'domainName' => 'DomainName', + 'endTime' => 'EndTime', + 'requestId' => 'RequestId', + 'startTime' => 'StartTime', + 'trafficDataPerInterval' => 'TrafficDataPerInterval', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->dataInterval) { + $res['DataInterval'] = $this->dataInterval; + } + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->endTime) { + $res['EndTime'] = $this->endTime; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->startTime) { + $res['StartTime'] = $this->startTime; + } + if (null !== $this->trafficDataPerInterval) { + $res['TrafficDataPerInterval'] = null !== $this->trafficDataPerInterval ? $this->trafficDataPerInterval->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveDomainPushTrafficDataResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DataInterval'])) { + $model->dataInterval = $map['DataInterval']; + } + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['EndTime'])) { + $model->endTime = $map['EndTime']; + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['StartTime'])) { + $model->startTime = $map['StartTime']; + } + if (isset($map['TrafficDataPerInterval'])) { + $model->trafficDataPerInterval = trafficDataPerInterval::fromMap($map['TrafficDataPerInterval']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainPushTrafficDataResponseBody/trafficDataPerInterval.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainPushTrafficDataResponseBody/trafficDataPerInterval.php new file mode 100644 index 000000000..01a2bae21 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainPushTrafficDataResponseBody/trafficDataPerInterval.php @@ -0,0 +1,60 @@ + 'DataModule', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->dataModule) { + $res['DataModule'] = []; + if (null !== $this->dataModule && \is_array($this->dataModule)) { + $n = 0; + foreach ($this->dataModule as $item) { + $res['DataModule'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return trafficDataPerInterval + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DataModule'])) { + if (!empty($map['DataModule'])) { + $model->dataModule = []; + $n = 0; + foreach ($map['DataModule'] as $item) { + $model->dataModule[$n++] = null !== $item ? dataModule::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainPushTrafficDataResponseBody/trafficDataPerInterval/dataModule.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainPushTrafficDataResponseBody/trafficDataPerInterval/dataModule.php new file mode 100644 index 000000000..90ce6bb6d --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainPushTrafficDataResponseBody/trafficDataPerInterval/dataModule.php @@ -0,0 +1,59 @@ + 'TimeStamp', + 'trafficValue' => 'TrafficValue', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->timeStamp) { + $res['TimeStamp'] = $this->timeStamp; + } + if (null !== $this->trafficValue) { + $res['TrafficValue'] = $this->trafficValue; + } + + return $res; + } + + /** + * @param array $map + * + * @return dataModule + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['TimeStamp'])) { + $model->timeStamp = $map['TimeStamp']; + } + if (isset($map['TrafficValue'])) { + $model->trafficValue = $map['TrafficValue']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainPvUvDataRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainPvUvDataRequest.php new file mode 100644 index 000000000..aeb270f34 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainPvUvDataRequest.php @@ -0,0 +1,83 @@ + 'DomainName', + 'endTime' => 'EndTime', + 'ownerId' => 'OwnerId', + 'startTime' => 'StartTime', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->endTime) { + $res['EndTime'] = $this->endTime; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->startTime) { + $res['StartTime'] = $this->startTime; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveDomainPvUvDataRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['EndTime'])) { + $model->endTime = $map['EndTime']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['StartTime'])) { + $model->startTime = $map['StartTime']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainPvUvDataResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainPvUvDataResponse.php new file mode 100644 index 000000000..8d2f09078 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainPvUvDataResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveDomainPvUvDataResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DescribeLiveDomainPvUvDataResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainPvUvDataResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainPvUvDataResponseBody.php new file mode 100644 index 000000000..6476b1b8f --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainPvUvDataResponseBody.php @@ -0,0 +1,108 @@ + 'DataInterval', + 'domainName' => 'DomainName', + 'endTime' => 'EndTime', + 'pvUvDataInfos' => 'PvUvDataInfos', + 'requestId' => 'RequestId', + 'startTime' => 'StartTime', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->dataInterval) { + $res['DataInterval'] = $this->dataInterval; + } + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->endTime) { + $res['EndTime'] = $this->endTime; + } + if (null !== $this->pvUvDataInfos) { + $res['PvUvDataInfos'] = null !== $this->pvUvDataInfos ? $this->pvUvDataInfos->toMap() : null; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->startTime) { + $res['StartTime'] = $this->startTime; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveDomainPvUvDataResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DataInterval'])) { + $model->dataInterval = $map['DataInterval']; + } + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['EndTime'])) { + $model->endTime = $map['EndTime']; + } + if (isset($map['PvUvDataInfos'])) { + $model->pvUvDataInfos = pvUvDataInfos::fromMap($map['PvUvDataInfos']); + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['StartTime'])) { + $model->startTime = $map['StartTime']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainPvUvDataResponseBody/pvUvDataInfos.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainPvUvDataResponseBody/pvUvDataInfos.php new file mode 100644 index 000000000..4cef0fe10 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainPvUvDataResponseBody/pvUvDataInfos.php @@ -0,0 +1,60 @@ + 'PvUvDataInfo', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->pvUvDataInfo) { + $res['PvUvDataInfo'] = []; + if (null !== $this->pvUvDataInfo && \is_array($this->pvUvDataInfo)) { + $n = 0; + foreach ($this->pvUvDataInfo as $item) { + $res['PvUvDataInfo'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return pvUvDataInfos + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['PvUvDataInfo'])) { + if (!empty($map['PvUvDataInfo'])) { + $model->pvUvDataInfo = []; + $n = 0; + foreach ($map['PvUvDataInfo'] as $item) { + $model->pvUvDataInfo[$n++] = null !== $item ? pvUvDataInfo::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainPvUvDataResponseBody/pvUvDataInfos/pvUvDataInfo.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainPvUvDataResponseBody/pvUvDataInfos/pvUvDataInfo.php new file mode 100644 index 000000000..faec57386 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainPvUvDataResponseBody/pvUvDataInfos/pvUvDataInfo.php @@ -0,0 +1,71 @@ + 'PV', + 'timeStamp' => 'TimeStamp', + 'UV' => 'UV', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->PV) { + $res['PV'] = $this->PV; + } + if (null !== $this->timeStamp) { + $res['TimeStamp'] = $this->timeStamp; + } + if (null !== $this->UV) { + $res['UV'] = $this->UV; + } + + return $res; + } + + /** + * @param array $map + * + * @return pvUvDataInfo + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['PV'])) { + $model->PV = $map['PV']; + } + if (isset($map['TimeStamp'])) { + $model->timeStamp = $map['TimeStamp']; + } + if (isset($map['UV'])) { + $model->UV = $map['UV']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealTimeBpsDataRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealTimeBpsDataRequest.php new file mode 100644 index 000000000..a7e465ba1 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealTimeBpsDataRequest.php @@ -0,0 +1,107 @@ + 'DomainName', + 'endTime' => 'EndTime', + 'ispNameEn' => 'IspNameEn', + 'locationNameEn' => 'LocationNameEn', + 'ownerId' => 'OwnerId', + 'startTime' => 'StartTime', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->endTime) { + $res['EndTime'] = $this->endTime; + } + if (null !== $this->ispNameEn) { + $res['IspNameEn'] = $this->ispNameEn; + } + if (null !== $this->locationNameEn) { + $res['LocationNameEn'] = $this->locationNameEn; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->startTime) { + $res['StartTime'] = $this->startTime; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveDomainRealTimeBpsDataRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['EndTime'])) { + $model->endTime = $map['EndTime']; + } + if (isset($map['IspNameEn'])) { + $model->ispNameEn = $map['IspNameEn']; + } + if (isset($map['LocationNameEn'])) { + $model->locationNameEn = $map['LocationNameEn']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['StartTime'])) { + $model->startTime = $map['StartTime']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealTimeBpsDataResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealTimeBpsDataResponse.php new file mode 100644 index 000000000..d78f56ffc --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealTimeBpsDataResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveDomainRealTimeBpsDataResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DescribeLiveDomainRealTimeBpsDataResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealTimeBpsDataResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealTimeBpsDataResponseBody.php new file mode 100644 index 000000000..89ab73bdf --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealTimeBpsDataResponseBody.php @@ -0,0 +1,108 @@ + 'DataInterval', + 'domainName' => 'DomainName', + 'endTime' => 'EndTime', + 'realTimeBpsDataPerInterval' => 'RealTimeBpsDataPerInterval', + 'requestId' => 'RequestId', + 'startTime' => 'StartTime', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->dataInterval) { + $res['DataInterval'] = $this->dataInterval; + } + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->endTime) { + $res['EndTime'] = $this->endTime; + } + if (null !== $this->realTimeBpsDataPerInterval) { + $res['RealTimeBpsDataPerInterval'] = null !== $this->realTimeBpsDataPerInterval ? $this->realTimeBpsDataPerInterval->toMap() : null; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->startTime) { + $res['StartTime'] = $this->startTime; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveDomainRealTimeBpsDataResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DataInterval'])) { + $model->dataInterval = $map['DataInterval']; + } + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['EndTime'])) { + $model->endTime = $map['EndTime']; + } + if (isset($map['RealTimeBpsDataPerInterval'])) { + $model->realTimeBpsDataPerInterval = realTimeBpsDataPerInterval::fromMap($map['RealTimeBpsDataPerInterval']); + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['StartTime'])) { + $model->startTime = $map['StartTime']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealTimeBpsDataResponseBody/realTimeBpsDataPerInterval.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealTimeBpsDataResponseBody/realTimeBpsDataPerInterval.php new file mode 100644 index 000000000..84df73fc3 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealTimeBpsDataResponseBody/realTimeBpsDataPerInterval.php @@ -0,0 +1,60 @@ + 'DataModule', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->dataModule) { + $res['DataModule'] = []; + if (null !== $this->dataModule && \is_array($this->dataModule)) { + $n = 0; + foreach ($this->dataModule as $item) { + $res['DataModule'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return realTimeBpsDataPerInterval + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DataModule'])) { + if (!empty($map['DataModule'])) { + $model->dataModule = []; + $n = 0; + foreach ($map['DataModule'] as $item) { + $model->dataModule[$n++] = null !== $item ? dataModule::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealTimeBpsDataResponseBody/realTimeBpsDataPerInterval/dataModule.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealTimeBpsDataResponseBody/realTimeBpsDataPerInterval/dataModule.php new file mode 100644 index 000000000..fd8a4809a --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealTimeBpsDataResponseBody/realTimeBpsDataPerInterval/dataModule.php @@ -0,0 +1,59 @@ + 'TimeStamp', + 'value' => 'Value', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->timeStamp) { + $res['TimeStamp'] = $this->timeStamp; + } + if (null !== $this->value) { + $res['Value'] = $this->value; + } + + return $res; + } + + /** + * @param array $map + * + * @return dataModule + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['TimeStamp'])) { + $model->timeStamp = $map['TimeStamp']; + } + if (isset($map['Value'])) { + $model->value = $map['Value']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealTimeHttpCodeDataRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealTimeHttpCodeDataRequest.php new file mode 100644 index 000000000..445792e6e --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealTimeHttpCodeDataRequest.php @@ -0,0 +1,107 @@ + 'DomainName', + 'endTime' => 'EndTime', + 'ispNameEn' => 'IspNameEn', + 'locationNameEn' => 'LocationNameEn', + 'ownerId' => 'OwnerId', + 'startTime' => 'StartTime', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->endTime) { + $res['EndTime'] = $this->endTime; + } + if (null !== $this->ispNameEn) { + $res['IspNameEn'] = $this->ispNameEn; + } + if (null !== $this->locationNameEn) { + $res['LocationNameEn'] = $this->locationNameEn; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->startTime) { + $res['StartTime'] = $this->startTime; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveDomainRealTimeHttpCodeDataRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['EndTime'])) { + $model->endTime = $map['EndTime']; + } + if (isset($map['IspNameEn'])) { + $model->ispNameEn = $map['IspNameEn']; + } + if (isset($map['LocationNameEn'])) { + $model->locationNameEn = $map['LocationNameEn']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['StartTime'])) { + $model->startTime = $map['StartTime']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealTimeHttpCodeDataResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealTimeHttpCodeDataResponse.php new file mode 100644 index 000000000..5d6c3ac56 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealTimeHttpCodeDataResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveDomainRealTimeHttpCodeDataResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DescribeLiveDomainRealTimeHttpCodeDataResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealTimeHttpCodeDataResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealTimeHttpCodeDataResponseBody.php new file mode 100644 index 000000000..70af8a5dd --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealTimeHttpCodeDataResponseBody.php @@ -0,0 +1,108 @@ + 'DataInterval', + 'domainName' => 'DomainName', + 'endTime' => 'EndTime', + 'realTimeHttpCodeData' => 'RealTimeHttpCodeData', + 'requestId' => 'RequestId', + 'startTime' => 'StartTime', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->dataInterval) { + $res['DataInterval'] = $this->dataInterval; + } + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->endTime) { + $res['EndTime'] = $this->endTime; + } + if (null !== $this->realTimeHttpCodeData) { + $res['RealTimeHttpCodeData'] = null !== $this->realTimeHttpCodeData ? $this->realTimeHttpCodeData->toMap() : null; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->startTime) { + $res['StartTime'] = $this->startTime; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveDomainRealTimeHttpCodeDataResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DataInterval'])) { + $model->dataInterval = $map['DataInterval']; + } + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['EndTime'])) { + $model->endTime = $map['EndTime']; + } + if (isset($map['RealTimeHttpCodeData'])) { + $model->realTimeHttpCodeData = realTimeHttpCodeData::fromMap($map['RealTimeHttpCodeData']); + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['StartTime'])) { + $model->startTime = $map['StartTime']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealTimeHttpCodeDataResponseBody/realTimeHttpCodeData.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealTimeHttpCodeDataResponseBody/realTimeHttpCodeData.php new file mode 100644 index 000000000..19abf3ff7 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealTimeHttpCodeDataResponseBody/realTimeHttpCodeData.php @@ -0,0 +1,60 @@ + 'UsageData', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->usageData) { + $res['UsageData'] = []; + if (null !== $this->usageData && \is_array($this->usageData)) { + $n = 0; + foreach ($this->usageData as $item) { + $res['UsageData'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return realTimeHttpCodeData + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['UsageData'])) { + if (!empty($map['UsageData'])) { + $model->usageData = []; + $n = 0; + foreach ($map['UsageData'] as $item) { + $model->usageData[$n++] = null !== $item ? usageData::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealTimeHttpCodeDataResponseBody/realTimeHttpCodeData/usageData.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealTimeHttpCodeDataResponseBody/realTimeHttpCodeData/usageData.php new file mode 100644 index 000000000..119f0815a --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealTimeHttpCodeDataResponseBody/realTimeHttpCodeData/usageData.php @@ -0,0 +1,60 @@ + 'TimeStamp', + 'value' => 'Value', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->timeStamp) { + $res['TimeStamp'] = $this->timeStamp; + } + if (null !== $this->value) { + $res['Value'] = null !== $this->value ? $this->value->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return usageData + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['TimeStamp'])) { + $model->timeStamp = $map['TimeStamp']; + } + if (isset($map['Value'])) { + $model->value = value::fromMap($map['Value']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealTimeHttpCodeDataResponseBody/realTimeHttpCodeData/usageData/value.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealTimeHttpCodeDataResponseBody/realTimeHttpCodeData/usageData/value.php new file mode 100644 index 000000000..0eabf154d --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealTimeHttpCodeDataResponseBody/realTimeHttpCodeData/usageData/value.php @@ -0,0 +1,60 @@ + 'RealTimeCodeProportionData', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->realTimeCodeProportionData) { + $res['RealTimeCodeProportionData'] = []; + if (null !== $this->realTimeCodeProportionData && \is_array($this->realTimeCodeProportionData)) { + $n = 0; + foreach ($this->realTimeCodeProportionData as $item) { + $res['RealTimeCodeProportionData'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return value + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RealTimeCodeProportionData'])) { + if (!empty($map['RealTimeCodeProportionData'])) { + $model->realTimeCodeProportionData = []; + $n = 0; + foreach ($map['RealTimeCodeProportionData'] as $item) { + $model->realTimeCodeProportionData[$n++] = null !== $item ? realTimeCodeProportionData::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealTimeHttpCodeDataResponseBody/realTimeHttpCodeData/usageData/value/realTimeCodeProportionData.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealTimeHttpCodeDataResponseBody/realTimeHttpCodeData/usageData/value/realTimeCodeProportionData.php new file mode 100644 index 000000000..6188ea698 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealTimeHttpCodeDataResponseBody/realTimeHttpCodeData/usageData/value/realTimeCodeProportionData.php @@ -0,0 +1,71 @@ + 'Code', + 'count' => 'Count', + 'proportion' => 'Proportion', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->code) { + $res['Code'] = $this->code; + } + if (null !== $this->count) { + $res['Count'] = $this->count; + } + if (null !== $this->proportion) { + $res['Proportion'] = $this->proportion; + } + + return $res; + } + + /** + * @param array $map + * + * @return realTimeCodeProportionData + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Code'])) { + $model->code = $map['Code']; + } + if (isset($map['Count'])) { + $model->count = $map['Count']; + } + if (isset($map['Proportion'])) { + $model->proportion = $map['Proportion']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealTimeTrafficDataRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealTimeTrafficDataRequest.php new file mode 100644 index 000000000..d8531fc80 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealTimeTrafficDataRequest.php @@ -0,0 +1,107 @@ + 'DomainName', + 'endTime' => 'EndTime', + 'ispNameEn' => 'IspNameEn', + 'locationNameEn' => 'LocationNameEn', + 'ownerId' => 'OwnerId', + 'startTime' => 'StartTime', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->endTime) { + $res['EndTime'] = $this->endTime; + } + if (null !== $this->ispNameEn) { + $res['IspNameEn'] = $this->ispNameEn; + } + if (null !== $this->locationNameEn) { + $res['LocationNameEn'] = $this->locationNameEn; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->startTime) { + $res['StartTime'] = $this->startTime; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveDomainRealTimeTrafficDataRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['EndTime'])) { + $model->endTime = $map['EndTime']; + } + if (isset($map['IspNameEn'])) { + $model->ispNameEn = $map['IspNameEn']; + } + if (isset($map['LocationNameEn'])) { + $model->locationNameEn = $map['LocationNameEn']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['StartTime'])) { + $model->startTime = $map['StartTime']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealTimeTrafficDataResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealTimeTrafficDataResponse.php new file mode 100644 index 000000000..4595d73ec --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealTimeTrafficDataResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveDomainRealTimeTrafficDataResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DescribeLiveDomainRealTimeTrafficDataResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealTimeTrafficDataResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealTimeTrafficDataResponseBody.php new file mode 100644 index 000000000..dbd8f596e --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealTimeTrafficDataResponseBody.php @@ -0,0 +1,108 @@ + 'DataInterval', + 'domainName' => 'DomainName', + 'endTime' => 'EndTime', + 'realTimeTrafficDataPerInterval' => 'RealTimeTrafficDataPerInterval', + 'requestId' => 'RequestId', + 'startTime' => 'StartTime', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->dataInterval) { + $res['DataInterval'] = $this->dataInterval; + } + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->endTime) { + $res['EndTime'] = $this->endTime; + } + if (null !== $this->realTimeTrafficDataPerInterval) { + $res['RealTimeTrafficDataPerInterval'] = null !== $this->realTimeTrafficDataPerInterval ? $this->realTimeTrafficDataPerInterval->toMap() : null; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->startTime) { + $res['StartTime'] = $this->startTime; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveDomainRealTimeTrafficDataResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DataInterval'])) { + $model->dataInterval = $map['DataInterval']; + } + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['EndTime'])) { + $model->endTime = $map['EndTime']; + } + if (isset($map['RealTimeTrafficDataPerInterval'])) { + $model->realTimeTrafficDataPerInterval = realTimeTrafficDataPerInterval::fromMap($map['RealTimeTrafficDataPerInterval']); + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['StartTime'])) { + $model->startTime = $map['StartTime']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealTimeTrafficDataResponseBody/realTimeTrafficDataPerInterval.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealTimeTrafficDataResponseBody/realTimeTrafficDataPerInterval.php new file mode 100644 index 000000000..ca00a3cfa --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealTimeTrafficDataResponseBody/realTimeTrafficDataPerInterval.php @@ -0,0 +1,60 @@ + 'DataModule', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->dataModule) { + $res['DataModule'] = []; + if (null !== $this->dataModule && \is_array($this->dataModule)) { + $n = 0; + foreach ($this->dataModule as $item) { + $res['DataModule'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return realTimeTrafficDataPerInterval + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DataModule'])) { + if (!empty($map['DataModule'])) { + $model->dataModule = []; + $n = 0; + foreach ($map['DataModule'] as $item) { + $model->dataModule[$n++] = null !== $item ? dataModule::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealTimeTrafficDataResponseBody/realTimeTrafficDataPerInterval/dataModule.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealTimeTrafficDataResponseBody/realTimeTrafficDataPerInterval/dataModule.php new file mode 100644 index 000000000..da9c92468 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealTimeTrafficDataResponseBody/realTimeTrafficDataPerInterval/dataModule.php @@ -0,0 +1,59 @@ + 'TimeStamp', + 'value' => 'Value', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->timeStamp) { + $res['TimeStamp'] = $this->timeStamp; + } + if (null !== $this->value) { + $res['Value'] = $this->value; + } + + return $res; + } + + /** + * @param array $map + * + * @return dataModule + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['TimeStamp'])) { + $model->timeStamp = $map['TimeStamp']; + } + if (isset($map['Value'])) { + $model->value = $map['Value']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealtimeLogDeliveryRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealtimeLogDeliveryRequest.php new file mode 100644 index 000000000..0e12124c2 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealtimeLogDeliveryRequest.php @@ -0,0 +1,59 @@ + 'DomainName', + 'ownerId' => 'OwnerId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveDomainRealtimeLogDeliveryRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealtimeLogDeliveryResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealtimeLogDeliveryResponse.php new file mode 100644 index 000000000..099ba0b1a --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealtimeLogDeliveryResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveDomainRealtimeLogDeliveryResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DescribeLiveDomainRealtimeLogDeliveryResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealtimeLogDeliveryResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealtimeLogDeliveryResponseBody.php new file mode 100644 index 000000000..58d4d03db --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRealtimeLogDeliveryResponseBody.php @@ -0,0 +1,95 @@ + 'Logstore', + 'project' => 'Project', + 'region' => 'Region', + 'requestId' => 'RequestId', + 'status' => 'Status', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->logstore) { + $res['Logstore'] = $this->logstore; + } + if (null !== $this->project) { + $res['Project'] = $this->project; + } + if (null !== $this->region) { + $res['Region'] = $this->region; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->status) { + $res['Status'] = $this->status; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveDomainRealtimeLogDeliveryResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Logstore'])) { + $model->logstore = $map['Logstore']; + } + if (isset($map['Project'])) { + $model->project = $map['Project']; + } + if (isset($map['Region'])) { + $model->region = $map['Region']; + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['Status'])) { + $model->status = $map['Status']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRecordDataRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRecordDataRequest.php new file mode 100644 index 000000000..8371c0c99 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRecordDataRequest.php @@ -0,0 +1,95 @@ + 'DomainName', + 'endTime' => 'EndTime', + 'ownerId' => 'OwnerId', + 'recordType' => 'RecordType', + 'startTime' => 'StartTime', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->endTime) { + $res['EndTime'] = $this->endTime; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->recordType) { + $res['RecordType'] = $this->recordType; + } + if (null !== $this->startTime) { + $res['StartTime'] = $this->startTime; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveDomainRecordDataRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['EndTime'])) { + $model->endTime = $map['EndTime']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['RecordType'])) { + $model->recordType = $map['RecordType']; + } + if (isset($map['StartTime'])) { + $model->startTime = $map['StartTime']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRecordDataResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRecordDataResponse.php new file mode 100644 index 000000000..adc830ca4 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRecordDataResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveDomainRecordDataResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DescribeLiveDomainRecordDataResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRecordDataResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRecordDataResponseBody.php new file mode 100644 index 000000000..23a17f4b0 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRecordDataResponseBody.php @@ -0,0 +1,60 @@ + 'RecordDataInfos', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->recordDataInfos) { + $res['RecordDataInfos'] = null !== $this->recordDataInfos ? $this->recordDataInfos->toMap() : null; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveDomainRecordDataResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RecordDataInfos'])) { + $model->recordDataInfos = recordDataInfos::fromMap($map['RecordDataInfos']); + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRecordDataResponseBody/recordDataInfos.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRecordDataResponseBody/recordDataInfos.php new file mode 100644 index 000000000..9abf225a5 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRecordDataResponseBody/recordDataInfos.php @@ -0,0 +1,60 @@ + 'RecordDataInfo', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->recordDataInfo) { + $res['RecordDataInfo'] = []; + if (null !== $this->recordDataInfo && \is_array($this->recordDataInfo)) { + $n = 0; + foreach ($this->recordDataInfo as $item) { + $res['RecordDataInfo'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return recordDataInfos + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RecordDataInfo'])) { + if (!empty($map['RecordDataInfo'])) { + $model->recordDataInfo = []; + $n = 0; + foreach ($map['RecordDataInfo'] as $item) { + $model->recordDataInfo[$n++] = null !== $item ? recordDataInfo::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRecordDataResponseBody/recordDataInfos/recordDataInfo.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRecordDataResponseBody/recordDataInfos/recordDataInfo.php new file mode 100644 index 000000000..74cf16ffe --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRecordDataResponseBody/recordDataInfos/recordDataInfo.php @@ -0,0 +1,72 @@ + 'Date', + 'detail' => 'Detail', + 'total' => 'Total', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->date) { + $res['Date'] = $this->date; + } + if (null !== $this->detail) { + $res['Detail'] = null !== $this->detail ? $this->detail->toMap() : null; + } + if (null !== $this->total) { + $res['Total'] = $this->total; + } + + return $res; + } + + /** + * @param array $map + * + * @return recordDataInfo + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Date'])) { + $model->date = $map['Date']; + } + if (isset($map['Detail'])) { + $model->detail = detail::fromMap($map['Detail']); + } + if (isset($map['Total'])) { + $model->total = $map['Total']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRecordDataResponseBody/recordDataInfos/recordDataInfo/detail.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRecordDataResponseBody/recordDataInfos/recordDataInfo/detail.php new file mode 100644 index 000000000..d3086d6e9 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRecordDataResponseBody/recordDataInfos/recordDataInfo/detail.php @@ -0,0 +1,71 @@ + 'FLV', + 'MP4' => 'MP4', + 'TS' => 'TS', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->FLV) { + $res['FLV'] = $this->FLV; + } + if (null !== $this->MP4) { + $res['MP4'] = $this->MP4; + } + if (null !== $this->TS) { + $res['TS'] = $this->TS; + } + + return $res; + } + + /** + * @param array $map + * + * @return detail + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['FLV'])) { + $model->FLV = $map['FLV']; + } + if (isset($map['MP4'])) { + $model->MP4 = $map['MP4']; + } + if (isset($map['TS'])) { + $model->TS = $map['TS']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRecordUsageDataRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRecordUsageDataRequest.php new file mode 100644 index 000000000..8d47ea12e --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRecordUsageDataRequest.php @@ -0,0 +1,95 @@ + 'DomainName', + 'endTime' => 'EndTime', + 'ownerId' => 'OwnerId', + 'splitBy' => 'SplitBy', + 'startTime' => 'StartTime', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->endTime) { + $res['EndTime'] = $this->endTime; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->splitBy) { + $res['SplitBy'] = $this->splitBy; + } + if (null !== $this->startTime) { + $res['StartTime'] = $this->startTime; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveDomainRecordUsageDataRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['EndTime'])) { + $model->endTime = $map['EndTime']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['SplitBy'])) { + $model->splitBy = $map['SplitBy']; + } + if (isset($map['StartTime'])) { + $model->startTime = $map['StartTime']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRecordUsageDataResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRecordUsageDataResponse.php new file mode 100644 index 000000000..a8282d5bd --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRecordUsageDataResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveDomainRecordUsageDataResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DescribeLiveDomainRecordUsageDataResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRecordUsageDataResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRecordUsageDataResponseBody.php new file mode 100644 index 000000000..8a08e00dd --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRecordUsageDataResponseBody.php @@ -0,0 +1,60 @@ + 'RecordUsageData', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->recordUsageData) { + $res['RecordUsageData'] = null !== $this->recordUsageData ? $this->recordUsageData->toMap() : null; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveDomainRecordUsageDataResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RecordUsageData'])) { + $model->recordUsageData = recordUsageData::fromMap($map['RecordUsageData']); + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRecordUsageDataResponseBody/recordUsageData.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRecordUsageDataResponseBody/recordUsageData.php new file mode 100644 index 000000000..44ca273ce --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRecordUsageDataResponseBody/recordUsageData.php @@ -0,0 +1,60 @@ + 'DataModule', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->dataModule) { + $res['DataModule'] = []; + if (null !== $this->dataModule && \is_array($this->dataModule)) { + $n = 0; + foreach ($this->dataModule as $item) { + $res['DataModule'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return recordUsageData + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DataModule'])) { + if (!empty($map['DataModule'])) { + $model->dataModule = []; + $n = 0; + foreach ($map['DataModule'] as $item) { + $model->dataModule[$n++] = null !== $item ? dataModule::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRecordUsageDataResponseBody/recordUsageData/dataModule.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRecordUsageDataResponseBody/recordUsageData/dataModule.php new file mode 100644 index 000000000..4ef7be0f8 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainRecordUsageDataResponseBody/recordUsageData/dataModule.php @@ -0,0 +1,95 @@ + 'Count', + 'domain' => 'Domain', + 'duration' => 'Duration', + 'timeStamp' => 'TimeStamp', + 'type' => 'Type', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->count) { + $res['Count'] = $this->count; + } + if (null !== $this->domain) { + $res['Domain'] = $this->domain; + } + if (null !== $this->duration) { + $res['Duration'] = $this->duration; + } + if (null !== $this->timeStamp) { + $res['TimeStamp'] = $this->timeStamp; + } + if (null !== $this->type) { + $res['Type'] = $this->type; + } + + return $res; + } + + /** + * @param array $map + * + * @return dataModule + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Count'])) { + $model->count = $map['Count']; + } + if (isset($map['Domain'])) { + $model->domain = $map['Domain']; + } + if (isset($map['Duration'])) { + $model->duration = $map['Duration']; + } + if (isset($map['TimeStamp'])) { + $model->timeStamp = $map['TimeStamp']; + } + if (isset($map['Type'])) { + $model->type = $map['Type']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainSnapshotDataRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainSnapshotDataRequest.php new file mode 100644 index 000000000..e3a892c4b --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainSnapshotDataRequest.php @@ -0,0 +1,83 @@ + 'DomainName', + 'endTime' => 'EndTime', + 'ownerId' => 'OwnerId', + 'startTime' => 'StartTime', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->endTime) { + $res['EndTime'] = $this->endTime; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->startTime) { + $res['StartTime'] = $this->startTime; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveDomainSnapshotDataRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['EndTime'])) { + $model->endTime = $map['EndTime']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['StartTime'])) { + $model->startTime = $map['StartTime']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainSnapshotDataResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainSnapshotDataResponse.php new file mode 100644 index 000000000..84370c01b --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainSnapshotDataResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveDomainSnapshotDataResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DescribeLiveDomainSnapshotDataResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainSnapshotDataResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainSnapshotDataResponseBody.php new file mode 100644 index 000000000..ada2a887a --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainSnapshotDataResponseBody.php @@ -0,0 +1,60 @@ + 'RequestId', + 'snapshotDataInfos' => 'SnapshotDataInfos', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->snapshotDataInfos) { + $res['SnapshotDataInfos'] = null !== $this->snapshotDataInfos ? $this->snapshotDataInfos->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveDomainSnapshotDataResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['SnapshotDataInfos'])) { + $model->snapshotDataInfos = snapshotDataInfos::fromMap($map['SnapshotDataInfos']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainSnapshotDataResponseBody/snapshotDataInfos.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainSnapshotDataResponseBody/snapshotDataInfos.php new file mode 100644 index 000000000..8af76103c --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainSnapshotDataResponseBody/snapshotDataInfos.php @@ -0,0 +1,60 @@ + 'SnapshotDataInfo', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->snapshotDataInfo) { + $res['SnapshotDataInfo'] = []; + if (null !== $this->snapshotDataInfo && \is_array($this->snapshotDataInfo)) { + $n = 0; + foreach ($this->snapshotDataInfo as $item) { + $res['SnapshotDataInfo'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return snapshotDataInfos + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['SnapshotDataInfo'])) { + if (!empty($map['SnapshotDataInfo'])) { + $model->snapshotDataInfo = []; + $n = 0; + foreach ($map['SnapshotDataInfo'] as $item) { + $model->snapshotDataInfo[$n++] = null !== $item ? snapshotDataInfo::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainSnapshotDataResponseBody/snapshotDataInfos/snapshotDataInfo.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainSnapshotDataResponseBody/snapshotDataInfos/snapshotDataInfo.php new file mode 100644 index 000000000..706dd91cd --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainSnapshotDataResponseBody/snapshotDataInfos/snapshotDataInfo.php @@ -0,0 +1,59 @@ + 'Date', + 'total' => 'Total', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->date) { + $res['Date'] = $this->date; + } + if (null !== $this->total) { + $res['Total'] = $this->total; + } + + return $res; + } + + /** + * @param array $map + * + * @return snapshotDataInfo + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Date'])) { + $model->date = $map['Date']; + } + if (isset($map['Total'])) { + $model->total = $map['Total']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainStagingConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainStagingConfigRequest.php new file mode 100644 index 000000000..aa02a71c8 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainStagingConfigRequest.php @@ -0,0 +1,71 @@ + 'DomainName', + 'functionNames' => 'FunctionNames', + 'ownerId' => 'OwnerId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->functionNames) { + $res['FunctionNames'] = $this->functionNames; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveDomainStagingConfigRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['FunctionNames'])) { + $model->functionNames = $map['FunctionNames']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainStagingConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainStagingConfigResponse.php new file mode 100644 index 000000000..7999fca0b --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainStagingConfigResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveDomainStagingConfigResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DescribeLiveDomainStagingConfigResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainStagingConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainStagingConfigResponseBody.php new file mode 100644 index 000000000..46359280e --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainStagingConfigResponseBody.php @@ -0,0 +1,72 @@ + 'DomainConfigs', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->domainConfigs) { + $res['DomainConfigs'] = []; + if (null !== $this->domainConfigs && \is_array($this->domainConfigs)) { + $n = 0; + foreach ($this->domainConfigs as $item) { + $res['DomainConfigs'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveDomainStagingConfigResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DomainConfigs'])) { + if (!empty($map['DomainConfigs'])) { + $model->domainConfigs = []; + $n = 0; + foreach ($map['DomainConfigs'] as $item) { + $model->domainConfigs[$n++] = null !== $item ? domainConfigs::fromMap($item) : $item; + } + } + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainStagingConfigResponseBody/domainConfigs.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainStagingConfigResponseBody/domainConfigs.php new file mode 100644 index 000000000..655c456d1 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainStagingConfigResponseBody/domainConfigs.php @@ -0,0 +1,96 @@ + 'ConfigId', + 'functionArgs' => 'FunctionArgs', + 'functionName' => 'FunctionName', + 'status' => 'Status', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->configId) { + $res['ConfigId'] = $this->configId; + } + if (null !== $this->functionArgs) { + $res['FunctionArgs'] = []; + if (null !== $this->functionArgs && \is_array($this->functionArgs)) { + $n = 0; + foreach ($this->functionArgs as $item) { + $res['FunctionArgs'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + if (null !== $this->functionName) { + $res['FunctionName'] = $this->functionName; + } + if (null !== $this->status) { + $res['Status'] = $this->status; + } + + return $res; + } + + /** + * @param array $map + * + * @return domainConfigs + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['ConfigId'])) { + $model->configId = $map['ConfigId']; + } + if (isset($map['FunctionArgs'])) { + if (!empty($map['FunctionArgs'])) { + $model->functionArgs = []; + $n = 0; + foreach ($map['FunctionArgs'] as $item) { + $model->functionArgs[$n++] = null !== $item ? functionArgs::fromMap($item) : $item; + } + } + } + if (isset($map['FunctionName'])) { + $model->functionName = $map['FunctionName']; + } + if (isset($map['Status'])) { + $model->status = $map['Status']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainStagingConfigResponseBody/domainConfigs/functionArgs.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainStagingConfigResponseBody/domainConfigs/functionArgs.php new file mode 100644 index 000000000..3b5e027f3 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainStagingConfigResponseBody/domainConfigs/functionArgs.php @@ -0,0 +1,59 @@ + 'ArgName', + 'argValue' => 'ArgValue', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->argName) { + $res['ArgName'] = $this->argName; + } + if (null !== $this->argValue) { + $res['ArgValue'] = $this->argValue; + } + + return $res; + } + + /** + * @param array $map + * + * @return functionArgs + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['ArgName'])) { + $model->argName = $map['ArgName']; + } + if (isset($map['ArgValue'])) { + $model->argValue = $map['ArgValue']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainStreamTranscodeDataRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainStreamTranscodeDataRequest.php new file mode 100644 index 000000000..fa564b9bc --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainStreamTranscodeDataRequest.php @@ -0,0 +1,107 @@ + 'DomainName', + 'endTime' => 'EndTime', + 'interval' => 'Interval', + 'ownerId' => 'OwnerId', + 'split' => 'Split', + 'startTime' => 'StartTime', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->endTime) { + $res['EndTime'] = $this->endTime; + } + if (null !== $this->interval) { + $res['Interval'] = $this->interval; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->split) { + $res['Split'] = $this->split; + } + if (null !== $this->startTime) { + $res['StartTime'] = $this->startTime; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveDomainStreamTranscodeDataRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['EndTime'])) { + $model->endTime = $map['EndTime']; + } + if (isset($map['Interval'])) { + $model->interval = $map['Interval']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['Split'])) { + $model->split = $map['Split']; + } + if (isset($map['StartTime'])) { + $model->startTime = $map['StartTime']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainStreamTranscodeDataResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainStreamTranscodeDataResponse.php new file mode 100644 index 000000000..58185d18e --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainStreamTranscodeDataResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveDomainStreamTranscodeDataResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DescribeLiveDomainStreamTranscodeDataResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainStreamTranscodeDataResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainStreamTranscodeDataResponseBody.php new file mode 100644 index 000000000..515828bd1 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainStreamTranscodeDataResponseBody.php @@ -0,0 +1,60 @@ + 'RequestId', + 'transcodeDataList' => 'TranscodeDataList', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->transcodeDataList) { + $res['TranscodeDataList'] = null !== $this->transcodeDataList ? $this->transcodeDataList->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveDomainStreamTranscodeDataResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['TranscodeDataList'])) { + $model->transcodeDataList = transcodeDataList::fromMap($map['TranscodeDataList']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainStreamTranscodeDataResponseBody/transcodeDataList.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainStreamTranscodeDataResponseBody/transcodeDataList.php new file mode 100644 index 000000000..d1d4e31b2 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainStreamTranscodeDataResponseBody/transcodeDataList.php @@ -0,0 +1,60 @@ + 'TranscodeData', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->transcodeData) { + $res['TranscodeData'] = []; + if (null !== $this->transcodeData && \is_array($this->transcodeData)) { + $n = 0; + foreach ($this->transcodeData as $item) { + $res['TranscodeData'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return transcodeDataList + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['TranscodeData'])) { + if (!empty($map['TranscodeData'])) { + $model->transcodeData = []; + $n = 0; + foreach ($map['TranscodeData'] as $item) { + $model->transcodeData[$n++] = null !== $item ? transcodeData::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainStreamTranscodeDataResponseBody/transcodeDataList/transcodeData.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainStreamTranscodeDataResponseBody/transcodeDataList/transcodeData.php new file mode 100644 index 000000000..a092d30a2 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainStreamTranscodeDataResponseBody/transcodeDataList/transcodeData.php @@ -0,0 +1,119 @@ + 'Domain', + 'duration' => 'Duration', + 'fps' => 'Fps', + 'region' => 'Region', + 'resolution' => 'Resolution', + 'tanscodeType' => 'TanscodeType', + 'timeStamp' => 'TimeStamp', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->domain) { + $res['Domain'] = $this->domain; + } + if (null !== $this->duration) { + $res['Duration'] = $this->duration; + } + if (null !== $this->fps) { + $res['Fps'] = $this->fps; + } + if (null !== $this->region) { + $res['Region'] = $this->region; + } + if (null !== $this->resolution) { + $res['Resolution'] = $this->resolution; + } + if (null !== $this->tanscodeType) { + $res['TanscodeType'] = $this->tanscodeType; + } + if (null !== $this->timeStamp) { + $res['TimeStamp'] = $this->timeStamp; + } + + return $res; + } + + /** + * @param array $map + * + * @return transcodeData + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Domain'])) { + $model->domain = $map['Domain']; + } + if (isset($map['Duration'])) { + $model->duration = $map['Duration']; + } + if (isset($map['Fps'])) { + $model->fps = $map['Fps']; + } + if (isset($map['Region'])) { + $model->region = $map['Region']; + } + if (isset($map['Resolution'])) { + $model->resolution = $map['Resolution']; + } + if (isset($map['TanscodeType'])) { + $model->tanscodeType = $map['TanscodeType']; + } + if (isset($map['TimeStamp'])) { + $model->timeStamp = $map['TimeStamp']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainTimeShiftDataRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainTimeShiftDataRequest.php new file mode 100644 index 000000000..a8caa8de9 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainTimeShiftDataRequest.php @@ -0,0 +1,95 @@ + 'DomainName', + 'endTime' => 'EndTime', + 'interval' => 'Interval', + 'ownerId' => 'OwnerId', + 'startTime' => 'StartTime', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->endTime) { + $res['EndTime'] = $this->endTime; + } + if (null !== $this->interval) { + $res['Interval'] = $this->interval; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->startTime) { + $res['StartTime'] = $this->startTime; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveDomainTimeShiftDataRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['EndTime'])) { + $model->endTime = $map['EndTime']; + } + if (isset($map['Interval'])) { + $model->interval = $map['Interval']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['StartTime'])) { + $model->startTime = $map['StartTime']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainTimeShiftDataResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainTimeShiftDataResponse.php new file mode 100644 index 000000000..4ce4446e4 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainTimeShiftDataResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveDomainTimeShiftDataResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DescribeLiveDomainTimeShiftDataResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainTimeShiftDataResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainTimeShiftDataResponseBody.php new file mode 100644 index 000000000..ac3ec2f9d --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainTimeShiftDataResponseBody.php @@ -0,0 +1,60 @@ + 'RequestId', + 'timeShiftData' => 'TimeShiftData', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->timeShiftData) { + $res['TimeShiftData'] = null !== $this->timeShiftData ? $this->timeShiftData->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveDomainTimeShiftDataResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['TimeShiftData'])) { + $model->timeShiftData = timeShiftData::fromMap($map['TimeShiftData']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainTimeShiftDataResponseBody/timeShiftData.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainTimeShiftDataResponseBody/timeShiftData.php new file mode 100644 index 000000000..da919667d --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainTimeShiftDataResponseBody/timeShiftData.php @@ -0,0 +1,60 @@ + 'DataModule', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->dataModule) { + $res['DataModule'] = []; + if (null !== $this->dataModule && \is_array($this->dataModule)) { + $n = 0; + foreach ($this->dataModule as $item) { + $res['DataModule'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return timeShiftData + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DataModule'])) { + if (!empty($map['DataModule'])) { + $model->dataModule = []; + $n = 0; + foreach ($map['DataModule'] as $item) { + $model->dataModule[$n++] = null !== $item ? dataModule::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainTimeShiftDataResponseBody/timeShiftData/dataModule.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainTimeShiftDataResponseBody/timeShiftData/dataModule.php new file mode 100644 index 000000000..a08314c09 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainTimeShiftDataResponseBody/timeShiftData/dataModule.php @@ -0,0 +1,71 @@ + 'Size', + 'timeStamp' => 'TimeStamp', + 'type' => 'Type', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->size) { + $res['Size'] = $this->size; + } + if (null !== $this->timeStamp) { + $res['TimeStamp'] = $this->timeStamp; + } + if (null !== $this->type) { + $res['Type'] = $this->type; + } + + return $res; + } + + /** + * @param array $map + * + * @return dataModule + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Size'])) { + $model->size = $map['Size']; + } + if (isset($map['TimeStamp'])) { + $model->timeStamp = $map['TimeStamp']; + } + if (isset($map['Type'])) { + $model->type = $map['Type']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainTrafficDataRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainTrafficDataRequest.php new file mode 100644 index 000000000..b6d4ccaa1 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainTrafficDataRequest.php @@ -0,0 +1,119 @@ + 'DomainName', + 'endTime' => 'EndTime', + 'interval' => 'Interval', + 'ispNameEn' => 'IspNameEn', + 'locationNameEn' => 'LocationNameEn', + 'ownerId' => 'OwnerId', + 'startTime' => 'StartTime', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->endTime) { + $res['EndTime'] = $this->endTime; + } + if (null !== $this->interval) { + $res['Interval'] = $this->interval; + } + if (null !== $this->ispNameEn) { + $res['IspNameEn'] = $this->ispNameEn; + } + if (null !== $this->locationNameEn) { + $res['LocationNameEn'] = $this->locationNameEn; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->startTime) { + $res['StartTime'] = $this->startTime; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveDomainTrafficDataRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['EndTime'])) { + $model->endTime = $map['EndTime']; + } + if (isset($map['Interval'])) { + $model->interval = $map['Interval']; + } + if (isset($map['IspNameEn'])) { + $model->ispNameEn = $map['IspNameEn']; + } + if (isset($map['LocationNameEn'])) { + $model->locationNameEn = $map['LocationNameEn']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['StartTime'])) { + $model->startTime = $map['StartTime']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainTrafficDataResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainTrafficDataResponse.php new file mode 100644 index 000000000..dbd72aa66 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainTrafficDataResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveDomainTrafficDataResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DescribeLiveDomainTrafficDataResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainTrafficDataResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainTrafficDataResponseBody.php new file mode 100644 index 000000000..99a741cd6 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainTrafficDataResponseBody.php @@ -0,0 +1,108 @@ + 'DataInterval', + 'domainName' => 'DomainName', + 'endTime' => 'EndTime', + 'requestId' => 'RequestId', + 'startTime' => 'StartTime', + 'trafficDataPerInterval' => 'TrafficDataPerInterval', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->dataInterval) { + $res['DataInterval'] = $this->dataInterval; + } + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->endTime) { + $res['EndTime'] = $this->endTime; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->startTime) { + $res['StartTime'] = $this->startTime; + } + if (null !== $this->trafficDataPerInterval) { + $res['TrafficDataPerInterval'] = null !== $this->trafficDataPerInterval ? $this->trafficDataPerInterval->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveDomainTrafficDataResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DataInterval'])) { + $model->dataInterval = $map['DataInterval']; + } + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['EndTime'])) { + $model->endTime = $map['EndTime']; + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['StartTime'])) { + $model->startTime = $map['StartTime']; + } + if (isset($map['TrafficDataPerInterval'])) { + $model->trafficDataPerInterval = trafficDataPerInterval::fromMap($map['TrafficDataPerInterval']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainTrafficDataResponseBody/trafficDataPerInterval.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainTrafficDataResponseBody/trafficDataPerInterval.php new file mode 100644 index 000000000..bd36a2070 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainTrafficDataResponseBody/trafficDataPerInterval.php @@ -0,0 +1,60 @@ + 'DataModule', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->dataModule) { + $res['DataModule'] = []; + if (null !== $this->dataModule && \is_array($this->dataModule)) { + $n = 0; + foreach ($this->dataModule as $item) { + $res['DataModule'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return trafficDataPerInterval + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DataModule'])) { + if (!empty($map['DataModule'])) { + $model->dataModule = []; + $n = 0; + foreach ($map['DataModule'] as $item) { + $model->dataModule[$n++] = null !== $item ? dataModule::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainTrafficDataResponseBody/trafficDataPerInterval/dataModule.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainTrafficDataResponseBody/trafficDataPerInterval/dataModule.php new file mode 100644 index 000000000..afa584d77 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainTrafficDataResponseBody/trafficDataPerInterval/dataModule.php @@ -0,0 +1,83 @@ + 'HttpTrafficValue', + 'httpsTrafficValue' => 'HttpsTrafficValue', + 'timeStamp' => 'TimeStamp', + 'trafficValue' => 'TrafficValue', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->httpTrafficValue) { + $res['HttpTrafficValue'] = $this->httpTrafficValue; + } + if (null !== $this->httpsTrafficValue) { + $res['HttpsTrafficValue'] = $this->httpsTrafficValue; + } + if (null !== $this->timeStamp) { + $res['TimeStamp'] = $this->timeStamp; + } + if (null !== $this->trafficValue) { + $res['TrafficValue'] = $this->trafficValue; + } + + return $res; + } + + /** + * @param array $map + * + * @return dataModule + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['HttpTrafficValue'])) { + $model->httpTrafficValue = $map['HttpTrafficValue']; + } + if (isset($map['HttpsTrafficValue'])) { + $model->httpsTrafficValue = $map['HttpsTrafficValue']; + } + if (isset($map['TimeStamp'])) { + $model->timeStamp = $map['TimeStamp']; + } + if (isset($map['TrafficValue'])) { + $model->trafficValue = $map['TrafficValue']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainTranscodeDataRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainTranscodeDataRequest.php new file mode 100644 index 000000000..fb16e759f --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainTranscodeDataRequest.php @@ -0,0 +1,83 @@ + 'DomainName', + 'endTime' => 'EndTime', + 'ownerId' => 'OwnerId', + 'startTime' => 'StartTime', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->endTime) { + $res['EndTime'] = $this->endTime; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->startTime) { + $res['StartTime'] = $this->startTime; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveDomainTranscodeDataRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['EndTime'])) { + $model->endTime = $map['EndTime']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['StartTime'])) { + $model->startTime = $map['StartTime']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainTranscodeDataResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainTranscodeDataResponse.php new file mode 100644 index 000000000..1571eee01 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainTranscodeDataResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveDomainTranscodeDataResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DescribeLiveDomainTranscodeDataResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainTranscodeDataResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainTranscodeDataResponseBody.php new file mode 100644 index 000000000..7883a80a8 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainTranscodeDataResponseBody.php @@ -0,0 +1,60 @@ + 'RequestId', + 'transcodeDataInfos' => 'TranscodeDataInfos', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->transcodeDataInfos) { + $res['TranscodeDataInfos'] = null !== $this->transcodeDataInfos ? $this->transcodeDataInfos->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveDomainTranscodeDataResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['TranscodeDataInfos'])) { + $model->transcodeDataInfos = transcodeDataInfos::fromMap($map['TranscodeDataInfos']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainTranscodeDataResponseBody/transcodeDataInfos.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainTranscodeDataResponseBody/transcodeDataInfos.php new file mode 100644 index 000000000..a830afd0b --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainTranscodeDataResponseBody/transcodeDataInfos.php @@ -0,0 +1,60 @@ + 'TranscodeDataInfo', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->transcodeDataInfo) { + $res['TranscodeDataInfo'] = []; + if (null !== $this->transcodeDataInfo && \is_array($this->transcodeDataInfo)) { + $n = 0; + foreach ($this->transcodeDataInfo as $item) { + $res['TranscodeDataInfo'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return transcodeDataInfos + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['TranscodeDataInfo'])) { + if (!empty($map['TranscodeDataInfo'])) { + $model->transcodeDataInfo = []; + $n = 0; + foreach ($map['TranscodeDataInfo'] as $item) { + $model->transcodeDataInfo[$n++] = null !== $item ? transcodeDataInfo::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainTranscodeDataResponseBody/transcodeDataInfos/transcodeDataInfo.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainTranscodeDataResponseBody/transcodeDataInfos/transcodeDataInfo.php new file mode 100644 index 000000000..8b766f5b1 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDomainTranscodeDataResponseBody/transcodeDataInfos/transcodeDataInfo.php @@ -0,0 +1,71 @@ + 'Date', + 'detail' => 'Detail', + 'total' => 'Total', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->date) { + $res['Date'] = $this->date; + } + if (null !== $this->detail) { + $res['Detail'] = $this->detail; + } + if (null !== $this->total) { + $res['Total'] = $this->total; + } + + return $res; + } + + /** + * @param array $map + * + * @return transcodeDataInfo + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Date'])) { + $model->date = $map['Date']; + } + if (isset($map['Detail'])) { + $model->detail = $map['Detail']; + } + if (isset($map['Total'])) { + $model->total = $map['Total']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDrmUsageDataRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDrmUsageDataRequest.php new file mode 100644 index 000000000..fe7c7686e --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDrmUsageDataRequest.php @@ -0,0 +1,107 @@ + 'DomainName', + 'endTime' => 'EndTime', + 'interval' => 'Interval', + 'ownerId' => 'OwnerId', + 'splitBy' => 'SplitBy', + 'startTime' => 'StartTime', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->endTime) { + $res['EndTime'] = $this->endTime; + } + if (null !== $this->interval) { + $res['Interval'] = $this->interval; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->splitBy) { + $res['SplitBy'] = $this->splitBy; + } + if (null !== $this->startTime) { + $res['StartTime'] = $this->startTime; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveDrmUsageDataRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['EndTime'])) { + $model->endTime = $map['EndTime']; + } + if (isset($map['Interval'])) { + $model->interval = $map['Interval']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['SplitBy'])) { + $model->splitBy = $map['SplitBy']; + } + if (isset($map['StartTime'])) { + $model->startTime = $map['StartTime']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDrmUsageDataResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDrmUsageDataResponse.php new file mode 100644 index 000000000..d6106018b --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDrmUsageDataResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveDrmUsageDataResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DescribeLiveDrmUsageDataResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDrmUsageDataResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDrmUsageDataResponseBody.php new file mode 100644 index 000000000..dc638b55c --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDrmUsageDataResponseBody.php @@ -0,0 +1,60 @@ + 'DrmUsageData', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->drmUsageData) { + $res['DrmUsageData'] = null !== $this->drmUsageData ? $this->drmUsageData->toMap() : null; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveDrmUsageDataResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DrmUsageData'])) { + $model->drmUsageData = drmUsageData::fromMap($map['DrmUsageData']); + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDrmUsageDataResponseBody/drmUsageData.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDrmUsageDataResponseBody/drmUsageData.php new file mode 100644 index 000000000..d7a1f1853 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDrmUsageDataResponseBody/drmUsageData.php @@ -0,0 +1,60 @@ + 'DataModule', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->dataModule) { + $res['DataModule'] = []; + if (null !== $this->dataModule && \is_array($this->dataModule)) { + $n = 0; + foreach ($this->dataModule as $item) { + $res['DataModule'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return drmUsageData + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DataModule'])) { + if (!empty($map['DataModule'])) { + $model->dataModule = []; + $n = 0; + foreach ($map['DataModule'] as $item) { + $model->dataModule[$n++] = null !== $item ? dataModule::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDrmUsageDataResponseBody/drmUsageData/dataModule.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDrmUsageDataResponseBody/drmUsageData/dataModule.php new file mode 100644 index 000000000..433b488fe --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveDrmUsageDataResponseBody/drmUsageData/dataModule.php @@ -0,0 +1,95 @@ + 'Count', + 'domain' => 'Domain', + 'drmType' => 'DrmType', + 'region' => 'Region', + 'timeStamp' => 'TimeStamp', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->count) { + $res['Count'] = $this->count; + } + if (null !== $this->domain) { + $res['Domain'] = $this->domain; + } + if (null !== $this->drmType) { + $res['DrmType'] = $this->drmType; + } + if (null !== $this->region) { + $res['Region'] = $this->region; + } + if (null !== $this->timeStamp) { + $res['TimeStamp'] = $this->timeStamp; + } + + return $res; + } + + /** + * @param array $map + * + * @return dataModule + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Count'])) { + $model->count = $map['Count']; + } + if (isset($map['Domain'])) { + $model->domain = $map['Domain']; + } + if (isset($map['DrmType'])) { + $model->drmType = $map['DrmType']; + } + if (isset($map['Region'])) { + $model->region = $map['Region']; + } + if (isset($map['TimeStamp'])) { + $model->timeStamp = $map['TimeStamp']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveEdgeTransferRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveEdgeTransferRequest.php new file mode 100644 index 000000000..d257b6204 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveEdgeTransferRequest.php @@ -0,0 +1,59 @@ + 'DomainName', + 'ownerId' => 'OwnerId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveEdgeTransferRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveEdgeTransferResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveEdgeTransferResponse.php new file mode 100644 index 000000000..7a098d7b5 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveEdgeTransferResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveEdgeTransferResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DescribeLiveEdgeTransferResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveEdgeTransferResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveEdgeTransferResponseBody.php new file mode 100644 index 000000000..023b269d7 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveEdgeTransferResponseBody.php @@ -0,0 +1,119 @@ + 'AppName', + 'domainName' => 'DomainName', + 'httpDns' => 'HttpDns', + 'requestId' => 'RequestId', + 'streamName' => 'StreamName', + 'targetDomainList' => 'TargetDomainList', + 'transferArgs' => 'TransferArgs', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->appName) { + $res['AppName'] = $this->appName; + } + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->httpDns) { + $res['HttpDns'] = $this->httpDns; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->streamName) { + $res['StreamName'] = $this->streamName; + } + if (null !== $this->targetDomainList) { + $res['TargetDomainList'] = $this->targetDomainList; + } + if (null !== $this->transferArgs) { + $res['TransferArgs'] = $this->transferArgs; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveEdgeTransferResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppName'])) { + $model->appName = $map['AppName']; + } + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['HttpDns'])) { + $model->httpDns = $map['HttpDns']; + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['StreamName'])) { + $model->streamName = $map['StreamName']; + } + if (isset($map['TargetDomainList'])) { + $model->targetDomainList = $map['TargetDomainList']; + } + if (isset($map['TransferArgs'])) { + $model->transferArgs = $map['TransferArgs']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveLazyPullStreamConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveLazyPullStreamConfigRequest.php new file mode 100644 index 000000000..df152fbde --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveLazyPullStreamConfigRequest.php @@ -0,0 +1,71 @@ + 'AppName', + 'domainName' => 'DomainName', + 'ownerId' => 'OwnerId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->appName) { + $res['AppName'] = $this->appName; + } + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveLazyPullStreamConfigRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppName'])) { + $model->appName = $map['AppName']; + } + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveLazyPullStreamConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveLazyPullStreamConfigResponse.php new file mode 100644 index 000000000..cdebd6ea9 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveLazyPullStreamConfigResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveLazyPullStreamConfigResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DescribeLiveLazyPullStreamConfigResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveLazyPullStreamConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveLazyPullStreamConfigResponseBody.php new file mode 100644 index 000000000..328cee7fd --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveLazyPullStreamConfigResponseBody.php @@ -0,0 +1,60 @@ + 'LiveLazyPullConfigList', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->liveLazyPullConfigList) { + $res['LiveLazyPullConfigList'] = null !== $this->liveLazyPullConfigList ? $this->liveLazyPullConfigList->toMap() : null; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveLazyPullStreamConfigResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['LiveLazyPullConfigList'])) { + $model->liveLazyPullConfigList = liveLazyPullConfigList::fromMap($map['LiveLazyPullConfigList']); + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveLazyPullStreamConfigResponseBody/liveLazyPullConfigList.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveLazyPullStreamConfigResponseBody/liveLazyPullConfigList.php new file mode 100644 index 000000000..e5124e0ea --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveLazyPullStreamConfigResponseBody/liveLazyPullConfigList.php @@ -0,0 +1,60 @@ + 'LiveLazyPullConfig', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->liveLazyPullConfig) { + $res['LiveLazyPullConfig'] = []; + if (null !== $this->liveLazyPullConfig && \is_array($this->liveLazyPullConfig)) { + $n = 0; + foreach ($this->liveLazyPullConfig as $item) { + $res['LiveLazyPullConfig'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return liveLazyPullConfigList + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['LiveLazyPullConfig'])) { + if (!empty($map['LiveLazyPullConfig'])) { + $model->liveLazyPullConfig = []; + $n = 0; + foreach ($map['LiveLazyPullConfig'] as $item) { + $model->liveLazyPullConfig[$n++] = null !== $item ? liveLazyPullConfig::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveLazyPullStreamConfigResponseBody/liveLazyPullConfigList/liveLazyPullConfig.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveLazyPullStreamConfigResponseBody/liveLazyPullConfigList/liveLazyPullConfig.php new file mode 100644 index 000000000..b7ef50216 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveLazyPullStreamConfigResponseBody/liveLazyPullConfigList/liveLazyPullConfig.php @@ -0,0 +1,95 @@ + 'AppName', + 'domainName' => 'DomainName', + 'pullAppName' => 'PullAppName', + 'pullDomainName' => 'PullDomainName', + 'pullProtocol' => 'PullProtocol', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->appName) { + $res['AppName'] = $this->appName; + } + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->pullAppName) { + $res['PullAppName'] = $this->pullAppName; + } + if (null !== $this->pullDomainName) { + $res['PullDomainName'] = $this->pullDomainName; + } + if (null !== $this->pullProtocol) { + $res['PullProtocol'] = $this->pullProtocol; + } + + return $res; + } + + /** + * @param array $map + * + * @return liveLazyPullConfig + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppName'])) { + $model->appName = $map['AppName']; + } + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['PullAppName'])) { + $model->pullAppName = $map['PullAppName']; + } + if (isset($map['PullDomainName'])) { + $model->pullDomainName = $map['PullDomainName']; + } + if (isset($map['PullProtocol'])) { + $model->pullProtocol = $map['PullProtocol']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveProducerUsageDataRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveProducerUsageDataRequest.php new file mode 100644 index 000000000..f97879418 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveProducerUsageDataRequest.php @@ -0,0 +1,155 @@ + 'DomainName', + 'endTime' => 'EndTime', + 'instance' => 'Instance', + 'interval' => 'Interval', + 'ownerId' => 'OwnerId', + 'region' => 'Region', + 'splitBy' => 'SplitBy', + 'startTime' => 'StartTime', + 'type' => 'Type', + 'app' => 'app', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->endTime) { + $res['EndTime'] = $this->endTime; + } + if (null !== $this->instance) { + $res['Instance'] = $this->instance; + } + if (null !== $this->interval) { + $res['Interval'] = $this->interval; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->region) { + $res['Region'] = $this->region; + } + if (null !== $this->splitBy) { + $res['SplitBy'] = $this->splitBy; + } + if (null !== $this->startTime) { + $res['StartTime'] = $this->startTime; + } + if (null !== $this->type) { + $res['Type'] = $this->type; + } + if (null !== $this->app) { + $res['app'] = $this->app; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveProducerUsageDataRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['EndTime'])) { + $model->endTime = $map['EndTime']; + } + if (isset($map['Instance'])) { + $model->instance = $map['Instance']; + } + if (isset($map['Interval'])) { + $model->interval = $map['Interval']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['Region'])) { + $model->region = $map['Region']; + } + if (isset($map['SplitBy'])) { + $model->splitBy = $map['SplitBy']; + } + if (isset($map['StartTime'])) { + $model->startTime = $map['StartTime']; + } + if (isset($map['Type'])) { + $model->type = $map['Type']; + } + if (isset($map['app'])) { + $model->app = $map['app']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveProducerUsageDataResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveProducerUsageDataResponse.php new file mode 100644 index 000000000..ee69d6fd1 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveProducerUsageDataResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveProducerUsageDataResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DescribeLiveProducerUsageDataResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveProducerUsageDataResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveProducerUsageDataResponseBody.php new file mode 100644 index 000000000..c428ef45c --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveProducerUsageDataResponseBody.php @@ -0,0 +1,84 @@ + 'BillProducerData', + 'endTime' => 'EndTime', + 'requestId' => 'RequestId', + 'startTime' => 'StartTime', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->billProducerData) { + $res['BillProducerData'] = null !== $this->billProducerData ? $this->billProducerData->toMap() : null; + } + if (null !== $this->endTime) { + $res['EndTime'] = $this->endTime; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->startTime) { + $res['StartTime'] = $this->startTime; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveProducerUsageDataResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['BillProducerData'])) { + $model->billProducerData = billProducerData::fromMap($map['BillProducerData']); + } + if (isset($map['EndTime'])) { + $model->endTime = $map['EndTime']; + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['StartTime'])) { + $model->startTime = $map['StartTime']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveProducerUsageDataResponseBody/billProducerData.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveProducerUsageDataResponseBody/billProducerData.php new file mode 100644 index 000000000..162abeb62 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveProducerUsageDataResponseBody/billProducerData.php @@ -0,0 +1,60 @@ + 'BillProducerDataItem', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->billProducerDataItem) { + $res['BillProducerDataItem'] = []; + if (null !== $this->billProducerDataItem && \is_array($this->billProducerDataItem)) { + $n = 0; + foreach ($this->billProducerDataItem as $item) { + $res['BillProducerDataItem'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return billProducerData + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['BillProducerDataItem'])) { + if (!empty($map['BillProducerDataItem'])) { + $model->billProducerDataItem = []; + $n = 0; + foreach ($map['BillProducerDataItem'] as $item) { + $model->billProducerDataItem[$n++] = null !== $item ? billProducerDataItem::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveProducerUsageDataResponseBody/billProducerData/billProducerDataItem.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveProducerUsageDataResponseBody/billProducerData/billProducerDataItem.php new file mode 100644 index 000000000..c1fd9053d --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveProducerUsageDataResponseBody/billProducerData/billProducerDataItem.php @@ -0,0 +1,167 @@ + 'DomainName', + 'instance' => 'Instance', + 'outputHdDuration' => 'OutputHdDuration', + 'outputLdDuration' => 'OutputLdDuration', + 'outputSdDuration' => 'OutputSdDuration', + 'region' => 'Region', + 'timeStamp' => 'TimeStamp', + 'tranHdDuration' => 'TranHdDuration', + 'tranLdDuration' => 'TranLdDuration', + 'tranSdDuration' => 'TranSdDuration', + 'type' => 'Type', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->instance) { + $res['Instance'] = $this->instance; + } + if (null !== $this->outputHdDuration) { + $res['OutputHdDuration'] = $this->outputHdDuration; + } + if (null !== $this->outputLdDuration) { + $res['OutputLdDuration'] = $this->outputLdDuration; + } + if (null !== $this->outputSdDuration) { + $res['OutputSdDuration'] = $this->outputSdDuration; + } + if (null !== $this->region) { + $res['Region'] = $this->region; + } + if (null !== $this->timeStamp) { + $res['TimeStamp'] = $this->timeStamp; + } + if (null !== $this->tranHdDuration) { + $res['TranHdDuration'] = $this->tranHdDuration; + } + if (null !== $this->tranLdDuration) { + $res['TranLdDuration'] = $this->tranLdDuration; + } + if (null !== $this->tranSdDuration) { + $res['TranSdDuration'] = $this->tranSdDuration; + } + if (null !== $this->type) { + $res['Type'] = $this->type; + } + + return $res; + } + + /** + * @param array $map + * + * @return billProducerDataItem + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['Instance'])) { + $model->instance = $map['Instance']; + } + if (isset($map['OutputHdDuration'])) { + $model->outputHdDuration = $map['OutputHdDuration']; + } + if (isset($map['OutputLdDuration'])) { + $model->outputLdDuration = $map['OutputLdDuration']; + } + if (isset($map['OutputSdDuration'])) { + $model->outputSdDuration = $map['OutputSdDuration']; + } + if (isset($map['Region'])) { + $model->region = $map['Region']; + } + if (isset($map['TimeStamp'])) { + $model->timeStamp = $map['TimeStamp']; + } + if (isset($map['TranHdDuration'])) { + $model->tranHdDuration = $map['TranHdDuration']; + } + if (isset($map['TranLdDuration'])) { + $model->tranLdDuration = $map['TranLdDuration']; + } + if (isset($map['TranSdDuration'])) { + $model->tranSdDuration = $map['TranSdDuration']; + } + if (isset($map['Type'])) { + $model->type = $map['Type']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLivePullStreamConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLivePullStreamConfigRequest.php new file mode 100644 index 000000000..05fd66758 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLivePullStreamConfigRequest.php @@ -0,0 +1,59 @@ + 'DomainName', + 'ownerId' => 'OwnerId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLivePullStreamConfigRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLivePullStreamConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLivePullStreamConfigResponse.php new file mode 100644 index 000000000..2418f098d --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLivePullStreamConfigResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLivePullStreamConfigResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DescribeLivePullStreamConfigResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLivePullStreamConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLivePullStreamConfigResponseBody.php new file mode 100644 index 000000000..9c9a48c88 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLivePullStreamConfigResponseBody.php @@ -0,0 +1,60 @@ + 'LiveAppRecordList', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->liveAppRecordList) { + $res['LiveAppRecordList'] = null !== $this->liveAppRecordList ? $this->liveAppRecordList->toMap() : null; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLivePullStreamConfigResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['LiveAppRecordList'])) { + $model->liveAppRecordList = liveAppRecordList::fromMap($map['LiveAppRecordList']); + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLivePullStreamConfigResponseBody/liveAppRecordList.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLivePullStreamConfigResponseBody/liveAppRecordList.php new file mode 100644 index 000000000..1646723ff --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLivePullStreamConfigResponseBody/liveAppRecordList.php @@ -0,0 +1,60 @@ + 'LiveAppRecord', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->liveAppRecord) { + $res['LiveAppRecord'] = []; + if (null !== $this->liveAppRecord && \is_array($this->liveAppRecord)) { + $n = 0; + foreach ($this->liveAppRecord as $item) { + $res['LiveAppRecord'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return liveAppRecordList + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['LiveAppRecord'])) { + if (!empty($map['LiveAppRecord'])) { + $model->liveAppRecord = []; + $n = 0; + foreach ($map['LiveAppRecord'] as $item) { + $model->liveAppRecord[$n++] = null !== $item ? liveAppRecord::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLivePullStreamConfigResponseBody/liveAppRecordList/liveAppRecord.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLivePullStreamConfigResponseBody/liveAppRecordList/liveAppRecord.php new file mode 100644 index 000000000..4b40d796e --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLivePullStreamConfigResponseBody/liveAppRecordList/liveAppRecord.php @@ -0,0 +1,119 @@ + 'AppName', + 'domainName' => 'DomainName', + 'endTime' => 'EndTime', + 'sourceUrl' => 'SourceUrl', + 'sourceUsing' => 'SourceUsing', + 'startTime' => 'StartTime', + 'streamName' => 'StreamName', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->appName) { + $res['AppName'] = $this->appName; + } + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->endTime) { + $res['EndTime'] = $this->endTime; + } + if (null !== $this->sourceUrl) { + $res['SourceUrl'] = $this->sourceUrl; + } + if (null !== $this->sourceUsing) { + $res['SourceUsing'] = $this->sourceUsing; + } + if (null !== $this->startTime) { + $res['StartTime'] = $this->startTime; + } + if (null !== $this->streamName) { + $res['StreamName'] = $this->streamName; + } + + return $res; + } + + /** + * @param array $map + * + * @return liveAppRecord + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppName'])) { + $model->appName = $map['AppName']; + } + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['EndTime'])) { + $model->endTime = $map['EndTime']; + } + if (isset($map['SourceUrl'])) { + $model->sourceUrl = $map['SourceUrl']; + } + if (isset($map['SourceUsing'])) { + $model->sourceUsing = $map['SourceUsing']; + } + if (isset($map['StartTime'])) { + $model->startTime = $map['StartTime']; + } + if (isset($map['StreamName'])) { + $model->streamName = $map['StreamName']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRealtimeDeliveryAccRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRealtimeDeliveryAccRequest.php new file mode 100644 index 000000000..20334e084 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRealtimeDeliveryAccRequest.php @@ -0,0 +1,119 @@ + 'DomainName', + 'endTime' => 'EndTime', + 'interval' => 'Interval', + 'logStore' => 'LogStore', + 'ownerId' => 'OwnerId', + 'project' => 'Project', + 'startTime' => 'StartTime', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->endTime) { + $res['EndTime'] = $this->endTime; + } + if (null !== $this->interval) { + $res['Interval'] = $this->interval; + } + if (null !== $this->logStore) { + $res['LogStore'] = $this->logStore; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->project) { + $res['Project'] = $this->project; + } + if (null !== $this->startTime) { + $res['StartTime'] = $this->startTime; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveRealtimeDeliveryAccRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['EndTime'])) { + $model->endTime = $map['EndTime']; + } + if (isset($map['Interval'])) { + $model->interval = $map['Interval']; + } + if (isset($map['LogStore'])) { + $model->logStore = $map['LogStore']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['Project'])) { + $model->project = $map['Project']; + } + if (isset($map['StartTime'])) { + $model->startTime = $map['StartTime']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRealtimeDeliveryAccResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRealtimeDeliveryAccResponse.php new file mode 100644 index 000000000..498bd6124 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRealtimeDeliveryAccResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveRealtimeDeliveryAccResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DescribeLiveRealtimeDeliveryAccResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRealtimeDeliveryAccResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRealtimeDeliveryAccResponseBody.php new file mode 100644 index 000000000..54d6ebf72 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRealtimeDeliveryAccResponseBody.php @@ -0,0 +1,60 @@ + 'RealTimeDeliveryAccData', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->realTimeDeliveryAccData) { + $res['RealTimeDeliveryAccData'] = null !== $this->realTimeDeliveryAccData ? $this->realTimeDeliveryAccData->toMap() : null; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveRealtimeDeliveryAccResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RealTimeDeliveryAccData'])) { + $model->realTimeDeliveryAccData = realTimeDeliveryAccData::fromMap($map['RealTimeDeliveryAccData']); + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRealtimeDeliveryAccResponseBody/realTimeDeliveryAccData.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRealtimeDeliveryAccResponseBody/realTimeDeliveryAccData.php new file mode 100644 index 000000000..d1ee6e6e6 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRealtimeDeliveryAccResponseBody/realTimeDeliveryAccData.php @@ -0,0 +1,60 @@ + 'AccData', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->accData) { + $res['AccData'] = []; + if (null !== $this->accData && \is_array($this->accData)) { + $n = 0; + foreach ($this->accData as $item) { + $res['AccData'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return realTimeDeliveryAccData + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AccData'])) { + if (!empty($map['AccData'])) { + $model->accData = []; + $n = 0; + foreach ($map['AccData'] as $item) { + $model->accData[$n++] = null !== $item ? accData::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRealtimeDeliveryAccResponseBody/realTimeDeliveryAccData/accData.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRealtimeDeliveryAccResponseBody/realTimeDeliveryAccData/accData.php new file mode 100644 index 000000000..b8103e4a8 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRealtimeDeliveryAccResponseBody/realTimeDeliveryAccData/accData.php @@ -0,0 +1,71 @@ + 'FailedNum', + 'successNum' => 'SuccessNum', + 'timeStamp' => 'TimeStamp', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->failedNum) { + $res['FailedNum'] = $this->failedNum; + } + if (null !== $this->successNum) { + $res['SuccessNum'] = $this->successNum; + } + if (null !== $this->timeStamp) { + $res['TimeStamp'] = $this->timeStamp; + } + + return $res; + } + + /** + * @param array $map + * + * @return accData + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['FailedNum'])) { + $model->failedNum = $map['FailedNum']; + } + if (isset($map['SuccessNum'])) { + $model->successNum = $map['SuccessNum']; + } + if (isset($map['TimeStamp'])) { + $model->timeStamp = $map['TimeStamp']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRealtimeLogAuthorizedRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRealtimeLogAuthorizedRequest.php new file mode 100644 index 000000000..b075e7e08 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRealtimeLogAuthorizedRequest.php @@ -0,0 +1,59 @@ + 'LiveOpenapiReserve', + 'ownerId' => 'OwnerId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->liveOpenapiReserve) { + $res['LiveOpenapiReserve'] = $this->liveOpenapiReserve; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveRealtimeLogAuthorizedRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['LiveOpenapiReserve'])) { + $model->liveOpenapiReserve = $map['LiveOpenapiReserve']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRealtimeLogAuthorizedResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRealtimeLogAuthorizedResponse.php new file mode 100644 index 000000000..73bf5cdc4 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRealtimeLogAuthorizedResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveRealtimeLogAuthorizedResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DescribeLiveRealtimeLogAuthorizedResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRealtimeLogAuthorizedResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRealtimeLogAuthorizedResponseBody.php new file mode 100644 index 000000000..1808a4d53 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRealtimeLogAuthorizedResponseBody.php @@ -0,0 +1,59 @@ + 'AuthorizedStatus', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->authorizedStatus) { + $res['AuthorizedStatus'] = $this->authorizedStatus; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveRealtimeLogAuthorizedResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AuthorizedStatus'])) { + $model->authorizedStatus = $map['AuthorizedStatus']; + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRecordConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRecordConfigRequest.php new file mode 100644 index 000000000..1d20dab20 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRecordConfigRequest.php @@ -0,0 +1,131 @@ + 'AppName', + 'domainName' => 'DomainName', + 'order' => 'Order', + 'ownerId' => 'OwnerId', + 'pageNum' => 'PageNum', + 'pageSize' => 'PageSize', + 'securityToken' => 'SecurityToken', + 'streamName' => 'StreamName', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->appName) { + $res['AppName'] = $this->appName; + } + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->order) { + $res['Order'] = $this->order; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->pageNum) { + $res['PageNum'] = $this->pageNum; + } + if (null !== $this->pageSize) { + $res['PageSize'] = $this->pageSize; + } + if (null !== $this->securityToken) { + $res['SecurityToken'] = $this->securityToken; + } + if (null !== $this->streamName) { + $res['StreamName'] = $this->streamName; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveRecordConfigRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppName'])) { + $model->appName = $map['AppName']; + } + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['Order'])) { + $model->order = $map['Order']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['PageNum'])) { + $model->pageNum = $map['PageNum']; + } + if (isset($map['PageSize'])) { + $model->pageSize = $map['PageSize']; + } + if (isset($map['SecurityToken'])) { + $model->securityToken = $map['SecurityToken']; + } + if (isset($map['StreamName'])) { + $model->streamName = $map['StreamName']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRecordConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRecordConfigResponse.php new file mode 100644 index 000000000..8f824c7d4 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRecordConfigResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveRecordConfigResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DescribeLiveRecordConfigResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRecordConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRecordConfigResponseBody.php new file mode 100644 index 000000000..6cf4161fe --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRecordConfigResponseBody.php @@ -0,0 +1,120 @@ + 'LiveAppRecordList', + 'order' => 'Order', + 'pageNum' => 'PageNum', + 'pageSize' => 'PageSize', + 'requestId' => 'RequestId', + 'totalNum' => 'TotalNum', + 'totalPage' => 'TotalPage', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->liveAppRecordList) { + $res['LiveAppRecordList'] = null !== $this->liveAppRecordList ? $this->liveAppRecordList->toMap() : null; + } + if (null !== $this->order) { + $res['Order'] = $this->order; + } + if (null !== $this->pageNum) { + $res['PageNum'] = $this->pageNum; + } + if (null !== $this->pageSize) { + $res['PageSize'] = $this->pageSize; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->totalNum) { + $res['TotalNum'] = $this->totalNum; + } + if (null !== $this->totalPage) { + $res['TotalPage'] = $this->totalPage; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveRecordConfigResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['LiveAppRecordList'])) { + $model->liveAppRecordList = liveAppRecordList::fromMap($map['LiveAppRecordList']); + } + if (isset($map['Order'])) { + $model->order = $map['Order']; + } + if (isset($map['PageNum'])) { + $model->pageNum = $map['PageNum']; + } + if (isset($map['PageSize'])) { + $model->pageSize = $map['PageSize']; + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['TotalNum'])) { + $model->totalNum = $map['TotalNum']; + } + if (isset($map['TotalPage'])) { + $model->totalPage = $map['TotalPage']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRecordConfigResponseBody/liveAppRecordList.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRecordConfigResponseBody/liveAppRecordList.php new file mode 100644 index 000000000..3a690eec5 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRecordConfigResponseBody/liveAppRecordList.php @@ -0,0 +1,60 @@ + 'LiveAppRecord', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->liveAppRecord) { + $res['LiveAppRecord'] = []; + if (null !== $this->liveAppRecord && \is_array($this->liveAppRecord)) { + $n = 0; + foreach ($this->liveAppRecord as $item) { + $res['LiveAppRecord'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return liveAppRecordList + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['LiveAppRecord'])) { + if (!empty($map['LiveAppRecord'])) { + $model->liveAppRecord = []; + $n = 0; + foreach ($map['LiveAppRecord'] as $item) { + $model->liveAppRecord[$n++] = null !== $item ? liveAppRecord::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRecordConfigResponseBody/liveAppRecordList/liveAppRecord.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRecordConfigResponseBody/liveAppRecordList/liveAppRecord.php new file mode 100644 index 000000000..d47d48673 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRecordConfigResponseBody/liveAppRecordList/liveAppRecord.php @@ -0,0 +1,182 @@ + 'AppName', + 'createTime' => 'CreateTime', + 'domainName' => 'DomainName', + 'endTime' => 'EndTime', + 'onDemond' => 'OnDemond', + 'ossBucket' => 'OssBucket', + 'ossEndpoint' => 'OssEndpoint', + 'recordFormatList' => 'RecordFormatList', + 'startTime' => 'StartTime', + 'streamName' => 'StreamName', + 'transcodeRecordFormatList' => 'TranscodeRecordFormatList', + 'transcodeTemplates' => 'TranscodeTemplates', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->appName) { + $res['AppName'] = $this->appName; + } + if (null !== $this->createTime) { + $res['CreateTime'] = $this->createTime; + } + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->endTime) { + $res['EndTime'] = $this->endTime; + } + if (null !== $this->onDemond) { + $res['OnDemond'] = $this->onDemond; + } + if (null !== $this->ossBucket) { + $res['OssBucket'] = $this->ossBucket; + } + if (null !== $this->ossEndpoint) { + $res['OssEndpoint'] = $this->ossEndpoint; + } + if (null !== $this->recordFormatList) { + $res['RecordFormatList'] = null !== $this->recordFormatList ? $this->recordFormatList->toMap() : null; + } + if (null !== $this->startTime) { + $res['StartTime'] = $this->startTime; + } + if (null !== $this->streamName) { + $res['StreamName'] = $this->streamName; + } + if (null !== $this->transcodeRecordFormatList) { + $res['TranscodeRecordFormatList'] = null !== $this->transcodeRecordFormatList ? $this->transcodeRecordFormatList->toMap() : null; + } + if (null !== $this->transcodeTemplates) { + $res['TranscodeTemplates'] = null !== $this->transcodeTemplates ? $this->transcodeTemplates->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return liveAppRecord + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppName'])) { + $model->appName = $map['AppName']; + } + if (isset($map['CreateTime'])) { + $model->createTime = $map['CreateTime']; + } + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['EndTime'])) { + $model->endTime = $map['EndTime']; + } + if (isset($map['OnDemond'])) { + $model->onDemond = $map['OnDemond']; + } + if (isset($map['OssBucket'])) { + $model->ossBucket = $map['OssBucket']; + } + if (isset($map['OssEndpoint'])) { + $model->ossEndpoint = $map['OssEndpoint']; + } + if (isset($map['RecordFormatList'])) { + $model->recordFormatList = recordFormatList::fromMap($map['RecordFormatList']); + } + if (isset($map['StartTime'])) { + $model->startTime = $map['StartTime']; + } + if (isset($map['StreamName'])) { + $model->streamName = $map['StreamName']; + } + if (isset($map['TranscodeRecordFormatList'])) { + $model->transcodeRecordFormatList = transcodeRecordFormatList::fromMap($map['TranscodeRecordFormatList']); + } + if (isset($map['TranscodeTemplates'])) { + $model->transcodeTemplates = transcodeTemplates::fromMap($map['TranscodeTemplates']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRecordConfigResponseBody/liveAppRecordList/liveAppRecord/recordFormatList.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRecordConfigResponseBody/liveAppRecordList/liveAppRecord/recordFormatList.php new file mode 100644 index 000000000..74ae5acd1 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRecordConfigResponseBody/liveAppRecordList/liveAppRecord/recordFormatList.php @@ -0,0 +1,60 @@ + 'RecordFormat', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->recordFormat) { + $res['RecordFormat'] = []; + if (null !== $this->recordFormat && \is_array($this->recordFormat)) { + $n = 0; + foreach ($this->recordFormat as $item) { + $res['RecordFormat'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return recordFormatList + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RecordFormat'])) { + if (!empty($map['RecordFormat'])) { + $model->recordFormat = []; + $n = 0; + foreach ($map['RecordFormat'] as $item) { + $model->recordFormat[$n++] = null !== $item ? recordFormat::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRecordConfigResponseBody/liveAppRecordList/liveAppRecord/recordFormatList/recordFormat.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRecordConfigResponseBody/liveAppRecordList/liveAppRecord/recordFormatList/recordFormat.php new file mode 100644 index 000000000..7143e063c --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRecordConfigResponseBody/liveAppRecordList/liveAppRecord/recordFormatList/recordFormat.php @@ -0,0 +1,95 @@ + 'CycleDuration', + 'format' => 'Format', + 'ossObjectPrefix' => 'OssObjectPrefix', + 'sliceDuration' => 'SliceDuration', + 'sliceOssObjectPrefix' => 'SliceOssObjectPrefix', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->cycleDuration) { + $res['CycleDuration'] = $this->cycleDuration; + } + if (null !== $this->format) { + $res['Format'] = $this->format; + } + if (null !== $this->ossObjectPrefix) { + $res['OssObjectPrefix'] = $this->ossObjectPrefix; + } + if (null !== $this->sliceDuration) { + $res['SliceDuration'] = $this->sliceDuration; + } + if (null !== $this->sliceOssObjectPrefix) { + $res['SliceOssObjectPrefix'] = $this->sliceOssObjectPrefix; + } + + return $res; + } + + /** + * @param array $map + * + * @return recordFormat + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CycleDuration'])) { + $model->cycleDuration = $map['CycleDuration']; + } + if (isset($map['Format'])) { + $model->format = $map['Format']; + } + if (isset($map['OssObjectPrefix'])) { + $model->ossObjectPrefix = $map['OssObjectPrefix']; + } + if (isset($map['SliceDuration'])) { + $model->sliceDuration = $map['SliceDuration']; + } + if (isset($map['SliceOssObjectPrefix'])) { + $model->sliceOssObjectPrefix = $map['SliceOssObjectPrefix']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRecordConfigResponseBody/liveAppRecordList/liveAppRecord/transcodeRecordFormatList.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRecordConfigResponseBody/liveAppRecordList/liveAppRecord/transcodeRecordFormatList.php new file mode 100644 index 000000000..dfb847df2 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRecordConfigResponseBody/liveAppRecordList/liveAppRecord/transcodeRecordFormatList.php @@ -0,0 +1,60 @@ + 'RecordFormat', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->recordFormat) { + $res['RecordFormat'] = []; + if (null !== $this->recordFormat && \is_array($this->recordFormat)) { + $n = 0; + foreach ($this->recordFormat as $item) { + $res['RecordFormat'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return transcodeRecordFormatList + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RecordFormat'])) { + if (!empty($map['RecordFormat'])) { + $model->recordFormat = []; + $n = 0; + foreach ($map['RecordFormat'] as $item) { + $model->recordFormat[$n++] = null !== $item ? recordFormat::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRecordConfigResponseBody/liveAppRecordList/liveAppRecord/transcodeRecordFormatList/recordFormat.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRecordConfigResponseBody/liveAppRecordList/liveAppRecord/transcodeRecordFormatList/recordFormat.php new file mode 100644 index 000000000..63f1b5f0a --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRecordConfigResponseBody/liveAppRecordList/liveAppRecord/transcodeRecordFormatList/recordFormat.php @@ -0,0 +1,95 @@ + 'CycleDuration', + 'format' => 'Format', + 'ossObjectPrefix' => 'OssObjectPrefix', + 'sliceDuration' => 'SliceDuration', + 'sliceOssObjectPrefix' => 'SliceOssObjectPrefix', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->cycleDuration) { + $res['CycleDuration'] = $this->cycleDuration; + } + if (null !== $this->format) { + $res['Format'] = $this->format; + } + if (null !== $this->ossObjectPrefix) { + $res['OssObjectPrefix'] = $this->ossObjectPrefix; + } + if (null !== $this->sliceDuration) { + $res['SliceDuration'] = $this->sliceDuration; + } + if (null !== $this->sliceOssObjectPrefix) { + $res['SliceOssObjectPrefix'] = $this->sliceOssObjectPrefix; + } + + return $res; + } + + /** + * @param array $map + * + * @return recordFormat + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CycleDuration'])) { + $model->cycleDuration = $map['CycleDuration']; + } + if (isset($map['Format'])) { + $model->format = $map['Format']; + } + if (isset($map['OssObjectPrefix'])) { + $model->ossObjectPrefix = $map['OssObjectPrefix']; + } + if (isset($map['SliceDuration'])) { + $model->sliceDuration = $map['SliceDuration']; + } + if (isset($map['SliceOssObjectPrefix'])) { + $model->sliceOssObjectPrefix = $map['SliceOssObjectPrefix']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRecordConfigResponseBody/liveAppRecordList/liveAppRecord/transcodeTemplates.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRecordConfigResponseBody/liveAppRecordList/liveAppRecord/transcodeTemplates.php new file mode 100644 index 000000000..5ab9f09b7 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRecordConfigResponseBody/liveAppRecordList/liveAppRecord/transcodeTemplates.php @@ -0,0 +1,49 @@ + 'Templates', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->templates) { + $res['Templates'] = $this->templates; + } + + return $res; + } + + /** + * @param array $map + * + * @return transcodeTemplates + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Templates'])) { + if (!empty($map['Templates'])) { + $model->templates = $map['Templates']; + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRecordNotifyConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRecordNotifyConfigRequest.php new file mode 100644 index 000000000..ad783fc69 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRecordNotifyConfigRequest.php @@ -0,0 +1,71 @@ + 'DomainName', + 'ownerId' => 'OwnerId', + 'securityToken' => 'SecurityToken', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->securityToken) { + $res['SecurityToken'] = $this->securityToken; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveRecordNotifyConfigRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['SecurityToken'])) { + $model->securityToken = $map['SecurityToken']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRecordNotifyConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRecordNotifyConfigResponse.php new file mode 100644 index 000000000..81d60e0c9 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRecordNotifyConfigResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveRecordNotifyConfigResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DescribeLiveRecordNotifyConfigResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRecordNotifyConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRecordNotifyConfigResponseBody.php new file mode 100644 index 000000000..1d3394582 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRecordNotifyConfigResponseBody.php @@ -0,0 +1,60 @@ + 'LiveRecordNotifyConfig', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->liveRecordNotifyConfig) { + $res['LiveRecordNotifyConfig'] = null !== $this->liveRecordNotifyConfig ? $this->liveRecordNotifyConfig->toMap() : null; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveRecordNotifyConfigResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['LiveRecordNotifyConfig'])) { + $model->liveRecordNotifyConfig = liveRecordNotifyConfig::fromMap($map['LiveRecordNotifyConfig']); + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRecordNotifyConfigResponseBody/liveRecordNotifyConfig.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRecordNotifyConfigResponseBody/liveRecordNotifyConfig.php new file mode 100644 index 000000000..950843a27 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRecordNotifyConfigResponseBody/liveRecordNotifyConfig.php @@ -0,0 +1,83 @@ + 'DomainName', + 'needStatusNotify' => 'NeedStatusNotify', + 'notifyUrl' => 'NotifyUrl', + 'onDemandUrl' => 'OnDemandUrl', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->needStatusNotify) { + $res['NeedStatusNotify'] = $this->needStatusNotify; + } + if (null !== $this->notifyUrl) { + $res['NotifyUrl'] = $this->notifyUrl; + } + if (null !== $this->onDemandUrl) { + $res['OnDemandUrl'] = $this->onDemandUrl; + } + + return $res; + } + + /** + * @param array $map + * + * @return liveRecordNotifyConfig + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['NeedStatusNotify'])) { + $model->needStatusNotify = $map['NeedStatusNotify']; + } + if (isset($map['NotifyUrl'])) { + $model->notifyUrl = $map['NotifyUrl']; + } + if (isset($map['OnDemandUrl'])) { + $model->onDemandUrl = $map['OnDemandUrl']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRecordVodConfigsRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRecordVodConfigsRequest.php new file mode 100644 index 000000000..08136ba32 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRecordVodConfigsRequest.php @@ -0,0 +1,107 @@ + 'AppName', + 'domainName' => 'DomainName', + 'ownerId' => 'OwnerId', + 'pageNum' => 'PageNum', + 'pageSize' => 'PageSize', + 'streamName' => 'StreamName', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->appName) { + $res['AppName'] = $this->appName; + } + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->pageNum) { + $res['PageNum'] = $this->pageNum; + } + if (null !== $this->pageSize) { + $res['PageSize'] = $this->pageSize; + } + if (null !== $this->streamName) { + $res['StreamName'] = $this->streamName; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveRecordVodConfigsRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppName'])) { + $model->appName = $map['AppName']; + } + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['PageNum'])) { + $model->pageNum = $map['PageNum']; + } + if (isset($map['PageSize'])) { + $model->pageSize = $map['PageSize']; + } + if (isset($map['StreamName'])) { + $model->streamName = $map['StreamName']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRecordVodConfigsResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRecordVodConfigsResponse.php new file mode 100644 index 000000000..c4a18dc0a --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRecordVodConfigsResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveRecordVodConfigsResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DescribeLiveRecordVodConfigsResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRecordVodConfigsResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRecordVodConfigsResponseBody.php new file mode 100644 index 000000000..bff3ca35a --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRecordVodConfigsResponseBody.php @@ -0,0 +1,96 @@ + 'LiveRecordVodConfigs', + 'pageNum' => 'PageNum', + 'pageSize' => 'PageSize', + 'requestId' => 'RequestId', + 'total' => 'Total', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->liveRecordVodConfigs) { + $res['LiveRecordVodConfigs'] = null !== $this->liveRecordVodConfigs ? $this->liveRecordVodConfigs->toMap() : null; + } + if (null !== $this->pageNum) { + $res['PageNum'] = $this->pageNum; + } + if (null !== $this->pageSize) { + $res['PageSize'] = $this->pageSize; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->total) { + $res['Total'] = $this->total; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveRecordVodConfigsResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['LiveRecordVodConfigs'])) { + $model->liveRecordVodConfigs = liveRecordVodConfigs::fromMap($map['LiveRecordVodConfigs']); + } + if (isset($map['PageNum'])) { + $model->pageNum = $map['PageNum']; + } + if (isset($map['PageSize'])) { + $model->pageSize = $map['PageSize']; + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['Total'])) { + $model->total = $map['Total']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRecordVodConfigsResponseBody/liveRecordVodConfigs.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRecordVodConfigsResponseBody/liveRecordVodConfigs.php new file mode 100644 index 000000000..7926963cc --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRecordVodConfigsResponseBody/liveRecordVodConfigs.php @@ -0,0 +1,60 @@ + 'LiveRecordVodConfig', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->liveRecordVodConfig) { + $res['LiveRecordVodConfig'] = []; + if (null !== $this->liveRecordVodConfig && \is_array($this->liveRecordVodConfig)) { + $n = 0; + foreach ($this->liveRecordVodConfig as $item) { + $res['LiveRecordVodConfig'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return liveRecordVodConfigs + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['LiveRecordVodConfig'])) { + if (!empty($map['LiveRecordVodConfig'])) { + $model->liveRecordVodConfig = []; + $n = 0; + foreach ($map['LiveRecordVodConfig'] as $item) { + $model->liveRecordVodConfig[$n++] = null !== $item ? liveRecordVodConfig::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRecordVodConfigsResponseBody/liveRecordVodConfigs/liveRecordVodConfig.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRecordVodConfigsResponseBody/liveRecordVodConfigs/liveRecordVodConfig.php new file mode 100644 index 000000000..2dec957af --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveRecordVodConfigsResponseBody/liveRecordVodConfigs/liveRecordVodConfig.php @@ -0,0 +1,131 @@ + 'AppName', + 'autoCompose' => 'AutoCompose', + 'composeVodTranscodeGroupId' => 'ComposeVodTranscodeGroupId', + 'createTime' => 'CreateTime', + 'cycleDuration' => 'CycleDuration', + 'domainName' => 'DomainName', + 'streamName' => 'StreamName', + 'vodTranscodeGroupId' => 'VodTranscodeGroupId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->appName) { + $res['AppName'] = $this->appName; + } + if (null !== $this->autoCompose) { + $res['AutoCompose'] = $this->autoCompose; + } + if (null !== $this->composeVodTranscodeGroupId) { + $res['ComposeVodTranscodeGroupId'] = $this->composeVodTranscodeGroupId; + } + if (null !== $this->createTime) { + $res['CreateTime'] = $this->createTime; + } + if (null !== $this->cycleDuration) { + $res['CycleDuration'] = $this->cycleDuration; + } + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->streamName) { + $res['StreamName'] = $this->streamName; + } + if (null !== $this->vodTranscodeGroupId) { + $res['VodTranscodeGroupId'] = $this->vodTranscodeGroupId; + } + + return $res; + } + + /** + * @param array $map + * + * @return liveRecordVodConfig + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppName'])) { + $model->appName = $map['AppName']; + } + if (isset($map['AutoCompose'])) { + $model->autoCompose = $map['AutoCompose']; + } + if (isset($map['ComposeVodTranscodeGroupId'])) { + $model->composeVodTranscodeGroupId = $map['ComposeVodTranscodeGroupId']; + } + if (isset($map['CreateTime'])) { + $model->createTime = $map['CreateTime']; + } + if (isset($map['CycleDuration'])) { + $model->cycleDuration = $map['CycleDuration']; + } + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['StreamName'])) { + $model->streamName = $map['StreamName']; + } + if (isset($map['VodTranscodeGroupId'])) { + $model->vodTranscodeGroupId = $map['VodTranscodeGroupId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveShiftConfigsRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveShiftConfigsRequest.php new file mode 100644 index 000000000..e4efd8976 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveShiftConfigsRequest.php @@ -0,0 +1,59 @@ + 'DomainName', + 'ownerId' => 'OwnerId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveShiftConfigsRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveShiftConfigsResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveShiftConfigsResponse.php new file mode 100644 index 000000000..40b9fbdff --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveShiftConfigsResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveShiftConfigsResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DescribeLiveShiftConfigsResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveShiftConfigsResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveShiftConfigsResponseBody.php new file mode 100644 index 000000000..44a5698bd --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveShiftConfigsResponseBody.php @@ -0,0 +1,60 @@ + 'Content', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->content) { + $res['Content'] = null !== $this->content ? $this->content->toMap() : null; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveShiftConfigsResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Content'])) { + $model->content = content::fromMap($map['Content']); + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveShiftConfigsResponseBody/content.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveShiftConfigsResponseBody/content.php new file mode 100644 index 000000000..57117ad3a --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveShiftConfigsResponseBody/content.php @@ -0,0 +1,60 @@ + 'Config', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->config) { + $res['Config'] = []; + if (null !== $this->config && \is_array($this->config)) { + $n = 0; + foreach ($this->config as $item) { + $res['Config'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return content + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Config'])) { + if (!empty($map['Config'])) { + $model->config = []; + $n = 0; + foreach ($map['Config'] as $item) { + $model->config[$n++] = null !== $item ? config::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveShiftConfigsResponseBody/content/config.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveShiftConfigsResponseBody/content/config.php new file mode 100644 index 000000000..e74ea8afc --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveShiftConfigsResponseBody/content/config.php @@ -0,0 +1,95 @@ + 'AppName', + 'domainName' => 'DomainName', + 'ignoreTranscode' => 'IgnoreTranscode', + 'streamName' => 'StreamName', + 'vision' => 'Vision', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->appName) { + $res['AppName'] = $this->appName; + } + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->ignoreTranscode) { + $res['IgnoreTranscode'] = $this->ignoreTranscode; + } + if (null !== $this->streamName) { + $res['StreamName'] = $this->streamName; + } + if (null !== $this->vision) { + $res['Vision'] = $this->vision; + } + + return $res; + } + + /** + * @param array $map + * + * @return config + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppName'])) { + $model->appName = $map['AppName']; + } + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['IgnoreTranscode'])) { + $model->ignoreTranscode = $map['IgnoreTranscode']; + } + if (isset($map['StreamName'])) { + $model->streamName = $map['StreamName']; + } + if (isset($map['Vision'])) { + $model->vision = $map['Vision']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveSnapshotConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveSnapshotConfigRequest.php new file mode 100644 index 000000000..0ca1861da --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveSnapshotConfigRequest.php @@ -0,0 +1,119 @@ + 'AppName', + 'domainName' => 'DomainName', + 'order' => 'Order', + 'ownerId' => 'OwnerId', + 'pageNum' => 'PageNum', + 'pageSize' => 'PageSize', + 'securityToken' => 'SecurityToken', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->appName) { + $res['AppName'] = $this->appName; + } + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->order) { + $res['Order'] = $this->order; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->pageNum) { + $res['PageNum'] = $this->pageNum; + } + if (null !== $this->pageSize) { + $res['PageSize'] = $this->pageSize; + } + if (null !== $this->securityToken) { + $res['SecurityToken'] = $this->securityToken; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveSnapshotConfigRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppName'])) { + $model->appName = $map['AppName']; + } + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['Order'])) { + $model->order = $map['Order']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['PageNum'])) { + $model->pageNum = $map['PageNum']; + } + if (isset($map['PageSize'])) { + $model->pageSize = $map['PageSize']; + } + if (isset($map['SecurityToken'])) { + $model->securityToken = $map['SecurityToken']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveSnapshotConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveSnapshotConfigResponse.php new file mode 100644 index 000000000..28e1fdecb --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveSnapshotConfigResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveSnapshotConfigResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DescribeLiveSnapshotConfigResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveSnapshotConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveSnapshotConfigResponseBody.php new file mode 100644 index 000000000..2d50cbcb2 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveSnapshotConfigResponseBody.php @@ -0,0 +1,120 @@ + 'LiveStreamSnapshotConfigList', + 'order' => 'Order', + 'pageNum' => 'PageNum', + 'pageSize' => 'PageSize', + 'requestId' => 'RequestId', + 'totalNum' => 'TotalNum', + 'totalPage' => 'TotalPage', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->liveStreamSnapshotConfigList) { + $res['LiveStreamSnapshotConfigList'] = null !== $this->liveStreamSnapshotConfigList ? $this->liveStreamSnapshotConfigList->toMap() : null; + } + if (null !== $this->order) { + $res['Order'] = $this->order; + } + if (null !== $this->pageNum) { + $res['PageNum'] = $this->pageNum; + } + if (null !== $this->pageSize) { + $res['PageSize'] = $this->pageSize; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->totalNum) { + $res['TotalNum'] = $this->totalNum; + } + if (null !== $this->totalPage) { + $res['TotalPage'] = $this->totalPage; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveSnapshotConfigResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['LiveStreamSnapshotConfigList'])) { + $model->liveStreamSnapshotConfigList = liveStreamSnapshotConfigList::fromMap($map['LiveStreamSnapshotConfigList']); + } + if (isset($map['Order'])) { + $model->order = $map['Order']; + } + if (isset($map['PageNum'])) { + $model->pageNum = $map['PageNum']; + } + if (isset($map['PageSize'])) { + $model->pageSize = $map['PageSize']; + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['TotalNum'])) { + $model->totalNum = $map['TotalNum']; + } + if (isset($map['TotalPage'])) { + $model->totalPage = $map['TotalPage']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveSnapshotConfigResponseBody/liveStreamSnapshotConfigList.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveSnapshotConfigResponseBody/liveStreamSnapshotConfigList.php new file mode 100644 index 000000000..07c35cb9a --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveSnapshotConfigResponseBody/liveStreamSnapshotConfigList.php @@ -0,0 +1,60 @@ + 'LiveStreamSnapshotConfig', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->liveStreamSnapshotConfig) { + $res['LiveStreamSnapshotConfig'] = []; + if (null !== $this->liveStreamSnapshotConfig && \is_array($this->liveStreamSnapshotConfig)) { + $n = 0; + foreach ($this->liveStreamSnapshotConfig as $item) { + $res['LiveStreamSnapshotConfig'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return liveStreamSnapshotConfigList + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['LiveStreamSnapshotConfig'])) { + if (!empty($map['LiveStreamSnapshotConfig'])) { + $model->liveStreamSnapshotConfig = []; + $n = 0; + foreach ($map['LiveStreamSnapshotConfig'] as $item) { + $model->liveStreamSnapshotConfig[$n++] = null !== $item ? liveStreamSnapshotConfig::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveSnapshotConfigResponseBody/liveStreamSnapshotConfigList/liveStreamSnapshotConfig.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveSnapshotConfigResponseBody/liveStreamSnapshotConfigList/liveStreamSnapshotConfig.php new file mode 100644 index 000000000..56b7b3b14 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveSnapshotConfigResponseBody/liveStreamSnapshotConfigList/liveStreamSnapshotConfig.php @@ -0,0 +1,143 @@ + 'AppName', + 'callback' => 'Callback', + 'createTime' => 'CreateTime', + 'domainName' => 'DomainName', + 'ossBucket' => 'OssBucket', + 'ossEndpoint' => 'OssEndpoint', + 'overwriteOssObject' => 'OverwriteOssObject', + 'sequenceOssObject' => 'SequenceOssObject', + 'timeInterval' => 'TimeInterval', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->appName) { + $res['AppName'] = $this->appName; + } + if (null !== $this->callback) { + $res['Callback'] = $this->callback; + } + if (null !== $this->createTime) { + $res['CreateTime'] = $this->createTime; + } + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->ossBucket) { + $res['OssBucket'] = $this->ossBucket; + } + if (null !== $this->ossEndpoint) { + $res['OssEndpoint'] = $this->ossEndpoint; + } + if (null !== $this->overwriteOssObject) { + $res['OverwriteOssObject'] = $this->overwriteOssObject; + } + if (null !== $this->sequenceOssObject) { + $res['SequenceOssObject'] = $this->sequenceOssObject; + } + if (null !== $this->timeInterval) { + $res['TimeInterval'] = $this->timeInterval; + } + + return $res; + } + + /** + * @param array $map + * + * @return liveStreamSnapshotConfig + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppName'])) { + $model->appName = $map['AppName']; + } + if (isset($map['Callback'])) { + $model->callback = $map['Callback']; + } + if (isset($map['CreateTime'])) { + $model->createTime = $map['CreateTime']; + } + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['OssBucket'])) { + $model->ossBucket = $map['OssBucket']; + } + if (isset($map['OssEndpoint'])) { + $model->ossEndpoint = $map['OssEndpoint']; + } + if (isset($map['OverwriteOssObject'])) { + $model->overwriteOssObject = $map['OverwriteOssObject']; + } + if (isset($map['SequenceOssObject'])) { + $model->sequenceOssObject = $map['SequenceOssObject']; + } + if (isset($map['TimeInterval'])) { + $model->timeInterval = $map['TimeInterval']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveSnapshotDetectPornConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveSnapshotDetectPornConfigRequest.php new file mode 100644 index 000000000..6c8cb50ce --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveSnapshotDetectPornConfigRequest.php @@ -0,0 +1,119 @@ + 'AppName', + 'domainName' => 'DomainName', + 'order' => 'Order', + 'ownerId' => 'OwnerId', + 'pageNum' => 'PageNum', + 'pageSize' => 'PageSize', + 'securityToken' => 'SecurityToken', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->appName) { + $res['AppName'] = $this->appName; + } + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->order) { + $res['Order'] = $this->order; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->pageNum) { + $res['PageNum'] = $this->pageNum; + } + if (null !== $this->pageSize) { + $res['PageSize'] = $this->pageSize; + } + if (null !== $this->securityToken) { + $res['SecurityToken'] = $this->securityToken; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveSnapshotDetectPornConfigRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppName'])) { + $model->appName = $map['AppName']; + } + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['Order'])) { + $model->order = $map['Order']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['PageNum'])) { + $model->pageNum = $map['PageNum']; + } + if (isset($map['PageSize'])) { + $model->pageSize = $map['PageSize']; + } + if (isset($map['SecurityToken'])) { + $model->securityToken = $map['SecurityToken']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveSnapshotDetectPornConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveSnapshotDetectPornConfigResponse.php new file mode 100644 index 000000000..96e9a46df --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveSnapshotDetectPornConfigResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveSnapshotDetectPornConfigResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DescribeLiveSnapshotDetectPornConfigResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveSnapshotDetectPornConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveSnapshotDetectPornConfigResponseBody.php new file mode 100644 index 000000000..bf64654db --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveSnapshotDetectPornConfigResponseBody.php @@ -0,0 +1,120 @@ + 'LiveSnapshotDetectPornConfigList', + 'order' => 'Order', + 'pageNum' => 'PageNum', + 'pageSize' => 'PageSize', + 'requestId' => 'RequestId', + 'totalNum' => 'TotalNum', + 'totalPage' => 'TotalPage', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->liveSnapshotDetectPornConfigList) { + $res['LiveSnapshotDetectPornConfigList'] = null !== $this->liveSnapshotDetectPornConfigList ? $this->liveSnapshotDetectPornConfigList->toMap() : null; + } + if (null !== $this->order) { + $res['Order'] = $this->order; + } + if (null !== $this->pageNum) { + $res['PageNum'] = $this->pageNum; + } + if (null !== $this->pageSize) { + $res['PageSize'] = $this->pageSize; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->totalNum) { + $res['TotalNum'] = $this->totalNum; + } + if (null !== $this->totalPage) { + $res['TotalPage'] = $this->totalPage; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveSnapshotDetectPornConfigResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['LiveSnapshotDetectPornConfigList'])) { + $model->liveSnapshotDetectPornConfigList = liveSnapshotDetectPornConfigList::fromMap($map['LiveSnapshotDetectPornConfigList']); + } + if (isset($map['Order'])) { + $model->order = $map['Order']; + } + if (isset($map['PageNum'])) { + $model->pageNum = $map['PageNum']; + } + if (isset($map['PageSize'])) { + $model->pageSize = $map['PageSize']; + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['TotalNum'])) { + $model->totalNum = $map['TotalNum']; + } + if (isset($map['TotalPage'])) { + $model->totalPage = $map['TotalPage']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveSnapshotDetectPornConfigResponseBody/liveSnapshotDetectPornConfigList.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveSnapshotDetectPornConfigResponseBody/liveSnapshotDetectPornConfigList.php new file mode 100644 index 000000000..c19d50907 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveSnapshotDetectPornConfigResponseBody/liveSnapshotDetectPornConfigList.php @@ -0,0 +1,60 @@ + 'LiveSnapshotDetectPornConfig', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->liveSnapshotDetectPornConfig) { + $res['LiveSnapshotDetectPornConfig'] = []; + if (null !== $this->liveSnapshotDetectPornConfig && \is_array($this->liveSnapshotDetectPornConfig)) { + $n = 0; + foreach ($this->liveSnapshotDetectPornConfig as $item) { + $res['LiveSnapshotDetectPornConfig'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return liveSnapshotDetectPornConfigList + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['LiveSnapshotDetectPornConfig'])) { + if (!empty($map['LiveSnapshotDetectPornConfig'])) { + $model->liveSnapshotDetectPornConfig = []; + $n = 0; + foreach ($map['LiveSnapshotDetectPornConfig'] as $item) { + $model->liveSnapshotDetectPornConfig[$n++] = null !== $item ? liveSnapshotDetectPornConfig::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveSnapshotDetectPornConfigResponseBody/liveSnapshotDetectPornConfigList/liveSnapshotDetectPornConfig.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveSnapshotDetectPornConfigResponseBody/liveSnapshotDetectPornConfigList/liveSnapshotDetectPornConfig.php new file mode 100644 index 000000000..24661a373 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveSnapshotDetectPornConfigResponseBody/liveSnapshotDetectPornConfigList/liveSnapshotDetectPornConfig.php @@ -0,0 +1,120 @@ + 'AppName', + 'domainName' => 'DomainName', + 'interval' => 'Interval', + 'ossBucket' => 'OssBucket', + 'ossEndpoint' => 'OssEndpoint', + 'ossObject' => 'OssObject', + 'scenes' => 'Scenes', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->appName) { + $res['AppName'] = $this->appName; + } + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->interval) { + $res['Interval'] = $this->interval; + } + if (null !== $this->ossBucket) { + $res['OssBucket'] = $this->ossBucket; + } + if (null !== $this->ossEndpoint) { + $res['OssEndpoint'] = $this->ossEndpoint; + } + if (null !== $this->ossObject) { + $res['OssObject'] = $this->ossObject; + } + if (null !== $this->scenes) { + $res['Scenes'] = null !== $this->scenes ? $this->scenes->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return liveSnapshotDetectPornConfig + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppName'])) { + $model->appName = $map['AppName']; + } + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['Interval'])) { + $model->interval = $map['Interval']; + } + if (isset($map['OssBucket'])) { + $model->ossBucket = $map['OssBucket']; + } + if (isset($map['OssEndpoint'])) { + $model->ossEndpoint = $map['OssEndpoint']; + } + if (isset($map['OssObject'])) { + $model->ossObject = $map['OssObject']; + } + if (isset($map['Scenes'])) { + $model->scenes = scenes::fromMap($map['Scenes']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveSnapshotDetectPornConfigResponseBody/liveSnapshotDetectPornConfigList/liveSnapshotDetectPornConfig/scenes.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveSnapshotDetectPornConfigResponseBody/liveSnapshotDetectPornConfigList/liveSnapshotDetectPornConfig/scenes.php new file mode 100644 index 000000000..f99b631a2 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveSnapshotDetectPornConfigResponseBody/liveSnapshotDetectPornConfigList/liveSnapshotDetectPornConfig/scenes.php @@ -0,0 +1,49 @@ + 'scene', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->scene) { + $res['scene'] = $this->scene; + } + + return $res; + } + + /** + * @param array $map + * + * @return scenes + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['scene'])) { + if (!empty($map['scene'])) { + $model->scene = $map['scene']; + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveSnapshotNotifyConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveSnapshotNotifyConfigRequest.php new file mode 100644 index 000000000..57e04ff74 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveSnapshotNotifyConfigRequest.php @@ -0,0 +1,59 @@ + 'DomainName', + 'ownerId' => 'OwnerId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveSnapshotNotifyConfigRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveSnapshotNotifyConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveSnapshotNotifyConfigResponse.php new file mode 100644 index 000000000..d5687dc6c --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveSnapshotNotifyConfigResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveSnapshotNotifyConfigResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DescribeLiveSnapshotNotifyConfigResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveSnapshotNotifyConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveSnapshotNotifyConfigResponseBody.php new file mode 100644 index 000000000..bc3897000 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveSnapshotNotifyConfigResponseBody.php @@ -0,0 +1,95 @@ + 'DomainName', + 'notifyAuthKey' => 'NotifyAuthKey', + 'notifyReqAuth' => 'NotifyReqAuth', + 'notifyUrl' => 'NotifyUrl', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->notifyAuthKey) { + $res['NotifyAuthKey'] = $this->notifyAuthKey; + } + if (null !== $this->notifyReqAuth) { + $res['NotifyReqAuth'] = $this->notifyReqAuth; + } + if (null !== $this->notifyUrl) { + $res['NotifyUrl'] = $this->notifyUrl; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveSnapshotNotifyConfigResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['NotifyAuthKey'])) { + $model->notifyAuthKey = $map['NotifyAuthKey']; + } + if (isset($map['NotifyReqAuth'])) { + $model->notifyReqAuth = $map['NotifyReqAuth']; + } + if (isset($map['NotifyUrl'])) { + $model->notifyUrl = $map['NotifyUrl']; + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamAuthCheckingRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamAuthCheckingRequest.php new file mode 100644 index 000000000..5f491d965 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamAuthCheckingRequest.php @@ -0,0 +1,71 @@ + 'DomainName', + 'ownerId' => 'OwnerId', + 'url' => 'Url', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->url) { + $res['Url'] = $this->url; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveStreamAuthCheckingRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['Url'])) { + $model->url = $map['Url']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamAuthCheckingResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamAuthCheckingResponse.php new file mode 100644 index 000000000..5af82ea80 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamAuthCheckingResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveStreamAuthCheckingResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DescribeLiveStreamAuthCheckingResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamAuthCheckingResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamAuthCheckingResponseBody.php new file mode 100644 index 000000000..aa8529de5 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamAuthCheckingResponseBody.php @@ -0,0 +1,71 @@ + 'Description', + 'requestId' => 'RequestId', + 'status' => 'Status', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->description) { + $res['Description'] = $this->description; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->status) { + $res['Status'] = $this->status; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveStreamAuthCheckingResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Description'])) { + $model->description = $map['Description']; + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['Status'])) { + $model->status = $map['Status']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamBitRateDataRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamBitRateDataRequest.php new file mode 100644 index 000000000..f23d77c96 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamBitRateDataRequest.php @@ -0,0 +1,119 @@ + 'AppName', + 'domainName' => 'DomainName', + 'endTime' => 'EndTime', + 'ownerId' => 'OwnerId', + 'securityToken' => 'SecurityToken', + 'startTime' => 'StartTime', + 'streamName' => 'StreamName', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->appName) { + $res['AppName'] = $this->appName; + } + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->endTime) { + $res['EndTime'] = $this->endTime; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->securityToken) { + $res['SecurityToken'] = $this->securityToken; + } + if (null !== $this->startTime) { + $res['StartTime'] = $this->startTime; + } + if (null !== $this->streamName) { + $res['StreamName'] = $this->streamName; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveStreamBitRateDataRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppName'])) { + $model->appName = $map['AppName']; + } + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['EndTime'])) { + $model->endTime = $map['EndTime']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['SecurityToken'])) { + $model->securityToken = $map['SecurityToken']; + } + if (isset($map['StartTime'])) { + $model->startTime = $map['StartTime']; + } + if (isset($map['StreamName'])) { + $model->streamName = $map['StreamName']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamBitRateDataResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamBitRateDataResponse.php new file mode 100644 index 000000000..937b1dd05 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamBitRateDataResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveStreamBitRateDataResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DescribeLiveStreamBitRateDataResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamBitRateDataResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamBitRateDataResponseBody.php new file mode 100644 index 000000000..b043d2a64 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamBitRateDataResponseBody.php @@ -0,0 +1,60 @@ + 'FrameRateAndBitRateInfos', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->frameRateAndBitRateInfos) { + $res['FrameRateAndBitRateInfos'] = null !== $this->frameRateAndBitRateInfos ? $this->frameRateAndBitRateInfos->toMap() : null; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveStreamBitRateDataResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['FrameRateAndBitRateInfos'])) { + $model->frameRateAndBitRateInfos = frameRateAndBitRateInfos::fromMap($map['FrameRateAndBitRateInfos']); + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamBitRateDataResponseBody/frameRateAndBitRateInfos.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamBitRateDataResponseBody/frameRateAndBitRateInfos.php new file mode 100644 index 000000000..b766cc316 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamBitRateDataResponseBody/frameRateAndBitRateInfos.php @@ -0,0 +1,60 @@ + 'FrameRateAndBitRateInfo', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->frameRateAndBitRateInfo) { + $res['FrameRateAndBitRateInfo'] = []; + if (null !== $this->frameRateAndBitRateInfo && \is_array($this->frameRateAndBitRateInfo)) { + $n = 0; + foreach ($this->frameRateAndBitRateInfo as $item) { + $res['FrameRateAndBitRateInfo'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return frameRateAndBitRateInfos + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['FrameRateAndBitRateInfo'])) { + if (!empty($map['FrameRateAndBitRateInfo'])) { + $model->frameRateAndBitRateInfo = []; + $n = 0; + foreach ($map['FrameRateAndBitRateInfo'] as $item) { + $model->frameRateAndBitRateInfo[$n++] = null !== $item ? frameRateAndBitRateInfo::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamBitRateDataResponseBody/frameRateAndBitRateInfos/frameRateAndBitRateInfo.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamBitRateDataResponseBody/frameRateAndBitRateInfos/frameRateAndBitRateInfo.php new file mode 100644 index 000000000..d11349955 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamBitRateDataResponseBody/frameRateAndBitRateInfos/frameRateAndBitRateInfo.php @@ -0,0 +1,95 @@ + 'AudioFrameRate', + 'bitRate' => 'BitRate', + 'streamUrl' => 'StreamUrl', + 'time' => 'Time', + 'videoFrameRate' => 'VideoFrameRate', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->audioFrameRate) { + $res['AudioFrameRate'] = $this->audioFrameRate; + } + if (null !== $this->bitRate) { + $res['BitRate'] = $this->bitRate; + } + if (null !== $this->streamUrl) { + $res['StreamUrl'] = $this->streamUrl; + } + if (null !== $this->time) { + $res['Time'] = $this->time; + } + if (null !== $this->videoFrameRate) { + $res['VideoFrameRate'] = $this->videoFrameRate; + } + + return $res; + } + + /** + * @param array $map + * + * @return frameRateAndBitRateInfo + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AudioFrameRate'])) { + $model->audioFrameRate = $map['AudioFrameRate']; + } + if (isset($map['BitRate'])) { + $model->bitRate = $map['BitRate']; + } + if (isset($map['StreamUrl'])) { + $model->streamUrl = $map['StreamUrl']; + } + if (isset($map['Time'])) { + $model->time = $map['Time']; + } + if (isset($map['VideoFrameRate'])) { + $model->videoFrameRate = $map['VideoFrameRate']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamCountRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamCountRequest.php new file mode 100644 index 000000000..007c9f30b --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamCountRequest.php @@ -0,0 +1,59 @@ + 'DomainName', + 'ownerId' => 'OwnerId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveStreamCountRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamCountResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamCountResponse.php new file mode 100644 index 000000000..f23eb3bfb --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamCountResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveStreamCountResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DescribeLiveStreamCountResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamCountResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamCountResponseBody.php new file mode 100644 index 000000000..fc0509bbc --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamCountResponseBody.php @@ -0,0 +1,60 @@ + 'RequestId', + 'streamCountInfos' => 'StreamCountInfos', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->streamCountInfos) { + $res['StreamCountInfos'] = null !== $this->streamCountInfos ? $this->streamCountInfos->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveStreamCountResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['StreamCountInfos'])) { + $model->streamCountInfos = streamCountInfos::fromMap($map['StreamCountInfos']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamCountResponseBody/streamCountInfos.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamCountResponseBody/streamCountInfos.php new file mode 100644 index 000000000..8b593e9d4 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamCountResponseBody/streamCountInfos.php @@ -0,0 +1,60 @@ + 'StreamCountInfo', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->streamCountInfo) { + $res['StreamCountInfo'] = []; + if (null !== $this->streamCountInfo && \is_array($this->streamCountInfo)) { + $n = 0; + foreach ($this->streamCountInfo as $item) { + $res['StreamCountInfo'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return streamCountInfos + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['StreamCountInfo'])) { + if (!empty($map['StreamCountInfo'])) { + $model->streamCountInfo = []; + $n = 0; + foreach ($map['StreamCountInfo'] as $item) { + $model->streamCountInfo[$n++] = null !== $item ? streamCountInfo::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamCountResponseBody/streamCountInfos/streamCountInfo.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamCountResponseBody/streamCountInfos/streamCountInfo.php new file mode 100644 index 000000000..d9c3ba4cb --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamCountResponseBody/streamCountInfos/streamCountInfo.php @@ -0,0 +1,84 @@ + 'Count', + 'limit' => 'Limit', + 'streamCountDetails' => 'StreamCountDetails', + 'type' => 'Type', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->count) { + $res['Count'] = $this->count; + } + if (null !== $this->limit) { + $res['Limit'] = $this->limit; + } + if (null !== $this->streamCountDetails) { + $res['StreamCountDetails'] = null !== $this->streamCountDetails ? $this->streamCountDetails->toMap() : null; + } + if (null !== $this->type) { + $res['Type'] = $this->type; + } + + return $res; + } + + /** + * @param array $map + * + * @return streamCountInfo + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Count'])) { + $model->count = $map['Count']; + } + if (isset($map['Limit'])) { + $model->limit = $map['Limit']; + } + if (isset($map['StreamCountDetails'])) { + $model->streamCountDetails = streamCountDetails::fromMap($map['StreamCountDetails']); + } + if (isset($map['Type'])) { + $model->type = $map['Type']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamCountResponseBody/streamCountInfos/streamCountInfo/streamCountDetails.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamCountResponseBody/streamCountInfos/streamCountInfo/streamCountDetails.php new file mode 100644 index 000000000..73f43dfa2 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamCountResponseBody/streamCountInfos/streamCountInfo/streamCountDetails.php @@ -0,0 +1,60 @@ + 'StreamCountDetail', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->streamCountDetail) { + $res['StreamCountDetail'] = []; + if (null !== $this->streamCountDetail && \is_array($this->streamCountDetail)) { + $n = 0; + foreach ($this->streamCountDetail as $item) { + $res['StreamCountDetail'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return streamCountDetails + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['StreamCountDetail'])) { + if (!empty($map['StreamCountDetail'])) { + $model->streamCountDetail = []; + $n = 0; + foreach ($map['StreamCountDetail'] as $item) { + $model->streamCountDetail[$n++] = null !== $item ? streamCountDetail::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamCountResponseBody/streamCountInfos/streamCountInfo/streamCountDetails/streamCountDetail.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamCountResponseBody/streamCountInfos/streamCountInfo/streamCountDetails/streamCountDetail.php new file mode 100644 index 000000000..09c82aeac --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamCountResponseBody/streamCountInfos/streamCountInfo/streamCountDetails/streamCountDetail.php @@ -0,0 +1,71 @@ + 'Count', + 'format' => 'Format', + 'videoDataRate' => 'VideoDataRate', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->count) { + $res['Count'] = $this->count; + } + if (null !== $this->format) { + $res['Format'] = $this->format; + } + if (null !== $this->videoDataRate) { + $res['VideoDataRate'] = $this->videoDataRate; + } + + return $res; + } + + /** + * @param array $map + * + * @return streamCountDetail + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Count'])) { + $model->count = $map['Count']; + } + if (isset($map['Format'])) { + $model->format = $map['Format']; + } + if (isset($map['VideoDataRate'])) { + $model->videoDataRate = $map['VideoDataRate']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamDelayConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamDelayConfigRequest.php new file mode 100644 index 000000000..f0bea42f2 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamDelayConfigRequest.php @@ -0,0 +1,59 @@ + 'DomainName', + 'ownerId' => 'OwnerId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveStreamDelayConfigRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamDelayConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamDelayConfigResponse.php new file mode 100644 index 000000000..064ce67a0 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamDelayConfigResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveStreamDelayConfigResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DescribeLiveStreamDelayConfigResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamDelayConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamDelayConfigResponseBody.php new file mode 100644 index 000000000..54bdb9d97 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamDelayConfigResponseBody.php @@ -0,0 +1,86 @@ + 'LiveStreamFlvDelayConfig', + 'liveStreamHlsDelayConfig' => 'LiveStreamHlsDelayConfig', + 'liveStreamRtmpDelayConfig' => 'LiveStreamRtmpDelayConfig', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->liveStreamFlvDelayConfig) { + $res['LiveStreamFlvDelayConfig'] = null !== $this->liveStreamFlvDelayConfig ? $this->liveStreamFlvDelayConfig->toMap() : null; + } + if (null !== $this->liveStreamHlsDelayConfig) { + $res['LiveStreamHlsDelayConfig'] = null !== $this->liveStreamHlsDelayConfig ? $this->liveStreamHlsDelayConfig->toMap() : null; + } + if (null !== $this->liveStreamRtmpDelayConfig) { + $res['LiveStreamRtmpDelayConfig'] = null !== $this->liveStreamRtmpDelayConfig ? $this->liveStreamRtmpDelayConfig->toMap() : null; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveStreamDelayConfigResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['LiveStreamFlvDelayConfig'])) { + $model->liveStreamFlvDelayConfig = liveStreamFlvDelayConfig::fromMap($map['LiveStreamFlvDelayConfig']); + } + if (isset($map['LiveStreamHlsDelayConfig'])) { + $model->liveStreamHlsDelayConfig = liveStreamHlsDelayConfig::fromMap($map['LiveStreamHlsDelayConfig']); + } + if (isset($map['LiveStreamRtmpDelayConfig'])) { + $model->liveStreamRtmpDelayConfig = liveStreamRtmpDelayConfig::fromMap($map['LiveStreamRtmpDelayConfig']); + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamDelayConfigResponseBody/liveStreamFlvDelayConfig.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamDelayConfigResponseBody/liveStreamFlvDelayConfig.php new file mode 100644 index 000000000..59f0605e4 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamDelayConfigResponseBody/liveStreamFlvDelayConfig.php @@ -0,0 +1,59 @@ + 'Delay', + 'level' => 'Level', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->delay) { + $res['Delay'] = $this->delay; + } + if (null !== $this->level) { + $res['Level'] = $this->level; + } + + return $res; + } + + /** + * @param array $map + * + * @return liveStreamFlvDelayConfig + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Delay'])) { + $model->delay = $map['Delay']; + } + if (isset($map['Level'])) { + $model->level = $map['Level']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamDelayConfigResponseBody/liveStreamHlsDelayConfig.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamDelayConfigResponseBody/liveStreamHlsDelayConfig.php new file mode 100644 index 000000000..99a1573d1 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamDelayConfigResponseBody/liveStreamHlsDelayConfig.php @@ -0,0 +1,59 @@ + 'Delay', + 'level' => 'Level', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->delay) { + $res['Delay'] = $this->delay; + } + if (null !== $this->level) { + $res['Level'] = $this->level; + } + + return $res; + } + + /** + * @param array $map + * + * @return liveStreamHlsDelayConfig + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Delay'])) { + $model->delay = $map['Delay']; + } + if (isset($map['Level'])) { + $model->level = $map['Level']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamDelayConfigResponseBody/liveStreamRtmpDelayConfig.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamDelayConfigResponseBody/liveStreamRtmpDelayConfig.php new file mode 100644 index 000000000..8e6067462 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamDelayConfigResponseBody/liveStreamRtmpDelayConfig.php @@ -0,0 +1,59 @@ + 'Delay', + 'level' => 'Level', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->delay) { + $res['Delay'] = $this->delay; + } + if (null !== $this->level) { + $res['Level'] = $this->level; + } + + return $res; + } + + /** + * @param array $map + * + * @return liveStreamRtmpDelayConfig + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Delay'])) { + $model->delay = $map['Delay']; + } + if (isset($map['Level'])) { + $model->level = $map['Level']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamHistoryUserNumRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamHistoryUserNumRequest.php new file mode 100644 index 000000000..61d8a83d2 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamHistoryUserNumRequest.php @@ -0,0 +1,119 @@ + 'AppName', + 'domainName' => 'DomainName', + 'endTime' => 'EndTime', + 'ownerId' => 'OwnerId', + 'securityToken' => 'SecurityToken', + 'startTime' => 'StartTime', + 'streamName' => 'StreamName', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->appName) { + $res['AppName'] = $this->appName; + } + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->endTime) { + $res['EndTime'] = $this->endTime; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->securityToken) { + $res['SecurityToken'] = $this->securityToken; + } + if (null !== $this->startTime) { + $res['StartTime'] = $this->startTime; + } + if (null !== $this->streamName) { + $res['StreamName'] = $this->streamName; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveStreamHistoryUserNumRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppName'])) { + $model->appName = $map['AppName']; + } + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['EndTime'])) { + $model->endTime = $map['EndTime']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['SecurityToken'])) { + $model->securityToken = $map['SecurityToken']; + } + if (isset($map['StartTime'])) { + $model->startTime = $map['StartTime']; + } + if (isset($map['StreamName'])) { + $model->streamName = $map['StreamName']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamHistoryUserNumResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamHistoryUserNumResponse.php new file mode 100644 index 000000000..62710c515 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamHistoryUserNumResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveStreamHistoryUserNumResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DescribeLiveStreamHistoryUserNumResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamHistoryUserNumResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamHistoryUserNumResponseBody.php new file mode 100644 index 000000000..31f30b26f --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamHistoryUserNumResponseBody.php @@ -0,0 +1,60 @@ + 'LiveStreamUserNumInfos', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->liveStreamUserNumInfos) { + $res['LiveStreamUserNumInfos'] = null !== $this->liveStreamUserNumInfos ? $this->liveStreamUserNumInfos->toMap() : null; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveStreamHistoryUserNumResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['LiveStreamUserNumInfos'])) { + $model->liveStreamUserNumInfos = liveStreamUserNumInfos::fromMap($map['LiveStreamUserNumInfos']); + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamHistoryUserNumResponseBody/liveStreamUserNumInfos.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamHistoryUserNumResponseBody/liveStreamUserNumInfos.php new file mode 100644 index 000000000..599545575 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamHistoryUserNumResponseBody/liveStreamUserNumInfos.php @@ -0,0 +1,60 @@ + 'LiveStreamUserNumInfo', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->liveStreamUserNumInfo) { + $res['LiveStreamUserNumInfo'] = []; + if (null !== $this->liveStreamUserNumInfo && \is_array($this->liveStreamUserNumInfo)) { + $n = 0; + foreach ($this->liveStreamUserNumInfo as $item) { + $res['LiveStreamUserNumInfo'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return liveStreamUserNumInfos + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['LiveStreamUserNumInfo'])) { + if (!empty($map['LiveStreamUserNumInfo'])) { + $model->liveStreamUserNumInfo = []; + $n = 0; + foreach ($map['LiveStreamUserNumInfo'] as $item) { + $model->liveStreamUserNumInfo[$n++] = null !== $item ? liveStreamUserNumInfo::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamHistoryUserNumResponseBody/liveStreamUserNumInfos/liveStreamUserNumInfo.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamHistoryUserNumResponseBody/liveStreamUserNumInfos/liveStreamUserNumInfo.php new file mode 100644 index 000000000..6ff6530b2 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamHistoryUserNumResponseBody/liveStreamUserNumInfos/liveStreamUserNumInfo.php @@ -0,0 +1,59 @@ + 'StreamTime', + 'userNum' => 'UserNum', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->streamTime) { + $res['StreamTime'] = $this->streamTime; + } + if (null !== $this->userNum) { + $res['UserNum'] = $this->userNum; + } + + return $res; + } + + /** + * @param array $map + * + * @return liveStreamUserNumInfo + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['StreamTime'])) { + $model->streamTime = $map['StreamTime']; + } + if (isset($map['UserNum'])) { + $model->userNum = $map['UserNum']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamMetricDetailDataRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamMetricDetailDataRequest.php new file mode 100644 index 000000000..0002dbd52 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamMetricDetailDataRequest.php @@ -0,0 +1,131 @@ + 'AppName', + 'domainName' => 'DomainName', + 'endTime' => 'EndTime', + 'nextPageToken' => 'NextPageToken', + 'ownerId' => 'OwnerId', + 'protocol' => 'Protocol', + 'startTime' => 'StartTime', + 'streamName' => 'StreamName', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->appName) { + $res['AppName'] = $this->appName; + } + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->endTime) { + $res['EndTime'] = $this->endTime; + } + if (null !== $this->nextPageToken) { + $res['NextPageToken'] = $this->nextPageToken; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->protocol) { + $res['Protocol'] = $this->protocol; + } + if (null !== $this->startTime) { + $res['StartTime'] = $this->startTime; + } + if (null !== $this->streamName) { + $res['StreamName'] = $this->streamName; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveStreamMetricDetailDataRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppName'])) { + $model->appName = $map['AppName']; + } + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['EndTime'])) { + $model->endTime = $map['EndTime']; + } + if (isset($map['NextPageToken'])) { + $model->nextPageToken = $map['NextPageToken']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['Protocol'])) { + $model->protocol = $map['Protocol']; + } + if (isset($map['StartTime'])) { + $model->startTime = $map['StartTime']; + } + if (isset($map['StreamName'])) { + $model->streamName = $map['StreamName']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamMetricDetailDataResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamMetricDetailDataResponse.php new file mode 100644 index 000000000..e150160c8 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamMetricDetailDataResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveStreamMetricDetailDataResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DescribeLiveStreamMetricDetailDataResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamMetricDetailDataResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamMetricDetailDataResponseBody.php new file mode 100644 index 000000000..161d552a5 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamMetricDetailDataResponseBody.php @@ -0,0 +1,120 @@ + 'DomainName', + 'endTime' => 'EndTime', + 'nextPageToken' => 'NextPageToken', + 'pageSize' => 'PageSize', + 'requestId' => 'RequestId', + 'startTime' => 'StartTime', + 'streamDetailData' => 'StreamDetailData', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->endTime) { + $res['EndTime'] = $this->endTime; + } + if (null !== $this->nextPageToken) { + $res['NextPageToken'] = $this->nextPageToken; + } + if (null !== $this->pageSize) { + $res['PageSize'] = $this->pageSize; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->startTime) { + $res['StartTime'] = $this->startTime; + } + if (null !== $this->streamDetailData) { + $res['StreamDetailData'] = null !== $this->streamDetailData ? $this->streamDetailData->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveStreamMetricDetailDataResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['EndTime'])) { + $model->endTime = $map['EndTime']; + } + if (isset($map['NextPageToken'])) { + $model->nextPageToken = $map['NextPageToken']; + } + if (isset($map['PageSize'])) { + $model->pageSize = $map['PageSize']; + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['StartTime'])) { + $model->startTime = $map['StartTime']; + } + if (isset($map['StreamDetailData'])) { + $model->streamDetailData = streamDetailData::fromMap($map['StreamDetailData']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamMetricDetailDataResponseBody/streamDetailData.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamMetricDetailDataResponseBody/streamDetailData.php new file mode 100644 index 000000000..068d5dda1 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamMetricDetailDataResponseBody/streamDetailData.php @@ -0,0 +1,60 @@ + 'StreamData', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->streamData) { + $res['StreamData'] = []; + if (null !== $this->streamData && \is_array($this->streamData)) { + $n = 0; + foreach ($this->streamData as $item) { + $res['StreamData'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return streamDetailData + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['StreamData'])) { + if (!empty($map['StreamData'])) { + $model->streamData = []; + $n = 0; + foreach ($map['StreamData'] as $item) { + $model->streamData[$n++] = null !== $item ? streamData::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamMetricDetailDataResponseBody/streamDetailData/streamData.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamMetricDetailDataResponseBody/streamDetailData/streamData.php new file mode 100644 index 000000000..a5d28f7bf --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamMetricDetailDataResponseBody/streamDetailData/streamData.php @@ -0,0 +1,287 @@ + 'AppName', + 'bps' => 'Bps', + 'count' => 'Count', + 'flvBps' => 'FlvBps', + 'flvCount' => 'FlvCount', + 'flvTraffic' => 'FlvTraffic', + 'hlsBps' => 'HlsBps', + 'hlsCount' => 'HlsCount', + 'hlsTraffic' => 'HlsTraffic', + 'p2pBps' => 'P2pBps', + 'p2pCount' => 'P2pCount', + 'p2pTraffic' => 'P2pTraffic', + 'rtmpBps' => 'RtmpBps', + 'rtmpCount' => 'RtmpCount', + 'rtmpTraffic' => 'RtmpTraffic', + 'rtsBps' => 'RtsBps', + 'rtsCount' => 'RtsCount', + 'rtsTraffic' => 'RtsTraffic', + 'streamName' => 'StreamName', + 'timeStamp' => 'TimeStamp', + 'traffic' => 'Traffic', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->appName) { + $res['AppName'] = $this->appName; + } + if (null !== $this->bps) { + $res['Bps'] = $this->bps; + } + if (null !== $this->count) { + $res['Count'] = $this->count; + } + if (null !== $this->flvBps) { + $res['FlvBps'] = $this->flvBps; + } + if (null !== $this->flvCount) { + $res['FlvCount'] = $this->flvCount; + } + if (null !== $this->flvTraffic) { + $res['FlvTraffic'] = $this->flvTraffic; + } + if (null !== $this->hlsBps) { + $res['HlsBps'] = $this->hlsBps; + } + if (null !== $this->hlsCount) { + $res['HlsCount'] = $this->hlsCount; + } + if (null !== $this->hlsTraffic) { + $res['HlsTraffic'] = $this->hlsTraffic; + } + if (null !== $this->p2pBps) { + $res['P2pBps'] = $this->p2pBps; + } + if (null !== $this->p2pCount) { + $res['P2pCount'] = $this->p2pCount; + } + if (null !== $this->p2pTraffic) { + $res['P2pTraffic'] = $this->p2pTraffic; + } + if (null !== $this->rtmpBps) { + $res['RtmpBps'] = $this->rtmpBps; + } + if (null !== $this->rtmpCount) { + $res['RtmpCount'] = $this->rtmpCount; + } + if (null !== $this->rtmpTraffic) { + $res['RtmpTraffic'] = $this->rtmpTraffic; + } + if (null !== $this->rtsBps) { + $res['RtsBps'] = $this->rtsBps; + } + if (null !== $this->rtsCount) { + $res['RtsCount'] = $this->rtsCount; + } + if (null !== $this->rtsTraffic) { + $res['RtsTraffic'] = $this->rtsTraffic; + } + if (null !== $this->streamName) { + $res['StreamName'] = $this->streamName; + } + if (null !== $this->timeStamp) { + $res['TimeStamp'] = $this->timeStamp; + } + if (null !== $this->traffic) { + $res['Traffic'] = $this->traffic; + } + + return $res; + } + + /** + * @param array $map + * + * @return streamData + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppName'])) { + $model->appName = $map['AppName']; + } + if (isset($map['Bps'])) { + $model->bps = $map['Bps']; + } + if (isset($map['Count'])) { + $model->count = $map['Count']; + } + if (isset($map['FlvBps'])) { + $model->flvBps = $map['FlvBps']; + } + if (isset($map['FlvCount'])) { + $model->flvCount = $map['FlvCount']; + } + if (isset($map['FlvTraffic'])) { + $model->flvTraffic = $map['FlvTraffic']; + } + if (isset($map['HlsBps'])) { + $model->hlsBps = $map['HlsBps']; + } + if (isset($map['HlsCount'])) { + $model->hlsCount = $map['HlsCount']; + } + if (isset($map['HlsTraffic'])) { + $model->hlsTraffic = $map['HlsTraffic']; + } + if (isset($map['P2pBps'])) { + $model->p2pBps = $map['P2pBps']; + } + if (isset($map['P2pCount'])) { + $model->p2pCount = $map['P2pCount']; + } + if (isset($map['P2pTraffic'])) { + $model->p2pTraffic = $map['P2pTraffic']; + } + if (isset($map['RtmpBps'])) { + $model->rtmpBps = $map['RtmpBps']; + } + if (isset($map['RtmpCount'])) { + $model->rtmpCount = $map['RtmpCount']; + } + if (isset($map['RtmpTraffic'])) { + $model->rtmpTraffic = $map['RtmpTraffic']; + } + if (isset($map['RtsBps'])) { + $model->rtsBps = $map['RtsBps']; + } + if (isset($map['RtsCount'])) { + $model->rtsCount = $map['RtsCount']; + } + if (isset($map['RtsTraffic'])) { + $model->rtsTraffic = $map['RtsTraffic']; + } + if (isset($map['StreamName'])) { + $model->streamName = $map['StreamName']; + } + if (isset($map['TimeStamp'])) { + $model->timeStamp = $map['TimeStamp']; + } + if (isset($map['Traffic'])) { + $model->traffic = $map['Traffic']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamMonitorListRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamMonitorListRequest.php new file mode 100644 index 000000000..2fc94c835 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamMonitorListRequest.php @@ -0,0 +1,107 @@ + 'MonitorId', + 'orderRule' => 'OrderRule', + 'ownerId' => 'OwnerId', + 'pageNum' => 'PageNum', + 'pageSize' => 'PageSize', + 'status' => 'Status', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->monitorId) { + $res['MonitorId'] = $this->monitorId; + } + if (null !== $this->orderRule) { + $res['OrderRule'] = $this->orderRule; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->pageNum) { + $res['PageNum'] = $this->pageNum; + } + if (null !== $this->pageSize) { + $res['PageSize'] = $this->pageSize; + } + if (null !== $this->status) { + $res['Status'] = $this->status; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveStreamMonitorListRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['MonitorId'])) { + $model->monitorId = $map['MonitorId']; + } + if (isset($map['OrderRule'])) { + $model->orderRule = $map['OrderRule']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['PageNum'])) { + $model->pageNum = $map['PageNum']; + } + if (isset($map['PageSize'])) { + $model->pageSize = $map['PageSize']; + } + if (isset($map['Status'])) { + $model->status = $map['Status']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamMonitorListResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamMonitorListResponse.php new file mode 100644 index 000000000..3835ead5c --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamMonitorListResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveStreamMonitorListResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DescribeLiveStreamMonitorListResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamMonitorListResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamMonitorListResponseBody.php new file mode 100644 index 000000000..8b952a978 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamMonitorListResponseBody.php @@ -0,0 +1,84 @@ + 'LiveStreamMonitorList', + 'requestId' => 'RequestId', + 'total' => 'Total', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->liveStreamMonitorList) { + $res['LiveStreamMonitorList'] = []; + if (null !== $this->liveStreamMonitorList && \is_array($this->liveStreamMonitorList)) { + $n = 0; + foreach ($this->liveStreamMonitorList as $item) { + $res['LiveStreamMonitorList'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->total) { + $res['Total'] = $this->total; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveStreamMonitorListResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['LiveStreamMonitorList'])) { + if (!empty($map['LiveStreamMonitorList'])) { + $model->liveStreamMonitorList = []; + $n = 0; + foreach ($map['LiveStreamMonitorList'] as $item) { + $model->liveStreamMonitorList[$n++] = null !== $item ? liveStreamMonitorList::fromMap($item) : $item; + } + } + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['Total'])) { + $model->total = $map['Total']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamMonitorListResponseBody/liveStreamMonitorList.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamMonitorListResponseBody/liveStreamMonitorList.php new file mode 100644 index 000000000..23771af4c --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamMonitorListResponseBody/liveStreamMonitorList.php @@ -0,0 +1,181 @@ + 'AudioFrom', + 'domain' => 'Domain', + 'inputList' => 'InputList', + 'monitorId' => 'MonitorId', + 'monitorName' => 'MonitorName', + 'outputTemplate' => 'OutputTemplate', + 'outputUrls' => 'OutputUrls', + 'region' => 'Region', + 'startTime' => 'StartTime', + 'status' => 'Status', + 'stopTime' => 'StopTime', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->audioFrom) { + $res['AudioFrom'] = $this->audioFrom; + } + if (null !== $this->domain) { + $res['Domain'] = $this->domain; + } + if (null !== $this->inputList) { + $res['InputList'] = []; + if (null !== $this->inputList && \is_array($this->inputList)) { + $n = 0; + foreach ($this->inputList as $item) { + $res['InputList'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + if (null !== $this->monitorId) { + $res['MonitorId'] = $this->monitorId; + } + if (null !== $this->monitorName) { + $res['MonitorName'] = $this->monitorName; + } + if (null !== $this->outputTemplate) { + $res['OutputTemplate'] = $this->outputTemplate; + } + if (null !== $this->outputUrls) { + $res['OutputUrls'] = null !== $this->outputUrls ? $this->outputUrls->toMap() : null; + } + if (null !== $this->region) { + $res['Region'] = $this->region; + } + if (null !== $this->startTime) { + $res['StartTime'] = $this->startTime; + } + if (null !== $this->status) { + $res['Status'] = $this->status; + } + if (null !== $this->stopTime) { + $res['StopTime'] = $this->stopTime; + } + + return $res; + } + + /** + * @param array $map + * + * @return liveStreamMonitorList + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AudioFrom'])) { + $model->audioFrom = $map['AudioFrom']; + } + if (isset($map['Domain'])) { + $model->domain = $map['Domain']; + } + if (isset($map['InputList'])) { + if (!empty($map['InputList'])) { + $model->inputList = []; + $n = 0; + foreach ($map['InputList'] as $item) { + $model->inputList[$n++] = null !== $item ? inputList::fromMap($item) : $item; + } + } + } + if (isset($map['MonitorId'])) { + $model->monitorId = $map['MonitorId']; + } + if (isset($map['MonitorName'])) { + $model->monitorName = $map['MonitorName']; + } + if (isset($map['OutputTemplate'])) { + $model->outputTemplate = $map['OutputTemplate']; + } + if (isset($map['OutputUrls'])) { + $model->outputUrls = outputUrls::fromMap($map['OutputUrls']); + } + if (isset($map['Region'])) { + $model->region = $map['Region']; + } + if (isset($map['StartTime'])) { + $model->startTime = $map['StartTime']; + } + if (isset($map['Status'])) { + $model->status = $map['Status']; + } + if (isset($map['StopTime'])) { + $model->stopTime = $map['StopTime']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamMonitorListResponseBody/liveStreamMonitorList/inputList.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamMonitorListResponseBody/liveStreamMonitorList/inputList.php new file mode 100644 index 000000000..a036ec096 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamMonitorListResponseBody/liveStreamMonitorList/inputList.php @@ -0,0 +1,109 @@ + 'Index', + 'inputUrl' => 'InputUrl', + 'layoutConfig' => 'LayoutConfig', + 'layoutId' => 'LayoutId', + 'playConfig' => 'PlayConfig', + 'streamName' => 'StreamName', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->index) { + $res['Index'] = $this->index; + } + if (null !== $this->inputUrl) { + $res['InputUrl'] = $this->inputUrl; + } + if (null !== $this->layoutConfig) { + $res['LayoutConfig'] = null !== $this->layoutConfig ? $this->layoutConfig->toMap() : null; + } + if (null !== $this->layoutId) { + $res['LayoutId'] = $this->layoutId; + } + if (null !== $this->playConfig) { + $res['PlayConfig'] = null !== $this->playConfig ? $this->playConfig->toMap() : null; + } + if (null !== $this->streamName) { + $res['StreamName'] = $this->streamName; + } + + return $res; + } + + /** + * @param array $map + * + * @return inputList + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Index'])) { + $model->index = $map['Index']; + } + if (isset($map['InputUrl'])) { + $model->inputUrl = $map['InputUrl']; + } + if (isset($map['LayoutConfig'])) { + $model->layoutConfig = layoutConfig::fromMap($map['LayoutConfig']); + } + if (isset($map['LayoutId'])) { + $model->layoutId = $map['LayoutId']; + } + if (isset($map['PlayConfig'])) { + $model->playConfig = playConfig::fromMap($map['PlayConfig']); + } + if (isset($map['StreamName'])) { + $model->streamName = $map['StreamName']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamMonitorListResponseBody/liveStreamMonitorList/inputList/layoutConfig.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamMonitorListResponseBody/liveStreamMonitorList/inputList/layoutConfig.php new file mode 100644 index 000000000..e46d5a609 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamMonitorListResponseBody/liveStreamMonitorList/inputList/layoutConfig.php @@ -0,0 +1,87 @@ + 'FillMode', + 'positionNormalized' => 'PositionNormalized', + 'positionRefer' => 'PositionRefer', + 'sizeNormalized' => 'SizeNormalized', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->fillMode) { + $res['FillMode'] = $this->fillMode; + } + if (null !== $this->positionNormalized) { + $res['PositionNormalized'] = $this->positionNormalized; + } + if (null !== $this->positionRefer) { + $res['PositionRefer'] = $this->positionRefer; + } + if (null !== $this->sizeNormalized) { + $res['SizeNormalized'] = $this->sizeNormalized; + } + + return $res; + } + + /** + * @param array $map + * + * @return layoutConfig + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['FillMode'])) { + $model->fillMode = $map['FillMode']; + } + if (isset($map['PositionNormalized'])) { + if (!empty($map['PositionNormalized'])) { + $model->positionNormalized = $map['PositionNormalized']; + } + } + if (isset($map['PositionRefer'])) { + $model->positionRefer = $map['PositionRefer']; + } + if (isset($map['SizeNormalized'])) { + if (!empty($map['SizeNormalized'])) { + $model->sizeNormalized = $map['SizeNormalized']; + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamMonitorListResponseBody/liveStreamMonitorList/inputList/playConfig.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamMonitorListResponseBody/liveStreamMonitorList/inputList/playConfig.php new file mode 100644 index 000000000..71dfe0316 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamMonitorListResponseBody/liveStreamMonitorList/inputList/playConfig.php @@ -0,0 +1,47 @@ + 'VolumeRate', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->volumeRate) { + $res['VolumeRate'] = $this->volumeRate; + } + + return $res; + } + + /** + * @param array $map + * + * @return playConfig + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['VolumeRate'])) { + $model->volumeRate = $map['VolumeRate']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamMonitorListResponseBody/liveStreamMonitorList/outputUrls.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamMonitorListResponseBody/liveStreamMonitorList/outputUrls.php new file mode 100644 index 000000000..846f6a980 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamMonitorListResponseBody/liveStreamMonitorList/outputUrls.php @@ -0,0 +1,59 @@ + 'FlvUrl', + 'rtmpUrl' => 'RtmpUrl', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->flvUrl) { + $res['FlvUrl'] = $this->flvUrl; + } + if (null !== $this->rtmpUrl) { + $res['RtmpUrl'] = $this->rtmpUrl; + } + + return $res; + } + + /** + * @param array $map + * + * @return outputUrls + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['FlvUrl'])) { + $model->flvUrl = $map['FlvUrl']; + } + if (isset($map['RtmpUrl'])) { + $model->rtmpUrl = $map['RtmpUrl']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamOptimizedFeatureConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamOptimizedFeatureConfigRequest.php new file mode 100644 index 000000000..f7702ab26 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamOptimizedFeatureConfigRequest.php @@ -0,0 +1,71 @@ + 'ConfigName', + 'domainName' => 'DomainName', + 'ownerId' => 'OwnerId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->configName) { + $res['ConfigName'] = $this->configName; + } + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveStreamOptimizedFeatureConfigRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['ConfigName'])) { + $model->configName = $map['ConfigName']; + } + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamOptimizedFeatureConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamOptimizedFeatureConfigResponse.php new file mode 100644 index 000000000..45821125b --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamOptimizedFeatureConfigResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveStreamOptimizedFeatureConfigResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DescribeLiveStreamOptimizedFeatureConfigResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamOptimizedFeatureConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamOptimizedFeatureConfigResponseBody.php new file mode 100644 index 000000000..b6cbf3795 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamOptimizedFeatureConfigResponseBody.php @@ -0,0 +1,60 @@ + 'LiveStreamOptimizedFeatureConfigList', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->liveStreamOptimizedFeatureConfigList) { + $res['LiveStreamOptimizedFeatureConfigList'] = null !== $this->liveStreamOptimizedFeatureConfigList ? $this->liveStreamOptimizedFeatureConfigList->toMap() : null; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveStreamOptimizedFeatureConfigResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['LiveStreamOptimizedFeatureConfigList'])) { + $model->liveStreamOptimizedFeatureConfigList = liveStreamOptimizedFeatureConfigList::fromMap($map['LiveStreamOptimizedFeatureConfigList']); + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamOptimizedFeatureConfigResponseBody/liveStreamOptimizedFeatureConfigList.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamOptimizedFeatureConfigResponseBody/liveStreamOptimizedFeatureConfigList.php new file mode 100644 index 000000000..c60e6e678 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamOptimizedFeatureConfigResponseBody/liveStreamOptimizedFeatureConfigList.php @@ -0,0 +1,60 @@ + 'LiveStreamOptimizedFeatureConfig', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->liveStreamOptimizedFeatureConfig) { + $res['LiveStreamOptimizedFeatureConfig'] = []; + if (null !== $this->liveStreamOptimizedFeatureConfig && \is_array($this->liveStreamOptimizedFeatureConfig)) { + $n = 0; + foreach ($this->liveStreamOptimizedFeatureConfig as $item) { + $res['LiveStreamOptimizedFeatureConfig'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return liveStreamOptimizedFeatureConfigList + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['LiveStreamOptimizedFeatureConfig'])) { + if (!empty($map['LiveStreamOptimizedFeatureConfig'])) { + $model->liveStreamOptimizedFeatureConfig = []; + $n = 0; + foreach ($map['LiveStreamOptimizedFeatureConfig'] as $item) { + $model->liveStreamOptimizedFeatureConfig[$n++] = null !== $item ? liveStreamOptimizedFeatureConfig::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamOptimizedFeatureConfigResponseBody/liveStreamOptimizedFeatureConfigList/liveStreamOptimizedFeatureConfig.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamOptimizedFeatureConfigResponseBody/liveStreamOptimizedFeatureConfigList/liveStreamOptimizedFeatureConfig.php new file mode 100644 index 000000000..b475aa3b2 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamOptimizedFeatureConfigResponseBody/liveStreamOptimizedFeatureConfigList/liveStreamOptimizedFeatureConfig.php @@ -0,0 +1,83 @@ + 'ConfigName', + 'configStatus' => 'ConfigStatus', + 'configValue' => 'ConfigValue', + 'domainName' => 'DomainName', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->configName) { + $res['ConfigName'] = $this->configName; + } + if (null !== $this->configStatus) { + $res['ConfigStatus'] = $this->configStatus; + } + if (null !== $this->configValue) { + $res['ConfigValue'] = $this->configValue; + } + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + + return $res; + } + + /** + * @param array $map + * + * @return liveStreamOptimizedFeatureConfig + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['ConfigName'])) { + $model->configName = $map['ConfigName']; + } + if (isset($map['ConfigStatus'])) { + $model->configStatus = $map['ConfigStatus']; + } + if (isset($map['ConfigValue'])) { + $model->configValue = $map['ConfigValue']; + } + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamRecordContentRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamRecordContentRequest.php new file mode 100644 index 000000000..f17cad63b --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamRecordContentRequest.php @@ -0,0 +1,119 @@ + 'AppName', + 'domainName' => 'DomainName', + 'endTime' => 'EndTime', + 'ownerId' => 'OwnerId', + 'securityToken' => 'SecurityToken', + 'startTime' => 'StartTime', + 'streamName' => 'StreamName', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->appName) { + $res['AppName'] = $this->appName; + } + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->endTime) { + $res['EndTime'] = $this->endTime; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->securityToken) { + $res['SecurityToken'] = $this->securityToken; + } + if (null !== $this->startTime) { + $res['StartTime'] = $this->startTime; + } + if (null !== $this->streamName) { + $res['StreamName'] = $this->streamName; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveStreamRecordContentRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppName'])) { + $model->appName = $map['AppName']; + } + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['EndTime'])) { + $model->endTime = $map['EndTime']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['SecurityToken'])) { + $model->securityToken = $map['SecurityToken']; + } + if (isset($map['StartTime'])) { + $model->startTime = $map['StartTime']; + } + if (isset($map['StreamName'])) { + $model->streamName = $map['StreamName']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamRecordContentResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamRecordContentResponse.php new file mode 100644 index 000000000..8839685e5 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamRecordContentResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveStreamRecordContentResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DescribeLiveStreamRecordContentResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamRecordContentResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamRecordContentResponseBody.php new file mode 100644 index 000000000..fb3e6bd0d --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamRecordContentResponseBody.php @@ -0,0 +1,60 @@ + 'RecordContentInfoList', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->recordContentInfoList) { + $res['RecordContentInfoList'] = null !== $this->recordContentInfoList ? $this->recordContentInfoList->toMap() : null; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveStreamRecordContentResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RecordContentInfoList'])) { + $model->recordContentInfoList = recordContentInfoList::fromMap($map['RecordContentInfoList']); + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamRecordContentResponseBody/recordContentInfoList.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamRecordContentResponseBody/recordContentInfoList.php new file mode 100644 index 000000000..6c7b2ae04 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamRecordContentResponseBody/recordContentInfoList.php @@ -0,0 +1,60 @@ + 'RecordContentInfo', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->recordContentInfo) { + $res['RecordContentInfo'] = []; + if (null !== $this->recordContentInfo && \is_array($this->recordContentInfo)) { + $n = 0; + foreach ($this->recordContentInfo as $item) { + $res['RecordContentInfo'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return recordContentInfoList + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RecordContentInfo'])) { + if (!empty($map['RecordContentInfo'])) { + $model->recordContentInfo = []; + $n = 0; + foreach ($map['RecordContentInfo'] as $item) { + $model->recordContentInfo[$n++] = null !== $item ? recordContentInfo::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamRecordContentResponseBody/recordContentInfoList/recordContentInfo.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamRecordContentResponseBody/recordContentInfoList/recordContentInfo.php new file mode 100644 index 000000000..8457ab017 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamRecordContentResponseBody/recordContentInfoList/recordContentInfo.php @@ -0,0 +1,107 @@ + 'Duration', + 'endTime' => 'EndTime', + 'ossBucket' => 'OssBucket', + 'ossEndpoint' => 'OssEndpoint', + 'ossObjectPrefix' => 'OssObjectPrefix', + 'startTime' => 'StartTime', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->duration) { + $res['Duration'] = $this->duration; + } + if (null !== $this->endTime) { + $res['EndTime'] = $this->endTime; + } + if (null !== $this->ossBucket) { + $res['OssBucket'] = $this->ossBucket; + } + if (null !== $this->ossEndpoint) { + $res['OssEndpoint'] = $this->ossEndpoint; + } + if (null !== $this->ossObjectPrefix) { + $res['OssObjectPrefix'] = $this->ossObjectPrefix; + } + if (null !== $this->startTime) { + $res['StartTime'] = $this->startTime; + } + + return $res; + } + + /** + * @param array $map + * + * @return recordContentInfo + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Duration'])) { + $model->duration = $map['Duration']; + } + if (isset($map['EndTime'])) { + $model->endTime = $map['EndTime']; + } + if (isset($map['OssBucket'])) { + $model->ossBucket = $map['OssBucket']; + } + if (isset($map['OssEndpoint'])) { + $model->ossEndpoint = $map['OssEndpoint']; + } + if (isset($map['OssObjectPrefix'])) { + $model->ossObjectPrefix = $map['OssObjectPrefix']; + } + if (isset($map['StartTime'])) { + $model->startTime = $map['StartTime']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamRecordIndexFileRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamRecordIndexFileRequest.php new file mode 100644 index 000000000..426957e38 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamRecordIndexFileRequest.php @@ -0,0 +1,107 @@ + 'AppName', + 'domainName' => 'DomainName', + 'ownerId' => 'OwnerId', + 'recordId' => 'RecordId', + 'securityToken' => 'SecurityToken', + 'streamName' => 'StreamName', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->appName) { + $res['AppName'] = $this->appName; + } + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->recordId) { + $res['RecordId'] = $this->recordId; + } + if (null !== $this->securityToken) { + $res['SecurityToken'] = $this->securityToken; + } + if (null !== $this->streamName) { + $res['StreamName'] = $this->streamName; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveStreamRecordIndexFileRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppName'])) { + $model->appName = $map['AppName']; + } + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['RecordId'])) { + $model->recordId = $map['RecordId']; + } + if (isset($map['SecurityToken'])) { + $model->securityToken = $map['SecurityToken']; + } + if (isset($map['StreamName'])) { + $model->streamName = $map['StreamName']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamRecordIndexFileResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamRecordIndexFileResponse.php new file mode 100644 index 000000000..6fc4d28f7 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamRecordIndexFileResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveStreamRecordIndexFileResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DescribeLiveStreamRecordIndexFileResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamRecordIndexFileResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamRecordIndexFileResponseBody.php new file mode 100644 index 000000000..520dc18dc --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamRecordIndexFileResponseBody.php @@ -0,0 +1,60 @@ + 'RecordIndexInfo', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->recordIndexInfo) { + $res['RecordIndexInfo'] = null !== $this->recordIndexInfo ? $this->recordIndexInfo->toMap() : null; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveStreamRecordIndexFileResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RecordIndexInfo'])) { + $model->recordIndexInfo = recordIndexInfo::fromMap($map['RecordIndexInfo']); + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamRecordIndexFileResponseBody/recordIndexInfo.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamRecordIndexFileResponseBody/recordIndexInfo.php new file mode 100644 index 000000000..a5beade1e --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamRecordIndexFileResponseBody/recordIndexInfo.php @@ -0,0 +1,203 @@ + 'AppName', + 'createTime' => 'CreateTime', + 'domainName' => 'DomainName', + 'duration' => 'Duration', + 'endTime' => 'EndTime', + 'height' => 'Height', + 'ossBucket' => 'OssBucket', + 'ossEndpoint' => 'OssEndpoint', + 'ossObject' => 'OssObject', + 'recordId' => 'RecordId', + 'recordUrl' => 'RecordUrl', + 'startTime' => 'StartTime', + 'streamName' => 'StreamName', + 'width' => 'Width', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->appName) { + $res['AppName'] = $this->appName; + } + if (null !== $this->createTime) { + $res['CreateTime'] = $this->createTime; + } + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->duration) { + $res['Duration'] = $this->duration; + } + if (null !== $this->endTime) { + $res['EndTime'] = $this->endTime; + } + if (null !== $this->height) { + $res['Height'] = $this->height; + } + if (null !== $this->ossBucket) { + $res['OssBucket'] = $this->ossBucket; + } + if (null !== $this->ossEndpoint) { + $res['OssEndpoint'] = $this->ossEndpoint; + } + if (null !== $this->ossObject) { + $res['OssObject'] = $this->ossObject; + } + if (null !== $this->recordId) { + $res['RecordId'] = $this->recordId; + } + if (null !== $this->recordUrl) { + $res['RecordUrl'] = $this->recordUrl; + } + if (null !== $this->startTime) { + $res['StartTime'] = $this->startTime; + } + if (null !== $this->streamName) { + $res['StreamName'] = $this->streamName; + } + if (null !== $this->width) { + $res['Width'] = $this->width; + } + + return $res; + } + + /** + * @param array $map + * + * @return recordIndexInfo + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppName'])) { + $model->appName = $map['AppName']; + } + if (isset($map['CreateTime'])) { + $model->createTime = $map['CreateTime']; + } + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['Duration'])) { + $model->duration = $map['Duration']; + } + if (isset($map['EndTime'])) { + $model->endTime = $map['EndTime']; + } + if (isset($map['Height'])) { + $model->height = $map['Height']; + } + if (isset($map['OssBucket'])) { + $model->ossBucket = $map['OssBucket']; + } + if (isset($map['OssEndpoint'])) { + $model->ossEndpoint = $map['OssEndpoint']; + } + if (isset($map['OssObject'])) { + $model->ossObject = $map['OssObject']; + } + if (isset($map['RecordId'])) { + $model->recordId = $map['RecordId']; + } + if (isset($map['RecordUrl'])) { + $model->recordUrl = $map['RecordUrl']; + } + if (isset($map['StartTime'])) { + $model->startTime = $map['StartTime']; + } + if (isset($map['StreamName'])) { + $model->streamName = $map['StreamName']; + } + if (isset($map['Width'])) { + $model->width = $map['Width']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamRecordIndexFilesRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamRecordIndexFilesRequest.php new file mode 100644 index 000000000..ae760cb16 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamRecordIndexFilesRequest.php @@ -0,0 +1,155 @@ + 'AppName', + 'domainName' => 'DomainName', + 'endTime' => 'EndTime', + 'order' => 'Order', + 'ownerId' => 'OwnerId', + 'pageNum' => 'PageNum', + 'pageSize' => 'PageSize', + 'securityToken' => 'SecurityToken', + 'startTime' => 'StartTime', + 'streamName' => 'StreamName', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->appName) { + $res['AppName'] = $this->appName; + } + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->endTime) { + $res['EndTime'] = $this->endTime; + } + if (null !== $this->order) { + $res['Order'] = $this->order; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->pageNum) { + $res['PageNum'] = $this->pageNum; + } + if (null !== $this->pageSize) { + $res['PageSize'] = $this->pageSize; + } + if (null !== $this->securityToken) { + $res['SecurityToken'] = $this->securityToken; + } + if (null !== $this->startTime) { + $res['StartTime'] = $this->startTime; + } + if (null !== $this->streamName) { + $res['StreamName'] = $this->streamName; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveStreamRecordIndexFilesRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppName'])) { + $model->appName = $map['AppName']; + } + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['EndTime'])) { + $model->endTime = $map['EndTime']; + } + if (isset($map['Order'])) { + $model->order = $map['Order']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['PageNum'])) { + $model->pageNum = $map['PageNum']; + } + if (isset($map['PageSize'])) { + $model->pageSize = $map['PageSize']; + } + if (isset($map['SecurityToken'])) { + $model->securityToken = $map['SecurityToken']; + } + if (isset($map['StartTime'])) { + $model->startTime = $map['StartTime']; + } + if (isset($map['StreamName'])) { + $model->streamName = $map['StreamName']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamRecordIndexFilesResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamRecordIndexFilesResponse.php new file mode 100644 index 000000000..5ab65fbb3 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamRecordIndexFilesResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveStreamRecordIndexFilesResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DescribeLiveStreamRecordIndexFilesResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamRecordIndexFilesResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamRecordIndexFilesResponseBody.php new file mode 100644 index 000000000..28a555e27 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamRecordIndexFilesResponseBody.php @@ -0,0 +1,120 @@ + 'Order', + 'pageNum' => 'PageNum', + 'pageSize' => 'PageSize', + 'recordIndexInfoList' => 'RecordIndexInfoList', + 'requestId' => 'RequestId', + 'totalNum' => 'TotalNum', + 'totalPage' => 'TotalPage', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->order) { + $res['Order'] = $this->order; + } + if (null !== $this->pageNum) { + $res['PageNum'] = $this->pageNum; + } + if (null !== $this->pageSize) { + $res['PageSize'] = $this->pageSize; + } + if (null !== $this->recordIndexInfoList) { + $res['RecordIndexInfoList'] = null !== $this->recordIndexInfoList ? $this->recordIndexInfoList->toMap() : null; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->totalNum) { + $res['TotalNum'] = $this->totalNum; + } + if (null !== $this->totalPage) { + $res['TotalPage'] = $this->totalPage; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveStreamRecordIndexFilesResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Order'])) { + $model->order = $map['Order']; + } + if (isset($map['PageNum'])) { + $model->pageNum = $map['PageNum']; + } + if (isset($map['PageSize'])) { + $model->pageSize = $map['PageSize']; + } + if (isset($map['RecordIndexInfoList'])) { + $model->recordIndexInfoList = recordIndexInfoList::fromMap($map['RecordIndexInfoList']); + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['TotalNum'])) { + $model->totalNum = $map['TotalNum']; + } + if (isset($map['TotalPage'])) { + $model->totalPage = $map['TotalPage']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamRecordIndexFilesResponseBody/recordIndexInfoList.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamRecordIndexFilesResponseBody/recordIndexInfoList.php new file mode 100644 index 000000000..21b287d90 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamRecordIndexFilesResponseBody/recordIndexInfoList.php @@ -0,0 +1,60 @@ + 'RecordIndexInfo', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->recordIndexInfo) { + $res['RecordIndexInfo'] = []; + if (null !== $this->recordIndexInfo && \is_array($this->recordIndexInfo)) { + $n = 0; + foreach ($this->recordIndexInfo as $item) { + $res['RecordIndexInfo'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return recordIndexInfoList + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RecordIndexInfo'])) { + if (!empty($map['RecordIndexInfo'])) { + $model->recordIndexInfo = []; + $n = 0; + foreach ($map['RecordIndexInfo'] as $item) { + $model->recordIndexInfo[$n++] = null !== $item ? recordIndexInfo::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamRecordIndexFilesResponseBody/recordIndexInfoList/recordIndexInfo.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamRecordIndexFilesResponseBody/recordIndexInfoList/recordIndexInfo.php new file mode 100644 index 000000000..dc3b3120f --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamRecordIndexFilesResponseBody/recordIndexInfoList/recordIndexInfo.php @@ -0,0 +1,203 @@ + 'AppName', + 'createTime' => 'CreateTime', + 'domainName' => 'DomainName', + 'duration' => 'Duration', + 'endTime' => 'EndTime', + 'height' => 'Height', + 'ossBucket' => 'OssBucket', + 'ossEndpoint' => 'OssEndpoint', + 'ossObject' => 'OssObject', + 'recordId' => 'RecordId', + 'recordUrl' => 'RecordUrl', + 'startTime' => 'StartTime', + 'streamName' => 'StreamName', + 'width' => 'Width', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->appName) { + $res['AppName'] = $this->appName; + } + if (null !== $this->createTime) { + $res['CreateTime'] = $this->createTime; + } + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->duration) { + $res['Duration'] = $this->duration; + } + if (null !== $this->endTime) { + $res['EndTime'] = $this->endTime; + } + if (null !== $this->height) { + $res['Height'] = $this->height; + } + if (null !== $this->ossBucket) { + $res['OssBucket'] = $this->ossBucket; + } + if (null !== $this->ossEndpoint) { + $res['OssEndpoint'] = $this->ossEndpoint; + } + if (null !== $this->ossObject) { + $res['OssObject'] = $this->ossObject; + } + if (null !== $this->recordId) { + $res['RecordId'] = $this->recordId; + } + if (null !== $this->recordUrl) { + $res['RecordUrl'] = $this->recordUrl; + } + if (null !== $this->startTime) { + $res['StartTime'] = $this->startTime; + } + if (null !== $this->streamName) { + $res['StreamName'] = $this->streamName; + } + if (null !== $this->width) { + $res['Width'] = $this->width; + } + + return $res; + } + + /** + * @param array $map + * + * @return recordIndexInfo + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppName'])) { + $model->appName = $map['AppName']; + } + if (isset($map['CreateTime'])) { + $model->createTime = $map['CreateTime']; + } + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['Duration'])) { + $model->duration = $map['Duration']; + } + if (isset($map['EndTime'])) { + $model->endTime = $map['EndTime']; + } + if (isset($map['Height'])) { + $model->height = $map['Height']; + } + if (isset($map['OssBucket'])) { + $model->ossBucket = $map['OssBucket']; + } + if (isset($map['OssEndpoint'])) { + $model->ossEndpoint = $map['OssEndpoint']; + } + if (isset($map['OssObject'])) { + $model->ossObject = $map['OssObject']; + } + if (isset($map['RecordId'])) { + $model->recordId = $map['RecordId']; + } + if (isset($map['RecordUrl'])) { + $model->recordUrl = $map['RecordUrl']; + } + if (isset($map['StartTime'])) { + $model->startTime = $map['StartTime']; + } + if (isset($map['StreamName'])) { + $model->streamName = $map['StreamName']; + } + if (isset($map['Width'])) { + $model->width = $map['Width']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamSnapshotInfoRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamSnapshotInfoRequest.php new file mode 100644 index 000000000..a78e5d837 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamSnapshotInfoRequest.php @@ -0,0 +1,143 @@ + 'AppName', + 'domainName' => 'DomainName', + 'endTime' => 'EndTime', + 'limit' => 'Limit', + 'order' => 'Order', + 'ownerId' => 'OwnerId', + 'securityToken' => 'SecurityToken', + 'startTime' => 'StartTime', + 'streamName' => 'StreamName', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->appName) { + $res['AppName'] = $this->appName; + } + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->endTime) { + $res['EndTime'] = $this->endTime; + } + if (null !== $this->limit) { + $res['Limit'] = $this->limit; + } + if (null !== $this->order) { + $res['Order'] = $this->order; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->securityToken) { + $res['SecurityToken'] = $this->securityToken; + } + if (null !== $this->startTime) { + $res['StartTime'] = $this->startTime; + } + if (null !== $this->streamName) { + $res['StreamName'] = $this->streamName; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveStreamSnapshotInfoRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppName'])) { + $model->appName = $map['AppName']; + } + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['EndTime'])) { + $model->endTime = $map['EndTime']; + } + if (isset($map['Limit'])) { + $model->limit = $map['Limit']; + } + if (isset($map['Order'])) { + $model->order = $map['Order']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['SecurityToken'])) { + $model->securityToken = $map['SecurityToken']; + } + if (isset($map['StartTime'])) { + $model->startTime = $map['StartTime']; + } + if (isset($map['StreamName'])) { + $model->streamName = $map['StreamName']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamSnapshotInfoResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamSnapshotInfoResponse.php new file mode 100644 index 000000000..ed9cb80c3 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamSnapshotInfoResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveStreamSnapshotInfoResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DescribeLiveStreamSnapshotInfoResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamSnapshotInfoResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamSnapshotInfoResponseBody.php new file mode 100644 index 000000000..637ba5bf2 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamSnapshotInfoResponseBody.php @@ -0,0 +1,72 @@ + 'LiveStreamSnapshotInfoList', + 'nextStartTime' => 'NextStartTime', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->liveStreamSnapshotInfoList) { + $res['LiveStreamSnapshotInfoList'] = null !== $this->liveStreamSnapshotInfoList ? $this->liveStreamSnapshotInfoList->toMap() : null; + } + if (null !== $this->nextStartTime) { + $res['NextStartTime'] = $this->nextStartTime; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveStreamSnapshotInfoResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['LiveStreamSnapshotInfoList'])) { + $model->liveStreamSnapshotInfoList = liveStreamSnapshotInfoList::fromMap($map['LiveStreamSnapshotInfoList']); + } + if (isset($map['NextStartTime'])) { + $model->nextStartTime = $map['NextStartTime']; + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamSnapshotInfoResponseBody/liveStreamSnapshotInfoList.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamSnapshotInfoResponseBody/liveStreamSnapshotInfoList.php new file mode 100644 index 000000000..e8817cdf7 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamSnapshotInfoResponseBody/liveStreamSnapshotInfoList.php @@ -0,0 +1,60 @@ + 'LiveStreamSnapshotInfo', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->liveStreamSnapshotInfo) { + $res['LiveStreamSnapshotInfo'] = []; + if (null !== $this->liveStreamSnapshotInfo && \is_array($this->liveStreamSnapshotInfo)) { + $n = 0; + foreach ($this->liveStreamSnapshotInfo as $item) { + $res['LiveStreamSnapshotInfo'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return liveStreamSnapshotInfoList + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['LiveStreamSnapshotInfo'])) { + if (!empty($map['LiveStreamSnapshotInfo'])) { + $model->liveStreamSnapshotInfo = []; + $n = 0; + foreach ($map['LiveStreamSnapshotInfo'] as $item) { + $model->liveStreamSnapshotInfo[$n++] = null !== $item ? liveStreamSnapshotInfo::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamSnapshotInfoResponseBody/liveStreamSnapshotInfoList/liveStreamSnapshotInfo.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamSnapshotInfoResponseBody/liveStreamSnapshotInfoList/liveStreamSnapshotInfo.php new file mode 100644 index 000000000..708a04cfd --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamSnapshotInfoResponseBody/liveStreamSnapshotInfoList/liveStreamSnapshotInfo.php @@ -0,0 +1,107 @@ + 'CreateTime', + 'createTimestamp' => 'CreateTimestamp', + 'isOverlay' => 'IsOverlay', + 'ossBucket' => 'OssBucket', + 'ossEndpoint' => 'OssEndpoint', + 'ossObject' => 'OssObject', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->createTime) { + $res['CreateTime'] = $this->createTime; + } + if (null !== $this->createTimestamp) { + $res['CreateTimestamp'] = $this->createTimestamp; + } + if (null !== $this->isOverlay) { + $res['IsOverlay'] = $this->isOverlay; + } + if (null !== $this->ossBucket) { + $res['OssBucket'] = $this->ossBucket; + } + if (null !== $this->ossEndpoint) { + $res['OssEndpoint'] = $this->ossEndpoint; + } + if (null !== $this->ossObject) { + $res['OssObject'] = $this->ossObject; + } + + return $res; + } + + /** + * @param array $map + * + * @return liveStreamSnapshotInfo + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CreateTime'])) { + $model->createTime = $map['CreateTime']; + } + if (isset($map['CreateTimestamp'])) { + $model->createTimestamp = $map['CreateTimestamp']; + } + if (isset($map['IsOverlay'])) { + $model->isOverlay = $map['IsOverlay']; + } + if (isset($map['OssBucket'])) { + $model->ossBucket = $map['OssBucket']; + } + if (isset($map['OssEndpoint'])) { + $model->ossEndpoint = $map['OssEndpoint']; + } + if (isset($map['OssObject'])) { + $model->ossObject = $map['OssObject']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamStateRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamStateRequest.php new file mode 100644 index 000000000..32025719d --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamStateRequest.php @@ -0,0 +1,83 @@ + 'AppName', + 'domainName' => 'DomainName', + 'ownerId' => 'OwnerId', + 'streamName' => 'StreamName', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->appName) { + $res['AppName'] = $this->appName; + } + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->streamName) { + $res['StreamName'] = $this->streamName; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveStreamStateRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppName'])) { + $model->appName = $map['AppName']; + } + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['StreamName'])) { + $model->streamName = $map['StreamName']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamStateResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamStateResponse.php new file mode 100644 index 000000000..0f5270e1b --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamStateResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveStreamStateResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DescribeLiveStreamStateResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamStateResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamStateResponseBody.php new file mode 100644 index 000000000..3e1dd1193 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamStateResponseBody.php @@ -0,0 +1,71 @@ + 'RequestId', + 'streamState' => 'StreamState', + 'type' => 'Type', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->streamState) { + $res['StreamState'] = $this->streamState; + } + if (null !== $this->type) { + $res['Type'] = $this->type; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveStreamStateResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['StreamState'])) { + $model->streamState = $map['StreamState']; + } + if (isset($map['Type'])) { + $model->type = $map['Type']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamTranscodeInfoRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamTranscodeInfoRequest.php new file mode 100644 index 000000000..5a2cf1e4e --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamTranscodeInfoRequest.php @@ -0,0 +1,59 @@ + 'DomainTranscodeName', + 'ownerId' => 'OwnerId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->domainTranscodeName) { + $res['DomainTranscodeName'] = $this->domainTranscodeName; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveStreamTranscodeInfoRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DomainTranscodeName'])) { + $model->domainTranscodeName = $map['DomainTranscodeName']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamTranscodeInfoResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamTranscodeInfoResponse.php new file mode 100644 index 000000000..5f0ddf736 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamTranscodeInfoResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveStreamTranscodeInfoResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DescribeLiveStreamTranscodeInfoResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamTranscodeInfoResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamTranscodeInfoResponseBody.php new file mode 100644 index 000000000..915b9eb86 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamTranscodeInfoResponseBody.php @@ -0,0 +1,60 @@ + 'DomainTranscodeList', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->domainTranscodeList) { + $res['DomainTranscodeList'] = null !== $this->domainTranscodeList ? $this->domainTranscodeList->toMap() : null; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveStreamTranscodeInfoResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DomainTranscodeList'])) { + $model->domainTranscodeList = domainTranscodeList::fromMap($map['DomainTranscodeList']); + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamTranscodeInfoResponseBody/domainTranscodeList.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamTranscodeInfoResponseBody/domainTranscodeList.php new file mode 100644 index 000000000..509f25f41 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamTranscodeInfoResponseBody/domainTranscodeList.php @@ -0,0 +1,60 @@ + 'DomainTranscodeInfo', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->domainTranscodeInfo) { + $res['DomainTranscodeInfo'] = []; + if (null !== $this->domainTranscodeInfo && \is_array($this->domainTranscodeInfo)) { + $n = 0; + foreach ($this->domainTranscodeInfo as $item) { + $res['DomainTranscodeInfo'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return domainTranscodeList + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DomainTranscodeInfo'])) { + if (!empty($map['DomainTranscodeInfo'])) { + $model->domainTranscodeInfo = []; + $n = 0; + foreach ($map['DomainTranscodeInfo'] as $item) { + $model->domainTranscodeInfo[$n++] = null !== $item ? domainTranscodeInfo::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamTranscodeInfoResponseBody/domainTranscodeList/domainTranscodeInfo.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamTranscodeInfoResponseBody/domainTranscodeList/domainTranscodeInfo.php new file mode 100644 index 000000000..a3b47b417 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamTranscodeInfoResponseBody/domainTranscodeList/domainTranscodeInfo.php @@ -0,0 +1,109 @@ + 'CustomTranscodeParameters', + 'encryptParameters' => 'EncryptParameters', + 'isLazy' => 'IsLazy', + 'transcodeApp' => 'TranscodeApp', + 'transcodeName' => 'TranscodeName', + 'transcodeTemplate' => 'TranscodeTemplate', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->customTranscodeParameters) { + $res['CustomTranscodeParameters'] = null !== $this->customTranscodeParameters ? $this->customTranscodeParameters->toMap() : null; + } + if (null !== $this->encryptParameters) { + $res['EncryptParameters'] = null !== $this->encryptParameters ? $this->encryptParameters->toMap() : null; + } + if (null !== $this->isLazy) { + $res['IsLazy'] = $this->isLazy; + } + if (null !== $this->transcodeApp) { + $res['TranscodeApp'] = $this->transcodeApp; + } + if (null !== $this->transcodeName) { + $res['TranscodeName'] = $this->transcodeName; + } + if (null !== $this->transcodeTemplate) { + $res['TranscodeTemplate'] = $this->transcodeTemplate; + } + + return $res; + } + + /** + * @param array $map + * + * @return domainTranscodeInfo + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CustomTranscodeParameters'])) { + $model->customTranscodeParameters = customTranscodeParameters::fromMap($map['CustomTranscodeParameters']); + } + if (isset($map['EncryptParameters'])) { + $model->encryptParameters = encryptParameters::fromMap($map['EncryptParameters']); + } + if (isset($map['IsLazy'])) { + $model->isLazy = $map['IsLazy']; + } + if (isset($map['TranscodeApp'])) { + $model->transcodeApp = $map['TranscodeApp']; + } + if (isset($map['TranscodeName'])) { + $model->transcodeName = $map['TranscodeName']; + } + if (isset($map['TranscodeTemplate'])) { + $model->transcodeTemplate = $map['TranscodeTemplate']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamTranscodeInfoResponseBody/domainTranscodeList/domainTranscodeInfo/customTranscodeParameters.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamTranscodeInfoResponseBody/domainTranscodeList/domainTranscodeInfo/customTranscodeParameters.php new file mode 100644 index 000000000..11c025a3f --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamTranscodeInfoResponseBody/domainTranscodeList/domainTranscodeInfo/customTranscodeParameters.php @@ -0,0 +1,203 @@ + 'AudioBitrate', + 'audioChannelNum' => 'AudioChannelNum', + 'audioCodec' => 'AudioCodec', + 'audioProfile' => 'AudioProfile', + 'audioRate' => 'AudioRate', + 'bframes' => 'Bframes', + 'FPS' => 'FPS', + 'gop' => 'Gop', + 'height' => 'Height', + 'rtsFlag' => 'RtsFlag', + 'templateType' => 'TemplateType', + 'videoBitrate' => 'VideoBitrate', + 'videoProfile' => 'VideoProfile', + 'width' => 'Width', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->audioBitrate) { + $res['AudioBitrate'] = $this->audioBitrate; + } + if (null !== $this->audioChannelNum) { + $res['AudioChannelNum'] = $this->audioChannelNum; + } + if (null !== $this->audioCodec) { + $res['AudioCodec'] = $this->audioCodec; + } + if (null !== $this->audioProfile) { + $res['AudioProfile'] = $this->audioProfile; + } + if (null !== $this->audioRate) { + $res['AudioRate'] = $this->audioRate; + } + if (null !== $this->bframes) { + $res['Bframes'] = $this->bframes; + } + if (null !== $this->FPS) { + $res['FPS'] = $this->FPS; + } + if (null !== $this->gop) { + $res['Gop'] = $this->gop; + } + if (null !== $this->height) { + $res['Height'] = $this->height; + } + if (null !== $this->rtsFlag) { + $res['RtsFlag'] = $this->rtsFlag; + } + if (null !== $this->templateType) { + $res['TemplateType'] = $this->templateType; + } + if (null !== $this->videoBitrate) { + $res['VideoBitrate'] = $this->videoBitrate; + } + if (null !== $this->videoProfile) { + $res['VideoProfile'] = $this->videoProfile; + } + if (null !== $this->width) { + $res['Width'] = $this->width; + } + + return $res; + } + + /** + * @param array $map + * + * @return customTranscodeParameters + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AudioBitrate'])) { + $model->audioBitrate = $map['AudioBitrate']; + } + if (isset($map['AudioChannelNum'])) { + $model->audioChannelNum = $map['AudioChannelNum']; + } + if (isset($map['AudioCodec'])) { + $model->audioCodec = $map['AudioCodec']; + } + if (isset($map['AudioProfile'])) { + $model->audioProfile = $map['AudioProfile']; + } + if (isset($map['AudioRate'])) { + $model->audioRate = $map['AudioRate']; + } + if (isset($map['Bframes'])) { + $model->bframes = $map['Bframes']; + } + if (isset($map['FPS'])) { + $model->FPS = $map['FPS']; + } + if (isset($map['Gop'])) { + $model->gop = $map['Gop']; + } + if (isset($map['Height'])) { + $model->height = $map['Height']; + } + if (isset($map['RtsFlag'])) { + $model->rtsFlag = $map['RtsFlag']; + } + if (isset($map['TemplateType'])) { + $model->templateType = $map['TemplateType']; + } + if (isset($map['VideoBitrate'])) { + $model->videoBitrate = $map['VideoBitrate']; + } + if (isset($map['VideoProfile'])) { + $model->videoProfile = $map['VideoProfile']; + } + if (isset($map['Width'])) { + $model->width = $map['Width']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamTranscodeInfoResponseBody/domainTranscodeList/domainTranscodeInfo/encryptParameters.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamTranscodeInfoResponseBody/domainTranscodeList/domainTranscodeInfo/encryptParameters.php new file mode 100644 index 000000000..4b4eaae25 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamTranscodeInfoResponseBody/domainTranscodeList/domainTranscodeInfo/encryptParameters.php @@ -0,0 +1,71 @@ + 'EncryptType', + 'kmsKeyExpireInterval' => 'KmsKeyExpireInterval', + 'kmsKeyID' => 'KmsKeyID', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->encryptType) { + $res['EncryptType'] = $this->encryptType; + } + if (null !== $this->kmsKeyExpireInterval) { + $res['KmsKeyExpireInterval'] = $this->kmsKeyExpireInterval; + } + if (null !== $this->kmsKeyID) { + $res['KmsKeyID'] = $this->kmsKeyID; + } + + return $res; + } + + /** + * @param array $map + * + * @return encryptParameters + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['EncryptType'])) { + $model->encryptType = $map['EncryptType']; + } + if (isset($map['KmsKeyExpireInterval'])) { + $model->kmsKeyExpireInterval = $map['KmsKeyExpireInterval']; + } + if (isset($map['KmsKeyID'])) { + $model->kmsKeyID = $map['KmsKeyID']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamTranscodeStreamNumRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamTranscodeStreamNumRequest.php new file mode 100644 index 000000000..682c70b59 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamTranscodeStreamNumRequest.php @@ -0,0 +1,59 @@ + 'DomainName', + 'ownerId' => 'OwnerId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveStreamTranscodeStreamNumRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamTranscodeStreamNumResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamTranscodeStreamNumResponse.php new file mode 100644 index 000000000..ff1bef243 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamTranscodeStreamNumResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveStreamTranscodeStreamNumResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DescribeLiveStreamTranscodeStreamNumResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamTranscodeStreamNumResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamTranscodeStreamNumResponseBody.php new file mode 100644 index 000000000..484161774 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamTranscodeStreamNumResponseBody.php @@ -0,0 +1,95 @@ + 'LazyTranscodedNumber', + 'requestId' => 'RequestId', + 'total' => 'Total', + 'transcodedNumber' => 'TranscodedNumber', + 'untranscodeNumber' => 'UntranscodeNumber', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->lazyTranscodedNumber) { + $res['LazyTranscodedNumber'] = $this->lazyTranscodedNumber; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->total) { + $res['Total'] = $this->total; + } + if (null !== $this->transcodedNumber) { + $res['TranscodedNumber'] = $this->transcodedNumber; + } + if (null !== $this->untranscodeNumber) { + $res['UntranscodeNumber'] = $this->untranscodeNumber; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveStreamTranscodeStreamNumResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['LazyTranscodedNumber'])) { + $model->lazyTranscodedNumber = $map['LazyTranscodedNumber']; + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['Total'])) { + $model->total = $map['Total']; + } + if (isset($map['TranscodedNumber'])) { + $model->transcodedNumber = $map['TranscodedNumber']; + } + if (isset($map['UntranscodeNumber'])) { + $model->untranscodeNumber = $map['UntranscodeNumber']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamWatermarkRulesRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamWatermarkRulesRequest.php new file mode 100644 index 000000000..4eef88e05 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamWatermarkRulesRequest.php @@ -0,0 +1,71 @@ + 'OwnerId', + 'pageNumber' => 'PageNumber', + 'pageSize' => 'PageSize', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->pageNumber) { + $res['PageNumber'] = $this->pageNumber; + } + if (null !== $this->pageSize) { + $res['PageSize'] = $this->pageSize; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveStreamWatermarkRulesRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['PageNumber'])) { + $model->pageNumber = $map['PageNumber']; + } + if (isset($map['PageSize'])) { + $model->pageSize = $map['PageSize']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamWatermarkRulesResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamWatermarkRulesResponse.php new file mode 100644 index 000000000..18ce25e26 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamWatermarkRulesResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveStreamWatermarkRulesResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DescribeLiveStreamWatermarkRulesResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamWatermarkRulesResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamWatermarkRulesResponseBody.php new file mode 100644 index 000000000..f5374079b --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamWatermarkRulesResponseBody.php @@ -0,0 +1,60 @@ + 'RequestId', + 'ruleInfoList' => 'RuleInfoList', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->ruleInfoList) { + $res['RuleInfoList'] = null !== $this->ruleInfoList ? $this->ruleInfoList->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveStreamWatermarkRulesResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['RuleInfoList'])) { + $model->ruleInfoList = ruleInfoList::fromMap($map['RuleInfoList']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamWatermarkRulesResponseBody/ruleInfoList.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamWatermarkRulesResponseBody/ruleInfoList.php new file mode 100644 index 000000000..8c58794d4 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamWatermarkRulesResponseBody/ruleInfoList.php @@ -0,0 +1,60 @@ + 'RuleInfo', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->ruleInfo) { + $res['RuleInfo'] = []; + if (null !== $this->ruleInfo && \is_array($this->ruleInfo)) { + $n = 0; + foreach ($this->ruleInfo as $item) { + $res['RuleInfo'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return ruleInfoList + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RuleInfo'])) { + if (!empty($map['RuleInfo'])) { + $model->ruleInfo = []; + $n = 0; + foreach ($map['RuleInfo'] as $item) { + $model->ruleInfo[$n++] = null !== $item ? ruleInfo::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamWatermarkRulesResponseBody/ruleInfoList/ruleInfo.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamWatermarkRulesResponseBody/ruleInfoList/ruleInfo.php new file mode 100644 index 000000000..e54bf5b52 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamWatermarkRulesResponseBody/ruleInfoList/ruleInfo.php @@ -0,0 +1,119 @@ + 'App', + 'description' => 'Description', + 'domain' => 'Domain', + 'name' => 'Name', + 'ruleId' => 'RuleId', + 'stream' => 'Stream', + 'templateId' => 'TemplateId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->app) { + $res['App'] = $this->app; + } + if (null !== $this->description) { + $res['Description'] = $this->description; + } + if (null !== $this->domain) { + $res['Domain'] = $this->domain; + } + if (null !== $this->name) { + $res['Name'] = $this->name; + } + if (null !== $this->ruleId) { + $res['RuleId'] = $this->ruleId; + } + if (null !== $this->stream) { + $res['Stream'] = $this->stream; + } + if (null !== $this->templateId) { + $res['TemplateId'] = $this->templateId; + } + + return $res; + } + + /** + * @param array $map + * + * @return ruleInfo + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['App'])) { + $model->app = $map['App']; + } + if (isset($map['Description'])) { + $model->description = $map['Description']; + } + if (isset($map['Domain'])) { + $model->domain = $map['Domain']; + } + if (isset($map['Name'])) { + $model->name = $map['Name']; + } + if (isset($map['RuleId'])) { + $model->ruleId = $map['RuleId']; + } + if (isset($map['Stream'])) { + $model->stream = $map['Stream']; + } + if (isset($map['TemplateId'])) { + $model->templateId = $map['TemplateId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamWatermarksRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamWatermarksRequest.php new file mode 100644 index 000000000..218df6797 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamWatermarksRequest.php @@ -0,0 +1,71 @@ + 'OwnerId', + 'pageNumber' => 'PageNumber', + 'pageSize' => 'PageSize', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->pageNumber) { + $res['PageNumber'] = $this->pageNumber; + } + if (null !== $this->pageSize) { + $res['PageSize'] = $this->pageSize; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveStreamWatermarksRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['PageNumber'])) { + $model->pageNumber = $map['PageNumber']; + } + if (isset($map['PageSize'])) { + $model->pageSize = $map['PageSize']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamWatermarksResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamWatermarksResponse.php new file mode 100644 index 000000000..c9f28df01 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamWatermarksResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveStreamWatermarksResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DescribeLiveStreamWatermarksResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamWatermarksResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamWatermarksResponseBody.php new file mode 100644 index 000000000..59bb7ba4e --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamWatermarksResponseBody.php @@ -0,0 +1,60 @@ + 'RequestId', + 'watermarkList' => 'WatermarkList', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->watermarkList) { + $res['WatermarkList'] = null !== $this->watermarkList ? $this->watermarkList->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveStreamWatermarksResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['WatermarkList'])) { + $model->watermarkList = watermarkList::fromMap($map['WatermarkList']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamWatermarksResponseBody/watermarkList.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamWatermarksResponseBody/watermarkList.php new file mode 100644 index 000000000..b0d7ca92b --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamWatermarksResponseBody/watermarkList.php @@ -0,0 +1,60 @@ + 'Watermark', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->watermark) { + $res['Watermark'] = []; + if (null !== $this->watermark && \is_array($this->watermark)) { + $n = 0; + foreach ($this->watermark as $item) { + $res['Watermark'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return watermarkList + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Watermark'])) { + if (!empty($map['Watermark'])) { + $model->watermark = []; + $n = 0; + foreach ($map['Watermark'] as $item) { + $model->watermark[$n++] = null !== $item ? watermark::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamWatermarksResponseBody/watermarkList/watermark.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamWatermarksResponseBody/watermarkList/watermark.php new file mode 100644 index 000000000..0b49aff90 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamWatermarksResponseBody/watermarkList/watermark.php @@ -0,0 +1,179 @@ + 'Description', + 'height' => 'Height', + 'name' => 'Name', + 'offsetCorner' => 'OffsetCorner', + 'pictureUrl' => 'PictureUrl', + 'refHeight' => 'RefHeight', + 'refWidth' => 'RefWidth', + 'templateId' => 'TemplateId', + 'transparency' => 'Transparency', + 'type' => 'Type', + 'XOffset' => 'XOffset', + 'YOffset' => 'YOffset', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->description) { + $res['Description'] = $this->description; + } + if (null !== $this->height) { + $res['Height'] = $this->height; + } + if (null !== $this->name) { + $res['Name'] = $this->name; + } + if (null !== $this->offsetCorner) { + $res['OffsetCorner'] = $this->offsetCorner; + } + if (null !== $this->pictureUrl) { + $res['PictureUrl'] = $this->pictureUrl; + } + if (null !== $this->refHeight) { + $res['RefHeight'] = $this->refHeight; + } + if (null !== $this->refWidth) { + $res['RefWidth'] = $this->refWidth; + } + if (null !== $this->templateId) { + $res['TemplateId'] = $this->templateId; + } + if (null !== $this->transparency) { + $res['Transparency'] = $this->transparency; + } + if (null !== $this->type) { + $res['Type'] = $this->type; + } + if (null !== $this->XOffset) { + $res['XOffset'] = $this->XOffset; + } + if (null !== $this->YOffset) { + $res['YOffset'] = $this->YOffset; + } + + return $res; + } + + /** + * @param array $map + * + * @return watermark + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Description'])) { + $model->description = $map['Description']; + } + if (isset($map['Height'])) { + $model->height = $map['Height']; + } + if (isset($map['Name'])) { + $model->name = $map['Name']; + } + if (isset($map['OffsetCorner'])) { + $model->offsetCorner = $map['OffsetCorner']; + } + if (isset($map['PictureUrl'])) { + $model->pictureUrl = $map['PictureUrl']; + } + if (isset($map['RefHeight'])) { + $model->refHeight = $map['RefHeight']; + } + if (isset($map['RefWidth'])) { + $model->refWidth = $map['RefWidth']; + } + if (isset($map['TemplateId'])) { + $model->templateId = $map['TemplateId']; + } + if (isset($map['Transparency'])) { + $model->transparency = $map['Transparency']; + } + if (isset($map['Type'])) { + $model->type = $map['Type']; + } + if (isset($map['XOffset'])) { + $model->XOffset = $map['XOffset']; + } + if (isset($map['YOffset'])) { + $model->YOffset = $map['YOffset']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsBlockListRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsBlockListRequest.php new file mode 100644 index 000000000..ca0b7f767 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsBlockListRequest.php @@ -0,0 +1,95 @@ + 'DomainName', + 'ownerId' => 'OwnerId', + 'pageNum' => 'PageNum', + 'pageSize' => 'PageSize', + 'securityToken' => 'SecurityToken', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->pageNum) { + $res['PageNum'] = $this->pageNum; + } + if (null !== $this->pageSize) { + $res['PageSize'] = $this->pageSize; + } + if (null !== $this->securityToken) { + $res['SecurityToken'] = $this->securityToken; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveStreamsBlockListRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['PageNum'])) { + $model->pageNum = $map['PageNum']; + } + if (isset($map['PageSize'])) { + $model->pageSize = $map['PageSize']; + } + if (isset($map['SecurityToken'])) { + $model->securityToken = $map['SecurityToken']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsBlockListResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsBlockListResponse.php new file mode 100644 index 000000000..0eca1297f --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsBlockListResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveStreamsBlockListResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DescribeLiveStreamsBlockListResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsBlockListResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsBlockListResponseBody.php new file mode 100644 index 000000000..ea219d3d9 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsBlockListResponseBody.php @@ -0,0 +1,120 @@ + 'DomainName', + 'pageNum' => 'PageNum', + 'pageSize' => 'PageSize', + 'requestId' => 'RequestId', + 'streamUrls' => 'StreamUrls', + 'totalNum' => 'TotalNum', + 'totalPage' => 'TotalPage', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->pageNum) { + $res['PageNum'] = $this->pageNum; + } + if (null !== $this->pageSize) { + $res['PageSize'] = $this->pageSize; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->streamUrls) { + $res['StreamUrls'] = null !== $this->streamUrls ? $this->streamUrls->toMap() : null; + } + if (null !== $this->totalNum) { + $res['TotalNum'] = $this->totalNum; + } + if (null !== $this->totalPage) { + $res['TotalPage'] = $this->totalPage; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveStreamsBlockListResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['PageNum'])) { + $model->pageNum = $map['PageNum']; + } + if (isset($map['PageSize'])) { + $model->pageSize = $map['PageSize']; + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['StreamUrls'])) { + $model->streamUrls = streamUrls::fromMap($map['StreamUrls']); + } + if (isset($map['TotalNum'])) { + $model->totalNum = $map['TotalNum']; + } + if (isset($map['TotalPage'])) { + $model->totalPage = $map['TotalPage']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsBlockListResponseBody/streamUrls.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsBlockListResponseBody/streamUrls.php new file mode 100644 index 000000000..7a202dc9a --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsBlockListResponseBody/streamUrls.php @@ -0,0 +1,49 @@ + 'StreamUrl', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->streamUrl) { + $res['StreamUrl'] = $this->streamUrl; + } + + return $res; + } + + /** + * @param array $map + * + * @return streamUrls + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['StreamUrl'])) { + if (!empty($map['StreamUrl'])) { + $model->streamUrl = $map['StreamUrl']; + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsControlHistoryRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsControlHistoryRequest.php new file mode 100644 index 000000000..a4a6f6e7f --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsControlHistoryRequest.php @@ -0,0 +1,95 @@ + 'AppName', + 'domainName' => 'DomainName', + 'endTime' => 'EndTime', + 'ownerId' => 'OwnerId', + 'startTime' => 'StartTime', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->appName) { + $res['AppName'] = $this->appName; + } + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->endTime) { + $res['EndTime'] = $this->endTime; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->startTime) { + $res['StartTime'] = $this->startTime; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveStreamsControlHistoryRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppName'])) { + $model->appName = $map['AppName']; + } + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['EndTime'])) { + $model->endTime = $map['EndTime']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['StartTime'])) { + $model->startTime = $map['StartTime']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsControlHistoryResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsControlHistoryResponse.php new file mode 100644 index 000000000..4ee1b06b7 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsControlHistoryResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveStreamsControlHistoryResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DescribeLiveStreamsControlHistoryResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsControlHistoryResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsControlHistoryResponseBody.php new file mode 100644 index 000000000..dadff7052 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsControlHistoryResponseBody.php @@ -0,0 +1,60 @@ + 'ControlInfo', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->controlInfo) { + $res['ControlInfo'] = null !== $this->controlInfo ? $this->controlInfo->toMap() : null; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveStreamsControlHistoryResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['ControlInfo'])) { + $model->controlInfo = controlInfo::fromMap($map['ControlInfo']); + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsControlHistoryResponseBody/controlInfo.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsControlHistoryResponseBody/controlInfo.php new file mode 100644 index 000000000..f47658900 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsControlHistoryResponseBody/controlInfo.php @@ -0,0 +1,60 @@ + 'LiveStreamControlInfo', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->liveStreamControlInfo) { + $res['LiveStreamControlInfo'] = []; + if (null !== $this->liveStreamControlInfo && \is_array($this->liveStreamControlInfo)) { + $n = 0; + foreach ($this->liveStreamControlInfo as $item) { + $res['LiveStreamControlInfo'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return controlInfo + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['LiveStreamControlInfo'])) { + if (!empty($map['LiveStreamControlInfo'])) { + $model->liveStreamControlInfo = []; + $n = 0; + foreach ($map['LiveStreamControlInfo'] as $item) { + $model->liveStreamControlInfo[$n++] = null !== $item ? liveStreamControlInfo::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsControlHistoryResponseBody/controlInfo/liveStreamControlInfo.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsControlHistoryResponseBody/controlInfo/liveStreamControlInfo.php new file mode 100644 index 000000000..b63518eaf --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsControlHistoryResponseBody/controlInfo/liveStreamControlInfo.php @@ -0,0 +1,83 @@ + 'Action', + 'clientIP' => 'ClientIP', + 'streamName' => 'StreamName', + 'timeStamp' => 'TimeStamp', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->action) { + $res['Action'] = $this->action; + } + if (null !== $this->clientIP) { + $res['ClientIP'] = $this->clientIP; + } + if (null !== $this->streamName) { + $res['StreamName'] = $this->streamName; + } + if (null !== $this->timeStamp) { + $res['TimeStamp'] = $this->timeStamp; + } + + return $res; + } + + /** + * @param array $map + * + * @return liveStreamControlInfo + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Action'])) { + $model->action = $map['Action']; + } + if (isset($map['ClientIP'])) { + $model->clientIP = $map['ClientIP']; + } + if (isset($map['StreamName'])) { + $model->streamName = $map['StreamName']; + } + if (isset($map['TimeStamp'])) { + $model->timeStamp = $map['TimeStamp']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsNotifyRecordsRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsNotifyRecordsRequest.php new file mode 100644 index 000000000..2a1064a82 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsNotifyRecordsRequest.php @@ -0,0 +1,143 @@ + 'AppName', + 'domainName' => 'DomainName', + 'endTime' => 'EndTime', + 'ownerId' => 'OwnerId', + 'pageNumber' => 'PageNumber', + 'pageSize' => 'PageSize', + 'startTime' => 'StartTime', + 'status' => 'Status', + 'streamName' => 'StreamName', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->appName) { + $res['AppName'] = $this->appName; + } + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->endTime) { + $res['EndTime'] = $this->endTime; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->pageNumber) { + $res['PageNumber'] = $this->pageNumber; + } + if (null !== $this->pageSize) { + $res['PageSize'] = $this->pageSize; + } + if (null !== $this->startTime) { + $res['StartTime'] = $this->startTime; + } + if (null !== $this->status) { + $res['Status'] = $this->status; + } + if (null !== $this->streamName) { + $res['StreamName'] = $this->streamName; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveStreamsNotifyRecordsRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppName'])) { + $model->appName = $map['AppName']; + } + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['EndTime'])) { + $model->endTime = $map['EndTime']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['PageNumber'])) { + $model->pageNumber = $map['PageNumber']; + } + if (isset($map['PageSize'])) { + $model->pageSize = $map['PageSize']; + } + if (isset($map['StartTime'])) { + $model->startTime = $map['StartTime']; + } + if (isset($map['Status'])) { + $model->status = $map['Status']; + } + if (isset($map['StreamName'])) { + $model->streamName = $map['StreamName']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsNotifyRecordsResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsNotifyRecordsResponse.php new file mode 100644 index 000000000..6a0076d10 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsNotifyRecordsResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveStreamsNotifyRecordsResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DescribeLiveStreamsNotifyRecordsResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsNotifyRecordsResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsNotifyRecordsResponseBody.php new file mode 100644 index 000000000..a10d003be --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsNotifyRecordsResponseBody.php @@ -0,0 +1,108 @@ + 'NotifyRecordsInfo', + 'pageNum' => 'PageNum', + 'pageSize' => 'PageSize', + 'requestId' => 'RequestId', + 'totalNum' => 'TotalNum', + 'totalPage' => 'TotalPage', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->notifyRecordsInfo) { + $res['NotifyRecordsInfo'] = null !== $this->notifyRecordsInfo ? $this->notifyRecordsInfo->toMap() : null; + } + if (null !== $this->pageNum) { + $res['PageNum'] = $this->pageNum; + } + if (null !== $this->pageSize) { + $res['PageSize'] = $this->pageSize; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->totalNum) { + $res['TotalNum'] = $this->totalNum; + } + if (null !== $this->totalPage) { + $res['TotalPage'] = $this->totalPage; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveStreamsNotifyRecordsResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['NotifyRecordsInfo'])) { + $model->notifyRecordsInfo = notifyRecordsInfo::fromMap($map['NotifyRecordsInfo']); + } + if (isset($map['PageNum'])) { + $model->pageNum = $map['PageNum']; + } + if (isset($map['PageSize'])) { + $model->pageSize = $map['PageSize']; + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['TotalNum'])) { + $model->totalNum = $map['TotalNum']; + } + if (isset($map['TotalPage'])) { + $model->totalPage = $map['TotalPage']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsNotifyRecordsResponseBody/notifyRecordsInfo.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsNotifyRecordsResponseBody/notifyRecordsInfo.php new file mode 100644 index 000000000..8831fcc72 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsNotifyRecordsResponseBody/notifyRecordsInfo.php @@ -0,0 +1,60 @@ + 'LiveStreamNotifyRecordsInfo', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->liveStreamNotifyRecordsInfo) { + $res['LiveStreamNotifyRecordsInfo'] = []; + if (null !== $this->liveStreamNotifyRecordsInfo && \is_array($this->liveStreamNotifyRecordsInfo)) { + $n = 0; + foreach ($this->liveStreamNotifyRecordsInfo as $item) { + $res['LiveStreamNotifyRecordsInfo'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return notifyRecordsInfo + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['LiveStreamNotifyRecordsInfo'])) { + if (!empty($map['LiveStreamNotifyRecordsInfo'])) { + $model->liveStreamNotifyRecordsInfo = []; + $n = 0; + foreach ($map['LiveStreamNotifyRecordsInfo'] as $item) { + $model->liveStreamNotifyRecordsInfo[$n++] = null !== $item ? liveStreamNotifyRecordsInfo::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsNotifyRecordsResponseBody/notifyRecordsInfo/liveStreamNotifyRecordsInfo.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsNotifyRecordsResponseBody/notifyRecordsInfo/liveStreamNotifyRecordsInfo.php new file mode 100644 index 000000000..72101cfa6 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsNotifyRecordsResponseBody/notifyRecordsInfo/liveStreamNotifyRecordsInfo.php @@ -0,0 +1,143 @@ + 'AppName', + 'description' => 'Description', + 'domainName' => 'DomainName', + 'notifyContent' => 'NotifyContent', + 'notifyResult' => 'NotifyResult', + 'notifyTime' => 'NotifyTime', + 'notifyType' => 'NotifyType', + 'notifyUrl' => 'NotifyUrl', + 'streamName' => 'StreamName', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->appName) { + $res['AppName'] = $this->appName; + } + if (null !== $this->description) { + $res['Description'] = $this->description; + } + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->notifyContent) { + $res['NotifyContent'] = $this->notifyContent; + } + if (null !== $this->notifyResult) { + $res['NotifyResult'] = $this->notifyResult; + } + if (null !== $this->notifyTime) { + $res['NotifyTime'] = $this->notifyTime; + } + if (null !== $this->notifyType) { + $res['NotifyType'] = $this->notifyType; + } + if (null !== $this->notifyUrl) { + $res['NotifyUrl'] = $this->notifyUrl; + } + if (null !== $this->streamName) { + $res['StreamName'] = $this->streamName; + } + + return $res; + } + + /** + * @param array $map + * + * @return liveStreamNotifyRecordsInfo + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppName'])) { + $model->appName = $map['AppName']; + } + if (isset($map['Description'])) { + $model->description = $map['Description']; + } + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['NotifyContent'])) { + $model->notifyContent = $map['NotifyContent']; + } + if (isset($map['NotifyResult'])) { + $model->notifyResult = $map['NotifyResult']; + } + if (isset($map['NotifyTime'])) { + $model->notifyTime = $map['NotifyTime']; + } + if (isset($map['NotifyType'])) { + $model->notifyType = $map['NotifyType']; + } + if (isset($map['NotifyUrl'])) { + $model->notifyUrl = $map['NotifyUrl']; + } + if (isset($map['StreamName'])) { + $model->streamName = $map['StreamName']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsNotifyUrlConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsNotifyUrlConfigRequest.php new file mode 100644 index 000000000..b38141788 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsNotifyUrlConfigRequest.php @@ -0,0 +1,59 @@ + 'DomainName', + 'ownerId' => 'OwnerId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveStreamsNotifyUrlConfigRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsNotifyUrlConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsNotifyUrlConfigResponse.php new file mode 100644 index 000000000..f02cbab6e --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsNotifyUrlConfigResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveStreamsNotifyUrlConfigResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DescribeLiveStreamsNotifyUrlConfigResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsNotifyUrlConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsNotifyUrlConfigResponseBody.php new file mode 100644 index 000000000..14c1d84e9 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsNotifyUrlConfigResponseBody.php @@ -0,0 +1,60 @@ + 'LiveStreamsNotifyConfig', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->liveStreamsNotifyConfig) { + $res['LiveStreamsNotifyConfig'] = null !== $this->liveStreamsNotifyConfig ? $this->liveStreamsNotifyConfig->toMap() : null; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveStreamsNotifyUrlConfigResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['LiveStreamsNotifyConfig'])) { + $model->liveStreamsNotifyConfig = liveStreamsNotifyConfig::fromMap($map['LiveStreamsNotifyConfig']); + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsNotifyUrlConfigResponseBody/liveStreamsNotifyConfig.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsNotifyUrlConfigResponseBody/liveStreamsNotifyConfig.php new file mode 100644 index 000000000..6dfdffa36 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsNotifyUrlConfigResponseBody/liveStreamsNotifyConfig.php @@ -0,0 +1,83 @@ + 'DomainName', + 'notifyAuthKey' => 'NotifyAuthKey', + 'notifyReqAuth' => 'NotifyReqAuth', + 'notifyUrl' => 'NotifyUrl', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->notifyAuthKey) { + $res['NotifyAuthKey'] = $this->notifyAuthKey; + } + if (null !== $this->notifyReqAuth) { + $res['NotifyReqAuth'] = $this->notifyReqAuth; + } + if (null !== $this->notifyUrl) { + $res['NotifyUrl'] = $this->notifyUrl; + } + + return $res; + } + + /** + * @param array $map + * + * @return liveStreamsNotifyConfig + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['NotifyAuthKey'])) { + $model->notifyAuthKey = $map['NotifyAuthKey']; + } + if (isset($map['NotifyReqAuth'])) { + $model->notifyReqAuth = $map['NotifyReqAuth']; + } + if (isset($map['NotifyUrl'])) { + $model->notifyUrl = $map['NotifyUrl']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsOnlineListRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsOnlineListRequest.php new file mode 100644 index 000000000..ee86f8a32 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsOnlineListRequest.php @@ -0,0 +1,143 @@ + 'AppName', + 'domainName' => 'DomainName', + 'onlyStream' => 'OnlyStream', + 'ownerId' => 'OwnerId', + 'pageNum' => 'PageNum', + 'pageSize' => 'PageSize', + 'queryType' => 'QueryType', + 'streamName' => 'StreamName', + 'streamType' => 'StreamType', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->appName) { + $res['AppName'] = $this->appName; + } + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->onlyStream) { + $res['OnlyStream'] = $this->onlyStream; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->pageNum) { + $res['PageNum'] = $this->pageNum; + } + if (null !== $this->pageSize) { + $res['PageSize'] = $this->pageSize; + } + if (null !== $this->queryType) { + $res['QueryType'] = $this->queryType; + } + if (null !== $this->streamName) { + $res['StreamName'] = $this->streamName; + } + if (null !== $this->streamType) { + $res['StreamType'] = $this->streamType; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveStreamsOnlineListRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppName'])) { + $model->appName = $map['AppName']; + } + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['OnlyStream'])) { + $model->onlyStream = $map['OnlyStream']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['PageNum'])) { + $model->pageNum = $map['PageNum']; + } + if (isset($map['PageSize'])) { + $model->pageSize = $map['PageSize']; + } + if (isset($map['QueryType'])) { + $model->queryType = $map['QueryType']; + } + if (isset($map['StreamName'])) { + $model->streamName = $map['StreamName']; + } + if (isset($map['StreamType'])) { + $model->streamType = $map['StreamType']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsOnlineListResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsOnlineListResponse.php new file mode 100644 index 000000000..29388c84d --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsOnlineListResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveStreamsOnlineListResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DescribeLiveStreamsOnlineListResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsOnlineListResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsOnlineListResponseBody.php new file mode 100644 index 000000000..ae8e7fece --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsOnlineListResponseBody.php @@ -0,0 +1,108 @@ + 'OnlineInfo', + 'pageNum' => 'PageNum', + 'pageSize' => 'PageSize', + 'requestId' => 'RequestId', + 'totalNum' => 'TotalNum', + 'totalPage' => 'TotalPage', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->onlineInfo) { + $res['OnlineInfo'] = null !== $this->onlineInfo ? $this->onlineInfo->toMap() : null; + } + if (null !== $this->pageNum) { + $res['PageNum'] = $this->pageNum; + } + if (null !== $this->pageSize) { + $res['PageSize'] = $this->pageSize; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->totalNum) { + $res['TotalNum'] = $this->totalNum; + } + if (null !== $this->totalPage) { + $res['TotalPage'] = $this->totalPage; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveStreamsOnlineListResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['OnlineInfo'])) { + $model->onlineInfo = onlineInfo::fromMap($map['OnlineInfo']); + } + if (isset($map['PageNum'])) { + $model->pageNum = $map['PageNum']; + } + if (isset($map['PageSize'])) { + $model->pageSize = $map['PageSize']; + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['TotalNum'])) { + $model->totalNum = $map['TotalNum']; + } + if (isset($map['TotalPage'])) { + $model->totalPage = $map['TotalPage']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsOnlineListResponseBody/onlineInfo.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsOnlineListResponseBody/onlineInfo.php new file mode 100644 index 000000000..54b66f1aa --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsOnlineListResponseBody/onlineInfo.php @@ -0,0 +1,60 @@ + 'LiveStreamOnlineInfo', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->liveStreamOnlineInfo) { + $res['LiveStreamOnlineInfo'] = []; + if (null !== $this->liveStreamOnlineInfo && \is_array($this->liveStreamOnlineInfo)) { + $n = 0; + foreach ($this->liveStreamOnlineInfo as $item) { + $res['LiveStreamOnlineInfo'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return onlineInfo + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['LiveStreamOnlineInfo'])) { + if (!empty($map['LiveStreamOnlineInfo'])) { + $model->liveStreamOnlineInfo = []; + $n = 0; + foreach ($map['LiveStreamOnlineInfo'] as $item) { + $model->liveStreamOnlineInfo[$n++] = null !== $item ? liveStreamOnlineInfo::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsOnlineListResponseBody/onlineInfo/liveStreamOnlineInfo.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsOnlineListResponseBody/onlineInfo/liveStreamOnlineInfo.php new file mode 100644 index 000000000..a78b17db2 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsOnlineListResponseBody/onlineInfo/liveStreamOnlineInfo.php @@ -0,0 +1,215 @@ + 'AppName', + 'audioCodecId' => 'AudioCodecId', + 'clientIp' => 'ClientIp', + 'domainName' => 'DomainName', + 'frameRate' => 'FrameRate', + 'height' => 'Height', + 'publishDomain' => 'PublishDomain', + 'publishTime' => 'PublishTime', + 'publishType' => 'PublishType', + 'publishUrl' => 'PublishUrl', + 'serverIp' => 'ServerIp', + 'streamName' => 'StreamName', + 'transcoded' => 'Transcoded', + 'videoCodecId' => 'VideoCodecId', + 'width' => 'Width', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->appName) { + $res['AppName'] = $this->appName; + } + if (null !== $this->audioCodecId) { + $res['AudioCodecId'] = $this->audioCodecId; + } + if (null !== $this->clientIp) { + $res['ClientIp'] = $this->clientIp; + } + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->frameRate) { + $res['FrameRate'] = $this->frameRate; + } + if (null !== $this->height) { + $res['Height'] = $this->height; + } + if (null !== $this->publishDomain) { + $res['PublishDomain'] = $this->publishDomain; + } + if (null !== $this->publishTime) { + $res['PublishTime'] = $this->publishTime; + } + if (null !== $this->publishType) { + $res['PublishType'] = $this->publishType; + } + if (null !== $this->publishUrl) { + $res['PublishUrl'] = $this->publishUrl; + } + if (null !== $this->serverIp) { + $res['ServerIp'] = $this->serverIp; + } + if (null !== $this->streamName) { + $res['StreamName'] = $this->streamName; + } + if (null !== $this->transcoded) { + $res['Transcoded'] = $this->transcoded; + } + if (null !== $this->videoCodecId) { + $res['VideoCodecId'] = $this->videoCodecId; + } + if (null !== $this->width) { + $res['Width'] = $this->width; + } + + return $res; + } + + /** + * @param array $map + * + * @return liveStreamOnlineInfo + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppName'])) { + $model->appName = $map['AppName']; + } + if (isset($map['AudioCodecId'])) { + $model->audioCodecId = $map['AudioCodecId']; + } + if (isset($map['ClientIp'])) { + $model->clientIp = $map['ClientIp']; + } + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['FrameRate'])) { + $model->frameRate = $map['FrameRate']; + } + if (isset($map['Height'])) { + $model->height = $map['Height']; + } + if (isset($map['PublishDomain'])) { + $model->publishDomain = $map['PublishDomain']; + } + if (isset($map['PublishTime'])) { + $model->publishTime = $map['PublishTime']; + } + if (isset($map['PublishType'])) { + $model->publishType = $map['PublishType']; + } + if (isset($map['PublishUrl'])) { + $model->publishUrl = $map['PublishUrl']; + } + if (isset($map['ServerIp'])) { + $model->serverIp = $map['ServerIp']; + } + if (isset($map['StreamName'])) { + $model->streamName = $map['StreamName']; + } + if (isset($map['Transcoded'])) { + $model->transcoded = $map['Transcoded']; + } + if (isset($map['VideoCodecId'])) { + $model->videoCodecId = $map['VideoCodecId']; + } + if (isset($map['Width'])) { + $model->width = $map['Width']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsPublishListRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsPublishListRequest.php new file mode 100644 index 000000000..ccf73777c --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsPublishListRequest.php @@ -0,0 +1,167 @@ + 'AppName', + 'domainName' => 'DomainName', + 'endTime' => 'EndTime', + 'orderBy' => 'OrderBy', + 'ownerId' => 'OwnerId', + 'pageNumber' => 'PageNumber', + 'pageSize' => 'PageSize', + 'queryType' => 'QueryType', + 'startTime' => 'StartTime', + 'streamName' => 'StreamName', + 'streamType' => 'StreamType', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->appName) { + $res['AppName'] = $this->appName; + } + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->endTime) { + $res['EndTime'] = $this->endTime; + } + if (null !== $this->orderBy) { + $res['OrderBy'] = $this->orderBy; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->pageNumber) { + $res['PageNumber'] = $this->pageNumber; + } + if (null !== $this->pageSize) { + $res['PageSize'] = $this->pageSize; + } + if (null !== $this->queryType) { + $res['QueryType'] = $this->queryType; + } + if (null !== $this->startTime) { + $res['StartTime'] = $this->startTime; + } + if (null !== $this->streamName) { + $res['StreamName'] = $this->streamName; + } + if (null !== $this->streamType) { + $res['StreamType'] = $this->streamType; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveStreamsPublishListRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppName'])) { + $model->appName = $map['AppName']; + } + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['EndTime'])) { + $model->endTime = $map['EndTime']; + } + if (isset($map['OrderBy'])) { + $model->orderBy = $map['OrderBy']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['PageNumber'])) { + $model->pageNumber = $map['PageNumber']; + } + if (isset($map['PageSize'])) { + $model->pageSize = $map['PageSize']; + } + if (isset($map['QueryType'])) { + $model->queryType = $map['QueryType']; + } + if (isset($map['StartTime'])) { + $model->startTime = $map['StartTime']; + } + if (isset($map['StreamName'])) { + $model->streamName = $map['StreamName']; + } + if (isset($map['StreamType'])) { + $model->streamType = $map['StreamType']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsPublishListResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsPublishListResponse.php new file mode 100644 index 000000000..c3d55b5e3 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsPublishListResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveStreamsPublishListResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DescribeLiveStreamsPublishListResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsPublishListResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsPublishListResponseBody.php new file mode 100644 index 000000000..a4406e2b5 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsPublishListResponseBody.php @@ -0,0 +1,108 @@ + 'PageNum', + 'pageSize' => 'PageSize', + 'publishInfo' => 'PublishInfo', + 'requestId' => 'RequestId', + 'totalNum' => 'TotalNum', + 'totalPage' => 'TotalPage', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->pageNum) { + $res['PageNum'] = $this->pageNum; + } + if (null !== $this->pageSize) { + $res['PageSize'] = $this->pageSize; + } + if (null !== $this->publishInfo) { + $res['PublishInfo'] = null !== $this->publishInfo ? $this->publishInfo->toMap() : null; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->totalNum) { + $res['TotalNum'] = $this->totalNum; + } + if (null !== $this->totalPage) { + $res['TotalPage'] = $this->totalPage; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveStreamsPublishListResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['PageNum'])) { + $model->pageNum = $map['PageNum']; + } + if (isset($map['PageSize'])) { + $model->pageSize = $map['PageSize']; + } + if (isset($map['PublishInfo'])) { + $model->publishInfo = publishInfo::fromMap($map['PublishInfo']); + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['TotalNum'])) { + $model->totalNum = $map['TotalNum']; + } + if (isset($map['TotalPage'])) { + $model->totalPage = $map['TotalPage']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsPublishListResponseBody/publishInfo.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsPublishListResponseBody/publishInfo.php new file mode 100644 index 000000000..fbff2908b --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsPublishListResponseBody/publishInfo.php @@ -0,0 +1,60 @@ + 'LiveStreamPublishInfo', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->liveStreamPublishInfo) { + $res['LiveStreamPublishInfo'] = []; + if (null !== $this->liveStreamPublishInfo && \is_array($this->liveStreamPublishInfo)) { + $n = 0; + foreach ($this->liveStreamPublishInfo as $item) { + $res['LiveStreamPublishInfo'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return publishInfo + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['LiveStreamPublishInfo'])) { + if (!empty($map['LiveStreamPublishInfo'])) { + $model->liveStreamPublishInfo = []; + $n = 0; + foreach ($map['LiveStreamPublishInfo'] as $item) { + $model->liveStreamPublishInfo[$n++] = null !== $item ? liveStreamPublishInfo::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsPublishListResponseBody/publishInfo/liveStreamPublishInfo.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsPublishListResponseBody/publishInfo/liveStreamPublishInfo.php new file mode 100644 index 000000000..9fcbd277d --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveStreamsPublishListResponseBody/publishInfo/liveStreamPublishInfo.php @@ -0,0 +1,191 @@ + 'AppName', + 'clientAddr' => 'ClientAddr', + 'domainName' => 'DomainName', + 'edgeNodeAddr' => 'EdgeNodeAddr', + 'publishDomain' => 'PublishDomain', + 'publishTime' => 'PublishTime', + 'publishType' => 'PublishType', + 'publishUrl' => 'PublishUrl', + 'stopTime' => 'StopTime', + 'streamName' => 'StreamName', + 'streamUrl' => 'StreamUrl', + 'transcodeId' => 'TranscodeId', + 'transcoded' => 'Transcoded', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->appName) { + $res['AppName'] = $this->appName; + } + if (null !== $this->clientAddr) { + $res['ClientAddr'] = $this->clientAddr; + } + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->edgeNodeAddr) { + $res['EdgeNodeAddr'] = $this->edgeNodeAddr; + } + if (null !== $this->publishDomain) { + $res['PublishDomain'] = $this->publishDomain; + } + if (null !== $this->publishTime) { + $res['PublishTime'] = $this->publishTime; + } + if (null !== $this->publishType) { + $res['PublishType'] = $this->publishType; + } + if (null !== $this->publishUrl) { + $res['PublishUrl'] = $this->publishUrl; + } + if (null !== $this->stopTime) { + $res['StopTime'] = $this->stopTime; + } + if (null !== $this->streamName) { + $res['StreamName'] = $this->streamName; + } + if (null !== $this->streamUrl) { + $res['StreamUrl'] = $this->streamUrl; + } + if (null !== $this->transcodeId) { + $res['TranscodeId'] = $this->transcodeId; + } + if (null !== $this->transcoded) { + $res['Transcoded'] = $this->transcoded; + } + + return $res; + } + + /** + * @param array $map + * + * @return liveStreamPublishInfo + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppName'])) { + $model->appName = $map['AppName']; + } + if (isset($map['ClientAddr'])) { + $model->clientAddr = $map['ClientAddr']; + } + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['EdgeNodeAddr'])) { + $model->edgeNodeAddr = $map['EdgeNodeAddr']; + } + if (isset($map['PublishDomain'])) { + $model->publishDomain = $map['PublishDomain']; + } + if (isset($map['PublishTime'])) { + $model->publishTime = $map['PublishTime']; + } + if (isset($map['PublishType'])) { + $model->publishType = $map['PublishType']; + } + if (isset($map['PublishUrl'])) { + $model->publishUrl = $map['PublishUrl']; + } + if (isset($map['StopTime'])) { + $model->stopTime = $map['StopTime']; + } + if (isset($map['StreamName'])) { + $model->streamName = $map['StreamName']; + } + if (isset($map['StreamUrl'])) { + $model->streamUrl = $map['StreamUrl']; + } + if (isset($map['TranscodeId'])) { + $model->transcodeId = $map['TranscodeId']; + } + if (isset($map['Transcoded'])) { + $model->transcoded = $map['Transcoded']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveTagResourcesRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveTagResourcesRequest.php new file mode 100644 index 000000000..25487f63b --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveTagResourcesRequest.php @@ -0,0 +1,98 @@ + 'OwnerId', + 'resourceId' => 'ResourceId', + 'resourceType' => 'ResourceType', + 'tag' => 'Tag', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->resourceId) { + $res['ResourceId'] = $this->resourceId; + } + if (null !== $this->resourceType) { + $res['ResourceType'] = $this->resourceType; + } + if (null !== $this->tag) { + $res['Tag'] = []; + if (null !== $this->tag && \is_array($this->tag)) { + $n = 0; + foreach ($this->tag as $item) { + $res['Tag'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveTagResourcesRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['ResourceId'])) { + if (!empty($map['ResourceId'])) { + $model->resourceId = $map['ResourceId']; + } + } + if (isset($map['ResourceType'])) { + $model->resourceType = $map['ResourceType']; + } + if (isset($map['Tag'])) { + if (!empty($map['Tag'])) { + $model->tag = []; + $n = 0; + foreach ($map['Tag'] as $item) { + $model->tag[$n++] = null !== $item ? tag::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveTagResourcesRequest/tag.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveTagResourcesRequest/tag.php new file mode 100644 index 000000000..67ed7bb65 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveTagResourcesRequest/tag.php @@ -0,0 +1,59 @@ + 'Key', + 'value' => 'Value', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->key) { + $res['Key'] = $this->key; + } + if (null !== $this->value) { + $res['Value'] = $this->value; + } + + return $res; + } + + /** + * @param array $map + * + * @return tag + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Key'])) { + $model->key = $map['Key']; + } + if (isset($map['Value'])) { + $model->value = $map['Value']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveTagResourcesResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveTagResourcesResponse.php new file mode 100644 index 000000000..48447270f --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveTagResourcesResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveTagResourcesResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DescribeLiveTagResourcesResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveTagResourcesResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveTagResourcesResponseBody.php new file mode 100644 index 000000000..d578b5766 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveTagResourcesResponseBody.php @@ -0,0 +1,72 @@ + 'RequestId', + 'tagResources' => 'TagResources', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->tagResources) { + $res['TagResources'] = []; + if (null !== $this->tagResources && \is_array($this->tagResources)) { + $n = 0; + foreach ($this->tagResources as $item) { + $res['TagResources'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveTagResourcesResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['TagResources'])) { + if (!empty($map['TagResources'])) { + $model->tagResources = []; + $n = 0; + foreach ($map['TagResources'] as $item) { + $model->tagResources[$n++] = null !== $item ? tagResources::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveTagResourcesResponseBody/tagResources.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveTagResourcesResponseBody/tagResources.php new file mode 100644 index 000000000..baa2c80fc --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveTagResourcesResponseBody/tagResources.php @@ -0,0 +1,72 @@ + 'ResourceId', + 'tag' => 'Tag', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->resourceId) { + $res['ResourceId'] = $this->resourceId; + } + if (null !== $this->tag) { + $res['Tag'] = []; + if (null !== $this->tag && \is_array($this->tag)) { + $n = 0; + foreach ($this->tag as $item) { + $res['Tag'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return tagResources + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['ResourceId'])) { + $model->resourceId = $map['ResourceId']; + } + if (isset($map['Tag'])) { + if (!empty($map['Tag'])) { + $model->tag = []; + $n = 0; + foreach ($map['Tag'] as $item) { + $model->tag[$n++] = null !== $item ? tag::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveTagResourcesResponseBody/tagResources/tag.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveTagResourcesResponseBody/tagResources/tag.php new file mode 100644 index 000000000..63461cd08 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveTagResourcesResponseBody/tagResources/tag.php @@ -0,0 +1,59 @@ + 'Key', + 'value' => 'Value', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->key) { + $res['Key'] = $this->key; + } + if (null !== $this->value) { + $res['Value'] = $this->value; + } + + return $res; + } + + /** + * @param array $map + * + * @return tag + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Key'])) { + $model->key = $map['Key']; + } + if (isset($map['Value'])) { + $model->value = $map['Value']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveTopDomainsByFlowRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveTopDomainsByFlowRequest.php new file mode 100644 index 000000000..451a838e5 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveTopDomainsByFlowRequest.php @@ -0,0 +1,83 @@ + 'EndTime', + 'limit' => 'Limit', + 'ownerId' => 'OwnerId', + 'startTime' => 'StartTime', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->endTime) { + $res['EndTime'] = $this->endTime; + } + if (null !== $this->limit) { + $res['Limit'] = $this->limit; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->startTime) { + $res['StartTime'] = $this->startTime; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveTopDomainsByFlowRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['EndTime'])) { + $model->endTime = $map['EndTime']; + } + if (isset($map['Limit'])) { + $model->limit = $map['Limit']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['StartTime'])) { + $model->startTime = $map['StartTime']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveTopDomainsByFlowResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveTopDomainsByFlowResponse.php new file mode 100644 index 000000000..1fd2fbfba --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveTopDomainsByFlowResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveTopDomainsByFlowResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DescribeLiveTopDomainsByFlowResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveTopDomainsByFlowResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveTopDomainsByFlowResponseBody.php new file mode 100644 index 000000000..992d79e7e --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveTopDomainsByFlowResponseBody.php @@ -0,0 +1,108 @@ + 'DomainCount', + 'domainOnlineCount' => 'DomainOnlineCount', + 'endTime' => 'EndTime', + 'requestId' => 'RequestId', + 'startTime' => 'StartTime', + 'topDomains' => 'TopDomains', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->domainCount) { + $res['DomainCount'] = $this->domainCount; + } + if (null !== $this->domainOnlineCount) { + $res['DomainOnlineCount'] = $this->domainOnlineCount; + } + if (null !== $this->endTime) { + $res['EndTime'] = $this->endTime; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->startTime) { + $res['StartTime'] = $this->startTime; + } + if (null !== $this->topDomains) { + $res['TopDomains'] = null !== $this->topDomains ? $this->topDomains->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveTopDomainsByFlowResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DomainCount'])) { + $model->domainCount = $map['DomainCount']; + } + if (isset($map['DomainOnlineCount'])) { + $model->domainOnlineCount = $map['DomainOnlineCount']; + } + if (isset($map['EndTime'])) { + $model->endTime = $map['EndTime']; + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['StartTime'])) { + $model->startTime = $map['StartTime']; + } + if (isset($map['TopDomains'])) { + $model->topDomains = topDomains::fromMap($map['TopDomains']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveTopDomainsByFlowResponseBody/topDomains.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveTopDomainsByFlowResponseBody/topDomains.php new file mode 100644 index 000000000..bf9c254cb --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveTopDomainsByFlowResponseBody/topDomains.php @@ -0,0 +1,60 @@ + 'TopDomain', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->topDomain) { + $res['TopDomain'] = []; + if (null !== $this->topDomain && \is_array($this->topDomain)) { + $n = 0; + foreach ($this->topDomain as $item) { + $res['TopDomain'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return topDomains + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['TopDomain'])) { + if (!empty($map['TopDomain'])) { + $model->topDomain = []; + $n = 0; + foreach ($map['TopDomain'] as $item) { + $model->topDomain[$n++] = null !== $item ? topDomain::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveTopDomainsByFlowResponseBody/topDomains/topDomain.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveTopDomainsByFlowResponseBody/topDomains/topDomain.php new file mode 100644 index 000000000..f652752ee --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveTopDomainsByFlowResponseBody/topDomains/topDomain.php @@ -0,0 +1,119 @@ + 'DomainName', + 'maxBps' => 'MaxBps', + 'maxBpsTime' => 'MaxBpsTime', + 'rank' => 'Rank', + 'totalAccess' => 'TotalAccess', + 'totalTraffic' => 'TotalTraffic', + 'trafficPercent' => 'TrafficPercent', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->maxBps) { + $res['MaxBps'] = $this->maxBps; + } + if (null !== $this->maxBpsTime) { + $res['MaxBpsTime'] = $this->maxBpsTime; + } + if (null !== $this->rank) { + $res['Rank'] = $this->rank; + } + if (null !== $this->totalAccess) { + $res['TotalAccess'] = $this->totalAccess; + } + if (null !== $this->totalTraffic) { + $res['TotalTraffic'] = $this->totalTraffic; + } + if (null !== $this->trafficPercent) { + $res['TrafficPercent'] = $this->trafficPercent; + } + + return $res; + } + + /** + * @param array $map + * + * @return topDomain + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['MaxBps'])) { + $model->maxBps = $map['MaxBps']; + } + if (isset($map['MaxBpsTime'])) { + $model->maxBpsTime = $map['MaxBpsTime']; + } + if (isset($map['Rank'])) { + $model->rank = $map['Rank']; + } + if (isset($map['TotalAccess'])) { + $model->totalAccess = $map['TotalAccess']; + } + if (isset($map['TotalTraffic'])) { + $model->totalTraffic = $map['TotalTraffic']; + } + if (isset($map['TrafficPercent'])) { + $model->trafficPercent = $map['TrafficPercent']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveUserBillPredictionRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveUserBillPredictionRequest.php new file mode 100644 index 000000000..a8bae2670 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveUserBillPredictionRequest.php @@ -0,0 +1,95 @@ + 'Area', + 'dimension' => 'Dimension', + 'endTime' => 'EndTime', + 'ownerId' => 'OwnerId', + 'startTime' => 'StartTime', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->area) { + $res['Area'] = $this->area; + } + if (null !== $this->dimension) { + $res['Dimension'] = $this->dimension; + } + if (null !== $this->endTime) { + $res['EndTime'] = $this->endTime; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->startTime) { + $res['StartTime'] = $this->startTime; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveUserBillPredictionRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Area'])) { + $model->area = $map['Area']; + } + if (isset($map['Dimension'])) { + $model->dimension = $map['Dimension']; + } + if (isset($map['EndTime'])) { + $model->endTime = $map['EndTime']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['StartTime'])) { + $model->startTime = $map['StartTime']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveUserBillPredictionResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveUserBillPredictionResponse.php new file mode 100644 index 000000000..a98d420c0 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveUserBillPredictionResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveUserBillPredictionResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DescribeLiveUserBillPredictionResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveUserBillPredictionResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveUserBillPredictionResponseBody.php new file mode 100644 index 000000000..635dbbe44 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveUserBillPredictionResponseBody.php @@ -0,0 +1,96 @@ + 'BillPredictionData', + 'billType' => 'BillType', + 'endTime' => 'EndTime', + 'requestId' => 'RequestId', + 'startTime' => 'StartTime', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->billPredictionData) { + $res['BillPredictionData'] = null !== $this->billPredictionData ? $this->billPredictionData->toMap() : null; + } + if (null !== $this->billType) { + $res['BillType'] = $this->billType; + } + if (null !== $this->endTime) { + $res['EndTime'] = $this->endTime; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->startTime) { + $res['StartTime'] = $this->startTime; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveUserBillPredictionResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['BillPredictionData'])) { + $model->billPredictionData = billPredictionData::fromMap($map['BillPredictionData']); + } + if (isset($map['BillType'])) { + $model->billType = $map['BillType']; + } + if (isset($map['EndTime'])) { + $model->endTime = $map['EndTime']; + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['StartTime'])) { + $model->startTime = $map['StartTime']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveUserBillPredictionResponseBody/billPredictionData.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveUserBillPredictionResponseBody/billPredictionData.php new file mode 100644 index 000000000..0a3eeba9b --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveUserBillPredictionResponseBody/billPredictionData.php @@ -0,0 +1,60 @@ + 'BillPredictionDataItem', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->billPredictionDataItem) { + $res['BillPredictionDataItem'] = []; + if (null !== $this->billPredictionDataItem && \is_array($this->billPredictionDataItem)) { + $n = 0; + foreach ($this->billPredictionDataItem as $item) { + $res['BillPredictionDataItem'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return billPredictionData + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['BillPredictionDataItem'])) { + if (!empty($map['BillPredictionDataItem'])) { + $model->billPredictionDataItem = []; + $n = 0; + foreach ($map['BillPredictionDataItem'] as $item) { + $model->billPredictionDataItem[$n++] = null !== $item ? billPredictionDataItem::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveUserBillPredictionResponseBody/billPredictionData/billPredictionDataItem.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveUserBillPredictionResponseBody/billPredictionData/billPredictionDataItem.php new file mode 100644 index 000000000..0309f9d68 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveUserBillPredictionResponseBody/billPredictionData/billPredictionDataItem.php @@ -0,0 +1,71 @@ + 'Area', + 'timeStp' => 'TimeStp', + 'value' => 'Value', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->area) { + $res['Area'] = $this->area; + } + if (null !== $this->timeStp) { + $res['TimeStp'] = $this->timeStp; + } + if (null !== $this->value) { + $res['Value'] = $this->value; + } + + return $res; + } + + /** + * @param array $map + * + * @return billPredictionDataItem + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Area'])) { + $model->area = $map['Area']; + } + if (isset($map['TimeStp'])) { + $model->timeStp = $map['TimeStp']; + } + if (isset($map['Value'])) { + $model->value = $map['Value']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveUserDomainsRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveUserDomainsRequest.php new file mode 100644 index 000000000..9715fcaa8 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveUserDomainsRequest.php @@ -0,0 +1,168 @@ + 'DomainName', + 'domainSearchType' => 'DomainSearchType', + 'domainStatus' => 'DomainStatus', + 'liveDomainType' => 'LiveDomainType', + 'ownerId' => 'OwnerId', + 'pageNumber' => 'PageNumber', + 'pageSize' => 'PageSize', + 'regionName' => 'RegionName', + 'securityToken' => 'SecurityToken', + 'tag' => 'Tag', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->domainSearchType) { + $res['DomainSearchType'] = $this->domainSearchType; + } + if (null !== $this->domainStatus) { + $res['DomainStatus'] = $this->domainStatus; + } + if (null !== $this->liveDomainType) { + $res['LiveDomainType'] = $this->liveDomainType; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->pageNumber) { + $res['PageNumber'] = $this->pageNumber; + } + if (null !== $this->pageSize) { + $res['PageSize'] = $this->pageSize; + } + if (null !== $this->regionName) { + $res['RegionName'] = $this->regionName; + } + if (null !== $this->securityToken) { + $res['SecurityToken'] = $this->securityToken; + } + if (null !== $this->tag) { + $res['Tag'] = []; + if (null !== $this->tag && \is_array($this->tag)) { + $n = 0; + foreach ($this->tag as $item) { + $res['Tag'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveUserDomainsRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['DomainSearchType'])) { + $model->domainSearchType = $map['DomainSearchType']; + } + if (isset($map['DomainStatus'])) { + $model->domainStatus = $map['DomainStatus']; + } + if (isset($map['LiveDomainType'])) { + $model->liveDomainType = $map['LiveDomainType']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['PageNumber'])) { + $model->pageNumber = $map['PageNumber']; + } + if (isset($map['PageSize'])) { + $model->pageSize = $map['PageSize']; + } + if (isset($map['RegionName'])) { + $model->regionName = $map['RegionName']; + } + if (isset($map['SecurityToken'])) { + $model->securityToken = $map['SecurityToken']; + } + if (isset($map['Tag'])) { + if (!empty($map['Tag'])) { + $model->tag = []; + $n = 0; + foreach ($map['Tag'] as $item) { + $model->tag[$n++] = null !== $item ? tag::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveUserDomainsRequest/tag.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveUserDomainsRequest/tag.php new file mode 100644 index 000000000..70c7a1cdc --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveUserDomainsRequest/tag.php @@ -0,0 +1,59 @@ + 'Key', + 'value' => 'Value', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->key) { + $res['Key'] = $this->key; + } + if (null !== $this->value) { + $res['Value'] = $this->value; + } + + return $res; + } + + /** + * @param array $map + * + * @return tag + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Key'])) { + $model->key = $map['Key']; + } + if (isset($map['Value'])) { + $model->value = $map['Value']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveUserDomainsResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveUserDomainsResponse.php new file mode 100644 index 000000000..552c8c2b2 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveUserDomainsResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveUserDomainsResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DescribeLiveUserDomainsResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveUserDomainsResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveUserDomainsResponseBody.php new file mode 100644 index 000000000..109b84e94 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveUserDomainsResponseBody.php @@ -0,0 +1,96 @@ + 'Domains', + 'pageNumber' => 'PageNumber', + 'pageSize' => 'PageSize', + 'requestId' => 'RequestId', + 'totalCount' => 'TotalCount', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->domains) { + $res['Domains'] = null !== $this->domains ? $this->domains->toMap() : null; + } + if (null !== $this->pageNumber) { + $res['PageNumber'] = $this->pageNumber; + } + if (null !== $this->pageSize) { + $res['PageSize'] = $this->pageSize; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->totalCount) { + $res['TotalCount'] = $this->totalCount; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveUserDomainsResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Domains'])) { + $model->domains = domains::fromMap($map['Domains']); + } + if (isset($map['PageNumber'])) { + $model->pageNumber = $map['PageNumber']; + } + if (isset($map['PageSize'])) { + $model->pageSize = $map['PageSize']; + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['TotalCount'])) { + $model->totalCount = $map['TotalCount']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveUserDomainsResponseBody/domains.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveUserDomainsResponseBody/domains.php new file mode 100644 index 000000000..5e7f484ee --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveUserDomainsResponseBody/domains.php @@ -0,0 +1,60 @@ + 'PageData', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->pageData) { + $res['PageData'] = []; + if (null !== $this->pageData && \is_array($this->pageData)) { + $n = 0; + foreach ($this->pageData as $item) { + $res['PageData'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return domains + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['PageData'])) { + if (!empty($map['PageData'])) { + $model->pageData = []; + $n = 0; + foreach ($map['PageData'] as $item) { + $model->pageData[$n++] = null !== $item ? pageData::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveUserDomainsResponseBody/domains/pageData.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveUserDomainsResponseBody/domains/pageData.php new file mode 100644 index 000000000..29b8bf439 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveUserDomainsResponseBody/domains/pageData.php @@ -0,0 +1,131 @@ + 'Cname', + 'description' => 'Description', + 'domainName' => 'DomainName', + 'gmtCreated' => 'GmtCreated', + 'gmtModified' => 'GmtModified', + 'liveDomainStatus' => 'LiveDomainStatus', + 'liveDomainType' => 'LiveDomainType', + 'regionName' => 'RegionName', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->cname) { + $res['Cname'] = $this->cname; + } + if (null !== $this->description) { + $res['Description'] = $this->description; + } + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->gmtCreated) { + $res['GmtCreated'] = $this->gmtCreated; + } + if (null !== $this->gmtModified) { + $res['GmtModified'] = $this->gmtModified; + } + if (null !== $this->liveDomainStatus) { + $res['LiveDomainStatus'] = $this->liveDomainStatus; + } + if (null !== $this->liveDomainType) { + $res['LiveDomainType'] = $this->liveDomainType; + } + if (null !== $this->regionName) { + $res['RegionName'] = $this->regionName; + } + + return $res; + } + + /** + * @param array $map + * + * @return pageData + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Cname'])) { + $model->cname = $map['Cname']; + } + if (isset($map['Description'])) { + $model->description = $map['Description']; + } + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['GmtCreated'])) { + $model->gmtCreated = $map['GmtCreated']; + } + if (isset($map['GmtModified'])) { + $model->gmtModified = $map['GmtModified']; + } + if (isset($map['LiveDomainStatus'])) { + $model->liveDomainStatus = $map['LiveDomainStatus']; + } + if (isset($map['LiveDomainType'])) { + $model->liveDomainType = $map['LiveDomainType']; + } + if (isset($map['RegionName'])) { + $model->regionName = $map['RegionName']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveUserTagsRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveUserTagsRequest.php new file mode 100644 index 000000000..4eb815154 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveUserTagsRequest.php @@ -0,0 +1,47 @@ + 'OwnerId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveUserTagsRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveUserTagsResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveUserTagsResponse.php new file mode 100644 index 000000000..f63d609ba --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveUserTagsResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveUserTagsResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DescribeLiveUserTagsResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveUserTagsResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveUserTagsResponseBody.php new file mode 100644 index 000000000..7b416a81b --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveUserTagsResponseBody.php @@ -0,0 +1,72 @@ + 'RequestId', + 'tags' => 'Tags', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->tags) { + $res['Tags'] = []; + if (null !== $this->tags && \is_array($this->tags)) { + $n = 0; + foreach ($this->tags as $item) { + $res['Tags'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveUserTagsResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['Tags'])) { + if (!empty($map['Tags'])) { + $model->tags = []; + $n = 0; + foreach ($map['Tags'] as $item) { + $model->tags[$n++] = null !== $item ? tags::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveUserTagsResponseBody/tags.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveUserTagsResponseBody/tags.php new file mode 100644 index 000000000..0bb8b5481 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveUserTagsResponseBody/tags.php @@ -0,0 +1,61 @@ + 'Key', + 'value' => 'Value', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->key) { + $res['Key'] = $this->key; + } + if (null !== $this->value) { + $res['Value'] = $this->value; + } + + return $res; + } + + /** + * @param array $map + * + * @return tags + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Key'])) { + $model->key = $map['Key']; + } + if (isset($map['Value'])) { + if (!empty($map['Value'])) { + $model->value = $map['Value']; + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveVerifyContentRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveVerifyContentRequest.php new file mode 100644 index 000000000..7ba47b8f0 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveVerifyContentRequest.php @@ -0,0 +1,59 @@ + 'OwnerId', + 'domainName' => 'DomainName', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveVerifyContentRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveVerifyContentResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveVerifyContentResponse.php new file mode 100644 index 000000000..20fb3553f --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveVerifyContentResponse.php @@ -0,0 +1,61 @@ + 'headers', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveVerifyContentResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['body'])) { + $model->body = DescribeLiveVerifyContentResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveVerifyContentResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveVerifyContentResponseBody.php new file mode 100644 index 000000000..6297f2455 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeLiveVerifyContentResponseBody.php @@ -0,0 +1,59 @@ + 'RequestId', + 'content' => 'Content', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->content) { + $res['Content'] = $this->content; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeLiveVerifyContentResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['Content'])) { + $model->content = $map['Content']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeMeterLiveRtcDurationRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeMeterLiveRtcDurationRequest.php new file mode 100644 index 000000000..5d9022ce7 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeMeterLiveRtcDurationRequest.php @@ -0,0 +1,95 @@ + 'EndTime', + 'interval' => 'Interval', + 'serviceArea' => 'ServiceArea', + 'startTime' => 'StartTime', + 'appId' => 'appId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->endTime) { + $res['EndTime'] = $this->endTime; + } + if (null !== $this->interval) { + $res['Interval'] = $this->interval; + } + if (null !== $this->serviceArea) { + $res['ServiceArea'] = $this->serviceArea; + } + if (null !== $this->startTime) { + $res['StartTime'] = $this->startTime; + } + if (null !== $this->appId) { + $res['appId'] = $this->appId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeMeterLiveRtcDurationRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['EndTime'])) { + $model->endTime = $map['EndTime']; + } + if (isset($map['Interval'])) { + $model->interval = $map['Interval']; + } + if (isset($map['ServiceArea'])) { + $model->serviceArea = $map['ServiceArea']; + } + if (isset($map['StartTime'])) { + $model->startTime = $map['StartTime']; + } + if (isset($map['appId'])) { + $model->appId = $map['appId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeMeterLiveRtcDurationResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeMeterLiveRtcDurationResponse.php new file mode 100644 index 000000000..dda167191 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeMeterLiveRtcDurationResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeMeterLiveRtcDurationResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DescribeMeterLiveRtcDurationResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeMeterLiveRtcDurationResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeMeterLiveRtcDurationResponseBody.php new file mode 100644 index 000000000..a4cbe74c5 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeMeterLiveRtcDurationResponseBody.php @@ -0,0 +1,132 @@ + 'AudioSummaryDuration', + 'data' => 'Data', + 'requestId' => 'RequestId', + 'totalSummaryDuration' => 'TotalSummaryDuration', + 'v1080SummaryDuration' => 'V1080SummaryDuration', + 'v480SummaryDuration' => 'V480SummaryDuration', + 'v720SummaryDuration' => 'V720SummaryDuration', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->audioSummaryDuration) { + $res['AudioSummaryDuration'] = $this->audioSummaryDuration; + } + if (null !== $this->data) { + $res['Data'] = []; + if (null !== $this->data && \is_array($this->data)) { + $n = 0; + foreach ($this->data as $item) { + $res['Data'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->totalSummaryDuration) { + $res['TotalSummaryDuration'] = $this->totalSummaryDuration; + } + if (null !== $this->v1080SummaryDuration) { + $res['V1080SummaryDuration'] = $this->v1080SummaryDuration; + } + if (null !== $this->v480SummaryDuration) { + $res['V480SummaryDuration'] = $this->v480SummaryDuration; + } + if (null !== $this->v720SummaryDuration) { + $res['V720SummaryDuration'] = $this->v720SummaryDuration; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeMeterLiveRtcDurationResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AudioSummaryDuration'])) { + $model->audioSummaryDuration = $map['AudioSummaryDuration']; + } + if (isset($map['Data'])) { + if (!empty($map['Data'])) { + $model->data = []; + $n = 0; + foreach ($map['Data'] as $item) { + $model->data[$n++] = null !== $item ? data::fromMap($item) : $item; + } + } + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['TotalSummaryDuration'])) { + $model->totalSummaryDuration = $map['TotalSummaryDuration']; + } + if (isset($map['V1080SummaryDuration'])) { + $model->v1080SummaryDuration = $map['V1080SummaryDuration']; + } + if (isset($map['V480SummaryDuration'])) { + $model->v480SummaryDuration = $map['V480SummaryDuration']; + } + if (isset($map['V720SummaryDuration'])) { + $model->v720SummaryDuration = $map['V720SummaryDuration']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeMeterLiveRtcDurationResponseBody/data.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeMeterLiveRtcDurationResponseBody/data.php new file mode 100644 index 000000000..d005d14bf --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeMeterLiveRtcDurationResponseBody/data.php @@ -0,0 +1,107 @@ + 'AudioDuration', + 'timestamp' => 'Timestamp', + 'totalDuration' => 'TotalDuration', + 'v1080Duration' => 'V1080Duration', + 'v480Duration' => 'V480Duration', + 'v720Duration' => 'V720Duration', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->audioDuration) { + $res['AudioDuration'] = $this->audioDuration; + } + if (null !== $this->timestamp) { + $res['Timestamp'] = $this->timestamp; + } + if (null !== $this->totalDuration) { + $res['TotalDuration'] = $this->totalDuration; + } + if (null !== $this->v1080Duration) { + $res['V1080Duration'] = $this->v1080Duration; + } + if (null !== $this->v480Duration) { + $res['V480Duration'] = $this->v480Duration; + } + if (null !== $this->v720Duration) { + $res['V720Duration'] = $this->v720Duration; + } + + return $res; + } + + /** + * @param array $map + * + * @return data + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AudioDuration'])) { + $model->audioDuration = $map['AudioDuration']; + } + if (isset($map['Timestamp'])) { + $model->timestamp = $map['Timestamp']; + } + if (isset($map['TotalDuration'])) { + $model->totalDuration = $map['TotalDuration']; + } + if (isset($map['V1080Duration'])) { + $model->v1080Duration = $map['V1080Duration']; + } + if (isset($map['V480Duration'])) { + $model->v480Duration = $map['V480Duration']; + } + if (isset($map['V720Duration'])) { + $model->v720Duration = $map['V720Duration']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeMixStreamListRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeMixStreamListRequest.php new file mode 100644 index 000000000..b611bf85f --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeMixStreamListRequest.php @@ -0,0 +1,143 @@ + 'AppName', + 'domainName' => 'DomainName', + 'endTime' => 'EndTime', + 'mixStreamId' => 'MixStreamId', + 'ownerId' => 'OwnerId', + 'pageNo' => 'PageNo', + 'pageSize' => 'PageSize', + 'startTime' => 'StartTime', + 'streamName' => 'StreamName', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->appName) { + $res['AppName'] = $this->appName; + } + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->endTime) { + $res['EndTime'] = $this->endTime; + } + if (null !== $this->mixStreamId) { + $res['MixStreamId'] = $this->mixStreamId; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->pageNo) { + $res['PageNo'] = $this->pageNo; + } + if (null !== $this->pageSize) { + $res['PageSize'] = $this->pageSize; + } + if (null !== $this->startTime) { + $res['StartTime'] = $this->startTime; + } + if (null !== $this->streamName) { + $res['StreamName'] = $this->streamName; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeMixStreamListRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppName'])) { + $model->appName = $map['AppName']; + } + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['EndTime'])) { + $model->endTime = $map['EndTime']; + } + if (isset($map['MixStreamId'])) { + $model->mixStreamId = $map['MixStreamId']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['PageNo'])) { + $model->pageNo = $map['PageNo']; + } + if (isset($map['PageSize'])) { + $model->pageSize = $map['PageSize']; + } + if (isset($map['StartTime'])) { + $model->startTime = $map['StartTime']; + } + if (isset($map['StreamName'])) { + $model->streamName = $map['StreamName']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeMixStreamListResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeMixStreamListResponse.php new file mode 100644 index 000000000..c2f14bc80 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeMixStreamListResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeMixStreamListResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DescribeMixStreamListResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeMixStreamListResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeMixStreamListResponseBody.php new file mode 100644 index 000000000..9f6aaf4d2 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeMixStreamListResponseBody.php @@ -0,0 +1,84 @@ + 'MixStreamList', + 'requestId' => 'RequestId', + 'total' => 'Total', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->mixStreamList) { + $res['MixStreamList'] = []; + if (null !== $this->mixStreamList && \is_array($this->mixStreamList)) { + $n = 0; + foreach ($this->mixStreamList as $item) { + $res['MixStreamList'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->total) { + $res['Total'] = $this->total; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeMixStreamListResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['MixStreamList'])) { + if (!empty($map['MixStreamList'])) { + $model->mixStreamList = []; + $n = 0; + foreach ($map['MixStreamList'] as $item) { + $model->mixStreamList[$n++] = null !== $item ? mixStreamList::fromMap($item) : $item; + } + } + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['Total'])) { + $model->total = $map['Total']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeMixStreamListResponseBody/mixStreamList.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeMixStreamListResponseBody/mixStreamList.php new file mode 100644 index 000000000..d4faafea5 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeMixStreamListResponseBody/mixStreamList.php @@ -0,0 +1,143 @@ + 'AppName', + 'domainName' => 'DomainName', + 'gmtCreate' => 'GmtCreate', + 'gmtModified' => 'GmtModified', + 'inputStreamNumber' => 'InputStreamNumber', + 'layoutId' => 'LayoutId', + 'mixStreamTemplate' => 'MixStreamTemplate', + 'mixstreamId' => 'MixstreamId', + 'streamName' => 'StreamName', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->appName) { + $res['AppName'] = $this->appName; + } + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->gmtCreate) { + $res['GmtCreate'] = $this->gmtCreate; + } + if (null !== $this->gmtModified) { + $res['GmtModified'] = $this->gmtModified; + } + if (null !== $this->inputStreamNumber) { + $res['InputStreamNumber'] = $this->inputStreamNumber; + } + if (null !== $this->layoutId) { + $res['LayoutId'] = $this->layoutId; + } + if (null !== $this->mixStreamTemplate) { + $res['MixStreamTemplate'] = $this->mixStreamTemplate; + } + if (null !== $this->mixstreamId) { + $res['MixstreamId'] = $this->mixstreamId; + } + if (null !== $this->streamName) { + $res['StreamName'] = $this->streamName; + } + + return $res; + } + + /** + * @param array $map + * + * @return mixStreamList + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppName'])) { + $model->appName = $map['AppName']; + } + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['GmtCreate'])) { + $model->gmtCreate = $map['GmtCreate']; + } + if (isset($map['GmtModified'])) { + $model->gmtModified = $map['GmtModified']; + } + if (isset($map['InputStreamNumber'])) { + $model->inputStreamNumber = $map['InputStreamNumber']; + } + if (isset($map['LayoutId'])) { + $model->layoutId = $map['LayoutId']; + } + if (isset($map['MixStreamTemplate'])) { + $model->mixStreamTemplate = $map['MixStreamTemplate']; + } + if (isset($map['MixstreamId'])) { + $model->mixstreamId = $map['MixstreamId']; + } + if (isset($map['StreamName'])) { + $model->streamName = $map['StreamName']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKFirstFrameCostRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKFirstFrameCostRequest.php new file mode 100644 index 000000000..076248053 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKFirstFrameCostRequest.php @@ -0,0 +1,85 @@ + 'DataInterval', + 'domainNameList' => 'DomainNameList', + 'endTime' => 'EndTime', + 'startTime' => 'StartTime', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->dataInterval) { + $res['DataInterval'] = $this->dataInterval; + } + if (null !== $this->domainNameList) { + $res['DomainNameList'] = $this->domainNameList; + } + if (null !== $this->endTime) { + $res['EndTime'] = $this->endTime; + } + if (null !== $this->startTime) { + $res['StartTime'] = $this->startTime; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeRTSNativeSDKFirstFrameCostRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DataInterval'])) { + $model->dataInterval = $map['DataInterval']; + } + if (isset($map['DomainNameList'])) { + if (!empty($map['DomainNameList'])) { + $model->domainNameList = $map['DomainNameList']; + } + } + if (isset($map['EndTime'])) { + $model->endTime = $map['EndTime']; + } + if (isset($map['StartTime'])) { + $model->startTime = $map['StartTime']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKFirstFrameCostResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKFirstFrameCostResponse.php new file mode 100644 index 000000000..cec3a6b9b --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKFirstFrameCostResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeRTSNativeSDKFirstFrameCostResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DescribeRTSNativeSDKFirstFrameCostResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKFirstFrameCostResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKFirstFrameCostResponseBody.php new file mode 100644 index 000000000..0d9b1c99e --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKFirstFrameCostResponseBody.php @@ -0,0 +1,108 @@ + 'DataInterval', + 'endTime' => 'EndTime', + 'firstFrameCostData' => 'FirstFrameCostData', + 'requestId' => 'RequestId', + 'startTime' => 'StartTime', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->dataInterval) { + $res['DataInterval'] = $this->dataInterval; + } + if (null !== $this->endTime) { + $res['EndTime'] = $this->endTime; + } + if (null !== $this->firstFrameCostData) { + $res['FirstFrameCostData'] = []; + if (null !== $this->firstFrameCostData && \is_array($this->firstFrameCostData)) { + $n = 0; + foreach ($this->firstFrameCostData as $item) { + $res['FirstFrameCostData'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->startTime) { + $res['StartTime'] = $this->startTime; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeRTSNativeSDKFirstFrameCostResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DataInterval'])) { + $model->dataInterval = $map['DataInterval']; + } + if (isset($map['EndTime'])) { + $model->endTime = $map['EndTime']; + } + if (isset($map['FirstFrameCostData'])) { + if (!empty($map['FirstFrameCostData'])) { + $model->firstFrameCostData = []; + $n = 0; + foreach ($map['FirstFrameCostData'] as $item) { + $model->firstFrameCostData[$n++] = null !== $item ? firstFrameCostData::fromMap($item) : $item; + } + } + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['StartTime'])) { + $model->startTime = $map['StartTime']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKFirstFrameCostResponseBody/firstFrameCostData.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKFirstFrameCostResponseBody/firstFrameCostData.php new file mode 100644 index 000000000..a5c961352 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKFirstFrameCostResponseBody/firstFrameCostData.php @@ -0,0 +1,107 @@ + 'Connected', + 'finishGetStreamInfo' => 'FinishGetStreamInfo', + 'firstFrameComplete' => 'FirstFrameComplete', + 'firstPacket' => 'FirstPacket', + 'initialized' => 'Initialized', + 'timeStamp' => 'TimeStamp', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->connected) { + $res['Connected'] = $this->connected; + } + if (null !== $this->finishGetStreamInfo) { + $res['FinishGetStreamInfo'] = $this->finishGetStreamInfo; + } + if (null !== $this->firstFrameComplete) { + $res['FirstFrameComplete'] = $this->firstFrameComplete; + } + if (null !== $this->firstPacket) { + $res['FirstPacket'] = $this->firstPacket; + } + if (null !== $this->initialized) { + $res['Initialized'] = $this->initialized; + } + if (null !== $this->timeStamp) { + $res['TimeStamp'] = $this->timeStamp; + } + + return $res; + } + + /** + * @param array $map + * + * @return firstFrameCostData + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Connected'])) { + $model->connected = $map['Connected']; + } + if (isset($map['FinishGetStreamInfo'])) { + $model->finishGetStreamInfo = $map['FinishGetStreamInfo']; + } + if (isset($map['FirstFrameComplete'])) { + $model->firstFrameComplete = $map['FirstFrameComplete']; + } + if (isset($map['FirstPacket'])) { + $model->firstPacket = $map['FirstPacket']; + } + if (isset($map['Initialized'])) { + $model->initialized = $map['Initialized']; + } + if (isset($map['TimeStamp'])) { + $model->timeStamp = $map['TimeStamp']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKFirstFrameCostShrinkRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKFirstFrameCostShrinkRequest.php new file mode 100644 index 000000000..0a2786830 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKFirstFrameCostShrinkRequest.php @@ -0,0 +1,83 @@ + 'DataInterval', + 'domainNameListShrink' => 'DomainNameList', + 'endTime' => 'EndTime', + 'startTime' => 'StartTime', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->dataInterval) { + $res['DataInterval'] = $this->dataInterval; + } + if (null !== $this->domainNameListShrink) { + $res['DomainNameList'] = $this->domainNameListShrink; + } + if (null !== $this->endTime) { + $res['EndTime'] = $this->endTime; + } + if (null !== $this->startTime) { + $res['StartTime'] = $this->startTime; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeRTSNativeSDKFirstFrameCostShrinkRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DataInterval'])) { + $model->dataInterval = $map['DataInterval']; + } + if (isset($map['DomainNameList'])) { + $model->domainNameListShrink = $map['DomainNameList']; + } + if (isset($map['EndTime'])) { + $model->endTime = $map['EndTime']; + } + if (isset($map['StartTime'])) { + $model->startTime = $map['StartTime']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKFirstFrameDelayRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKFirstFrameDelayRequest.php new file mode 100644 index 000000000..f8509142a --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKFirstFrameDelayRequest.php @@ -0,0 +1,85 @@ + 'DataInterval', + 'domainNameList' => 'DomainNameList', + 'endTime' => 'EndTime', + 'startTime' => 'StartTime', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->dataInterval) { + $res['DataInterval'] = $this->dataInterval; + } + if (null !== $this->domainNameList) { + $res['DomainNameList'] = $this->domainNameList; + } + if (null !== $this->endTime) { + $res['EndTime'] = $this->endTime; + } + if (null !== $this->startTime) { + $res['StartTime'] = $this->startTime; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeRTSNativeSDKFirstFrameDelayRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DataInterval'])) { + $model->dataInterval = $map['DataInterval']; + } + if (isset($map['DomainNameList'])) { + if (!empty($map['DomainNameList'])) { + $model->domainNameList = $map['DomainNameList']; + } + } + if (isset($map['EndTime'])) { + $model->endTime = $map['EndTime']; + } + if (isset($map['StartTime'])) { + $model->startTime = $map['StartTime']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKFirstFrameDelayResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKFirstFrameDelayResponse.php new file mode 100644 index 000000000..300db5488 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKFirstFrameDelayResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeRTSNativeSDKFirstFrameDelayResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DescribeRTSNativeSDKFirstFrameDelayResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKFirstFrameDelayResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKFirstFrameDelayResponseBody.php new file mode 100644 index 000000000..0cf3bccab --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKFirstFrameDelayResponseBody.php @@ -0,0 +1,108 @@ + 'DataInterval', + 'endTime' => 'EndTime', + 'frameDelayData' => 'FrameDelayData', + 'requestId' => 'RequestId', + 'startTime' => 'StartTime', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->dataInterval) { + $res['DataInterval'] = $this->dataInterval; + } + if (null !== $this->endTime) { + $res['EndTime'] = $this->endTime; + } + if (null !== $this->frameDelayData) { + $res['FrameDelayData'] = []; + if (null !== $this->frameDelayData && \is_array($this->frameDelayData)) { + $n = 0; + foreach ($this->frameDelayData as $item) { + $res['FrameDelayData'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->startTime) { + $res['StartTime'] = $this->startTime; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeRTSNativeSDKFirstFrameDelayResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DataInterval'])) { + $model->dataInterval = $map['DataInterval']; + } + if (isset($map['EndTime'])) { + $model->endTime = $map['EndTime']; + } + if (isset($map['FrameDelayData'])) { + if (!empty($map['FrameDelayData'])) { + $model->frameDelayData = []; + $n = 0; + foreach ($map['FrameDelayData'] as $item) { + $model->frameDelayData[$n++] = null !== $item ? frameDelayData::fromMap($item) : $item; + } + } + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['StartTime'])) { + $model->startTime = $map['StartTime']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKFirstFrameDelayResponseBody/frameDelayData.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKFirstFrameDelayResponseBody/frameDelayData.php new file mode 100644 index 000000000..1d11a4a1b --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKFirstFrameDelayResponseBody/frameDelayData.php @@ -0,0 +1,59 @@ + 'FrameDelay', + 'timeStamp' => 'TimeStamp', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->frameDelay) { + $res['FrameDelay'] = $this->frameDelay; + } + if (null !== $this->timeStamp) { + $res['TimeStamp'] = $this->timeStamp; + } + + return $res; + } + + /** + * @param array $map + * + * @return frameDelayData + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['FrameDelay'])) { + $model->frameDelay = $map['FrameDelay']; + } + if (isset($map['TimeStamp'])) { + $model->timeStamp = $map['TimeStamp']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKFirstFrameDelayShrinkRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKFirstFrameDelayShrinkRequest.php new file mode 100644 index 000000000..bc5532b81 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKFirstFrameDelayShrinkRequest.php @@ -0,0 +1,83 @@ + 'DataInterval', + 'domainNameListShrink' => 'DomainNameList', + 'endTime' => 'EndTime', + 'startTime' => 'StartTime', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->dataInterval) { + $res['DataInterval'] = $this->dataInterval; + } + if (null !== $this->domainNameListShrink) { + $res['DomainNameList'] = $this->domainNameListShrink; + } + if (null !== $this->endTime) { + $res['EndTime'] = $this->endTime; + } + if (null !== $this->startTime) { + $res['StartTime'] = $this->startTime; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeRTSNativeSDKFirstFrameDelayShrinkRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DataInterval'])) { + $model->dataInterval = $map['DataInterval']; + } + if (isset($map['DomainNameList'])) { + $model->domainNameListShrink = $map['DomainNameList']; + } + if (isset($map['EndTime'])) { + $model->endTime = $map['EndTime']; + } + if (isset($map['StartTime'])) { + $model->startTime = $map['StartTime']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKPlayFailStatusRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKPlayFailStatusRequest.php new file mode 100644 index 000000000..843d8709c --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKPlayFailStatusRequest.php @@ -0,0 +1,85 @@ + 'DataInterval', + 'domainNameList' => 'DomainNameList', + 'endTime' => 'EndTime', + 'startTime' => 'StartTime', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->dataInterval) { + $res['DataInterval'] = $this->dataInterval; + } + if (null !== $this->domainNameList) { + $res['DomainNameList'] = $this->domainNameList; + } + if (null !== $this->endTime) { + $res['EndTime'] = $this->endTime; + } + if (null !== $this->startTime) { + $res['StartTime'] = $this->startTime; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeRTSNativeSDKPlayFailStatusRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DataInterval'])) { + $model->dataInterval = $map['DataInterval']; + } + if (isset($map['DomainNameList'])) { + if (!empty($map['DomainNameList'])) { + $model->domainNameList = $map['DomainNameList']; + } + } + if (isset($map['EndTime'])) { + $model->endTime = $map['EndTime']; + } + if (isset($map['StartTime'])) { + $model->startTime = $map['StartTime']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKPlayFailStatusResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKPlayFailStatusResponse.php new file mode 100644 index 000000000..654c15c8e --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKPlayFailStatusResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeRTSNativeSDKPlayFailStatusResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DescribeRTSNativeSDKPlayFailStatusResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKPlayFailStatusResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKPlayFailStatusResponseBody.php new file mode 100644 index 000000000..a27a8b170 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKPlayFailStatusResponseBody.php @@ -0,0 +1,108 @@ + 'DataInterval', + 'endTime' => 'EndTime', + 'playFailStatus' => 'PlayFailStatus', + 'requestId' => 'RequestId', + 'startTime' => 'StartTime', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->dataInterval) { + $res['DataInterval'] = $this->dataInterval; + } + if (null !== $this->endTime) { + $res['EndTime'] = $this->endTime; + } + if (null !== $this->playFailStatus) { + $res['PlayFailStatus'] = []; + if (null !== $this->playFailStatus && \is_array($this->playFailStatus)) { + $n = 0; + foreach ($this->playFailStatus as $item) { + $res['PlayFailStatus'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->startTime) { + $res['StartTime'] = $this->startTime; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeRTSNativeSDKPlayFailStatusResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DataInterval'])) { + $model->dataInterval = $map['DataInterval']; + } + if (isset($map['EndTime'])) { + $model->endTime = $map['EndTime']; + } + if (isset($map['PlayFailStatus'])) { + if (!empty($map['PlayFailStatus'])) { + $model->playFailStatus = []; + $n = 0; + foreach ($map['PlayFailStatus'] as $item) { + $model->playFailStatus[$n++] = null !== $item ? playFailStatus::fromMap($item) : $item; + } + } + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['StartTime'])) { + $model->startTime = $map['StartTime']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKPlayFailStatusResponseBody/playFailStatus.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKPlayFailStatusResponseBody/playFailStatus.php new file mode 100644 index 000000000..c9b97b408 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKPlayFailStatusResponseBody/playFailStatus.php @@ -0,0 +1,119 @@ + 'TimeStamp', + 'v20001' => 'V20001', + 'v20002' => 'V20002', + 'v20011' => 'V20011', + 'v20012' => 'V20012', + 'v20013' => 'V20013', + 'v20052' => 'V20052', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->timeStamp) { + $res['TimeStamp'] = $this->timeStamp; + } + if (null !== $this->v20001) { + $res['V20001'] = $this->v20001; + } + if (null !== $this->v20002) { + $res['V20002'] = $this->v20002; + } + if (null !== $this->v20011) { + $res['V20011'] = $this->v20011; + } + if (null !== $this->v20012) { + $res['V20012'] = $this->v20012; + } + if (null !== $this->v20013) { + $res['V20013'] = $this->v20013; + } + if (null !== $this->v20052) { + $res['V20052'] = $this->v20052; + } + + return $res; + } + + /** + * @param array $map + * + * @return playFailStatus + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['TimeStamp'])) { + $model->timeStamp = $map['TimeStamp']; + } + if (isset($map['V20001'])) { + $model->v20001 = $map['V20001']; + } + if (isset($map['V20002'])) { + $model->v20002 = $map['V20002']; + } + if (isset($map['V20011'])) { + $model->v20011 = $map['V20011']; + } + if (isset($map['V20012'])) { + $model->v20012 = $map['V20012']; + } + if (isset($map['V20013'])) { + $model->v20013 = $map['V20013']; + } + if (isset($map['V20052'])) { + $model->v20052 = $map['V20052']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKPlayFailStatusShrinkRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKPlayFailStatusShrinkRequest.php new file mode 100644 index 000000000..1140e20ae --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKPlayFailStatusShrinkRequest.php @@ -0,0 +1,83 @@ + 'DataInterval', + 'domainNameListShrink' => 'DomainNameList', + 'endTime' => 'EndTime', + 'startTime' => 'StartTime', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->dataInterval) { + $res['DataInterval'] = $this->dataInterval; + } + if (null !== $this->domainNameListShrink) { + $res['DomainNameList'] = $this->domainNameListShrink; + } + if (null !== $this->endTime) { + $res['EndTime'] = $this->endTime; + } + if (null !== $this->startTime) { + $res['StartTime'] = $this->startTime; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeRTSNativeSDKPlayFailStatusShrinkRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DataInterval'])) { + $model->dataInterval = $map['DataInterval']; + } + if (isset($map['DomainNameList'])) { + $model->domainNameListShrink = $map['DomainNameList']; + } + if (isset($map['EndTime'])) { + $model->endTime = $map['EndTime']; + } + if (isset($map['StartTime'])) { + $model->startTime = $map['StartTime']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKPlayTimeRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKPlayTimeRequest.php new file mode 100644 index 000000000..b588a5972 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKPlayTimeRequest.php @@ -0,0 +1,85 @@ + 'DataInterval', + 'domainNameList' => 'DomainNameList', + 'endTime' => 'EndTime', + 'startTime' => 'StartTime', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->dataInterval) { + $res['DataInterval'] = $this->dataInterval; + } + if (null !== $this->domainNameList) { + $res['DomainNameList'] = $this->domainNameList; + } + if (null !== $this->endTime) { + $res['EndTime'] = $this->endTime; + } + if (null !== $this->startTime) { + $res['StartTime'] = $this->startTime; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeRTSNativeSDKPlayTimeRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DataInterval'])) { + $model->dataInterval = $map['DataInterval']; + } + if (isset($map['DomainNameList'])) { + if (!empty($map['DomainNameList'])) { + $model->domainNameList = $map['DomainNameList']; + } + } + if (isset($map['EndTime'])) { + $model->endTime = $map['EndTime']; + } + if (isset($map['StartTime'])) { + $model->startTime = $map['StartTime']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKPlayTimeResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKPlayTimeResponse.php new file mode 100644 index 000000000..640654f3b --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKPlayTimeResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeRTSNativeSDKPlayTimeResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DescribeRTSNativeSDKPlayTimeResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKPlayTimeResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKPlayTimeResponseBody.php new file mode 100644 index 000000000..0350d7f58 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKPlayTimeResponseBody.php @@ -0,0 +1,108 @@ + 'DataInterval', + 'endTime' => 'EndTime', + 'playTimeData' => 'PlayTimeData', + 'requestId' => 'RequestId', + 'startTime' => 'StartTime', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->dataInterval) { + $res['DataInterval'] = $this->dataInterval; + } + if (null !== $this->endTime) { + $res['EndTime'] = $this->endTime; + } + if (null !== $this->playTimeData) { + $res['PlayTimeData'] = []; + if (null !== $this->playTimeData && \is_array($this->playTimeData)) { + $n = 0; + foreach ($this->playTimeData as $item) { + $res['PlayTimeData'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->startTime) { + $res['StartTime'] = $this->startTime; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeRTSNativeSDKPlayTimeResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DataInterval'])) { + $model->dataInterval = $map['DataInterval']; + } + if (isset($map['EndTime'])) { + $model->endTime = $map['EndTime']; + } + if (isset($map['PlayTimeData'])) { + if (!empty($map['PlayTimeData'])) { + $model->playTimeData = []; + $n = 0; + foreach ($map['PlayTimeData'] as $item) { + $model->playTimeData[$n++] = null !== $item ? playTimeData::fromMap($item) : $item; + } + } + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['StartTime'])) { + $model->startTime = $map['StartTime']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKPlayTimeResponseBody/playTimeData.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKPlayTimeResponseBody/playTimeData.php new file mode 100644 index 000000000..3089e4b76 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKPlayTimeResponseBody/playTimeData.php @@ -0,0 +1,71 @@ + 'PlayTime', + 'stallTime' => 'StallTime', + 'timeStamp' => 'TimeStamp', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->playTime) { + $res['PlayTime'] = $this->playTime; + } + if (null !== $this->stallTime) { + $res['StallTime'] = $this->stallTime; + } + if (null !== $this->timeStamp) { + $res['TimeStamp'] = $this->timeStamp; + } + + return $res; + } + + /** + * @param array $map + * + * @return playTimeData + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['PlayTime'])) { + $model->playTime = $map['PlayTime']; + } + if (isset($map['StallTime'])) { + $model->stallTime = $map['StallTime']; + } + if (isset($map['TimeStamp'])) { + $model->timeStamp = $map['TimeStamp']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKPlayTimeShrinkRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKPlayTimeShrinkRequest.php new file mode 100644 index 000000000..8d0e3cf10 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKPlayTimeShrinkRequest.php @@ -0,0 +1,83 @@ + 'DataInterval', + 'domainNameListShrink' => 'DomainNameList', + 'endTime' => 'EndTime', + 'startTime' => 'StartTime', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->dataInterval) { + $res['DataInterval'] = $this->dataInterval; + } + if (null !== $this->domainNameListShrink) { + $res['DomainNameList'] = $this->domainNameListShrink; + } + if (null !== $this->endTime) { + $res['EndTime'] = $this->endTime; + } + if (null !== $this->startTime) { + $res['StartTime'] = $this->startTime; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeRTSNativeSDKPlayTimeShrinkRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DataInterval'])) { + $model->dataInterval = $map['DataInterval']; + } + if (isset($map['DomainNameList'])) { + $model->domainNameListShrink = $map['DomainNameList']; + } + if (isset($map['EndTime'])) { + $model->endTime = $map['EndTime']; + } + if (isset($map['StartTime'])) { + $model->startTime = $map['StartTime']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKVvDataRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKVvDataRequest.php new file mode 100644 index 000000000..abdeba29e --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKVvDataRequest.php @@ -0,0 +1,85 @@ + 'DataInterval', + 'domainNameList' => 'DomainNameList', + 'endTime' => 'EndTime', + 'startTime' => 'StartTime', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->dataInterval) { + $res['DataInterval'] = $this->dataInterval; + } + if (null !== $this->domainNameList) { + $res['DomainNameList'] = $this->domainNameList; + } + if (null !== $this->endTime) { + $res['EndTime'] = $this->endTime; + } + if (null !== $this->startTime) { + $res['StartTime'] = $this->startTime; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeRTSNativeSDKVvDataRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DataInterval'])) { + $model->dataInterval = $map['DataInterval']; + } + if (isset($map['DomainNameList'])) { + if (!empty($map['DomainNameList'])) { + $model->domainNameList = $map['DomainNameList']; + } + } + if (isset($map['EndTime'])) { + $model->endTime = $map['EndTime']; + } + if (isset($map['StartTime'])) { + $model->startTime = $map['StartTime']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKVvDataResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKVvDataResponse.php new file mode 100644 index 000000000..28e074ffa --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKVvDataResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeRTSNativeSDKVvDataResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DescribeRTSNativeSDKVvDataResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKVvDataResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKVvDataResponseBody.php new file mode 100644 index 000000000..52bef1d66 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKVvDataResponseBody.php @@ -0,0 +1,108 @@ + 'DataInterval', + 'endTime' => 'EndTime', + 'requestId' => 'RequestId', + 'startTime' => 'StartTime', + 'vvData' => 'VvData', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->dataInterval) { + $res['DataInterval'] = $this->dataInterval; + } + if (null !== $this->endTime) { + $res['EndTime'] = $this->endTime; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->startTime) { + $res['StartTime'] = $this->startTime; + } + if (null !== $this->vvData) { + $res['VvData'] = []; + if (null !== $this->vvData && \is_array($this->vvData)) { + $n = 0; + foreach ($this->vvData as $item) { + $res['VvData'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeRTSNativeSDKVvDataResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DataInterval'])) { + $model->dataInterval = $map['DataInterval']; + } + if (isset($map['EndTime'])) { + $model->endTime = $map['EndTime']; + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['StartTime'])) { + $model->startTime = $map['StartTime']; + } + if (isset($map['VvData'])) { + if (!empty($map['VvData'])) { + $model->vvData = []; + $n = 0; + foreach ($map['VvData'] as $item) { + $model->vvData[$n++] = null !== $item ? vvData::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKVvDataResponseBody/vvData.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKVvDataResponseBody/vvData.php new file mode 100644 index 000000000..1285a524c --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKVvDataResponseBody/vvData.php @@ -0,0 +1,71 @@ + 'TimeStamp', + 'vvSuccess' => 'VvSuccess', + 'vvTotal' => 'VvTotal', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->timeStamp) { + $res['TimeStamp'] = $this->timeStamp; + } + if (null !== $this->vvSuccess) { + $res['VvSuccess'] = $this->vvSuccess; + } + if (null !== $this->vvTotal) { + $res['VvTotal'] = $this->vvTotal; + } + + return $res; + } + + /** + * @param array $map + * + * @return vvData + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['TimeStamp'])) { + $model->timeStamp = $map['TimeStamp']; + } + if (isset($map['VvSuccess'])) { + $model->vvSuccess = $map['VvSuccess']; + } + if (isset($map['VvTotal'])) { + $model->vvTotal = $map['VvTotal']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKVvDataShrinkRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKVvDataShrinkRequest.php new file mode 100644 index 000000000..d375d3319 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeRTSNativeSDKVvDataShrinkRequest.php @@ -0,0 +1,83 @@ + 'DataInterval', + 'domainNameListShrink' => 'DomainNameList', + 'endTime' => 'EndTime', + 'startTime' => 'StartTime', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->dataInterval) { + $res['DataInterval'] = $this->dataInterval; + } + if (null !== $this->domainNameListShrink) { + $res['DomainNameList'] = $this->domainNameListShrink; + } + if (null !== $this->endTime) { + $res['EndTime'] = $this->endTime; + } + if (null !== $this->startTime) { + $res['StartTime'] = $this->startTime; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeRTSNativeSDKVvDataShrinkRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DataInterval'])) { + $model->dataInterval = $map['DataInterval']; + } + if (isset($map['DomainNameList'])) { + $model->domainNameListShrink = $map['DomainNameList']; + } + if (isset($map['EndTime'])) { + $model->endTime = $map['EndTime']; + } + if (isset($map['StartTime'])) { + $model->startTime = $map['StartTime']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeRecordRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeRecordRequest.php new file mode 100644 index 000000000..f056cfd3a --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeRecordRequest.php @@ -0,0 +1,71 @@ + 'OwnerId', + 'appId' => 'AppId', + 'recordId' => 'RecordId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->appId) { + $res['AppId'] = $this->appId; + } + if (null !== $this->recordId) { + $res['RecordId'] = $this->recordId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeRecordRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['AppId'])) { + $model->appId = $map['AppId']; + } + if (isset($map['RecordId'])) { + $model->recordId = $map['RecordId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeRecordResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeRecordResponse.php new file mode 100644 index 000000000..252a75487 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeRecordResponse.php @@ -0,0 +1,61 @@ + 'headers', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeRecordResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['body'])) { + $model->body = DescribeRecordResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeRecordResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeRecordResponseBody.php new file mode 100644 index 000000000..042c7be87 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeRecordResponseBody.php @@ -0,0 +1,167 @@ + 'BoardId', + 'endTime' => 'EndTime', + 'requestId' => 'RequestId', + 'appId' => 'AppId', + 'recordStartTime' => 'RecordStartTime', + 'ossEndpoint' => 'OssEndpoint', + 'state' => 'State', + 'ossPath' => 'OssPath', + 'startTime' => 'StartTime', + 'ossBucket' => 'OssBucket', + 'recordId' => 'RecordId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->boardId) { + $res['BoardId'] = $this->boardId; + } + if (null !== $this->endTime) { + $res['EndTime'] = $this->endTime; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->appId) { + $res['AppId'] = $this->appId; + } + if (null !== $this->recordStartTime) { + $res['RecordStartTime'] = $this->recordStartTime; + } + if (null !== $this->ossEndpoint) { + $res['OssEndpoint'] = $this->ossEndpoint; + } + if (null !== $this->state) { + $res['State'] = $this->state; + } + if (null !== $this->ossPath) { + $res['OssPath'] = $this->ossPath; + } + if (null !== $this->startTime) { + $res['StartTime'] = $this->startTime; + } + if (null !== $this->ossBucket) { + $res['OssBucket'] = $this->ossBucket; + } + if (null !== $this->recordId) { + $res['RecordId'] = $this->recordId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeRecordResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['BoardId'])) { + $model->boardId = $map['BoardId']; + } + if (isset($map['EndTime'])) { + $model->endTime = $map['EndTime']; + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['AppId'])) { + $model->appId = $map['AppId']; + } + if (isset($map['RecordStartTime'])) { + $model->recordStartTime = $map['RecordStartTime']; + } + if (isset($map['OssEndpoint'])) { + $model->ossEndpoint = $map['OssEndpoint']; + } + if (isset($map['State'])) { + $model->state = $map['State']; + } + if (isset($map['OssPath'])) { + $model->ossPath = $map['OssPath']; + } + if (isset($map['StartTime'])) { + $model->startTime = $map['StartTime']; + } + if (isset($map['OssBucket'])) { + $model->ossBucket = $map['OssBucket']; + } + if (isset($map['RecordId'])) { + $model->recordId = $map['RecordId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeRecordsRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeRecordsRequest.php new file mode 100644 index 000000000..feb4d30c2 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeRecordsRequest.php @@ -0,0 +1,95 @@ + 'OwnerId', + 'appId' => 'AppId', + 'pageNum' => 'PageNum', + 'pageSize' => 'PageSize', + 'recordState' => 'RecordState', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->appId) { + $res['AppId'] = $this->appId; + } + if (null !== $this->pageNum) { + $res['PageNum'] = $this->pageNum; + } + if (null !== $this->pageSize) { + $res['PageSize'] = $this->pageSize; + } + if (null !== $this->recordState) { + $res['RecordState'] = $this->recordState; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeRecordsRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['AppId'])) { + $model->appId = $map['AppId']; + } + if (isset($map['PageNum'])) { + $model->pageNum = $map['PageNum']; + } + if (isset($map['PageSize'])) { + $model->pageSize = $map['PageSize']; + } + if (isset($map['RecordState'])) { + $model->recordState = $map['RecordState']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeRecordsResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeRecordsResponse.php new file mode 100644 index 000000000..471ce75b4 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeRecordsResponse.php @@ -0,0 +1,61 @@ + 'headers', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeRecordsResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['body'])) { + $model->body = DescribeRecordsResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeRecordsResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeRecordsResponseBody.php new file mode 100644 index 000000000..02890504f --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeRecordsResponseBody.php @@ -0,0 +1,72 @@ + 'RequestId', + 'records' => 'Records', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->records) { + $res['Records'] = []; + if (null !== $this->records && \is_array($this->records)) { + $n = 0; + foreach ($this->records as $item) { + $res['Records'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeRecordsResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['Records'])) { + if (!empty($map['Records'])) { + $model->records = []; + $n = 0; + foreach ($map['Records'] as $item) { + $model->records[$n++] = null !== $item ? records::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeRecordsResponseBody/records.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeRecordsResponseBody/records.php new file mode 100644 index 000000000..9388bd30c --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeRecordsResponseBody/records.php @@ -0,0 +1,155 @@ + 'EndTime', + 'startTime' => 'StartTime', + 'boardId' => 'BoardId', + 'state' => 'State', + 'appId' => 'AppId', + 'recordId' => 'RecordId', + 'ossBucket' => 'OssBucket', + 'recordStartTime' => 'RecordStartTime', + 'ossPath' => 'OssPath', + 'ossEndpoint' => 'OssEndpoint', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->endTime) { + $res['EndTime'] = $this->endTime; + } + if (null !== $this->startTime) { + $res['StartTime'] = $this->startTime; + } + if (null !== $this->boardId) { + $res['BoardId'] = $this->boardId; + } + if (null !== $this->state) { + $res['State'] = $this->state; + } + if (null !== $this->appId) { + $res['AppId'] = $this->appId; + } + if (null !== $this->recordId) { + $res['RecordId'] = $this->recordId; + } + if (null !== $this->ossBucket) { + $res['OssBucket'] = $this->ossBucket; + } + if (null !== $this->recordStartTime) { + $res['RecordStartTime'] = $this->recordStartTime; + } + if (null !== $this->ossPath) { + $res['OssPath'] = $this->ossPath; + } + if (null !== $this->ossEndpoint) { + $res['OssEndpoint'] = $this->ossEndpoint; + } + + return $res; + } + + /** + * @param array $map + * + * @return records + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['EndTime'])) { + $model->endTime = $map['EndTime']; + } + if (isset($map['StartTime'])) { + $model->startTime = $map['StartTime']; + } + if (isset($map['BoardId'])) { + $model->boardId = $map['BoardId']; + } + if (isset($map['State'])) { + $model->state = $map['State']; + } + if (isset($map['AppId'])) { + $model->appId = $map['AppId']; + } + if (isset($map['RecordId'])) { + $model->recordId = $map['RecordId']; + } + if (isset($map['OssBucket'])) { + $model->ossBucket = $map['OssBucket']; + } + if (isset($map['RecordStartTime'])) { + $model->recordStartTime = $map['RecordStartTime']; + } + if (isset($map['OssPath'])) { + $model->ossPath = $map['OssPath']; + } + if (isset($map['OssEndpoint'])) { + $model->ossEndpoint = $map['OssEndpoint']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeRoomKickoutUserListRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeRoomKickoutUserListRequest.php new file mode 100644 index 000000000..9584c2a03 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeRoomKickoutUserListRequest.php @@ -0,0 +1,107 @@ + 'AppId', + 'order' => 'Order', + 'ownerId' => 'OwnerId', + 'pageNum' => 'PageNum', + 'pageSize' => 'PageSize', + 'roomId' => 'RoomId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->appId) { + $res['AppId'] = $this->appId; + } + if (null !== $this->order) { + $res['Order'] = $this->order; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->pageNum) { + $res['PageNum'] = $this->pageNum; + } + if (null !== $this->pageSize) { + $res['PageSize'] = $this->pageSize; + } + if (null !== $this->roomId) { + $res['RoomId'] = $this->roomId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeRoomKickoutUserListRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppId'])) { + $model->appId = $map['AppId']; + } + if (isset($map['Order'])) { + $model->order = $map['Order']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['PageNum'])) { + $model->pageNum = $map['PageNum']; + } + if (isset($map['PageSize'])) { + $model->pageSize = $map['PageSize']; + } + if (isset($map['RoomId'])) { + $model->roomId = $map['RoomId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeRoomKickoutUserListResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeRoomKickoutUserListResponse.php new file mode 100644 index 000000000..70b1eb45c --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeRoomKickoutUserListResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeRoomKickoutUserListResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DescribeRoomKickoutUserListResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeRoomKickoutUserListResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeRoomKickoutUserListResponseBody.php new file mode 100644 index 000000000..90da678a8 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeRoomKickoutUserListResponseBody.php @@ -0,0 +1,96 @@ + 'RequestId', + 'totalNum' => 'TotalNum', + 'totalPage' => 'TotalPage', + 'userList' => 'UserList', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->totalNum) { + $res['TotalNum'] = $this->totalNum; + } + if (null !== $this->totalPage) { + $res['TotalPage'] = $this->totalPage; + } + if (null !== $this->userList) { + $res['UserList'] = []; + if (null !== $this->userList && \is_array($this->userList)) { + $n = 0; + foreach ($this->userList as $item) { + $res['UserList'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeRoomKickoutUserListResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['TotalNum'])) { + $model->totalNum = $map['TotalNum']; + } + if (isset($map['TotalPage'])) { + $model->totalPage = $map['TotalPage']; + } + if (isset($map['UserList'])) { + if (!empty($map['UserList'])) { + $model->userList = []; + $n = 0; + foreach ($map['UserList'] as $item) { + $model->userList[$n++] = null !== $item ? userList::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeRoomKickoutUserListResponseBody/userList.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeRoomKickoutUserListResponseBody/userList.php new file mode 100644 index 000000000..280d85e0c --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeRoomKickoutUserListResponseBody/userList.php @@ -0,0 +1,71 @@ + 'AppUid', + 'opEndTime' => 'OpEndTime', + 'opStartTime' => 'OpStartTime', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->appUid) { + $res['AppUid'] = $this->appUid; + } + if (null !== $this->opEndTime) { + $res['OpEndTime'] = $this->opEndTime; + } + if (null !== $this->opStartTime) { + $res['OpStartTime'] = $this->opStartTime; + } + + return $res; + } + + /** + * @param array $map + * + * @return userList + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppUid'])) { + $model->appUid = $map['AppUid']; + } + if (isset($map['OpEndTime'])) { + $model->opEndTime = $map['OpEndTime']; + } + if (isset($map['OpStartTime'])) { + $model->opStartTime = $map['OpStartTime']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeRoomListRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeRoomListRequest.php new file mode 100644 index 000000000..85b70ef09 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeRoomListRequest.php @@ -0,0 +1,155 @@ + 'AnchorId', + 'appId' => 'AppId', + 'endTime' => 'EndTime', + 'order' => 'Order', + 'ownerId' => 'OwnerId', + 'pageNum' => 'PageNum', + 'pageSize' => 'PageSize', + 'roomId' => 'RoomId', + 'roomStatus' => 'RoomStatus', + 'startTime' => 'StartTime', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->anchorId) { + $res['AnchorId'] = $this->anchorId; + } + if (null !== $this->appId) { + $res['AppId'] = $this->appId; + } + if (null !== $this->endTime) { + $res['EndTime'] = $this->endTime; + } + if (null !== $this->order) { + $res['Order'] = $this->order; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->pageNum) { + $res['PageNum'] = $this->pageNum; + } + if (null !== $this->pageSize) { + $res['PageSize'] = $this->pageSize; + } + if (null !== $this->roomId) { + $res['RoomId'] = $this->roomId; + } + if (null !== $this->roomStatus) { + $res['RoomStatus'] = $this->roomStatus; + } + if (null !== $this->startTime) { + $res['StartTime'] = $this->startTime; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeRoomListRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AnchorId'])) { + $model->anchorId = $map['AnchorId']; + } + if (isset($map['AppId'])) { + $model->appId = $map['AppId']; + } + if (isset($map['EndTime'])) { + $model->endTime = $map['EndTime']; + } + if (isset($map['Order'])) { + $model->order = $map['Order']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['PageNum'])) { + $model->pageNum = $map['PageNum']; + } + if (isset($map['PageSize'])) { + $model->pageSize = $map['PageSize']; + } + if (isset($map['RoomId'])) { + $model->roomId = $map['RoomId']; + } + if (isset($map['RoomStatus'])) { + $model->roomStatus = $map['RoomStatus']; + } + if (isset($map['StartTime'])) { + $model->startTime = $map['StartTime']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeRoomListResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeRoomListResponse.php new file mode 100644 index 000000000..5bed7e664 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeRoomListResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeRoomListResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DescribeRoomListResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeRoomListResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeRoomListResponseBody.php new file mode 100644 index 000000000..2c9eb8eca --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeRoomListResponseBody.php @@ -0,0 +1,96 @@ + 'RequestId', + 'roomList' => 'RoomList', + 'totalNum' => 'TotalNum', + 'totalPage' => 'TotalPage', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->roomList) { + $res['RoomList'] = []; + if (null !== $this->roomList && \is_array($this->roomList)) { + $n = 0; + foreach ($this->roomList as $item) { + $res['RoomList'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + if (null !== $this->totalNum) { + $res['TotalNum'] = $this->totalNum; + } + if (null !== $this->totalPage) { + $res['TotalPage'] = $this->totalPage; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeRoomListResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['RoomList'])) { + if (!empty($map['RoomList'])) { + $model->roomList = []; + $n = 0; + foreach ($map['RoomList'] as $item) { + $model->roomList[$n++] = null !== $item ? roomList::fromMap($item) : $item; + } + } + } + if (isset($map['TotalNum'])) { + $model->totalNum = $map['TotalNum']; + } + if (isset($map['TotalPage'])) { + $model->totalPage = $map['TotalPage']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeRoomListResponseBody/roomList.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeRoomListResponseBody/roomList.php new file mode 100644 index 000000000..14b327a19 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeRoomListResponseBody/roomList.php @@ -0,0 +1,95 @@ + 'AnchorId', + 'createTime' => 'CreateTime', + 'forbidStream' => 'ForbidStream', + 'roomId' => 'RoomId', + 'roomStatus' => 'RoomStatus', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->anchorId) { + $res['AnchorId'] = $this->anchorId; + } + if (null !== $this->createTime) { + $res['CreateTime'] = $this->createTime; + } + if (null !== $this->forbidStream) { + $res['ForbidStream'] = $this->forbidStream; + } + if (null !== $this->roomId) { + $res['RoomId'] = $this->roomId; + } + if (null !== $this->roomStatus) { + $res['RoomStatus'] = $this->roomStatus; + } + + return $res; + } + + /** + * @param array $map + * + * @return roomList + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AnchorId'])) { + $model->anchorId = $map['AnchorId']; + } + if (isset($map['CreateTime'])) { + $model->createTime = $map['CreateTime']; + } + if (isset($map['ForbidStream'])) { + $model->forbidStream = $map['ForbidStream']; + } + if (isset($map['RoomId'])) { + $model->roomId = $map['RoomId']; + } + if (isset($map['RoomStatus'])) { + $model->roomStatus = $map['RoomStatus']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeRoomStatusRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeRoomStatusRequest.php new file mode 100644 index 000000000..22b697543 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeRoomStatusRequest.php @@ -0,0 +1,71 @@ + 'AppId', + 'ownerId' => 'OwnerId', + 'roomId' => 'RoomId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->appId) { + $res['AppId'] = $this->appId; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->roomId) { + $res['RoomId'] = $this->roomId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeRoomStatusRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppId'])) { + $model->appId = $map['AppId']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['RoomId'])) { + $model->roomId = $map['RoomId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeRoomStatusResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeRoomStatusResponse.php new file mode 100644 index 000000000..d68243890 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeRoomStatusResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeRoomStatusResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DescribeRoomStatusResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeRoomStatusResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeRoomStatusResponseBody.php new file mode 100644 index 000000000..df0a6a414 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeRoomStatusResponseBody.php @@ -0,0 +1,59 @@ + 'RequestId', + 'roomStatus' => 'RoomStatus', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->roomStatus) { + $res['RoomStatus'] = $this->roomStatus; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeRoomStatusResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['RoomStatus'])) { + $model->roomStatus = $map['RoomStatus']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeShowListRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeShowListRequest.php new file mode 100644 index 000000000..56ebb4ff9 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeShowListRequest.php @@ -0,0 +1,59 @@ + 'CasterId', + 'ownerId' => 'OwnerId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->casterId) { + $res['CasterId'] = $this->casterId; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeShowListRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CasterId'])) { + $model->casterId = $map['CasterId']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeShowListResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeShowListResponse.php new file mode 100644 index 000000000..b6f3da45e --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeShowListResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeShowListResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DescribeShowListResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeShowListResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeShowListResponseBody.php new file mode 100644 index 000000000..f7fd02cc6 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeShowListResponseBody.php @@ -0,0 +1,72 @@ + 'RequestId', + 'showList' => 'ShowList', + 'showListInfo' => 'ShowListInfo', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->showList) { + $res['ShowList'] = $this->showList; + } + if (null !== $this->showListInfo) { + $res['ShowListInfo'] = null !== $this->showListInfo ? $this->showListInfo->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeShowListResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['ShowList'])) { + $model->showList = $map['ShowList']; + } + if (isset($map['ShowListInfo'])) { + $model->showListInfo = showListInfo::fromMap($map['ShowListInfo']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeShowListResponseBody/showListInfo.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeShowListResponseBody/showListInfo.php new file mode 100644 index 000000000..62ef0b71a --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeShowListResponseBody/showListInfo.php @@ -0,0 +1,108 @@ + 'CurrentShowId', + 'highPriorityShowId' => 'HighPriorityShowId', + 'highPriorityShowStartTime' => 'HighPriorityShowStartTime', + 'showList' => 'ShowList', + 'showListRepeatTimes' => 'ShowListRepeatTimes', + 'totalShowListRepeatTimes' => 'TotalShowListRepeatTimes', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->currentShowId) { + $res['CurrentShowId'] = $this->currentShowId; + } + if (null !== $this->highPriorityShowId) { + $res['HighPriorityShowId'] = $this->highPriorityShowId; + } + if (null !== $this->highPriorityShowStartTime) { + $res['HighPriorityShowStartTime'] = $this->highPriorityShowStartTime; + } + if (null !== $this->showList) { + $res['ShowList'] = null !== $this->showList ? $this->showList->toMap() : null; + } + if (null !== $this->showListRepeatTimes) { + $res['ShowListRepeatTimes'] = $this->showListRepeatTimes; + } + if (null !== $this->totalShowListRepeatTimes) { + $res['TotalShowListRepeatTimes'] = $this->totalShowListRepeatTimes; + } + + return $res; + } + + /** + * @param array $map + * + * @return showListInfo + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CurrentShowId'])) { + $model->currentShowId = $map['CurrentShowId']; + } + if (isset($map['HighPriorityShowId'])) { + $model->highPriorityShowId = $map['HighPriorityShowId']; + } + if (isset($map['HighPriorityShowStartTime'])) { + $model->highPriorityShowStartTime = $map['HighPriorityShowStartTime']; + } + if (isset($map['ShowList'])) { + $model->showList = showList::fromMap($map['ShowList']); + } + if (isset($map['ShowListRepeatTimes'])) { + $model->showListRepeatTimes = $map['ShowListRepeatTimes']; + } + if (isset($map['TotalShowListRepeatTimes'])) { + $model->totalShowListRepeatTimes = $map['TotalShowListRepeatTimes']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeShowListResponseBody/showListInfo/showList.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeShowListResponseBody/showListInfo/showList.php new file mode 100644 index 000000000..6fbde0c4e --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeShowListResponseBody/showListInfo/showList.php @@ -0,0 +1,60 @@ + 'Show', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->show) { + $res['Show'] = []; + if (null !== $this->show && \is_array($this->show)) { + $n = 0; + foreach ($this->show as $item) { + $res['Show'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return showList + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Show'])) { + if (!empty($map['Show'])) { + $model->show = []; + $n = 0; + foreach ($map['Show'] as $item) { + $model->show[$n++] = null !== $item ? show::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeShowListResponseBody/showListInfo/showList/show.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeShowListResponseBody/showListInfo/showList/show.php new file mode 100644 index 000000000..16b9ef219 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeShowListResponseBody/showListInfo/showList/show.php @@ -0,0 +1,96 @@ + 'Duration', + 'repeatTimes' => 'RepeatTimes', + 'resourceInfo' => 'ResourceInfo', + 'showId' => 'ShowId', + 'showName' => 'ShowName', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->duration) { + $res['Duration'] = $this->duration; + } + if (null !== $this->repeatTimes) { + $res['RepeatTimes'] = $this->repeatTimes; + } + if (null !== $this->resourceInfo) { + $res['ResourceInfo'] = null !== $this->resourceInfo ? $this->resourceInfo->toMap() : null; + } + if (null !== $this->showId) { + $res['ShowId'] = $this->showId; + } + if (null !== $this->showName) { + $res['ShowName'] = $this->showName; + } + + return $res; + } + + /** + * @param array $map + * + * @return show + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Duration'])) { + $model->duration = $map['Duration']; + } + if (isset($map['RepeatTimes'])) { + $model->repeatTimes = $map['RepeatTimes']; + } + if (isset($map['ResourceInfo'])) { + $model->resourceInfo = resourceInfo::fromMap($map['ResourceInfo']); + } + if (isset($map['ShowId'])) { + $model->showId = $map['ShowId']; + } + if (isset($map['ShowName'])) { + $model->showName = $map['ShowName']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeShowListResponseBody/showListInfo/showList/show/resourceInfo.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeShowListResponseBody/showListInfo/showList/show/resourceInfo.php new file mode 100644 index 000000000..bfa3208cb --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeShowListResponseBody/showListInfo/showList/show/resourceInfo.php @@ -0,0 +1,83 @@ + 'LiveInputType', + 'resourceId' => 'ResourceId', + 'resourceType' => 'ResourceType', + 'resourceUrl' => 'ResourceUrl', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->liveInputType) { + $res['LiveInputType'] = $this->liveInputType; + } + if (null !== $this->resourceId) { + $res['ResourceId'] = $this->resourceId; + } + if (null !== $this->resourceType) { + $res['ResourceType'] = $this->resourceType; + } + if (null !== $this->resourceUrl) { + $res['ResourceUrl'] = $this->resourceUrl; + } + + return $res; + } + + /** + * @param array $map + * + * @return resourceInfo + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['LiveInputType'])) { + $model->liveInputType = $map['LiveInputType']; + } + if (isset($map['ResourceId'])) { + $model->resourceId = $map['ResourceId']; + } + if (isset($map['ResourceType'])) { + $model->resourceType = $map['ResourceType']; + } + if (isset($map['ResourceUrl'])) { + $model->resourceUrl = $map['ResourceUrl']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeStudioLayoutsRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeStudioLayoutsRequest.php new file mode 100644 index 000000000..614a32a8a --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeStudioLayoutsRequest.php @@ -0,0 +1,71 @@ + 'CasterId', + 'layoutId' => 'LayoutId', + 'ownerId' => 'OwnerId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->casterId) { + $res['CasterId'] = $this->casterId; + } + if (null !== $this->layoutId) { + $res['LayoutId'] = $this->layoutId; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeStudioLayoutsRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CasterId'])) { + $model->casterId = $map['CasterId']; + } + if (isset($map['LayoutId'])) { + $model->layoutId = $map['LayoutId']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeStudioLayoutsResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeStudioLayoutsResponse.php new file mode 100644 index 000000000..02aa56334 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeStudioLayoutsResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeStudioLayoutsResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DescribeStudioLayoutsResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeStudioLayoutsResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeStudioLayoutsResponseBody.php new file mode 100644 index 000000000..00a1ab123 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeStudioLayoutsResponseBody.php @@ -0,0 +1,84 @@ + 'RequestId', + 'studioLayouts' => 'StudioLayouts', + 'total' => 'Total', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->studioLayouts) { + $res['StudioLayouts'] = []; + if (null !== $this->studioLayouts && \is_array($this->studioLayouts)) { + $n = 0; + foreach ($this->studioLayouts as $item) { + $res['StudioLayouts'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + if (null !== $this->total) { + $res['Total'] = $this->total; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeStudioLayoutsResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['StudioLayouts'])) { + if (!empty($map['StudioLayouts'])) { + $model->studioLayouts = []; + $n = 0; + foreach ($map['StudioLayouts'] as $item) { + $model->studioLayouts[$n++] = null !== $item ? studioLayouts::fromMap($item) : $item; + } + } + } + if (isset($map['Total'])) { + $model->total = $map['Total']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeStudioLayoutsResponseBody/studioLayouts.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeStudioLayoutsResponseBody/studioLayouts.php new file mode 100644 index 000000000..deda7f0ac --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeStudioLayoutsResponseBody/studioLayouts.php @@ -0,0 +1,172 @@ + 'BgImageConfig', + 'commonConfig' => 'CommonConfig', + 'layerOrderConfigList' => 'LayerOrderConfigList', + 'layoutId' => 'LayoutId', + 'layoutName' => 'LayoutName', + 'layoutType' => 'LayoutType', + 'mediaInputConfigList' => 'MediaInputConfigList', + 'screenInputConfigList' => 'ScreenInputConfigList', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->bgImageConfig) { + $res['BgImageConfig'] = null !== $this->bgImageConfig ? $this->bgImageConfig->toMap() : null; + } + if (null !== $this->commonConfig) { + $res['CommonConfig'] = null !== $this->commonConfig ? $this->commonConfig->toMap() : null; + } + if (null !== $this->layerOrderConfigList) { + $res['LayerOrderConfigList'] = []; + if (null !== $this->layerOrderConfigList && \is_array($this->layerOrderConfigList)) { + $n = 0; + foreach ($this->layerOrderConfigList as $item) { + $res['LayerOrderConfigList'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + if (null !== $this->layoutId) { + $res['LayoutId'] = $this->layoutId; + } + if (null !== $this->layoutName) { + $res['LayoutName'] = $this->layoutName; + } + if (null !== $this->layoutType) { + $res['LayoutType'] = $this->layoutType; + } + if (null !== $this->mediaInputConfigList) { + $res['MediaInputConfigList'] = []; + if (null !== $this->mediaInputConfigList && \is_array($this->mediaInputConfigList)) { + $n = 0; + foreach ($this->mediaInputConfigList as $item) { + $res['MediaInputConfigList'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + if (null !== $this->screenInputConfigList) { + $res['ScreenInputConfigList'] = []; + if (null !== $this->screenInputConfigList && \is_array($this->screenInputConfigList)) { + $n = 0; + foreach ($this->screenInputConfigList as $item) { + $res['ScreenInputConfigList'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return studioLayouts + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['BgImageConfig'])) { + $model->bgImageConfig = bgImageConfig::fromMap($map['BgImageConfig']); + } + if (isset($map['CommonConfig'])) { + $model->commonConfig = commonConfig::fromMap($map['CommonConfig']); + } + if (isset($map['LayerOrderConfigList'])) { + if (!empty($map['LayerOrderConfigList'])) { + $model->layerOrderConfigList = []; + $n = 0; + foreach ($map['LayerOrderConfigList'] as $item) { + $model->layerOrderConfigList[$n++] = null !== $item ? layerOrderConfigList::fromMap($item) : $item; + } + } + } + if (isset($map['LayoutId'])) { + $model->layoutId = $map['LayoutId']; + } + if (isset($map['LayoutName'])) { + $model->layoutName = $map['LayoutName']; + } + if (isset($map['LayoutType'])) { + $model->layoutType = $map['LayoutType']; + } + if (isset($map['MediaInputConfigList'])) { + if (!empty($map['MediaInputConfigList'])) { + $model->mediaInputConfigList = []; + $n = 0; + foreach ($map['MediaInputConfigList'] as $item) { + $model->mediaInputConfigList[$n++] = null !== $item ? mediaInputConfigList::fromMap($item) : $item; + } + } + } + if (isset($map['ScreenInputConfigList'])) { + if (!empty($map['ScreenInputConfigList'])) { + $model->screenInputConfigList = []; + $n = 0; + foreach ($map['ScreenInputConfigList'] as $item) { + $model->screenInputConfigList[$n++] = null !== $item ? screenInputConfigList::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeStudioLayoutsResponseBody/studioLayouts/bgImageConfig.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeStudioLayoutsResponseBody/studioLayouts/bgImageConfig.php new file mode 100644 index 000000000..4c5722f49 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeStudioLayoutsResponseBody/studioLayouts/bgImageConfig.php @@ -0,0 +1,83 @@ + 'Id', + 'imageUrl' => 'ImageUrl', + 'locationId' => 'LocationId', + 'materialId' => 'MaterialId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->id) { + $res['Id'] = $this->id; + } + if (null !== $this->imageUrl) { + $res['ImageUrl'] = $this->imageUrl; + } + if (null !== $this->locationId) { + $res['LocationId'] = $this->locationId; + } + if (null !== $this->materialId) { + $res['MaterialId'] = $this->materialId; + } + + return $res; + } + + /** + * @param array $map + * + * @return bgImageConfig + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Id'])) { + $model->id = $map['Id']; + } + if (isset($map['ImageUrl'])) { + $model->imageUrl = $map['ImageUrl']; + } + if (isset($map['LocationId'])) { + $model->locationId = $map['LocationId']; + } + if (isset($map['MaterialId'])) { + $model->materialId = $map['MaterialId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeStudioLayoutsResponseBody/studioLayouts/commonConfig.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeStudioLayoutsResponseBody/studioLayouts/commonConfig.php new file mode 100644 index 000000000..6be07db8e --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeStudioLayoutsResponseBody/studioLayouts/commonConfig.php @@ -0,0 +1,59 @@ + 'ChannelId', + 'videoResourceId' => 'VideoResourceId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->channelId) { + $res['ChannelId'] = $this->channelId; + } + if (null !== $this->videoResourceId) { + $res['VideoResourceId'] = $this->videoResourceId; + } + + return $res; + } + + /** + * @param array $map + * + * @return commonConfig + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['ChannelId'])) { + $model->channelId = $map['ChannelId']; + } + if (isset($map['VideoResourceId'])) { + $model->videoResourceId = $map['VideoResourceId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeStudioLayoutsResponseBody/studioLayouts/layerOrderConfigList.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeStudioLayoutsResponseBody/studioLayouts/layerOrderConfigList.php new file mode 100644 index 000000000..9113a2086 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeStudioLayoutsResponseBody/studioLayouts/layerOrderConfigList.php @@ -0,0 +1,59 @@ + 'Id', + 'type' => 'Type', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->id) { + $res['Id'] = $this->id; + } + if (null !== $this->type) { + $res['Type'] = $this->type; + } + + return $res; + } + + /** + * @param array $map + * + * @return layerOrderConfigList + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Id'])) { + $model->id = $map['Id']; + } + if (isset($map['Type'])) { + $model->type = $map['Type']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeStudioLayoutsResponseBody/studioLayouts/mediaInputConfigList.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeStudioLayoutsResponseBody/studioLayouts/mediaInputConfigList.php new file mode 100644 index 000000000..d42d365f8 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeStudioLayoutsResponseBody/studioLayouts/mediaInputConfigList.php @@ -0,0 +1,157 @@ + 'ChannelId', + 'fillMode' => 'FillMode', + 'heightNormalized' => 'HeightNormalized', + 'id' => 'Id', + 'imageMaterialId' => 'ImageMaterialId', + 'index' => 'Index', + 'positionNormalized' => 'PositionNormalized', + 'positionRefer' => 'PositionRefer', + 'videoResourceId' => 'VideoResourceId', + 'widthNormalized' => 'WidthNormalized', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->channelId) { + $res['ChannelId'] = $this->channelId; + } + if (null !== $this->fillMode) { + $res['FillMode'] = $this->fillMode; + } + if (null !== $this->heightNormalized) { + $res['HeightNormalized'] = $this->heightNormalized; + } + if (null !== $this->id) { + $res['Id'] = $this->id; + } + if (null !== $this->imageMaterialId) { + $res['ImageMaterialId'] = $this->imageMaterialId; + } + if (null !== $this->index) { + $res['Index'] = $this->index; + } + if (null !== $this->positionNormalized) { + $res['PositionNormalized'] = $this->positionNormalized; + } + if (null !== $this->positionRefer) { + $res['PositionRefer'] = $this->positionRefer; + } + if (null !== $this->videoResourceId) { + $res['VideoResourceId'] = $this->videoResourceId; + } + if (null !== $this->widthNormalized) { + $res['WidthNormalized'] = $this->widthNormalized; + } + + return $res; + } + + /** + * @param array $map + * + * @return mediaInputConfigList + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['ChannelId'])) { + $model->channelId = $map['ChannelId']; + } + if (isset($map['FillMode'])) { + $model->fillMode = $map['FillMode']; + } + if (isset($map['HeightNormalized'])) { + $model->heightNormalized = $map['HeightNormalized']; + } + if (isset($map['Id'])) { + $model->id = $map['Id']; + } + if (isset($map['ImageMaterialId'])) { + $model->imageMaterialId = $map['ImageMaterialId']; + } + if (isset($map['Index'])) { + $model->index = $map['Index']; + } + if (isset($map['PositionNormalized'])) { + if (!empty($map['PositionNormalized'])) { + $model->positionNormalized = $map['PositionNormalized']; + } + } + if (isset($map['PositionRefer'])) { + $model->positionRefer = $map['PositionRefer']; + } + if (isset($map['VideoResourceId'])) { + $model->videoResourceId = $map['VideoResourceId']; + } + if (isset($map['WidthNormalized'])) { + $model->widthNormalized = $map['WidthNormalized']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeStudioLayoutsResponseBody/studioLayouts/screenInputConfigList.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeStudioLayoutsResponseBody/studioLayouts/screenInputConfigList.php new file mode 100644 index 000000000..6d0f9d78f --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeStudioLayoutsResponseBody/studioLayouts/screenInputConfigList.php @@ -0,0 +1,168 @@ + 'AudioConfig', + 'channelId' => 'ChannelId', + 'color' => 'Color', + 'heightNormalized' => 'HeightNormalized', + 'id' => 'Id', + 'index' => 'Index', + 'onlyAudio' => 'OnlyAudio', + 'portraitType' => 'PortraitType', + 'positionX' => 'PositionX', + 'positionY' => 'PositionY', + 'videoResourceId' => 'VideoResourceId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->audioConfig) { + $res['AudioConfig'] = null !== $this->audioConfig ? $this->audioConfig->toMap() : null; + } + if (null !== $this->channelId) { + $res['ChannelId'] = $this->channelId; + } + if (null !== $this->color) { + $res['Color'] = $this->color; + } + if (null !== $this->heightNormalized) { + $res['HeightNormalized'] = $this->heightNormalized; + } + if (null !== $this->id) { + $res['Id'] = $this->id; + } + if (null !== $this->index) { + $res['Index'] = $this->index; + } + if (null !== $this->onlyAudio) { + $res['OnlyAudio'] = $this->onlyAudio; + } + if (null !== $this->portraitType) { + $res['PortraitType'] = $this->portraitType; + } + if (null !== $this->positionX) { + $res['PositionX'] = $this->positionX; + } + if (null !== $this->positionY) { + $res['PositionY'] = $this->positionY; + } + if (null !== $this->videoResourceId) { + $res['VideoResourceId'] = $this->videoResourceId; + } + + return $res; + } + + /** + * @param array $map + * + * @return screenInputConfigList + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AudioConfig'])) { + $model->audioConfig = audioConfig::fromMap($map['AudioConfig']); + } + if (isset($map['ChannelId'])) { + $model->channelId = $map['ChannelId']; + } + if (isset($map['Color'])) { + $model->color = $map['Color']; + } + if (isset($map['HeightNormalized'])) { + $model->heightNormalized = $map['HeightNormalized']; + } + if (isset($map['Id'])) { + $model->id = $map['Id']; + } + if (isset($map['Index'])) { + $model->index = $map['Index']; + } + if (isset($map['OnlyAudio'])) { + $model->onlyAudio = $map['OnlyAudio']; + } + if (isset($map['PortraitType'])) { + $model->portraitType = $map['PortraitType']; + } + if (isset($map['PositionX'])) { + $model->positionX = $map['PositionX']; + } + if (isset($map['PositionY'])) { + $model->positionY = $map['PositionY']; + } + if (isset($map['VideoResourceId'])) { + $model->videoResourceId = $map['VideoResourceId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeStudioLayoutsResponseBody/studioLayouts/screenInputConfigList/audioConfig.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeStudioLayoutsResponseBody/studioLayouts/screenInputConfigList/audioConfig.php new file mode 100644 index 000000000..c7a2e0c4e --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeStudioLayoutsResponseBody/studioLayouts/screenInputConfigList/audioConfig.php @@ -0,0 +1,59 @@ + 'ValidChannel', + 'volumeRate' => 'VolumeRate', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->validChannel) { + $res['ValidChannel'] = $this->validChannel; + } + if (null !== $this->volumeRate) { + $res['VolumeRate'] = $this->volumeRate; + } + + return $res; + } + + /** + * @param array $map + * + * @return audioConfig + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['ValidChannel'])) { + $model->validChannel = $map['ValidChannel']; + } + if (isset($map['VolumeRate'])) { + $model->volumeRate = $map['VolumeRate']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeToutiaoLivePlayRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeToutiaoLivePlayRequest.php new file mode 100644 index 000000000..f9d672510 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeToutiaoLivePlayRequest.php @@ -0,0 +1,107 @@ + 'App', + 'domain' => 'Domain', + 'endTime' => 'EndTime', + 'ownerId' => 'OwnerId', + 'startTime' => 'StartTime', + 'stream' => 'Stream', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->app) { + $res['App'] = $this->app; + } + if (null !== $this->domain) { + $res['Domain'] = $this->domain; + } + if (null !== $this->endTime) { + $res['EndTime'] = $this->endTime; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->startTime) { + $res['StartTime'] = $this->startTime; + } + if (null !== $this->stream) { + $res['Stream'] = $this->stream; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeToutiaoLivePlayRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['App'])) { + $model->app = $map['App']; + } + if (isset($map['Domain'])) { + $model->domain = $map['Domain']; + } + if (isset($map['EndTime'])) { + $model->endTime = $map['EndTime']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['StartTime'])) { + $model->startTime = $map['StartTime']; + } + if (isset($map['Stream'])) { + $model->stream = $map['Stream']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeToutiaoLivePlayResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeToutiaoLivePlayResponse.php new file mode 100644 index 000000000..0e59eb0d6 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeToutiaoLivePlayResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeToutiaoLivePlayResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DescribeToutiaoLivePlayResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeToutiaoLivePlayResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeToutiaoLivePlayResponseBody.php new file mode 100644 index 000000000..9cda5adff --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeToutiaoLivePlayResponseBody.php @@ -0,0 +1,84 @@ + 'Content', + 'description' => 'Description', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->content) { + $res['Content'] = []; + if (null !== $this->content && \is_array($this->content)) { + $n = 0; + foreach ($this->content as $item) { + $res['Content'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + if (null !== $this->description) { + $res['Description'] = $this->description; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeToutiaoLivePlayResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Content'])) { + if (!empty($map['Content'])) { + $model->content = []; + $n = 0; + foreach ($map['Content'] as $item) { + $model->content[$n++] = null !== $item ? content::fromMap($item) : $item; + } + } + } + if (isset($map['Description'])) { + $model->description = $map['Description']; + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeToutiaoLivePlayResponseBody/content.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeToutiaoLivePlayResponseBody/content.php new file mode 100644 index 000000000..644dcf7bc --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeToutiaoLivePlayResponseBody/content.php @@ -0,0 +1,119 @@ + 'App', + 'bandwidth' => 'Bandwidth', + 'cdnName' => 'CdnName', + 'domain' => 'Domain', + 'playNum' => 'PlayNum', + 'streamName' => 'StreamName', + 'timestamp' => 'Timestamp', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->app) { + $res['App'] = $this->app; + } + if (null !== $this->bandwidth) { + $res['Bandwidth'] = $this->bandwidth; + } + if (null !== $this->cdnName) { + $res['CdnName'] = $this->cdnName; + } + if (null !== $this->domain) { + $res['Domain'] = $this->domain; + } + if (null !== $this->playNum) { + $res['PlayNum'] = $this->playNum; + } + if (null !== $this->streamName) { + $res['StreamName'] = $this->streamName; + } + if (null !== $this->timestamp) { + $res['Timestamp'] = $this->timestamp; + } + + return $res; + } + + /** + * @param array $map + * + * @return content + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['App'])) { + $model->app = $map['App']; + } + if (isset($map['Bandwidth'])) { + $model->bandwidth = $map['Bandwidth']; + } + if (isset($map['CdnName'])) { + $model->cdnName = $map['CdnName']; + } + if (isset($map['Domain'])) { + $model->domain = $map['Domain']; + } + if (isset($map['PlayNum'])) { + $model->playNum = $map['PlayNum']; + } + if (isset($map['StreamName'])) { + $model->streamName = $map['StreamName']; + } + if (isset($map['Timestamp'])) { + $model->timestamp = $map['Timestamp']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeToutiaoLivePublishRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeToutiaoLivePublishRequest.php new file mode 100644 index 000000000..010323ece --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeToutiaoLivePublishRequest.php @@ -0,0 +1,107 @@ + 'App', + 'domain' => 'Domain', + 'endTime' => 'EndTime', + 'ownerId' => 'OwnerId', + 'startTime' => 'StartTime', + 'stream' => 'Stream', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->app) { + $res['App'] = $this->app; + } + if (null !== $this->domain) { + $res['Domain'] = $this->domain; + } + if (null !== $this->endTime) { + $res['EndTime'] = $this->endTime; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->startTime) { + $res['StartTime'] = $this->startTime; + } + if (null !== $this->stream) { + $res['Stream'] = $this->stream; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeToutiaoLivePublishRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['App'])) { + $model->app = $map['App']; + } + if (isset($map['Domain'])) { + $model->domain = $map['Domain']; + } + if (isset($map['EndTime'])) { + $model->endTime = $map['EndTime']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['StartTime'])) { + $model->startTime = $map['StartTime']; + } + if (isset($map['Stream'])) { + $model->stream = $map['Stream']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeToutiaoLivePublishResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeToutiaoLivePublishResponse.php new file mode 100644 index 000000000..90ae15ecf --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeToutiaoLivePublishResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeToutiaoLivePublishResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DescribeToutiaoLivePublishResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeToutiaoLivePublishResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeToutiaoLivePublishResponseBody.php new file mode 100644 index 000000000..a6f85c414 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeToutiaoLivePublishResponseBody.php @@ -0,0 +1,84 @@ + 'Content', + 'description' => 'Description', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->content) { + $res['Content'] = []; + if (null !== $this->content && \is_array($this->content)) { + $n = 0; + foreach ($this->content as $item) { + $res['Content'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + if (null !== $this->description) { + $res['Description'] = $this->description; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeToutiaoLivePublishResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Content'])) { + if (!empty($map['Content'])) { + $model->content = []; + $n = 0; + foreach ($map['Content'] as $item) { + $model->content[$n++] = null !== $item ? content::fromMap($item) : $item; + } + } + } + if (isset($map['Description'])) { + $model->description = $map['Description']; + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeToutiaoLivePublishResponseBody/content.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeToutiaoLivePublishResponseBody/content.php new file mode 100644 index 000000000..2a7da1600 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeToutiaoLivePublishResponseBody/content.php @@ -0,0 +1,143 @@ + 'App', + 'bitrate' => 'Bitrate', + 'bwDiff' => 'BwDiff', + 'cdnName' => 'CdnName', + 'domain' => 'Domain', + 'flr' => 'Flr', + 'fps' => 'Fps', + 'streamName' => 'StreamName', + 'timestamp' => 'Timestamp', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->app) { + $res['App'] = $this->app; + } + if (null !== $this->bitrate) { + $res['Bitrate'] = $this->bitrate; + } + if (null !== $this->bwDiff) { + $res['BwDiff'] = $this->bwDiff; + } + if (null !== $this->cdnName) { + $res['CdnName'] = $this->cdnName; + } + if (null !== $this->domain) { + $res['Domain'] = $this->domain; + } + if (null !== $this->flr) { + $res['Flr'] = $this->flr; + } + if (null !== $this->fps) { + $res['Fps'] = $this->fps; + } + if (null !== $this->streamName) { + $res['StreamName'] = $this->streamName; + } + if (null !== $this->timestamp) { + $res['Timestamp'] = $this->timestamp; + } + + return $res; + } + + /** + * @param array $map + * + * @return content + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['App'])) { + $model->app = $map['App']; + } + if (isset($map['Bitrate'])) { + $model->bitrate = $map['Bitrate']; + } + if (isset($map['BwDiff'])) { + $model->bwDiff = $map['BwDiff']; + } + if (isset($map['CdnName'])) { + $model->cdnName = $map['CdnName']; + } + if (isset($map['Domain'])) { + $model->domain = $map['Domain']; + } + if (isset($map['Flr'])) { + $model->flr = $map['Flr']; + } + if (isset($map['Fps'])) { + $model->fps = $map['Fps']; + } + if (isset($map['StreamName'])) { + $model->streamName = $map['StreamName']; + } + if (isset($map['Timestamp'])) { + $model->timestamp = $map['Timestamp']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeUpBpsPeakDataRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeUpBpsPeakDataRequest.php new file mode 100644 index 000000000..9648a4aae --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeUpBpsPeakDataRequest.php @@ -0,0 +1,95 @@ + 'DomainName', + 'domainSwitch' => 'DomainSwitch', + 'endTime' => 'EndTime', + 'ownerId' => 'OwnerId', + 'startTime' => 'StartTime', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->domainSwitch) { + $res['DomainSwitch'] = $this->domainSwitch; + } + if (null !== $this->endTime) { + $res['EndTime'] = $this->endTime; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->startTime) { + $res['StartTime'] = $this->startTime; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeUpBpsPeakDataRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['DomainSwitch'])) { + $model->domainSwitch = $map['DomainSwitch']; + } + if (isset($map['EndTime'])) { + $model->endTime = $map['EndTime']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['StartTime'])) { + $model->startTime = $map['StartTime']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeUpBpsPeakDataResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeUpBpsPeakDataResponse.php new file mode 100644 index 000000000..c74b3dd06 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeUpBpsPeakDataResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeUpBpsPeakDataResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DescribeUpBpsPeakDataResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeUpBpsPeakDataResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeUpBpsPeakDataResponseBody.php new file mode 100644 index 000000000..789d9f6f8 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeUpBpsPeakDataResponseBody.php @@ -0,0 +1,60 @@ + 'DescribeUpPeakTraffics', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->describeUpPeakTraffics) { + $res['DescribeUpPeakTraffics'] = null !== $this->describeUpPeakTraffics ? $this->describeUpPeakTraffics->toMap() : null; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeUpBpsPeakDataResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DescribeUpPeakTraffics'])) { + $model->describeUpPeakTraffics = describeUpPeakTraffics::fromMap($map['DescribeUpPeakTraffics']); + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeUpBpsPeakDataResponseBody/describeUpPeakTraffics.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeUpBpsPeakDataResponseBody/describeUpPeakTraffics.php new file mode 100644 index 000000000..e808386e2 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeUpBpsPeakDataResponseBody/describeUpPeakTraffics.php @@ -0,0 +1,60 @@ + 'DescribeUpPeakTraffic', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->describeUpPeakTraffic) { + $res['DescribeUpPeakTraffic'] = []; + if (null !== $this->describeUpPeakTraffic && \is_array($this->describeUpPeakTraffic)) { + $n = 0; + foreach ($this->describeUpPeakTraffic as $item) { + $res['DescribeUpPeakTraffic'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return describeUpPeakTraffics + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DescribeUpPeakTraffic'])) { + if (!empty($map['DescribeUpPeakTraffic'])) { + $model->describeUpPeakTraffic = []; + $n = 0; + foreach ($map['DescribeUpPeakTraffic'] as $item) { + $model->describeUpPeakTraffic[$n++] = null !== $item ? describeUpPeakTraffic::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeUpBpsPeakDataResponseBody/describeUpPeakTraffics/describeUpPeakTraffic.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeUpBpsPeakDataResponseBody/describeUpPeakTraffics/describeUpPeakTraffic.php new file mode 100644 index 000000000..49e301359 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeUpBpsPeakDataResponseBody/describeUpPeakTraffics/describeUpPeakTraffic.php @@ -0,0 +1,83 @@ + 'BandWidth', + 'peakTime' => 'PeakTime', + 'queryTime' => 'QueryTime', + 'statName' => 'StatName', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->bandWidth) { + $res['BandWidth'] = $this->bandWidth; + } + if (null !== $this->peakTime) { + $res['PeakTime'] = $this->peakTime; + } + if (null !== $this->queryTime) { + $res['QueryTime'] = $this->queryTime; + } + if (null !== $this->statName) { + $res['StatName'] = $this->statName; + } + + return $res; + } + + /** + * @param array $map + * + * @return describeUpPeakTraffic + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['BandWidth'])) { + $model->bandWidth = $map['BandWidth']; + } + if (isset($map['PeakTime'])) { + $model->peakTime = $map['PeakTime']; + } + if (isset($map['QueryTime'])) { + $model->queryTime = $map['QueryTime']; + } + if (isset($map['StatName'])) { + $model->statName = $map['StatName']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeUpBpsPeakOfLineRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeUpBpsPeakOfLineRequest.php new file mode 100644 index 000000000..70a6cf2a2 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeUpBpsPeakOfLineRequest.php @@ -0,0 +1,107 @@ + 'DomainName', + 'domainSwitch' => 'DomainSwitch', + 'endTime' => 'EndTime', + 'line' => 'Line', + 'ownerId' => 'OwnerId', + 'startTime' => 'StartTime', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->domainSwitch) { + $res['DomainSwitch'] = $this->domainSwitch; + } + if (null !== $this->endTime) { + $res['EndTime'] = $this->endTime; + } + if (null !== $this->line) { + $res['Line'] = $this->line; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->startTime) { + $res['StartTime'] = $this->startTime; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeUpBpsPeakOfLineRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['DomainSwitch'])) { + $model->domainSwitch = $map['DomainSwitch']; + } + if (isset($map['EndTime'])) { + $model->endTime = $map['EndTime']; + } + if (isset($map['Line'])) { + $model->line = $map['Line']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['StartTime'])) { + $model->startTime = $map['StartTime']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeUpBpsPeakOfLineResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeUpBpsPeakOfLineResponse.php new file mode 100644 index 000000000..2956b5553 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeUpBpsPeakOfLineResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeUpBpsPeakOfLineResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DescribeUpBpsPeakOfLineResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeUpBpsPeakOfLineResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeUpBpsPeakOfLineResponseBody.php new file mode 100644 index 000000000..ad3c61f38 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeUpBpsPeakOfLineResponseBody.php @@ -0,0 +1,60 @@ + 'DescribeUpBpsPeakOfLines', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->describeUpBpsPeakOfLines) { + $res['DescribeUpBpsPeakOfLines'] = null !== $this->describeUpBpsPeakOfLines ? $this->describeUpBpsPeakOfLines->toMap() : null; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeUpBpsPeakOfLineResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DescribeUpBpsPeakOfLines'])) { + $model->describeUpBpsPeakOfLines = describeUpBpsPeakOfLines::fromMap($map['DescribeUpBpsPeakOfLines']); + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeUpBpsPeakOfLineResponseBody/describeUpBpsPeakOfLines.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeUpBpsPeakOfLineResponseBody/describeUpBpsPeakOfLines.php new file mode 100644 index 000000000..84e436e33 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeUpBpsPeakOfLineResponseBody/describeUpBpsPeakOfLines.php @@ -0,0 +1,60 @@ + 'DescribeUpBpsPeakOfLine', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->describeUpBpsPeakOfLine) { + $res['DescribeUpBpsPeakOfLine'] = []; + if (null !== $this->describeUpBpsPeakOfLine && \is_array($this->describeUpBpsPeakOfLine)) { + $n = 0; + foreach ($this->describeUpBpsPeakOfLine as $item) { + $res['DescribeUpBpsPeakOfLine'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return describeUpBpsPeakOfLines + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DescribeUpBpsPeakOfLine'])) { + if (!empty($map['DescribeUpBpsPeakOfLine'])) { + $model->describeUpBpsPeakOfLine = []; + $n = 0; + foreach ($map['DescribeUpBpsPeakOfLine'] as $item) { + $model->describeUpBpsPeakOfLine[$n++] = null !== $item ? describeUpBpsPeakOfLine::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeUpBpsPeakOfLineResponseBody/describeUpBpsPeakOfLines/describeUpBpsPeakOfLine.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeUpBpsPeakOfLineResponseBody/describeUpBpsPeakOfLines/describeUpBpsPeakOfLine.php new file mode 100644 index 000000000..a79f57684 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeUpBpsPeakOfLineResponseBody/describeUpBpsPeakOfLines/describeUpBpsPeakOfLine.php @@ -0,0 +1,83 @@ + 'BandWidth', + 'peakTime' => 'PeakTime', + 'queryTime' => 'QueryTime', + 'statName' => 'StatName', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->bandWidth) { + $res['BandWidth'] = $this->bandWidth; + } + if (null !== $this->peakTime) { + $res['PeakTime'] = $this->peakTime; + } + if (null !== $this->queryTime) { + $res['QueryTime'] = $this->queryTime; + } + if (null !== $this->statName) { + $res['StatName'] = $this->statName; + } + + return $res; + } + + /** + * @param array $map + * + * @return describeUpBpsPeakOfLine + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['BandWidth'])) { + $model->bandWidth = $map['BandWidth']; + } + if (isset($map['PeakTime'])) { + $model->peakTime = $map['PeakTime']; + } + if (isset($map['QueryTime'])) { + $model->queryTime = $map['QueryTime']; + } + if (isset($map['StatName'])) { + $model->statName = $map['StatName']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeUpPeakPublishStreamDataRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeUpPeakPublishStreamDataRequest.php new file mode 100644 index 000000000..cc4e3e577 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeUpPeakPublishStreamDataRequest.php @@ -0,0 +1,95 @@ + 'DomainName', + 'domainSwitch' => 'DomainSwitch', + 'endTime' => 'EndTime', + 'ownerId' => 'OwnerId', + 'startTime' => 'StartTime', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->domainSwitch) { + $res['DomainSwitch'] = $this->domainSwitch; + } + if (null !== $this->endTime) { + $res['EndTime'] = $this->endTime; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->startTime) { + $res['StartTime'] = $this->startTime; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeUpPeakPublishStreamDataRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['DomainSwitch'])) { + $model->domainSwitch = $map['DomainSwitch']; + } + if (isset($map['EndTime'])) { + $model->endTime = $map['EndTime']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['StartTime'])) { + $model->startTime = $map['StartTime']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeUpPeakPublishStreamDataResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeUpPeakPublishStreamDataResponse.php new file mode 100644 index 000000000..91a0006cf --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeUpPeakPublishStreamDataResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeUpPeakPublishStreamDataResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DescribeUpPeakPublishStreamDataResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeUpPeakPublishStreamDataResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeUpPeakPublishStreamDataResponseBody.php new file mode 100644 index 000000000..a2ff2aeb2 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeUpPeakPublishStreamDataResponseBody.php @@ -0,0 +1,60 @@ + 'DescribeUpPeakPublishStreamDatas', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->describeUpPeakPublishStreamDatas) { + $res['DescribeUpPeakPublishStreamDatas'] = null !== $this->describeUpPeakPublishStreamDatas ? $this->describeUpPeakPublishStreamDatas->toMap() : null; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DescribeUpPeakPublishStreamDataResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DescribeUpPeakPublishStreamDatas'])) { + $model->describeUpPeakPublishStreamDatas = describeUpPeakPublishStreamDatas::fromMap($map['DescribeUpPeakPublishStreamDatas']); + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeUpPeakPublishStreamDataResponseBody/describeUpPeakPublishStreamDatas.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeUpPeakPublishStreamDataResponseBody/describeUpPeakPublishStreamDatas.php new file mode 100644 index 000000000..a594c3b36 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeUpPeakPublishStreamDataResponseBody/describeUpPeakPublishStreamDatas.php @@ -0,0 +1,60 @@ + 'DescribeUpPeakPublishStreamData', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->describeUpPeakPublishStreamData) { + $res['DescribeUpPeakPublishStreamData'] = []; + if (null !== $this->describeUpPeakPublishStreamData && \is_array($this->describeUpPeakPublishStreamData)) { + $n = 0; + foreach ($this->describeUpPeakPublishStreamData as $item) { + $res['DescribeUpPeakPublishStreamData'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return describeUpPeakPublishStreamDatas + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DescribeUpPeakPublishStreamData'])) { + if (!empty($map['DescribeUpPeakPublishStreamData'])) { + $model->describeUpPeakPublishStreamData = []; + $n = 0; + foreach ($map['DescribeUpPeakPublishStreamData'] as $item) { + $model->describeUpPeakPublishStreamData[$n++] = null !== $item ? describeUpPeakPublishStreamData::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DescribeUpPeakPublishStreamDataResponseBody/describeUpPeakPublishStreamDatas/describeUpPeakPublishStreamData.php b/vendor/alibabacloud/live-20161101/src/Models/DescribeUpPeakPublishStreamDataResponseBody/describeUpPeakPublishStreamDatas/describeUpPeakPublishStreamData.php new file mode 100644 index 000000000..683bccef0 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DescribeUpPeakPublishStreamDataResponseBody/describeUpPeakPublishStreamDatas/describeUpPeakPublishStreamData.php @@ -0,0 +1,95 @@ + 'BandWidth', + 'peakTime' => 'PeakTime', + 'publishStreamNum' => 'PublishStreamNum', + 'queryTime' => 'QueryTime', + 'statName' => 'StatName', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->bandWidth) { + $res['BandWidth'] = $this->bandWidth; + } + if (null !== $this->peakTime) { + $res['PeakTime'] = $this->peakTime; + } + if (null !== $this->publishStreamNum) { + $res['PublishStreamNum'] = $this->publishStreamNum; + } + if (null !== $this->queryTime) { + $res['QueryTime'] = $this->queryTime; + } + if (null !== $this->statName) { + $res['StatName'] = $this->statName; + } + + return $res; + } + + /** + * @param array $map + * + * @return describeUpPeakPublishStreamData + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['BandWidth'])) { + $model->bandWidth = $map['BandWidth']; + } + if (isset($map['PeakTime'])) { + $model->peakTime = $map['PeakTime']; + } + if (isset($map['PublishStreamNum'])) { + $model->publishStreamNum = $map['PublishStreamNum']; + } + if (isset($map['QueryTime'])) { + $model->queryTime = $map['QueryTime']; + } + if (isset($map['StatName'])) { + $model->statName = $map['StatName']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DisableLiveRealtimeLogDeliveryRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DisableLiveRealtimeLogDeliveryRequest.php new file mode 100644 index 000000000..911a98185 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DisableLiveRealtimeLogDeliveryRequest.php @@ -0,0 +1,59 @@ + 'DomainName', + 'ownerId' => 'OwnerId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DisableLiveRealtimeLogDeliveryRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DisableLiveRealtimeLogDeliveryResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DisableLiveRealtimeLogDeliveryResponse.php new file mode 100644 index 000000000..e1944d12b --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DisableLiveRealtimeLogDeliveryResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DisableLiveRealtimeLogDeliveryResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DisableLiveRealtimeLogDeliveryResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DisableLiveRealtimeLogDeliveryResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DisableLiveRealtimeLogDeliveryResponseBody.php new file mode 100644 index 000000000..99e1aa175 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DisableLiveRealtimeLogDeliveryResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DisableLiveRealtimeLogDeliveryResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DynamicUpdateWaterMarkStreamRuleRequest.php b/vendor/alibabacloud/live-20161101/src/Models/DynamicUpdateWaterMarkStreamRuleRequest.php new file mode 100644 index 000000000..c09393ac9 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DynamicUpdateWaterMarkStreamRuleRequest.php @@ -0,0 +1,95 @@ + 'App', + 'domain' => 'Domain', + 'ownerId' => 'OwnerId', + 'stream' => 'Stream', + 'templateId' => 'TemplateId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->app) { + $res['App'] = $this->app; + } + if (null !== $this->domain) { + $res['Domain'] = $this->domain; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->stream) { + $res['Stream'] = $this->stream; + } + if (null !== $this->templateId) { + $res['TemplateId'] = $this->templateId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DynamicUpdateWaterMarkStreamRuleRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['App'])) { + $model->app = $map['App']; + } + if (isset($map['Domain'])) { + $model->domain = $map['Domain']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['Stream'])) { + $model->stream = $map['Stream']; + } + if (isset($map['TemplateId'])) { + $model->templateId = $map['TemplateId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DynamicUpdateWaterMarkStreamRuleResponse.php b/vendor/alibabacloud/live-20161101/src/Models/DynamicUpdateWaterMarkStreamRuleResponse.php new file mode 100644 index 000000000..451749497 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DynamicUpdateWaterMarkStreamRuleResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return DynamicUpdateWaterMarkStreamRuleResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = DynamicUpdateWaterMarkStreamRuleResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/DynamicUpdateWaterMarkStreamRuleResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/DynamicUpdateWaterMarkStreamRuleResponseBody.php new file mode 100644 index 000000000..b9d283acd --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/DynamicUpdateWaterMarkStreamRuleResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return DynamicUpdateWaterMarkStreamRuleResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/EditHtmlResourceRequest.php b/vendor/alibabacloud/live-20161101/src/Models/EditHtmlResourceRequest.php new file mode 100644 index 000000000..abe8793e5 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/EditHtmlResourceRequest.php @@ -0,0 +1,107 @@ + 'OwnerId', + 'htmlResourceId' => 'HtmlResourceId', + 'casterId' => 'CasterId', + 'htmlUrl' => 'HtmlUrl', + 'htmlContent' => 'htmlContent', + 'config' => 'Config', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->htmlResourceId) { + $res['HtmlResourceId'] = $this->htmlResourceId; + } + if (null !== $this->casterId) { + $res['CasterId'] = $this->casterId; + } + if (null !== $this->htmlUrl) { + $res['HtmlUrl'] = $this->htmlUrl; + } + if (null !== $this->htmlContent) { + $res['htmlContent'] = $this->htmlContent; + } + if (null !== $this->config) { + $res['Config'] = $this->config; + } + + return $res; + } + + /** + * @param array $map + * + * @return EditHtmlResourceRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['HtmlResourceId'])) { + $model->htmlResourceId = $map['HtmlResourceId']; + } + if (isset($map['CasterId'])) { + $model->casterId = $map['CasterId']; + } + if (isset($map['HtmlUrl'])) { + $model->htmlUrl = $map['HtmlUrl']; + } + if (isset($map['htmlContent'])) { + $model->htmlContent = $map['htmlContent']; + } + if (isset($map['Config'])) { + $model->config = $map['Config']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/EditHtmlResourceResponse.php b/vendor/alibabacloud/live-20161101/src/Models/EditHtmlResourceResponse.php new file mode 100644 index 000000000..42150df9c --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/EditHtmlResourceResponse.php @@ -0,0 +1,61 @@ + 'headers', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return EditHtmlResourceResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['body'])) { + $model->body = EditHtmlResourceResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/EditHtmlResourceResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/EditHtmlResourceResponseBody.php new file mode 100644 index 000000000..c460ccf37 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/EditHtmlResourceResponseBody.php @@ -0,0 +1,59 @@ + 'RequestId', + 'htmlResourceId' => 'HtmlResourceId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->htmlResourceId) { + $res['HtmlResourceId'] = $this->htmlResourceId; + } + + return $res; + } + + /** + * @param array $map + * + * @return EditHtmlResourceResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['HtmlResourceId'])) { + $model->htmlResourceId = $map['HtmlResourceId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/EditPlaylistRequest.php b/vendor/alibabacloud/live-20161101/src/Models/EditPlaylistRequest.php new file mode 100644 index 000000000..7ffde4272 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/EditPlaylistRequest.php @@ -0,0 +1,83 @@ + 'OwnerId', + 'programConfig' => 'ProgramConfig', + 'programId' => 'ProgramId', + 'programItems' => 'ProgramItems', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->programConfig) { + $res['ProgramConfig'] = $this->programConfig; + } + if (null !== $this->programId) { + $res['ProgramId'] = $this->programId; + } + if (null !== $this->programItems) { + $res['ProgramItems'] = $this->programItems; + } + + return $res; + } + + /** + * @param array $map + * + * @return EditPlaylistRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['ProgramConfig'])) { + $model->programConfig = $map['ProgramConfig']; + } + if (isset($map['ProgramId'])) { + $model->programId = $map['ProgramId']; + } + if (isset($map['ProgramItems'])) { + $model->programItems = $map['ProgramItems']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/EditPlaylistResponse.php b/vendor/alibabacloud/live-20161101/src/Models/EditPlaylistResponse.php new file mode 100644 index 000000000..fbe882d64 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/EditPlaylistResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return EditPlaylistResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = EditPlaylistResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/EditPlaylistResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/EditPlaylistResponseBody.php new file mode 100644 index 000000000..db1250a90 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/EditPlaylistResponseBody.php @@ -0,0 +1,84 @@ + 'CasterId', + 'items' => 'Items', + 'programId' => 'ProgramId', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->casterId) { + $res['CasterId'] = $this->casterId; + } + if (null !== $this->items) { + $res['Items'] = null !== $this->items ? $this->items->toMap() : null; + } + if (null !== $this->programId) { + $res['ProgramId'] = $this->programId; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return EditPlaylistResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CasterId'])) { + $model->casterId = $map['CasterId']; + } + if (isset($map['Items'])) { + $model->items = items::fromMap($map['Items']); + } + if (isset($map['ProgramId'])) { + $model->programId = $map['ProgramId']; + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/EditPlaylistResponseBody/items.php b/vendor/alibabacloud/live-20161101/src/Models/EditPlaylistResponseBody/items.php new file mode 100644 index 000000000..07a549afd --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/EditPlaylistResponseBody/items.php @@ -0,0 +1,85 @@ + 'FailedItems', + 'successItems' => 'SuccessItems', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->failedItems) { + $res['FailedItems'] = []; + if (null !== $this->failedItems && \is_array($this->failedItems)) { + $n = 0; + foreach ($this->failedItems as $item) { + $res['FailedItems'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + if (null !== $this->successItems) { + $res['SuccessItems'] = []; + if (null !== $this->successItems && \is_array($this->successItems)) { + $n = 0; + foreach ($this->successItems as $item) { + $res['SuccessItems'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return items + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['FailedItems'])) { + if (!empty($map['FailedItems'])) { + $model->failedItems = []; + $n = 0; + foreach ($map['FailedItems'] as $item) { + $model->failedItems[$n++] = null !== $item ? failedItems::fromMap($item) : $item; + } + } + } + if (isset($map['SuccessItems'])) { + if (!empty($map['SuccessItems'])) { + $model->successItems = []; + $n = 0; + foreach ($map['SuccessItems'] as $item) { + $model->successItems[$n++] = null !== $item ? successItems::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/EditPlaylistResponseBody/items/failedItems.php b/vendor/alibabacloud/live-20161101/src/Models/EditPlaylistResponseBody/items/failedItems.php new file mode 100644 index 000000000..b0afc979f --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/EditPlaylistResponseBody/items/failedItems.php @@ -0,0 +1,59 @@ + 'ItemId', + 'itemName' => 'ItemName', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->itemId) { + $res['ItemId'] = $this->itemId; + } + if (null !== $this->itemName) { + $res['ItemName'] = $this->itemName; + } + + return $res; + } + + /** + * @param array $map + * + * @return failedItems + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['ItemId'])) { + $model->itemId = $map['ItemId']; + } + if (isset($map['ItemName'])) { + $model->itemName = $map['ItemName']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/EditPlaylistResponseBody/items/successItems.php b/vendor/alibabacloud/live-20161101/src/Models/EditPlaylistResponseBody/items/successItems.php new file mode 100644 index 000000000..73375a484 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/EditPlaylistResponseBody/items/successItems.php @@ -0,0 +1,59 @@ + 'ItemId', + 'itemName' => 'ItemName', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->itemId) { + $res['ItemId'] = $this->itemId; + } + if (null !== $this->itemName) { + $res['ItemName'] = $this->itemName; + } + + return $res; + } + + /** + * @param array $map + * + * @return successItems + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['ItemId'])) { + $model->itemId = $map['ItemId']; + } + if (isset($map['ItemName'])) { + $model->itemName = $map['ItemName']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/EditShowAndReplaceRequest.php b/vendor/alibabacloud/live-20161101/src/Models/EditShowAndReplaceRequest.php new file mode 100644 index 000000000..1a53010b3 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/EditShowAndReplaceRequest.php @@ -0,0 +1,119 @@ + 'CasterId', + 'endTime' => 'EndTime', + 'ownerId' => 'OwnerId', + 'showId' => 'ShowId', + 'startTime' => 'StartTime', + 'storageInfo' => 'StorageInfo', + 'userData' => 'UserData', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->casterId) { + $res['CasterId'] = $this->casterId; + } + if (null !== $this->endTime) { + $res['EndTime'] = $this->endTime; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->showId) { + $res['ShowId'] = $this->showId; + } + if (null !== $this->startTime) { + $res['StartTime'] = $this->startTime; + } + if (null !== $this->storageInfo) { + $res['StorageInfo'] = $this->storageInfo; + } + if (null !== $this->userData) { + $res['UserData'] = $this->userData; + } + + return $res; + } + + /** + * @param array $map + * + * @return EditShowAndReplaceRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CasterId'])) { + $model->casterId = $map['CasterId']; + } + if (isset($map['EndTime'])) { + $model->endTime = $map['EndTime']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['ShowId'])) { + $model->showId = $map['ShowId']; + } + if (isset($map['StartTime'])) { + $model->startTime = $map['StartTime']; + } + if (isset($map['StorageInfo'])) { + $model->storageInfo = $map['StorageInfo']; + } + if (isset($map['UserData'])) { + $model->userData = $map['UserData']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/EditShowAndReplaceResponse.php b/vendor/alibabacloud/live-20161101/src/Models/EditShowAndReplaceResponse.php new file mode 100644 index 000000000..2dab93e74 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/EditShowAndReplaceResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return EditShowAndReplaceResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = EditShowAndReplaceResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/EditShowAndReplaceResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/EditShowAndReplaceResponseBody.php new file mode 100644 index 000000000..518e188be --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/EditShowAndReplaceResponseBody.php @@ -0,0 +1,59 @@ + 'JobInfo', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->jobInfo) { + $res['JobInfo'] = $this->jobInfo; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return EditShowAndReplaceResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['JobInfo'])) { + $model->jobInfo = $map['JobInfo']; + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/EffectCasterUrgentRequest.php b/vendor/alibabacloud/live-20161101/src/Models/EffectCasterUrgentRequest.php new file mode 100644 index 000000000..fa0825e64 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/EffectCasterUrgentRequest.php @@ -0,0 +1,71 @@ + 'CasterId', + 'ownerId' => 'OwnerId', + 'sceneId' => 'SceneId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->casterId) { + $res['CasterId'] = $this->casterId; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->sceneId) { + $res['SceneId'] = $this->sceneId; + } + + return $res; + } + + /** + * @param array $map + * + * @return EffectCasterUrgentRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CasterId'])) { + $model->casterId = $map['CasterId']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['SceneId'])) { + $model->sceneId = $map['SceneId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/EffectCasterUrgentResponse.php b/vendor/alibabacloud/live-20161101/src/Models/EffectCasterUrgentResponse.php new file mode 100644 index 000000000..78c5b52d6 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/EffectCasterUrgentResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return EffectCasterUrgentResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = EffectCasterUrgentResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/EffectCasterUrgentResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/EffectCasterUrgentResponseBody.php new file mode 100644 index 000000000..f55c77ba1 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/EffectCasterUrgentResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return EffectCasterUrgentResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/EffectCasterVideoResourceRequest.php b/vendor/alibabacloud/live-20161101/src/Models/EffectCasterVideoResourceRequest.php new file mode 100644 index 000000000..d6607fb3f --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/EffectCasterVideoResourceRequest.php @@ -0,0 +1,83 @@ + 'CasterId', + 'ownerId' => 'OwnerId', + 'resourceId' => 'ResourceId', + 'sceneId' => 'SceneId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->casterId) { + $res['CasterId'] = $this->casterId; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->resourceId) { + $res['ResourceId'] = $this->resourceId; + } + if (null !== $this->sceneId) { + $res['SceneId'] = $this->sceneId; + } + + return $res; + } + + /** + * @param array $map + * + * @return EffectCasterVideoResourceRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CasterId'])) { + $model->casterId = $map['CasterId']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['ResourceId'])) { + $model->resourceId = $map['ResourceId']; + } + if (isset($map['SceneId'])) { + $model->sceneId = $map['SceneId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/EffectCasterVideoResourceResponse.php b/vendor/alibabacloud/live-20161101/src/Models/EffectCasterVideoResourceResponse.php new file mode 100644 index 000000000..b031571a2 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/EffectCasterVideoResourceResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return EffectCasterVideoResourceResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = EffectCasterVideoResourceResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/EffectCasterVideoResourceResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/EffectCasterVideoResourceResponseBody.php new file mode 100644 index 000000000..d88f0ff4f --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/EffectCasterVideoResourceResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return EffectCasterVideoResourceResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/EnableLiveRealtimeLogDeliveryRequest.php b/vendor/alibabacloud/live-20161101/src/Models/EnableLiveRealtimeLogDeliveryRequest.php new file mode 100644 index 000000000..ec4df5b30 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/EnableLiveRealtimeLogDeliveryRequest.php @@ -0,0 +1,59 @@ + 'DomainName', + 'ownerId' => 'OwnerId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + return $res; + } + + /** + * @param array $map + * + * @return EnableLiveRealtimeLogDeliveryRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/EnableLiveRealtimeLogDeliveryResponse.php b/vendor/alibabacloud/live-20161101/src/Models/EnableLiveRealtimeLogDeliveryResponse.php new file mode 100644 index 000000000..96922f6dc --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/EnableLiveRealtimeLogDeliveryResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return EnableLiveRealtimeLogDeliveryResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = EnableLiveRealtimeLogDeliveryResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/EnableLiveRealtimeLogDeliveryResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/EnableLiveRealtimeLogDeliveryResponseBody.php new file mode 100644 index 000000000..e79c604ae --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/EnableLiveRealtimeLogDeliveryResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return EnableLiveRealtimeLogDeliveryResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/ForbidLiveStreamRequest.php b/vendor/alibabacloud/live-20161101/src/Models/ForbidLiveStreamRequest.php new file mode 100644 index 000000000..a5079f1cd --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/ForbidLiveStreamRequest.php @@ -0,0 +1,119 @@ + 'AppName', + 'domainName' => 'DomainName', + 'liveStreamType' => 'LiveStreamType', + 'oneshot' => 'Oneshot', + 'ownerId' => 'OwnerId', + 'resumeTime' => 'ResumeTime', + 'streamName' => 'StreamName', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->appName) { + $res['AppName'] = $this->appName; + } + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->liveStreamType) { + $res['LiveStreamType'] = $this->liveStreamType; + } + if (null !== $this->oneshot) { + $res['Oneshot'] = $this->oneshot; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->resumeTime) { + $res['ResumeTime'] = $this->resumeTime; + } + if (null !== $this->streamName) { + $res['StreamName'] = $this->streamName; + } + + return $res; + } + + /** + * @param array $map + * + * @return ForbidLiveStreamRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppName'])) { + $model->appName = $map['AppName']; + } + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['LiveStreamType'])) { + $model->liveStreamType = $map['LiveStreamType']; + } + if (isset($map['Oneshot'])) { + $model->oneshot = $map['Oneshot']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['ResumeTime'])) { + $model->resumeTime = $map['ResumeTime']; + } + if (isset($map['StreamName'])) { + $model->streamName = $map['StreamName']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/ForbidLiveStreamResponse.php b/vendor/alibabacloud/live-20161101/src/Models/ForbidLiveStreamResponse.php new file mode 100644 index 000000000..1367ad106 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/ForbidLiveStreamResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return ForbidLiveStreamResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = ForbidLiveStreamResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/ForbidLiveStreamResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/ForbidLiveStreamResponseBody.php new file mode 100644 index 000000000..6b75d2f41 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/ForbidLiveStreamResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return ForbidLiveStreamResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/ForbidPushStreamRequest.php b/vendor/alibabacloud/live-20161101/src/Models/ForbidPushStreamRequest.php new file mode 100644 index 000000000..01f6faf76 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/ForbidPushStreamRequest.php @@ -0,0 +1,95 @@ + 'AppId', + 'endTime' => 'EndTime', + 'ownerId' => 'OwnerId', + 'roomId' => 'RoomId', + 'userData' => 'UserData', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->appId) { + $res['AppId'] = $this->appId; + } + if (null !== $this->endTime) { + $res['EndTime'] = $this->endTime; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->roomId) { + $res['RoomId'] = $this->roomId; + } + if (null !== $this->userData) { + $res['UserData'] = $this->userData; + } + + return $res; + } + + /** + * @param array $map + * + * @return ForbidPushStreamRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppId'])) { + $model->appId = $map['AppId']; + } + if (isset($map['EndTime'])) { + $model->endTime = $map['EndTime']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['RoomId'])) { + $model->roomId = $map['RoomId']; + } + if (isset($map['UserData'])) { + $model->userData = $map['UserData']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/ForbidPushStreamResponse.php b/vendor/alibabacloud/live-20161101/src/Models/ForbidPushStreamResponse.php new file mode 100644 index 000000000..d0fbb4b9c --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/ForbidPushStreamResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return ForbidPushStreamResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = ForbidPushStreamResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/ForbidPushStreamResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/ForbidPushStreamResponseBody.php new file mode 100644 index 000000000..1e93263bf --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/ForbidPushStreamResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return ForbidPushStreamResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/GetAllCustomTemplatesRequest.php b/vendor/alibabacloud/live-20161101/src/Models/GetAllCustomTemplatesRequest.php new file mode 100644 index 000000000..e410a9334 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/GetAllCustomTemplatesRequest.php @@ -0,0 +1,59 @@ + 'OwnerId', + 'userId' => 'UserId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->userId) { + $res['UserId'] = $this->userId; + } + + return $res; + } + + /** + * @param array $map + * + * @return GetAllCustomTemplatesRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['UserId'])) { + $model->userId = $map['UserId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/GetAllCustomTemplatesResponse.php b/vendor/alibabacloud/live-20161101/src/Models/GetAllCustomTemplatesResponse.php new file mode 100644 index 000000000..3682d659a --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/GetAllCustomTemplatesResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return GetAllCustomTemplatesResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = GetAllCustomTemplatesResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/GetAllCustomTemplatesResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/GetAllCustomTemplatesResponseBody.php new file mode 100644 index 000000000..e4288a2db --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/GetAllCustomTemplatesResponseBody.php @@ -0,0 +1,59 @@ + 'CustomTemplates', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->customTemplates) { + $res['CustomTemplates'] = $this->customTemplates; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return GetAllCustomTemplatesResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CustomTemplates'])) { + $model->customTemplates = $map['CustomTemplates']; + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/GetCustomTemplateRequest.php b/vendor/alibabacloud/live-20161101/src/Models/GetCustomTemplateRequest.php new file mode 100644 index 000000000..a343b9758 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/GetCustomTemplateRequest.php @@ -0,0 +1,59 @@ + 'OwnerId', + 'template' => 'Template', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->template) { + $res['Template'] = $this->template; + } + + return $res; + } + + /** + * @param array $map + * + * @return GetCustomTemplateRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['Template'])) { + $model->template = $map['Template']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/GetCustomTemplateResponse.php b/vendor/alibabacloud/live-20161101/src/Models/GetCustomTemplateResponse.php new file mode 100644 index 000000000..22780e418 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/GetCustomTemplateResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return GetCustomTemplateResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = GetCustomTemplateResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/GetCustomTemplateResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/GetCustomTemplateResponseBody.php new file mode 100644 index 000000000..7c7100582 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/GetCustomTemplateResponseBody.php @@ -0,0 +1,71 @@ + 'CustomTemplate', + 'requestId' => 'RequestId', + 'template' => 'Template', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->customTemplate) { + $res['CustomTemplate'] = $this->customTemplate; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->template) { + $res['Template'] = $this->template; + } + + return $res; + } + + /** + * @param array $map + * + * @return GetCustomTemplateResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CustomTemplate'])) { + $model->customTemplate = $map['CustomTemplate']; + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['Template'])) { + $model->template = $map['Template']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/GetEditingJobInfoRequest.php b/vendor/alibabacloud/live-20161101/src/Models/GetEditingJobInfoRequest.php new file mode 100644 index 000000000..9010818ee --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/GetEditingJobInfoRequest.php @@ -0,0 +1,71 @@ + 'CasterId', + 'ownerId' => 'OwnerId', + 'showId' => 'ShowId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->casterId) { + $res['CasterId'] = $this->casterId; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->showId) { + $res['ShowId'] = $this->showId; + } + + return $res; + } + + /** + * @param array $map + * + * @return GetEditingJobInfoRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CasterId'])) { + $model->casterId = $map['CasterId']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['ShowId'])) { + $model->showId = $map['ShowId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/GetEditingJobInfoResponse.php b/vendor/alibabacloud/live-20161101/src/Models/GetEditingJobInfoResponse.php new file mode 100644 index 000000000..0e6d2ce8c --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/GetEditingJobInfoResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return GetEditingJobInfoResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = GetEditingJobInfoResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/GetEditingJobInfoResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/GetEditingJobInfoResponseBody.php new file mode 100644 index 000000000..2393b34c5 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/GetEditingJobInfoResponseBody.php @@ -0,0 +1,71 @@ + 'CasterId', + 'editingTasksInfo' => 'EditingTasksInfo', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->casterId) { + $res['CasterId'] = $this->casterId; + } + if (null !== $this->editingTasksInfo) { + $res['EditingTasksInfo'] = $this->editingTasksInfo; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return GetEditingJobInfoResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CasterId'])) { + $model->casterId = $map['CasterId']; + } + if (isset($map['EditingTasksInfo'])) { + $model->editingTasksInfo = $map['EditingTasksInfo']; + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/GetMessageAppRequest.php b/vendor/alibabacloud/live-20161101/src/Models/GetMessageAppRequest.php new file mode 100644 index 000000000..91a6a4981 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/GetMessageAppRequest.php @@ -0,0 +1,47 @@ + 'AppId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->appId) { + $res['AppId'] = $this->appId; + } + + return $res; + } + + /** + * @param array $map + * + * @return GetMessageAppRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppId'])) { + $model->appId = $map['AppId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/GetMessageAppResponse.php b/vendor/alibabacloud/live-20161101/src/Models/GetMessageAppResponse.php new file mode 100644 index 000000000..2cb244641 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/GetMessageAppResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return GetMessageAppResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = GetMessageAppResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/GetMessageAppResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/GetMessageAppResponseBody.php new file mode 100644 index 000000000..1dab6c235 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/GetMessageAppResponseBody.php @@ -0,0 +1,60 @@ + 'RequestId', + 'result' => 'Result', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->result) { + $res['Result'] = null !== $this->result ? $this->result->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return GetMessageAppResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['Result'])) { + $model->result = result::fromMap($map['Result']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/GetMessageAppResponseBody/result.php b/vendor/alibabacloud/live-20161101/src/Models/GetMessageAppResponseBody/result.php new file mode 100644 index 000000000..8f17e5ed2 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/GetMessageAppResponseBody/result.php @@ -0,0 +1,107 @@ + 'AppConfig', + 'appId' => 'AppId', + 'appName' => 'AppName', + 'createTime' => 'CreateTime', + 'extension' => 'Extension', + 'status' => 'Status', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->appConfig) { + $res['AppConfig'] = $this->appConfig; + } + if (null !== $this->appId) { + $res['AppId'] = $this->appId; + } + if (null !== $this->appName) { + $res['AppName'] = $this->appName; + } + if (null !== $this->createTime) { + $res['CreateTime'] = $this->createTime; + } + if (null !== $this->extension) { + $res['Extension'] = $this->extension; + } + if (null !== $this->status) { + $res['Status'] = $this->status; + } + + return $res; + } + + /** + * @param array $map + * + * @return result + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppConfig'])) { + $model->appConfig = $map['AppConfig']; + } + if (isset($map['AppId'])) { + $model->appId = $map['AppId']; + } + if (isset($map['AppName'])) { + $model->appName = $map['AppName']; + } + if (isset($map['CreateTime'])) { + $model->createTime = $map['CreateTime']; + } + if (isset($map['Extension'])) { + $model->extension = $map['Extension']; + } + if (isset($map['Status'])) { + $model->status = $map['Status']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/GetMessageGroupRequest.php b/vendor/alibabacloud/live-20161101/src/Models/GetMessageGroupRequest.php new file mode 100644 index 000000000..2ff7cfb92 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/GetMessageGroupRequest.php @@ -0,0 +1,59 @@ + 'AppId', + 'groupId' => 'GroupId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->appId) { + $res['AppId'] = $this->appId; + } + if (null !== $this->groupId) { + $res['GroupId'] = $this->groupId; + } + + return $res; + } + + /** + * @param array $map + * + * @return GetMessageGroupRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppId'])) { + $model->appId = $map['AppId']; + } + if (isset($map['GroupId'])) { + $model->groupId = $map['GroupId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/GetMessageGroupResponse.php b/vendor/alibabacloud/live-20161101/src/Models/GetMessageGroupResponse.php new file mode 100644 index 000000000..09b598964 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/GetMessageGroupResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return GetMessageGroupResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = GetMessageGroupResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/GetMessageGroupResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/GetMessageGroupResponseBody.php new file mode 100644 index 000000000..52ccc479c --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/GetMessageGroupResponseBody.php @@ -0,0 +1,60 @@ + 'RequestId', + 'result' => 'Result', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->result) { + $res['Result'] = null !== $this->result ? $this->result->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return GetMessageGroupResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['Result'])) { + $model->result = result::fromMap($map['Result']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/GetMessageGroupResponseBody/result.php b/vendor/alibabacloud/live-20161101/src/Models/GetMessageGroupResponseBody/result.php new file mode 100644 index 000000000..39cecf097 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/GetMessageGroupResponseBody/result.php @@ -0,0 +1,107 @@ + 'CreateTime', + 'creatorId' => 'CreatorId', + 'extension' => 'Extension', + 'groupId' => 'GroupId', + 'isMuteAll' => 'IsMuteAll', + 'status' => 'Status', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->createTime) { + $res['CreateTime'] = $this->createTime; + } + if (null !== $this->creatorId) { + $res['CreatorId'] = $this->creatorId; + } + if (null !== $this->extension) { + $res['Extension'] = $this->extension; + } + if (null !== $this->groupId) { + $res['GroupId'] = $this->groupId; + } + if (null !== $this->isMuteAll) { + $res['IsMuteAll'] = $this->isMuteAll; + } + if (null !== $this->status) { + $res['Status'] = $this->status; + } + + return $res; + } + + /** + * @param array $map + * + * @return result + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CreateTime'])) { + $model->createTime = $map['CreateTime']; + } + if (isset($map['CreatorId'])) { + $model->creatorId = $map['CreatorId']; + } + if (isset($map['Extension'])) { + $model->extension = $map['Extension']; + } + if (isset($map['GroupId'])) { + $model->groupId = $map['GroupId']; + } + if (isset($map['IsMuteAll'])) { + $model->isMuteAll = $map['IsMuteAll']; + } + if (isset($map['Status'])) { + $model->status = $map['Status']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/GetMessageTokenRequest.php b/vendor/alibabacloud/live-20161101/src/Models/GetMessageTokenRequest.php new file mode 100644 index 000000000..2b34faae0 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/GetMessageTokenRequest.php @@ -0,0 +1,83 @@ + 'AppId', + 'deviceId' => 'DeviceId', + 'deviceType' => 'DeviceType', + 'userId' => 'UserId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->appId) { + $res['AppId'] = $this->appId; + } + if (null !== $this->deviceId) { + $res['DeviceId'] = $this->deviceId; + } + if (null !== $this->deviceType) { + $res['DeviceType'] = $this->deviceType; + } + if (null !== $this->userId) { + $res['UserId'] = $this->userId; + } + + return $res; + } + + /** + * @param array $map + * + * @return GetMessageTokenRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppId'])) { + $model->appId = $map['AppId']; + } + if (isset($map['DeviceId'])) { + $model->deviceId = $map['DeviceId']; + } + if (isset($map['DeviceType'])) { + $model->deviceType = $map['DeviceType']; + } + if (isset($map['UserId'])) { + $model->userId = $map['UserId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/GetMessageTokenResponse.php b/vendor/alibabacloud/live-20161101/src/Models/GetMessageTokenResponse.php new file mode 100644 index 000000000..fe383ec5a --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/GetMessageTokenResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return GetMessageTokenResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = GetMessageTokenResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/GetMessageTokenResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/GetMessageTokenResponseBody.php new file mode 100644 index 000000000..8d2bc6054 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/GetMessageTokenResponseBody.php @@ -0,0 +1,60 @@ + 'RequestId', + 'result' => 'Result', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->result) { + $res['Result'] = null !== $this->result ? $this->result->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return GetMessageTokenResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['Result'])) { + $model->result = result::fromMap($map['Result']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/GetMessageTokenResponseBody/result.php b/vendor/alibabacloud/live-20161101/src/Models/GetMessageTokenResponseBody/result.php new file mode 100644 index 000000000..1bc48630e --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/GetMessageTokenResponseBody/result.php @@ -0,0 +1,71 @@ + 'AccessToken', + 'accessTokenExpiredTime' => 'AccessTokenExpiredTime', + 'refreshToken' => 'RefreshToken', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->accessToken) { + $res['AccessToken'] = $this->accessToken; + } + if (null !== $this->accessTokenExpiredTime) { + $res['AccessTokenExpiredTime'] = $this->accessTokenExpiredTime; + } + if (null !== $this->refreshToken) { + $res['RefreshToken'] = $this->refreshToken; + } + + return $res; + } + + /** + * @param array $map + * + * @return result + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AccessToken'])) { + $model->accessToken = $map['AccessToken']; + } + if (isset($map['AccessTokenExpiredTime'])) { + $model->accessTokenExpiredTime = $map['AccessTokenExpiredTime']; + } + if (isset($map['RefreshToken'])) { + $model->refreshToken = $map['RefreshToken']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/GetMessageUserInfoRequest.php b/vendor/alibabacloud/live-20161101/src/Models/GetMessageUserInfoRequest.php new file mode 100644 index 000000000..d60ecb1b6 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/GetMessageUserInfoRequest.php @@ -0,0 +1,47 @@ + 'CloudUid', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->cloudUid) { + $res['CloudUid'] = $this->cloudUid; + } + + return $res; + } + + /** + * @param array $map + * + * @return GetMessageUserInfoRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CloudUid'])) { + $model->cloudUid = $map['CloudUid']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/GetMessageUserInfoResponse.php b/vendor/alibabacloud/live-20161101/src/Models/GetMessageUserInfoResponse.php new file mode 100644 index 000000000..51b7cfde3 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/GetMessageUserInfoResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return GetMessageUserInfoResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = GetMessageUserInfoResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/GetMessageUserInfoResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/GetMessageUserInfoResponseBody.php new file mode 100644 index 000000000..cfa4a4a88 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/GetMessageUserInfoResponseBody.php @@ -0,0 +1,60 @@ + 'RequestId', + 'result' => 'Result', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->result) { + $res['Result'] = null !== $this->result ? $this->result->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return GetMessageUserInfoResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['Result'])) { + $model->result = result::fromMap($map['Result']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/GetMessageUserInfoResponseBody/result.php b/vendor/alibabacloud/live-20161101/src/Models/GetMessageUserInfoResponseBody/result.php new file mode 100644 index 000000000..f4ff4a41e --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/GetMessageUserInfoResponseBody/result.php @@ -0,0 +1,59 @@ + 'HasOrderedIM', + 'isNewIMUser' => 'IsNewIMUser', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->hasOrderedIM) { + $res['HasOrderedIM'] = $this->hasOrderedIM; + } + if (null !== $this->isNewIMUser) { + $res['IsNewIMUser'] = $this->isNewIMUser; + } + + return $res; + } + + /** + * @param array $map + * + * @return result + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['HasOrderedIM'])) { + $model->hasOrderedIM = $map['HasOrderedIM']; + } + if (isset($map['IsNewIMUser'])) { + $model->isNewIMUser = $map['IsNewIMUser']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/GetMultiRateConfigListRequest.php b/vendor/alibabacloud/live-20161101/src/Models/GetMultiRateConfigListRequest.php new file mode 100644 index 000000000..f253e323c --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/GetMultiRateConfigListRequest.php @@ -0,0 +1,59 @@ + 'DomainName', + 'ownerId' => 'OwnerId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + return $res; + } + + /** + * @param array $map + * + * @return GetMultiRateConfigListRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/GetMultiRateConfigListResponse.php b/vendor/alibabacloud/live-20161101/src/Models/GetMultiRateConfigListResponse.php new file mode 100644 index 000000000..e6a6d43e7 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/GetMultiRateConfigListResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return GetMultiRateConfigListResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = GetMultiRateConfigListResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/GetMultiRateConfigListResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/GetMultiRateConfigListResponseBody.php new file mode 100644 index 000000000..1e75aa058 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/GetMultiRateConfigListResponseBody.php @@ -0,0 +1,84 @@ + 'Code', + 'groupInfo' => 'GroupInfo', + 'message' => 'Message', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->code) { + $res['Code'] = $this->code; + } + if (null !== $this->groupInfo) { + $res['GroupInfo'] = null !== $this->groupInfo ? $this->groupInfo->toMap() : null; + } + if (null !== $this->message) { + $res['Message'] = $this->message; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return GetMultiRateConfigListResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Code'])) { + $model->code = $map['Code']; + } + if (isset($map['GroupInfo'])) { + $model->groupInfo = groupInfo::fromMap($map['GroupInfo']); + } + if (isset($map['Message'])) { + $model->message = $map['Message']; + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/GetMultiRateConfigListResponseBody/groupInfo.php b/vendor/alibabacloud/live-20161101/src/Models/GetMultiRateConfigListResponseBody/groupInfo.php new file mode 100644 index 000000000..8a9985089 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/GetMultiRateConfigListResponseBody/groupInfo.php @@ -0,0 +1,60 @@ + 'Info', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->info) { + $res['Info'] = []; + if (null !== $this->info && \is_array($this->info)) { + $n = 0; + foreach ($this->info as $item) { + $res['Info'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return groupInfo + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Info'])) { + if (!empty($map['Info'])) { + $model->info = []; + $n = 0; + foreach ($map['Info'] as $item) { + $model->info[$n++] = null !== $item ? info::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/GetMultiRateConfigListResponseBody/groupInfo/info.php b/vendor/alibabacloud/live-20161101/src/Models/GetMultiRateConfigListResponseBody/groupInfo/info.php new file mode 100644 index 000000000..84d4d9c69 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/GetMultiRateConfigListResponseBody/groupInfo/info.php @@ -0,0 +1,83 @@ + 'App', + 'avFormat' => 'AvFormat', + 'count' => 'Count', + 'groupId' => 'GroupId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->app) { + $res['App'] = $this->app; + } + if (null !== $this->avFormat) { + $res['AvFormat'] = $this->avFormat; + } + if (null !== $this->count) { + $res['Count'] = $this->count; + } + if (null !== $this->groupId) { + $res['GroupId'] = $this->groupId; + } + + return $res; + } + + /** + * @param array $map + * + * @return info + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['App'])) { + $model->app = $map['App']; + } + if (isset($map['AvFormat'])) { + $model->avFormat = $map['AvFormat']; + } + if (isset($map['Count'])) { + $model->count = $map['Count']; + } + if (isset($map['GroupId'])) { + $model->groupId = $map['GroupId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/GetMultiRateConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/GetMultiRateConfigRequest.php new file mode 100644 index 000000000..a16d5e936 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/GetMultiRateConfigRequest.php @@ -0,0 +1,83 @@ + 'App', + 'domainName' => 'DomainName', + 'groupId' => 'GroupId', + 'ownerId' => 'OwnerId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->app) { + $res['App'] = $this->app; + } + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->groupId) { + $res['GroupId'] = $this->groupId; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + return $res; + } + + /** + * @param array $map + * + * @return GetMultiRateConfigRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['App'])) { + $model->app = $map['App']; + } + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['GroupId'])) { + $model->groupId = $map['GroupId']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/GetMultiRateConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/GetMultiRateConfigResponse.php new file mode 100644 index 000000000..2bb1acb1b --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/GetMultiRateConfigResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return GetMultiRateConfigResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = GetMultiRateConfigResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/GetMultiRateConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/GetMultiRateConfigResponseBody.php new file mode 100644 index 000000000..d99dbec3a --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/GetMultiRateConfigResponseBody.php @@ -0,0 +1,168 @@ + 'App', + 'avFormat' => 'AvFormat', + 'code' => 'Code', + 'domain' => 'Domain', + 'groupId' => 'GroupId', + 'isLazy' => 'IsLazy', + 'isTimeAlign' => 'IsTimeAlign', + 'message' => 'Message', + 'requestId' => 'RequestId', + 'stream' => 'Stream', + 'templatesInfo' => 'TemplatesInfo', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->app) { + $res['App'] = $this->app; + } + if (null !== $this->avFormat) { + $res['AvFormat'] = $this->avFormat; + } + if (null !== $this->code) { + $res['Code'] = $this->code; + } + if (null !== $this->domain) { + $res['Domain'] = $this->domain; + } + if (null !== $this->groupId) { + $res['GroupId'] = $this->groupId; + } + if (null !== $this->isLazy) { + $res['IsLazy'] = $this->isLazy; + } + if (null !== $this->isTimeAlign) { + $res['IsTimeAlign'] = $this->isTimeAlign; + } + if (null !== $this->message) { + $res['Message'] = $this->message; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->stream) { + $res['Stream'] = $this->stream; + } + if (null !== $this->templatesInfo) { + $res['TemplatesInfo'] = null !== $this->templatesInfo ? $this->templatesInfo->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return GetMultiRateConfigResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['App'])) { + $model->app = $map['App']; + } + if (isset($map['AvFormat'])) { + $model->avFormat = $map['AvFormat']; + } + if (isset($map['Code'])) { + $model->code = $map['Code']; + } + if (isset($map['Domain'])) { + $model->domain = $map['Domain']; + } + if (isset($map['GroupId'])) { + $model->groupId = $map['GroupId']; + } + if (isset($map['IsLazy'])) { + $model->isLazy = $map['IsLazy']; + } + if (isset($map['IsTimeAlign'])) { + $model->isTimeAlign = $map['IsTimeAlign']; + } + if (isset($map['Message'])) { + $model->message = $map['Message']; + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['Stream'])) { + $model->stream = $map['Stream']; + } + if (isset($map['TemplatesInfo'])) { + $model->templatesInfo = templatesInfo::fromMap($map['TemplatesInfo']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/GetMultiRateConfigResponseBody/templatesInfo.php b/vendor/alibabacloud/live-20161101/src/Models/GetMultiRateConfigResponseBody/templatesInfo.php new file mode 100644 index 000000000..370b72698 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/GetMultiRateConfigResponseBody/templatesInfo.php @@ -0,0 +1,60 @@ + 'Detail', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->detail) { + $res['Detail'] = []; + if (null !== $this->detail && \is_array($this->detail)) { + $n = 0; + foreach ($this->detail as $item) { + $res['Detail'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return templatesInfo + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Detail'])) { + if (!empty($map['Detail'])) { + $model->detail = []; + $n = 0; + foreach ($map['Detail'] as $item) { + $model->detail[$n++] = null !== $item ? detail::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/GetMultiRateConfigResponseBody/templatesInfo/detail.php b/vendor/alibabacloud/live-20161101/src/Models/GetMultiRateConfigResponseBody/templatesInfo/detail.php new file mode 100644 index 000000000..23fb09036 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/GetMultiRateConfigResponseBody/templatesInfo/detail.php @@ -0,0 +1,203 @@ + 'AudioBitrate', + 'audioChannelNum' => 'AudioChannelNum', + 'audioCodec' => 'AudioCodec', + 'audioProfile' => 'AudioProfile', + 'audioRate' => 'AudioRate', + 'bandWidth' => 'BandWidth', + 'fps' => 'Fps', + 'gop' => 'Gop', + 'height' => 'Height', + 'profile' => 'Profile', + 'template' => 'Template', + 'templateType' => 'TemplateType', + 'videoBitrate' => 'VideoBitrate', + 'width' => 'Width', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->audioBitrate) { + $res['AudioBitrate'] = $this->audioBitrate; + } + if (null !== $this->audioChannelNum) { + $res['AudioChannelNum'] = $this->audioChannelNum; + } + if (null !== $this->audioCodec) { + $res['AudioCodec'] = $this->audioCodec; + } + if (null !== $this->audioProfile) { + $res['AudioProfile'] = $this->audioProfile; + } + if (null !== $this->audioRate) { + $res['AudioRate'] = $this->audioRate; + } + if (null !== $this->bandWidth) { + $res['BandWidth'] = $this->bandWidth; + } + if (null !== $this->fps) { + $res['Fps'] = $this->fps; + } + if (null !== $this->gop) { + $res['Gop'] = $this->gop; + } + if (null !== $this->height) { + $res['Height'] = $this->height; + } + if (null !== $this->profile) { + $res['Profile'] = $this->profile; + } + if (null !== $this->template) { + $res['Template'] = $this->template; + } + if (null !== $this->templateType) { + $res['TemplateType'] = $this->templateType; + } + if (null !== $this->videoBitrate) { + $res['VideoBitrate'] = $this->videoBitrate; + } + if (null !== $this->width) { + $res['Width'] = $this->width; + } + + return $res; + } + + /** + * @param array $map + * + * @return detail + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AudioBitrate'])) { + $model->audioBitrate = $map['AudioBitrate']; + } + if (isset($map['AudioChannelNum'])) { + $model->audioChannelNum = $map['AudioChannelNum']; + } + if (isset($map['AudioCodec'])) { + $model->audioCodec = $map['AudioCodec']; + } + if (isset($map['AudioProfile'])) { + $model->audioProfile = $map['AudioProfile']; + } + if (isset($map['AudioRate'])) { + $model->audioRate = $map['AudioRate']; + } + if (isset($map['BandWidth'])) { + $model->bandWidth = $map['BandWidth']; + } + if (isset($map['Fps'])) { + $model->fps = $map['Fps']; + } + if (isset($map['Gop'])) { + $model->gop = $map['Gop']; + } + if (isset($map['Height'])) { + $model->height = $map['Height']; + } + if (isset($map['Profile'])) { + $model->profile = $map['Profile']; + } + if (isset($map['Template'])) { + $model->template = $map['Template']; + } + if (isset($map['TemplateType'])) { + $model->templateType = $map['TemplateType']; + } + if (isset($map['VideoBitrate'])) { + $model->videoBitrate = $map['VideoBitrate']; + } + if (isset($map['Width'])) { + $model->width = $map['Width']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/HotLiveRtcStreamRequest.php b/vendor/alibabacloud/live-20161101/src/Models/HotLiveRtcStreamRequest.php new file mode 100644 index 000000000..5a22a67c8 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/HotLiveRtcStreamRequest.php @@ -0,0 +1,143 @@ + 'AppName', + 'audioMsid' => 'AudioMsid', + 'connectionTimeout' => 'ConnectionTimeout', + 'domainName' => 'DomainName', + 'mediaTimeout' => 'MediaTimeout', + 'ownerId' => 'OwnerId', + 'regionCode' => 'RegionCode', + 'streamName' => 'StreamName', + 'videoMsid' => 'VideoMsid', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->appName) { + $res['AppName'] = $this->appName; + } + if (null !== $this->audioMsid) { + $res['AudioMsid'] = $this->audioMsid; + } + if (null !== $this->connectionTimeout) { + $res['ConnectionTimeout'] = $this->connectionTimeout; + } + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->mediaTimeout) { + $res['MediaTimeout'] = $this->mediaTimeout; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->regionCode) { + $res['RegionCode'] = $this->regionCode; + } + if (null !== $this->streamName) { + $res['StreamName'] = $this->streamName; + } + if (null !== $this->videoMsid) { + $res['VideoMsid'] = $this->videoMsid; + } + + return $res; + } + + /** + * @param array $map + * + * @return HotLiveRtcStreamRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppName'])) { + $model->appName = $map['AppName']; + } + if (isset($map['AudioMsid'])) { + $model->audioMsid = $map['AudioMsid']; + } + if (isset($map['ConnectionTimeout'])) { + $model->connectionTimeout = $map['ConnectionTimeout']; + } + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['MediaTimeout'])) { + $model->mediaTimeout = $map['MediaTimeout']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['RegionCode'])) { + $model->regionCode = $map['RegionCode']; + } + if (isset($map['StreamName'])) { + $model->streamName = $map['StreamName']; + } + if (isset($map['VideoMsid'])) { + $model->videoMsid = $map['VideoMsid']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/HotLiveRtcStreamResponse.php b/vendor/alibabacloud/live-20161101/src/Models/HotLiveRtcStreamResponse.php new file mode 100644 index 000000000..34519e653 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/HotLiveRtcStreamResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return HotLiveRtcStreamResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = HotLiveRtcStreamResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/HotLiveRtcStreamResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/HotLiveRtcStreamResponseBody.php new file mode 100644 index 000000000..cf572b9e5 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/HotLiveRtcStreamResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return HotLiveRtcStreamResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/InitializeAutoShowListTaskRequest.php b/vendor/alibabacloud/live-20161101/src/Models/InitializeAutoShowListTaskRequest.php new file mode 100644 index 000000000..66fe87b08 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/InitializeAutoShowListTaskRequest.php @@ -0,0 +1,119 @@ + 'CallBackUrl', + 'casterConfig' => 'CasterConfig', + 'domainName' => 'DomainName', + 'endTime' => 'EndTime', + 'ownerId' => 'OwnerId', + 'resourceIds' => 'ResourceIds', + 'startTime' => 'StartTime', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->callBackUrl) { + $res['CallBackUrl'] = $this->callBackUrl; + } + if (null !== $this->casterConfig) { + $res['CasterConfig'] = $this->casterConfig; + } + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->endTime) { + $res['EndTime'] = $this->endTime; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->resourceIds) { + $res['ResourceIds'] = $this->resourceIds; + } + if (null !== $this->startTime) { + $res['StartTime'] = $this->startTime; + } + + return $res; + } + + /** + * @param array $map + * + * @return InitializeAutoShowListTaskRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CallBackUrl'])) { + $model->callBackUrl = $map['CallBackUrl']; + } + if (isset($map['CasterConfig'])) { + $model->casterConfig = $map['CasterConfig']; + } + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['EndTime'])) { + $model->endTime = $map['EndTime']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['ResourceIds'])) { + $model->resourceIds = $map['ResourceIds']; + } + if (isset($map['StartTime'])) { + $model->startTime = $map['StartTime']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/InitializeAutoShowListTaskResponse.php b/vendor/alibabacloud/live-20161101/src/Models/InitializeAutoShowListTaskResponse.php new file mode 100644 index 000000000..86ccf7f3c --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/InitializeAutoShowListTaskResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return InitializeAutoShowListTaskResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = InitializeAutoShowListTaskResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/InitializeAutoShowListTaskResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/InitializeAutoShowListTaskResponseBody.php new file mode 100644 index 000000000..69daeb52a --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/InitializeAutoShowListTaskResponseBody.php @@ -0,0 +1,71 @@ + 'CasterId', + 'requestId' => 'RequestId', + 'streamList' => 'StreamList', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->casterId) { + $res['CasterId'] = $this->casterId; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->streamList) { + $res['StreamList'] = $this->streamList; + } + + return $res; + } + + /** + * @param array $map + * + * @return InitializeAutoShowListTaskResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CasterId'])) { + $model->casterId = $map['CasterId']; + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['StreamList'])) { + $model->streamList = $map['StreamList']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/JoinBoardRequest.php b/vendor/alibabacloud/live-20161101/src/Models/JoinBoardRequest.php new file mode 100644 index 000000000..5991ec656 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/JoinBoardRequest.php @@ -0,0 +1,83 @@ + 'OwnerId', + 'appId' => 'AppId', + 'appUid' => 'AppUid', + 'boardId' => 'BoardId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->appId) { + $res['AppId'] = $this->appId; + } + if (null !== $this->appUid) { + $res['AppUid'] = $this->appUid; + } + if (null !== $this->boardId) { + $res['BoardId'] = $this->boardId; + } + + return $res; + } + + /** + * @param array $map + * + * @return JoinBoardRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['AppId'])) { + $model->appId = $map['AppId']; + } + if (isset($map['AppUid'])) { + $model->appUid = $map['AppUid']; + } + if (isset($map['BoardId'])) { + $model->boardId = $map['BoardId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/JoinBoardResponse.php b/vendor/alibabacloud/live-20161101/src/Models/JoinBoardResponse.php new file mode 100644 index 000000000..17d1427a9 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/JoinBoardResponse.php @@ -0,0 +1,61 @@ + 'headers', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return JoinBoardResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['body'])) { + $model->body = JoinBoardResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/JoinBoardResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/JoinBoardResponseBody.php new file mode 100644 index 000000000..8558be83c --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/JoinBoardResponseBody.php @@ -0,0 +1,107 @@ + 'BoardId', + 'requestId' => 'RequestId', + 'token' => 'Token', + 'topicId' => 'TopicId', + 'keepaliveTopic' => 'KeepaliveTopic', + 'keepaliveInterval' => 'KeepaliveInterval', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->boardId) { + $res['BoardId'] = $this->boardId; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->token) { + $res['Token'] = $this->token; + } + if (null !== $this->topicId) { + $res['TopicId'] = $this->topicId; + } + if (null !== $this->keepaliveTopic) { + $res['KeepaliveTopic'] = $this->keepaliveTopic; + } + if (null !== $this->keepaliveInterval) { + $res['KeepaliveInterval'] = $this->keepaliveInterval; + } + + return $res; + } + + /** + * @param array $map + * + * @return JoinBoardResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['BoardId'])) { + $model->boardId = $map['BoardId']; + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['Token'])) { + $model->token = $map['Token']; + } + if (isset($map['TopicId'])) { + $model->topicId = $map['TopicId']; + } + if (isset($map['KeepaliveTopic'])) { + $model->keepaliveTopic = $map['KeepaliveTopic']; + } + if (isset($map['KeepaliveInterval'])) { + $model->keepaliveInterval = $map['KeepaliveInterval']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/JoinMessageGroupRequest.php b/vendor/alibabacloud/live-20161101/src/Models/JoinMessageGroupRequest.php new file mode 100644 index 000000000..4c3c1957c --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/JoinMessageGroupRequest.php @@ -0,0 +1,95 @@ + 'AppId', + 'broadCastStatistics' => 'BroadCastStatistics', + 'broadCastType' => 'BroadCastType', + 'groupId' => 'GroupId', + 'userId' => 'UserId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->appId) { + $res['AppId'] = $this->appId; + } + if (null !== $this->broadCastStatistics) { + $res['BroadCastStatistics'] = $this->broadCastStatistics; + } + if (null !== $this->broadCastType) { + $res['BroadCastType'] = $this->broadCastType; + } + if (null !== $this->groupId) { + $res['GroupId'] = $this->groupId; + } + if (null !== $this->userId) { + $res['UserId'] = $this->userId; + } + + return $res; + } + + /** + * @param array $map + * + * @return JoinMessageGroupRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppId'])) { + $model->appId = $map['AppId']; + } + if (isset($map['BroadCastStatistics'])) { + $model->broadCastStatistics = $map['BroadCastStatistics']; + } + if (isset($map['BroadCastType'])) { + $model->broadCastType = $map['BroadCastType']; + } + if (isset($map['GroupId'])) { + $model->groupId = $map['GroupId']; + } + if (isset($map['UserId'])) { + $model->userId = $map['UserId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/JoinMessageGroupResponse.php b/vendor/alibabacloud/live-20161101/src/Models/JoinMessageGroupResponse.php new file mode 100644 index 000000000..681c07f71 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/JoinMessageGroupResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return JoinMessageGroupResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = JoinMessageGroupResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/JoinMessageGroupResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/JoinMessageGroupResponseBody.php new file mode 100644 index 000000000..78080c66f --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/JoinMessageGroupResponseBody.php @@ -0,0 +1,60 @@ + 'RequestId', + 'result' => 'Result', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->result) { + $res['Result'] = null !== $this->result ? $this->result->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return JoinMessageGroupResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['Result'])) { + $model->result = result::fromMap($map['Result']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/JoinMessageGroupResponseBody/result.php b/vendor/alibabacloud/live-20161101/src/Models/JoinMessageGroupResponseBody/result.php new file mode 100644 index 000000000..42f4ef806 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/JoinMessageGroupResponseBody/result.php @@ -0,0 +1,47 @@ + 'Success', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->success) { + $res['Success'] = $this->success; + } + + return $res; + } + + /** + * @param array $map + * + * @return result + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Success'])) { + $model->success = $map['Success']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/LeaveMessageGroupRequest.php b/vendor/alibabacloud/live-20161101/src/Models/LeaveMessageGroupRequest.php new file mode 100644 index 000000000..8d49dfec1 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/LeaveMessageGroupRequest.php @@ -0,0 +1,95 @@ + 'AppId', + 'broadCastStatistics' => 'BroadCastStatistics', + 'broadCastType' => 'BroadCastType', + 'groupId' => 'GroupId', + 'userId' => 'UserId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->appId) { + $res['AppId'] = $this->appId; + } + if (null !== $this->broadCastStatistics) { + $res['BroadCastStatistics'] = $this->broadCastStatistics; + } + if (null !== $this->broadCastType) { + $res['BroadCastType'] = $this->broadCastType; + } + if (null !== $this->groupId) { + $res['GroupId'] = $this->groupId; + } + if (null !== $this->userId) { + $res['UserId'] = $this->userId; + } + + return $res; + } + + /** + * @param array $map + * + * @return LeaveMessageGroupRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppId'])) { + $model->appId = $map['AppId']; + } + if (isset($map['BroadCastStatistics'])) { + $model->broadCastStatistics = $map['BroadCastStatistics']; + } + if (isset($map['BroadCastType'])) { + $model->broadCastType = $map['BroadCastType']; + } + if (isset($map['GroupId'])) { + $model->groupId = $map['GroupId']; + } + if (isset($map['UserId'])) { + $model->userId = $map['UserId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/LeaveMessageGroupResponse.php b/vendor/alibabacloud/live-20161101/src/Models/LeaveMessageGroupResponse.php new file mode 100644 index 000000000..d999335ca --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/LeaveMessageGroupResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return LeaveMessageGroupResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = LeaveMessageGroupResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/LeaveMessageGroupResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/LeaveMessageGroupResponseBody.php new file mode 100644 index 000000000..e376b551a --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/LeaveMessageGroupResponseBody.php @@ -0,0 +1,60 @@ + 'RequestId', + 'result' => 'Result', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->result) { + $res['Result'] = null !== $this->result ? $this->result->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return LeaveMessageGroupResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['Result'])) { + $model->result = result::fromMap($map['Result']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/LeaveMessageGroupResponseBody/result.php b/vendor/alibabacloud/live-20161101/src/Models/LeaveMessageGroupResponseBody/result.php new file mode 100644 index 000000000..4a77edd56 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/LeaveMessageGroupResponseBody/result.php @@ -0,0 +1,47 @@ + 'Success', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->success) { + $res['Success'] = $this->success; + } + + return $res; + } + + /** + * @param array $map + * + * @return result + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Success'])) { + $model->success = $map['Success']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/ListLiveRealtimeLogDeliveryDomainsRequest.php b/vendor/alibabacloud/live-20161101/src/Models/ListLiveRealtimeLogDeliveryDomainsRequest.php new file mode 100644 index 000000000..1069a432c --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/ListLiveRealtimeLogDeliveryDomainsRequest.php @@ -0,0 +1,83 @@ + 'Logstore', + 'ownerId' => 'OwnerId', + 'project' => 'Project', + 'region' => 'Region', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->logstore) { + $res['Logstore'] = $this->logstore; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->project) { + $res['Project'] = $this->project; + } + if (null !== $this->region) { + $res['Region'] = $this->region; + } + + return $res; + } + + /** + * @param array $map + * + * @return ListLiveRealtimeLogDeliveryDomainsRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Logstore'])) { + $model->logstore = $map['Logstore']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['Project'])) { + $model->project = $map['Project']; + } + if (isset($map['Region'])) { + $model->region = $map['Region']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/ListLiveRealtimeLogDeliveryDomainsResponse.php b/vendor/alibabacloud/live-20161101/src/Models/ListLiveRealtimeLogDeliveryDomainsResponse.php new file mode 100644 index 000000000..c82c4d845 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/ListLiveRealtimeLogDeliveryDomainsResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return ListLiveRealtimeLogDeliveryDomainsResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = ListLiveRealtimeLogDeliveryDomainsResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/ListLiveRealtimeLogDeliveryDomainsResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/ListLiveRealtimeLogDeliveryDomainsResponseBody.php new file mode 100644 index 000000000..ef80a6550 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/ListLiveRealtimeLogDeliveryDomainsResponseBody.php @@ -0,0 +1,60 @@ + 'Content', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->content) { + $res['Content'] = null !== $this->content ? $this->content->toMap() : null; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return ListLiveRealtimeLogDeliveryDomainsResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Content'])) { + $model->content = content::fromMap($map['Content']); + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/ListLiveRealtimeLogDeliveryDomainsResponseBody/content.php b/vendor/alibabacloud/live-20161101/src/Models/ListLiveRealtimeLogDeliveryDomainsResponseBody/content.php new file mode 100644 index 000000000..105fb4a1a --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/ListLiveRealtimeLogDeliveryDomainsResponseBody/content.php @@ -0,0 +1,60 @@ + 'Domains', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->domains) { + $res['Domains'] = []; + if (null !== $this->domains && \is_array($this->domains)) { + $n = 0; + foreach ($this->domains as $item) { + $res['Domains'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return content + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Domains'])) { + if (!empty($map['Domains'])) { + $model->domains = []; + $n = 0; + foreach ($map['Domains'] as $item) { + $model->domains[$n++] = null !== $item ? domains::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/ListLiveRealtimeLogDeliveryDomainsResponseBody/content/domains.php b/vendor/alibabacloud/live-20161101/src/Models/ListLiveRealtimeLogDeliveryDomainsResponseBody/content/domains.php new file mode 100644 index 000000000..a4a925b1a --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/ListLiveRealtimeLogDeliveryDomainsResponseBody/content/domains.php @@ -0,0 +1,59 @@ + 'DomainName', + 'status' => 'Status', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->status) { + $res['Status'] = $this->status; + } + + return $res; + } + + /** + * @param array $map + * + * @return domains + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['Status'])) { + $model->status = $map['Status']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/ListLiveRealtimeLogDeliveryInfosRequest.php b/vendor/alibabacloud/live-20161101/src/Models/ListLiveRealtimeLogDeliveryInfosRequest.php new file mode 100644 index 000000000..b9dd499b6 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/ListLiveRealtimeLogDeliveryInfosRequest.php @@ -0,0 +1,59 @@ + 'LiveOpenapiReserve', + 'ownerId' => 'OwnerId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->liveOpenapiReserve) { + $res['LiveOpenapiReserve'] = $this->liveOpenapiReserve; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + return $res; + } + + /** + * @param array $map + * + * @return ListLiveRealtimeLogDeliveryInfosRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['LiveOpenapiReserve'])) { + $model->liveOpenapiReserve = $map['LiveOpenapiReserve']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/ListLiveRealtimeLogDeliveryInfosResponse.php b/vendor/alibabacloud/live-20161101/src/Models/ListLiveRealtimeLogDeliveryInfosResponse.php new file mode 100644 index 000000000..8b6ed15b8 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/ListLiveRealtimeLogDeliveryInfosResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return ListLiveRealtimeLogDeliveryInfosResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = ListLiveRealtimeLogDeliveryInfosResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/ListLiveRealtimeLogDeliveryInfosResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/ListLiveRealtimeLogDeliveryInfosResponseBody.php new file mode 100644 index 000000000..0f7cca225 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/ListLiveRealtimeLogDeliveryInfosResponseBody.php @@ -0,0 +1,60 @@ + 'Content', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->content) { + $res['Content'] = null !== $this->content ? $this->content->toMap() : null; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return ListLiveRealtimeLogDeliveryInfosResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Content'])) { + $model->content = content::fromMap($map['Content']); + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/ListLiveRealtimeLogDeliveryInfosResponseBody/content.php b/vendor/alibabacloud/live-20161101/src/Models/ListLiveRealtimeLogDeliveryInfosResponseBody/content.php new file mode 100644 index 000000000..3ed26d740 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/ListLiveRealtimeLogDeliveryInfosResponseBody/content.php @@ -0,0 +1,60 @@ + 'RealtimeLogDeliveryInfos', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->realtimeLogDeliveryInfos) { + $res['RealtimeLogDeliveryInfos'] = []; + if (null !== $this->realtimeLogDeliveryInfos && \is_array($this->realtimeLogDeliveryInfos)) { + $n = 0; + foreach ($this->realtimeLogDeliveryInfos as $item) { + $res['RealtimeLogDeliveryInfos'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return content + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RealtimeLogDeliveryInfos'])) { + if (!empty($map['RealtimeLogDeliveryInfos'])) { + $model->realtimeLogDeliveryInfos = []; + $n = 0; + foreach ($map['RealtimeLogDeliveryInfos'] as $item) { + $model->realtimeLogDeliveryInfos[$n++] = null !== $item ? realtimeLogDeliveryInfos::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/ListLiveRealtimeLogDeliveryInfosResponseBody/content/realtimeLogDeliveryInfos.php b/vendor/alibabacloud/live-20161101/src/Models/ListLiveRealtimeLogDeliveryInfosResponseBody/content/realtimeLogDeliveryInfos.php new file mode 100644 index 000000000..25ea742ab --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/ListLiveRealtimeLogDeliveryInfosResponseBody/content/realtimeLogDeliveryInfos.php @@ -0,0 +1,71 @@ + 'Logstore', + 'project' => 'Project', + 'region' => 'Region', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->logstore) { + $res['Logstore'] = $this->logstore; + } + if (null !== $this->project) { + $res['Project'] = $this->project; + } + if (null !== $this->region) { + $res['Region'] = $this->region; + } + + return $res; + } + + /** + * @param array $map + * + * @return realtimeLogDeliveryInfos + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Logstore'])) { + $model->logstore = $map['Logstore']; + } + if (isset($map['Project'])) { + $model->project = $map['Project']; + } + if (isset($map['Region'])) { + $model->region = $map['Region']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/ListLiveRealtimeLogDeliveryRequest.php b/vendor/alibabacloud/live-20161101/src/Models/ListLiveRealtimeLogDeliveryRequest.php new file mode 100644 index 000000000..5a3c21a34 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/ListLiveRealtimeLogDeliveryRequest.php @@ -0,0 +1,59 @@ + 'LiveOpenapiReserve', + 'ownerId' => 'OwnerId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->liveOpenapiReserve) { + $res['LiveOpenapiReserve'] = $this->liveOpenapiReserve; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + return $res; + } + + /** + * @param array $map + * + * @return ListLiveRealtimeLogDeliveryRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['LiveOpenapiReserve'])) { + $model->liveOpenapiReserve = $map['LiveOpenapiReserve']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/ListLiveRealtimeLogDeliveryResponse.php b/vendor/alibabacloud/live-20161101/src/Models/ListLiveRealtimeLogDeliveryResponse.php new file mode 100644 index 000000000..0b511a2e4 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/ListLiveRealtimeLogDeliveryResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return ListLiveRealtimeLogDeliveryResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = ListLiveRealtimeLogDeliveryResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/ListLiveRealtimeLogDeliveryResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/ListLiveRealtimeLogDeliveryResponseBody.php new file mode 100644 index 000000000..0460a8ad1 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/ListLiveRealtimeLogDeliveryResponseBody.php @@ -0,0 +1,60 @@ + 'Content', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->content) { + $res['Content'] = null !== $this->content ? $this->content->toMap() : null; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return ListLiveRealtimeLogDeliveryResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Content'])) { + $model->content = content::fromMap($map['Content']); + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/ListLiveRealtimeLogDeliveryResponseBody/content.php b/vendor/alibabacloud/live-20161101/src/Models/ListLiveRealtimeLogDeliveryResponseBody/content.php new file mode 100644 index 000000000..bec948e77 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/ListLiveRealtimeLogDeliveryResponseBody/content.php @@ -0,0 +1,60 @@ + 'RealtimeLogDeliveryInfo', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->realtimeLogDeliveryInfo) { + $res['RealtimeLogDeliveryInfo'] = []; + if (null !== $this->realtimeLogDeliveryInfo && \is_array($this->realtimeLogDeliveryInfo)) { + $n = 0; + foreach ($this->realtimeLogDeliveryInfo as $item) { + $res['RealtimeLogDeliveryInfo'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return content + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RealtimeLogDeliveryInfo'])) { + if (!empty($map['RealtimeLogDeliveryInfo'])) { + $model->realtimeLogDeliveryInfo = []; + $n = 0; + foreach ($map['RealtimeLogDeliveryInfo'] as $item) { + $model->realtimeLogDeliveryInfo[$n++] = null !== $item ? realtimeLogDeliveryInfo::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/ListLiveRealtimeLogDeliveryResponseBody/content/realtimeLogDeliveryInfo.php b/vendor/alibabacloud/live-20161101/src/Models/ListLiveRealtimeLogDeliveryResponseBody/content/realtimeLogDeliveryInfo.php new file mode 100644 index 000000000..e5c58f021 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/ListLiveRealtimeLogDeliveryResponseBody/content/realtimeLogDeliveryInfo.php @@ -0,0 +1,107 @@ + 'DmId', + 'domainName' => 'DomainName', + 'logstore' => 'Logstore', + 'project' => 'Project', + 'region' => 'Region', + 'status' => 'Status', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->dmId) { + $res['DmId'] = $this->dmId; + } + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->logstore) { + $res['Logstore'] = $this->logstore; + } + if (null !== $this->project) { + $res['Project'] = $this->project; + } + if (null !== $this->region) { + $res['Region'] = $this->region; + } + if (null !== $this->status) { + $res['Status'] = $this->status; + } + + return $res; + } + + /** + * @param array $map + * + * @return realtimeLogDeliveryInfo + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DmId'])) { + $model->dmId = $map['DmId']; + } + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['Logstore'])) { + $model->logstore = $map['Logstore']; + } + if (isset($map['Project'])) { + $model->project = $map['Project']; + } + if (isset($map['Region'])) { + $model->region = $map['Region']; + } + if (isset($map['Status'])) { + $model->status = $map['Status']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/ListMessageAppRequest.php b/vendor/alibabacloud/live-20161101/src/Models/ListMessageAppRequest.php new file mode 100644 index 000000000..14d1e2f6d --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/ListMessageAppRequest.php @@ -0,0 +1,71 @@ + 'PageNum', + 'pageSize' => 'PageSize', + 'sortType' => 'SortType', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->pageNum) { + $res['PageNum'] = $this->pageNum; + } + if (null !== $this->pageSize) { + $res['PageSize'] = $this->pageSize; + } + if (null !== $this->sortType) { + $res['SortType'] = $this->sortType; + } + + return $res; + } + + /** + * @param array $map + * + * @return ListMessageAppRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['PageNum'])) { + $model->pageNum = $map['PageNum']; + } + if (isset($map['PageSize'])) { + $model->pageSize = $map['PageSize']; + } + if (isset($map['SortType'])) { + $model->sortType = $map['SortType']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/ListMessageAppResponse.php b/vendor/alibabacloud/live-20161101/src/Models/ListMessageAppResponse.php new file mode 100644 index 000000000..d961b5040 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/ListMessageAppResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return ListMessageAppResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = ListMessageAppResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/ListMessageAppResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/ListMessageAppResponseBody.php new file mode 100644 index 000000000..ce4d64adf --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/ListMessageAppResponseBody.php @@ -0,0 +1,60 @@ + 'RequestId', + 'result' => 'Result', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->result) { + $res['Result'] = null !== $this->result ? $this->result->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return ListMessageAppResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['Result'])) { + $model->result = result::fromMap($map['Result']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/ListMessageAppResponseBody/result.php b/vendor/alibabacloud/live-20161101/src/Models/ListMessageAppResponseBody/result.php new file mode 100644 index 000000000..49fac0488 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/ListMessageAppResponseBody/result.php @@ -0,0 +1,84 @@ + 'AppList', + 'hasMore' => 'HasMore', + 'total' => 'Total', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->appList) { + $res['AppList'] = []; + if (null !== $this->appList && \is_array($this->appList)) { + $n = 0; + foreach ($this->appList as $item) { + $res['AppList'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + if (null !== $this->hasMore) { + $res['HasMore'] = $this->hasMore; + } + if (null !== $this->total) { + $res['Total'] = $this->total; + } + + return $res; + } + + /** + * @param array $map + * + * @return result + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppList'])) { + if (!empty($map['AppList'])) { + $model->appList = []; + $n = 0; + foreach ($map['AppList'] as $item) { + $model->appList[$n++] = null !== $item ? appList::fromMap($item) : $item; + } + } + } + if (isset($map['HasMore'])) { + $model->hasMore = $map['HasMore']; + } + if (isset($map['Total'])) { + $model->total = $map['Total']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/ListMessageAppResponseBody/result/appList.php b/vendor/alibabacloud/live-20161101/src/Models/ListMessageAppResponseBody/result/appList.php new file mode 100644 index 000000000..b97a11a6a --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/ListMessageAppResponseBody/result/appList.php @@ -0,0 +1,107 @@ + 'AppConfig', + 'appId' => 'AppId', + 'appName' => 'AppName', + 'createTime' => 'CreateTime', + 'extension' => 'Extension', + 'status' => 'Status', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->appConfig) { + $res['AppConfig'] = $this->appConfig; + } + if (null !== $this->appId) { + $res['AppId'] = $this->appId; + } + if (null !== $this->appName) { + $res['AppName'] = $this->appName; + } + if (null !== $this->createTime) { + $res['CreateTime'] = $this->createTime; + } + if (null !== $this->extension) { + $res['Extension'] = $this->extension; + } + if (null !== $this->status) { + $res['Status'] = $this->status; + } + + return $res; + } + + /** + * @param array $map + * + * @return appList + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppConfig'])) { + $model->appConfig = $map['AppConfig']; + } + if (isset($map['AppId'])) { + $model->appId = $map['AppId']; + } + if (isset($map['AppName'])) { + $model->appName = $map['AppName']; + } + if (isset($map['CreateTime'])) { + $model->createTime = $map['CreateTime']; + } + if (isset($map['Extension'])) { + $model->extension = $map['Extension']; + } + if (isset($map['Status'])) { + $model->status = $map['Status']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/ListMessageGroupRequest.php b/vendor/alibabacloud/live-20161101/src/Models/ListMessageGroupRequest.php new file mode 100644 index 000000000..fecd1d334 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/ListMessageGroupRequest.php @@ -0,0 +1,95 @@ + 'AppId', + 'pageNum' => 'PageNum', + 'pageSize' => 'PageSize', + 'sortType' => 'SortType', + 'userId' => 'UserId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->appId) { + $res['AppId'] = $this->appId; + } + if (null !== $this->pageNum) { + $res['PageNum'] = $this->pageNum; + } + if (null !== $this->pageSize) { + $res['PageSize'] = $this->pageSize; + } + if (null !== $this->sortType) { + $res['SortType'] = $this->sortType; + } + if (null !== $this->userId) { + $res['UserId'] = $this->userId; + } + + return $res; + } + + /** + * @param array $map + * + * @return ListMessageGroupRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppId'])) { + $model->appId = $map['AppId']; + } + if (isset($map['PageNum'])) { + $model->pageNum = $map['PageNum']; + } + if (isset($map['PageSize'])) { + $model->pageSize = $map['PageSize']; + } + if (isset($map['SortType'])) { + $model->sortType = $map['SortType']; + } + if (isset($map['UserId'])) { + $model->userId = $map['UserId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/ListMessageGroupResponse.php b/vendor/alibabacloud/live-20161101/src/Models/ListMessageGroupResponse.php new file mode 100644 index 000000000..d5be9d4ea --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/ListMessageGroupResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return ListMessageGroupResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = ListMessageGroupResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/ListMessageGroupResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/ListMessageGroupResponseBody.php new file mode 100644 index 000000000..46e51ae96 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/ListMessageGroupResponseBody.php @@ -0,0 +1,60 @@ + 'RequestId', + 'result' => 'Result', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->result) { + $res['Result'] = null !== $this->result ? $this->result->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return ListMessageGroupResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['Result'])) { + $model->result = result::fromMap($map['Result']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/ListMessageGroupResponseBody/result.php b/vendor/alibabacloud/live-20161101/src/Models/ListMessageGroupResponseBody/result.php new file mode 100644 index 000000000..ab990eef4 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/ListMessageGroupResponseBody/result.php @@ -0,0 +1,84 @@ + 'GroupList', + 'hasMore' => 'HasMore', + 'total' => 'Total', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->groupList) { + $res['GroupList'] = []; + if (null !== $this->groupList && \is_array($this->groupList)) { + $n = 0; + foreach ($this->groupList as $item) { + $res['GroupList'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + if (null !== $this->hasMore) { + $res['HasMore'] = $this->hasMore; + } + if (null !== $this->total) { + $res['Total'] = $this->total; + } + + return $res; + } + + /** + * @param array $map + * + * @return result + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['GroupList'])) { + if (!empty($map['GroupList'])) { + $model->groupList = []; + $n = 0; + foreach ($map['GroupList'] as $item) { + $model->groupList[$n++] = null !== $item ? groupList::fromMap($item) : $item; + } + } + } + if (isset($map['HasMore'])) { + $model->hasMore = $map['HasMore']; + } + if (isset($map['Total'])) { + $model->total = $map['Total']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/ListMessageGroupResponseBody/result/groupList.php b/vendor/alibabacloud/live-20161101/src/Models/ListMessageGroupResponseBody/result/groupList.php new file mode 100644 index 000000000..acd5ff8cb --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/ListMessageGroupResponseBody/result/groupList.php @@ -0,0 +1,107 @@ + 'AppId', + 'createTime' => 'CreateTime', + 'creatorId' => 'CreatorId', + 'extension' => 'Extension', + 'groupId' => 'GroupId', + 'status' => 'Status', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->appId) { + $res['AppId'] = $this->appId; + } + if (null !== $this->createTime) { + $res['CreateTime'] = $this->createTime; + } + if (null !== $this->creatorId) { + $res['CreatorId'] = $this->creatorId; + } + if (null !== $this->extension) { + $res['Extension'] = $this->extension; + } + if (null !== $this->groupId) { + $res['GroupId'] = $this->groupId; + } + if (null !== $this->status) { + $res['Status'] = $this->status; + } + + return $res; + } + + /** + * @param array $map + * + * @return groupList + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppId'])) { + $model->appId = $map['AppId']; + } + if (isset($map['CreateTime'])) { + $model->createTime = $map['CreateTime']; + } + if (isset($map['CreatorId'])) { + $model->creatorId = $map['CreatorId']; + } + if (isset($map['Extension'])) { + $model->extension = $map['Extension']; + } + if (isset($map['GroupId'])) { + $model->groupId = $map['GroupId']; + } + if (isset($map['Status'])) { + $model->status = $map['Status']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/ListMessageGroupUserByIdRequest.php b/vendor/alibabacloud/live-20161101/src/Models/ListMessageGroupUserByIdRequest.php new file mode 100644 index 000000000..0236404b0 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/ListMessageGroupUserByIdRequest.php @@ -0,0 +1,73 @@ + 'AppId', + 'groupId' => 'GroupId', + 'userIdList' => 'UserIdList', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->appId) { + $res['AppId'] = $this->appId; + } + if (null !== $this->groupId) { + $res['GroupId'] = $this->groupId; + } + if (null !== $this->userIdList) { + $res['UserIdList'] = $this->userIdList; + } + + return $res; + } + + /** + * @param array $map + * + * @return ListMessageGroupUserByIdRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppId'])) { + $model->appId = $map['AppId']; + } + if (isset($map['GroupId'])) { + $model->groupId = $map['GroupId']; + } + if (isset($map['UserIdList'])) { + if (!empty($map['UserIdList'])) { + $model->userIdList = $map['UserIdList']; + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/ListMessageGroupUserByIdResponse.php b/vendor/alibabacloud/live-20161101/src/Models/ListMessageGroupUserByIdResponse.php new file mode 100644 index 000000000..9b95f55d7 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/ListMessageGroupUserByIdResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return ListMessageGroupUserByIdResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = ListMessageGroupUserByIdResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/ListMessageGroupUserByIdResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/ListMessageGroupUserByIdResponseBody.php new file mode 100644 index 000000000..d9958d100 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/ListMessageGroupUserByIdResponseBody.php @@ -0,0 +1,60 @@ + 'RequestId', + 'result' => 'Result', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->result) { + $res['Result'] = null !== $this->result ? $this->result->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return ListMessageGroupUserByIdResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['Result'])) { + $model->result = result::fromMap($map['Result']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/ListMessageGroupUserByIdResponseBody/result.php b/vendor/alibabacloud/live-20161101/src/Models/ListMessageGroupUserByIdResponseBody/result.php new file mode 100644 index 000000000..605477da7 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/ListMessageGroupUserByIdResponseBody/result.php @@ -0,0 +1,84 @@ + 'HasMore', + 'total' => 'Total', + 'userList' => 'UserList', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->hasMore) { + $res['HasMore'] = $this->hasMore; + } + if (null !== $this->total) { + $res['Total'] = $this->total; + } + if (null !== $this->userList) { + $res['UserList'] = []; + if (null !== $this->userList && \is_array($this->userList)) { + $n = 0; + foreach ($this->userList as $item) { + $res['UserList'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return result + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['HasMore'])) { + $model->hasMore = $map['HasMore']; + } + if (isset($map['Total'])) { + $model->total = $map['Total']; + } + if (isset($map['UserList'])) { + if (!empty($map['UserList'])) { + $model->userList = []; + $n = 0; + foreach ($map['UserList'] as $item) { + $model->userList[$n++] = null !== $item ? userList::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/ListMessageGroupUserByIdResponseBody/result/userList.php b/vendor/alibabacloud/live-20161101/src/Models/ListMessageGroupUserByIdResponseBody/result/userList.php new file mode 100644 index 000000000..a7cdd4994 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/ListMessageGroupUserByIdResponseBody/result/userList.php @@ -0,0 +1,109 @@ + 'IsMute', + 'muteBy' => 'MuteBy', + 'userAvatar' => 'UserAvatar', + 'userExtension' => 'UserExtension', + 'userId' => 'UserId', + 'userNick' => 'UserNick', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->isMute) { + $res['IsMute'] = $this->isMute; + } + if (null !== $this->muteBy) { + $res['MuteBy'] = $this->muteBy; + } + if (null !== $this->userAvatar) { + $res['UserAvatar'] = $this->userAvatar; + } + if (null !== $this->userExtension) { + $res['UserExtension'] = $this->userExtension; + } + if (null !== $this->userId) { + $res['UserId'] = $this->userId; + } + if (null !== $this->userNick) { + $res['UserNick'] = $this->userNick; + } + + return $res; + } + + /** + * @param array $map + * + * @return userList + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['IsMute'])) { + $model->isMute = $map['IsMute']; + } + if (isset($map['MuteBy'])) { + if (!empty($map['MuteBy'])) { + $model->muteBy = $map['MuteBy']; + } + } + if (isset($map['UserAvatar'])) { + $model->userAvatar = $map['UserAvatar']; + } + if (isset($map['UserExtension'])) { + $model->userExtension = $map['UserExtension']; + } + if (isset($map['UserId'])) { + $model->userId = $map['UserId']; + } + if (isset($map['UserNick'])) { + $model->userNick = $map['UserNick']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/ListMessageGroupUserByIdShrinkRequest.php b/vendor/alibabacloud/live-20161101/src/Models/ListMessageGroupUserByIdShrinkRequest.php new file mode 100644 index 000000000..6ad2011b6 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/ListMessageGroupUserByIdShrinkRequest.php @@ -0,0 +1,71 @@ + 'AppId', + 'groupId' => 'GroupId', + 'userIdListShrink' => 'UserIdList', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->appId) { + $res['AppId'] = $this->appId; + } + if (null !== $this->groupId) { + $res['GroupId'] = $this->groupId; + } + if (null !== $this->userIdListShrink) { + $res['UserIdList'] = $this->userIdListShrink; + } + + return $res; + } + + /** + * @param array $map + * + * @return ListMessageGroupUserByIdShrinkRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppId'])) { + $model->appId = $map['AppId']; + } + if (isset($map['GroupId'])) { + $model->groupId = $map['GroupId']; + } + if (isset($map['UserIdList'])) { + $model->userIdListShrink = $map['UserIdList']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/ListMessageGroupUserRequest.php b/vendor/alibabacloud/live-20161101/src/Models/ListMessageGroupUserRequest.php new file mode 100644 index 000000000..de11ac3b4 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/ListMessageGroupUserRequest.php @@ -0,0 +1,95 @@ + 'AppId', + 'groupId' => 'GroupId', + 'pageNum' => 'PageNum', + 'pageSize' => 'PageSize', + 'sortType' => 'SortType', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->appId) { + $res['AppId'] = $this->appId; + } + if (null !== $this->groupId) { + $res['GroupId'] = $this->groupId; + } + if (null !== $this->pageNum) { + $res['PageNum'] = $this->pageNum; + } + if (null !== $this->pageSize) { + $res['PageSize'] = $this->pageSize; + } + if (null !== $this->sortType) { + $res['SortType'] = $this->sortType; + } + + return $res; + } + + /** + * @param array $map + * + * @return ListMessageGroupUserRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppId'])) { + $model->appId = $map['AppId']; + } + if (isset($map['GroupId'])) { + $model->groupId = $map['GroupId']; + } + if (isset($map['PageNum'])) { + $model->pageNum = $map['PageNum']; + } + if (isset($map['PageSize'])) { + $model->pageSize = $map['PageSize']; + } + if (isset($map['SortType'])) { + $model->sortType = $map['SortType']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/ListMessageGroupUserResponse.php b/vendor/alibabacloud/live-20161101/src/Models/ListMessageGroupUserResponse.php new file mode 100644 index 000000000..f478325f6 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/ListMessageGroupUserResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return ListMessageGroupUserResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = ListMessageGroupUserResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/ListMessageGroupUserResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/ListMessageGroupUserResponseBody.php new file mode 100644 index 000000000..c36eb4734 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/ListMessageGroupUserResponseBody.php @@ -0,0 +1,60 @@ + 'RequestId', + 'result' => 'Result', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->result) { + $res['Result'] = null !== $this->result ? $this->result->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return ListMessageGroupUserResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['Result'])) { + $model->result = result::fromMap($map['Result']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/ListMessageGroupUserResponseBody/result.php b/vendor/alibabacloud/live-20161101/src/Models/ListMessageGroupUserResponseBody/result.php new file mode 100644 index 000000000..75dcfb300 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/ListMessageGroupUserResponseBody/result.php @@ -0,0 +1,84 @@ + 'HasMore', + 'total' => 'Total', + 'userList' => 'UserList', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->hasMore) { + $res['HasMore'] = $this->hasMore; + } + if (null !== $this->total) { + $res['Total'] = $this->total; + } + if (null !== $this->userList) { + $res['UserList'] = []; + if (null !== $this->userList && \is_array($this->userList)) { + $n = 0; + foreach ($this->userList as $item) { + $res['UserList'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return result + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['HasMore'])) { + $model->hasMore = $map['HasMore']; + } + if (isset($map['Total'])) { + $model->total = $map['Total']; + } + if (isset($map['UserList'])) { + if (!empty($map['UserList'])) { + $model->userList = []; + $n = 0; + foreach ($map['UserList'] as $item) { + $model->userList[$n++] = null !== $item ? userList::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/ListMessageGroupUserResponseBody/result/userList.php b/vendor/alibabacloud/live-20161101/src/Models/ListMessageGroupUserResponseBody/result/userList.php new file mode 100644 index 000000000..9ccdd70dd --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/ListMessageGroupUserResponseBody/result/userList.php @@ -0,0 +1,59 @@ + 'JoinTime', + 'userId' => 'UserId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->joinTime) { + $res['JoinTime'] = $this->joinTime; + } + if (null !== $this->userId) { + $res['UserId'] = $this->userId; + } + + return $res; + } + + /** + * @param array $map + * + * @return userList + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['JoinTime'])) { + $model->joinTime = $map['JoinTime']; + } + if (isset($map['UserId'])) { + $model->userId = $map['UserId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/ListMessageRequest.php b/vendor/alibabacloud/live-20161101/src/Models/ListMessageRequest.php new file mode 100644 index 000000000..1be96895c --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/ListMessageRequest.php @@ -0,0 +1,107 @@ + 'AppId', + 'groupId' => 'GroupId', + 'pageNum' => 'PageNum', + 'pageSize' => 'PageSize', + 'sortType' => 'SortType', + 'type' => 'Type', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->appId) { + $res['AppId'] = $this->appId; + } + if (null !== $this->groupId) { + $res['GroupId'] = $this->groupId; + } + if (null !== $this->pageNum) { + $res['PageNum'] = $this->pageNum; + } + if (null !== $this->pageSize) { + $res['PageSize'] = $this->pageSize; + } + if (null !== $this->sortType) { + $res['SortType'] = $this->sortType; + } + if (null !== $this->type) { + $res['Type'] = $this->type; + } + + return $res; + } + + /** + * @param array $map + * + * @return ListMessageRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppId'])) { + $model->appId = $map['AppId']; + } + if (isset($map['GroupId'])) { + $model->groupId = $map['GroupId']; + } + if (isset($map['PageNum'])) { + $model->pageNum = $map['PageNum']; + } + if (isset($map['PageSize'])) { + $model->pageSize = $map['PageSize']; + } + if (isset($map['SortType'])) { + $model->sortType = $map['SortType']; + } + if (isset($map['Type'])) { + $model->type = $map['Type']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/ListMessageResponse.php b/vendor/alibabacloud/live-20161101/src/Models/ListMessageResponse.php new file mode 100644 index 000000000..e0cd8b6e6 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/ListMessageResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return ListMessageResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = ListMessageResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/ListMessageResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/ListMessageResponseBody.php new file mode 100644 index 000000000..eb0ecf9cb --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/ListMessageResponseBody.php @@ -0,0 +1,60 @@ + 'RequestId', + 'result' => 'Result', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->result) { + $res['Result'] = null !== $this->result ? $this->result->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return ListMessageResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['Result'])) { + $model->result = result::fromMap($map['Result']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/ListMessageResponseBody/result.php b/vendor/alibabacloud/live-20161101/src/Models/ListMessageResponseBody/result.php new file mode 100644 index 000000000..b94b78077 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/ListMessageResponseBody/result.php @@ -0,0 +1,72 @@ + 'HasMore', + 'messageList' => 'MessageList', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->hasMore) { + $res['HasMore'] = $this->hasMore; + } + if (null !== $this->messageList) { + $res['MessageList'] = []; + if (null !== $this->messageList && \is_array($this->messageList)) { + $n = 0; + foreach ($this->messageList as $item) { + $res['MessageList'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return result + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['HasMore'])) { + $model->hasMore = $map['HasMore']; + } + if (isset($map['MessageList'])) { + if (!empty($map['MessageList'])) { + $model->messageList = []; + $n = 0; + foreach ($map['MessageList'] as $item) { + $model->messageList[$n++] = null !== $item ? messageList::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/ListMessageResponseBody/result/messageList.php b/vendor/alibabacloud/live-20161101/src/Models/ListMessageResponseBody/result/messageList.php new file mode 100644 index 000000000..b88688923 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/ListMessageResponseBody/result/messageList.php @@ -0,0 +1,95 @@ + 'Data', + 'groupId' => 'GroupId', + 'messageId' => 'MessageId', + 'senderId' => 'SenderId', + 'type' => 'Type', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->data) { + $res['Data'] = $this->data; + } + if (null !== $this->groupId) { + $res['GroupId'] = $this->groupId; + } + if (null !== $this->messageId) { + $res['MessageId'] = $this->messageId; + } + if (null !== $this->senderId) { + $res['SenderId'] = $this->senderId; + } + if (null !== $this->type) { + $res['Type'] = $this->type; + } + + return $res; + } + + /** + * @param array $map + * + * @return messageList + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Data'])) { + $model->data = $map['Data']; + } + if (isset($map['GroupId'])) { + $model->groupId = $map['GroupId']; + } + if (isset($map['MessageId'])) { + $model->messageId = $map['MessageId']; + } + if (isset($map['SenderId'])) { + $model->senderId = $map['SenderId']; + } + if (isset($map['Type'])) { + $model->type = $map['Type']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/ListPlaylistItemsRequest.php b/vendor/alibabacloud/live-20161101/src/Models/ListPlaylistItemsRequest.php new file mode 100644 index 000000000..b905544f6 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/ListPlaylistItemsRequest.php @@ -0,0 +1,71 @@ + 'OwnerId', + 'programId' => 'ProgramId', + 'programItemIds' => 'ProgramItemIds', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->programId) { + $res['ProgramId'] = $this->programId; + } + if (null !== $this->programItemIds) { + $res['ProgramItemIds'] = $this->programItemIds; + } + + return $res; + } + + /** + * @param array $map + * + * @return ListPlaylistItemsRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['ProgramId'])) { + $model->programId = $map['ProgramId']; + } + if (isset($map['ProgramItemIds'])) { + $model->programItemIds = $map['ProgramItemIds']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/ListPlaylistItemsResponse.php b/vendor/alibabacloud/live-20161101/src/Models/ListPlaylistItemsResponse.php new file mode 100644 index 000000000..532db2b4f --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/ListPlaylistItemsResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return ListPlaylistItemsResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = ListPlaylistItemsResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/ListPlaylistItemsResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/ListPlaylistItemsResponseBody.php new file mode 100644 index 000000000..e49873776 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/ListPlaylistItemsResponseBody.php @@ -0,0 +1,84 @@ + 'ProgramItems', + 'requestId' => 'RequestId', + 'total' => 'Total', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->programItems) { + $res['ProgramItems'] = []; + if (null !== $this->programItems && \is_array($this->programItems)) { + $n = 0; + foreach ($this->programItems as $item) { + $res['ProgramItems'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->total) { + $res['Total'] = $this->total; + } + + return $res; + } + + /** + * @param array $map + * + * @return ListPlaylistItemsResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['ProgramItems'])) { + if (!empty($map['ProgramItems'])) { + $model->programItems = []; + $n = 0; + foreach ($map['ProgramItems'] as $item) { + $model->programItems[$n++] = null !== $item ? programItems::fromMap($item) : $item; + } + } + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['Total'])) { + $model->total = $map['Total']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/ListPlaylistItemsResponseBody/programItems.php b/vendor/alibabacloud/live-20161101/src/Models/ListPlaylistItemsResponseBody/programItems.php new file mode 100644 index 000000000..8c5cfc505 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/ListPlaylistItemsResponseBody/programItems.php @@ -0,0 +1,107 @@ + 'Index', + 'programId' => 'ProgramId', + 'programItemId' => 'ProgramItemId', + 'programItemName' => 'ProgramItemName', + 'resourceType' => 'ResourceType', + 'resourceValue' => 'ResourceValue', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->index) { + $res['Index'] = $this->index; + } + if (null !== $this->programId) { + $res['ProgramId'] = $this->programId; + } + if (null !== $this->programItemId) { + $res['ProgramItemId'] = $this->programItemId; + } + if (null !== $this->programItemName) { + $res['ProgramItemName'] = $this->programItemName; + } + if (null !== $this->resourceType) { + $res['ResourceType'] = $this->resourceType; + } + if (null !== $this->resourceValue) { + $res['ResourceValue'] = $this->resourceValue; + } + + return $res; + } + + /** + * @param array $map + * + * @return programItems + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Index'])) { + $model->index = $map['Index']; + } + if (isset($map['ProgramId'])) { + $model->programId = $map['ProgramId']; + } + if (isset($map['ProgramItemId'])) { + $model->programItemId = $map['ProgramItemId']; + } + if (isset($map['ProgramItemName'])) { + $model->programItemName = $map['ProgramItemName']; + } + if (isset($map['ResourceType'])) { + $model->resourceType = $map['ResourceType']; + } + if (isset($map['ResourceValue'])) { + $model->resourceValue = $map['ResourceValue']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/ListPlaylistRequest.php b/vendor/alibabacloud/live-20161101/src/Models/ListPlaylistRequest.php new file mode 100644 index 000000000..8dc83202b --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/ListPlaylistRequest.php @@ -0,0 +1,83 @@ + 'OwnerId', + 'page' => 'Page', + 'pageSize' => 'PageSize', + 'programId' => 'ProgramId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->page) { + $res['Page'] = $this->page; + } + if (null !== $this->pageSize) { + $res['PageSize'] = $this->pageSize; + } + if (null !== $this->programId) { + $res['ProgramId'] = $this->programId; + } + + return $res; + } + + /** + * @param array $map + * + * @return ListPlaylistRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['Page'])) { + $model->page = $map['Page']; + } + if (isset($map['PageSize'])) { + $model->pageSize = $map['PageSize']; + } + if (isset($map['ProgramId'])) { + $model->programId = $map['ProgramId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/ListPlaylistResponse.php b/vendor/alibabacloud/live-20161101/src/Models/ListPlaylistResponse.php new file mode 100644 index 000000000..f53e3b752 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/ListPlaylistResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return ListPlaylistResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = ListPlaylistResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/ListPlaylistResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/ListPlaylistResponseBody.php new file mode 100644 index 000000000..43c6887fd --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/ListPlaylistResponseBody.php @@ -0,0 +1,84 @@ + 'ProgramList', + 'requestId' => 'RequestId', + 'total' => 'Total', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->programList) { + $res['ProgramList'] = []; + if (null !== $this->programList && \is_array($this->programList)) { + $n = 0; + foreach ($this->programList as $item) { + $res['ProgramList'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->total) { + $res['Total'] = $this->total; + } + + return $res; + } + + /** + * @param array $map + * + * @return ListPlaylistResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['ProgramList'])) { + if (!empty($map['ProgramList'])) { + $model->programList = []; + $n = 0; + foreach ($map['ProgramList'] as $item) { + $model->programList[$n++] = null !== $item ? programList::fromMap($item) : $item; + } + } + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['Total'])) { + $model->total = $map['Total']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/ListPlaylistResponseBody/programList.php b/vendor/alibabacloud/live-20161101/src/Models/ListPlaylistResponseBody/programList.php new file mode 100644 index 000000000..c755afe40 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/ListPlaylistResponseBody/programList.php @@ -0,0 +1,107 @@ + 'CasterId', + 'domainName' => 'DomainName', + 'programId' => 'ProgramId', + 'programName' => 'ProgramName', + 'repeatNumber' => 'RepeatNumber', + 'status' => 'Status', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->casterId) { + $res['CasterId'] = $this->casterId; + } + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->programId) { + $res['ProgramId'] = $this->programId; + } + if (null !== $this->programName) { + $res['ProgramName'] = $this->programName; + } + if (null !== $this->repeatNumber) { + $res['RepeatNumber'] = $this->repeatNumber; + } + if (null !== $this->status) { + $res['Status'] = $this->status; + } + + return $res; + } + + /** + * @param array $map + * + * @return programList + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CasterId'])) { + $model->casterId = $map['CasterId']; + } + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['ProgramId'])) { + $model->programId = $map['ProgramId']; + } + if (isset($map['ProgramName'])) { + $model->programName = $map['ProgramName']; + } + if (isset($map['RepeatNumber'])) { + $model->repeatNumber = $map['RepeatNumber']; + } + if (isset($map['Status'])) { + $model->status = $map['Status']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/ModifyCasterComponentRequest.php b/vendor/alibabacloud/live-20161101/src/Models/ModifyCasterComponentRequest.php new file mode 100644 index 000000000..0004e6b1c --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/ModifyCasterComponentRequest.php @@ -0,0 +1,155 @@ + 'CaptionLayerContent', + 'casterId' => 'CasterId', + 'componentId' => 'ComponentId', + 'componentLayer' => 'ComponentLayer', + 'componentName' => 'ComponentName', + 'componentType' => 'ComponentType', + 'effect' => 'Effect', + 'imageLayerContent' => 'ImageLayerContent', + 'ownerId' => 'OwnerId', + 'textLayerContent' => 'TextLayerContent', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->captionLayerContent) { + $res['CaptionLayerContent'] = $this->captionLayerContent; + } + if (null !== $this->casterId) { + $res['CasterId'] = $this->casterId; + } + if (null !== $this->componentId) { + $res['ComponentId'] = $this->componentId; + } + if (null !== $this->componentLayer) { + $res['ComponentLayer'] = $this->componentLayer; + } + if (null !== $this->componentName) { + $res['ComponentName'] = $this->componentName; + } + if (null !== $this->componentType) { + $res['ComponentType'] = $this->componentType; + } + if (null !== $this->effect) { + $res['Effect'] = $this->effect; + } + if (null !== $this->imageLayerContent) { + $res['ImageLayerContent'] = $this->imageLayerContent; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->textLayerContent) { + $res['TextLayerContent'] = $this->textLayerContent; + } + + return $res; + } + + /** + * @param array $map + * + * @return ModifyCasterComponentRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CaptionLayerContent'])) { + $model->captionLayerContent = $map['CaptionLayerContent']; + } + if (isset($map['CasterId'])) { + $model->casterId = $map['CasterId']; + } + if (isset($map['ComponentId'])) { + $model->componentId = $map['ComponentId']; + } + if (isset($map['ComponentLayer'])) { + $model->componentLayer = $map['ComponentLayer']; + } + if (isset($map['ComponentName'])) { + $model->componentName = $map['ComponentName']; + } + if (isset($map['ComponentType'])) { + $model->componentType = $map['ComponentType']; + } + if (isset($map['Effect'])) { + $model->effect = $map['Effect']; + } + if (isset($map['ImageLayerContent'])) { + $model->imageLayerContent = $map['ImageLayerContent']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['TextLayerContent'])) { + $model->textLayerContent = $map['TextLayerContent']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/ModifyCasterComponentResponse.php b/vendor/alibabacloud/live-20161101/src/Models/ModifyCasterComponentResponse.php new file mode 100644 index 000000000..f7b669292 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/ModifyCasterComponentResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return ModifyCasterComponentResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = ModifyCasterComponentResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/ModifyCasterComponentResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/ModifyCasterComponentResponseBody.php new file mode 100644 index 000000000..f8d92ef80 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/ModifyCasterComponentResponseBody.php @@ -0,0 +1,59 @@ + 'ComponentId', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->componentId) { + $res['ComponentId'] = $this->componentId; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return ModifyCasterComponentResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['ComponentId'])) { + $model->componentId = $map['ComponentId']; + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/ModifyCasterEpisodeRequest.php b/vendor/alibabacloud/live-20161101/src/Models/ModifyCasterEpisodeRequest.php new file mode 100644 index 000000000..6f39e98f2 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/ModifyCasterEpisodeRequest.php @@ -0,0 +1,145 @@ + 'CasterId', + 'componentId' => 'ComponentId', + 'endTime' => 'EndTime', + 'episodeId' => 'EpisodeId', + 'episodeName' => 'EpisodeName', + 'ownerId' => 'OwnerId', + 'resourceId' => 'ResourceId', + 'startTime' => 'StartTime', + 'switchType' => 'SwitchType', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->casterId) { + $res['CasterId'] = $this->casterId; + } + if (null !== $this->componentId) { + $res['ComponentId'] = $this->componentId; + } + if (null !== $this->endTime) { + $res['EndTime'] = $this->endTime; + } + if (null !== $this->episodeId) { + $res['EpisodeId'] = $this->episodeId; + } + if (null !== $this->episodeName) { + $res['EpisodeName'] = $this->episodeName; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->resourceId) { + $res['ResourceId'] = $this->resourceId; + } + if (null !== $this->startTime) { + $res['StartTime'] = $this->startTime; + } + if (null !== $this->switchType) { + $res['SwitchType'] = $this->switchType; + } + + return $res; + } + + /** + * @param array $map + * + * @return ModifyCasterEpisodeRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CasterId'])) { + $model->casterId = $map['CasterId']; + } + if (isset($map['ComponentId'])) { + if (!empty($map['ComponentId'])) { + $model->componentId = $map['ComponentId']; + } + } + if (isset($map['EndTime'])) { + $model->endTime = $map['EndTime']; + } + if (isset($map['EpisodeId'])) { + $model->episodeId = $map['EpisodeId']; + } + if (isset($map['EpisodeName'])) { + $model->episodeName = $map['EpisodeName']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['ResourceId'])) { + $model->resourceId = $map['ResourceId']; + } + if (isset($map['StartTime'])) { + $model->startTime = $map['StartTime']; + } + if (isset($map['SwitchType'])) { + $model->switchType = $map['SwitchType']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/ModifyCasterEpisodeResponse.php b/vendor/alibabacloud/live-20161101/src/Models/ModifyCasterEpisodeResponse.php new file mode 100644 index 000000000..d2872968d --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/ModifyCasterEpisodeResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return ModifyCasterEpisodeResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = ModifyCasterEpisodeResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/ModifyCasterEpisodeResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/ModifyCasterEpisodeResponseBody.php new file mode 100644 index 000000000..dac62b50b --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/ModifyCasterEpisodeResponseBody.php @@ -0,0 +1,71 @@ + 'CasterId', + 'episodeId' => 'EpisodeId', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->casterId) { + $res['CasterId'] = $this->casterId; + } + if (null !== $this->episodeId) { + $res['EpisodeId'] = $this->episodeId; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return ModifyCasterEpisodeResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CasterId'])) { + $model->casterId = $map['CasterId']; + } + if (isset($map['EpisodeId'])) { + $model->episodeId = $map['EpisodeId']; + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/ModifyCasterLayoutRequest.php b/vendor/alibabacloud/live-20161101/src/Models/ModifyCasterLayoutRequest.php new file mode 100644 index 000000000..96269bcd6 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/ModifyCasterLayoutRequest.php @@ -0,0 +1,149 @@ + 'AudioLayer', + 'blendList' => 'BlendList', + 'casterId' => 'CasterId', + 'layoutId' => 'LayoutId', + 'mixList' => 'MixList', + 'ownerId' => 'OwnerId', + 'videoLayer' => 'VideoLayer', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->audioLayer) { + $res['AudioLayer'] = []; + if (null !== $this->audioLayer && \is_array($this->audioLayer)) { + $n = 0; + foreach ($this->audioLayer as $item) { + $res['AudioLayer'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + if (null !== $this->blendList) { + $res['BlendList'] = $this->blendList; + } + if (null !== $this->casterId) { + $res['CasterId'] = $this->casterId; + } + if (null !== $this->layoutId) { + $res['LayoutId'] = $this->layoutId; + } + if (null !== $this->mixList) { + $res['MixList'] = $this->mixList; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->videoLayer) { + $res['VideoLayer'] = []; + if (null !== $this->videoLayer && \is_array($this->videoLayer)) { + $n = 0; + foreach ($this->videoLayer as $item) { + $res['VideoLayer'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return ModifyCasterLayoutRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AudioLayer'])) { + if (!empty($map['AudioLayer'])) { + $model->audioLayer = []; + $n = 0; + foreach ($map['AudioLayer'] as $item) { + $model->audioLayer[$n++] = null !== $item ? audioLayer::fromMap($item) : $item; + } + } + } + if (isset($map['BlendList'])) { + if (!empty($map['BlendList'])) { + $model->blendList = $map['BlendList']; + } + } + if (isset($map['CasterId'])) { + $model->casterId = $map['CasterId']; + } + if (isset($map['LayoutId'])) { + $model->layoutId = $map['LayoutId']; + } + if (isset($map['MixList'])) { + if (!empty($map['MixList'])) { + $model->mixList = $map['MixList']; + } + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['VideoLayer'])) { + if (!empty($map['VideoLayer'])) { + $model->videoLayer = []; + $n = 0; + foreach ($map['VideoLayer'] as $item) { + $model->videoLayer[$n++] = null !== $item ? videoLayer::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/ModifyCasterLayoutRequest/audioLayer.php b/vendor/alibabacloud/live-20161101/src/Models/ModifyCasterLayoutRequest/audioLayer.php new file mode 100644 index 000000000..8d8056c2a --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/ModifyCasterLayoutRequest/audioLayer.php @@ -0,0 +1,71 @@ + 'FixedDelayDuration', + 'validChannel' => 'ValidChannel', + 'volumeRate' => 'VolumeRate', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->fixedDelayDuration) { + $res['FixedDelayDuration'] = $this->fixedDelayDuration; + } + if (null !== $this->validChannel) { + $res['ValidChannel'] = $this->validChannel; + } + if (null !== $this->volumeRate) { + $res['VolumeRate'] = $this->volumeRate; + } + + return $res; + } + + /** + * @param array $map + * + * @return audioLayer + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['FixedDelayDuration'])) { + $model->fixedDelayDuration = $map['FixedDelayDuration']; + } + if (isset($map['ValidChannel'])) { + $model->validChannel = $map['ValidChannel']; + } + if (isset($map['VolumeRate'])) { + $model->volumeRate = $map['VolumeRate']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/ModifyCasterLayoutRequest/videoLayer.php b/vendor/alibabacloud/live-20161101/src/Models/ModifyCasterLayoutRequest/videoLayer.php new file mode 100644 index 000000000..c881f3015 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/ModifyCasterLayoutRequest/videoLayer.php @@ -0,0 +1,109 @@ + 'FillMode', + 'fixedDelayDuration' => 'FixedDelayDuration', + 'heightNormalized' => 'HeightNormalized', + 'positionNormalized' => 'PositionNormalized', + 'positionRefer' => 'PositionRefer', + 'widthNormalized' => 'WidthNormalized', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->fillMode) { + $res['FillMode'] = $this->fillMode; + } + if (null !== $this->fixedDelayDuration) { + $res['FixedDelayDuration'] = $this->fixedDelayDuration; + } + if (null !== $this->heightNormalized) { + $res['HeightNormalized'] = $this->heightNormalized; + } + if (null !== $this->positionNormalized) { + $res['PositionNormalized'] = $this->positionNormalized; + } + if (null !== $this->positionRefer) { + $res['PositionRefer'] = $this->positionRefer; + } + if (null !== $this->widthNormalized) { + $res['WidthNormalized'] = $this->widthNormalized; + } + + return $res; + } + + /** + * @param array $map + * + * @return videoLayer + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['FillMode'])) { + $model->fillMode = $map['FillMode']; + } + if (isset($map['FixedDelayDuration'])) { + $model->fixedDelayDuration = $map['FixedDelayDuration']; + } + if (isset($map['HeightNormalized'])) { + $model->heightNormalized = $map['HeightNormalized']; + } + if (isset($map['PositionNormalized'])) { + if (!empty($map['PositionNormalized'])) { + $model->positionNormalized = $map['PositionNormalized']; + } + } + if (isset($map['PositionRefer'])) { + $model->positionRefer = $map['PositionRefer']; + } + if (isset($map['WidthNormalized'])) { + $model->widthNormalized = $map['WidthNormalized']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/ModifyCasterLayoutResponse.php b/vendor/alibabacloud/live-20161101/src/Models/ModifyCasterLayoutResponse.php new file mode 100644 index 000000000..1e295639e --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/ModifyCasterLayoutResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return ModifyCasterLayoutResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = ModifyCasterLayoutResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/ModifyCasterLayoutResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/ModifyCasterLayoutResponseBody.php new file mode 100644 index 000000000..df3e405ec --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/ModifyCasterLayoutResponseBody.php @@ -0,0 +1,59 @@ + 'LayoutId', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->layoutId) { + $res['LayoutId'] = $this->layoutId; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return ModifyCasterLayoutResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['LayoutId'])) { + $model->layoutId = $map['LayoutId']; + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/ModifyCasterProgramRequest.php b/vendor/alibabacloud/live-20161101/src/Models/ModifyCasterProgramRequest.php new file mode 100644 index 000000000..07482b517 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/ModifyCasterProgramRequest.php @@ -0,0 +1,84 @@ + 'CasterId', + 'episode' => 'Episode', + 'ownerId' => 'OwnerId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->casterId) { + $res['CasterId'] = $this->casterId; + } + if (null !== $this->episode) { + $res['Episode'] = []; + if (null !== $this->episode && \is_array($this->episode)) { + $n = 0; + foreach ($this->episode as $item) { + $res['Episode'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + return $res; + } + + /** + * @param array $map + * + * @return ModifyCasterProgramRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CasterId'])) { + $model->casterId = $map['CasterId']; + } + if (isset($map['Episode'])) { + if (!empty($map['Episode'])) { + $model->episode = []; + $n = 0; + foreach ($map['Episode'] as $item) { + $model->episode[$n++] = null !== $item ? episode::fromMap($item) : $item; + } + } + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/ModifyCasterProgramRequest/episode.php b/vendor/alibabacloud/live-20161101/src/Models/ModifyCasterProgramRequest/episode.php new file mode 100644 index 000000000..a06a0f51f --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/ModifyCasterProgramRequest/episode.php @@ -0,0 +1,133 @@ + 'ComponentId', + 'endTime' => 'EndTime', + 'episodeId' => 'EpisodeId', + 'episodeName' => 'EpisodeName', + 'episodeType' => 'EpisodeType', + 'resourceId' => 'ResourceId', + 'startTime' => 'StartTime', + 'switchType' => 'SwitchType', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->componentId) { + $res['ComponentId'] = $this->componentId; + } + if (null !== $this->endTime) { + $res['EndTime'] = $this->endTime; + } + if (null !== $this->episodeId) { + $res['EpisodeId'] = $this->episodeId; + } + if (null !== $this->episodeName) { + $res['EpisodeName'] = $this->episodeName; + } + if (null !== $this->episodeType) { + $res['EpisodeType'] = $this->episodeType; + } + if (null !== $this->resourceId) { + $res['ResourceId'] = $this->resourceId; + } + if (null !== $this->startTime) { + $res['StartTime'] = $this->startTime; + } + if (null !== $this->switchType) { + $res['SwitchType'] = $this->switchType; + } + + return $res; + } + + /** + * @param array $map + * + * @return episode + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['ComponentId'])) { + if (!empty($map['ComponentId'])) { + $model->componentId = $map['ComponentId']; + } + } + if (isset($map['EndTime'])) { + $model->endTime = $map['EndTime']; + } + if (isset($map['EpisodeId'])) { + $model->episodeId = $map['EpisodeId']; + } + if (isset($map['EpisodeName'])) { + $model->episodeName = $map['EpisodeName']; + } + if (isset($map['EpisodeType'])) { + $model->episodeType = $map['EpisodeType']; + } + if (isset($map['ResourceId'])) { + $model->resourceId = $map['ResourceId']; + } + if (isset($map['StartTime'])) { + $model->startTime = $map['StartTime']; + } + if (isset($map['SwitchType'])) { + $model->switchType = $map['SwitchType']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/ModifyCasterProgramResponse.php b/vendor/alibabacloud/live-20161101/src/Models/ModifyCasterProgramResponse.php new file mode 100644 index 000000000..86087cddc --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/ModifyCasterProgramResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return ModifyCasterProgramResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = ModifyCasterProgramResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/ModifyCasterProgramResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/ModifyCasterProgramResponseBody.php new file mode 100644 index 000000000..6c2a35449 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/ModifyCasterProgramResponseBody.php @@ -0,0 +1,59 @@ + 'CasterId', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->casterId) { + $res['CasterId'] = $this->casterId; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return ModifyCasterProgramResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CasterId'])) { + $model->casterId = $map['CasterId']; + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/ModifyCasterVideoResourceRequest.php b/vendor/alibabacloud/live-20161101/src/Models/ModifyCasterVideoResourceRequest.php new file mode 100644 index 000000000..ed271336e --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/ModifyCasterVideoResourceRequest.php @@ -0,0 +1,167 @@ + 'BeginOffset', + 'casterId' => 'CasterId', + 'endOffset' => 'EndOffset', + 'liveStreamUrl' => 'LiveStreamUrl', + 'materialId' => 'MaterialId', + 'ownerId' => 'OwnerId', + 'ptsCallbackInterval' => 'PtsCallbackInterval', + 'repeatNum' => 'RepeatNum', + 'resourceId' => 'ResourceId', + 'resourceName' => 'ResourceName', + 'vodUrl' => 'VodUrl', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->beginOffset) { + $res['BeginOffset'] = $this->beginOffset; + } + if (null !== $this->casterId) { + $res['CasterId'] = $this->casterId; + } + if (null !== $this->endOffset) { + $res['EndOffset'] = $this->endOffset; + } + if (null !== $this->liveStreamUrl) { + $res['LiveStreamUrl'] = $this->liveStreamUrl; + } + if (null !== $this->materialId) { + $res['MaterialId'] = $this->materialId; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->ptsCallbackInterval) { + $res['PtsCallbackInterval'] = $this->ptsCallbackInterval; + } + if (null !== $this->repeatNum) { + $res['RepeatNum'] = $this->repeatNum; + } + if (null !== $this->resourceId) { + $res['ResourceId'] = $this->resourceId; + } + if (null !== $this->resourceName) { + $res['ResourceName'] = $this->resourceName; + } + if (null !== $this->vodUrl) { + $res['VodUrl'] = $this->vodUrl; + } + + return $res; + } + + /** + * @param array $map + * + * @return ModifyCasterVideoResourceRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['BeginOffset'])) { + $model->beginOffset = $map['BeginOffset']; + } + if (isset($map['CasterId'])) { + $model->casterId = $map['CasterId']; + } + if (isset($map['EndOffset'])) { + $model->endOffset = $map['EndOffset']; + } + if (isset($map['LiveStreamUrl'])) { + $model->liveStreamUrl = $map['LiveStreamUrl']; + } + if (isset($map['MaterialId'])) { + $model->materialId = $map['MaterialId']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['PtsCallbackInterval'])) { + $model->ptsCallbackInterval = $map['PtsCallbackInterval']; + } + if (isset($map['RepeatNum'])) { + $model->repeatNum = $map['RepeatNum']; + } + if (isset($map['ResourceId'])) { + $model->resourceId = $map['ResourceId']; + } + if (isset($map['ResourceName'])) { + $model->resourceName = $map['ResourceName']; + } + if (isset($map['VodUrl'])) { + $model->vodUrl = $map['VodUrl']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/ModifyCasterVideoResourceResponse.php b/vendor/alibabacloud/live-20161101/src/Models/ModifyCasterVideoResourceResponse.php new file mode 100644 index 000000000..3f4654d29 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/ModifyCasterVideoResourceResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return ModifyCasterVideoResourceResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = ModifyCasterVideoResourceResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/ModifyCasterVideoResourceResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/ModifyCasterVideoResourceResponseBody.php new file mode 100644 index 000000000..f7bbf35ee --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/ModifyCasterVideoResourceResponseBody.php @@ -0,0 +1,71 @@ + 'CasterId', + 'requestId' => 'RequestId', + 'resourceId' => 'ResourceId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->casterId) { + $res['CasterId'] = $this->casterId; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->resourceId) { + $res['ResourceId'] = $this->resourceId; + } + + return $res; + } + + /** + * @param array $map + * + * @return ModifyCasterVideoResourceResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CasterId'])) { + $model->casterId = $map['CasterId']; + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['ResourceId'])) { + $model->resourceId = $map['ResourceId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/ModifyLiveDomainSchdmByPropertyRequest.php b/vendor/alibabacloud/live-20161101/src/Models/ModifyLiveDomainSchdmByPropertyRequest.php new file mode 100644 index 000000000..811471347 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/ModifyLiveDomainSchdmByPropertyRequest.php @@ -0,0 +1,71 @@ + 'DomainName', + 'ownerId' => 'OwnerId', + 'property' => 'Property', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->property) { + $res['Property'] = $this->property; + } + + return $res; + } + + /** + * @param array $map + * + * @return ModifyLiveDomainSchdmByPropertyRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['Property'])) { + $model->property = $map['Property']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/ModifyLiveDomainSchdmByPropertyResponse.php b/vendor/alibabacloud/live-20161101/src/Models/ModifyLiveDomainSchdmByPropertyResponse.php new file mode 100644 index 000000000..953c9c489 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/ModifyLiveDomainSchdmByPropertyResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return ModifyLiveDomainSchdmByPropertyResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = ModifyLiveDomainSchdmByPropertyResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/ModifyLiveDomainSchdmByPropertyResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/ModifyLiveDomainSchdmByPropertyResponseBody.php new file mode 100644 index 000000000..f9b017fe1 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/ModifyLiveDomainSchdmByPropertyResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return ModifyLiveDomainSchdmByPropertyResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/ModifyLiveRealtimeLogDeliveryRequest.php b/vendor/alibabacloud/live-20161101/src/Models/ModifyLiveRealtimeLogDeliveryRequest.php new file mode 100644 index 000000000..c11394a4e --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/ModifyLiveRealtimeLogDeliveryRequest.php @@ -0,0 +1,95 @@ + 'DomainName', + 'logstore' => 'Logstore', + 'ownerId' => 'OwnerId', + 'project' => 'Project', + 'region' => 'Region', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->logstore) { + $res['Logstore'] = $this->logstore; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->project) { + $res['Project'] = $this->project; + } + if (null !== $this->region) { + $res['Region'] = $this->region; + } + + return $res; + } + + /** + * @param array $map + * + * @return ModifyLiveRealtimeLogDeliveryRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['Logstore'])) { + $model->logstore = $map['Logstore']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['Project'])) { + $model->project = $map['Project']; + } + if (isset($map['Region'])) { + $model->region = $map['Region']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/ModifyLiveRealtimeLogDeliveryResponse.php b/vendor/alibabacloud/live-20161101/src/Models/ModifyLiveRealtimeLogDeliveryResponse.php new file mode 100644 index 000000000..588c51998 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/ModifyLiveRealtimeLogDeliveryResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return ModifyLiveRealtimeLogDeliveryResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = ModifyLiveRealtimeLogDeliveryResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/ModifyLiveRealtimeLogDeliveryResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/ModifyLiveRealtimeLogDeliveryResponseBody.php new file mode 100644 index 000000000..3d17a62a7 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/ModifyLiveRealtimeLogDeliveryResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return ModifyLiveRealtimeLogDeliveryResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/ModifyShowListRequest.php b/vendor/alibabacloud/live-20161101/src/Models/ModifyShowListRequest.php new file mode 100644 index 000000000..583a993d3 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/ModifyShowListRequest.php @@ -0,0 +1,119 @@ + 'CasterId', + 'highPriorityShowId' => 'HighPriorityShowId', + 'highPriorityShowStartTime' => 'HighPriorityShowStartTime', + 'ownerId' => 'OwnerId', + 'repeatTimes' => 'RepeatTimes', + 'showId' => 'ShowId', + 'spot' => 'Spot', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->casterId) { + $res['CasterId'] = $this->casterId; + } + if (null !== $this->highPriorityShowId) { + $res['HighPriorityShowId'] = $this->highPriorityShowId; + } + if (null !== $this->highPriorityShowStartTime) { + $res['HighPriorityShowStartTime'] = $this->highPriorityShowStartTime; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->repeatTimes) { + $res['RepeatTimes'] = $this->repeatTimes; + } + if (null !== $this->showId) { + $res['ShowId'] = $this->showId; + } + if (null !== $this->spot) { + $res['Spot'] = $this->spot; + } + + return $res; + } + + /** + * @param array $map + * + * @return ModifyShowListRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CasterId'])) { + $model->casterId = $map['CasterId']; + } + if (isset($map['HighPriorityShowId'])) { + $model->highPriorityShowId = $map['HighPriorityShowId']; + } + if (isset($map['HighPriorityShowStartTime'])) { + $model->highPriorityShowStartTime = $map['HighPriorityShowStartTime']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['RepeatTimes'])) { + $model->repeatTimes = $map['RepeatTimes']; + } + if (isset($map['ShowId'])) { + $model->showId = $map['ShowId']; + } + if (isset($map['Spot'])) { + $model->spot = $map['Spot']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/ModifyShowListResponse.php b/vendor/alibabacloud/live-20161101/src/Models/ModifyShowListResponse.php new file mode 100644 index 000000000..3241fd997 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/ModifyShowListResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return ModifyShowListResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = ModifyShowListResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/ModifyShowListResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/ModifyShowListResponseBody.php new file mode 100644 index 000000000..9a45d7394 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/ModifyShowListResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return ModifyShowListResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/ModifyStudioLayoutRequest.php b/vendor/alibabacloud/live-20161101/src/Models/ModifyStudioLayoutRequest.php new file mode 100644 index 000000000..72a547240 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/ModifyStudioLayoutRequest.php @@ -0,0 +1,143 @@ + 'BgImageConfig', + 'casterId' => 'CasterId', + 'commonConfig' => 'CommonConfig', + 'layerOrderConfigList' => 'LayerOrderConfigList', + 'layoutId' => 'LayoutId', + 'layoutName' => 'LayoutName', + 'mediaInputConfigList' => 'MediaInputConfigList', + 'ownerId' => 'OwnerId', + 'screenInputConfigList' => 'ScreenInputConfigList', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->bgImageConfig) { + $res['BgImageConfig'] = $this->bgImageConfig; + } + if (null !== $this->casterId) { + $res['CasterId'] = $this->casterId; + } + if (null !== $this->commonConfig) { + $res['CommonConfig'] = $this->commonConfig; + } + if (null !== $this->layerOrderConfigList) { + $res['LayerOrderConfigList'] = $this->layerOrderConfigList; + } + if (null !== $this->layoutId) { + $res['LayoutId'] = $this->layoutId; + } + if (null !== $this->layoutName) { + $res['LayoutName'] = $this->layoutName; + } + if (null !== $this->mediaInputConfigList) { + $res['MediaInputConfigList'] = $this->mediaInputConfigList; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->screenInputConfigList) { + $res['ScreenInputConfigList'] = $this->screenInputConfigList; + } + + return $res; + } + + /** + * @param array $map + * + * @return ModifyStudioLayoutRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['BgImageConfig'])) { + $model->bgImageConfig = $map['BgImageConfig']; + } + if (isset($map['CasterId'])) { + $model->casterId = $map['CasterId']; + } + if (isset($map['CommonConfig'])) { + $model->commonConfig = $map['CommonConfig']; + } + if (isset($map['LayerOrderConfigList'])) { + $model->layerOrderConfigList = $map['LayerOrderConfigList']; + } + if (isset($map['LayoutId'])) { + $model->layoutId = $map['LayoutId']; + } + if (isset($map['LayoutName'])) { + $model->layoutName = $map['LayoutName']; + } + if (isset($map['MediaInputConfigList'])) { + $model->mediaInputConfigList = $map['MediaInputConfigList']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['ScreenInputConfigList'])) { + $model->screenInputConfigList = $map['ScreenInputConfigList']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/ModifyStudioLayoutResponse.php b/vendor/alibabacloud/live-20161101/src/Models/ModifyStudioLayoutResponse.php new file mode 100644 index 000000000..9a4b4f6d8 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/ModifyStudioLayoutResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return ModifyStudioLayoutResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = ModifyStudioLayoutResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/ModifyStudioLayoutResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/ModifyStudioLayoutResponseBody.php new file mode 100644 index 000000000..6dc666348 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/ModifyStudioLayoutResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return ModifyStudioLayoutResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/OpenLiveShiftRequest.php b/vendor/alibabacloud/live-20161101/src/Models/OpenLiveShiftRequest.php new file mode 100644 index 000000000..df4c8cf29 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/OpenLiveShiftRequest.php @@ -0,0 +1,119 @@ + 'AppName', + 'domainName' => 'DomainName', + 'duration' => 'Duration', + 'ignoreTranscode' => 'IgnoreTranscode', + 'ownerId' => 'OwnerId', + 'streamName' => 'StreamName', + 'vision' => 'Vision', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->appName) { + $res['AppName'] = $this->appName; + } + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->duration) { + $res['Duration'] = $this->duration; + } + if (null !== $this->ignoreTranscode) { + $res['IgnoreTranscode'] = $this->ignoreTranscode; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->streamName) { + $res['StreamName'] = $this->streamName; + } + if (null !== $this->vision) { + $res['Vision'] = $this->vision; + } + + return $res; + } + + /** + * @param array $map + * + * @return OpenLiveShiftRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppName'])) { + $model->appName = $map['AppName']; + } + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['Duration'])) { + $model->duration = $map['Duration']; + } + if (isset($map['IgnoreTranscode'])) { + $model->ignoreTranscode = $map['IgnoreTranscode']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['StreamName'])) { + $model->streamName = $map['StreamName']; + } + if (isset($map['Vision'])) { + $model->vision = $map['Vision']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/OpenLiveShiftResponse.php b/vendor/alibabacloud/live-20161101/src/Models/OpenLiveShiftResponse.php new file mode 100644 index 000000000..c87f221f6 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/OpenLiveShiftResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return OpenLiveShiftResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = OpenLiveShiftResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/OpenLiveShiftResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/OpenLiveShiftResponseBody.php new file mode 100644 index 000000000..b898820d8 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/OpenLiveShiftResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return OpenLiveShiftResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/PlayChoosenShowRequest.php b/vendor/alibabacloud/live-20161101/src/Models/PlayChoosenShowRequest.php new file mode 100644 index 000000000..9e0ccd169 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/PlayChoosenShowRequest.php @@ -0,0 +1,71 @@ + 'CasterId', + 'ownerId' => 'OwnerId', + 'showId' => 'ShowId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->casterId) { + $res['CasterId'] = $this->casterId; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->showId) { + $res['ShowId'] = $this->showId; + } + + return $res; + } + + /** + * @param array $map + * + * @return PlayChoosenShowRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CasterId'])) { + $model->casterId = $map['CasterId']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['ShowId'])) { + $model->showId = $map['ShowId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/PlayChoosenShowResponse.php b/vendor/alibabacloud/live-20161101/src/Models/PlayChoosenShowResponse.php new file mode 100644 index 000000000..a32d4e576 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/PlayChoosenShowResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return PlayChoosenShowResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = PlayChoosenShowResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/PlayChoosenShowResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/PlayChoosenShowResponseBody.php new file mode 100644 index 000000000..11d8285ce --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/PlayChoosenShowResponseBody.php @@ -0,0 +1,59 @@ + 'RequestId', + 'showId' => 'ShowId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->showId) { + $res['ShowId'] = $this->showId; + } + + return $res; + } + + /** + * @param array $map + * + * @return PlayChoosenShowResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['ShowId'])) { + $model->showId = $map['ShowId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/PublishLiveStagingConfigToProductionRequest.php b/vendor/alibabacloud/live-20161101/src/Models/PublishLiveStagingConfigToProductionRequest.php new file mode 100644 index 000000000..05f0851b9 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/PublishLiveStagingConfigToProductionRequest.php @@ -0,0 +1,71 @@ + 'DomainName', + 'functionName' => 'FunctionName', + 'ownerId' => 'OwnerId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->functionName) { + $res['FunctionName'] = $this->functionName; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + return $res; + } + + /** + * @param array $map + * + * @return PublishLiveStagingConfigToProductionRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['FunctionName'])) { + $model->functionName = $map['FunctionName']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/PublishLiveStagingConfigToProductionResponse.php b/vendor/alibabacloud/live-20161101/src/Models/PublishLiveStagingConfigToProductionResponse.php new file mode 100644 index 000000000..b8c90ab20 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/PublishLiveStagingConfigToProductionResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return PublishLiveStagingConfigToProductionResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = PublishLiveStagingConfigToProductionResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/PublishLiveStagingConfigToProductionResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/PublishLiveStagingConfigToProductionResponseBody.php new file mode 100644 index 000000000..23a990d6e --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/PublishLiveStagingConfigToProductionResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return PublishLiveStagingConfigToProductionResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/QueryMessageAppRequest.php b/vendor/alibabacloud/live-20161101/src/Models/QueryMessageAppRequest.php new file mode 100644 index 000000000..1814f64a7 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/QueryMessageAppRequest.php @@ -0,0 +1,95 @@ + 'AppId', + 'appName' => 'AppName', + 'pageNum' => 'PageNum', + 'pageSize' => 'PageSize', + 'sortType' => 'SortType', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->appId) { + $res['AppId'] = $this->appId; + } + if (null !== $this->appName) { + $res['AppName'] = $this->appName; + } + if (null !== $this->pageNum) { + $res['PageNum'] = $this->pageNum; + } + if (null !== $this->pageSize) { + $res['PageSize'] = $this->pageSize; + } + if (null !== $this->sortType) { + $res['SortType'] = $this->sortType; + } + + return $res; + } + + /** + * @param array $map + * + * @return QueryMessageAppRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppId'])) { + $model->appId = $map['AppId']; + } + if (isset($map['AppName'])) { + $model->appName = $map['AppName']; + } + if (isset($map['PageNum'])) { + $model->pageNum = $map['PageNum']; + } + if (isset($map['PageSize'])) { + $model->pageSize = $map['PageSize']; + } + if (isset($map['SortType'])) { + $model->sortType = $map['SortType']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/QueryMessageAppResponse.php b/vendor/alibabacloud/live-20161101/src/Models/QueryMessageAppResponse.php new file mode 100644 index 000000000..71c9090c3 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/QueryMessageAppResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return QueryMessageAppResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = QueryMessageAppResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/QueryMessageAppResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/QueryMessageAppResponseBody.php new file mode 100644 index 000000000..5df088e38 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/QueryMessageAppResponseBody.php @@ -0,0 +1,72 @@ + 'RequestId', + 'result' => 'Result', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->result) { + $res['Result'] = []; + if (null !== $this->result && \is_array($this->result)) { + $n = 0; + foreach ($this->result as $item) { + $res['Result'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return QueryMessageAppResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['Result'])) { + if (!empty($map['Result'])) { + $model->result = []; + $n = 0; + foreach ($map['Result'] as $item) { + $model->result[$n++] = null !== $item ? result::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/QueryMessageAppResponseBody/result.php b/vendor/alibabacloud/live-20161101/src/Models/QueryMessageAppResponseBody/result.php new file mode 100644 index 000000000..1c4977071 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/QueryMessageAppResponseBody/result.php @@ -0,0 +1,84 @@ + 'AppList', + 'hasMore' => 'HasMore', + 'totalCount' => 'TotalCount', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->appList) { + $res['AppList'] = []; + if (null !== $this->appList && \is_array($this->appList)) { + $n = 0; + foreach ($this->appList as $item) { + $res['AppList'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + if (null !== $this->hasMore) { + $res['HasMore'] = $this->hasMore; + } + if (null !== $this->totalCount) { + $res['TotalCount'] = $this->totalCount; + } + + return $res; + } + + /** + * @param array $map + * + * @return result + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppList'])) { + if (!empty($map['AppList'])) { + $model->appList = []; + $n = 0; + foreach ($map['AppList'] as $item) { + $model->appList[$n++] = null !== $item ? appList::fromMap($item) : $item; + } + } + } + if (isset($map['HasMore'])) { + $model->hasMore = $map['HasMore']; + } + if (isset($map['TotalCount'])) { + $model->totalCount = $map['TotalCount']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/QueryMessageAppResponseBody/result/appList.php b/vendor/alibabacloud/live-20161101/src/Models/QueryMessageAppResponseBody/result/appList.php new file mode 100644 index 000000000..9a6666d2a --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/QueryMessageAppResponseBody/result/appList.php @@ -0,0 +1,107 @@ + 'AppConfig', + 'appId' => 'AppId', + 'appName' => 'AppName', + 'createTime' => 'CreateTime', + 'extension' => 'Extension', + 'status' => 'Status', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->appConfig) { + $res['AppConfig'] = $this->appConfig; + } + if (null !== $this->appId) { + $res['AppId'] = $this->appId; + } + if (null !== $this->appName) { + $res['AppName'] = $this->appName; + } + if (null !== $this->createTime) { + $res['CreateTime'] = $this->createTime; + } + if (null !== $this->extension) { + $res['Extension'] = $this->extension; + } + if (null !== $this->status) { + $res['Status'] = $this->status; + } + + return $res; + } + + /** + * @param array $map + * + * @return appList + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppConfig'])) { + $model->appConfig = $map['AppConfig']; + } + if (isset($map['AppId'])) { + $model->appId = $map['AppId']; + } + if (isset($map['AppName'])) { + $model->appName = $map['AppName']; + } + if (isset($map['CreateTime'])) { + $model->createTime = $map['CreateTime']; + } + if (isset($map['Extension'])) { + $model->extension = $map['Extension']; + } + if (isset($map['Status'])) { + $model->status = $map['Status']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/QuerySnapshotCallbackAuthRequest.php b/vendor/alibabacloud/live-20161101/src/Models/QuerySnapshotCallbackAuthRequest.php new file mode 100644 index 000000000..2961984d1 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/QuerySnapshotCallbackAuthRequest.php @@ -0,0 +1,59 @@ + 'DomainName', + 'ownerId' => 'OwnerId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + return $res; + } + + /** + * @param array $map + * + * @return QuerySnapshotCallbackAuthRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/QuerySnapshotCallbackAuthResponse.php b/vendor/alibabacloud/live-20161101/src/Models/QuerySnapshotCallbackAuthResponse.php new file mode 100644 index 000000000..62938fbed --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/QuerySnapshotCallbackAuthResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return QuerySnapshotCallbackAuthResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = QuerySnapshotCallbackAuthResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/QuerySnapshotCallbackAuthResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/QuerySnapshotCallbackAuthResponseBody.php new file mode 100644 index 000000000..fb9a47556 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/QuerySnapshotCallbackAuthResponseBody.php @@ -0,0 +1,83 @@ + 'CallbackAuthKey', + 'callbackReqAuth' => 'CallbackReqAuth', + 'domainName' => 'DomainName', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->callbackAuthKey) { + $res['CallbackAuthKey'] = $this->callbackAuthKey; + } + if (null !== $this->callbackReqAuth) { + $res['CallbackReqAuth'] = $this->callbackReqAuth; + } + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return QuerySnapshotCallbackAuthResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CallbackAuthKey'])) { + $model->callbackAuthKey = $map['CallbackAuthKey']; + } + if (isset($map['CallbackReqAuth'])) { + $model->callbackReqAuth = $map['CallbackReqAuth']; + } + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/RealTimeRecordCommandRequest.php b/vendor/alibabacloud/live-20161101/src/Models/RealTimeRecordCommandRequest.php new file mode 100644 index 000000000..f40eb9f2c --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/RealTimeRecordCommandRequest.php @@ -0,0 +1,95 @@ + 'AppName', + 'command' => 'Command', + 'domainName' => 'DomainName', + 'ownerId' => 'OwnerId', + 'streamName' => 'StreamName', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->appName) { + $res['AppName'] = $this->appName; + } + if (null !== $this->command) { + $res['Command'] = $this->command; + } + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->streamName) { + $res['StreamName'] = $this->streamName; + } + + return $res; + } + + /** + * @param array $map + * + * @return RealTimeRecordCommandRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppName'])) { + $model->appName = $map['AppName']; + } + if (isset($map['Command'])) { + $model->command = $map['Command']; + } + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['StreamName'])) { + $model->streamName = $map['StreamName']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/RealTimeRecordCommandResponse.php b/vendor/alibabacloud/live-20161101/src/Models/RealTimeRecordCommandResponse.php new file mode 100644 index 000000000..407b5eeb4 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/RealTimeRecordCommandResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return RealTimeRecordCommandResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = RealTimeRecordCommandResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/RealTimeRecordCommandResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/RealTimeRecordCommandResponseBody.php new file mode 100644 index 000000000..e0246cfa6 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/RealTimeRecordCommandResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return RealTimeRecordCommandResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/RealTimeSnapshotCommandRequest.php b/vendor/alibabacloud/live-20161101/src/Models/RealTimeSnapshotCommandRequest.php new file mode 100644 index 000000000..b82f9ebc6 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/RealTimeSnapshotCommandRequest.php @@ -0,0 +1,131 @@ + 'AppName', + 'command' => 'Command', + 'domainName' => 'DomainName', + 'interval' => 'Interval', + 'mode' => 'Mode', + 'ownerId' => 'OwnerId', + 'source' => 'Source', + 'streamName' => 'StreamName', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->appName) { + $res['AppName'] = $this->appName; + } + if (null !== $this->command) { + $res['Command'] = $this->command; + } + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->interval) { + $res['Interval'] = $this->interval; + } + if (null !== $this->mode) { + $res['Mode'] = $this->mode; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->source) { + $res['Source'] = $this->source; + } + if (null !== $this->streamName) { + $res['StreamName'] = $this->streamName; + } + + return $res; + } + + /** + * @param array $map + * + * @return RealTimeSnapshotCommandRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppName'])) { + $model->appName = $map['AppName']; + } + if (isset($map['Command'])) { + $model->command = $map['Command']; + } + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['Interval'])) { + $model->interval = $map['Interval']; + } + if (isset($map['Mode'])) { + $model->mode = $map['Mode']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['Source'])) { + $model->source = $map['Source']; + } + if (isset($map['StreamName'])) { + $model->streamName = $map['StreamName']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/RealTimeSnapshotCommandResponse.php b/vendor/alibabacloud/live-20161101/src/Models/RealTimeSnapshotCommandResponse.php new file mode 100644 index 000000000..4c6fb83fa --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/RealTimeSnapshotCommandResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return RealTimeSnapshotCommandResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = RealTimeSnapshotCommandResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/RealTimeSnapshotCommandResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/RealTimeSnapshotCommandResponseBody.php new file mode 100644 index 000000000..be904c8fe --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/RealTimeSnapshotCommandResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return RealTimeSnapshotCommandResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/RemoveShowFromShowListRequest.php b/vendor/alibabacloud/live-20161101/src/Models/RemoveShowFromShowListRequest.php new file mode 100644 index 000000000..e245a0fc8 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/RemoveShowFromShowListRequest.php @@ -0,0 +1,97 @@ + 'CasterId', + 'ownerId' => 'OwnerId', + 'showId' => 'ShowId', + 'isBatchMode' => 'isBatchMode', + 'showIdList' => 'showIdList', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->casterId) { + $res['CasterId'] = $this->casterId; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->showId) { + $res['ShowId'] = $this->showId; + } + if (null !== $this->isBatchMode) { + $res['isBatchMode'] = $this->isBatchMode; + } + if (null !== $this->showIdList) { + $res['showIdList'] = $this->showIdList; + } + + return $res; + } + + /** + * @param array $map + * + * @return RemoveShowFromShowListRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CasterId'])) { + $model->casterId = $map['CasterId']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['ShowId'])) { + $model->showId = $map['ShowId']; + } + if (isset($map['isBatchMode'])) { + $model->isBatchMode = $map['isBatchMode']; + } + if (isset($map['showIdList'])) { + if (!empty($map['showIdList'])) { + $model->showIdList = $map['showIdList']; + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/RemoveShowFromShowListResponse.php b/vendor/alibabacloud/live-20161101/src/Models/RemoveShowFromShowListResponse.php new file mode 100644 index 000000000..a46fdb68a --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/RemoveShowFromShowListResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return RemoveShowFromShowListResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = RemoveShowFromShowListResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/RemoveShowFromShowListResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/RemoveShowFromShowListResponseBody.php new file mode 100644 index 000000000..be2ea3b5b --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/RemoveShowFromShowListResponseBody.php @@ -0,0 +1,83 @@ + 'RequestId', + 'showId' => 'ShowId', + 'failedList' => 'failedList', + 'successfulShowIds' => 'successfulShowIds', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->showId) { + $res['ShowId'] = $this->showId; + } + if (null !== $this->failedList) { + $res['failedList'] = $this->failedList; + } + if (null !== $this->successfulShowIds) { + $res['successfulShowIds'] = $this->successfulShowIds; + } + + return $res; + } + + /** + * @param array $map + * + * @return RemoveShowFromShowListResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['ShowId'])) { + $model->showId = $map['ShowId']; + } + if (isset($map['failedList'])) { + $model->failedList = $map['failedList']; + } + if (isset($map['successfulShowIds'])) { + $model->successfulShowIds = $map['successfulShowIds']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/RestartCasterRequest.php b/vendor/alibabacloud/live-20161101/src/Models/RestartCasterRequest.php new file mode 100644 index 000000000..8f60817d8 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/RestartCasterRequest.php @@ -0,0 +1,59 @@ + 'CasterId', + 'ownerId' => 'OwnerId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->casterId) { + $res['CasterId'] = $this->casterId; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + return $res; + } + + /** + * @param array $map + * + * @return RestartCasterRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CasterId'])) { + $model->casterId = $map['CasterId']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/RestartCasterResponse.php b/vendor/alibabacloud/live-20161101/src/Models/RestartCasterResponse.php new file mode 100644 index 000000000..bb6c87a3d --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/RestartCasterResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return RestartCasterResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = RestartCasterResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/RestartCasterResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/RestartCasterResponseBody.php new file mode 100644 index 000000000..9fb28e486 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/RestartCasterResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return RestartCasterResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/ResumeLiveStreamRequest.php b/vendor/alibabacloud/live-20161101/src/Models/ResumeLiveStreamRequest.php new file mode 100644 index 000000000..081ede66b --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/ResumeLiveStreamRequest.php @@ -0,0 +1,107 @@ + 'AppName', + 'domainName' => 'DomainName', + 'liveStreamType' => 'LiveStreamType', + 'ownerId' => 'OwnerId', + 'securityToken' => 'SecurityToken', + 'streamName' => 'StreamName', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->appName) { + $res['AppName'] = $this->appName; + } + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->liveStreamType) { + $res['LiveStreamType'] = $this->liveStreamType; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->securityToken) { + $res['SecurityToken'] = $this->securityToken; + } + if (null !== $this->streamName) { + $res['StreamName'] = $this->streamName; + } + + return $res; + } + + /** + * @param array $map + * + * @return ResumeLiveStreamRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppName'])) { + $model->appName = $map['AppName']; + } + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['LiveStreamType'])) { + $model->liveStreamType = $map['LiveStreamType']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['SecurityToken'])) { + $model->securityToken = $map['SecurityToken']; + } + if (isset($map['StreamName'])) { + $model->streamName = $map['StreamName']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/ResumeLiveStreamResponse.php b/vendor/alibabacloud/live-20161101/src/Models/ResumeLiveStreamResponse.php new file mode 100644 index 000000000..ad6841dc4 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/ResumeLiveStreamResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return ResumeLiveStreamResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = ResumeLiveStreamResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/ResumeLiveStreamResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/ResumeLiveStreamResponseBody.php new file mode 100644 index 000000000..493a2612f --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/ResumeLiveStreamResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return ResumeLiveStreamResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/RollbackLiveStagingConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/RollbackLiveStagingConfigRequest.php new file mode 100644 index 000000000..2022a147e --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/RollbackLiveStagingConfigRequest.php @@ -0,0 +1,71 @@ + 'DomainName', + 'functionName' => 'FunctionName', + 'ownerId' => 'OwnerId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->functionName) { + $res['FunctionName'] = $this->functionName; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + return $res; + } + + /** + * @param array $map + * + * @return RollbackLiveStagingConfigRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['FunctionName'])) { + $model->functionName = $map['FunctionName']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/RollbackLiveStagingConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/RollbackLiveStagingConfigResponse.php new file mode 100644 index 000000000..d62ade729 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/RollbackLiveStagingConfigResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return RollbackLiveStagingConfigResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = RollbackLiveStagingConfigResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/RollbackLiveStagingConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/RollbackLiveStagingConfigResponseBody.php new file mode 100644 index 000000000..c830b5718 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/RollbackLiveStagingConfigResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return RollbackLiveStagingConfigResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/SendLikeRequest.php b/vendor/alibabacloud/live-20161101/src/Models/SendLikeRequest.php new file mode 100644 index 000000000..5af6b0a43 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/SendLikeRequest.php @@ -0,0 +1,95 @@ + 'AppId', + 'broadCastType' => 'BroadCastType', + 'count' => 'Count', + 'groupId' => 'GroupId', + 'operatorUserId' => 'OperatorUserId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->appId) { + $res['AppId'] = $this->appId; + } + if (null !== $this->broadCastType) { + $res['BroadCastType'] = $this->broadCastType; + } + if (null !== $this->count) { + $res['Count'] = $this->count; + } + if (null !== $this->groupId) { + $res['GroupId'] = $this->groupId; + } + if (null !== $this->operatorUserId) { + $res['OperatorUserId'] = $this->operatorUserId; + } + + return $res; + } + + /** + * @param array $map + * + * @return SendLikeRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppId'])) { + $model->appId = $map['AppId']; + } + if (isset($map['BroadCastType'])) { + $model->broadCastType = $map['BroadCastType']; + } + if (isset($map['Count'])) { + $model->count = $map['Count']; + } + if (isset($map['GroupId'])) { + $model->groupId = $map['GroupId']; + } + if (isset($map['OperatorUserId'])) { + $model->operatorUserId = $map['OperatorUserId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/SendLikeResponse.php b/vendor/alibabacloud/live-20161101/src/Models/SendLikeResponse.php new file mode 100644 index 000000000..55e4cbfd1 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/SendLikeResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return SendLikeResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = SendLikeResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/SendLikeResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/SendLikeResponseBody.php new file mode 100644 index 000000000..0d4f168a1 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/SendLikeResponseBody.php @@ -0,0 +1,60 @@ + 'RequestId', + 'result' => 'Result', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->result) { + $res['Result'] = null !== $this->result ? $this->result->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return SendLikeResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['Result'])) { + $model->result = result::fromMap($map['Result']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/SendLikeResponseBody/result.php b/vendor/alibabacloud/live-20161101/src/Models/SendLikeResponseBody/result.php new file mode 100644 index 000000000..f4458ad16 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/SendLikeResponseBody/result.php @@ -0,0 +1,47 @@ + 'LikeCount', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->likeCount) { + $res['LikeCount'] = $this->likeCount; + } + + return $res; + } + + /** + * @param array $map + * + * @return result + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['LikeCount'])) { + $model->likeCount = $map['LikeCount']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/SendMessageToGroupRequest.php b/vendor/alibabacloud/live-20161101/src/Models/SendMessageToGroupRequest.php new file mode 100644 index 000000000..82884c987 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/SendMessageToGroupRequest.php @@ -0,0 +1,95 @@ + 'AppId', + 'data' => 'Data', + 'groupId' => 'GroupId', + 'operatorUserId' => 'OperatorUserId', + 'type' => 'Type', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->appId) { + $res['AppId'] = $this->appId; + } + if (null !== $this->data) { + $res['Data'] = $this->data; + } + if (null !== $this->groupId) { + $res['GroupId'] = $this->groupId; + } + if (null !== $this->operatorUserId) { + $res['OperatorUserId'] = $this->operatorUserId; + } + if (null !== $this->type) { + $res['Type'] = $this->type; + } + + return $res; + } + + /** + * @param array $map + * + * @return SendMessageToGroupRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppId'])) { + $model->appId = $map['AppId']; + } + if (isset($map['Data'])) { + $model->data = $map['Data']; + } + if (isset($map['GroupId'])) { + $model->groupId = $map['GroupId']; + } + if (isset($map['OperatorUserId'])) { + $model->operatorUserId = $map['OperatorUserId']; + } + if (isset($map['Type'])) { + $model->type = $map['Type']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/SendMessageToGroupResponse.php b/vendor/alibabacloud/live-20161101/src/Models/SendMessageToGroupResponse.php new file mode 100644 index 000000000..506420d96 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/SendMessageToGroupResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return SendMessageToGroupResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = SendMessageToGroupResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/SendMessageToGroupResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/SendMessageToGroupResponseBody.php new file mode 100644 index 000000000..86418e50f --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/SendMessageToGroupResponseBody.php @@ -0,0 +1,60 @@ + 'RequestId', + 'result' => 'Result', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->result) { + $res['Result'] = null !== $this->result ? $this->result->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return SendMessageToGroupResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['Result'])) { + $model->result = result::fromMap($map['Result']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/SendMessageToGroupResponseBody/result.php b/vendor/alibabacloud/live-20161101/src/Models/SendMessageToGroupResponseBody/result.php new file mode 100644 index 000000000..e51c6f5c8 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/SendMessageToGroupResponseBody/result.php @@ -0,0 +1,47 @@ + 'MessageId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->messageId) { + $res['MessageId'] = $this->messageId; + } + + return $res; + } + + /** + * @param array $map + * + * @return result + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['MessageId'])) { + $model->messageId = $map['MessageId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/SendMessageToGroupUsersRequest.php b/vendor/alibabacloud/live-20161101/src/Models/SendMessageToGroupUsersRequest.php new file mode 100644 index 000000000..a14ba08c6 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/SendMessageToGroupUsersRequest.php @@ -0,0 +1,109 @@ + 'AppId', + 'data' => 'Data', + 'groupId' => 'GroupId', + 'operatorUserId' => 'OperatorUserId', + 'receiverIdList' => 'ReceiverIdList', + 'type' => 'Type', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->appId) { + $res['AppId'] = $this->appId; + } + if (null !== $this->data) { + $res['Data'] = $this->data; + } + if (null !== $this->groupId) { + $res['GroupId'] = $this->groupId; + } + if (null !== $this->operatorUserId) { + $res['OperatorUserId'] = $this->operatorUserId; + } + if (null !== $this->receiverIdList) { + $res['ReceiverIdList'] = $this->receiverIdList; + } + if (null !== $this->type) { + $res['Type'] = $this->type; + } + + return $res; + } + + /** + * @param array $map + * + * @return SendMessageToGroupUsersRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppId'])) { + $model->appId = $map['AppId']; + } + if (isset($map['Data'])) { + $model->data = $map['Data']; + } + if (isset($map['GroupId'])) { + $model->groupId = $map['GroupId']; + } + if (isset($map['OperatorUserId'])) { + $model->operatorUserId = $map['OperatorUserId']; + } + if (isset($map['ReceiverIdList'])) { + if (!empty($map['ReceiverIdList'])) { + $model->receiverIdList = $map['ReceiverIdList']; + } + } + if (isset($map['Type'])) { + $model->type = $map['Type']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/SendMessageToGroupUsersResponse.php b/vendor/alibabacloud/live-20161101/src/Models/SendMessageToGroupUsersResponse.php new file mode 100644 index 000000000..0ff167ff0 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/SendMessageToGroupUsersResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return SendMessageToGroupUsersResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = SendMessageToGroupUsersResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/SendMessageToGroupUsersResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/SendMessageToGroupUsersResponseBody.php new file mode 100644 index 000000000..63ef56a1f --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/SendMessageToGroupUsersResponseBody.php @@ -0,0 +1,60 @@ + 'RequestId', + 'result' => 'Result', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->result) { + $res['Result'] = null !== $this->result ? $this->result->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return SendMessageToGroupUsersResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['Result'])) { + $model->result = result::fromMap($map['Result']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/SendMessageToGroupUsersResponseBody/result.php b/vendor/alibabacloud/live-20161101/src/Models/SendMessageToGroupUsersResponseBody/result.php new file mode 100644 index 000000000..1f637b1b5 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/SendMessageToGroupUsersResponseBody/result.php @@ -0,0 +1,47 @@ + 'MessageId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->messageId) { + $res['MessageId'] = $this->messageId; + } + + return $res; + } + + /** + * @param array $map + * + * @return result + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['MessageId'])) { + $model->messageId = $map['MessageId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/SendMessageToGroupUsersShrinkRequest.php b/vendor/alibabacloud/live-20161101/src/Models/SendMessageToGroupUsersShrinkRequest.php new file mode 100644 index 000000000..14ec87b4a --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/SendMessageToGroupUsersShrinkRequest.php @@ -0,0 +1,107 @@ + 'AppId', + 'data' => 'Data', + 'groupId' => 'GroupId', + 'operatorUserId' => 'OperatorUserId', + 'receiverIdListShrink' => 'ReceiverIdList', + 'type' => 'Type', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->appId) { + $res['AppId'] = $this->appId; + } + if (null !== $this->data) { + $res['Data'] = $this->data; + } + if (null !== $this->groupId) { + $res['GroupId'] = $this->groupId; + } + if (null !== $this->operatorUserId) { + $res['OperatorUserId'] = $this->operatorUserId; + } + if (null !== $this->receiverIdListShrink) { + $res['ReceiverIdList'] = $this->receiverIdListShrink; + } + if (null !== $this->type) { + $res['Type'] = $this->type; + } + + return $res; + } + + /** + * @param array $map + * + * @return SendMessageToGroupUsersShrinkRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppId'])) { + $model->appId = $map['AppId']; + } + if (isset($map['Data'])) { + $model->data = $map['Data']; + } + if (isset($map['GroupId'])) { + $model->groupId = $map['GroupId']; + } + if (isset($map['OperatorUserId'])) { + $model->operatorUserId = $map['OperatorUserId']; + } + if (isset($map['ReceiverIdList'])) { + $model->receiverIdListShrink = $map['ReceiverIdList']; + } + if (isset($map['Type'])) { + $model->type = $map['Type']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/SendRoomNotificationRequest.php b/vendor/alibabacloud/live-20161101/src/Models/SendRoomNotificationRequest.php new file mode 100644 index 000000000..cd776f87a --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/SendRoomNotificationRequest.php @@ -0,0 +1,107 @@ + 'AppId', + 'appUid' => 'AppUid', + 'data' => 'Data', + 'ownerId' => 'OwnerId', + 'priority' => 'Priority', + 'roomId' => 'RoomId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->appId) { + $res['AppId'] = $this->appId; + } + if (null !== $this->appUid) { + $res['AppUid'] = $this->appUid; + } + if (null !== $this->data) { + $res['Data'] = $this->data; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->priority) { + $res['Priority'] = $this->priority; + } + if (null !== $this->roomId) { + $res['RoomId'] = $this->roomId; + } + + return $res; + } + + /** + * @param array $map + * + * @return SendRoomNotificationRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppId'])) { + $model->appId = $map['AppId']; + } + if (isset($map['AppUid'])) { + $model->appUid = $map['AppUid']; + } + if (isset($map['Data'])) { + $model->data = $map['Data']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['Priority'])) { + $model->priority = $map['Priority']; + } + if (isset($map['RoomId'])) { + $model->roomId = $map['RoomId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/SendRoomNotificationResponse.php b/vendor/alibabacloud/live-20161101/src/Models/SendRoomNotificationResponse.php new file mode 100644 index 000000000..3d6a95fe7 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/SendRoomNotificationResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return SendRoomNotificationResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = SendRoomNotificationResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/SendRoomNotificationResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/SendRoomNotificationResponseBody.php new file mode 100644 index 000000000..5bab7b823 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/SendRoomNotificationResponseBody.php @@ -0,0 +1,59 @@ + 'MessageId', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->messageId) { + $res['MessageId'] = $this->messageId; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return SendRoomNotificationResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['MessageId'])) { + $model->messageId = $map['MessageId']; + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/SendRoomUserNotificationRequest.php b/vendor/alibabacloud/live-20161101/src/Models/SendRoomUserNotificationRequest.php new file mode 100644 index 000000000..084823f05 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/SendRoomUserNotificationRequest.php @@ -0,0 +1,119 @@ + 'AppId', + 'appUid' => 'AppUid', + 'data' => 'Data', + 'ownerId' => 'OwnerId', + 'priority' => 'Priority', + 'roomId' => 'RoomId', + 'toAppUid' => 'ToAppUid', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->appId) { + $res['AppId'] = $this->appId; + } + if (null !== $this->appUid) { + $res['AppUid'] = $this->appUid; + } + if (null !== $this->data) { + $res['Data'] = $this->data; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->priority) { + $res['Priority'] = $this->priority; + } + if (null !== $this->roomId) { + $res['RoomId'] = $this->roomId; + } + if (null !== $this->toAppUid) { + $res['ToAppUid'] = $this->toAppUid; + } + + return $res; + } + + /** + * @param array $map + * + * @return SendRoomUserNotificationRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppId'])) { + $model->appId = $map['AppId']; + } + if (isset($map['AppUid'])) { + $model->appUid = $map['AppUid']; + } + if (isset($map['Data'])) { + $model->data = $map['Data']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['Priority'])) { + $model->priority = $map['Priority']; + } + if (isset($map['RoomId'])) { + $model->roomId = $map['RoomId']; + } + if (isset($map['ToAppUid'])) { + $model->toAppUid = $map['ToAppUid']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/SendRoomUserNotificationResponse.php b/vendor/alibabacloud/live-20161101/src/Models/SendRoomUserNotificationResponse.php new file mode 100644 index 000000000..3c4da5443 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/SendRoomUserNotificationResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return SendRoomUserNotificationResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = SendRoomUserNotificationResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/SendRoomUserNotificationResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/SendRoomUserNotificationResponseBody.php new file mode 100644 index 000000000..c102704d2 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/SendRoomUserNotificationResponseBody.php @@ -0,0 +1,59 @@ + 'MessageId', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->messageId) { + $res['MessageId'] = $this->messageId; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return SendRoomUserNotificationResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['MessageId'])) { + $model->messageId = $map['MessageId']; + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/SetBoardCallbackRequest.php b/vendor/alibabacloud/live-20161101/src/Models/SetBoardCallbackRequest.php new file mode 100644 index 000000000..caa7b13c3 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/SetBoardCallbackRequest.php @@ -0,0 +1,119 @@ + 'OwnerId', + 'appId' => 'AppId', + 'authKey' => 'AuthKey', + 'authSwitch' => 'AuthSwitch', + 'callbackEnable' => 'CallbackEnable', + 'callbackUri' => 'CallbackUri', + 'callbackEvents' => 'CallbackEvents', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->appId) { + $res['AppId'] = $this->appId; + } + if (null !== $this->authKey) { + $res['AuthKey'] = $this->authKey; + } + if (null !== $this->authSwitch) { + $res['AuthSwitch'] = $this->authSwitch; + } + if (null !== $this->callbackEnable) { + $res['CallbackEnable'] = $this->callbackEnable; + } + if (null !== $this->callbackUri) { + $res['CallbackUri'] = $this->callbackUri; + } + if (null !== $this->callbackEvents) { + $res['CallbackEvents'] = $this->callbackEvents; + } + + return $res; + } + + /** + * @param array $map + * + * @return SetBoardCallbackRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['AppId'])) { + $model->appId = $map['AppId']; + } + if (isset($map['AuthKey'])) { + $model->authKey = $map['AuthKey']; + } + if (isset($map['AuthSwitch'])) { + $model->authSwitch = $map['AuthSwitch']; + } + if (isset($map['CallbackEnable'])) { + $model->callbackEnable = $map['CallbackEnable']; + } + if (isset($map['CallbackUri'])) { + $model->callbackUri = $map['CallbackUri']; + } + if (isset($map['CallbackEvents'])) { + $model->callbackEvents = $map['CallbackEvents']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/SetBoardCallbackResponse.php b/vendor/alibabacloud/live-20161101/src/Models/SetBoardCallbackResponse.php new file mode 100644 index 000000000..39ed15f88 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/SetBoardCallbackResponse.php @@ -0,0 +1,61 @@ + 'headers', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return SetBoardCallbackResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['body'])) { + $model->body = SetBoardCallbackResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/SetBoardCallbackResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/SetBoardCallbackResponseBody.php new file mode 100644 index 000000000..d8446af3a --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/SetBoardCallbackResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return SetBoardCallbackResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/SetCasterChannelRequest.php b/vendor/alibabacloud/live-20161101/src/Models/SetCasterChannelRequest.php new file mode 100644 index 000000000..3711ba26e --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/SetCasterChannelRequest.php @@ -0,0 +1,119 @@ + 'CasterId', + 'channelId' => 'ChannelId', + 'faceBeauty' => 'FaceBeauty', + 'ownerId' => 'OwnerId', + 'playStatus' => 'PlayStatus', + 'resourceId' => 'ResourceId', + 'seekOffset' => 'SeekOffset', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->casterId) { + $res['CasterId'] = $this->casterId; + } + if (null !== $this->channelId) { + $res['ChannelId'] = $this->channelId; + } + if (null !== $this->faceBeauty) { + $res['FaceBeauty'] = $this->faceBeauty; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->playStatus) { + $res['PlayStatus'] = $this->playStatus; + } + if (null !== $this->resourceId) { + $res['ResourceId'] = $this->resourceId; + } + if (null !== $this->seekOffset) { + $res['SeekOffset'] = $this->seekOffset; + } + + return $res; + } + + /** + * @param array $map + * + * @return SetCasterChannelRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CasterId'])) { + $model->casterId = $map['CasterId']; + } + if (isset($map['ChannelId'])) { + $model->channelId = $map['ChannelId']; + } + if (isset($map['FaceBeauty'])) { + $model->faceBeauty = $map['FaceBeauty']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['PlayStatus'])) { + $model->playStatus = $map['PlayStatus']; + } + if (isset($map['ResourceId'])) { + $model->resourceId = $map['ResourceId']; + } + if (isset($map['SeekOffset'])) { + $model->seekOffset = $map['SeekOffset']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/SetCasterChannelResponse.php b/vendor/alibabacloud/live-20161101/src/Models/SetCasterChannelResponse.php new file mode 100644 index 000000000..fad480425 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/SetCasterChannelResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return SetCasterChannelResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = SetCasterChannelResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/SetCasterChannelResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/SetCasterChannelResponseBody.php new file mode 100644 index 000000000..e3b58a919 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/SetCasterChannelResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return SetCasterChannelResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/SetCasterConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/SetCasterConfigRequest.php new file mode 100644 index 000000000..51c5e3af9 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/SetCasterConfigRequest.php @@ -0,0 +1,227 @@ + 'CallbackUrl', + 'casterId' => 'CasterId', + 'casterName' => 'CasterName', + 'channelEnable' => 'ChannelEnable', + 'delay' => 'Delay', + 'domainName' => 'DomainName', + 'ownerId' => 'OwnerId', + 'programEffect' => 'ProgramEffect', + 'programName' => 'ProgramName', + 'recordConfig' => 'RecordConfig', + 'sideOutputUrl' => 'SideOutputUrl', + 'sideOutputUrlList' => 'SideOutputUrlList', + 'syncGroupsConfig' => 'SyncGroupsConfig', + 'transcodeConfig' => 'TranscodeConfig', + 'urgentLiveStreamUrl' => 'UrgentLiveStreamUrl', + 'urgentMaterialId' => 'UrgentMaterialId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->callbackUrl) { + $res['CallbackUrl'] = $this->callbackUrl; + } + if (null !== $this->casterId) { + $res['CasterId'] = $this->casterId; + } + if (null !== $this->casterName) { + $res['CasterName'] = $this->casterName; + } + if (null !== $this->channelEnable) { + $res['ChannelEnable'] = $this->channelEnable; + } + if (null !== $this->delay) { + $res['Delay'] = $this->delay; + } + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->programEffect) { + $res['ProgramEffect'] = $this->programEffect; + } + if (null !== $this->programName) { + $res['ProgramName'] = $this->programName; + } + if (null !== $this->recordConfig) { + $res['RecordConfig'] = $this->recordConfig; + } + if (null !== $this->sideOutputUrl) { + $res['SideOutputUrl'] = $this->sideOutputUrl; + } + if (null !== $this->sideOutputUrlList) { + $res['SideOutputUrlList'] = $this->sideOutputUrlList; + } + if (null !== $this->syncGroupsConfig) { + $res['SyncGroupsConfig'] = $this->syncGroupsConfig; + } + if (null !== $this->transcodeConfig) { + $res['TranscodeConfig'] = $this->transcodeConfig; + } + if (null !== $this->urgentLiveStreamUrl) { + $res['UrgentLiveStreamUrl'] = $this->urgentLiveStreamUrl; + } + if (null !== $this->urgentMaterialId) { + $res['UrgentMaterialId'] = $this->urgentMaterialId; + } + + return $res; + } + + /** + * @param array $map + * + * @return SetCasterConfigRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CallbackUrl'])) { + $model->callbackUrl = $map['CallbackUrl']; + } + if (isset($map['CasterId'])) { + $model->casterId = $map['CasterId']; + } + if (isset($map['CasterName'])) { + $model->casterName = $map['CasterName']; + } + if (isset($map['ChannelEnable'])) { + $model->channelEnable = $map['ChannelEnable']; + } + if (isset($map['Delay'])) { + $model->delay = $map['Delay']; + } + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['ProgramEffect'])) { + $model->programEffect = $map['ProgramEffect']; + } + if (isset($map['ProgramName'])) { + $model->programName = $map['ProgramName']; + } + if (isset($map['RecordConfig'])) { + $model->recordConfig = $map['RecordConfig']; + } + if (isset($map['SideOutputUrl'])) { + $model->sideOutputUrl = $map['SideOutputUrl']; + } + if (isset($map['SideOutputUrlList'])) { + $model->sideOutputUrlList = $map['SideOutputUrlList']; + } + if (isset($map['SyncGroupsConfig'])) { + $model->syncGroupsConfig = $map['SyncGroupsConfig']; + } + if (isset($map['TranscodeConfig'])) { + $model->transcodeConfig = $map['TranscodeConfig']; + } + if (isset($map['UrgentLiveStreamUrl'])) { + $model->urgentLiveStreamUrl = $map['UrgentLiveStreamUrl']; + } + if (isset($map['UrgentMaterialId'])) { + $model->urgentMaterialId = $map['UrgentMaterialId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/SetCasterConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/SetCasterConfigResponse.php new file mode 100644 index 000000000..05496f5bb --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/SetCasterConfigResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return SetCasterConfigResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = SetCasterConfigResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/SetCasterConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/SetCasterConfigResponseBody.php new file mode 100644 index 000000000..142495bc3 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/SetCasterConfigResponseBody.php @@ -0,0 +1,59 @@ + 'CasterId', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->casterId) { + $res['CasterId'] = $this->casterId; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return SetCasterConfigResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CasterId'])) { + $model->casterId = $map['CasterId']; + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/SetCasterSceneConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/SetCasterSceneConfigRequest.php new file mode 100644 index 000000000..4c07da026 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/SetCasterSceneConfigRequest.php @@ -0,0 +1,97 @@ + 'CasterId', + 'componentId' => 'ComponentId', + 'layoutId' => 'LayoutId', + 'ownerId' => 'OwnerId', + 'sceneId' => 'SceneId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->casterId) { + $res['CasterId'] = $this->casterId; + } + if (null !== $this->componentId) { + $res['ComponentId'] = $this->componentId; + } + if (null !== $this->layoutId) { + $res['LayoutId'] = $this->layoutId; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->sceneId) { + $res['SceneId'] = $this->sceneId; + } + + return $res; + } + + /** + * @param array $map + * + * @return SetCasterSceneConfigRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CasterId'])) { + $model->casterId = $map['CasterId']; + } + if (isset($map['ComponentId'])) { + if (!empty($map['ComponentId'])) { + $model->componentId = $map['ComponentId']; + } + } + if (isset($map['LayoutId'])) { + $model->layoutId = $map['LayoutId']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['SceneId'])) { + $model->sceneId = $map['SceneId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/SetCasterSceneConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/SetCasterSceneConfigResponse.php new file mode 100644 index 000000000..774b785e7 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/SetCasterSceneConfigResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return SetCasterSceneConfigResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = SetCasterSceneConfigResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/SetCasterSceneConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/SetCasterSceneConfigResponseBody.php new file mode 100644 index 000000000..df756ab3e --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/SetCasterSceneConfigResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return SetCasterSceneConfigResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/SetCasterSyncGroupRequest.php b/vendor/alibabacloud/live-20161101/src/Models/SetCasterSyncGroupRequest.php new file mode 100644 index 000000000..49d00c470 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/SetCasterSyncGroupRequest.php @@ -0,0 +1,84 @@ + 'CasterId', + 'ownerId' => 'OwnerId', + 'syncGroup' => 'SyncGroup', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->casterId) { + $res['CasterId'] = $this->casterId; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->syncGroup) { + $res['SyncGroup'] = []; + if (null !== $this->syncGroup && \is_array($this->syncGroup)) { + $n = 0; + foreach ($this->syncGroup as $item) { + $res['SyncGroup'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return SetCasterSyncGroupRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CasterId'])) { + $model->casterId = $map['CasterId']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['SyncGroup'])) { + if (!empty($map['SyncGroup'])) { + $model->syncGroup = []; + $n = 0; + foreach ($map['SyncGroup'] as $item) { + $model->syncGroup[$n++] = null !== $item ? syncGroup::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/SetCasterSyncGroupRequest/syncGroup.php b/vendor/alibabacloud/live-20161101/src/Models/SetCasterSyncGroupRequest/syncGroup.php new file mode 100644 index 000000000..b46ef243f --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/SetCasterSyncGroupRequest/syncGroup.php @@ -0,0 +1,99 @@ + 'HostResourceId', + 'mode' => 'Mode', + 'resourceIds' => 'ResourceIds', + 'syncDelayThreshold' => 'SyncDelayThreshold', + 'syncOffsets' => 'SyncOffsets', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->hostResourceId) { + $res['HostResourceId'] = $this->hostResourceId; + } + if (null !== $this->mode) { + $res['Mode'] = $this->mode; + } + if (null !== $this->resourceIds) { + $res['ResourceIds'] = $this->resourceIds; + } + if (null !== $this->syncDelayThreshold) { + $res['SyncDelayThreshold'] = $this->syncDelayThreshold; + } + if (null !== $this->syncOffsets) { + $res['SyncOffsets'] = $this->syncOffsets; + } + + return $res; + } + + /** + * @param array $map + * + * @return syncGroup + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['HostResourceId'])) { + $model->hostResourceId = $map['HostResourceId']; + } + if (isset($map['Mode'])) { + $model->mode = $map['Mode']; + } + if (isset($map['ResourceIds'])) { + if (!empty($map['ResourceIds'])) { + $model->resourceIds = $map['ResourceIds']; + } + } + if (isset($map['SyncDelayThreshold'])) { + $model->syncDelayThreshold = $map['SyncDelayThreshold']; + } + if (isset($map['SyncOffsets'])) { + if (!empty($map['SyncOffsets'])) { + $model->syncOffsets = $map['SyncOffsets']; + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/SetCasterSyncGroupResponse.php b/vendor/alibabacloud/live-20161101/src/Models/SetCasterSyncGroupResponse.php new file mode 100644 index 000000000..5618502d9 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/SetCasterSyncGroupResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return SetCasterSyncGroupResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = SetCasterSyncGroupResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/SetCasterSyncGroupResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/SetCasterSyncGroupResponseBody.php new file mode 100644 index 000000000..077f9fe9d --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/SetCasterSyncGroupResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return SetCasterSyncGroupResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/SetCasterTimedEventRequest.php b/vendor/alibabacloud/live-20161101/src/Models/SetCasterTimedEventRequest.php new file mode 100644 index 000000000..cbd483d4c --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/SetCasterTimedEventRequest.php @@ -0,0 +1,83 @@ + 'CasterId', + 'eventName' => 'EventName', + 'ownerId' => 'OwnerId', + 'startTimeUTC' => 'StartTimeUTC', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->casterId) { + $res['CasterId'] = $this->casterId; + } + if (null !== $this->eventName) { + $res['EventName'] = $this->eventName; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->startTimeUTC) { + $res['StartTimeUTC'] = $this->startTimeUTC; + } + + return $res; + } + + /** + * @param array $map + * + * @return SetCasterTimedEventRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CasterId'])) { + $model->casterId = $map['CasterId']; + } + if (isset($map['EventName'])) { + $model->eventName = $map['EventName']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['StartTimeUTC'])) { + $model->startTimeUTC = $map['StartTimeUTC']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/SetCasterTimedEventResponse.php b/vendor/alibabacloud/live-20161101/src/Models/SetCasterTimedEventResponse.php new file mode 100644 index 000000000..a74fdb749 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/SetCasterTimedEventResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return SetCasterTimedEventResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = SetCasterTimedEventResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/SetCasterTimedEventResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/SetCasterTimedEventResponseBody.php new file mode 100644 index 000000000..f976d56ac --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/SetCasterTimedEventResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return SetCasterTimedEventResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/SetLiveDomainCertificateRequest.php b/vendor/alibabacloud/live-20161101/src/Models/SetLiveDomainCertificateRequest.php new file mode 100644 index 000000000..3c85a8df2 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/SetLiveDomainCertificateRequest.php @@ -0,0 +1,143 @@ + 'CertName', + 'certType' => 'CertType', + 'domainName' => 'DomainName', + 'forceSet' => 'ForceSet', + 'ownerId' => 'OwnerId', + 'SSLPri' => 'SSLPri', + 'SSLProtocol' => 'SSLProtocol', + 'SSLPub' => 'SSLPub', + 'securityToken' => 'SecurityToken', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->certName) { + $res['CertName'] = $this->certName; + } + if (null !== $this->certType) { + $res['CertType'] = $this->certType; + } + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->forceSet) { + $res['ForceSet'] = $this->forceSet; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->SSLPri) { + $res['SSLPri'] = $this->SSLPri; + } + if (null !== $this->SSLProtocol) { + $res['SSLProtocol'] = $this->SSLProtocol; + } + if (null !== $this->SSLPub) { + $res['SSLPub'] = $this->SSLPub; + } + if (null !== $this->securityToken) { + $res['SecurityToken'] = $this->securityToken; + } + + return $res; + } + + /** + * @param array $map + * + * @return SetLiveDomainCertificateRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CertName'])) { + $model->certName = $map['CertName']; + } + if (isset($map['CertType'])) { + $model->certType = $map['CertType']; + } + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['ForceSet'])) { + $model->forceSet = $map['ForceSet']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['SSLPri'])) { + $model->SSLPri = $map['SSLPri']; + } + if (isset($map['SSLProtocol'])) { + $model->SSLProtocol = $map['SSLProtocol']; + } + if (isset($map['SSLPub'])) { + $model->SSLPub = $map['SSLPub']; + } + if (isset($map['SecurityToken'])) { + $model->securityToken = $map['SecurityToken']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/SetLiveDomainCertificateResponse.php b/vendor/alibabacloud/live-20161101/src/Models/SetLiveDomainCertificateResponse.php new file mode 100644 index 000000000..8940a6b41 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/SetLiveDomainCertificateResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return SetLiveDomainCertificateResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = SetLiveDomainCertificateResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/SetLiveDomainCertificateResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/SetLiveDomainCertificateResponseBody.php new file mode 100644 index 000000000..bf337c916 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/SetLiveDomainCertificateResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return SetLiveDomainCertificateResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/SetLiveDomainStagingConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/SetLiveDomainStagingConfigRequest.php new file mode 100644 index 000000000..9a35b688a --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/SetLiveDomainStagingConfigRequest.php @@ -0,0 +1,71 @@ + 'DomainName', + 'functions' => 'Functions', + 'ownerId' => 'OwnerId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->functions) { + $res['Functions'] = $this->functions; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + return $res; + } + + /** + * @param array $map + * + * @return SetLiveDomainStagingConfigRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['Functions'])) { + $model->functions = $map['Functions']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/SetLiveDomainStagingConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/SetLiveDomainStagingConfigResponse.php new file mode 100644 index 000000000..2cb50c4f6 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/SetLiveDomainStagingConfigResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return SetLiveDomainStagingConfigResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = SetLiveDomainStagingConfigResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/SetLiveDomainStagingConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/SetLiveDomainStagingConfigResponseBody.php new file mode 100644 index 000000000..433c6a8d3 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/SetLiveDomainStagingConfigResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return SetLiveDomainStagingConfigResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/SetLiveEdgeTransferRequest.php b/vendor/alibabacloud/live-20161101/src/Models/SetLiveEdgeTransferRequest.php new file mode 100644 index 000000000..41e2964a8 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/SetLiveEdgeTransferRequest.php @@ -0,0 +1,119 @@ + 'AppName', + 'domainName' => 'DomainName', + 'httpDns' => 'HttpDns', + 'ownerId' => 'OwnerId', + 'streamName' => 'StreamName', + 'targetDomainList' => 'TargetDomainList', + 'transferArgs' => 'TransferArgs', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->appName) { + $res['AppName'] = $this->appName; + } + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->httpDns) { + $res['HttpDns'] = $this->httpDns; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->streamName) { + $res['StreamName'] = $this->streamName; + } + if (null !== $this->targetDomainList) { + $res['TargetDomainList'] = $this->targetDomainList; + } + if (null !== $this->transferArgs) { + $res['TransferArgs'] = $this->transferArgs; + } + + return $res; + } + + /** + * @param array $map + * + * @return SetLiveEdgeTransferRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppName'])) { + $model->appName = $map['AppName']; + } + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['HttpDns'])) { + $model->httpDns = $map['HttpDns']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['StreamName'])) { + $model->streamName = $map['StreamName']; + } + if (isset($map['TargetDomainList'])) { + $model->targetDomainList = $map['TargetDomainList']; + } + if (isset($map['TransferArgs'])) { + $model->transferArgs = $map['TransferArgs']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/SetLiveEdgeTransferResponse.php b/vendor/alibabacloud/live-20161101/src/Models/SetLiveEdgeTransferResponse.php new file mode 100644 index 000000000..69138a6eb --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/SetLiveEdgeTransferResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return SetLiveEdgeTransferResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = SetLiveEdgeTransferResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/SetLiveEdgeTransferResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/SetLiveEdgeTransferResponseBody.php new file mode 100644 index 000000000..83d966a47 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/SetLiveEdgeTransferResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return SetLiveEdgeTransferResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/SetLiveLazyPullStreamInfoConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/SetLiveLazyPullStreamInfoConfigRequest.php new file mode 100644 index 000000000..fe8101faf --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/SetLiveLazyPullStreamInfoConfigRequest.php @@ -0,0 +1,107 @@ + 'AppName', + 'domainName' => 'DomainName', + 'ownerId' => 'OwnerId', + 'pullAppName' => 'PullAppName', + 'pullDomainName' => 'PullDomainName', + 'pullProtocol' => 'PullProtocol', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->appName) { + $res['AppName'] = $this->appName; + } + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->pullAppName) { + $res['PullAppName'] = $this->pullAppName; + } + if (null !== $this->pullDomainName) { + $res['PullDomainName'] = $this->pullDomainName; + } + if (null !== $this->pullProtocol) { + $res['PullProtocol'] = $this->pullProtocol; + } + + return $res; + } + + /** + * @param array $map + * + * @return SetLiveLazyPullStreamInfoConfigRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppName'])) { + $model->appName = $map['AppName']; + } + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['PullAppName'])) { + $model->pullAppName = $map['PullAppName']; + } + if (isset($map['PullDomainName'])) { + $model->pullDomainName = $map['PullDomainName']; + } + if (isset($map['PullProtocol'])) { + $model->pullProtocol = $map['PullProtocol']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/SetLiveLazyPullStreamInfoConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/SetLiveLazyPullStreamInfoConfigResponse.php new file mode 100644 index 000000000..2d58e83db --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/SetLiveLazyPullStreamInfoConfigResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return SetLiveLazyPullStreamInfoConfigResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = SetLiveLazyPullStreamInfoConfigResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/SetLiveLazyPullStreamInfoConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/SetLiveLazyPullStreamInfoConfigResponseBody.php new file mode 100644 index 000000000..6d63aa3b7 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/SetLiveLazyPullStreamInfoConfigResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return SetLiveLazyPullStreamInfoConfigResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/SetLiveStreamDelayConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/SetLiveStreamDelayConfigRequest.php new file mode 100644 index 000000000..702af28b8 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/SetLiveStreamDelayConfigRequest.php @@ -0,0 +1,131 @@ + 'DomainName', + 'flvDelay' => 'FlvDelay', + 'flvLevel' => 'FlvLevel', + 'hlsDelay' => 'HlsDelay', + 'hlsLevel' => 'HlsLevel', + 'ownerId' => 'OwnerId', + 'rtmpDelay' => 'RtmpDelay', + 'rtmpLevel' => 'RtmpLevel', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->flvDelay) { + $res['FlvDelay'] = $this->flvDelay; + } + if (null !== $this->flvLevel) { + $res['FlvLevel'] = $this->flvLevel; + } + if (null !== $this->hlsDelay) { + $res['HlsDelay'] = $this->hlsDelay; + } + if (null !== $this->hlsLevel) { + $res['HlsLevel'] = $this->hlsLevel; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->rtmpDelay) { + $res['RtmpDelay'] = $this->rtmpDelay; + } + if (null !== $this->rtmpLevel) { + $res['RtmpLevel'] = $this->rtmpLevel; + } + + return $res; + } + + /** + * @param array $map + * + * @return SetLiveStreamDelayConfigRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['FlvDelay'])) { + $model->flvDelay = $map['FlvDelay']; + } + if (isset($map['FlvLevel'])) { + $model->flvLevel = $map['FlvLevel']; + } + if (isset($map['HlsDelay'])) { + $model->hlsDelay = $map['HlsDelay']; + } + if (isset($map['HlsLevel'])) { + $model->hlsLevel = $map['HlsLevel']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['RtmpDelay'])) { + $model->rtmpDelay = $map['RtmpDelay']; + } + if (isset($map['RtmpLevel'])) { + $model->rtmpLevel = $map['RtmpLevel']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/SetLiveStreamDelayConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/SetLiveStreamDelayConfigResponse.php new file mode 100644 index 000000000..8784aa23e --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/SetLiveStreamDelayConfigResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return SetLiveStreamDelayConfigResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = SetLiveStreamDelayConfigResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/SetLiveStreamDelayConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/SetLiveStreamDelayConfigResponseBody.php new file mode 100644 index 000000000..8ebde00c7 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/SetLiveStreamDelayConfigResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return SetLiveStreamDelayConfigResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/SetLiveStreamOptimizedFeatureConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/SetLiveStreamOptimizedFeatureConfigRequest.php new file mode 100644 index 000000000..d775ad209 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/SetLiveStreamOptimizedFeatureConfigRequest.php @@ -0,0 +1,95 @@ + 'ConfigName', + 'configStatus' => 'ConfigStatus', + 'configValue' => 'ConfigValue', + 'domainName' => 'DomainName', + 'ownerId' => 'OwnerId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->configName) { + $res['ConfigName'] = $this->configName; + } + if (null !== $this->configStatus) { + $res['ConfigStatus'] = $this->configStatus; + } + if (null !== $this->configValue) { + $res['ConfigValue'] = $this->configValue; + } + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + return $res; + } + + /** + * @param array $map + * + * @return SetLiveStreamOptimizedFeatureConfigRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['ConfigName'])) { + $model->configName = $map['ConfigName']; + } + if (isset($map['ConfigStatus'])) { + $model->configStatus = $map['ConfigStatus']; + } + if (isset($map['ConfigValue'])) { + $model->configValue = $map['ConfigValue']; + } + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/SetLiveStreamOptimizedFeatureConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/SetLiveStreamOptimizedFeatureConfigResponse.php new file mode 100644 index 000000000..efced33fd --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/SetLiveStreamOptimizedFeatureConfigResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return SetLiveStreamOptimizedFeatureConfigResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = SetLiveStreamOptimizedFeatureConfigResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/SetLiveStreamOptimizedFeatureConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/SetLiveStreamOptimizedFeatureConfigResponseBody.php new file mode 100644 index 000000000..b11b195ce --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/SetLiveStreamOptimizedFeatureConfigResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return SetLiveStreamOptimizedFeatureConfigResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/SetLiveStreamsNotifyUrlConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/SetLiveStreamsNotifyUrlConfigRequest.php new file mode 100644 index 000000000..04c6f6482 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/SetLiveStreamsNotifyUrlConfigRequest.php @@ -0,0 +1,95 @@ + 'DomainName', + 'notifyAuthKey' => 'NotifyAuthKey', + 'notifyReqAuth' => 'NotifyReqAuth', + 'notifyUrl' => 'NotifyUrl', + 'ownerId' => 'OwnerId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->notifyAuthKey) { + $res['NotifyAuthKey'] = $this->notifyAuthKey; + } + if (null !== $this->notifyReqAuth) { + $res['NotifyReqAuth'] = $this->notifyReqAuth; + } + if (null !== $this->notifyUrl) { + $res['NotifyUrl'] = $this->notifyUrl; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + return $res; + } + + /** + * @param array $map + * + * @return SetLiveStreamsNotifyUrlConfigRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['NotifyAuthKey'])) { + $model->notifyAuthKey = $map['NotifyAuthKey']; + } + if (isset($map['NotifyReqAuth'])) { + $model->notifyReqAuth = $map['NotifyReqAuth']; + } + if (isset($map['NotifyUrl'])) { + $model->notifyUrl = $map['NotifyUrl']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/SetLiveStreamsNotifyUrlConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/SetLiveStreamsNotifyUrlConfigResponse.php new file mode 100644 index 000000000..34b7879d2 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/SetLiveStreamsNotifyUrlConfigResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return SetLiveStreamsNotifyUrlConfigResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = SetLiveStreamsNotifyUrlConfigResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/SetLiveStreamsNotifyUrlConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/SetLiveStreamsNotifyUrlConfigResponseBody.php new file mode 100644 index 000000000..b721d891b --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/SetLiveStreamsNotifyUrlConfigResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return SetLiveStreamsNotifyUrlConfigResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/SetSnapshotCallbackAuthRequest.php b/vendor/alibabacloud/live-20161101/src/Models/SetSnapshotCallbackAuthRequest.php new file mode 100644 index 000000000..78c3a5f6b --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/SetSnapshotCallbackAuthRequest.php @@ -0,0 +1,83 @@ + 'CallbackAuthKey', + 'callbackReqAuth' => 'CallbackReqAuth', + 'domainName' => 'DomainName', + 'ownerId' => 'OwnerId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->callbackAuthKey) { + $res['CallbackAuthKey'] = $this->callbackAuthKey; + } + if (null !== $this->callbackReqAuth) { + $res['CallbackReqAuth'] = $this->callbackReqAuth; + } + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + return $res; + } + + /** + * @param array $map + * + * @return SetSnapshotCallbackAuthRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CallbackAuthKey'])) { + $model->callbackAuthKey = $map['CallbackAuthKey']; + } + if (isset($map['CallbackReqAuth'])) { + $model->callbackReqAuth = $map['CallbackReqAuth']; + } + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/SetSnapshotCallbackAuthResponse.php b/vendor/alibabacloud/live-20161101/src/Models/SetSnapshotCallbackAuthResponse.php new file mode 100644 index 000000000..35dd566e3 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/SetSnapshotCallbackAuthResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return SetSnapshotCallbackAuthResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = SetSnapshotCallbackAuthResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/SetSnapshotCallbackAuthResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/SetSnapshotCallbackAuthResponseBody.php new file mode 100644 index 000000000..d3e346e53 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/SetSnapshotCallbackAuthResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return SetSnapshotCallbackAuthResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/StartBoardRecordRequest.php b/vendor/alibabacloud/live-20161101/src/Models/StartBoardRecordRequest.php new file mode 100644 index 000000000..439a4b536 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/StartBoardRecordRequest.php @@ -0,0 +1,83 @@ + 'OwnerId', + 'appId' => 'AppId', + 'boardId' => 'BoardId', + 'startTime' => 'StartTime', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->appId) { + $res['AppId'] = $this->appId; + } + if (null !== $this->boardId) { + $res['BoardId'] = $this->boardId; + } + if (null !== $this->startTime) { + $res['StartTime'] = $this->startTime; + } + + return $res; + } + + /** + * @param array $map + * + * @return StartBoardRecordRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['AppId'])) { + $model->appId = $map['AppId']; + } + if (isset($map['BoardId'])) { + $model->boardId = $map['BoardId']; + } + if (isset($map['StartTime'])) { + $model->startTime = $map['StartTime']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/StartBoardRecordResponse.php b/vendor/alibabacloud/live-20161101/src/Models/StartBoardRecordResponse.php new file mode 100644 index 000000000..cd8506a33 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/StartBoardRecordResponse.php @@ -0,0 +1,61 @@ + 'headers', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return StartBoardRecordResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['body'])) { + $model->body = StartBoardRecordResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/StartBoardRecordResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/StartBoardRecordResponseBody.php new file mode 100644 index 000000000..1e63b1547 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/StartBoardRecordResponseBody.php @@ -0,0 +1,59 @@ + 'RequestId', + 'recordId' => 'RecordId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->recordId) { + $res['RecordId'] = $this->recordId; + } + + return $res; + } + + /** + * @param array $map + * + * @return StartBoardRecordResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['RecordId'])) { + $model->recordId = $map['RecordId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/StartCasterRequest.php b/vendor/alibabacloud/live-20161101/src/Models/StartCasterRequest.php new file mode 100644 index 000000000..e8305be51 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/StartCasterRequest.php @@ -0,0 +1,59 @@ + 'CasterId', + 'ownerId' => 'OwnerId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->casterId) { + $res['CasterId'] = $this->casterId; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + return $res; + } + + /** + * @param array $map + * + * @return StartCasterRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CasterId'])) { + $model->casterId = $map['CasterId']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/StartCasterResponse.php b/vendor/alibabacloud/live-20161101/src/Models/StartCasterResponse.php new file mode 100644 index 000000000..ca68b584c --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/StartCasterResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return StartCasterResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = StartCasterResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/StartCasterResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/StartCasterResponseBody.php new file mode 100644 index 000000000..cf5240c6b --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/StartCasterResponseBody.php @@ -0,0 +1,73 @@ + 'PgmSceneInfos', + 'pvwSceneInfos' => 'PvwSceneInfos', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->pgmSceneInfos) { + $res['PgmSceneInfos'] = null !== $this->pgmSceneInfos ? $this->pgmSceneInfos->toMap() : null; + } + if (null !== $this->pvwSceneInfos) { + $res['PvwSceneInfos'] = null !== $this->pvwSceneInfos ? $this->pvwSceneInfos->toMap() : null; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return StartCasterResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['PgmSceneInfos'])) { + $model->pgmSceneInfos = pgmSceneInfos::fromMap($map['PgmSceneInfos']); + } + if (isset($map['PvwSceneInfos'])) { + $model->pvwSceneInfos = pvwSceneInfos::fromMap($map['PvwSceneInfos']); + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/StartCasterResponseBody/pgmSceneInfos.php b/vendor/alibabacloud/live-20161101/src/Models/StartCasterResponseBody/pgmSceneInfos.php new file mode 100644 index 000000000..d693cebde --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/StartCasterResponseBody/pgmSceneInfos.php @@ -0,0 +1,60 @@ + 'SceneInfo', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->sceneInfo) { + $res['SceneInfo'] = []; + if (null !== $this->sceneInfo && \is_array($this->sceneInfo)) { + $n = 0; + foreach ($this->sceneInfo as $item) { + $res['SceneInfo'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return pgmSceneInfos + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['SceneInfo'])) { + if (!empty($map['SceneInfo'])) { + $model->sceneInfo = []; + $n = 0; + foreach ($map['SceneInfo'] as $item) { + $model->sceneInfo[$n++] = null !== $item ? sceneInfo::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/StartCasterResponseBody/pgmSceneInfos/sceneInfo.php b/vendor/alibabacloud/live-20161101/src/Models/StartCasterResponseBody/pgmSceneInfos/sceneInfo.php new file mode 100644 index 000000000..da3c597c7 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/StartCasterResponseBody/pgmSceneInfos/sceneInfo.php @@ -0,0 +1,72 @@ + 'SceneId', + 'streamInfos' => 'StreamInfos', + 'streamUrl' => 'StreamUrl', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->sceneId) { + $res['SceneId'] = $this->sceneId; + } + if (null !== $this->streamInfos) { + $res['StreamInfos'] = null !== $this->streamInfos ? $this->streamInfos->toMap() : null; + } + if (null !== $this->streamUrl) { + $res['StreamUrl'] = $this->streamUrl; + } + + return $res; + } + + /** + * @param array $map + * + * @return sceneInfo + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['SceneId'])) { + $model->sceneId = $map['SceneId']; + } + if (isset($map['StreamInfos'])) { + $model->streamInfos = streamInfos::fromMap($map['StreamInfos']); + } + if (isset($map['StreamUrl'])) { + $model->streamUrl = $map['StreamUrl']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/StartCasterResponseBody/pgmSceneInfos/sceneInfo/streamInfos.php b/vendor/alibabacloud/live-20161101/src/Models/StartCasterResponseBody/pgmSceneInfos/sceneInfo/streamInfos.php new file mode 100644 index 000000000..c876713f0 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/StartCasterResponseBody/pgmSceneInfos/sceneInfo/streamInfos.php @@ -0,0 +1,60 @@ + 'StreamInfo', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->streamInfo) { + $res['StreamInfo'] = []; + if (null !== $this->streamInfo && \is_array($this->streamInfo)) { + $n = 0; + foreach ($this->streamInfo as $item) { + $res['StreamInfo'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return streamInfos + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['StreamInfo'])) { + if (!empty($map['StreamInfo'])) { + $model->streamInfo = []; + $n = 0; + foreach ($map['StreamInfo'] as $item) { + $model->streamInfo[$n++] = null !== $item ? streamInfo::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/StartCasterResponseBody/pgmSceneInfos/sceneInfo/streamInfos/streamInfo.php b/vendor/alibabacloud/live-20161101/src/Models/StartCasterResponseBody/pgmSceneInfos/sceneInfo/streamInfos/streamInfo.php new file mode 100644 index 000000000..70507fa58 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/StartCasterResponseBody/pgmSceneInfos/sceneInfo/streamInfos/streamInfo.php @@ -0,0 +1,71 @@ + 'OutputStreamUrl', + 'transcodeConfig' => 'TranscodeConfig', + 'videoFormat' => 'VideoFormat', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->outputStreamUrl) { + $res['OutputStreamUrl'] = $this->outputStreamUrl; + } + if (null !== $this->transcodeConfig) { + $res['TranscodeConfig'] = $this->transcodeConfig; + } + if (null !== $this->videoFormat) { + $res['VideoFormat'] = $this->videoFormat; + } + + return $res; + } + + /** + * @param array $map + * + * @return streamInfo + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['OutputStreamUrl'])) { + $model->outputStreamUrl = $map['OutputStreamUrl']; + } + if (isset($map['TranscodeConfig'])) { + $model->transcodeConfig = $map['TranscodeConfig']; + } + if (isset($map['VideoFormat'])) { + $model->videoFormat = $map['VideoFormat']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/StartCasterResponseBody/pvwSceneInfos.php b/vendor/alibabacloud/live-20161101/src/Models/StartCasterResponseBody/pvwSceneInfos.php new file mode 100644 index 000000000..d7e46674a --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/StartCasterResponseBody/pvwSceneInfos.php @@ -0,0 +1,60 @@ + 'SceneInfo', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->sceneInfo) { + $res['SceneInfo'] = []; + if (null !== $this->sceneInfo && \is_array($this->sceneInfo)) { + $n = 0; + foreach ($this->sceneInfo as $item) { + $res['SceneInfo'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return pvwSceneInfos + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['SceneInfo'])) { + if (!empty($map['SceneInfo'])) { + $model->sceneInfo = []; + $n = 0; + foreach ($map['SceneInfo'] as $item) { + $model->sceneInfo[$n++] = null !== $item ? sceneInfo::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/StartCasterResponseBody/pvwSceneInfos/sceneInfo.php b/vendor/alibabacloud/live-20161101/src/Models/StartCasterResponseBody/pvwSceneInfos/sceneInfo.php new file mode 100644 index 000000000..b47938090 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/StartCasterResponseBody/pvwSceneInfos/sceneInfo.php @@ -0,0 +1,59 @@ + 'SceneId', + 'streamUrl' => 'StreamUrl', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->sceneId) { + $res['SceneId'] = $this->sceneId; + } + if (null !== $this->streamUrl) { + $res['StreamUrl'] = $this->streamUrl; + } + + return $res; + } + + /** + * @param array $map + * + * @return sceneInfo + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['SceneId'])) { + $model->sceneId = $map['SceneId']; + } + if (isset($map['StreamUrl'])) { + $model->streamUrl = $map['StreamUrl']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/StartCasterSceneRequest.php b/vendor/alibabacloud/live-20161101/src/Models/StartCasterSceneRequest.php new file mode 100644 index 000000000..47636c37f --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/StartCasterSceneRequest.php @@ -0,0 +1,71 @@ + 'CasterId', + 'ownerId' => 'OwnerId', + 'sceneId' => 'SceneId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->casterId) { + $res['CasterId'] = $this->casterId; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->sceneId) { + $res['SceneId'] = $this->sceneId; + } + + return $res; + } + + /** + * @param array $map + * + * @return StartCasterSceneRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CasterId'])) { + $model->casterId = $map['CasterId']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['SceneId'])) { + $model->sceneId = $map['SceneId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/StartCasterSceneResponse.php b/vendor/alibabacloud/live-20161101/src/Models/StartCasterSceneResponse.php new file mode 100644 index 000000000..205ccb5d6 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/StartCasterSceneResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return StartCasterSceneResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = StartCasterSceneResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/StartCasterSceneResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/StartCasterSceneResponseBody.php new file mode 100644 index 000000000..9531b74cd --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/StartCasterSceneResponseBody.php @@ -0,0 +1,59 @@ + 'RequestId', + 'streamUrl' => 'StreamUrl', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->streamUrl) { + $res['StreamUrl'] = $this->streamUrl; + } + + return $res; + } + + /** + * @param array $map + * + * @return StartCasterSceneResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['StreamUrl'])) { + $model->streamUrl = $map['StreamUrl']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/StartLiveDomainRequest.php b/vendor/alibabacloud/live-20161101/src/Models/StartLiveDomainRequest.php new file mode 100644 index 000000000..2fc7d3e54 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/StartLiveDomainRequest.php @@ -0,0 +1,71 @@ + 'DomainName', + 'ownerId' => 'OwnerId', + 'securityToken' => 'SecurityToken', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->securityToken) { + $res['SecurityToken'] = $this->securityToken; + } + + return $res; + } + + /** + * @param array $map + * + * @return StartLiveDomainRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['SecurityToken'])) { + $model->securityToken = $map['SecurityToken']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/StartLiveDomainResponse.php b/vendor/alibabacloud/live-20161101/src/Models/StartLiveDomainResponse.php new file mode 100644 index 000000000..bb5c6b948 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/StartLiveDomainResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return StartLiveDomainResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = StartLiveDomainResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/StartLiveDomainResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/StartLiveDomainResponseBody.php new file mode 100644 index 000000000..9a2be2742 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/StartLiveDomainResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return StartLiveDomainResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/StartLiveIndexRequest.php b/vendor/alibabacloud/live-20161101/src/Models/StartLiveIndexRequest.php new file mode 100644 index 000000000..cbc0f1275 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/StartLiveIndexRequest.php @@ -0,0 +1,167 @@ + 'OwnerId', + 'domainName' => 'DomainName', + 'appName' => 'AppName', + 'streamName' => 'StreamName', + 'tokenId' => 'TokenId', + 'inputUrl' => 'InputUrl', + 'interval' => 'Interval', + 'ossBucket' => 'OssBucket', + 'ossEndpoint' => 'OssEndpoint', + 'ossUserId' => 'OssUserId', + 'ossRamRole' => 'OssRamRole', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->appName) { + $res['AppName'] = $this->appName; + } + if (null !== $this->streamName) { + $res['StreamName'] = $this->streamName; + } + if (null !== $this->tokenId) { + $res['TokenId'] = $this->tokenId; + } + if (null !== $this->inputUrl) { + $res['InputUrl'] = $this->inputUrl; + } + if (null !== $this->interval) { + $res['Interval'] = $this->interval; + } + if (null !== $this->ossBucket) { + $res['OssBucket'] = $this->ossBucket; + } + if (null !== $this->ossEndpoint) { + $res['OssEndpoint'] = $this->ossEndpoint; + } + if (null !== $this->ossUserId) { + $res['OssUserId'] = $this->ossUserId; + } + if (null !== $this->ossRamRole) { + $res['OssRamRole'] = $this->ossRamRole; + } + + return $res; + } + + /** + * @param array $map + * + * @return StartLiveIndexRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['AppName'])) { + $model->appName = $map['AppName']; + } + if (isset($map['StreamName'])) { + $model->streamName = $map['StreamName']; + } + if (isset($map['TokenId'])) { + $model->tokenId = $map['TokenId']; + } + if (isset($map['InputUrl'])) { + $model->inputUrl = $map['InputUrl']; + } + if (isset($map['Interval'])) { + $model->interval = $map['Interval']; + } + if (isset($map['OssBucket'])) { + $model->ossBucket = $map['OssBucket']; + } + if (isset($map['OssEndpoint'])) { + $model->ossEndpoint = $map['OssEndpoint']; + } + if (isset($map['OssUserId'])) { + $model->ossUserId = $map['OssUserId']; + } + if (isset($map['OssRamRole'])) { + $model->ossRamRole = $map['OssRamRole']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/StartLiveIndexResponse.php b/vendor/alibabacloud/live-20161101/src/Models/StartLiveIndexResponse.php new file mode 100644 index 000000000..9a5e5013d --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/StartLiveIndexResponse.php @@ -0,0 +1,61 @@ + 'headers', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return StartLiveIndexResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['body'])) { + $model->body = StartLiveIndexResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/StartLiveIndexResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/StartLiveIndexResponseBody.php new file mode 100644 index 000000000..2ecba9184 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/StartLiveIndexResponseBody.php @@ -0,0 +1,59 @@ + 'TaskId', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->taskId) { + $res['TaskId'] = $this->taskId; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return StartLiveIndexResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['TaskId'])) { + $model->taskId = $map['TaskId']; + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/StartLiveStreamMonitorRequest.php b/vendor/alibabacloud/live-20161101/src/Models/StartLiveStreamMonitorRequest.php new file mode 100644 index 000000000..a50e51f0f --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/StartLiveStreamMonitorRequest.php @@ -0,0 +1,59 @@ + 'MonitorId', + 'ownerId' => 'OwnerId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->monitorId) { + $res['MonitorId'] = $this->monitorId; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + return $res; + } + + /** + * @param array $map + * + * @return StartLiveStreamMonitorRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['MonitorId'])) { + $model->monitorId = $map['MonitorId']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/StartLiveStreamMonitorResponse.php b/vendor/alibabacloud/live-20161101/src/Models/StartLiveStreamMonitorResponse.php new file mode 100644 index 000000000..13435e0c0 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/StartLiveStreamMonitorResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return StartLiveStreamMonitorResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = StartLiveStreamMonitorResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/StartLiveStreamMonitorResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/StartLiveStreamMonitorResponseBody.php new file mode 100644 index 000000000..3e901dc31 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/StartLiveStreamMonitorResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return StartLiveStreamMonitorResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/StartPlaylistRequest.php b/vendor/alibabacloud/live-20161101/src/Models/StartPlaylistRequest.php new file mode 100644 index 000000000..1c26b8876 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/StartPlaylistRequest.php @@ -0,0 +1,95 @@ + 'Offset', + 'ownerId' => 'OwnerId', + 'programId' => 'ProgramId', + 'resumeMode' => 'ResumeMode', + 'startItemId' => 'StartItemId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->offset) { + $res['Offset'] = $this->offset; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->programId) { + $res['ProgramId'] = $this->programId; + } + if (null !== $this->resumeMode) { + $res['ResumeMode'] = $this->resumeMode; + } + if (null !== $this->startItemId) { + $res['StartItemId'] = $this->startItemId; + } + + return $res; + } + + /** + * @param array $map + * + * @return StartPlaylistRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Offset'])) { + $model->offset = $map['Offset']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['ProgramId'])) { + $model->programId = $map['ProgramId']; + } + if (isset($map['ResumeMode'])) { + $model->resumeMode = $map['ResumeMode']; + } + if (isset($map['StartItemId'])) { + $model->startItemId = $map['StartItemId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/StartPlaylistResponse.php b/vendor/alibabacloud/live-20161101/src/Models/StartPlaylistResponse.php new file mode 100644 index 000000000..775245b88 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/StartPlaylistResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return StartPlaylistResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = StartPlaylistResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/StartPlaylistResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/StartPlaylistResponseBody.php new file mode 100644 index 000000000..ffbe1338e --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/StartPlaylistResponseBody.php @@ -0,0 +1,72 @@ + 'ProgramId', + 'requestId' => 'RequestId', + 'streamInfo' => 'StreamInfo', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->programId) { + $res['ProgramId'] = $this->programId; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->streamInfo) { + $res['StreamInfo'] = null !== $this->streamInfo ? $this->streamInfo->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return StartPlaylistResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['ProgramId'])) { + $model->programId = $map['ProgramId']; + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['StreamInfo'])) { + $model->streamInfo = streamInfo::fromMap($map['StreamInfo']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/StartPlaylistResponseBody/streamInfo.php b/vendor/alibabacloud/live-20161101/src/Models/StartPlaylistResponseBody/streamInfo.php new file mode 100644 index 000000000..850939935 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/StartPlaylistResponseBody/streamInfo.php @@ -0,0 +1,84 @@ + 'AppName', + 'domainName' => 'DomainName', + 'streamName' => 'StreamName', + 'streams' => 'Streams', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->appName) { + $res['AppName'] = $this->appName; + } + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->streamName) { + $res['StreamName'] = $this->streamName; + } + if (null !== $this->streams) { + $res['Streams'] = null !== $this->streams ? $this->streams->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return streamInfo + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppName'])) { + $model->appName = $map['AppName']; + } + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['StreamName'])) { + $model->streamName = $map['StreamName']; + } + if (isset($map['Streams'])) { + $model->streams = streams::fromMap($map['Streams']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/StartPlaylistResponseBody/streamInfo/streams.php b/vendor/alibabacloud/live-20161101/src/Models/StartPlaylistResponseBody/streamInfo/streams.php new file mode 100644 index 000000000..41987a63d --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/StartPlaylistResponseBody/streamInfo/streams.php @@ -0,0 +1,60 @@ + 'Stream', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->stream) { + $res['Stream'] = []; + if (null !== $this->stream && \is_array($this->stream)) { + $n = 0; + foreach ($this->stream as $item) { + $res['Stream'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return streams + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Stream'])) { + if (!empty($map['Stream'])) { + $model->stream = []; + $n = 0; + foreach ($map['Stream'] as $item) { + $model->stream[$n++] = null !== $item ? stream::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/StartPlaylistResponseBody/streamInfo/streams/stream.php b/vendor/alibabacloud/live-20161101/src/Models/StartPlaylistResponseBody/streamInfo/streams/stream.php new file mode 100644 index 000000000..05b779bc3 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/StartPlaylistResponseBody/streamInfo/streams/stream.php @@ -0,0 +1,83 @@ + 'PullFlvUrl', + 'pullM3U8Url' => 'PullM3U8Url', + 'pullRtmpUrl' => 'PullRtmpUrl', + 'quality' => 'Quality', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->pullFlvUrl) { + $res['PullFlvUrl'] = $this->pullFlvUrl; + } + if (null !== $this->pullM3U8Url) { + $res['PullM3U8Url'] = $this->pullM3U8Url; + } + if (null !== $this->pullRtmpUrl) { + $res['PullRtmpUrl'] = $this->pullRtmpUrl; + } + if (null !== $this->quality) { + $res['Quality'] = $this->quality; + } + + return $res; + } + + /** + * @param array $map + * + * @return stream + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['PullFlvUrl'])) { + $model->pullFlvUrl = $map['PullFlvUrl']; + } + if (isset($map['PullM3U8Url'])) { + $model->pullM3U8Url = $map['PullM3U8Url']; + } + if (isset($map['PullRtmpUrl'])) { + $model->pullRtmpUrl = $map['PullRtmpUrl']; + } + if (isset($map['Quality'])) { + $model->quality = $map['Quality']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/StopCasterRequest.php b/vendor/alibabacloud/live-20161101/src/Models/StopCasterRequest.php new file mode 100644 index 000000000..64ddb8c03 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/StopCasterRequest.php @@ -0,0 +1,59 @@ + 'CasterId', + 'ownerId' => 'OwnerId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->casterId) { + $res['CasterId'] = $this->casterId; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + return $res; + } + + /** + * @param array $map + * + * @return StopCasterRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CasterId'])) { + $model->casterId = $map['CasterId']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/StopCasterResponse.php b/vendor/alibabacloud/live-20161101/src/Models/StopCasterResponse.php new file mode 100644 index 000000000..b42d6354d --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/StopCasterResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return StopCasterResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = StopCasterResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/StopCasterResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/StopCasterResponseBody.php new file mode 100644 index 000000000..4a5700263 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/StopCasterResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return StopCasterResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/StopCasterSceneRequest.php b/vendor/alibabacloud/live-20161101/src/Models/StopCasterSceneRequest.php new file mode 100644 index 000000000..f407e03da --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/StopCasterSceneRequest.php @@ -0,0 +1,71 @@ + 'CasterId', + 'ownerId' => 'OwnerId', + 'sceneId' => 'SceneId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->casterId) { + $res['CasterId'] = $this->casterId; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->sceneId) { + $res['SceneId'] = $this->sceneId; + } + + return $res; + } + + /** + * @param array $map + * + * @return StopCasterSceneRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CasterId'])) { + $model->casterId = $map['CasterId']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['SceneId'])) { + $model->sceneId = $map['SceneId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/StopCasterSceneResponse.php b/vendor/alibabacloud/live-20161101/src/Models/StopCasterSceneResponse.php new file mode 100644 index 000000000..8d2d5eacd --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/StopCasterSceneResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return StopCasterSceneResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = StopCasterSceneResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/StopCasterSceneResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/StopCasterSceneResponseBody.php new file mode 100644 index 000000000..df16165d5 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/StopCasterSceneResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return StopCasterSceneResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/StopLiveDomainRequest.php b/vendor/alibabacloud/live-20161101/src/Models/StopLiveDomainRequest.php new file mode 100644 index 000000000..ee65ec593 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/StopLiveDomainRequest.php @@ -0,0 +1,71 @@ + 'DomainName', + 'ownerId' => 'OwnerId', + 'securityToken' => 'SecurityToken', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->securityToken) { + $res['SecurityToken'] = $this->securityToken; + } + + return $res; + } + + /** + * @param array $map + * + * @return StopLiveDomainRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['SecurityToken'])) { + $model->securityToken = $map['SecurityToken']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/StopLiveDomainResponse.php b/vendor/alibabacloud/live-20161101/src/Models/StopLiveDomainResponse.php new file mode 100644 index 000000000..49323d59a --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/StopLiveDomainResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return StopLiveDomainResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = StopLiveDomainResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/StopLiveDomainResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/StopLiveDomainResponseBody.php new file mode 100644 index 000000000..b4a3fc74b --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/StopLiveDomainResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return StopLiveDomainResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/StopLiveIndexRequest.php b/vendor/alibabacloud/live-20161101/src/Models/StopLiveIndexRequest.php new file mode 100644 index 000000000..0688eba25 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/StopLiveIndexRequest.php @@ -0,0 +1,95 @@ + 'OwnerId', + 'domainName' => 'DomainName', + 'appName' => 'AppName', + 'streamName' => 'StreamName', + 'taskId' => 'TaskId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->appName) { + $res['AppName'] = $this->appName; + } + if (null !== $this->streamName) { + $res['StreamName'] = $this->streamName; + } + if (null !== $this->taskId) { + $res['TaskId'] = $this->taskId; + } + + return $res; + } + + /** + * @param array $map + * + * @return StopLiveIndexRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['AppName'])) { + $model->appName = $map['AppName']; + } + if (isset($map['StreamName'])) { + $model->streamName = $map['StreamName']; + } + if (isset($map['TaskId'])) { + $model->taskId = $map['TaskId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/StopLiveIndexResponse.php b/vendor/alibabacloud/live-20161101/src/Models/StopLiveIndexResponse.php new file mode 100644 index 000000000..4d9a32905 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/StopLiveIndexResponse.php @@ -0,0 +1,61 @@ + 'headers', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return StopLiveIndexResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['body'])) { + $model->body = StopLiveIndexResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/StopLiveIndexResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/StopLiveIndexResponseBody.php new file mode 100644 index 000000000..90b533d69 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/StopLiveIndexResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return StopLiveIndexResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/StopLiveStreamMonitorRequest.php b/vendor/alibabacloud/live-20161101/src/Models/StopLiveStreamMonitorRequest.php new file mode 100644 index 000000000..472fc856a --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/StopLiveStreamMonitorRequest.php @@ -0,0 +1,59 @@ + 'MonitorId', + 'ownerId' => 'OwnerId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->monitorId) { + $res['MonitorId'] = $this->monitorId; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + return $res; + } + + /** + * @param array $map + * + * @return StopLiveStreamMonitorRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['MonitorId'])) { + $model->monitorId = $map['MonitorId']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/StopLiveStreamMonitorResponse.php b/vendor/alibabacloud/live-20161101/src/Models/StopLiveStreamMonitorResponse.php new file mode 100644 index 000000000..d5be7f2a8 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/StopLiveStreamMonitorResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return StopLiveStreamMonitorResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = StopLiveStreamMonitorResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/StopLiveStreamMonitorResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/StopLiveStreamMonitorResponseBody.php new file mode 100644 index 000000000..70ff6db47 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/StopLiveStreamMonitorResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return StopLiveStreamMonitorResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/StopPlaylistRequest.php b/vendor/alibabacloud/live-20161101/src/Models/StopPlaylistRequest.php new file mode 100644 index 000000000..a434637c5 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/StopPlaylistRequest.php @@ -0,0 +1,59 @@ + 'OwnerId', + 'programId' => 'ProgramId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->programId) { + $res['ProgramId'] = $this->programId; + } + + return $res; + } + + /** + * @param array $map + * + * @return StopPlaylistRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['ProgramId'])) { + $model->programId = $map['ProgramId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/StopPlaylistResponse.php b/vendor/alibabacloud/live-20161101/src/Models/StopPlaylistResponse.php new file mode 100644 index 000000000..90548de60 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/StopPlaylistResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return StopPlaylistResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = StopPlaylistResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/StopPlaylistResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/StopPlaylistResponseBody.php new file mode 100644 index 000000000..2bb4b01a2 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/StopPlaylistResponseBody.php @@ -0,0 +1,59 @@ + 'ProgramId', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->programId) { + $res['ProgramId'] = $this->programId; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return StopPlaylistResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['ProgramId'])) { + $model->programId = $map['ProgramId']; + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/TagLiveResourcesRequest.php b/vendor/alibabacloud/live-20161101/src/Models/TagLiveResourcesRequest.php new file mode 100644 index 000000000..eef0bbbe9 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/TagLiveResourcesRequest.php @@ -0,0 +1,98 @@ + 'OwnerId', + 'resourceId' => 'ResourceId', + 'resourceType' => 'ResourceType', + 'tag' => 'Tag', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->resourceId) { + $res['ResourceId'] = $this->resourceId; + } + if (null !== $this->resourceType) { + $res['ResourceType'] = $this->resourceType; + } + if (null !== $this->tag) { + $res['Tag'] = []; + if (null !== $this->tag && \is_array($this->tag)) { + $n = 0; + foreach ($this->tag as $item) { + $res['Tag'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + + return $res; + } + + /** + * @param array $map + * + * @return TagLiveResourcesRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['ResourceId'])) { + if (!empty($map['ResourceId'])) { + $model->resourceId = $map['ResourceId']; + } + } + if (isset($map['ResourceType'])) { + $model->resourceType = $map['ResourceType']; + } + if (isset($map['Tag'])) { + if (!empty($map['Tag'])) { + $model->tag = []; + $n = 0; + foreach ($map['Tag'] as $item) { + $model->tag[$n++] = null !== $item ? tag::fromMap($item) : $item; + } + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/TagLiveResourcesRequest/tag.php b/vendor/alibabacloud/live-20161101/src/Models/TagLiveResourcesRequest/tag.php new file mode 100644 index 000000000..900cdbd92 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/TagLiveResourcesRequest/tag.php @@ -0,0 +1,59 @@ + 'Key', + 'value' => 'Value', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->key) { + $res['Key'] = $this->key; + } + if (null !== $this->value) { + $res['Value'] = $this->value; + } + + return $res; + } + + /** + * @param array $map + * + * @return tag + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Key'])) { + $model->key = $map['Key']; + } + if (isset($map['Value'])) { + $model->value = $map['Value']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/TagLiveResourcesResponse.php b/vendor/alibabacloud/live-20161101/src/Models/TagLiveResourcesResponse.php new file mode 100644 index 000000000..eea8e16a2 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/TagLiveResourcesResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return TagLiveResourcesResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = TagLiveResourcesResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/TagLiveResourcesResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/TagLiveResourcesResponseBody.php new file mode 100644 index 000000000..69af08cc8 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/TagLiveResourcesResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return TagLiveResourcesResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/UnTagLiveResourcesRequest.php b/vendor/alibabacloud/live-20161101/src/Models/UnTagLiveResourcesRequest.php new file mode 100644 index 000000000..d62e13c23 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/UnTagLiveResourcesRequest.php @@ -0,0 +1,99 @@ + 'All', + 'ownerId' => 'OwnerId', + 'resourceId' => 'ResourceId', + 'resourceType' => 'ResourceType', + 'tagKey' => 'TagKey', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->all) { + $res['All'] = $this->all; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->resourceId) { + $res['ResourceId'] = $this->resourceId; + } + if (null !== $this->resourceType) { + $res['ResourceType'] = $this->resourceType; + } + if (null !== $this->tagKey) { + $res['TagKey'] = $this->tagKey; + } + + return $res; + } + + /** + * @param array $map + * + * @return UnTagLiveResourcesRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['All'])) { + $model->all = $map['All']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['ResourceId'])) { + if (!empty($map['ResourceId'])) { + $model->resourceId = $map['ResourceId']; + } + } + if (isset($map['ResourceType'])) { + $model->resourceType = $map['ResourceType']; + } + if (isset($map['TagKey'])) { + if (!empty($map['TagKey'])) { + $model->tagKey = $map['TagKey']; + } + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/UnTagLiveResourcesResponse.php b/vendor/alibabacloud/live-20161101/src/Models/UnTagLiveResourcesResponse.php new file mode 100644 index 000000000..f6dc67e1c --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/UnTagLiveResourcesResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return UnTagLiveResourcesResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = UnTagLiveResourcesResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/UnTagLiveResourcesResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/UnTagLiveResourcesResponseBody.php new file mode 100644 index 000000000..e833c9953 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/UnTagLiveResourcesResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return UnTagLiveResourcesResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateBoardCallbackRequest.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateBoardCallbackRequest.php new file mode 100644 index 000000000..bb6c73211 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateBoardCallbackRequest.php @@ -0,0 +1,119 @@ + 'OwnerId', + 'appId' => 'AppId', + 'authKey' => 'AuthKey', + 'authSwitch' => 'AuthSwitch', + 'callbackEnable' => 'CallbackEnable', + 'callbackUri' => 'CallbackUri', + 'callbackEvents' => 'CallbackEvents', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->appId) { + $res['AppId'] = $this->appId; + } + if (null !== $this->authKey) { + $res['AuthKey'] = $this->authKey; + } + if (null !== $this->authSwitch) { + $res['AuthSwitch'] = $this->authSwitch; + } + if (null !== $this->callbackEnable) { + $res['CallbackEnable'] = $this->callbackEnable; + } + if (null !== $this->callbackUri) { + $res['CallbackUri'] = $this->callbackUri; + } + if (null !== $this->callbackEvents) { + $res['CallbackEvents'] = $this->callbackEvents; + } + + return $res; + } + + /** + * @param array $map + * + * @return UpdateBoardCallbackRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['AppId'])) { + $model->appId = $map['AppId']; + } + if (isset($map['AuthKey'])) { + $model->authKey = $map['AuthKey']; + } + if (isset($map['AuthSwitch'])) { + $model->authSwitch = $map['AuthSwitch']; + } + if (isset($map['CallbackEnable'])) { + $model->callbackEnable = $map['CallbackEnable']; + } + if (isset($map['CallbackUri'])) { + $model->callbackUri = $map['CallbackUri']; + } + if (isset($map['CallbackEvents'])) { + $model->callbackEvents = $map['CallbackEvents']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateBoardCallbackResponse.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateBoardCallbackResponse.php new file mode 100644 index 000000000..ae71184ac --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateBoardCallbackResponse.php @@ -0,0 +1,61 @@ + 'headers', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return UpdateBoardCallbackResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['body'])) { + $model->body = UpdateBoardCallbackResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateBoardCallbackResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateBoardCallbackResponseBody.php new file mode 100644 index 000000000..9479cb13c --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateBoardCallbackResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return UpdateBoardCallbackResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateBoardRequest.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateBoardRequest.php new file mode 100644 index 000000000..309b62ec4 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateBoardRequest.php @@ -0,0 +1,71 @@ + 'OwnerId', + 'appId' => 'AppId', + 'boardData' => 'BoardData', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->appId) { + $res['AppId'] = $this->appId; + } + if (null !== $this->boardData) { + $res['BoardData'] = $this->boardData; + } + + return $res; + } + + /** + * @param array $map + * + * @return UpdateBoardRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['AppId'])) { + $model->appId = $map['AppId']; + } + if (isset($map['BoardData'])) { + $model->boardData = $map['BoardData']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateBoardResponse.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateBoardResponse.php new file mode 100644 index 000000000..274cbc448 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateBoardResponse.php @@ -0,0 +1,61 @@ + 'headers', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return UpdateBoardResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['body'])) { + $model->body = UpdateBoardResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateBoardResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateBoardResponseBody.php new file mode 100644 index 000000000..7758b011a --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateBoardResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return UpdateBoardResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateCasterSceneAudioRequest.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateCasterSceneAudioRequest.php new file mode 100644 index 000000000..cf1c95f10 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateCasterSceneAudioRequest.php @@ -0,0 +1,122 @@ + 'AudioLayer', + 'casterId' => 'CasterId', + 'followEnable' => 'FollowEnable', + 'mixList' => 'MixList', + 'ownerId' => 'OwnerId', + 'sceneId' => 'SceneId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->audioLayer) { + $res['AudioLayer'] = []; + if (null !== $this->audioLayer && \is_array($this->audioLayer)) { + $n = 0; + foreach ($this->audioLayer as $item) { + $res['AudioLayer'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + if (null !== $this->casterId) { + $res['CasterId'] = $this->casterId; + } + if (null !== $this->followEnable) { + $res['FollowEnable'] = $this->followEnable; + } + if (null !== $this->mixList) { + $res['MixList'] = $this->mixList; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->sceneId) { + $res['SceneId'] = $this->sceneId; + } + + return $res; + } + + /** + * @param array $map + * + * @return UpdateCasterSceneAudioRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AudioLayer'])) { + if (!empty($map['AudioLayer'])) { + $model->audioLayer = []; + $n = 0; + foreach ($map['AudioLayer'] as $item) { + $model->audioLayer[$n++] = null !== $item ? audioLayer::fromMap($item) : $item; + } + } + } + if (isset($map['CasterId'])) { + $model->casterId = $map['CasterId']; + } + if (isset($map['FollowEnable'])) { + $model->followEnable = $map['FollowEnable']; + } + if (isset($map['MixList'])) { + if (!empty($map['MixList'])) { + $model->mixList = $map['MixList']; + } + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['SceneId'])) { + $model->sceneId = $map['SceneId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateCasterSceneAudioRequest/audioLayer.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateCasterSceneAudioRequest/audioLayer.php new file mode 100644 index 000000000..4c33ec792 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateCasterSceneAudioRequest/audioLayer.php @@ -0,0 +1,71 @@ + 'FixedDelayDuration', + 'validChannel' => 'ValidChannel', + 'volumeRate' => 'VolumeRate', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->fixedDelayDuration) { + $res['FixedDelayDuration'] = $this->fixedDelayDuration; + } + if (null !== $this->validChannel) { + $res['ValidChannel'] = $this->validChannel; + } + if (null !== $this->volumeRate) { + $res['VolumeRate'] = $this->volumeRate; + } + + return $res; + } + + /** + * @param array $map + * + * @return audioLayer + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['FixedDelayDuration'])) { + $model->fixedDelayDuration = $map['FixedDelayDuration']; + } + if (isset($map['ValidChannel'])) { + $model->validChannel = $map['ValidChannel']; + } + if (isset($map['VolumeRate'])) { + $model->volumeRate = $map['VolumeRate']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateCasterSceneAudioResponse.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateCasterSceneAudioResponse.php new file mode 100644 index 000000000..bf915d331 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateCasterSceneAudioResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return UpdateCasterSceneAudioResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = UpdateCasterSceneAudioResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateCasterSceneAudioResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateCasterSceneAudioResponseBody.php new file mode 100644 index 000000000..7e4b1ecd9 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateCasterSceneAudioResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return UpdateCasterSceneAudioResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateCasterSceneConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateCasterSceneConfigRequest.php new file mode 100644 index 000000000..844d61b13 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateCasterSceneConfigRequest.php @@ -0,0 +1,97 @@ + 'CasterId', + 'componentId' => 'ComponentId', + 'layoutId' => 'LayoutId', + 'ownerId' => 'OwnerId', + 'sceneId' => 'SceneId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->casterId) { + $res['CasterId'] = $this->casterId; + } + if (null !== $this->componentId) { + $res['ComponentId'] = $this->componentId; + } + if (null !== $this->layoutId) { + $res['LayoutId'] = $this->layoutId; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->sceneId) { + $res['SceneId'] = $this->sceneId; + } + + return $res; + } + + /** + * @param array $map + * + * @return UpdateCasterSceneConfigRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['CasterId'])) { + $model->casterId = $map['CasterId']; + } + if (isset($map['ComponentId'])) { + if (!empty($map['ComponentId'])) { + $model->componentId = $map['ComponentId']; + } + } + if (isset($map['LayoutId'])) { + $model->layoutId = $map['LayoutId']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['SceneId'])) { + $model->sceneId = $map['SceneId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateCasterSceneConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateCasterSceneConfigResponse.php new file mode 100644 index 000000000..1529d94fb --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateCasterSceneConfigResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return UpdateCasterSceneConfigResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = UpdateCasterSceneConfigResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateCasterSceneConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateCasterSceneConfigResponseBody.php new file mode 100644 index 000000000..db0abbd9b --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateCasterSceneConfigResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return UpdateCasterSceneConfigResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveASRConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveASRConfigRequest.php new file mode 100644 index 000000000..213d32ed3 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveASRConfigRequest.php @@ -0,0 +1,131 @@ + 'OwnerId', + 'domainName' => 'DomainName', + 'appName' => 'AppName', + 'streamName' => 'StreamName', + 'mnsTopic' => 'MnsTopic', + 'mnsRegion' => 'MnsRegion', + 'period' => 'Period', + 'httpCallbackURL' => 'HttpCallbackURL', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->appName) { + $res['AppName'] = $this->appName; + } + if (null !== $this->streamName) { + $res['StreamName'] = $this->streamName; + } + if (null !== $this->mnsTopic) { + $res['MnsTopic'] = $this->mnsTopic; + } + if (null !== $this->mnsRegion) { + $res['MnsRegion'] = $this->mnsRegion; + } + if (null !== $this->period) { + $res['Period'] = $this->period; + } + if (null !== $this->httpCallbackURL) { + $res['HttpCallbackURL'] = $this->httpCallbackURL; + } + + return $res; + } + + /** + * @param array $map + * + * @return UpdateLiveASRConfigRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['AppName'])) { + $model->appName = $map['AppName']; + } + if (isset($map['StreamName'])) { + $model->streamName = $map['StreamName']; + } + if (isset($map['MnsTopic'])) { + $model->mnsTopic = $map['MnsTopic']; + } + if (isset($map['MnsRegion'])) { + $model->mnsRegion = $map['MnsRegion']; + } + if (isset($map['Period'])) { + $model->period = $map['Period']; + } + if (isset($map['HttpCallbackURL'])) { + $model->httpCallbackURL = $map['HttpCallbackURL']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveASRConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveASRConfigResponse.php new file mode 100644 index 000000000..db0dab8ab --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveASRConfigResponse.php @@ -0,0 +1,61 @@ + 'headers', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return UpdateLiveASRConfigResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['body'])) { + $model->body = UpdateLiveASRConfigResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveASRConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveASRConfigResponseBody.php new file mode 100644 index 000000000..c050f28dc --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveASRConfigResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return UpdateLiveASRConfigResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveAppSnapshotConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveAppSnapshotConfigRequest.php new file mode 100644 index 000000000..5d5b1036c --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveAppSnapshotConfigRequest.php @@ -0,0 +1,155 @@ + 'AppName', + 'callback' => 'Callback', + 'domainName' => 'DomainName', + 'ossBucket' => 'OssBucket', + 'ossEndpoint' => 'OssEndpoint', + 'overwriteOssObject' => 'OverwriteOssObject', + 'ownerId' => 'OwnerId', + 'securityToken' => 'SecurityToken', + 'sequenceOssObject' => 'SequenceOssObject', + 'timeInterval' => 'TimeInterval', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->appName) { + $res['AppName'] = $this->appName; + } + if (null !== $this->callback) { + $res['Callback'] = $this->callback; + } + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->ossBucket) { + $res['OssBucket'] = $this->ossBucket; + } + if (null !== $this->ossEndpoint) { + $res['OssEndpoint'] = $this->ossEndpoint; + } + if (null !== $this->overwriteOssObject) { + $res['OverwriteOssObject'] = $this->overwriteOssObject; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->securityToken) { + $res['SecurityToken'] = $this->securityToken; + } + if (null !== $this->sequenceOssObject) { + $res['SequenceOssObject'] = $this->sequenceOssObject; + } + if (null !== $this->timeInterval) { + $res['TimeInterval'] = $this->timeInterval; + } + + return $res; + } + + /** + * @param array $map + * + * @return UpdateLiveAppSnapshotConfigRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppName'])) { + $model->appName = $map['AppName']; + } + if (isset($map['Callback'])) { + $model->callback = $map['Callback']; + } + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['OssBucket'])) { + $model->ossBucket = $map['OssBucket']; + } + if (isset($map['OssEndpoint'])) { + $model->ossEndpoint = $map['OssEndpoint']; + } + if (isset($map['OverwriteOssObject'])) { + $model->overwriteOssObject = $map['OverwriteOssObject']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['SecurityToken'])) { + $model->securityToken = $map['SecurityToken']; + } + if (isset($map['SequenceOssObject'])) { + $model->sequenceOssObject = $map['SequenceOssObject']; + } + if (isset($map['TimeInterval'])) { + $model->timeInterval = $map['TimeInterval']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveAppSnapshotConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveAppSnapshotConfigResponse.php new file mode 100644 index 000000000..a0fe5b2f1 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveAppSnapshotConfigResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return UpdateLiveAppSnapshotConfigResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = UpdateLiveAppSnapshotConfigResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveAppSnapshotConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveAppSnapshotConfigResponseBody.php new file mode 100644 index 000000000..455d3f052 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveAppSnapshotConfigResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return UpdateLiveAppSnapshotConfigResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveAudioAuditConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveAudioAuditConfigRequest.php new file mode 100644 index 000000000..242af771e --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveAudioAuditConfigRequest.php @@ -0,0 +1,131 @@ + 'AppName', + 'bizType' => 'BizType', + 'domainName' => 'DomainName', + 'ossBucket' => 'OssBucket', + 'ossEndpoint' => 'OssEndpoint', + 'ossObject' => 'OssObject', + 'ownerId' => 'OwnerId', + 'streamName' => 'StreamName', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->appName) { + $res['AppName'] = $this->appName; + } + if (null !== $this->bizType) { + $res['BizType'] = $this->bizType; + } + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->ossBucket) { + $res['OssBucket'] = $this->ossBucket; + } + if (null !== $this->ossEndpoint) { + $res['OssEndpoint'] = $this->ossEndpoint; + } + if (null !== $this->ossObject) { + $res['OssObject'] = $this->ossObject; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->streamName) { + $res['StreamName'] = $this->streamName; + } + + return $res; + } + + /** + * @param array $map + * + * @return UpdateLiveAudioAuditConfigRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppName'])) { + $model->appName = $map['AppName']; + } + if (isset($map['BizType'])) { + $model->bizType = $map['BizType']; + } + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['OssBucket'])) { + $model->ossBucket = $map['OssBucket']; + } + if (isset($map['OssEndpoint'])) { + $model->ossEndpoint = $map['OssEndpoint']; + } + if (isset($map['OssObject'])) { + $model->ossObject = $map['OssObject']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['StreamName'])) { + $model->streamName = $map['StreamName']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveAudioAuditConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveAudioAuditConfigResponse.php new file mode 100644 index 000000000..7dfcebf0c --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveAudioAuditConfigResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return UpdateLiveAudioAuditConfigResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = UpdateLiveAudioAuditConfigResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveAudioAuditConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveAudioAuditConfigResponseBody.php new file mode 100644 index 000000000..2683a1147 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveAudioAuditConfigResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return UpdateLiveAudioAuditConfigResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveAudioAuditNotifyConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveAudioAuditNotifyConfigRequest.php new file mode 100644 index 000000000..fc7771e05 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveAudioAuditNotifyConfigRequest.php @@ -0,0 +1,83 @@ + 'Callback', + 'callbackTemplate' => 'CallbackTemplate', + 'domainName' => 'DomainName', + 'ownerId' => 'OwnerId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->callback) { + $res['Callback'] = $this->callback; + } + if (null !== $this->callbackTemplate) { + $res['CallbackTemplate'] = $this->callbackTemplate; + } + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + return $res; + } + + /** + * @param array $map + * + * @return UpdateLiveAudioAuditNotifyConfigRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Callback'])) { + $model->callback = $map['Callback']; + } + if (isset($map['CallbackTemplate'])) { + $model->callbackTemplate = $map['CallbackTemplate']; + } + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveAudioAuditNotifyConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveAudioAuditNotifyConfigResponse.php new file mode 100644 index 000000000..3e00bf40b --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveAudioAuditNotifyConfigResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return UpdateLiveAudioAuditNotifyConfigResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = UpdateLiveAudioAuditNotifyConfigResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveAudioAuditNotifyConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveAudioAuditNotifyConfigResponseBody.php new file mode 100644 index 000000000..a4ae1fe8c --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveAudioAuditNotifyConfigResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return UpdateLiveAudioAuditNotifyConfigResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveDetectNotifyConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveDetectNotifyConfigRequest.php new file mode 100644 index 000000000..9375206a1 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveDetectNotifyConfigRequest.php @@ -0,0 +1,83 @@ + 'DomainName', + 'notifyUrl' => 'NotifyUrl', + 'ownerId' => 'OwnerId', + 'securityToken' => 'SecurityToken', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->notifyUrl) { + $res['NotifyUrl'] = $this->notifyUrl; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->securityToken) { + $res['SecurityToken'] = $this->securityToken; + } + + return $res; + } + + /** + * @param array $map + * + * @return UpdateLiveDetectNotifyConfigRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['NotifyUrl'])) { + $model->notifyUrl = $map['NotifyUrl']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['SecurityToken'])) { + $model->securityToken = $map['SecurityToken']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveDetectNotifyConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveDetectNotifyConfigResponse.php new file mode 100644 index 000000000..f42ec1dda --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveDetectNotifyConfigResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return UpdateLiveDetectNotifyConfigResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = UpdateLiveDetectNotifyConfigResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveDetectNotifyConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveDetectNotifyConfigResponseBody.php new file mode 100644 index 000000000..9de62387d --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveDetectNotifyConfigResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return UpdateLiveDetectNotifyConfigResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateLivePullStreamInfoConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateLivePullStreamInfoConfigRequest.php new file mode 100644 index 000000000..a9f2cb88a --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateLivePullStreamInfoConfigRequest.php @@ -0,0 +1,119 @@ + 'AppName', + 'domainName' => 'DomainName', + 'endTime' => 'EndTime', + 'ownerId' => 'OwnerId', + 'sourceUrl' => 'SourceUrl', + 'startTime' => 'StartTime', + 'streamName' => 'StreamName', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->appName) { + $res['AppName'] = $this->appName; + } + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->endTime) { + $res['EndTime'] = $this->endTime; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->sourceUrl) { + $res['SourceUrl'] = $this->sourceUrl; + } + if (null !== $this->startTime) { + $res['StartTime'] = $this->startTime; + } + if (null !== $this->streamName) { + $res['StreamName'] = $this->streamName; + } + + return $res; + } + + /** + * @param array $map + * + * @return UpdateLivePullStreamInfoConfigRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppName'])) { + $model->appName = $map['AppName']; + } + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['EndTime'])) { + $model->endTime = $map['EndTime']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['SourceUrl'])) { + $model->sourceUrl = $map['SourceUrl']; + } + if (isset($map['StartTime'])) { + $model->startTime = $map['StartTime']; + } + if (isset($map['StreamName'])) { + $model->streamName = $map['StreamName']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateLivePullStreamInfoConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateLivePullStreamInfoConfigResponse.php new file mode 100644 index 000000000..55e7ee1b6 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateLivePullStreamInfoConfigResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return UpdateLivePullStreamInfoConfigResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = UpdateLivePullStreamInfoConfigResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateLivePullStreamInfoConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateLivePullStreamInfoConfigResponseBody.php new file mode 100644 index 000000000..1ded7409a --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateLivePullStreamInfoConfigResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return UpdateLivePullStreamInfoConfigResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveRecordNotifyConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveRecordNotifyConfigRequest.php new file mode 100644 index 000000000..ae2a16d60 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveRecordNotifyConfigRequest.php @@ -0,0 +1,107 @@ + 'DomainName', + 'needStatusNotify' => 'NeedStatusNotify', + 'notifyUrl' => 'NotifyUrl', + 'onDemandUrl' => 'OnDemandUrl', + 'ownerId' => 'OwnerId', + 'securityToken' => 'SecurityToken', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->needStatusNotify) { + $res['NeedStatusNotify'] = $this->needStatusNotify; + } + if (null !== $this->notifyUrl) { + $res['NotifyUrl'] = $this->notifyUrl; + } + if (null !== $this->onDemandUrl) { + $res['OnDemandUrl'] = $this->onDemandUrl; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->securityToken) { + $res['SecurityToken'] = $this->securityToken; + } + + return $res; + } + + /** + * @param array $map + * + * @return UpdateLiveRecordNotifyConfigRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['NeedStatusNotify'])) { + $model->needStatusNotify = $map['NeedStatusNotify']; + } + if (isset($map['NotifyUrl'])) { + $model->notifyUrl = $map['NotifyUrl']; + } + if (isset($map['OnDemandUrl'])) { + $model->onDemandUrl = $map['OnDemandUrl']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['SecurityToken'])) { + $model->securityToken = $map['SecurityToken']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveRecordNotifyConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveRecordNotifyConfigResponse.php new file mode 100644 index 000000000..57c7a4318 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveRecordNotifyConfigResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return UpdateLiveRecordNotifyConfigResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = UpdateLiveRecordNotifyConfigResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveRecordNotifyConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveRecordNotifyConfigResponseBody.php new file mode 100644 index 000000000..4b022a9de --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveRecordNotifyConfigResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return UpdateLiveRecordNotifyConfigResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveSnapshotDetectPornConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveSnapshotDetectPornConfigRequest.php new file mode 100644 index 000000000..39fbf21c0 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveSnapshotDetectPornConfigRequest.php @@ -0,0 +1,145 @@ + 'AppName', + 'domainName' => 'DomainName', + 'interval' => 'Interval', + 'ossBucket' => 'OssBucket', + 'ossEndpoint' => 'OssEndpoint', + 'ossObject' => 'OssObject', + 'ownerId' => 'OwnerId', + 'scene' => 'Scene', + 'securityToken' => 'SecurityToken', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->appName) { + $res['AppName'] = $this->appName; + } + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->interval) { + $res['Interval'] = $this->interval; + } + if (null !== $this->ossBucket) { + $res['OssBucket'] = $this->ossBucket; + } + if (null !== $this->ossEndpoint) { + $res['OssEndpoint'] = $this->ossEndpoint; + } + if (null !== $this->ossObject) { + $res['OssObject'] = $this->ossObject; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->scene) { + $res['Scene'] = $this->scene; + } + if (null !== $this->securityToken) { + $res['SecurityToken'] = $this->securityToken; + } + + return $res; + } + + /** + * @param array $map + * + * @return UpdateLiveSnapshotDetectPornConfigRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppName'])) { + $model->appName = $map['AppName']; + } + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['Interval'])) { + $model->interval = $map['Interval']; + } + if (isset($map['OssBucket'])) { + $model->ossBucket = $map['OssBucket']; + } + if (isset($map['OssEndpoint'])) { + $model->ossEndpoint = $map['OssEndpoint']; + } + if (isset($map['OssObject'])) { + $model->ossObject = $map['OssObject']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['Scene'])) { + if (!empty($map['Scene'])) { + $model->scene = $map['Scene']; + } + } + if (isset($map['SecurityToken'])) { + $model->securityToken = $map['SecurityToken']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveSnapshotDetectPornConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveSnapshotDetectPornConfigResponse.php new file mode 100644 index 000000000..4f4365809 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveSnapshotDetectPornConfigResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return UpdateLiveSnapshotDetectPornConfigResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = UpdateLiveSnapshotDetectPornConfigResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveSnapshotDetectPornConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveSnapshotDetectPornConfigResponseBody.php new file mode 100644 index 000000000..5b83d679e --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveSnapshotDetectPornConfigResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return UpdateLiveSnapshotDetectPornConfigResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveSnapshotNotifyConfigRequest.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveSnapshotNotifyConfigRequest.php new file mode 100644 index 000000000..e02dd992f --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveSnapshotNotifyConfigRequest.php @@ -0,0 +1,95 @@ + 'DomainName', + 'notifyAuthKey' => 'NotifyAuthKey', + 'notifyReqAuth' => 'NotifyReqAuth', + 'notifyUrl' => 'NotifyUrl', + 'ownerId' => 'OwnerId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->notifyAuthKey) { + $res['NotifyAuthKey'] = $this->notifyAuthKey; + } + if (null !== $this->notifyReqAuth) { + $res['NotifyReqAuth'] = $this->notifyReqAuth; + } + if (null !== $this->notifyUrl) { + $res['NotifyUrl'] = $this->notifyUrl; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + return $res; + } + + /** + * @param array $map + * + * @return UpdateLiveSnapshotNotifyConfigRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['NotifyAuthKey'])) { + $model->notifyAuthKey = $map['NotifyAuthKey']; + } + if (isset($map['NotifyReqAuth'])) { + $model->notifyReqAuth = $map['NotifyReqAuth']; + } + if (isset($map['NotifyUrl'])) { + $model->notifyUrl = $map['NotifyUrl']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveSnapshotNotifyConfigResponse.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveSnapshotNotifyConfigResponse.php new file mode 100644 index 000000000..b45a72d27 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveSnapshotNotifyConfigResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return UpdateLiveSnapshotNotifyConfigResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = UpdateLiveSnapshotNotifyConfigResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveSnapshotNotifyConfigResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveSnapshotNotifyConfigResponseBody.php new file mode 100644 index 000000000..2a99e7230 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveSnapshotNotifyConfigResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return UpdateLiveSnapshotNotifyConfigResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveStreamMonitorRequest.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveStreamMonitorRequest.php new file mode 100644 index 000000000..ba7cbc126 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveStreamMonitorRequest.php @@ -0,0 +1,131 @@ + 'App', + 'domain' => 'Domain', + 'inputList' => 'InputList', + 'monitorId' => 'MonitorId', + 'monitorName' => 'MonitorName', + 'outputTemplate' => 'OutputTemplate', + 'ownerId' => 'OwnerId', + 'stream' => 'Stream', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->app) { + $res['App'] = $this->app; + } + if (null !== $this->domain) { + $res['Domain'] = $this->domain; + } + if (null !== $this->inputList) { + $res['InputList'] = $this->inputList; + } + if (null !== $this->monitorId) { + $res['MonitorId'] = $this->monitorId; + } + if (null !== $this->monitorName) { + $res['MonitorName'] = $this->monitorName; + } + if (null !== $this->outputTemplate) { + $res['OutputTemplate'] = $this->outputTemplate; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->stream) { + $res['Stream'] = $this->stream; + } + + return $res; + } + + /** + * @param array $map + * + * @return UpdateLiveStreamMonitorRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['App'])) { + $model->app = $map['App']; + } + if (isset($map['Domain'])) { + $model->domain = $map['Domain']; + } + if (isset($map['InputList'])) { + $model->inputList = $map['InputList']; + } + if (isset($map['MonitorId'])) { + $model->monitorId = $map['MonitorId']; + } + if (isset($map['MonitorName'])) { + $model->monitorName = $map['MonitorName']; + } + if (isset($map['OutputTemplate'])) { + $model->outputTemplate = $map['OutputTemplate']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['Stream'])) { + $model->stream = $map['Stream']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveStreamMonitorResponse.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveStreamMonitorResponse.php new file mode 100644 index 000000000..20093f3ab --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveStreamMonitorResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return UpdateLiveStreamMonitorResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = UpdateLiveStreamMonitorResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveStreamMonitorResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveStreamMonitorResponseBody.php new file mode 100644 index 000000000..6c9197496 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveStreamMonitorResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return UpdateLiveStreamMonitorResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveStreamWatermarkRequest.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveStreamWatermarkRequest.php new file mode 100644 index 000000000..c5f54b5e5 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveStreamWatermarkRequest.php @@ -0,0 +1,179 @@ + 'Description', + 'height' => 'Height', + 'name' => 'Name', + 'offsetCorner' => 'OffsetCorner', + 'ownerId' => 'OwnerId', + 'pictureUrl' => 'PictureUrl', + 'refHeight' => 'RefHeight', + 'refWidth' => 'RefWidth', + 'templateId' => 'TemplateId', + 'transparency' => 'Transparency', + 'XOffset' => 'XOffset', + 'YOffset' => 'YOffset', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->description) { + $res['Description'] = $this->description; + } + if (null !== $this->height) { + $res['Height'] = $this->height; + } + if (null !== $this->name) { + $res['Name'] = $this->name; + } + if (null !== $this->offsetCorner) { + $res['OffsetCorner'] = $this->offsetCorner; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->pictureUrl) { + $res['PictureUrl'] = $this->pictureUrl; + } + if (null !== $this->refHeight) { + $res['RefHeight'] = $this->refHeight; + } + if (null !== $this->refWidth) { + $res['RefWidth'] = $this->refWidth; + } + if (null !== $this->templateId) { + $res['TemplateId'] = $this->templateId; + } + if (null !== $this->transparency) { + $res['Transparency'] = $this->transparency; + } + if (null !== $this->XOffset) { + $res['XOffset'] = $this->XOffset; + } + if (null !== $this->YOffset) { + $res['YOffset'] = $this->YOffset; + } + + return $res; + } + + /** + * @param array $map + * + * @return UpdateLiveStreamWatermarkRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Description'])) { + $model->description = $map['Description']; + } + if (isset($map['Height'])) { + $model->height = $map['Height']; + } + if (isset($map['Name'])) { + $model->name = $map['Name']; + } + if (isset($map['OffsetCorner'])) { + $model->offsetCorner = $map['OffsetCorner']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['PictureUrl'])) { + $model->pictureUrl = $map['PictureUrl']; + } + if (isset($map['RefHeight'])) { + $model->refHeight = $map['RefHeight']; + } + if (isset($map['RefWidth'])) { + $model->refWidth = $map['RefWidth']; + } + if (isset($map['TemplateId'])) { + $model->templateId = $map['TemplateId']; + } + if (isset($map['Transparency'])) { + $model->transparency = $map['Transparency']; + } + if (isset($map['XOffset'])) { + $model->XOffset = $map['XOffset']; + } + if (isset($map['YOffset'])) { + $model->YOffset = $map['YOffset']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveStreamWatermarkResponse.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveStreamWatermarkResponse.php new file mode 100644 index 000000000..648de3e03 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveStreamWatermarkResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return UpdateLiveStreamWatermarkResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = UpdateLiveStreamWatermarkResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveStreamWatermarkResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveStreamWatermarkResponseBody.php new file mode 100644 index 000000000..060a101b6 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveStreamWatermarkResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return UpdateLiveStreamWatermarkResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveStreamWatermarkRuleRequest.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveStreamWatermarkRuleRequest.php new file mode 100644 index 000000000..d9dea42a1 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveStreamWatermarkRuleRequest.php @@ -0,0 +1,95 @@ + 'Description', + 'name' => 'Name', + 'ownerId' => 'OwnerId', + 'ruleId' => 'RuleId', + 'templateId' => 'TemplateId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->description) { + $res['Description'] = $this->description; + } + if (null !== $this->name) { + $res['Name'] = $this->name; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->ruleId) { + $res['RuleId'] = $this->ruleId; + } + if (null !== $this->templateId) { + $res['TemplateId'] = $this->templateId; + } + + return $res; + } + + /** + * @param array $map + * + * @return UpdateLiveStreamWatermarkRuleRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Description'])) { + $model->description = $map['Description']; + } + if (isset($map['Name'])) { + $model->name = $map['Name']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['RuleId'])) { + $model->ruleId = $map['RuleId']; + } + if (isset($map['TemplateId'])) { + $model->templateId = $map['TemplateId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveStreamWatermarkRuleResponse.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveStreamWatermarkRuleResponse.php new file mode 100644 index 000000000..22a30425a --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveStreamWatermarkRuleResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return UpdateLiveStreamWatermarkRuleResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = UpdateLiveStreamWatermarkRuleResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveStreamWatermarkRuleResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveStreamWatermarkRuleResponseBody.php new file mode 100644 index 000000000..04ac10a9d --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveStreamWatermarkRuleResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return UpdateLiveStreamWatermarkRuleResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveTopLevelDomainRequest.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveTopLevelDomainRequest.php new file mode 100644 index 000000000..e723601bf --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveTopLevelDomainRequest.php @@ -0,0 +1,71 @@ + 'DomainName', + 'securityToken' => 'SecurityToken', + 'topLevelDomain' => 'TopLevelDomain', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->securityToken) { + $res['SecurityToken'] = $this->securityToken; + } + if (null !== $this->topLevelDomain) { + $res['TopLevelDomain'] = $this->topLevelDomain; + } + + return $res; + } + + /** + * @param array $map + * + * @return UpdateLiveTopLevelDomainRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['SecurityToken'])) { + $model->securityToken = $map['SecurityToken']; + } + if (isset($map['TopLevelDomain'])) { + $model->topLevelDomain = $map['TopLevelDomain']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveTopLevelDomainResponse.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveTopLevelDomainResponse.php new file mode 100644 index 000000000..283fa4c1f --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveTopLevelDomainResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return UpdateLiveTopLevelDomainResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = UpdateLiveTopLevelDomainResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveTopLevelDomainResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveTopLevelDomainResponseBody.php new file mode 100644 index 000000000..fc0ef0513 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateLiveTopLevelDomainResponseBody.php @@ -0,0 +1,47 @@ + 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return UpdateLiveTopLevelDomainResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateMessageAppRequest.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateMessageAppRequest.php new file mode 100644 index 000000000..7eed6738d --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateMessageAppRequest.php @@ -0,0 +1,83 @@ + 'AppConfig', + 'appId' => 'AppId', + 'appName' => 'AppName', + 'extension' => 'Extension', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->appConfig) { + $res['AppConfig'] = $this->appConfig; + } + if (null !== $this->appId) { + $res['AppId'] = $this->appId; + } + if (null !== $this->appName) { + $res['AppName'] = $this->appName; + } + if (null !== $this->extension) { + $res['Extension'] = $this->extension; + } + + return $res; + } + + /** + * @param array $map + * + * @return UpdateMessageAppRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppConfig'])) { + $model->appConfig = $map['AppConfig']; + } + if (isset($map['AppId'])) { + $model->appId = $map['AppId']; + } + if (isset($map['AppName'])) { + $model->appName = $map['AppName']; + } + if (isset($map['Extension'])) { + $model->extension = $map['Extension']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateMessageAppResponse.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateMessageAppResponse.php new file mode 100644 index 000000000..03dc22d90 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateMessageAppResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return UpdateMessageAppResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = UpdateMessageAppResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateMessageAppResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateMessageAppResponseBody.php new file mode 100644 index 000000000..732a7c9dd --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateMessageAppResponseBody.php @@ -0,0 +1,60 @@ + 'RequestId', + 'result' => 'Result', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->result) { + $res['Result'] = null !== $this->result ? $this->result->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return UpdateMessageAppResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['Result'])) { + $model->result = result::fromMap($map['Result']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateMessageAppResponseBody/result.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateMessageAppResponseBody/result.php new file mode 100644 index 000000000..97ffe6dff --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateMessageAppResponseBody/result.php @@ -0,0 +1,47 @@ + 'Success', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->success) { + $res['Success'] = $this->success; + } + + return $res; + } + + /** + * @param array $map + * + * @return result + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Success'])) { + $model->success = $map['Success']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateMessageAppShrinkRequest.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateMessageAppShrinkRequest.php new file mode 100644 index 000000000..53818f723 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateMessageAppShrinkRequest.php @@ -0,0 +1,83 @@ + 'AppConfig', + 'appId' => 'AppId', + 'appName' => 'AppName', + 'extensionShrink' => 'Extension', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->appConfigShrink) { + $res['AppConfig'] = $this->appConfigShrink; + } + if (null !== $this->appId) { + $res['AppId'] = $this->appId; + } + if (null !== $this->appName) { + $res['AppName'] = $this->appName; + } + if (null !== $this->extensionShrink) { + $res['Extension'] = $this->extensionShrink; + } + + return $res; + } + + /** + * @param array $map + * + * @return UpdateMessageAppShrinkRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppConfig'])) { + $model->appConfigShrink = $map['AppConfig']; + } + if (isset($map['AppId'])) { + $model->appId = $map['AppId']; + } + if (isset($map['AppName'])) { + $model->appName = $map['AppName']; + } + if (isset($map['Extension'])) { + $model->extensionShrink = $map['Extension']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateMessageGroupRequest.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateMessageGroupRequest.php new file mode 100644 index 000000000..8b121a63e --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateMessageGroupRequest.php @@ -0,0 +1,71 @@ + 'AppId', + 'extension' => 'Extension', + 'groupId' => 'GroupId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->appId) { + $res['AppId'] = $this->appId; + } + if (null !== $this->extension) { + $res['Extension'] = $this->extension; + } + if (null !== $this->groupId) { + $res['GroupId'] = $this->groupId; + } + + return $res; + } + + /** + * @param array $map + * + * @return UpdateMessageGroupRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppId'])) { + $model->appId = $map['AppId']; + } + if (isset($map['Extension'])) { + $model->extension = $map['Extension']; + } + if (isset($map['GroupId'])) { + $model->groupId = $map['GroupId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateMessageGroupResponse.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateMessageGroupResponse.php new file mode 100644 index 000000000..90c28143a --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateMessageGroupResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return UpdateMessageGroupResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = UpdateMessageGroupResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateMessageGroupResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateMessageGroupResponseBody.php new file mode 100644 index 000000000..2e8189f5f --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateMessageGroupResponseBody.php @@ -0,0 +1,60 @@ + 'RequestId', + 'result' => 'Result', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + if (null !== $this->result) { + $res['Result'] = null !== $this->result ? $this->result->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return UpdateMessageGroupResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + if (isset($map['Result'])) { + $model->result = result::fromMap($map['Result']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateMessageGroupResponseBody/result.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateMessageGroupResponseBody/result.php new file mode 100644 index 000000000..9343a5734 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateMessageGroupResponseBody/result.php @@ -0,0 +1,47 @@ + 'Success', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->success) { + $res['Success'] = $this->success; + } + + return $res; + } + + /** + * @param array $map + * + * @return result + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Success'])) { + $model->success = $map['Success']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateMessageGroupShrinkRequest.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateMessageGroupShrinkRequest.php new file mode 100644 index 000000000..41c113a6c --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateMessageGroupShrinkRequest.php @@ -0,0 +1,71 @@ + 'AppId', + 'extensionShrink' => 'Extension', + 'groupId' => 'GroupId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->appId) { + $res['AppId'] = $this->appId; + } + if (null !== $this->extensionShrink) { + $res['Extension'] = $this->extensionShrink; + } + if (null !== $this->groupId) { + $res['GroupId'] = $this->groupId; + } + + return $res; + } + + /** + * @param array $map + * + * @return UpdateMessageGroupShrinkRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['AppId'])) { + $model->appId = $map['AppId']; + } + if (isset($map['Extension'])) { + $model->extensionShrink = $map['Extension']; + } + if (isset($map['GroupId'])) { + $model->groupId = $map['GroupId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateMixStreamRequest.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateMixStreamRequest.php new file mode 100644 index 000000000..afa6a74b2 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateMixStreamRequest.php @@ -0,0 +1,95 @@ + 'DomainName', + 'inputStreamList' => 'InputStreamList', + 'layoutId' => 'LayoutId', + 'mixStreamId' => 'MixStreamId', + 'ownerId' => 'OwnerId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->inputStreamList) { + $res['InputStreamList'] = $this->inputStreamList; + } + if (null !== $this->layoutId) { + $res['LayoutId'] = $this->layoutId; + } + if (null !== $this->mixStreamId) { + $res['MixStreamId'] = $this->mixStreamId; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + + return $res; + } + + /** + * @param array $map + * + * @return UpdateMixStreamRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['InputStreamList'])) { + $model->inputStreamList = $map['InputStreamList']; + } + if (isset($map['LayoutId'])) { + $model->layoutId = $map['LayoutId']; + } + if (isset($map['MixStreamId'])) { + $model->mixStreamId = $map['MixStreamId']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateMixStreamResponse.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateMixStreamResponse.php new file mode 100644 index 000000000..8173a60a6 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateMixStreamResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return UpdateMixStreamResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = UpdateMixStreamResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/UpdateMixStreamResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/UpdateMixStreamResponseBody.php new file mode 100644 index 000000000..c9312df38 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/UpdateMixStreamResponseBody.php @@ -0,0 +1,59 @@ + 'MixStreamId', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->mixStreamId) { + $res['MixStreamId'] = $this->mixStreamId; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return UpdateMixStreamResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['MixStreamId'])) { + $model->mixStreamId = $map['MixStreamId']; + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/VerifyLiveDomainOwnerRequest.php b/vendor/alibabacloud/live-20161101/src/Models/VerifyLiveDomainOwnerRequest.php new file mode 100644 index 000000000..70aaebd20 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/VerifyLiveDomainOwnerRequest.php @@ -0,0 +1,71 @@ + 'DomainName', + 'ownerId' => 'OwnerId', + 'verifyType' => 'VerifyType', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->domainName) { + $res['DomainName'] = $this->domainName; + } + if (null !== $this->ownerId) { + $res['OwnerId'] = $this->ownerId; + } + if (null !== $this->verifyType) { + $res['VerifyType'] = $this->verifyType; + } + + return $res; + } + + /** + * @param array $map + * + * @return VerifyLiveDomainOwnerRequest + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['DomainName'])) { + $model->domainName = $map['DomainName']; + } + if (isset($map['OwnerId'])) { + $model->ownerId = $map['OwnerId']; + } + if (isset($map['VerifyType'])) { + $model->verifyType = $map['VerifyType']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/VerifyLiveDomainOwnerResponse.php b/vendor/alibabacloud/live-20161101/src/Models/VerifyLiveDomainOwnerResponse.php new file mode 100644 index 000000000..232490c8c --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/VerifyLiveDomainOwnerResponse.php @@ -0,0 +1,74 @@ + 'headers', + 'statusCode' => 'statusCode', + 'body' => 'body', + ]; + + public function validate() + { + Model::validateRequired('headers', $this->headers, true); + Model::validateRequired('statusCode', $this->statusCode, true); + Model::validateRequired('body', $this->body, true); + } + + public function toMap() + { + $res = []; + if (null !== $this->headers) { + $res['headers'] = $this->headers; + } + if (null !== $this->statusCode) { + $res['statusCode'] = $this->statusCode; + } + if (null !== $this->body) { + $res['body'] = null !== $this->body ? $this->body->toMap() : null; + } + + return $res; + } + + /** + * @param array $map + * + * @return VerifyLiveDomainOwnerResponse + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['headers'])) { + $model->headers = $map['headers']; + } + if (isset($map['statusCode'])) { + $model->statusCode = $map['statusCode']; + } + if (isset($map['body'])) { + $model->body = VerifyLiveDomainOwnerResponseBody::fromMap($map['body']); + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live-20161101/src/Models/VerifyLiveDomainOwnerResponseBody.php b/vendor/alibabacloud/live-20161101/src/Models/VerifyLiveDomainOwnerResponseBody.php new file mode 100644 index 000000000..1f3a8d971 --- /dev/null +++ b/vendor/alibabacloud/live-20161101/src/Models/VerifyLiveDomainOwnerResponseBody.php @@ -0,0 +1,59 @@ + 'Content', + 'requestId' => 'RequestId', + ]; + + public function validate() + { + } + + public function toMap() + { + $res = []; + if (null !== $this->content) { + $res['Content'] = $this->content; + } + if (null !== $this->requestId) { + $res['RequestId'] = $this->requestId; + } + + return $res; + } + + /** + * @param array $map + * + * @return VerifyLiveDomainOwnerResponseBody + */ + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['Content'])) { + $model->content = $map['Content']; + } + if (isset($map['RequestId'])) { + $model->requestId = $map['RequestId']; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/live/Live.php b/vendor/alibabacloud/live/Live.php new file mode 100644 index 000000000..1c6940c21 --- /dev/null +++ b/vendor/alibabacloud/live/Live.php @@ -0,0 +1,12 @@ + + +

+ +

Alibaba Cloud Live SDK for PHP

+ +If [Alibaba Cloud SDK for PHP][sdk] is installed, there is no need to install the product dependency package. This product dependency package is only part of the synchronization from [Alibaba Cloud SDK for PHP][sdk], and its namespace and usage are consistent with [Alibaba Cloud SDK for PHP][sdk]. + +If you don't care about file size, we recommend that you install [Alibaba Cloud SDK for PHP][sdk] and update it regularly so as to maintain the latest and most complete product support: +``` +composer require alibabacloud/sdk +``` + +The product can also be installed only: +> The version of this product is always synchronized with [Alibaba Cloud SDK for PHP][sdk] to ensure that it can switch with [Alibaba Cloud SDK for PHP][sdk] at any time without changing the business code, although the code between different versions of this product may not change. +``` +composer require alibabacloud/live +``` + +*** +Refer to document [Alibaba Cloud SDK for PHP][sdk] for more SDK usage. + +[sdk]: https://github.com/aliyun/openapi-sdk-php diff --git a/vendor/alibabacloud/live/README.md b/vendor/alibabacloud/live/README.md new file mode 100644 index 000000000..3c11e6703 --- /dev/null +++ b/vendor/alibabacloud/live/README.md @@ -0,0 +1,25 @@ +简体中文 | [English](./README-EN.md) + +

+ +

+ +

Alibaba Cloud Live SDK for PHP

+ +若已安装 [Alibaba Cloud SDK for PHP][sdk] 则无需安装本产品依赖包。本产品依赖包只是从 [Alibaba Cloud SDK for PHP][sdk] 中同步出来的一部分,其命名空间、用法与 [Alibaba Cloud SDK for PHP][sdk] 一致。 + +如果您不在乎文件体积,建议您安装 [Alibaba Cloud SDK for PHP][sdk] 并经常更新,以便保持最新、最全的产品支持: +``` +composer require alibabacloud/sdk +``` + +也可仅安装本产品: +> 本产品的版本始终和 [Alibaba Cloud SDK for PHP][sdk] 保持同步,以保证在不改变业务代码的情况下随时和 [Alibaba Cloud SDK for PHP][sdk] 相互切换,尽管本产品不同版本之间的代码可能没有变化。 +``` +composer require alibabacloud/live +``` + +*** +更多 SDK 的使用请参考 [Alibaba Cloud SDK for PHP][sdk] 文档。 + +[sdk]: https://github.com/aliyun/openapi-sdk-php diff --git a/vendor/alibabacloud/live/V20161101/Live.php b/vendor/alibabacloud/live/V20161101/Live.php new file mode 100644 index 000000000..449ec248e --- /dev/null +++ b/vendor/alibabacloud/live/V20161101/Live.php @@ -0,0 +1,12 @@ +data['ComponentId'] = $componentId; + foreach ($componentId as $i => $iValue) { + $this->options['query']['ComponentId.' . ($i + 1)] = $iValue; + } + + return $this; + } +} + +/** + * @method string getClientToken() + * @method $this withClientToken($value) + * @method string getStartTime() + * @method $this withStartTime($value) + * @method string getSideOutputUrl() + * @method $this withSideOutputUrl($value) + * @method array getItem() + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getRepeatNum() + * @method $this withRepeatNum($value) + * @method string getCallbackUrl() + * @method $this withCallbackUrl($value) + */ +class AddCasterEpisodeGroup extends Rpc +{ + + /** + * @param array $item + * + * @return $this + */ + public function withItem(array $item) + { + $this->data['Item'] = $item; + foreach ($item as $depth1 => $depth1Value) { + if(isset($depth1Value['ItemName'])){ + $this->options['query']['Item.' . ($depth1 + 1) . '.ItemName'] = $depth1Value['ItemName']; + } + if(isset($depth1Value['VodUrl'])){ + $this->options['query']['Item.' . ($depth1 + 1) . '.VodUrl'] = $depth1Value['VodUrl']; + } + } + + return $this; + } +} + +/** + * @method string getClientToken() + * @method $this withClientToken($value) + * @method string getContent() + * @method $this withContent($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + */ +class AddCasterEpisodeGroupContent extends Rpc +{ +} + +/** + * @method array getBlendList() + * @method string getCasterId() + * @method $this withCasterId($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method array getAudioLayer() + * @method array getVideoLayer() + * @method array getMixList() + */ +class AddCasterLayout extends Rpc +{ + + /** + * @param array $blendList + * + * @return $this + */ + public function withBlendList(array $blendList) + { + $this->data['BlendList'] = $blendList; + foreach ($blendList as $i => $iValue) { + $this->options['query']['BlendList.' . ($i + 1)] = $iValue; + } + + return $this; + } + + /** + * @param array $audioLayer + * + * @return $this + */ + public function withAudioLayer(array $audioLayer) + { + $this->data['AudioLayer'] = $audioLayer; + foreach ($audioLayer as $depth1 => $depth1Value) { + if(isset($depth1Value['VolumeRate'])){ + $this->options['query']['AudioLayer.' . ($depth1 + 1) . '.VolumeRate'] = $depth1Value['VolumeRate']; + } + if(isset($depth1Value['ValidChannel'])){ + $this->options['query']['AudioLayer.' . ($depth1 + 1) . '.ValidChannel'] = $depth1Value['ValidChannel']; + } + if(isset($depth1Value['FixedDelayDuration'])){ + $this->options['query']['AudioLayer.' . ($depth1 + 1) . '.FixedDelayDuration'] = $depth1Value['FixedDelayDuration']; + } + } + + return $this; + } + + /** + * @param array $videoLayer + * + * @return $this + */ + public function withVideoLayer(array $videoLayer) + { + $this->data['VideoLayer'] = $videoLayer; + foreach ($videoLayer as $depth1 => $depth1Value) { + if(isset($depth1Value['FillMode'])){ + $this->options['query']['VideoLayer.' . ($depth1 + 1) . '.FillMode'] = $depth1Value['FillMode']; + } + if(isset($depth1Value['HeightNormalized'])){ + $this->options['query']['VideoLayer.' . ($depth1 + 1) . '.HeightNormalized'] = $depth1Value['HeightNormalized']; + } + if(isset($depth1Value['WidthNormalized'])){ + $this->options['query']['VideoLayer.' . ($depth1 + 1) . '.WidthNormalized'] = $depth1Value['WidthNormalized']; + } + if(isset($depth1Value['PositionRefer'])){ + $this->options['query']['VideoLayer.' . ($depth1 + 1) . '.PositionRefer'] = $depth1Value['PositionRefer']; + } + foreach ($depth1Value['PositionNormalized'] as $i => $iValue) { + $this->options['query']['VideoLayer.' . ($depth1 + 1) . '.PositionNormalized.' . ($i + 1)] = $iValue; + } + if(isset($depth1Value['FixedDelayDuration'])){ + $this->options['query']['VideoLayer.' . ($depth1 + 1) . '.FixedDelayDuration'] = $depth1Value['FixedDelayDuration']; + } + } + + return $this; + } + + /** + * @param array $mixList + * + * @return $this + */ + public function withMixList(array $mixList) + { + $this->data['MixList'] = $mixList; + foreach ($mixList as $i => $iValue) { + $this->options['query']['MixList.' . ($i + 1)] = $iValue; + } + + return $this; + } +} + +/** + * @method array getEpisode() + * @method string getCasterId() + * @method $this withCasterId($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + */ +class AddCasterProgram extends Rpc +{ + + /** + * @param array $episode + * + * @return $this + */ + public function withEpisode(array $episode) + { + $this->data['Episode'] = $episode; + foreach ($episode as $depth1 => $depth1Value) { + if(isset($depth1Value['EpisodeType'])){ + $this->options['query']['Episode.' . ($depth1 + 1) . '.EpisodeType'] = $depth1Value['EpisodeType']; + } + if(isset($depth1Value['EpisodeName'])){ + $this->options['query']['Episode.' . ($depth1 + 1) . '.EpisodeName'] = $depth1Value['EpisodeName']; + } + if(isset($depth1Value['ResourceId'])){ + $this->options['query']['Episode.' . ($depth1 + 1) . '.ResourceId'] = $depth1Value['ResourceId']; + } + foreach ($depth1Value['ComponentId'] as $i => $iValue) { + $this->options['query']['Episode.' . ($depth1 + 1) . '.ComponentId.' . ($i + 1)] = $iValue; + } + if(isset($depth1Value['StartTime'])){ + $this->options['query']['Episode.' . ($depth1 + 1) . '.StartTime'] = $depth1Value['StartTime']; + } + if(isset($depth1Value['EndTime'])){ + $this->options['query']['Episode.' . ($depth1 + 1) . '.EndTime'] = $depth1Value['EndTime']; + } + if(isset($depth1Value['SwitchType'])){ + $this->options['query']['Episode.' . ($depth1 + 1) . '.SwitchType'] = $depth1Value['SwitchType']; + } + } + + return $this; + } +} + +/** + * @method string getEndOffset() + * @method $this withEndOffset($value) + * @method string getMaterialId() + * @method $this withMaterialId($value) + * @method string getVodUrl() + * @method $this withVodUrl($value) + * @method string getStreamId() + * @method $this withStreamId($value) + * @method string getCasterId() + * @method $this withCasterId($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getBeginOffset() + * @method $this withBeginOffset($value) + * @method string getLiveStreamUrl() + * @method $this withLiveStreamUrl($value) + * @method string getLocationId() + * @method $this withLocationId($value) + * @method string getPtsCallbackInterval() + * @method $this withPtsCallbackInterval($value) + * @method string getResourceName() + * @method $this withResourceName($value) + * @method string getRepeatNum() + * @method $this withRepeatNum($value) + */ +class AddCasterVideoResource extends Rpc +{ +} + +/** + * @method string getTemplate() + * @method $this withTemplate($value) + * @method string getLazy() + * @method $this withLazy($value) + * @method string getGop() + * @method $this withGop($value) + * @method string getAudioCodec() + * @method $this withAudioCodec($value) + * @method string getTemplateType() + * @method $this withTemplateType($value) + * @method string getAudioProfile() + * @method $this withAudioProfile($value) + * @method string getHeight() + * @method $this withHeight($value) + * @method string getApp() + * @method $this withApp($value) + * @method string getAudioChannelNum() + * @method $this withAudioChannelNum($value) + * @method string getProfile() + * @method $this withProfile($value) + * @method string getFPS() + * @method $this withFPS($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getAudioRate() + * @method $this withAudioRate($value) + * @method string getAudioBitrate() + * @method $this withAudioBitrate($value) + * @method string getDomain() + * @method $this withDomain($value) + * @method string getWidth() + * @method $this withWidth($value) + * @method string getVideoBitrate() + * @method $this withVideoBitrate($value) + */ +class AddCustomLiveStreamTranscode extends Rpc +{ +} + +/** + * @method string getServCert() + * @method $this withServCert($value) + * @method string getDescription() + * @method $this withDescription($value) + * @method string getPrivateKey() + * @method $this withPrivateKey($value) + * @method string getCertName() + * @method $this withCertName($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getAsk() + * @method $this withAsk($value) + * @method string getPassphrase() + * @method $this withPassphrase($value) + */ +class AddDRMCertificate extends Rpc +{ +} + +/** + * @method string getOssEndpoint() + * @method $this withOssEndpoint($value) + * @method string getStartTime() + * @method $this withStartTime($value) + * @method string getAppName() + * @method $this withAppName($value) + * @method string getSecurityToken() + * @method $this withSecurityToken($value) + * @method string getOnDemand() + * @method $this withOnDemand($value) + * @method string getStreamName() + * @method $this withStreamName($value) + * @method string getOssBucket() + * @method $this withOssBucket($value) + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getEndTime() + * @method $this withEndTime($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method array getRecordFormat() + */ +class AddLiveAppRecordConfig extends Rpc +{ + + /** + * @param array $recordFormat + * + * @return $this + */ + public function withRecordFormat(array $recordFormat) + { + $this->data['RecordFormat'] = $recordFormat; + foreach ($recordFormat as $depth1 => $depth1Value) { + if(isset($depth1Value['SliceOssObjectPrefix'])){ + $this->options['query']['RecordFormat.' . ($depth1 + 1) . '.SliceOssObjectPrefix'] = $depth1Value['SliceOssObjectPrefix']; + } + if(isset($depth1Value['Format'])){ + $this->options['query']['RecordFormat.' . ($depth1 + 1) . '.Format'] = $depth1Value['Format']; + } + if(isset($depth1Value['OssObjectPrefix'])){ + $this->options['query']['RecordFormat.' . ($depth1 + 1) . '.OssObjectPrefix'] = $depth1Value['OssObjectPrefix']; + } + if(isset($depth1Value['CycleDuration'])){ + $this->options['query']['RecordFormat.' . ($depth1 + 1) . '.CycleDuration'] = $depth1Value['CycleDuration']; + } + } + + return $this; + } +} + +/** + * @method string getTimeInterval() + * @method $this withTimeInterval($value) + * @method string getOssEndpoint() + * @method $this withOssEndpoint($value) + * @method string getAppName() + * @method $this withAppName($value) + * @method string getSecurityToken() + * @method $this withSecurityToken($value) + * @method string getOverwriteOssObject() + * @method $this withOverwriteOssObject($value) + * @method string getOssBucket() + * @method $this withOssBucket($value) + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getSequenceOssObject() + * @method $this withSequenceOssObject($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getCallback() + * @method $this withCallback($value) + */ +class AddLiveAppSnapshotConfig extends Rpc +{ +} + +/** + * @method string getAppName() + * @method $this withAppName($value) + * @method string getMnsTopic() + * @method $this withMnsTopic($value) + * @method string getStreamName() + * @method $this withStreamName($value) + * @method string getPeriod() + * @method $this withPeriod($value) + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getHttpCallbackURL() + * @method $this withHttpCallbackURL($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getMnsRegion() + * @method $this withMnsRegion($value) + */ +class AddLiveASRConfig extends Rpc +{ +} + +/** + * @method string getOssEndpoint() + * @method $this withOssEndpoint($value) + * @method string getOssObject() + * @method $this withOssObject($value) + * @method string getAppName() + * @method $this withAppName($value) + * @method string getStreamName() + * @method $this withStreamName($value) + * @method string getOssBucket() + * @method $this withOssBucket($value) + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getBizType() + * @method $this withBizType($value) + */ +class AddLiveAudioAuditConfig extends Rpc +{ +} + +/** + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getCallbackTemplate() + * @method $this withCallbackTemplate($value) + * @method string getCallback() + * @method $this withCallback($value) + */ +class AddLiveAudioAuditNotifyConfig extends Rpc +{ +} + +/** + * @method string getSecurityToken() + * @method $this withSecurityToken($value) + * @method string getNotifyUrl() + * @method $this withNotifyUrl($value) + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + */ +class AddLiveDetectNotifyConfig extends Rpc +{ +} + +/** + * @method string getSecurityToken() + * @method $this withSecurityToken($value) + * @method string getScope() + * @method $this withScope($value) + * @method string getTopLevelDomain() + * @method $this withTopLevelDomain($value) + * @method string getOwnerAccount() + * @method $this withOwnerAccount($value) + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getRegion() + * @method $this withRegion($value) + * @method string getCheckUrl() + * @method $this withCheckUrl($value) + * @method string getLiveDomainType() + * @method $this withLiveDomainType($value) + */ +class AddLiveDomain extends Rpc +{ +} + +/** + * @method string getSecurityToken() + * @method $this withSecurityToken($value) + * @method string getPushDomain() + * @method $this withPushDomain($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getPullDomain() + * @method $this withPullDomain($value) + */ +class AddLiveDomainMapping extends Rpc +{ +} + +/** + * @method string getPlayDomain() + * @method $this withPlayDomain($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getPullDomain() + * @method $this withPullDomain($value) + */ +class AddLiveDomainPlayMapping extends Rpc +{ +} + +/** + * @method string getStartTime() + * @method $this withStartTime($value) + * @method string getAppName() + * @method $this withAppName($value) + * @method string getStreamName() + * @method $this withStreamName($value) + * @method string getPullAlways() + * @method $this withPullAlways($value) + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getEndTime() + * @method $this withEndTime($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getSourceUrl() + * @method $this withSourceUrl($value) + */ +class AddLivePullStreamInfoConfig extends Rpc +{ +} + +/** + * @method string getOnDemandUrl() + * @method $this withOnDemandUrl($value) + * @method string getSecurityToken() + * @method $this withSecurityToken($value) + * @method string getNotifyUrl() + * @method $this withNotifyUrl($value) + * @method string getNeedStatusNotify() + * @method $this withNeedStatusNotify($value) + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + */ +class AddLiveRecordNotifyConfig extends Rpc +{ +} + +/** + * @method string getAutoCompose() + * @method $this withAutoCompose($value) + * @method string getComposeVodTranscodeGroupId() + * @method $this withComposeVodTranscodeGroupId($value) + * @method string getStorageLocation() + * @method $this withStorageLocation($value) + * @method string getAppName() + * @method $this withAppName($value) + * @method string getStreamName() + * @method $this withStreamName($value) + * @method string getVodTranscodeGroupId() + * @method $this withVodTranscodeGroupId($value) + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getCycleDuration() + * @method $this withCycleDuration($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + */ +class AddLiveRecordVodConfig extends Rpc +{ +} + +/** + * @method string getOssEndpoint() + * @method $this withOssEndpoint($value) + * @method string getOssObject() + * @method $this withOssObject($value) + * @method array getScene() + * @method string getAppName() + * @method $this withAppName($value) + * @method string getSecurityToken() + * @method $this withSecurityToken($value) + * @method string getOssBucket() + * @method $this withOssBucket($value) + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getInterval() + * @method $this withInterval($value) + */ +class AddLiveSnapshotDetectPornConfig extends Rpc +{ + + /** + * @param array $scene + * + * @return $this + */ + public function withScene(array $scene) + { + $this->data['Scene'] = $scene; + foreach ($scene as $i => $iValue) { + $this->options['query']['Scene.' . ($i + 1)] = $iValue; + } + + return $this; + } +} + +/** + * @method string getTemplate() + * @method $this withTemplate($value) + * @method string getLazy() + * @method $this withLazy($value) + * @method string getMix() + * @method $this withMix($value) + * @method string getApp() + * @method $this withApp($value) + * @method string getEncryptParameters() + * @method $this withEncryptParameters($value) + * @method string getWatermark() + * @method $this withWatermark($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getDomain() + * @method $this withDomain($value) + * @method string getWaterPattern() + * @method $this withWaterPattern($value) + * @method string getOnlyAudio() + * @method $this withOnlyAudio($value) + */ +class AddLiveStreamTranscode extends Rpc +{ +} + +/** + * @method string getApp() + * @method $this withApp($value) + * @method string getGroupId() + * @method $this withGroupId($value) + * @method string getTemplates() + * @method $this withTemplates($value) + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getIsLazy() + * @method $this withIsLazy($value) + * @method string getAvFormat() + * @method $this withAvFormat($value) + * @method string getIsTimeAlign() + * @method $this withIsTimeAlign($value) + */ +class AddMultiRateConfig extends Rpc +{ +} + +/** + * @method string getProgramItems() + * @method $this withProgramItems($value) + * @method string getProgramId() + * @method $this withProgramId($value) + * @method string getCasterId() + * @method $this withCasterId($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getProgramConfig() + * @method $this withProgramConfig($value) + */ +class AddPlaylistItems extends Rpc +{ +} + +/** + * @method string getTemplate() + * @method $this withTemplate($value) + * @method string getDeleteBframes() + * @method $this withDeleteBframes($value) + * @method string getLazy() + * @method $this withLazy($value) + * @method string getGop() + * @method $this withGop($value) + * @method string getOpus() + * @method $this withOpus($value) + * @method string getAudioCodec() + * @method $this withAudioCodec($value) + * @method string getTemplateType() + * @method $this withTemplateType($value) + * @method string getAudioProfile() + * @method $this withAudioProfile($value) + * @method string getHeight() + * @method $this withHeight($value) + * @method string getApp() + * @method $this withApp($value) + * @method string getAudioChannelNum() + * @method $this withAudioChannelNum($value) + * @method string getProfile() + * @method $this withProfile($value) + * @method string getFPS() + * @method $this withFPS($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getAudioRate() + * @method $this withAudioRate($value) + * @method string getAudioBitrate() + * @method $this withAudioBitrate($value) + * @method string getDomain() + * @method $this withDomain($value) + * @method string getWidth() + * @method $this withWidth($value) + * @method string getVideoBitrate() + * @method $this withVideoBitrate($value) + */ +class AddRtsLiveStreamTranscode extends Rpc +{ +} + +/** + * @method string getScreenInputConfigList() + * @method $this withScreenInputConfigList($value) + * @method string getLayoutType() + * @method $this withLayoutType($value) + * @method string getLayoutName() + * @method $this withLayoutName($value) + * @method string getLayerOrderConfigList() + * @method $this withLayerOrderConfigList($value) + * @method string getMediaInputConfigList() + * @method $this withMediaInputConfigList($value) + * @method string getCasterId() + * @method $this withCasterId($value) + * @method string getBgImageConfig() + * @method $this withBgImageConfig($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getCommonConfig() + * @method $this withCommonConfig($value) + */ +class AddStudioLayout extends Rpc +{ +} + +/** + * @method string getPattern() + * @method $this withPattern($value) + * @method string getAppName() + * @method $this withAppName($value) + * @method string getRepeat() + * @method $this withRepeat($value) + * @method string getText() + * @method $this withText($value) + * @method string getStreamName() + * @method $this withStreamName($value) + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getDelay() + * @method $this withDelay($value) + */ +class AddTrancodeSEI extends Rpc +{ +} + +/** + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getRoomId() + * @method $this withRoomId($value) + * @method string getAppId() + * @method $this withAppId($value) + */ +class AllowPushStream extends Rpc +{ +} + +/** + * @method string getBoardId() + * @method $this withBoardId($value) + * @method string getAppUid() + * @method $this withAppUid($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getAppId() + * @method $this withAppId($value) + */ +class ApplyBoardToken extends Rpc +{ +} + +/** + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getAppId() + * @method $this withAppId($value) + */ +class ApplyRecordToken extends Rpc +{ +} + +/** + * @method string getFunctionNames() + * @method $this withFunctionNames($value) + * @method string getDomainNames() + * @method $this withDomainNames($value) + * @method string getOwnerAccount() + * @method $this withOwnerAccount($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getSecurityToken() + * @method $this withSecurityToken($value) + */ +class BatchDeleteLiveDomainConfigs extends Rpc +{ +} + +/** + * @method string getFunctions() + * @method $this withFunctions($value) + * @method string getDomainNames() + * @method $this withDomainNames($value) + * @method string getOwnerAccount() + * @method $this withOwnerAccount($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getSecurityToken() + * @method $this withSecurityToken($value) + */ +class BatchSetLiveDomainConfigs extends Rpc +{ +} + +/** + * @method string getAccountId() + * @method $this withAccountId($value) + * @method string getSPIRegionId() + * @method $this withSPIRegionId($value) + * @method string getRoleArn() + * @method $this withRoleArn($value) + * @method string getDeletionTaskId() + * @method $this withDeletionTaskId($value) + * @method string getServiceName() + * @method $this withServiceName($value) + */ +class CheckServiceForRole extends Rpc +{ +} + +/** + * @method string getAppName() + * @method $this withAppName($value) + * @method string getStreamName() + * @method $this withStreamName($value) + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + */ +class CloseLiveShift extends Rpc +{ +} + +/** + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getAppId() + * @method $this withAppId($value) + * @method string getBoardId() + * @method $this withBoardId($value) + */ +class CompleteBoard extends Rpc +{ +} + +/** + * @method string getEndTime() + * @method $this withEndTime($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getRecordId() + * @method $this withRecordId($value) + * @method string getAppId() + * @method $this withAppId($value) + */ +class CompleteBoardRecord extends Rpc +{ +} + +/** + * @method string getHtmlUrl() + * @method string getCasterId() + * @method $this withCasterId($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getOperate() + * @method $this withOperate($value) + * @method string getHtmlResourceId() + * @method $this withHtmlResourceId($value) + */ +class ControlHtmlResource extends Rpc +{ + + /** + * @param string $value + * + * @return $this + */ + public function withHtmlUrl($value) + { + $this->data['HtmlUrl'] = $value; + $this->options['query']['htmlUrl'] = $value; + + return $this; + } +} + +/** + * @method string getClientToken() + * @method $this withClientToken($value) + * @method string getCasterName() + * @method $this withCasterName($value) + * @method string getSrcCasterId() + * @method $this withSrcCasterId($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + */ +class CopyCaster extends Rpc +{ +} + +/** + * @method string getFromSceneId() + * @method $this withFromSceneId($value) + * @method string getToSceneId() + * @method $this withToSceneId($value) + * @method string getCasterId() + * @method $this withCasterId($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + */ +class CopyCasterSceneConfig extends Rpc +{ +} + +/** + * @method string getAppUid() + * @method $this withAppUid($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getAppId() + * @method $this withAppId($value) + */ +class CreateBoard extends Rpc +{ +} + +/** + * @method string getClientToken() + * @method $this withClientToken($value) + * @method string getCasterName() + * @method $this withCasterName($value) + * @method string getCasterTemplate() + * @method $this withCasterTemplate($value) + * @method string getExpireTime() + * @method $this withExpireTime($value) + * @method string getNormType() + * @method $this withNormType($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getPurchaseTime() + * @method $this withPurchaseTime($value) + * @method string getChargeType() + * @method $this withChargeType($value) + */ +class CreateCaster extends Rpc +{ +} + +/** + * @method string getProject() + * @method $this withProject($value) + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getRegion() + * @method $this withRegion($value) + * @method string getLogstore() + * @method $this withLogstore($value) + */ +class CreateLiveRealTimeLogDelivery extends Rpc +{ + + /** @var string */ + public $method = 'GET'; +} + +/** + * @method string getOssEndpoint() + * @method $this withOssEndpoint($value) + * @method string getStartTime() + * @method $this withStartTime($value) + * @method string getOssObject() + * @method $this withOssObject($value) + * @method string getAppName() + * @method $this withAppName($value) + * @method string getSecurityToken() + * @method $this withSecurityToken($value) + * @method string getStreamName() + * @method $this withStreamName($value) + * @method string getOssBucket() + * @method $this withOssBucket($value) + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getEndTime() + * @method $this withEndTime($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + */ +class CreateLiveStreamRecordIndexFiles extends Rpc +{ +} + +/** + * @method string getOutputConfig() + * @method $this withOutputConfig($value) + * @method string getLayoutId() + * @method $this withLayoutId($value) + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getInputStreamList() + * @method $this withInputStreamList($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getCallbackConfig() + * @method $this withCallbackConfig($value) + */ +class CreateMixStream extends Rpc +{ +} + +/** + * @method string getTemplateIds() + * @method $this withTemplateIds($value) + * @method string getAnchorId() + * @method $this withAnchorId($value) + * @method string getUseAppTranscode() + * @method $this withUseAppTranscode($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getRoomId() + * @method $this withRoomId($value) + * @method string getAppId() + * @method $this withAppId($value) + */ +class CreateRoom extends Rpc +{ +} + +/** + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getAppId() + * @method $this withAppId($value) + * @method string getBoardId() + * @method $this withBoardId($value) + */ +class DeleteBoard extends Rpc +{ +} + +/** + * @method string getCasterId() + * @method $this withCasterId($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + */ +class DeleteCaster extends Rpc +{ +} + +/** + * @method string getComponentId() + * @method $this withComponentId($value) + * @method string getCasterId() + * @method $this withCasterId($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + */ +class DeleteCasterComponent extends Rpc +{ +} + +/** + * @method string getCasterId() + * @method $this withCasterId($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getEpisodeId() + * @method $this withEpisodeId($value) + */ +class DeleteCasterEpisode extends Rpc +{ +} + +/** + * @method string getProgramId() + * @method $this withProgramId($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + */ +class DeleteCasterEpisodeGroup extends Rpc +{ +} + +/** + * @method string getLayoutId() + * @method $this withLayoutId($value) + * @method string getCasterId() + * @method $this withCasterId($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + */ +class DeleteCasterLayout extends Rpc +{ +} + +/** + * @method string getCasterId() + * @method $this withCasterId($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + */ +class DeleteCasterProgram extends Rpc +{ +} + +/** + * @method string getType() + * @method $this withType($value) + * @method string getCasterId() + * @method $this withCasterId($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getSceneId() + * @method $this withSceneId($value) + */ +class DeleteCasterSceneConfig extends Rpc +{ +} + +/** + * @method string getResourceId() + * @method $this withResourceId($value) + * @method string getCasterId() + * @method $this withCasterId($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + */ +class DeleteCasterVideoResource extends Rpc +{ +} + +/** + * @method string getHtmlUrl() + * @method string getCasterId() + * @method $this withCasterId($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getHtmlResourceId() + * @method $this withHtmlResourceId($value) + */ +class DeleteHtmlResource extends Rpc +{ + + /** + * @param string $value + * + * @return $this + */ + public function withHtmlUrl($value) + { + $this->data['HtmlUrl'] = $value; + $this->options['query']['htmlUrl'] = $value; + + return $this; + } +} + +/** + * @method string getAppName() + * @method $this withAppName($value) + * @method string getSecurityToken() + * @method $this withSecurityToken($value) + * @method string getStreamName() + * @method $this withStreamName($value) + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + */ +class DeleteLiveAppRecordConfig extends Rpc +{ +} + +/** + * @method string getAppName() + * @method $this withAppName($value) + * @method string getSecurityToken() + * @method $this withSecurityToken($value) + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + */ +class DeleteLiveAppSnapshotConfig extends Rpc +{ +} + +/** + * @method string getAppName() + * @method $this withAppName($value) + * @method string getStreamName() + * @method $this withStreamName($value) + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + */ +class DeleteLiveASRConfig extends Rpc +{ +} + +/** + * @method string getAppName() + * @method $this withAppName($value) + * @method string getStreamName() + * @method $this withStreamName($value) + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + */ +class DeleteLiveAudioAuditConfig extends Rpc +{ +} + +/** + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + */ +class DeleteLiveAudioAuditNotifyConfig extends Rpc +{ +} + +/** + * @method string getSecurityToken() + * @method $this withSecurityToken($value) + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + */ +class DeleteLiveDetectNotifyConfig extends Rpc +{ +} + +/** + * @method string getOwnerAccount() + * @method $this withOwnerAccount($value) + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getSecurityToken() + * @method $this withSecurityToken($value) + */ +class DeleteLiveDomain extends Rpc +{ +} + +/** + * @method string getSecurityToken() + * @method $this withSecurityToken($value) + * @method string getPushDomain() + * @method $this withPushDomain($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getPullDomain() + * @method $this withPullDomain($value) + */ +class DeleteLiveDomainMapping extends Rpc +{ +} + +/** + * @method string getPlayDomain() + * @method $this withPlayDomain($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getPullDomain() + * @method $this withPullDomain($value) + */ +class DeleteLiveDomainPlayMapping extends Rpc +{ +} + +/** + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getAppName() + * @method $this withAppName($value) + */ +class DeleteLiveLazyPullStreamInfoConfig extends Rpc +{ +} + +/** + * @method string getAppName() + * @method $this withAppName($value) + * @method string getSecurityToken() + * @method $this withSecurityToken($value) + * @method string getStreamName() + * @method $this withStreamName($value) + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + */ +class DeleteLivePullStreamInfoConfig extends Rpc +{ +} + +/** + * @method string getProject() + * @method $this withProject($value) + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getRegion() + * @method $this withRegion($value) + * @method string getLogstore() + * @method $this withLogstore($value) + */ +class DeleteLiveRealtimeLogDelivery extends Rpc +{ + + /** @var string */ + public $method = 'GET'; +} + +/** + * @method string getProject() + * @method $this withProject($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getRegion() + * @method $this withRegion($value) + * @method string getLogstore() + * @method $this withLogstore($value) + */ +class DeleteLiveRealTimeLogLogstore extends Rpc +{ + + /** @var string */ + public $method = 'GET'; +} + +/** + * @method string getSecurityToken() + * @method $this withSecurityToken($value) + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + */ +class DeleteLiveRecordNotifyConfig extends Rpc +{ +} + +/** + * @method string getAppName() + * @method $this withAppName($value) + * @method string getStreamName() + * @method $this withStreamName($value) + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + */ +class DeleteLiveRecordVodConfig extends Rpc +{ +} + +/** + * @method string getAppName() + * @method $this withAppName($value) + * @method string getSecurityToken() + * @method $this withSecurityToken($value) + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + */ +class DeleteLiveSnapshotDetectPornConfig extends Rpc +{ +} + +/** + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + */ +class DeleteLiveStreamsNotifyUrlConfig extends Rpc +{ +} + +/** + * @method string getTemplate() + * @method $this withTemplate($value) + * @method string getSecurityToken() + * @method $this withSecurityToken($value) + * @method string getApp() + * @method $this withApp($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getDomain() + * @method $this withDomain($value) + */ +class DeleteLiveStreamTranscode extends Rpc +{ +} + +/** + * @method string getAppName() + * @method $this withAppName($value) + * @method string getStreamName() + * @method $this withStreamName($value) + * @method string getMixStreamId() + * @method $this withMixStreamId($value) + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + */ +class DeleteMixStream extends Rpc +{ +} + +/** + * @method string getDeleteAll() + * @method $this withDeleteAll($value) + * @method string getApp() + * @method $this withApp($value) + * @method string getGroupId() + * @method $this withGroupId($value) + * @method string getTemplates() + * @method $this withTemplates($value) + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + */ +class DeleteMultiRateConfig extends Rpc +{ +} + +/** + * @method string getProgramId() + * @method $this withProgramId($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + */ +class DeletePlaylist extends Rpc +{ +} + +/** + * @method string getProgramItemIds() + * @method $this withProgramItemIds($value) + * @method string getProgramId() + * @method $this withProgramId($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + */ +class DeletePlaylistItems extends Rpc +{ +} + +/** + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getRoomId() + * @method $this withRoomId($value) + * @method string getAppId() + * @method $this withAppId($value) + */ +class DeleteRoom extends Rpc +{ +} + +/** + * @method string getLayoutId() + * @method $this withLayoutId($value) + * @method string getCasterId() + * @method $this withCasterId($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + */ +class DeleteStudioLayout extends Rpc +{ +} + +/** + * @method string getStartTime() + * @method $this withStartTime($value) + * @method string getBoardId() + * @method $this withBoardId($value) + * @method string getEndTime() + * @method $this withEndTime($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getAppId() + * @method $this withAppId($value) + */ +class DescribeBoardEvents extends Rpc +{ +} + +/** + * @method string getPageNum() + * @method $this withPageNum($value) + * @method string getPageSize() + * @method $this withPageSize($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getAppId() + * @method $this withAppId($value) + */ +class DescribeBoards extends Rpc +{ +} + +/** + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getAppId() + * @method $this withAppId($value) + * @method string getBoardId() + * @method $this withBoardId($value) + */ +class DescribeBoardSnapshot extends Rpc +{ +} + +/** + * @method string getCasterId() + * @method $this withCasterId($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + */ +class DescribeCasterChannels extends Rpc +{ +} + +/** + * @method string getComponentId() + * @method $this withComponentId($value) + * @method string getCasterId() + * @method $this withCasterId($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + */ +class DescribeCasterComponents extends Rpc +{ +} + +/** + * @method string getCasterId() + * @method $this withCasterId($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + */ +class DescribeCasterConfig extends Rpc +{ +} + +/** + * @method string getLayoutId() + * @method $this withLayoutId($value) + * @method string getCasterId() + * @method $this withCasterId($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + */ +class DescribeCasterLayouts extends Rpc +{ +} + +/** + * @method string getStartTime() + * @method $this withStartTime($value) + * @method string getPageNum() + * @method $this withPageNum($value) + * @method string getPageSize() + * @method $this withPageSize($value) + * @method string getCasterId() + * @method $this withCasterId($value) + * @method string getEpisodeType() + * @method $this withEpisodeType($value) + * @method string getEndTime() + * @method $this withEndTime($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getEpisodeId() + * @method $this withEpisodeId($value) + * @method string getStatus() + * @method $this withStatus($value) + */ +class DescribeCasterProgram extends Rpc +{ +} + +/** + * @method string getCasterId() + * @method $this withCasterId($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + */ +class DescribeCasterRtcInfo extends Rpc +{ +} + +/** + * @method string getStartTime() + * @method $this withStartTime($value) + * @method string getPageNum() + * @method $this withPageNum($value) + * @method string getCasterName() + * @method $this withCasterName($value) + * @method string getPageSize() + * @method $this withPageSize($value) + * @method string getCasterId() + * @method $this withCasterId($value) + * @method string getEndTime() + * @method $this withEndTime($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getStatus() + * @method $this withStatus($value) + */ +class DescribeCasters extends Rpc +{ +} + +/** + * @method string getCasterId() + * @method $this withCasterId($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getSceneId() + * @method $this withSceneId($value) + */ +class DescribeCasterSceneAudio extends Rpc +{ +} + +/** + * @method string getCasterId() + * @method $this withCasterId($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getSceneId() + * @method $this withSceneId($value) + */ +class DescribeCasterScenes extends Rpc +{ +} + +/** + * @method string getCasterId() + * @method $this withCasterId($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + */ +class DescribeCasterStreamUrl extends Rpc +{ +} + +/** + * @method string getCasterId() + * @method $this withCasterId($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + */ +class DescribeCasterSyncGroup extends Rpc +{ +} + +/** + * @method string getCasterId() + * @method $this withCasterId($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + */ +class DescribeCasterVideoResources extends Rpc +{ +} + +/** + * @method string getStartTime() + * @method $this withStartTime($value) + * @method string getType() + * @method $this withType($value) + * @method string getArea() + * @method $this withArea($value) + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getEndTime() + * @method $this withEndTime($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getField() + * @method $this withField($value) + * @method string getInterval() + * @method $this withInterval($value) + */ +class DescribeDomainUsageData extends Rpc +{ +} + +/** + * @method string getPageNum() + * @method $this withPageNum($value) + * @method string getPageSize() + * @method $this withPageSize($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + */ +class DescribeDRMCertList extends Rpc +{ +} + +/** + * @method string getPageNum() + * @method $this withPageNum($value) + * @method string getPageSize() + * @method $this withPageSize($value) + * @method string getOrder() + * @method $this withOrder($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getAppId() + * @method $this withAppId($value) + */ +class DescribeForbidPushStreamRoomList extends Rpc +{ +} + +/** + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getTime() + * @method $this withTime($value) + */ +class DescribeHlsLiveStreamRealTimeBpsData extends Rpc +{ + + /** @var string */ + public $method = 'GET'; +} + +/** + * @method string getHtmlUrl() + * @method string getCasterId() + * @method $this withCasterId($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getHtmlResourceId() + * @method $this withHtmlResourceId($value) + */ +class DescribeHtmlResource extends Rpc +{ + + /** + * @param string $value + * + * @return $this + */ + public function withHtmlUrl($value) + { + $this->data['HtmlUrl'] = $value; + $this->options['query']['htmlUrl'] = $value; + + return $this; + } +} + +/** + * @method string getAppName() + * @method $this withAppName($value) + * @method string getStreamName() + * @method $this withStreamName($value) + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + */ +class DescribeLiveAsrConfig extends Rpc +{ +} + +/** + * @method string getAppName() + * @method $this withAppName($value) + * @method string getStreamName() + * @method $this withStreamName($value) + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + */ +class DescribeLiveAudioAuditConfig extends Rpc +{ +} + +/** + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + */ +class DescribeLiveAudioAuditNotifyConfig extends Rpc +{ +} + +/** + * @method string getCertName() + * @method $this withCertName($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getSecurityToken() + * @method $this withSecurityToken($value) + */ +class DescribeLiveCertificateDetail extends Rpc +{ +} + +/** + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getSecurityToken() + * @method $this withSecurityToken($value) + */ +class DescribeLiveCertificateList extends Rpc +{ +} + +/** + * @method string getSecurityToken() + * @method $this withSecurityToken($value) + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + */ +class DescribeLiveDetectNotifyConfig extends Rpc +{ +} + +/** + * @method string getFee() + * @method $this withFee($value) + * @method string getStartTime() + * @method $this withStartTime($value) + * @method string getScene() + * @method $this withScene($value) + * @method string getStream() + * @method $this withStream($value) + * @method string getSplitBy() + * @method $this withSplitBy($value) + * @method string getApp() + * @method $this withApp($value) + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getEndTime() + * @method $this withEndTime($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getRegion() + * @method $this withRegion($value) + */ +class DescribeLiveDetectPornData extends Rpc +{ +} + +/** + * @method string getLocationNameEn() + * @method $this withLocationNameEn($value) + * @method string getStartTime() + * @method $this withStartTime($value) + * @method string getIspNameEn() + * @method $this withIspNameEn($value) + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getEndTime() + * @method $this withEndTime($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getInterval() + * @method $this withInterval($value) + */ +class DescribeLiveDomainBpsData extends Rpc +{ +} + +/** + * @method string getLocationNames() + * @method $this withLocationNames($value) + * @method string getIspNames() + * @method $this withIspNames($value) + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getTimePoint() + * @method $this withTimePoint($value) + */ +class DescribeLiveDomainBpsDataByTimeStamp extends Rpc +{ +} + +/** + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + */ +class DescribeLiveDomainCertificateInfo extends Rpc +{ +} + +/** + * @method string getFunctionNames() + * @method $this withFunctionNames($value) + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getSecurityToken() + * @method $this withSecurityToken($value) + */ +class DescribeLiveDomainConfigs extends Rpc +{ +} + +/** + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getSecurityToken() + * @method $this withSecurityToken($value) + */ +class DescribeLiveDomainDetail extends Rpc +{ +} + +/** + * @method string getQueryTime() + * @method $this withQueryTime($value) + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + */ +class DescribeLiveDomainFrameRateAndBitRateData extends Rpc +{ +} + +/** + * @method string getLiveapiRequestFrom() + * @method $this withLiveapiRequestFrom($value) + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + */ +class DescribeLiveDomainLimit extends Rpc +{ +} + +/** + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + */ +class DescribeLiveDomainMapping extends Rpc +{ + + /** @var string */ + public $method = 'GET'; +} + +/** + * @method string getQueryTime() + * @method $this withQueryTime($value) + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + */ +class DescribeLiveDomainOnlineUserNum extends Rpc +{ +} + +/** + * @method string getLocationNameEn() + * @method $this withLocationNameEn($value) + * @method string getStartTime() + * @method $this withStartTime($value) + * @method string getIspNameEn() + * @method $this withIspNameEn($value) + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getEndTime() + * @method $this withEndTime($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getInterval() + * @method $this withInterval($value) + */ +class DescribeLiveDomainPushBpsData extends Rpc +{ +} + +/** + * @method string getLocationNameEn() + * @method $this withLocationNameEn($value) + * @method string getStartTime() + * @method $this withStartTime($value) + * @method string getIspNameEn() + * @method $this withIspNameEn($value) + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getEndTime() + * @method $this withEndTime($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getInterval() + * @method $this withInterval($value) + */ +class DescribeLiveDomainPushTrafficData extends Rpc +{ +} + +/** + * @method string getStartTime() + * @method $this withStartTime($value) + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getEndTime() + * @method $this withEndTime($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + */ +class DescribeLiveDomainPvUvData extends Rpc +{ +} + +/** + * @method string getLocationNameEn() + * @method $this withLocationNameEn($value) + * @method string getIspNameEn() + * @method $this withIspNameEn($value) + * @method string getStartTime() + * @method $this withStartTime($value) + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getEndTime() + * @method $this withEndTime($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + */ +class DescribeLiveDomainRealTimeBpsData extends Rpc +{ + + /** @var string */ + public $method = 'GET'; +} + +/** + * @method string getLocationNameEn() + * @method $this withLocationNameEn($value) + * @method string getStartTime() + * @method $this withStartTime($value) + * @method string getIspNameEn() + * @method $this withIspNameEn($value) + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getEndTime() + * @method $this withEndTime($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + */ +class DescribeLiveDomainRealTimeHttpCodeData extends Rpc +{ +} + +/** + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + */ +class DescribeLiveDomainRealtimeLogDelivery extends Rpc +{ + + /** @var string */ + public $method = 'GET'; +} + +/** + * @method string getLocationNameEn() + * @method $this withLocationNameEn($value) + * @method string getStartTime() + * @method $this withStartTime($value) + * @method string getIspNameEn() + * @method $this withIspNameEn($value) + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getEndTime() + * @method $this withEndTime($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + */ +class DescribeLiveDomainRealTimeTrafficData extends Rpc +{ +} + +/** + * @method string getStartTime() + * @method $this withStartTime($value) + * @method string getRecordType() + * @method $this withRecordType($value) + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getEndTime() + * @method $this withEndTime($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + */ +class DescribeLiveDomainRecordData extends Rpc +{ +} + +/** + * @method string getStartTime() + * @method $this withStartTime($value) + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getEndTime() + * @method $this withEndTime($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + */ +class DescribeLiveDomainSnapshotData extends Rpc +{ +} + +/** + * @method string getStartTime() + * @method $this withStartTime($value) + * @method string getSplit() + * @method $this withSplit($value) + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getEndTime() + * @method $this withEndTime($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + */ +class DescribeLiveDomainStreamTranscodeData extends Rpc +{ +} + +/** + * @method string getStartTime() + * @method $this withStartTime($value) + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getEndTime() + * @method $this withEndTime($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getInterval() + * @method $this withInterval($value) + */ +class DescribeLiveDomainTimeShiftData extends Rpc +{ +} + +/** + * @method string getLocationNameEn() + * @method $this withLocationNameEn($value) + * @method string getStartTime() + * @method $this withStartTime($value) + * @method string getIspNameEn() + * @method $this withIspNameEn($value) + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getEndTime() + * @method $this withEndTime($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getInterval() + * @method $this withInterval($value) + */ +class DescribeLiveDomainTrafficData extends Rpc +{ +} + +/** + * @method string getStartTime() + * @method $this withStartTime($value) + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getEndTime() + * @method $this withEndTime($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + */ +class DescribeLiveDomainTranscodeData extends Rpc +{ +} + +/** + * @method string getAppName() + * @method $this withAppName($value) + * @method string getLiveapiRequestFrom() + * @method $this withLiveapiRequestFrom($value) + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + */ +class DescribeLiveLazyPullStreamConfig extends Rpc +{ +} + +/** + * @method string getLiveapiRequestFrom() + * @method $this withLiveapiRequestFrom($value) + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + */ +class DescribeLivePullStreamConfig extends Rpc +{ +} + +/** + * @method string getProject() + * @method $this withProject($value) + * @method string getStartTime() + * @method $this withStartTime($value) + * @method string getEndTime() + * @method $this withEndTime($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getInterval() + * @method $this withInterval($value) + * @method string getLogStore() + * @method $this withLogStore($value) + */ +class DescribeLiveRealtimeDeliveryAcc extends Rpc +{ +} + +/** + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getLiveOpenapiReserve() + * @method $this withLiveOpenapiReserve($value) + */ +class DescribeLiveRealtimeLogAuthorized extends Rpc +{ + + /** @var string */ + public $method = 'GET'; +} + +/** + * @method string getPageNum() + * @method $this withPageNum($value) + * @method string getAppName() + * @method $this withAppName($value) + * @method string getSecurityToken() + * @method $this withSecurityToken($value) + * @method string getPageSize() + * @method $this withPageSize($value) + * @method string getStreamName() + * @method $this withStreamName($value) + * @method string getOrder() + * @method $this withOrder($value) + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + */ +class DescribeLiveRecordConfig extends Rpc +{ +} + +/** + * @method string getSecurityToken() + * @method $this withSecurityToken($value) + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + */ +class DescribeLiveRecordNotifyConfig extends Rpc +{ +} + +/** + * @method string getPageNum() + * @method $this withPageNum($value) + * @method string getAppName() + * @method $this withAppName($value) + * @method string getPageSize() + * @method $this withPageSize($value) + * @method string getStreamName() + * @method $this withStreamName($value) + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + */ +class DescribeLiveRecordVodConfigs extends Rpc +{ +} + +/** + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + */ +class DescribeLiveShiftConfigs extends Rpc +{ +} + +/** + * @method string getPageNum() + * @method $this withPageNum($value) + * @method string getAppName() + * @method $this withAppName($value) + * @method string getSecurityToken() + * @method $this withSecurityToken($value) + * @method string getPageSize() + * @method $this withPageSize($value) + * @method string getOrder() + * @method $this withOrder($value) + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + */ +class DescribeLiveSnapshotConfig extends Rpc +{ +} + +/** + * @method string getPageNum() + * @method $this withPageNum($value) + * @method string getAppName() + * @method $this withAppName($value) + * @method string getSecurityToken() + * @method $this withSecurityToken($value) + * @method string getPageSize() + * @method $this withPageSize($value) + * @method string getOrder() + * @method $this withOrder($value) + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + */ +class DescribeLiveSnapshotDetectPornConfig extends Rpc +{ +} + +/** + * @method string getStartTime() + * @method $this withStartTime($value) + * @method string getAppName() + * @method $this withAppName($value) + * @method string getSecurityToken() + * @method $this withSecurityToken($value) + * @method string getStreamName() + * @method $this withStreamName($value) + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getEndTime() + * @method $this withEndTime($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + */ +class DescribeLiveStreamBitRateData extends Rpc +{ +} + +/** + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + */ +class DescribeLiveStreamCount extends Rpc +{ + + /** @var string */ + public $method = 'GET'; +} + +/** + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + */ +class DescribeLiveStreamDelayConfig extends Rpc +{ +} + +/** + * @method string getStartTime() + * @method $this withStartTime($value) + * @method string getAppName() + * @method $this withAppName($value) + * @method string getSecurityToken() + * @method $this withSecurityToken($value) + * @method string getStreamName() + * @method $this withStreamName($value) + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getEndTime() + * @method $this withEndTime($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + */ +class DescribeLiveStreamHistoryUserNum extends Rpc +{ +} + +/** + * @method string getConfigName() + * @method $this withConfigName($value) + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + */ +class DescribeLiveStreamOptimizedFeatureConfig extends Rpc +{ +} + +/** + * @method string getStartTime() + * @method $this withStartTime($value) + * @method string getAppName() + * @method $this withAppName($value) + * @method string getSecurityToken() + * @method $this withSecurityToken($value) + * @method string getStreamName() + * @method $this withStreamName($value) + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getEndTime() + * @method $this withEndTime($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + */ +class DescribeLiveStreamRecordContent extends Rpc +{ +} + +/** + * @method string getAppName() + * @method $this withAppName($value) + * @method string getSecurityToken() + * @method $this withSecurityToken($value) + * @method string getStreamName() + * @method $this withStreamName($value) + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getRecordId() + * @method $this withRecordId($value) + */ +class DescribeLiveStreamRecordIndexFile extends Rpc +{ +} + +/** + * @method string getStartTime() + * @method $this withStartTime($value) + * @method string getPageNum() + * @method $this withPageNum($value) + * @method string getAppName() + * @method $this withAppName($value) + * @method string getSecurityToken() + * @method $this withSecurityToken($value) + * @method string getPageSize() + * @method $this withPageSize($value) + * @method string getStreamName() + * @method $this withStreamName($value) + * @method string getOrder() + * @method $this withOrder($value) + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getEndTime() + * @method $this withEndTime($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + */ +class DescribeLiveStreamRecordIndexFiles extends Rpc +{ +} + +/** + * @method string getPageNum() + * @method $this withPageNum($value) + * @method string getSecurityToken() + * @method $this withSecurityToken($value) + * @method string getPageSize() + * @method $this withPageSize($value) + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + */ +class DescribeLiveStreamsBlockList extends Rpc +{ +} + +/** + * @method string getStartTime() + * @method $this withStartTime($value) + * @method string getAppName() + * @method $this withAppName($value) + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getEndTime() + * @method $this withEndTime($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getRows() + * @method $this withRows($value) + * @method string getPage() + * @method $this withPage($value) + */ +class DescribeLiveStreamsControlHistory extends Rpc +{ +} + +/** + * @method string getStartTime() + * @method $this withStartTime($value) + * @method string getAppName() + * @method $this withAppName($value) + * @method string getSecurityToken() + * @method $this withSecurityToken($value) + * @method string getLimit() + * @method $this withLimit($value) + * @method string getStreamName() + * @method $this withStreamName($value) + * @method string getOrder() + * @method $this withOrder($value) + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getEndTime() + * @method $this withEndTime($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + */ +class DescribeLiveStreamSnapshotInfo extends Rpc +{ +} + +/** + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + */ +class DescribeLiveStreamsNotifyUrlConfig extends Rpc +{ +} + +/** + * @method string getStartTime() + * @method $this withStartTime($value) + * @method string getPageNum() + * @method $this withPageNum($value) + * @method string getAppName() + * @method $this withAppName($value) + * @method string getPageSize() + * @method $this withPageSize($value) + * @method string getStreamName() + * @method $this withStreamName($value) + * @method string getQueryType() + * @method $this withQueryType($value) + * @method string getStreamType() + * @method $this withStreamType($value) + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getEndTime() + * @method $this withEndTime($value) + * @method string getOrderBy() + * @method $this withOrderBy($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + */ +class DescribeLiveStreamsOnlineList extends Rpc +{ +} + +/** + * @method string getStartTime() + * @method $this withStartTime($value) + * @method string getPageNumber() + * @method $this withPageNumber($value) + * @method string getAppName() + * @method $this withAppName($value) + * @method string getPageSize() + * @method $this withPageSize($value) + * @method string getStreamName() + * @method $this withStreamName($value) + * @method string getQueryType() + * @method $this withQueryType($value) + * @method string getStreamType() + * @method $this withStreamType($value) + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getEndTime() + * @method $this withEndTime($value) + * @method string getOrderBy() + * @method $this withOrderBy($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + */ +class DescribeLiveStreamsPublishList extends Rpc +{ +} + +/** + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getDomainTranscodeName() + * @method $this withDomainTranscodeName($value) + */ +class DescribeLiveStreamTranscodeInfo extends Rpc +{ +} + +/** + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + */ +class DescribeLiveStreamTranscodeStreamNum extends Rpc +{ +} + +/** + * @method string getScope() + * @method $this withScope($value) + * @method array getTag() + * @method array getResourceId() + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getResourceType() + * @method $this withResourceType($value) + */ +class DescribeLiveTagResources extends Rpc +{ + + /** + * @param array $tag + * + * @return $this + */ + public function withTag(array $tag) + { + $this->data['Tag'] = $tag; + foreach ($tag as $depth1 => $depth1Value) { + if(isset($depth1Value['Key'])){ + $this->options['query']['Tag.' . ($depth1 + 1) . '.Key'] = $depth1Value['Key']; + } + if(isset($depth1Value['Value'])){ + $this->options['query']['Tag.' . ($depth1 + 1) . '.Value'] = $depth1Value['Value']; + } + } + + return $this; + } + + /** + * @param array $resourceId + * + * @return $this + */ + public function withResourceId(array $resourceId) + { + $this->data['ResourceId'] = $resourceId; + foreach ($resourceId as $i => $iValue) { + $this->options['query']['ResourceId.' . ($i + 1)] = $iValue; + } + + return $this; + } +} + +/** + * @method string getStartTime() + * @method $this withStartTime($value) + * @method string getLimit() + * @method $this withLimit($value) + * @method string getEndTime() + * @method $this withEndTime($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + */ +class DescribeLiveTopDomainsByFlow extends Rpc +{ +} + +/** + * @method string getPageNumber() + * @method $this withPageNumber($value) + * @method string getSecurityToken() + * @method $this withSecurityToken($value) + * @method string getPageSize() + * @method $this withPageSize($value) + * @method string getRegionName() + * @method $this withRegionName($value) + * @method array getTag() + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getDomainStatus() + * @method $this withDomainStatus($value) + * @method string getDomainSearchType() + * @method $this withDomainSearchType($value) + * @method string getLiveDomainType() + * @method $this withLiveDomainType($value) + */ +class DescribeLiveUserDomains extends Rpc +{ + + /** + * @param array $tag + * + * @return $this + */ + public function withTag(array $tag) + { + $this->data['Tag'] = $tag; + foreach ($tag as $depth1 => $depth1Value) { + if(isset($depth1Value['Value'])){ + $this->options['query']['Tag.' . ($depth1 + 1) . '.Value'] = $depth1Value['Value']; + } + if(isset($depth1Value['Key'])){ + $this->options['query']['Tag.' . ($depth1 + 1) . '.Key'] = $depth1Value['Key']; + } + } + + return $this; + } +} + +/** + * @method string getOwnerId() + * @method $this withOwnerId($value) + */ +class DescribeLiveUserTags extends Rpc +{ +} + +/** + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + */ +class DescribeLiveVerifyContent extends Rpc +{ +} + +/** + * @method string getStartTime() + * @method $this withStartTime($value) + * @method string getAppName() + * @method $this withAppName($value) + * @method string getPageSize() + * @method $this withPageSize($value) + * @method string getStreamName() + * @method $this withStreamName($value) + * @method string getMixStreamId() + * @method $this withMixStreamId($value) + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getEndTime() + * @method $this withEndTime($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getPageNo() + * @method $this withPageNo($value) + */ +class DescribeMixStreamList extends Rpc +{ +} + +/** + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getRecordId() + * @method $this withRecordId($value) + * @method string getAppId() + * @method $this withAppId($value) + */ +class DescribeRecord extends Rpc +{ +} + +/** + * @method string getRecordState() + * @method $this withRecordState($value) + * @method string getPageNum() + * @method $this withPageNum($value) + * @method string getPageSize() + * @method $this withPageSize($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getAppId() + * @method $this withAppId($value) + */ +class DescribeRecords extends Rpc +{ +} + +/** + * @method string getPageNum() + * @method $this withPageNum($value) + * @method string getPageSize() + * @method $this withPageSize($value) + * @method string getOrder() + * @method $this withOrder($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getRoomId() + * @method $this withRoomId($value) + * @method string getAppId() + * @method $this withAppId($value) + */ +class DescribeRoomKickoutUserList extends Rpc +{ +} + +/** + * @method string getStartTime() + * @method $this withStartTime($value) + * @method string getAnchorId() + * @method $this withAnchorId($value) + * @method string getPageNum() + * @method $this withPageNum($value) + * @method string getRoomStatus() + * @method $this withRoomStatus($value) + * @method string getPageSize() + * @method $this withPageSize($value) + * @method string getOrder() + * @method $this withOrder($value) + * @method string getEndTime() + * @method $this withEndTime($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getRoomId() + * @method $this withRoomId($value) + * @method string getAppId() + * @method $this withAppId($value) + */ +class DescribeRoomList extends Rpc +{ +} + +/** + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getRoomId() + * @method $this withRoomId($value) + * @method string getAppId() + * @method $this withAppId($value) + */ +class DescribeRoomStatus extends Rpc +{ +} + +/** + * @method string getLayoutId() + * @method $this withLayoutId($value) + * @method string getCasterId() + * @method $this withCasterId($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + */ +class DescribeStudioLayouts extends Rpc +{ +} + +/** + * @method string getStartTime() + * @method $this withStartTime($value) + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getEndTime() + * @method $this withEndTime($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getDomainSwitch() + * @method $this withDomainSwitch($value) + */ +class DescribeUpBpsPeakData extends Rpc +{ +} + +/** + * @method string getLine() + * @method $this withLine($value) + * @method string getStartTime() + * @method $this withStartTime($value) + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getEndTime() + * @method $this withEndTime($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getDomainSwitch() + * @method $this withDomainSwitch($value) + */ +class DescribeUpBpsPeakOfLine extends Rpc +{ +} + +/** + * @method string getStartTime() + * @method $this withStartTime($value) + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getEndTime() + * @method $this withEndTime($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getDomainSwitch() + * @method $this withDomainSwitch($value) + */ +class DescribeUpPeakPublishStreamData extends Rpc +{ +} + +/** + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + */ +class DisableLiveRealtimeLogDelivery extends Rpc +{ + + /** @var string */ + public $method = 'GET'; +} + +/** + * @method string getHtmlUrl() + * @method $this withHtmlUrl($value) + * @method string getCasterId() + * @method $this withCasterId($value) + * @method string getHtmlContent() + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getHtmlResourceId() + * @method $this withHtmlResourceId($value) + * @method string getConfig() + * @method $this withConfig($value) + */ +class EditHtmlResource extends Rpc +{ + + /** + * @param string $value + * + * @return $this + */ + public function withHtmlContent($value) + { + $this->data['HtmlContent'] = $value; + $this->options['query']['htmlContent'] = $value; + + return $this; + } +} + +/** + * @method string getProgramItems() + * @method $this withProgramItems($value) + * @method string getProgramId() + * @method $this withProgramId($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getProgramConfig() + * @method $this withProgramConfig($value) + */ +class EditPlaylist extends Rpc +{ +} + +/** + * @method string getCasterId() + * @method $this withCasterId($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getSceneId() + * @method $this withSceneId($value) + */ +class EffectCasterUrgent extends Rpc +{ +} + +/** + * @method string getResourceId() + * @method $this withResourceId($value) + * @method string getCasterId() + * @method $this withCasterId($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getSceneId() + * @method $this withSceneId($value) + */ +class EffectCasterVideoResource extends Rpc +{ +} + +/** + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + */ +class EnableLiveRealtimeLogDelivery extends Rpc +{ + + /** @var string */ + public $method = 'GET'; +} + +/** + * @method string getAppName() + * @method $this withAppName($value) + * @method string getStreamName() + * @method $this withStreamName($value) + * @method string getControlStreamAction() + * @method $this withControlStreamAction($value) + * @method string getResumeTime() + * @method $this withResumeTime($value) + * @method string getLiveStreamType() + * @method $this withLiveStreamType($value) + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getOneshot() + * @method $this withOneshot($value) + */ +class ForbidLiveStream extends Rpc +{ +} + +/** + * @method string getUserData() + * @method $this withUserData($value) + * @method string getEndTime() + * @method $this withEndTime($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getRoomId() + * @method $this withRoomId($value) + * @method string getAppId() + * @method $this withAppId($value) + */ +class ForbidPushStream extends Rpc +{ +} + +/** + * @method string getApp() + * @method $this withApp($value) + * @method string getGroupId() + * @method $this withGroupId($value) + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + */ +class GetMultiRateConfig extends Rpc +{ +} + +/** + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + */ +class GetMultiRateConfigList extends Rpc +{ +} + +/** + * @method string getBoardId() + * @method $this withBoardId($value) + * @method string getAppUid() + * @method $this withAppUid($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getAppId() + * @method $this withAppId($value) + */ +class JoinBoard extends Rpc +{ +} + +/** + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getLiveOpenapiReserve() + * @method $this withLiveOpenapiReserve($value) + */ +class ListLiveRealtimeLogDelivery extends Rpc +{ + + /** @var string */ + public $method = 'GET'; +} + +/** + * @method string getProject() + * @method $this withProject($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getRegion() + * @method $this withRegion($value) + * @method string getLogstore() + * @method $this withLogstore($value) + */ +class ListLiveRealtimeLogDeliveryDomains extends Rpc +{ + + /** @var string */ + public $method = 'GET'; +} + +/** + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getLiveOpenapiReserve() + * @method $this withLiveOpenapiReserve($value) + */ +class ListLiveRealtimeLogDeliveryInfos extends Rpc +{ + + /** @var string */ + public $method = 'GET'; +} + +/** + * @method string getPageSize() + * @method $this withPageSize($value) + * @method string getProgramId() + * @method $this withProgramId($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getPage() + * @method $this withPage($value) + */ +class ListPlaylist extends Rpc +{ +} + +/** + * @method string getProgramItemIds() + * @method $this withProgramItemIds($value) + * @method string getProgramId() + * @method $this withProgramId($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + */ +class ListPlaylistItems extends Rpc +{ +} + +/** + * @method string getImageLayerContent() + * @method $this withImageLayerContent($value) + * @method string getComponentName() + * @method $this withComponentName($value) + * @method string getComponentId() + * @method $this withComponentId($value) + * @method string getCasterId() + * @method $this withCasterId($value) + * @method string getComponentLayer() + * @method $this withComponentLayer($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getComponentType() + * @method $this withComponentType($value) + * @method string getEffect() + * @method $this withEffect($value) + * @method string getCaptionLayerContent() + * @method $this withCaptionLayerContent($value) + * @method string getTextLayerContent() + * @method $this withTextLayerContent($value) + */ +class ModifyCasterComponent extends Rpc +{ +} + +/** + * @method string getEpisodeName() + * @method $this withEpisodeName($value) + * @method string getStartTime() + * @method $this withStartTime($value) + * @method string getResourceId() + * @method $this withResourceId($value) + * @method array getComponentId() + * @method string getCasterId() + * @method $this withCasterId($value) + * @method string getEndTime() + * @method $this withEndTime($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getEpisodeId() + * @method $this withEpisodeId($value) + * @method string getSwitchType() + * @method $this withSwitchType($value) + */ +class ModifyCasterEpisode extends Rpc +{ + + /** + * @param array $componentId + * + * @return $this + */ + public function withComponentId(array $componentId) + { + $this->data['ComponentId'] = $componentId; + foreach ($componentId as $i => $iValue) { + $this->options['query']['ComponentId.' . ($i + 1)] = $iValue; + } + + return $this; + } +} + +/** + * @method array getBlendList() + * @method string getLayoutId() + * @method $this withLayoutId($value) + * @method string getCasterId() + * @method $this withCasterId($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method array getAudioLayer() + * @method array getVideoLayer() + * @method array getMixList() + */ +class ModifyCasterLayout extends Rpc +{ + + /** + * @param array $blendList + * + * @return $this + */ + public function withBlendList(array $blendList) + { + $this->data['BlendList'] = $blendList; + foreach ($blendList as $i => $iValue) { + $this->options['query']['BlendList.' . ($i + 1)] = $iValue; + } + + return $this; + } + + /** + * @param array $audioLayer + * + * @return $this + */ + public function withAudioLayer(array $audioLayer) + { + $this->data['AudioLayer'] = $audioLayer; + foreach ($audioLayer as $depth1 => $depth1Value) { + if(isset($depth1Value['VolumeRate'])){ + $this->options['query']['AudioLayer.' . ($depth1 + 1) . '.VolumeRate'] = $depth1Value['VolumeRate']; + } + if(isset($depth1Value['ValidChannel'])){ + $this->options['query']['AudioLayer.' . ($depth1 + 1) . '.ValidChannel'] = $depth1Value['ValidChannel']; + } + if(isset($depth1Value['FixedDelayDuration'])){ + $this->options['query']['AudioLayer.' . ($depth1 + 1) . '.FixedDelayDuration'] = $depth1Value['FixedDelayDuration']; + } + } + + return $this; + } + + /** + * @param array $videoLayer + * + * @return $this + */ + public function withVideoLayer(array $videoLayer) + { + $this->data['VideoLayer'] = $videoLayer; + foreach ($videoLayer as $depth1 => $depth1Value) { + if(isset($depth1Value['FillMode'])){ + $this->options['query']['VideoLayer.' . ($depth1 + 1) . '.FillMode'] = $depth1Value['FillMode']; + } + if(isset($depth1Value['HeightNormalized'])){ + $this->options['query']['VideoLayer.' . ($depth1 + 1) . '.HeightNormalized'] = $depth1Value['HeightNormalized']; + } + if(isset($depth1Value['WidthNormalized'])){ + $this->options['query']['VideoLayer.' . ($depth1 + 1) . '.WidthNormalized'] = $depth1Value['WidthNormalized']; + } + if(isset($depth1Value['PositionRefer'])){ + $this->options['query']['VideoLayer.' . ($depth1 + 1) . '.PositionRefer'] = $depth1Value['PositionRefer']; + } + foreach ($depth1Value['PositionNormalized'] as $i => $iValue) { + $this->options['query']['VideoLayer.' . ($depth1 + 1) . '.PositionNormalized.' . ($i + 1)] = $iValue; + } + if(isset($depth1Value['FixedDelayDuration'])){ + $this->options['query']['VideoLayer.' . ($depth1 + 1) . '.FixedDelayDuration'] = $depth1Value['FixedDelayDuration']; + } + } + + return $this; + } + + /** + * @param array $mixList + * + * @return $this + */ + public function withMixList(array $mixList) + { + $this->data['MixList'] = $mixList; + foreach ($mixList as $i => $iValue) { + $this->options['query']['MixList.' . ($i + 1)] = $iValue; + } + + return $this; + } +} + +/** + * @method array getEpisode() + * @method string getCasterId() + * @method $this withCasterId($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + */ +class ModifyCasterProgram extends Rpc +{ + + /** + * @param array $episode + * + * @return $this + */ + public function withEpisode(array $episode) + { + $this->data['Episode'] = $episode; + foreach ($episode as $depth1 => $depth1Value) { + if(isset($depth1Value['EpisodeId'])){ + $this->options['query']['Episode.' . ($depth1 + 1) . '.EpisodeId'] = $depth1Value['EpisodeId']; + } + if(isset($depth1Value['EpisodeType'])){ + $this->options['query']['Episode.' . ($depth1 + 1) . '.EpisodeType'] = $depth1Value['EpisodeType']; + } + if(isset($depth1Value['EpisodeName'])){ + $this->options['query']['Episode.' . ($depth1 + 1) . '.EpisodeName'] = $depth1Value['EpisodeName']; + } + if(isset($depth1Value['ResourceId'])){ + $this->options['query']['Episode.' . ($depth1 + 1) . '.ResourceId'] = $depth1Value['ResourceId']; + } + foreach ($depth1Value['ComponentId'] as $i => $iValue) { + $this->options['query']['Episode.' . ($depth1 + 1) . '.ComponentId.' . ($i + 1)] = $iValue; + } + if(isset($depth1Value['StartTime'])){ + $this->options['query']['Episode.' . ($depth1 + 1) . '.StartTime'] = $depth1Value['StartTime']; + } + if(isset($depth1Value['EndTime'])){ + $this->options['query']['Episode.' . ($depth1 + 1) . '.EndTime'] = $depth1Value['EndTime']; + } + if(isset($depth1Value['SwitchType'])){ + $this->options['query']['Episode.' . ($depth1 + 1) . '.SwitchType'] = $depth1Value['SwitchType']; + } + } + + return $this; + } +} + +/** + * @method string getEndOffset() + * @method $this withEndOffset($value) + * @method string getMaterialId() + * @method $this withMaterialId($value) + * @method string getResourceId() + * @method $this withResourceId($value) + * @method string getVodUrl() + * @method $this withVodUrl($value) + * @method string getCasterId() + * @method $this withCasterId($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getBeginOffset() + * @method $this withBeginOffset($value) + * @method string getLiveStreamUrl() + * @method $this withLiveStreamUrl($value) + * @method string getPtsCallbackInterval() + * @method $this withPtsCallbackInterval($value) + * @method string getResourceName() + * @method $this withResourceName($value) + * @method string getRepeatNum() + * @method $this withRepeatNum($value) + */ +class ModifyCasterVideoResource extends Rpc +{ +} + +/** + * @method string getProperty() + * @method $this withProperty($value) + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + */ +class ModifyLiveDomainSchdmByProperty extends Rpc +{ +} + +/** + * @method string getProject() + * @method $this withProject($value) + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getRegion() + * @method $this withRegion($value) + * @method string getLogstore() + * @method $this withLogstore($value) + */ +class ModifyLiveRealtimeLogDelivery extends Rpc +{ + + /** @var string */ + public $method = 'GET'; +} + +/** + * @method string getScreenInputConfigList() + * @method $this withScreenInputConfigList($value) + * @method string getLayoutId() + * @method $this withLayoutId($value) + * @method string getLayoutName() + * @method $this withLayoutName($value) + * @method string getLayerOrderConfigList() + * @method $this withLayerOrderConfigList($value) + * @method string getMediaInputConfigList() + * @method $this withMediaInputConfigList($value) + * @method string getCasterId() + * @method $this withCasterId($value) + * @method string getBgImageConfig() + * @method $this withBgImageConfig($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getCommonConfig() + * @method $this withCommonConfig($value) + */ +class ModifyStudioLayout extends Rpc +{ +} + +/** + * @method string getDuration() + * @method $this withDuration($value) + * @method string getAppName() + * @method $this withAppName($value) + * @method string getStreamName() + * @method $this withStreamName($value) + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getVision() + * @method $this withVision($value) + */ +class OpenLiveShift extends Rpc +{ +} + +/** + * @method string getAppName() + * @method $this withAppName($value) + * @method string getStreamName() + * @method $this withStreamName($value) + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getCommand() + * @method $this withCommand($value) + */ +class RealTimeRecordCommand extends Rpc +{ +} + +/** + * @method string getMode() + * @method $this withMode($value) + * @method string getAppName() + * @method $this withAppName($value) + * @method string getStreamName() + * @method $this withStreamName($value) + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getCommand() + * @method $this withCommand($value) + * @method string getInterval() + * @method $this withInterval($value) + */ +class RealTimeSnapshotCommand extends Rpc +{ +} + +/** + * @method string getAppName() + * @method $this withAppName($value) + * @method string getSecurityToken() + * @method $this withSecurityToken($value) + * @method string getStreamName() + * @method $this withStreamName($value) + * @method string getLiveStreamType() + * @method $this withLiveStreamType($value) + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + */ +class ResumeLiveStream extends Rpc +{ +} + +/** + * @method string getData() + * @method $this withData($value) + * @method string getAppUid() + * @method $this withAppUid($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getPriority() + * @method $this withPriority($value) + * @method string getRoomId() + * @method $this withRoomId($value) + * @method string getAppId() + * @method $this withAppId($value) + */ +class SendRoomNotification extends Rpc +{ +} + +/** + * @method string getData() + * @method $this withData($value) + * @method string getToAppUid() + * @method $this withToAppUid($value) + * @method string getAppUid() + * @method $this withAppUid($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getPriority() + * @method $this withPriority($value) + * @method string getRoomId() + * @method $this withRoomId($value) + * @method string getAppId() + * @method $this withAppId($value) + */ +class SendRoomUserNotification extends Rpc +{ +} + +/** + * @method string getAuthKey() + * @method $this withAuthKey($value) + * @method string getCallbackEnable() + * @method $this withCallbackEnable($value) + * @method string getCallbackEvents() + * @method $this withCallbackEvents($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getCallbackUri() + * @method $this withCallbackUri($value) + * @method string getAppId() + * @method $this withAppId($value) + * @method string getAuthSwitch() + * @method $this withAuthSwitch($value) + */ +class SetBoardCallback extends Rpc +{ +} + +/** + * @method string getSeekOffset() + * @method $this withSeekOffset($value) + * @method string getPlayStatus() + * @method $this withPlayStatus($value) + * @method string getResourceId() + * @method $this withResourceId($value) + * @method string getCasterId() + * @method $this withCasterId($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getReloadFlag() + * @method $this withReloadFlag($value) + * @method string getChannelId() + * @method $this withChannelId($value) + */ +class SetCasterChannel extends Rpc +{ +} + +/** + * @method string getChannelEnable() + * @method $this withChannelEnable($value) + * @method string getProgramEffect() + * @method $this withProgramEffect($value) + * @method string getProgramName() + * @method $this withProgramName($value) + * @method string getRecordConfig() + * @method $this withRecordConfig($value) + * @method string getUrgentMaterialId() + * @method $this withUrgentMaterialId($value) + * @method string getTranscodeConfig() + * @method $this withTranscodeConfig($value) + * @method string getCasterName() + * @method $this withCasterName($value) + * @method string getSideOutputUrl() + * @method $this withSideOutputUrl($value) + * @method string getCasterId() + * @method $this withCasterId($value) + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getDelay() + * @method $this withDelay($value) + * @method string getCallbackUrl() + * @method $this withCallbackUrl($value) + */ +class SetCasterConfig extends Rpc +{ +} + +/** + * @method string getLayoutId() + * @method $this withLayoutId($value) + * @method array getComponentId() + * @method string getCasterId() + * @method $this withCasterId($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getSceneId() + * @method $this withSceneId($value) + */ +class SetCasterSceneConfig extends Rpc +{ + + /** + * @param array $componentId + * + * @return $this + */ + public function withComponentId(array $componentId) + { + $this->data['ComponentId'] = $componentId; + foreach ($componentId as $i => $iValue) { + $this->options['query']['ComponentId.' . ($i + 1)] = $iValue; + } + + return $this; + } +} + +/** + * @method string getCasterId() + * @method $this withCasterId($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method array getSyncGroup() + */ +class SetCasterSyncGroup extends Rpc +{ + + /** + * @param array $syncGroup + * + * @return $this + */ + public function withSyncGroup(array $syncGroup) + { + $this->data['SyncGroup'] = $syncGroup; + foreach ($syncGroup as $depth1 => $depth1Value) { + if(isset($depth1Value['Mode'])){ + $this->options['query']['SyncGroup.' . ($depth1 + 1) . '.Mode'] = $depth1Value['Mode']; + } + if(isset($depth1Value['SyncDelayThreshold'])){ + $this->options['query']['SyncGroup.' . ($depth1 + 1) . '.SyncDelayThreshold'] = $depth1Value['SyncDelayThreshold']; + } + if(isset($depth1Value['HostResourceId'])){ + $this->options['query']['SyncGroup.' . ($depth1 + 1) . '.HostResourceId'] = $depth1Value['HostResourceId']; + } + foreach ($depth1Value['ResourceIds'] as $i => $iValue) { + $this->options['query']['SyncGroup.' . ($depth1 + 1) . '.ResourceIds.' . ($i + 1)] = $iValue; + } + } + + return $this; + } +} + +/** + * @method string getSSLProtocol() + * @method $this withSSLProtocol($value) + * @method string getSecurityToken() + * @method $this withSecurityToken($value) + * @method string getCertType() + * @method $this withCertType($value) + * @method string getSSLPri() + * @method $this withSSLPri($value) + * @method string getForceSet() + * @method $this withForceSet($value) + * @method string getCertName() + * @method $this withCertName($value) + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getSSLPub() + * @method $this withSSLPub($value) + */ +class SetLiveDomainCertificate extends Rpc +{ +} + +/** + * @method string getPullArgs() + * @method $this withPullArgs($value) + * @method string getAppName() + * @method $this withAppName($value) + * @method string getLiveapiRequestFrom() + * @method $this withLiveapiRequestFrom($value) + * @method string getPullAuthKey() + * @method $this withPullAuthKey($value) + * @method string getPullAuthType() + * @method $this withPullAuthType($value) + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getPullDomainName() + * @method $this withPullDomainName($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getPullAppName() + * @method $this withPullAppName($value) + * @method string getPullProtocol() + * @method $this withPullProtocol($value) + */ +class SetLiveLazyPullStreamInfoConfig extends Rpc +{ +} + +/** + * @method string getFlvLevel() + * @method $this withFlvLevel($value) + * @method string getHlsLevel() + * @method $this withHlsLevel($value) + * @method string getRtmpDelay() + * @method $this withRtmpDelay($value) + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getFlvDelay() + * @method $this withFlvDelay($value) + * @method string getRtmpLevel() + * @method $this withRtmpLevel($value) + * @method string getHlsDelay() + * @method $this withHlsDelay($value) + */ +class SetLiveStreamDelayConfig extends Rpc +{ +} + +/** + * @method string getConfigStatus() + * @method $this withConfigStatus($value) + * @method string getConfigName() + * @method $this withConfigName($value) + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getConfigValue() + * @method $this withConfigValue($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + */ +class SetLiveStreamOptimizedFeatureConfig extends Rpc +{ +} + +/** + * @method string getAuthKey() + * @method $this withAuthKey($value) + * @method string getAuthType() + * @method $this withAuthType($value) + * @method string getNotifyUrl() + * @method $this withNotifyUrl($value) + * @method string getNotifyType() + * @method $this withNotifyType($value) + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + */ +class SetLiveStreamsNotifyUrlConfig extends Rpc +{ +} + +/** + * @method string getStartTime() + * @method $this withStartTime($value) + * @method string getBoardId() + * @method $this withBoardId($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getAppId() + * @method $this withAppId($value) + */ +class StartBoardRecord extends Rpc +{ +} + +/** + * @method string getCasterId() + * @method $this withCasterId($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + */ +class StartCaster extends Rpc +{ +} + +/** + * @method string getCasterId() + * @method $this withCasterId($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getSceneId() + * @method $this withSceneId($value) + */ +class StartCasterScene extends Rpc +{ +} + +/** + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getSecurityToken() + * @method $this withSecurityToken($value) + */ +class StartLiveDomain extends Rpc +{ +} + +/** + * @method string getTokenId() + * @method $this withTokenId($value) + * @method string getOssEndpoint() + * @method $this withOssEndpoint($value) + * @method string getAppName() + * @method $this withAppName($value) + * @method string getOssRamRole() + * @method $this withOssRamRole($value) + * @method string getStreamName() + * @method $this withStreamName($value) + * @method string getOssUserId() + * @method $this withOssUserId($value) + * @method string getOssBucket() + * @method $this withOssBucket($value) + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getInputUrl() + * @method $this withInputUrl($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getInterval() + * @method $this withInterval($value) + */ +class StartLiveIndex extends Rpc +{ +} + +/** + * @method string getResumeMode() + * @method $this withResumeMode($value) + * @method string getStartItemId() + * @method $this withStartItemId($value) + * @method string getProgramId() + * @method $this withProgramId($value) + * @method string getOffset() + * @method $this withOffset($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + */ +class StartPlaylist extends Rpc +{ +} + +/** + * @method string getCasterId() + * @method $this withCasterId($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + */ +class StopCaster extends Rpc +{ +} + +/** + * @method string getCasterId() + * @method $this withCasterId($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getSceneId() + * @method $this withSceneId($value) + */ +class StopCasterScene extends Rpc +{ +} + +/** + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getSecurityToken() + * @method $this withSecurityToken($value) + */ +class StopLiveDomain extends Rpc +{ +} + +/** + * @method string getAppName() + * @method $this withAppName($value) + * @method string getStreamName() + * @method $this withStreamName($value) + * @method string getTaskId() + * @method $this withTaskId($value) + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + */ +class StopLiveIndex extends Rpc +{ +} + +/** + * @method string getProgramId() + * @method $this withProgramId($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + */ +class StopPlaylist extends Rpc +{ +} + +/** + * @method array getTag() + * @method array getResourceId() + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getResourceType() + * @method $this withResourceType($value) + */ +class TagLiveResources extends Rpc +{ + + /** + * @param array $tag + * + * @return $this + */ + public function withTag(array $tag) + { + $this->data['Tag'] = $tag; + foreach ($tag as $depth1 => $depth1Value) { + if(isset($depth1Value['Key'])){ + $this->options['query']['Tag.' . ($depth1 + 1) . '.Key'] = $depth1Value['Key']; + } + if(isset($depth1Value['Value'])){ + $this->options['query']['Tag.' . ($depth1 + 1) . '.Value'] = $depth1Value['Value']; + } + } + + return $this; + } + + /** + * @param array $resourceId + * + * @return $this + */ + public function withResourceId(array $resourceId) + { + $this->data['ResourceId'] = $resourceId; + foreach ($resourceId as $i => $iValue) { + $this->options['query']['ResourceId.' . ($i + 1)] = $iValue; + } + + return $this; + } +} + +/** + * @method string getAll() + * @method $this withAll($value) + * @method array getResourceId() + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getResourceType() + * @method $this withResourceType($value) + * @method array getTagKey() + */ +class UnTagLiveResources extends Rpc +{ + + /** + * @param array $resourceId + * + * @return $this + */ + public function withResourceId(array $resourceId) + { + $this->data['ResourceId'] = $resourceId; + foreach ($resourceId as $i => $iValue) { + $this->options['query']['ResourceId.' . ($i + 1)] = $iValue; + } + + return $this; + } + + /** + * @param array $tagKey + * + * @return $this + */ + public function withTagKey(array $tagKey) + { + $this->data['TagKey'] = $tagKey; + foreach ($tagKey as $i => $iValue) { + $this->options['query']['TagKey.' . ($i + 1)] = $iValue; + } + + return $this; + } +} + +/** + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getAppId() + * @method $this withAppId($value) + * @method string getBoardData() + * @method $this withBoardData($value) + */ +class UpdateBoard extends Rpc +{ +} + +/** + * @method string getAuthKey() + * @method $this withAuthKey($value) + * @method string getCallbackEnable() + * @method $this withCallbackEnable($value) + * @method string getCallbackEvents() + * @method $this withCallbackEvents($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getCallbackUri() + * @method $this withCallbackUri($value) + * @method string getAppId() + * @method $this withAppId($value) + * @method string getAuthSwitch() + * @method $this withAuthSwitch($value) + */ +class UpdateBoardCallback extends Rpc +{ +} + +/** + * @method string getCasterId() + * @method $this withCasterId($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method array getAudioLayer() + * @method string getSceneId() + * @method $this withSceneId($value) + * @method array getMixList() + * @method string getFollowEnable() + * @method $this withFollowEnable($value) + */ +class UpdateCasterSceneAudio extends Rpc +{ + + /** + * @param array $audioLayer + * + * @return $this + */ + public function withAudioLayer(array $audioLayer) + { + $this->data['AudioLayer'] = $audioLayer; + foreach ($audioLayer as $depth1 => $depth1Value) { + if(isset($depth1Value['VolumeRate'])){ + $this->options['query']['AudioLayer.' . ($depth1 + 1) . '.VolumeRate'] = $depth1Value['VolumeRate']; + } + if(isset($depth1Value['ValidChannel'])){ + $this->options['query']['AudioLayer.' . ($depth1 + 1) . '.ValidChannel'] = $depth1Value['ValidChannel']; + } + if(isset($depth1Value['FixedDelayDuration'])){ + $this->options['query']['AudioLayer.' . ($depth1 + 1) . '.FixedDelayDuration'] = $depth1Value['FixedDelayDuration']; + } + } + + return $this; + } + + /** + * @param array $mixList + * + * @return $this + */ + public function withMixList(array $mixList) + { + $this->data['MixList'] = $mixList; + foreach ($mixList as $i => $iValue) { + $this->options['query']['MixList.' . ($i + 1)] = $iValue; + } + + return $this; + } +} + +/** + * @method string getLayoutId() + * @method $this withLayoutId($value) + * @method array getComponentId() + * @method string getCasterId() + * @method $this withCasterId($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getSceneId() + * @method $this withSceneId($value) + */ +class UpdateCasterSceneConfig extends Rpc +{ + + /** + * @param array $componentId + * + * @return $this + */ + public function withComponentId(array $componentId) + { + $this->data['ComponentId'] = $componentId; + foreach ($componentId as $i => $iValue) { + $this->options['query']['ComponentId.' . ($i + 1)] = $iValue; + } + + return $this; + } +} + +/** + * @method string getTimeInterval() + * @method $this withTimeInterval($value) + * @method string getOssEndpoint() + * @method $this withOssEndpoint($value) + * @method string getAppName() + * @method $this withAppName($value) + * @method string getSecurityToken() + * @method $this withSecurityToken($value) + * @method string getOverwriteOssObject() + * @method $this withOverwriteOssObject($value) + * @method string getOssBucket() + * @method $this withOssBucket($value) + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getSequenceOssObject() + * @method $this withSequenceOssObject($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getCallback() + * @method $this withCallback($value) + */ +class UpdateLiveAppSnapshotConfig extends Rpc +{ +} + +/** + * @method string getAppName() + * @method $this withAppName($value) + * @method string getMnsTopic() + * @method $this withMnsTopic($value) + * @method string getStreamName() + * @method $this withStreamName($value) + * @method string getPeriod() + * @method $this withPeriod($value) + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getHttpCallbackURL() + * @method $this withHttpCallbackURL($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getMnsRegion() + * @method $this withMnsRegion($value) + */ +class UpdateLiveASRConfig extends Rpc +{ +} + +/** + * @method string getOssEndpoint() + * @method $this withOssEndpoint($value) + * @method string getOssObject() + * @method $this withOssObject($value) + * @method string getAppName() + * @method $this withAppName($value) + * @method string getStreamName() + * @method $this withStreamName($value) + * @method string getOssBucket() + * @method $this withOssBucket($value) + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getBizType() + * @method $this withBizType($value) + */ +class UpdateLiveAudioAuditConfig extends Rpc +{ +} + +/** + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getCallbackTemplate() + * @method $this withCallbackTemplate($value) + * @method string getCallback() + * @method $this withCallback($value) + */ +class UpdateLiveAudioAuditNotifyConfig extends Rpc +{ +} + +/** + * @method string getSecurityToken() + * @method $this withSecurityToken($value) + * @method string getNotifyUrl() + * @method $this withNotifyUrl($value) + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + */ +class UpdateLiveDetectNotifyConfig extends Rpc +{ +} + +/** + * @method string getOnDemandUrl() + * @method $this withOnDemandUrl($value) + * @method string getSecurityToken() + * @method $this withSecurityToken($value) + * @method string getNotifyUrl() + * @method $this withNotifyUrl($value) + * @method string getNeedStatusNotify() + * @method $this withNeedStatusNotify($value) + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + */ +class UpdateLiveRecordNotifyConfig extends Rpc +{ +} + +/** + * @method string getOssEndpoint() + * @method $this withOssEndpoint($value) + * @method string getOssObject() + * @method $this withOssObject($value) + * @method array getScene() + * @method string getAppName() + * @method $this withAppName($value) + * @method string getSecurityToken() + * @method $this withSecurityToken($value) + * @method string getOssBucket() + * @method $this withOssBucket($value) + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getInterval() + * @method $this withInterval($value) + */ +class UpdateLiveSnapshotDetectPornConfig extends Rpc +{ + + /** + * @param array $scene + * + * @return $this + */ + public function withScene(array $scene) + { + $this->data['Scene'] = $scene; + foreach ($scene as $i => $iValue) { + $this->options['query']['Scene.' . ($i + 1)] = $iValue; + } + + return $this; + } +} + +/** + * @method string getTopLevelDomain() + * @method $this withTopLevelDomain($value) + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + * @method string getSecurityToken() + * @method $this withSecurityToken($value) + */ +class UpdateLiveTopLevelDomain extends Rpc +{ +} + +/** + * @method string getLayoutId() + * @method $this withLayoutId($value) + * @method string getMixStreamId() + * @method $this withMixStreamId($value) + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getInputStreamList() + * @method $this withInputStreamList($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + */ +class UpdateMixStream extends Rpc +{ +} + +/** + * @method string getVerifyType() + * @method $this withVerifyType($value) + * @method string getDomainName() + * @method $this withDomainName($value) + * @method string getOwnerId() + * @method $this withOwnerId($value) + */ +class VerifyLiveDomainOwner extends Rpc +{ +} diff --git a/vendor/alibabacloud/live/composer.json b/vendor/alibabacloud/live/composer.json new file mode 100644 index 000000000..2412043e9 --- /dev/null +++ b/vendor/alibabacloud/live/composer.json @@ -0,0 +1,43 @@ +{ + "name": "alibabacloud/live", + "homepage": "https://www.alibabacloud.com/", + "description": "Alibaba Cloud Live SDK for PHP", + "keywords": [ + "live", + "sdk", + "cloud", + "aliyun", + "alibaba", + "library", + "alibabacloud" + ], + "type": "library", + "license": "Apache-2.0", + "support": { + "source": "https://github.com/alibabacloud-sdk-php/live", + "issues": "https://github.com/alibabacloud-sdk-php/live/issues" + }, + "authors": [ + { + "name": "Alibaba Cloud SDK", + "email": "sdk-team@alibabacloud.com", + "homepage": "http://www.alibabacloud.com" + } + ], + "require": { + "php": ">=5.5", + "alibabacloud/client": "^1.5" + }, + "autoload": { + "psr-4": { + "AlibabaCloud\\Live\\": "" + } + }, + "config": { + "sort-packages": true, + "preferred-install": "dist", + "optimize-autoloader": true + }, + "prefer-stable": true, + "minimum-stability": "dev" +} diff --git a/vendor/alibabacloud/live/endpoints.json b/vendor/alibabacloud/live/endpoints.json new file mode 100644 index 000000000..a05335bd0 --- /dev/null +++ b/vendor/alibabacloud/live/endpoints.json @@ -0,0 +1 @@ +{"endpoint_map":{"cn-qingdao":"live.aliyuncs.com","cn-beijing":"live.aliyuncs.com","cn-hangzhou":"live.aliyuncs.com","cn-shanghai":"live.aliyuncs.com","cn-shenzhen":"live.aliyuncs.com","ap-southeast-1":"live.aliyuncs.com","ap-southeast-5":"live.aliyuncs.com","ap-northeast-1":"live.aliyuncs.com","eu-central-1":"live.aliyuncs.com","ap-south-1":"live.aliyuncs.com","ap-northeast-2-pop":"live.ap-southeast-1.aliyuncs.com","ap-southeast-2":"live.ap-southeast-1.aliyuncs.com","ap-southeast-3":"live.ap-southeast-1.aliyuncs.com","cn-beijing-finance-1":"live.aliyuncs.com","cn-beijing-finance-pop":"live.aliyuncs.com","cn-beijing-gov-1":"live.aliyuncs.com","cn-beijing-nu16-b01":"live.aliyuncs.com","cn-chengdu":"live.aliyuncs.com","cn-edge-1":"live.aliyuncs.com","cn-fujian":"live.aliyuncs.com","cn-haidian-cm12-c01":"live.aliyuncs.com","cn-hangzhou-bj-b01":"live.aliyuncs.com","cn-hangzhou-finance":"live.aliyuncs.com","cn-hangzhou-internal-prod-1":"live.aliyuncs.com","cn-hangzhou-internal-test-1":"live.aliyuncs.com","cn-hangzhou-internal-test-2":"live.aliyuncs.com","cn-hangzhou-internal-test-3":"live.aliyuncs.com","cn-hangzhou-test-306":"live.aliyuncs.com","cn-hongkong":"live.aliyuncs.com","cn-hongkong-finance-pop":"live.aliyuncs.com","cn-huhehaote":"live.aliyuncs.com","cn-north-2-gov-1":"live.aliyuncs.com","cn-qingdao-nebula":"live.aliyuncs.com","cn-shanghai-et15-b01":"live.aliyuncs.com","cn-shanghai-et2-b01":"live.aliyuncs.com","cn-shanghai-finance-1":"live.aliyuncs.com","cn-shanghai-inner":"live.aliyuncs.com","cn-shanghai-internal-test-1":"live.aliyuncs.com","cn-shenzhen-finance-1":"live.aliyuncs.com","cn-shenzhen-inner":"live.aliyuncs.com","cn-shenzhen-st4-d01":"live.aliyuncs.com","cn-shenzhen-su18-b01":"live.aliyuncs.com","cn-wuhan":"live.aliyuncs.com","cn-yushanfang":"live.aliyuncs.com","cn-zhangbei-na61-b01":"live.aliyuncs.com","cn-zhangjiakou":"live.aliyuncs.com","cn-zhangjiakou-na62-a01":"live.aliyuncs.com","cn-zhengzhou-nebula-1":"live.aliyuncs.com","eu-west-1":"live.ap-southeast-1.aliyuncs.com","eu-west-1-oxs":"live.ap-southeast-1.aliyuncs.com","me-east-1":"live.ap-southeast-1.aliyuncs.com","rus-west-1-pop":"live.ap-southeast-1.aliyuncs.com","us-east-1":"live.ap-southeast-1.aliyuncs.com","us-west-1":"live.ap-southeast-1.aliyuncs.com"},"endpoint_regional":"regional","standard":[],"regions":["cn-qingdao","cn-beijing","cn-hangzhou","cn-shanghai","cn-shenzhen","ap-southeast-1","ap-southeast-5","ap-northeast-1","eu-central-1","ap-south-1","ap-northeast-2-pop","ap-southeast-2","ap-southeast-3","cn-beijing-finance-1","cn-beijing-finance-pop","cn-beijing-gov-1","cn-beijing-nu16-b01","cn-chengdu","cn-edge-1","cn-fujian","cn-haidian-cm12-c01","cn-hangzhou-bj-b01","cn-hangzhou-finance","cn-hangzhou-internal-prod-1","cn-hangzhou-internal-test-1","cn-hangzhou-internal-test-2","cn-hangzhou-internal-test-3","cn-hangzhou-test-306","cn-hongkong","cn-hongkong-finance-pop","cn-huhehaote","cn-north-2-gov-1","cn-qingdao-nebula","cn-shanghai-et15-b01","cn-shanghai-et2-b01","cn-shanghai-finance-1","cn-shanghai-inner","cn-shanghai-internal-test-1","cn-shenzhen-finance-1","cn-shenzhen-inner","cn-shenzhen-st4-d01","cn-shenzhen-su18-b01","cn-wuhan","cn-yushanfang","cn-zhangbei-na61-b01","cn-zhangjiakou","cn-zhangjiakou-na62-a01","cn-zhengzhou-nebula-1","eu-west-1","eu-west-1-oxs","me-east-1","rus-west-1-pop","us-east-1","us-west-1"],"endpoint_health":[]} diff --git a/vendor/alibabacloud/openapi-util/.gitignore b/vendor/alibabacloud/openapi-util/.gitignore new file mode 100644 index 000000000..89c7aa58e --- /dev/null +++ b/vendor/alibabacloud/openapi-util/.gitignore @@ -0,0 +1,15 @@ +composer.phar +/vendor/ + +# Commit your application's lock file https://getcomposer.org/doc/01-basic-usage.md#commit-your-composer-lock-file-to-version-control +# You may choose to ignore a library lock file http://getcomposer.org/doc/02-libraries.md#lock-file +composer.lock + +.vscode/ +.idea +.DS_Store + +cache/ +*.cache +runtime/ +.php_cs.cache diff --git a/vendor/alibabacloud/openapi-util/.php_cs.dist b/vendor/alibabacloud/openapi-util/.php_cs.dist new file mode 100644 index 000000000..8617ec2fa --- /dev/null +++ b/vendor/alibabacloud/openapi-util/.php_cs.dist @@ -0,0 +1,65 @@ +setRiskyAllowed(true) + ->setIndent(' ') + ->setRules([ + '@PSR2' => true, + '@PhpCsFixer' => true, + '@Symfony:risky' => true, + 'concat_space' => ['spacing' => 'one'], + 'array_syntax' => ['syntax' => 'short'], + 'array_indentation' => true, + 'combine_consecutive_unsets' => true, + 'method_separation' => true, + 'single_quote' => true, + 'declare_equal_normalize' => true, + 'function_typehint_space' => true, + 'hash_to_slash_comment' => true, + 'include' => true, + 'lowercase_cast' => true, + 'no_multiline_whitespace_before_semicolons' => true, + 'no_leading_import_slash' => true, + 'no_multiline_whitespace_around_double_arrow' => true, + 'no_spaces_around_offset' => true, + 'no_unneeded_control_parentheses' => true, + 'no_unused_imports' => true, + 'no_whitespace_before_comma_in_array' => true, + 'no_whitespace_in_blank_line' => true, + 'object_operator_without_whitespace' => true, + 'single_blank_line_before_namespace' => true, + 'single_class_element_per_statement' => true, + 'space_after_semicolon' => true, + 'standardize_not_equals' => true, + 'ternary_operator_spaces' => true, + 'trailing_comma_in_multiline_array' => true, + 'trim_array_spaces' => true, + 'unary_operator_spaces' => true, + 'whitespace_after_comma_in_array' => true, + 'no_extra_consecutive_blank_lines' => [ + 'curly_brace_block', + 'extra', + 'parenthesis_brace_block', + 'square_brace_block', + 'throw', + 'use', + ], + 'binary_operator_spaces' => [ + 'align_double_arrow' => true, + 'align_equals' => true, + ], + 'braces' => [ + 'allow_single_line_closure' => true, + ], + ]) + ->setFinder( + PhpCsFixer\Finder::create() + ->exclude('vendor') + ->exclude('tests') + ->in(__DIR__) + ); diff --git a/vendor/alibabacloud/openapi-util/README-CN.md b/vendor/alibabacloud/openapi-util/README-CN.md new file mode 100644 index 000000000..57b03a429 --- /dev/null +++ b/vendor/alibabacloud/openapi-util/README-CN.md @@ -0,0 +1,31 @@ +[English](README.md) | 简体中文 + +![](https://aliyunsdk-pages.alicdn.com/icons/AlibabaCloud.svg) + +## Alibaba Cloud OpenApi Util + +## 安装 + +### Composer + +```bash +composer require alibabacloud/openapi-util +``` + +## 问题 + +[提交 Issue](https://github.com/aliyun/openapiutil/issues/new),不符合指南的问题可能会立即关闭。 + +## 发行说明 + +每个版本的详细更改记录在[发行说明](./ChangeLog.txt)中。 + +## 相关 + +* [最新源码](https://github.com/aliyun/openapiutil) + +## 许可证 + +[Apache-2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Copyright (c) 2009-present, Alibaba Cloud All rights reserved. diff --git a/vendor/alibabacloud/openapi-util/README.md b/vendor/alibabacloud/openapi-util/README.md new file mode 100644 index 000000000..2ad047211 --- /dev/null +++ b/vendor/alibabacloud/openapi-util/README.md @@ -0,0 +1,31 @@ +English | [简体中文](README-CN.md) + +![](https://aliyunsdk-pages.alicdn.com/icons/AlibabaCloud.svg) + +## Alibaba Cloud OpenApi Util + +## Installation + +### Composer + +```bash +composer require alibabacloud/openapi-util +``` + +## Issues + +[Opening an Issue](https://github.com/aliyun/openapiutil/issues/new), Issues not conforming to the guidelines may be closed immediately. + +## Changelog + +Detailed changes for each release are documented in the [release notes](./ChangeLog.txt). + +## References + +* [Latest Release](https://github.com/aliyun/openapiutil) + +## License + +[Apache-2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Copyright (c) 2009-present, Alibaba Cloud All rights reserved. diff --git a/vendor/alibabacloud/openapi-util/autoload.php b/vendor/alibabacloud/openapi-util/autoload.php new file mode 100644 index 000000000..b787ba0e2 --- /dev/null +++ b/vendor/alibabacloud/openapi-util/autoload.php @@ -0,0 +1,17 @@ +5.5", + "alibabacloud/tea": "^3.1", + "alibabacloud/tea-utils": "^0.2", + "lizhichao/one-sm": "^1.5" + }, + "require-dev": { + "phpunit/phpunit": "*" + }, + "autoload": { + "psr-4": { + "AlibabaCloud\\OpenApiUtil\\": "src" + } + }, + "autoload-dev": { + "psr-4": { + "AlibabaCloud\\OpenApiUtil\\Tests\\": "tests" + } + }, + "scripts": { + "fixer": "php-cs-fixer fix ./", + "test": [ + "@clearCache", + "./vendor/bin/phpunit --colors=always" + ], + "clearCache": "rm -rf cache/*" + }, + "config": { + "sort-packages": true, + "preferred-install": "dist", + "optimize-autoloader": true + }, + "prefer-stable": true +} diff --git a/vendor/alibabacloud/openapi-util/phpunit.xml b/vendor/alibabacloud/openapi-util/phpunit.xml new file mode 100644 index 000000000..5042ba874 --- /dev/null +++ b/vendor/alibabacloud/openapi-util/phpunit.xml @@ -0,0 +1,31 @@ + + + + + + tests + + + ./tests + + + + + + integration + + + + + + + + + + + ./src + + + diff --git a/vendor/alibabacloud/openapi-util/src/OpenApiUtilClient.php b/vendor/alibabacloud/openapi-util/src/OpenApiUtilClient.php new file mode 100644 index 000000000..b89171231 --- /dev/null +++ b/vendor/alibabacloud/openapi-util/src/OpenApiUtilClient.php @@ -0,0 +1,573 @@ +toMap(); + $map = self::exceptStream($map); + $newContent = $content::fromMap($map); + $class = new \ReflectionClass($newContent); + foreach ($class->getProperties(\ReflectionProperty::IS_PUBLIC) as $property) { + $name = $property->getName(); + if (!$property->isStatic()) { + $content->{$name} = $property->getValue($newContent); + } + } + } + + private static function exceptStream($map) + { + if ($map instanceof StreamInterface) { + return null; + } elseif (\is_array($map)) { + $data = []; + foreach ($map as $k => $v) { + if (null !== $v) { + $item = self::exceptStream($v); + if (null !== $item) { + $data[$k] = $item; + } + } else { + $data[$k] = $v; + } + } + return $data; + } + return $map; + } + + /** + * Get the string to be signed according to request. + * + * @param Request $request which contains signed messages + * + * @return string the signed string + */ + public static function getStringToSign($request) + { + $pathname = $request->pathname ?: ''; + $query = $request->query ?: []; + + $accept = isset($request->headers['accept']) ? $request->headers['accept'] : ''; + $contentMD5 = isset($request->headers['content-md5']) ? $request->headers['content-md5'] : ''; + $contentType = isset($request->headers['content-type']) ? $request->headers['content-type'] : ''; + $date = isset($request->headers['date']) ? $request->headers['date'] : ''; + + $result = $request->method . "\n" . + $accept . "\n" . + $contentMD5 . "\n" . + $contentType . "\n" . + $date . "\n"; + + $canonicalizedHeaders = self::getCanonicalizedHeaders($request->headers); + $canonicalizedResource = self::getCanonicalizedResource($pathname, $query); + + return $result . $canonicalizedHeaders . $canonicalizedResource; + } + + /** + * Get signature according to stringToSign, secret. + * + * @param string $stringToSign the signed string + * @param string $secret accesskey secret + * + * @return string the signature + */ + public static function getROASignature($stringToSign, $secret) + { + return base64_encode(hash_hmac('sha1', $stringToSign, $secret, true)); + } + + /** + * Parse filter into a form string. + * + * @param array $filter object + * + * @return string the string + */ + public static function toForm($filter) + { + $query = $filter; + if (null === $query) { + return ''; + } + if ($query instanceof Model) { + $query = $query->toMap(); + } + $tmp = []; + foreach ($query as $k => $v) { + if (0 !== strpos($k, '_')) { + $tmp[$k] = $v; + } + } + $res = self::flatten($tmp); + ksort($res); + + return http_build_query($res); + } + + /** + * Get timestamp. + * + * @return string the timestamp string + */ + public static function getTimestamp() + { + return gmdate('Y-m-d\\TH:i:s\\Z'); + } + + /** + * Parse filter into a object which's type is map[string]string. + * + * @param array $filter query param + * + * @return array the object + */ + public static function query($filter) + { + if (null === $filter) { + return []; + } + $dict = $filter; + if ($dict instanceof Model) { + $dict = $dict->toMap(); + } + $tmp = []; + foreach ($dict as $k => $v) { + if (0 !== strpos($k, '_')) { + $tmp[$k] = $v; + } + } + + return self::flatten($tmp); + } + + /** + * Get signature according to signedParams, method and secret. + * + * @param array $signedParams params which need to be signed + * @param string $method http method e.g. GET + * @param string $secret AccessKeySecret + * + * @return string the signature + */ + public static function getRPCSignature($signedParams, $method, $secret) + { + $secret .= '&'; + $strToSign = self::getRpcStrToSign($method, $signedParams); + + $signMethod = 'HMAC-SHA1'; + + return self::encode($signMethod, $strToSign, $secret); + } + + /** + * Parse object into a string with specified style. + * + * @style specified style e.g. repeatList + * + * @param mixed $object the object + * @param string $prefix the prefix string + * @param string $style + * + * @return string the string + */ + public static function arrayToStringWithSpecifiedStyle($object, $prefix, $style) + { + if (null === $object) { + return ''; + } + if ('repeatList' === $style) { + return self::toForm([$prefix => $object]); + } + if ('simple' == $style || 'spaceDelimited' == $style || 'pipeDelimited' == $style) { + $strs = self::flatten($object); + + switch ($style) { + case 'spaceDelimited': + return implode(' ', $strs); + + case 'pipeDelimited': + return implode('|', $strs); + + default: + return implode(',', $strs); + } + } elseif ('json' === $style) { + self::parse($object, $parsed); + return json_encode($parsed); + } + + return ''; + } + + /** + * Transform input as array. + * + * @param mixed $input + * + * @return array + */ + public static function parseToArray($input) + { + self::parse($input, $result); + + return $result; + } + + /** + * Transform input as map. + * + * @param mixed $input + * + * @return array + */ + public static function parseToMap($input) + { + self::parse($input, $result); + + return $result; + } + + public static function getEndpoint($endpoint, $useAccelerate, $endpointType = 'public') + { + if ('internal' == $endpointType) { + $tmp = explode('.', $endpoint); + $tmp[0] .= '-internal'; + $endpoint = implode('.', $tmp); + } + if ($useAccelerate && 'accelerate' == $endpointType) { + return 'oss-accelerate.aliyuncs.com'; + } + + return $endpoint; + } + + /** + * Encode raw with base16. + * + * @param int[] $raw encoding data + * + * @return string encoded string + */ + public static function hexEncode($raw) + { + if (is_array($raw)) { + $raw = Utils::toString($raw); + } + return bin2hex($raw); + } + + /** + * Hash the raw data with signatureAlgorithm. + * + * @param int[] $raw hashing data + * @param string $signatureAlgorithm the autograph method + * + * @return array hashed bytes + */ + public static function hash($raw, $signatureAlgorithm) + { + $str = Utils::toString($raw); + + switch ($signatureAlgorithm) { + case 'ACS3-HMAC-SHA256': + case 'ACS3-RSA-SHA256': + $res = hash('sha256', $str, true); + return Utils::toBytes($res); + case 'ACS3-HMAC-SM3': + $res = self::sm3($str); + return Utils::toBytes(hex2bin($res)); + } + + return []; + } + + /** + * Get the authorization. + * + * @param Request $request request params + * @param string $signatureAlgorithm the autograph method + * @param string $payload the hashed request + * @param string $accesskey the accessKey string + * @param string $accessKeySecret the accessKeySecret string + * + * @return string authorization string + * @throws \ErrorException + * + */ + public static function getAuthorization($request, $signatureAlgorithm, $payload, $accesskey, $accessKeySecret) + { + $canonicalURI = $request->pathname ? $request->pathname : '/'; + $query = $request->query ?: []; + $method = strtoupper($request->method); + $canonicalQueryString = self::getCanonicalQueryString($query); + $signHeaders = []; + foreach ($request->headers as $k => $v) { + $k = strtolower($k); + if (0 === strpos($k, 'x-acs-') || 'host' === $k || 'content-type' === $k) { + $signHeaders[$k] = $v; + } + } + ksort($signHeaders); + $headers = []; + foreach ($request->headers as $k => $v) { + $k = strtolower($k); + if (0 === strpos($k, 'x-acs-') || 'host' === $k || 'content-type' === $k) { + $headers[$k] = trim($v); + } + } + $canonicalHeaderString = ''; + ksort($headers); + foreach ($headers as $k => $v) { + $canonicalHeaderString .= $k . ':' . trim(self::filter($v)) . "\n"; + } + if (empty($canonicalHeaderString)) { + $canonicalHeaderString = "\n"; + } + + $canonicalRequest = $method . "\n" . $canonicalURI . "\n" . $canonicalQueryString . "\n" . + $canonicalHeaderString . "\n" . implode(';', array_keys($signHeaders)) . "\n" . $payload; + $strtosign = $signatureAlgorithm . "\n" . self::hexEncode(self::hash(Utils::toBytes($canonicalRequest), $signatureAlgorithm)); + $signature = self::sign($accessKeySecret, $strtosign, $signatureAlgorithm); + $signature = self::hexEncode($signature); + + return $signatureAlgorithm . + ' Credential=' . $accesskey . + ',SignedHeaders=' . implode(';', array_keys($signHeaders)) . + ',Signature=' . $signature; + } + + public static function sign($secret, $str, $algorithm) + { + $result = ''; + switch ($algorithm) { + case 'ACS3-HMAC-SHA256': + $result = hash_hmac('sha256', $str, $secret, true); + break; + case 'ACS3-HMAC-SM3': + $result = self::hmac_sm3($str, $secret, true); + break; + case 'ACS3-RSA-SHA256': + $privateKey = "-----BEGIN RSA PRIVATE KEY-----\n" . $secret . "\n-----END RSA PRIVATE KEY-----"; + @openssl_sign($str, $result, $privateKey, OPENSSL_ALGO_SHA256); + } + + return Utils::toBytes($result); + } + + /** + * Get encoded path. + * + * @param string $path the raw path + * + * @return string encoded path + */ + public static function getEncodePath($path) + { + $tmp = explode('/', $path); + foreach ($tmp as &$t) { + $t = rawurlencode($t); + } + + return implode('/', $tmp); + } + + /** + * Get encoded param. + * + * @param string $param the raw param + * + * @return string encoded param + */ + public static function getEncodeParam($param) + { + return rawurlencode($param); + } + + private static function getRpcStrToSign($method, $query) + { + ksort($query); + + $params = []; + foreach ($query as $k => $v) { + if (null !== $v) { + $k = rawurlencode($k); + $v = rawurlencode($v); + $params[] = $k . '=' . (string)$v; + } + } + $str = implode('&', $params); + + return $method . '&' . rawurlencode('/') . '&' . rawurlencode($str); + } + + private static function encode($signMethod, $strToSign, $secret) + { + switch ($signMethod) { + case 'HMAC-SHA256': + return base64_encode(hash_hmac('sha256', $strToSign, $secret, true)); + + default: + return base64_encode(hash_hmac('sha1', $strToSign, $secret, true)); + } + } + + /** + * @param array $items + * @param string $delimiter + * @param string $prepend + * + * @return array + */ + private static function flatten($items = [], $delimiter = '.', $prepend = '') + { + $flatten = []; + + foreach ($items as $key => $value) { + $pos = \is_int($key) ? $key + 1 : $key; + + if ($value instanceof Model) { + $value = $value->toMap(); + } elseif (\is_object($value)) { + $value = get_object_vars($value); + } + + if (\is_array($value) && !empty($value)) { + $flatten = array_merge( + $flatten, + self::flatten($value, $delimiter, $prepend . $pos . $delimiter) + ); + } else { + if (\is_bool($value)) { + $value = true === $value ? 'true' : 'false'; + } + $flatten[$prepend . $pos] = $value; + } + } + + return $flatten; + } + + private static function getCanonicalizedHeaders($headers, $prefix = 'x-acs-') + { + ksort($headers); + $str = ''; + foreach ($headers as $k => $v) { + if (0 === strpos(strtolower($k), $prefix)) { + $str .= $k . ':' . trim(self::filter($v)) . "\n"; + } + } + + return $str; + } + + private static function getCanonicalizedResource($pathname, $query) + { + if (0 === \count($query)) { + return $pathname; + } + ksort($query); + $tmp = []; + foreach ($query as $k => $v) { + if (!empty($v)) { + $tmp[] = $k . '=' . $v; + } else { + $tmp[] = $k; + } + } + + return $pathname . '?' . implode('&', $tmp); + } + + private static function parse($input, &$output) + { + if (null === $input || '' === $input) { + $output = []; + } + $recursive = function ($input) use (&$recursive) { + if ($input instanceof Model) { + $input = $input->toMap(); + } elseif (\is_object($input)) { + $input = get_object_vars($input); + } + if (!\is_array($input)) { + return $input; + } + $data = []; + foreach ($input as $k => $v) { + $data[$k] = $recursive($v); + } + + return $data; + }; + $output = $recursive($input); + if (!\is_array($output)) { + $output = [$output]; + } + } + + private static function filter($str) + { + return str_replace(["\t", "\n", "\r", "\f"], '', $str); + } + + private static function hmac_sm3($data, $key, $raw_output = false) + { + $pack = 'H' . \strlen(self::sm3('test')); + $blocksize = 64; + if (\strlen($key) > $blocksize) { + $key = pack($pack, self::sm3($key)); + } + $key = str_pad($key, $blocksize, \chr(0x00)); + $ipad = $key ^ str_repeat(\chr(0x36), $blocksize); + $opad = $key ^ str_repeat(\chr(0x5C), $blocksize); + $hmac = self::sm3($opad . pack($pack, self::sm3($ipad . $data))); + + return $raw_output ? pack($pack, $hmac) : $hmac; + } + + private static function sm3($message) + { + return (new Sm3())->sign($message); + } + + private static function getCanonicalQueryString($query) + { + ksort($query); + + $params = []; + foreach ($query as $k => $v) { + if (null === $v) { + continue; + } + $str = rawurlencode($k); + if ('' !== $v && null !== $v) { + $str .= '=' . rawurlencode($v); + } else { + $str .= '='; + } + $params[] = $str; + } + + return implode('&', $params); + } +} diff --git a/vendor/alibabacloud/openapi-util/tests/Models/SourceModel.php b/vendor/alibabacloud/openapi-util/tests/Models/SourceModel.php new file mode 100644 index 000000000..405cefb97 --- /dev/null +++ b/vendor/alibabacloud/openapi-util/tests/Models/SourceModel.php @@ -0,0 +1,126 @@ + 'Test', + 'empty' => 'empty', + 'bodyObject' => 'body', + 'listObject' => 'list', + ]; + public function validate() {} + public function toMap() { + $res = []; + if (null !== $this->test) { + $res['Test'] = $this->test; + } + if (null !== $this->empty) { + $res['empty'] = $this->empty; + } + if (null !== $this->bodyObject) { + $res['body'] = $this->bodyObject; + } + if (null !== $this->listObject) { + $res['list'] = $this->listObject; + } + if (null !== $this->urlListObject) { + $res['urlList'] = []; + if(null !== $this->urlListObject && is_array($this->urlListObject)){ + $n = 0; + foreach($this->urlListObject as $item){ + $res['urlList'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + return $res; + } + /** + * @param array $map + * @return SourceModel + */ + public static function fromMap($map = []) { + $model = new self(); + if(isset($map['Test'])){ + $model->test = $map['Test']; + } + if(isset($map['empty'])){ + $model->empty = $map['empty']; + } + if(isset($map['body'])){ + $model->bodyObject = $map['body']; + } + if(isset($map['list'])){ + if(!empty($map['list'])){ + $model->listObject = $map['list']; + } + } + if(isset($map['urlList'])){ + if(!empty($map['urlList'])){ + $model->urlListObject = []; + $n = 0; + foreach($map['urlList'] as $item) { + $model->urlListObject[$n++] = null !== $item ? urlListObject::fromMap($item) : $item; + } + } + } + return $model; + } + /** + * @var string + */ + public $test; + + /** + * @var float + */ + public $empty; + + /** + * @var Stream + */ + public $bodyObject; + + /** + * @var Stream[] + */ + public $listObject; + + public $urlListObject; + +} + +class urlListObject extends Model { + protected $_name = [ + 'urlObject' => 'url', + ]; + public function validate() {} + public function toMap() { + $res = []; + if (null !== $this->urlObject) { + $res['url'] = $this->urlObject; + } + return $res; + } + /** + * @param array $map + * @return urlListObject + */ + public static function fromMap($map = []) { + $model = new self(); + if(isset($map['url'])){ + $model->urlObject = $map['url']; + } + return $model; + } + /** + * @var Stream + */ + public $urlObject; + +} + diff --git a/vendor/alibabacloud/openapi-util/tests/Models/TargetModel.php b/vendor/alibabacloud/openapi-util/tests/Models/TargetModel.php new file mode 100644 index 000000000..397aee443 --- /dev/null +++ b/vendor/alibabacloud/openapi-util/tests/Models/TargetModel.php @@ -0,0 +1,125 @@ + 'Test', + 'empty' => 'empty', + 'body' => 'body', + 'list' => 'list', + ]; + public function validate() {} + public function toMap() { + $res = []; + if (null !== $this->test) { + $res['Test'] = $this->test; + } + if (null !== $this->empty) { + $res['empty'] = $this->empty; + } + if (null !== $this->body) { + $res['body'] = $this->body; + } + if (null !== $this->list) { + $res['list'] = $this->list; + } + if (null !== $this->urlList) { + $res['urlList'] = []; + if(null !== $this->urlList && is_array($this->urlList)){ + $n = 0; + foreach($this->urlList as $item){ + $res['urlList'][$n++] = null !== $item ? $item->toMap() : $item; + } + } + } + return $res; + } + /** + * @param array $map + * @return TargetModel + */ + public static function fromMap($map = []) { + $model = new self(); + if(isset($map['Test'])){ + $model->test = $map['Test']; + } + if(isset($map['empty'])){ + $model->empty = $map['empty']; + } + if(isset($map['body'])){ + $model->body = $map['body']; + } + if(isset($map['list'])){ + if(!empty($map['list'])){ + $model->list = $map['list']; + } + } + if(isset($map['urlList'])){ + if(!empty($map['urlList'])){ + $model->urlList = []; + $n = 0; + foreach($map['urlList'] as $item) { + $model->urlList[$n++] = null !== $item ? urlList::fromMap($item) : $item; + } + } + } + return $model; + } + /** + * @var string + */ + public $test; + + /** + * @var float + */ + public $empty; + + /** + * @var Stream + */ + public $body; + + /** + * @var string[] + */ + public $list; + + public $urlList; + +} + +class urlList extends Model { + protected $_name = [ + 'url' => 'url', + ]; + public function validate() {} + public function toMap() { + $res = []; + if (null !== $this->url) { + $res['url'] = $this->url; + } + return $res; + } + /** + * @param array $map + * @return urlList + */ + public static function fromMap($map = []) { + $model = new self(); + if(isset($map['url'])){ + $model->url = $map['url']; + } + return $model; + } + /** + * @var string + */ + public $url; + +} \ No newline at end of file diff --git a/vendor/alibabacloud/openapi-util/tests/OpenApiUtilClientTest.php b/vendor/alibabacloud/openapi-util/tests/OpenApiUtilClientTest.php new file mode 100644 index 000000000..550b67772 --- /dev/null +++ b/vendor/alibabacloud/openapi-util/tests/OpenApiUtilClientTest.php @@ -0,0 +1,501 @@ +a = 'foo'; + + $output = new MockModel(); + OpenApiUtilClient::convert($model, $output); + $this->assertEquals($model->a, $output->a); + + if (\function_exists('\GuzzleHttp\Psr7\stream_for')) { + // @deprecated stream_for will be removed in guzzlehttp/psr7:2.0 + $stream = \GuzzleHttp\Psr7\stream_for('test'); + } else { + $stream = \GuzzleHttp\Psr7\Utils::streamFor('test'); + } + $source = new SourceModel(); + $source->test = 'test'; + $source->bodyObject = $stream; + $source->listObject = [ + $stream + ]; + $urlListObject = new urlListObject(); + $urlListObject->urlObject = $stream; + $source->urlListObject = [ + $urlListObject + ]; + $target = new TargetModel(); + OpenApiUtilClient::convert($source, $target); + $this->assertEquals('test', $target->test); + $this->assertNull($target->empty); + $this->assertNull($target->body); + $this->assertTrue(empty($target->list)); + $this->assertNotNull($target->urlList[0]); + $this->assertNull($target->urlList[0]->url); + } + + public function testGetStringToSign() + { + $request = new Request(); + $request->method = 'GET'; + $request->pathname = '/'; + $request->headers['accept'] = 'application/json'; + + $this->assertEquals("GET\napplication/json\n\n\n\n/", OpenApiUtilClient::getStringToSign($request)); + + $request->headers = [ + 'accept' => 'application/json', + 'content-md5' => 'md5', + 'content-type' => 'application/json', + 'date' => 'date', + ]; + $this->assertEquals("GET\napplication/json\nmd5\napplication/json\ndate\n/", OpenApiUtilClient::getStringToSign($request)); + + $request->headers = [ + 'accept' => 'application/json', + 'content-md5' => 'md5', + 'content-type' => 'application/json', + 'date' => 'date', + 'x-acs-custom-key' => 'any value', + ]; + $this->assertEquals("GET\napplication/json\nmd5\napplication/json\ndate\nx-acs-custom-key:any value\n/", OpenApiUtilClient::getStringToSign($request)); + + $request->query = [ + 'key' => 'val ue with space', + ]; + $this->assertEquals("GET\napplication/json\nmd5\napplication/json\ndate\nx-acs-custom-key:any value\n/?key=val ue with space", OpenApiUtilClient::getStringToSign($request)); + } + + public function testGetROASignature() + { + $this->assertEquals('OmuTAr79tpI6CRoAdmzKRq5lHs0=', OpenApiUtilClient::getROASignature('stringtosign', 'secret')); + } + + public function testToForm() + { + $this->assertEquals('bool=true&client=test&strs.1=str1&strs.2=str2&strs.3=false&tag.key=value', OpenApiUtilClient::toForm([ + 'client' => 'test', + 'tag' => [ + 'key' => 'value', + ], + 'strs' => ['str1', 'str2', false], + 'bool' => true, + 'null' => null, + ])); + } + + public function testGetTimestamp() + { + $date = OpenApiUtilClient::getTimestamp(); + $this->assertEquals(20, \strlen($date)); + } + + public function testQuery() + { + $model = new MockModel(); + $model->a = 'foo'; + $model->c = 'boo'; + $model->r = true; + + $array = [ + 'a' => 'a', + 'b1' => [ + 'a' => 'a', + ], + 'b2' => [ + 'a' => 'a', + ], + 'c' => ['x', 'y', 'z'], + 'd' => [ + $model + ], + 'e' => true, + 'f' => null, + ]; + $this->assertEquals([ + 'a' => 'a', + 'b1.a' => 'a', + 'b2.a' => 'a', + 'c.1' => 'x', + 'c.2' => 'y', + 'c.3' => 'z', + 'd.1.A' => 'foo', + 'd.1.b' => '', + 'd.1.c' => 'boo', + 'd.1.c' => 'boo', + 'd.1.r' => 'true', + 'e' => 'true', + 'f' => null + ], OpenApiUtilClient::query($array)); + } + + public function testGetRPCSignature() + { + $request = new Request(); + $request->pathname = ''; + $request->query = [ + 'query' => 'test', + 'body' => 'test', + ]; + $this->assertEquals('XlUyV4sXjOuX5FnjUz9IF9tm5rU=', OpenApiUtilClient::getRPCSignature($request->query, $request->method, 'secret')); + } + + public function testArrayToStringWithSpecifiedStyle() + { + $data = ['ok', 'test', 2, 3]; + $this->assertEquals( + 'instance.1=ok&instance.2=test&instance.3=2&instance.4=3', + OpenApiUtilClient::arrayToStringWithSpecifiedStyle( + $data, + 'instance', + 'repeatList' + ) + ); + + $this->assertEquals( + '["ok","test",2,3]', + OpenApiUtilClient::arrayToStringWithSpecifiedStyle( + $data, + 'instance', + 'json' + ) + ); + + $test = new ParseModel([ + 'str' => 'A', + 'model' => new ParseModel(['str' => 'sub model']), + 'array' => [1, 2, 3], + ]); + $this->assertEquals( + '{"str":"A","model":{"str":"sub model","model":null,"array":null},"array":[1,2,3]}', + OpenApiUtilClient::arrayToStringWithSpecifiedStyle( + $test, + 'instance', + 'json' + ) + ); + // model item in array + $test = [ + new ParseModel([ + 'str' => 'A', + ]), + ]; + $this->assertEquals( + '[{"str":"A","model":null,"array":null}]', + OpenApiUtilClient::arrayToStringWithSpecifiedStyle( + $test, + 'instance', + 'json' + ) + ); + // model item in map + $test = [ + 'model' => new ParseModel([ + 'str' => 'A', + ]), + ]; + $this->assertEquals( + '{"model":{"str":"A","model":null,"array":null}}', + OpenApiUtilClient::arrayToStringWithSpecifiedStyle( + $test, + 'instance', + 'json' + ) + ); + + $this->assertEquals( + 'ok,test,2,3', + OpenApiUtilClient::arrayToStringWithSpecifiedStyle( + $data, + 'instance', + 'simple' + ) + ); + + $this->assertEquals( + 'ok test 2 3', + OpenApiUtilClient::arrayToStringWithSpecifiedStyle( + $data, + 'instance', + 'spaceDelimited' + ) + ); + + $this->assertEquals( + 'ok|test|2|3', + OpenApiUtilClient::arrayToStringWithSpecifiedStyle( + $data, + 'instance', + 'pipeDelimited' + ) + ); + + $this->assertEquals( + '', + OpenApiUtilClient::arrayToStringWithSpecifiedStyle( + $data, + 'instance', + 'piDelimited' + ) + ); + + $this->assertEquals( + '', + OpenApiUtilClient::arrayToStringWithSpecifiedStyle( + null, + 'instance', + 'pipeDelimited' + ) + ); + } + + public function testParseToArray() + { + $test = $this->parseData(); + $data = $test['data']; + $expected = $test['expected']; + foreach ($data as $index => $item) { + $this->assertEquals($expected[$index], OpenApiUtilClient::parseToArray($item)); + } + } + + public function testParseToMap() + { + $test = $this->parseData(); + $data = $test['data']; + $expected = $test['expected']; + foreach ($data as $index => $item) { + $this->assertEquals($expected[$index], OpenApiUtilClient::parseToMap($item)); + } + } + + public function testGetEndpoint() + { + $endpoint = 'ecs.cn-hangzhou.aliyun.cs.com'; + $useAccelerate = false; + $endpointType = 'public'; + + $this->assertEquals('ecs.cn-hangzhou.aliyun.cs.com', OpenApiUtilClient::getEndpoint($endpoint, $useAccelerate, $endpointType)); + + $endpointType = 'internal'; + $this->assertEquals('ecs-internal.cn-hangzhou.aliyun.cs.com', OpenApiUtilClient::getEndpoint($endpoint, $useAccelerate, $endpointType)); + + $useAccelerate = true; + $endpointType = 'accelerate'; + $this->assertEquals('oss-accelerate.aliyuncs.com', OpenApiUtilClient::getEndpoint($endpoint, $useAccelerate, $endpointType)); + } + + public function testHexEncode() + { + $data = OpenApiUtilClient::hash(Utils::toBytes('test'), 'ACS3-HMAC-SHA256'); + $this->assertEquals( + Utils::toBytes(hex2bin('9f86d081884c7d659a2feaa0c55ad015a3bf4f1b2b0b822cd15d6c15b0f00a08')), + $data + ); + + $data = OpenApiUtilClient::hash(Utils::toBytes('test'), 'ACS3-RSA-SHA256'); + $this->assertEquals( + Utils::toBytes(hex2bin('9f86d081884c7d659a2feaa0c55ad015a3bf4f1b2b0b822cd15d6c15b0f00a08')), + $data + ); + + $data = OpenApiUtilClient::hash(Utils::toBytes('test'), 'ACS3-HMAC-SM3'); + $this->assertEquals( + Utils::toBytes(hex2bin('55e12e91650d2fec56ec74e1d3e4ddbfce2ef3a65890c2a19ecf88a307e76a23')), + $data + ); + + $data = OpenApiUtilClient::hash(Utils::toBytes('test'), 'ACS3-HM-SHA256'); + $this->assertEquals('', Utils::toString($data)); + } + + public function testGetEncodePath() + { + $this->assertEquals( + '/path/%20test', + OpenApiUtilClient::getEncodePath('/path/ test') + ); + } + + public function testGetEncodeParam() + { + $this->assertEquals( + 'a%2Fb%2Fc%2F%20test', + OpenApiUtilClient::getEncodeParam('a/b/c/ test') + ); + } + + public function testGetAuthorization() + { + $request = new Request(); + $request->method = ''; + $request->pathname = ''; + $request->query = [ + 'test' => 'ok', + 'empty' => '', + ]; + $request->headers = [ + 'x-acs-test' => 'http', + 'x-acs-TEST' => 'https', + ]; + + $res = OpenApiUtilClient::getAuthorization($request, 'ACS3-HMAC-SHA256', '55e12e91650d2fec56ec74e1d3e4ddbfce2ef3a65890c2a19ecf88a307e76a23', 'acesskey', 'secret'); + + $this->assertEquals('ACS3-HMAC-SHA256 Credential=acesskey,SignedHeaders=x-acs-test,Signature=0a0f89a45f1ec3537a2d1a1046c71b95513a8f1f02526056968da19b99a5b914', $res); + + $request->query = null; + + $res = OpenApiUtilClient::getAuthorization($request, 'ACS3-HMAC-SHA256', '55e12e91650d2fec56ec74e1d3e4ddbfce2ef3a65890c2a19ecf88a307e76a23', 'acesskey', 'secret'); + + $this->assertEquals('ACS3-HMAC-SHA256 Credential=acesskey,SignedHeaders=x-acs-test,Signature=af6d32deb090ae85a21d7183055cf18dca17751da96979cdf964f8f0853e9dd2', $res); + } + + public function testSign() + { + $this->assertEquals( + 'b9ff646822f41ef647c1416fa2b8408923828abc0464af6706e18db3e8553da8', + OpenApiUtilClient::hexEncode(OpenApiUtilClient::sign('secret', 'source', 'ACS3-HMAC-SM3')) + ); + $this->assertEquals( + '1d93c62698a1c26427265668e79fac099aa26c1df873669599a2fb2f272e64c9', + OpenApiUtilClient::hexEncode(OpenApiUtilClient::sign('secret', 'source', 'ACS3-HMAC-SHA256')) + ); + } + + private function parseData() + { + return [ + 'data' => [ + 'NotArray', + new ParseModel([ + 'str' => 'A', + 'model' => new ParseModel(['str' => 'sub model']), + 'array' => [1, 2, 3], + ]), + [ // model item in array + new ParseModel([ + 'str' => 'A', + ]), + ], + [ // model item in map + 'model' => new ParseModel([ + 'str' => 'A', + ]), + ], + ], + 'expected' => [ + ['NotArray'], + [ + 'str' => 'A', + 'model' => [ + 'str' => 'sub model', + 'model' => null, + 'array' => null, + ], + 'array' => [1, 2, 3], + ], + [ + [ + 'str' => 'A', + 'model' => null, + 'array' => null, + ], + ], + [ + 'model' => [ + 'str' => 'A', + 'model' => null, + 'array' => null, + ], + ], + ], + 'expectedJsonStr' => [ + '["NotArray"]', + 'NotArray', + 'NotArray', + 'NotArray', + ], + ]; + } +} + +class MockModel extends Model +{ + public $a = 'A'; + + public $b = ''; + + public $c = ''; + + public $r; + + public function __construct() + { + $this->_name['a'] = 'A'; + $this->_required['c'] = true; + parent::__construct([]); + } + + public function toMap() + { + $res = []; + if (null !== $this->a) { + $res['A'] = $this->a; + } + if (null !== $this->b) { + $res['b'] = $this->b; + } + if (null !== $this->c) { + $res['c'] = $this->c; + } + if (null !== $this->r) { + $res['r'] = $this->r; + } + return $res; + } + + public static function fromMap($map = []) + { + $model = new self(); + if (isset($map['A'])) { + $model->a = $map['A']; + } + if (isset($map['b'])) { + $model->b = $map['b']; + } + if (isset($map['c'])) { + $model->c = $map['c']; + } + if (isset($map['r'])) { + $model->r = $map['r']; + } + return $model; + } +} + +class ParseModel extends Model +{ + public $str; + public $model; + public $array; +} diff --git a/vendor/alibabacloud/openapi-util/tests/bootstrap.php b/vendor/alibabacloud/openapi-util/tests/bootstrap.php new file mode 100644 index 000000000..c62c4e81b --- /dev/null +++ b/vendor/alibabacloud/openapi-util/tests/bootstrap.php @@ -0,0 +1,3 @@ +setRiskyAllowed(true) + ->setIndent(' ') + ->setRules([ + '@PSR2' => true, + '@PhpCsFixer' => true, + '@Symfony:risky' => true, + 'concat_space' => ['spacing' => 'one'], + 'array_syntax' => ['syntax' => 'short'], + 'array_indentation' => true, + 'combine_consecutive_unsets' => true, + 'method_separation' => true, + 'single_quote' => true, + 'declare_equal_normalize' => true, + 'function_typehint_space' => true, + 'hash_to_slash_comment' => true, + 'include' => true, + 'lowercase_cast' => true, + 'no_multiline_whitespace_before_semicolons' => true, + 'no_leading_import_slash' => true, + 'no_multiline_whitespace_around_double_arrow' => true, + 'no_spaces_around_offset' => true, + 'no_unneeded_control_parentheses' => true, + 'no_unused_imports' => true, + 'no_whitespace_before_comma_in_array' => true, + 'no_whitespace_in_blank_line' => true, + 'object_operator_without_whitespace' => true, + 'single_blank_line_before_namespace' => true, + 'single_class_element_per_statement' => true, + 'space_after_semicolon' => true, + 'standardize_not_equals' => true, + 'ternary_operator_spaces' => true, + 'trailing_comma_in_multiline_array' => true, + 'trim_array_spaces' => true, + 'unary_operator_spaces' => true, + 'whitespace_after_comma_in_array' => true, + 'no_extra_consecutive_blank_lines' => [ + 'curly_brace_block', + 'extra', + 'parenthesis_brace_block', + 'square_brace_block', + 'throw', + 'use', + ], + 'binary_operator_spaces' => [ + 'align_double_arrow' => true, + 'align_equals' => true, + ], + 'braces' => [ + 'allow_single_line_closure' => true, + ], + ]) + ->setFinder( + PhpCsFixer\Finder::create() + ->exclude('vendor') + ->exclude('tests') + ->in(__DIR__) + ); diff --git a/vendor/alibabacloud/tea-utils/README-CN.md b/vendor/alibabacloud/tea-utils/README-CN.md new file mode 100644 index 000000000..07553cab1 --- /dev/null +++ b/vendor/alibabacloud/tea-utils/README-CN.md @@ -0,0 +1,31 @@ +English | [简体中文](README-CN.md) + +![](https://aliyunsdk-pages.alicdn.com/icons/AlibabaCloud.svg) + +## Alibaba Cloud Tea Util for PHP + +## Installation + +### Composer + +```bash +composer require alibabacloud/tea-utils +``` + +## Issues + +[Opening an Issue](https://github.com/aliyun/tea-util/issues/new), Issues not conforming to the guidelines may be closed immediately. + +## Changelog + +Detailed changes for each release are documented in the [release notes](./ChangeLog.txt). + +## References + +* [Latest Release](https://github.com/aliyun/tea-util) + +## License + +[Apache-2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Copyright (c) 2009-present, Alibaba Cloud All rights reserved. diff --git a/vendor/alibabacloud/tea-utils/README.md b/vendor/alibabacloud/tea-utils/README.md new file mode 100644 index 000000000..ef53f6ef1 --- /dev/null +++ b/vendor/alibabacloud/tea-utils/README.md @@ -0,0 +1,31 @@ +[English](README.md) | 简体中文 + +![](https://aliyunsdk-pages.alicdn.com/icons/AlibabaCloud.svg) + +## Alibaba Cloud Tea Util for PHP + +## 安装 + +### Composer + +```bash +composer require alibabacloud/tea-utils +``` + +## 问题 + +[提交 Issue](https://github.com/aliyun/tea-util/issues/new),不符合指南的问题可能会立即关闭。 + +## 发行说明 + +每个版本的详细更改记录在[发行说明](./ChangeLog.txt)中。 + +## 相关 + +* [最新源码](https://github.com/aliyun/tea-util) + +## 许可证 + +[Apache-2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Copyright (c) 2009-present, Alibaba Cloud All rights reserved. diff --git a/vendor/alibabacloud/tea-utils/composer.json b/vendor/alibabacloud/tea-utils/composer.json new file mode 100644 index 000000000..f1178c0fd --- /dev/null +++ b/vendor/alibabacloud/tea-utils/composer.json @@ -0,0 +1,38 @@ +{ + "name": "alibabacloud/tea-utils", + "description": "Alibaba Cloud Tea Utils for PHP", + "type": "library", + "license": "Apache-2.0", + "authors": [ + { + "name": "Alibaba Cloud SDK", + "email": "sdk-team@alibabacloud.com" + } + ], + "support": { + "source": "https://github.com/aliyun/tea-util", + "issues": "https://github.com/aliyun/tea-util/issues" + }, + "require": { + "php": ">5.5", + "alibabacloud/tea": "^3.1" + }, + "autoload": { + "psr-4": { + "AlibabaCloud\\Tea\\Utils\\": "src" + } + }, + "autoload-dev": { + "psr-4": { + "AlibabaCloud\\Tea\\Utils\\Tests\\": "tests" + } + }, + "scripts": { + "fixer": "php-cs-fixer fix ./", + "test": [ + "@clearCache", + "./vendor/bin/phpunit --colors=always" + ], + "clearCache": "rm -rf cache/*" + } +} diff --git a/vendor/alibabacloud/tea-utils/phpunit.xml b/vendor/alibabacloud/tea-utils/phpunit.xml new file mode 100644 index 000000000..a44c1a27a --- /dev/null +++ b/vendor/alibabacloud/tea-utils/phpunit.xml @@ -0,0 +1,18 @@ + + + + + src + + + + + + + + + + tests + + + diff --git a/vendor/alibabacloud/tea-utils/src/Utils.php b/vendor/alibabacloud/tea-utils/src/Utils.php new file mode 100644 index 000000000..13ca84ffc --- /dev/null +++ b/vendor/alibabacloud/tea-utils/src/Utils.php @@ -0,0 +1,600 @@ +isSeekable()) { + $stream->rewind(); + } + + return $stream->getContents(); + } + + /** + * Read data from a readable stream, and parse it by JSON format. + * + * @param StreamInterface $stream the readable stream + * + * @return array the parsed result + */ + public static function readAsJSON($stream) + { + return self::parseJSON(self::readAsString($stream)); + } + + /** + * Generate a nonce string. + * + * @return string the nonce string + */ + public static function getNonce() + { + return md5(uniqid() . uniqid(md5(microtime(true)), true)); + } + + /** + * Get an UTC format string by current date, e.g. 'Thu, 06 Feb 2020 07:32:54 GMT'. + * + * @return string the UTC format string + */ + public static function getDateUTCString() + { + return gmdate('D, d M Y H:i:s T'); + } + + /** + * If not set the real, use default value. + * + * @param string $real + * @param string $default + * + * @return string + */ + public static function defaultString($real, $default = '') + { + return null === $real ? $default : $real; + } + + /** + * If not set the real, use default value. + * + * @param int $real + * @param int $default + * + * @return int the return number + */ + public static function defaultNumber($real, $default = 0) + { + if (null === $real) { + return $default; + } + + return (int) $real; + } + + /** + * Format a map to form string, like a=a%20b%20c. + * + * @param array|object $query + * + * @return string the form string + */ + public static function toFormString($query) + { + if (null === $query) { + return ''; + } + + if (\is_object($query)) { + $query = json_decode(self::toJSONString($query), true); + } + + return str_replace('+', '%20', http_build_query($query)); + } + + /** + * If not set the real, use default value. + * + * @param array|Model $object + * + * @return string the return string + */ + public static function toJSONString($object) + { + if (is_string($object)) { + return $object; + } + + if ($object instanceof Model) { + $object = $object->toMap(); + } + + return json_encode($object, JSON_UNESCAPED_UNICODE + JSON_UNESCAPED_SLASHES); + } + + /** + * Check the string is empty? + * + * @param string $val + * + * @return bool if string is null or zero length, return true + * + * @deprecated + */ + public static function _empty($val) + { + return empty($val); + } + + /** + * Check the string is empty? + * + * @param string $val + * + * @return bool if string is null or zero length, return true + * + * @deprecated + */ + public static function emptyWithSuffix($val) + { + return empty($val); + } + + /** + * Check the string is empty? + * + * @param string $val + * + * @return bool if string is null or zero length, return true + */ + public static function empty_($val) + { + return empty($val); + } + + /** + * Check one string equals another one? + * + * @param int $left + * @param int $right + * + * @return bool if equals, return true + */ + public static function equalString($left, $right) + { + return $left === $right; + } + + /** + * Check one number equals another one? + * + * @param int $left + * @param int $right + * + * @return bool if equals, return true + */ + public static function equalNumber($left, $right) + { + return $left === $right; + } + + /** + * Check one value is unset. + * + * @param mixed $value + * + * @return bool if unset, return true + */ + public static function isUnset(&$value = null) + { + return !isset($value) || null === $value; + } + + /** + * Stringify the value of map. + * + * @param array $map + * + * @return array the new stringified map + */ + public static function stringifyMapValue($map) + { + if (null === $map) { + return []; + } + foreach ($map as &$node) { + if (is_numeric($node)) { + $node = (string) $node; + } elseif (null === $node) { + $node = ''; + } elseif (\is_bool($node)) { + $node = true === $node ? 'true' : 'false'; + } elseif (\is_object($node)) { + $node = json_decode(json_encode($node), true); + } + } + + return $map; + } + + /** + * Anyify the value of map. + * + * @param array $m + * + * @return array the new anyfied map + */ + public static function anyifyMapValue($m) + { + return $m; + } + + /** + * Assert a value, if it is a boolean, return it, otherwise throws. + * + * @param mixed $value + * + * @return bool the boolean value + */ + public static function assertAsBoolean($value) + { + if (\is_bool($value)) { + return $value; + } + + throw new \InvalidArgumentException('It is not a boolean value.'); + } + + /** + * Assert a value, if it is a string, return it, otherwise throws. + * + * @param mixed $value + * + * @return string the string value + */ + public static function assertAsString($value) + { + if (\is_string($value)) { + return $value; + } + + throw new \InvalidArgumentException('It is not a string value.'); + } + + private static function is_bytes($value) + { + if (!\is_array($value)) { + return false; + } + $i = 0; + foreach ($value as $k => $ord) { + if ($k !== $i) { + return false; + } + if (!\is_int($ord)) { + return false; + } + if ($ord < 0 || $ord > 255) { + return false; + } + ++$i; + } + + return true; + } + + /** + * Assert a value, if it is a bytes, return it, otherwise throws. + * + * @param mixed $value + * + * @return bytes the bytes value + */ + public static function assertAsBytes($value) + { + if (self::is_bytes($value)) { + return $value; + } + + throw new \InvalidArgumentException('It is not a bytes value.'); + } + + /** + * Assert a value, if it is a number, return it, otherwise throws. + * + * @param mixed $value + * + * @return int the number value + */ + public static function assertAsNumber($value) + { + if (\is_numeric($value)) { + return $value; + } + + throw new \InvalidArgumentException('It is not a number value.'); + } + + /** + * Assert a value, if it is a integer, return it, otherwise throws + * @param mixed $value + * @return int the integer value + */ + public static function assertAsInteger($value){ + if (\is_int($value)) { + return $value; + } + + throw new \InvalidArgumentException('It is not a int value.'); + } + + /** + * Assert a value, if it is a map, return it, otherwise throws. + * + * @param $any + * + * @return array the map value + */ + public static function assertAsMap($any) + { + if (\is_array($any)) { + return $any; + } + + throw new \InvalidArgumentException('It is not a map value.'); + } + + public static function assertAsArray($any){ + if (\is_array($any)) { + return $any; + } + + throw new \InvalidArgumentException('It is not a array value.'); + } + + /** + * Get user agent, if it userAgent is not null, splice it with defaultUserAgent and return, otherwise return + * defaultUserAgent. + * + * @param string $userAgent + * + * @return string the string value + */ + public static function getUserAgent($userAgent = '') + { + if (empty(self::$defaultUserAgent)) { + self::$defaultUserAgent = sprintf('AlibabaCloud (%s; %s) PHP/%s Core/3.1 TeaDSL/1', PHP_OS, \PHP_SAPI, PHP_VERSION); + } + if (!empty($userAgent)) { + return self::$defaultUserAgent . ' ' . $userAgent; + } + + return self::$defaultUserAgent; + } + + /** + * If the code between 200 and 300, return true, or return false. + * + * @param int $code + * + * @return bool + */ + public static function is2xx($code) + { + return $code >= 200 && $code < 300; + } + + /** + * If the code between 300 and 400, return true, or return false. + * + * @param int $code + * + * @return bool + */ + public static function is3xx($code) + { + return $code >= 300 && $code < 400; + } + + /** + * If the code between 400 and 500, return true, or return false. + * + * @param int $code + * + * @return bool + */ + public static function is4xx($code) + { + return $code >= 400 && $code < 500; + } + + /** + * If the code between 500 and 600, return true, or return false. + * + * @param int $code + * + * @return bool + */ + public static function is5xx($code) + { + return $code >= 500 && $code < 600; + } + + /** + * Validate model. + * + * @param Model $model + */ + public static function validateModel($model) + { + if (null !== $model) { + $model->validate(); + } + } + + /** + * Model transforms to map[string]any. + * + * @param Model $model + * + * @return array + */ + public static function toMap($model) + { + if (null === $model) { + return []; + } + $map = $model->toMap(); + $names = $model->getName(); + $vars = get_object_vars($model); + foreach ($vars as $k => $v) { + if (false !== strpos($k, 'Shrink') && !isset($names[$k])) { + // A field that has the suffix `Shrink` and is not a Model class property. + $targetKey = ucfirst(substr($k, 0, \strlen($k) - 6)); + if (isset($map[$targetKey])) { + // $targetKey exists in $map. + $map[$targetKey] = $v; + } + } + } + + return $map; + } + + /** + * Suspends the current thread for the specified number of milliseconds. + * + * @param int $millisecond + */ + public static function sleep($millisecond) + { + usleep($millisecond * 1000); + } + + /** + * Transform input as array. + * + * @param mixed $input + * + * @return array + */ + public static function toArray($input) + { + if (\is_array($input)) { + foreach ($input as $k => &$v) { + $v = self::toArray($v); + } + } elseif ($input instanceof Model) { + $input = $input->toMap(); + foreach ($input as $k => &$v) { + $v = self::toArray($v); + } + } + + return $input; + } + + /** + * Assert a value, if it is a readable, return it, otherwise throws. + * + * @param mixed $value + * + * @return Stream the readable value + */ + public static function assertAsReadable($value) + { + if (\is_string($value)) { + return new Stream( + fopen('data://text/plain;base64,' . + base64_encode($value), 'r') + ); + } + if ($value instanceof Stream) { + return $value; + } + + throw new \InvalidArgumentException('It is not a stream value.'); + } +} diff --git a/vendor/alibabacloud/tea-utils/src/Utils/RuntimeOptions.php b/vendor/alibabacloud/tea-utils/src/Utils/RuntimeOptions.php new file mode 100644 index 000000000..de107fb0f --- /dev/null +++ b/vendor/alibabacloud/tea-utils/src/Utils/RuntimeOptions.php @@ -0,0 +1,261 @@ + 'autoretry', + 'ignoreSSL' => 'ignoreSSL', + 'key' => 'key', + 'cert' => 'cert', + 'ca' => 'ca', + 'maxAttempts' => 'max_attempts', + 'backoffPolicy' => 'backoff_policy', + 'backoffPeriod' => 'backoff_period', + 'readTimeout' => 'readTimeout', + 'connectTimeout' => 'connectTimeout', + 'httpProxy' => 'httpProxy', + 'httpsProxy' => 'httpsProxy', + 'noProxy' => 'noProxy', + 'maxIdleConns' => 'maxIdleConns', + 'localAddr' => 'localAddr', + 'socks5Proxy' => 'socks5Proxy', + 'socks5NetWork' => 'socks5NetWork', + 'keepAlive' => 'keepAlive', + ]; + public function validate() {} + public function toMap() { + $res = []; + if (null !== $this->autoretry) { + $res['autoretry'] = $this->autoretry; + } + if (null !== $this->ignoreSSL) { + $res['ignoreSSL'] = $this->ignoreSSL; + } + if (null !== $this->key) { + $res['key'] = $this->key; + } + if (null !== $this->cert) { + $res['cert'] = $this->cert; + } + if (null !== $this->ca) { + $res['ca'] = $this->ca; + } + if (null !== $this->maxAttempts) { + $res['max_attempts'] = $this->maxAttempts; + } + if (null !== $this->backoffPolicy) { + $res['backoff_policy'] = $this->backoffPolicy; + } + if (null !== $this->backoffPeriod) { + $res['backoff_period'] = $this->backoffPeriod; + } + if (null !== $this->readTimeout) { + $res['readTimeout'] = $this->readTimeout; + } + if (null !== $this->connectTimeout) { + $res['connectTimeout'] = $this->connectTimeout; + } + if (null !== $this->httpProxy) { + $res['httpProxy'] = $this->httpProxy; + } + if (null !== $this->httpsProxy) { + $res['httpsProxy'] = $this->httpsProxy; + } + if (null !== $this->noProxy) { + $res['noProxy'] = $this->noProxy; + } + if (null !== $this->maxIdleConns) { + $res['maxIdleConns'] = $this->maxIdleConns; + } + if (null !== $this->localAddr) { + $res['localAddr'] = $this->localAddr; + } + if (null !== $this->socks5Proxy) { + $res['socks5Proxy'] = $this->socks5Proxy; + } + if (null !== $this->socks5NetWork) { + $res['socks5NetWork'] = $this->socks5NetWork; + } + if (null !== $this->keepAlive) { + $res['keepAlive'] = $this->keepAlive; + } + return $res; + } + /** + * @param array $map + * @return RuntimeOptions + */ + public static function fromMap($map = []) { + $model = new self(); + if(isset($map['autoretry'])){ + $model->autoretry = $map['autoretry']; + } + if(isset($map['ignoreSSL'])){ + $model->ignoreSSL = $map['ignoreSSL']; + } + if(isset($map['key'])){ + $model->key = $map['key']; + } + if(isset($map['cert'])){ + $model->cert = $map['cert']; + } + if(isset($map['ca'])){ + $model->ca = $map['ca']; + } + if(isset($map['max_attempts'])){ + $model->maxAttempts = $map['max_attempts']; + } + if(isset($map['backoff_policy'])){ + $model->backoffPolicy = $map['backoff_policy']; + } + if(isset($map['backoff_period'])){ + $model->backoffPeriod = $map['backoff_period']; + } + if(isset($map['readTimeout'])){ + $model->readTimeout = $map['readTimeout']; + } + if(isset($map['connectTimeout'])){ + $model->connectTimeout = $map['connectTimeout']; + } + if(isset($map['httpProxy'])){ + $model->httpProxy = $map['httpProxy']; + } + if(isset($map['httpsProxy'])){ + $model->httpsProxy = $map['httpsProxy']; + } + if(isset($map['noProxy'])){ + $model->noProxy = $map['noProxy']; + } + if(isset($map['maxIdleConns'])){ + $model->maxIdleConns = $map['maxIdleConns']; + } + if(isset($map['localAddr'])){ + $model->localAddr = $map['localAddr']; + } + if(isset($map['socks5Proxy'])){ + $model->socks5Proxy = $map['socks5Proxy']; + } + if(isset($map['socks5NetWork'])){ + $model->socks5NetWork = $map['socks5NetWork']; + } + if(isset($map['keepAlive'])){ + $model->keepAlive = $map['keepAlive']; + } + return $model; + } + /** + * @description whether to try again + * @var bool + */ + public $autoretry; + + /** + * @description ignore SSL validation + * @var bool + */ + public $ignoreSSL; + + /** + * @description privite key for client certificate + * @var string + */ + public $key; + + /** + * @description client certificate + * @var string + */ + public $cert; + + /** + * @description server certificate + * @var string + */ + public $ca; + + /** + * @description maximum number of retries + * @var int + */ + public $maxAttempts; + + /** + * @description backoff policy + * @var string + */ + public $backoffPolicy; + + /** + * @description backoff period + * @var int + */ + public $backoffPeriod; + + /** + * @description read timeout + * @var int + */ + public $readTimeout; + + /** + * @description connect timeout + * @var int + */ + public $connectTimeout; + + /** + * @description http proxy url + * @var string + */ + public $httpProxy; + + /** + * @description https Proxy url + * @var string + */ + public $httpsProxy; + + /** + * @description agent blacklist + * @var string + */ + public $noProxy; + + /** + * @description maximum number of connections + * @var int + */ + public $maxIdleConns; + + /** + * @description local addr + * @var string + */ + public $localAddr; + + /** + * @description SOCKS5 proxy + * @var string + */ + public $socks5Proxy; + + /** + * @description SOCKS5 netWork + * @var string + */ + public $socks5NetWork; + + /** + * @description whether to enable keep-alive + * @var bool + */ + public $keepAlive; + +} diff --git a/vendor/alibabacloud/tea-utils/tests/UtilsTest.php b/vendor/alibabacloud/tea-utils/tests/UtilsTest.php new file mode 100644 index 000000000..3e210e2ad --- /dev/null +++ b/vendor/alibabacloud/tea-utils/tests/UtilsTest.php @@ -0,0 +1,543 @@ +assertEquals([ + 115, 116, 114, 105, 110, 103, + ], Utils::toBytes('string')); + $this->assertEquals([ + 115, 116, 114, 105, 110, 103, + ], Utils::toBytes([ + 115, 116, 114, 105, 110, 103, + ])); + } + + public function testToString() + { + $this->assertEquals('string', Utils::toString([ + 115, 116, 114, 105, 110, 103, + ])); + $this->assertEquals('string', Utils::toString('string')); + } + + public function testParseJSON() + { + $this->assertEquals([ + 'a' => 'b', + ], Utils::parseJSON('{"a":"b"}')); + } + + public function testReadAsBytes() + { + $bytes = Utils::readAsBytes($this->getStream()); + $this->assertEquals(123, $bytes[0]); + } + + public function testReadAsString() + { + $string = Utils::readAsString($this->getStream()); + $this->assertEquals($string[0], '{'); + } + + public function testReadAsJSON() + { + $result = Utils::readAsJSON($this->getStream()); + $this->assertEquals('http://httpbin.org/get', $result['url']); + } + + public function testGetNonce() + { + $nonce1 = Utils::getNonce(); + $nonce2 = Utils::getNonce(); + + $this->assertNotEquals($nonce1, $nonce2); + } + + public function testGetDateUTCString() + { + $gmdate = Utils::getDateUTCString(); + $now = time(); + $this->assertTrue(abs($now - strtotime($gmdate)) <= 1); + } + + public function testDefaultString() + { + $this->assertEquals('', Utils::defaultString(null)); + $this->assertEquals('default', Utils::defaultString(null, 'default')); + $this->assertEquals('real', Utils::defaultString('real', 'default')); + } + + public function testDefaultNumber() + { + $this->assertEquals(0, Utils::defaultNumber(null)); + $this->assertEquals(0, Utils::defaultNumber(0, 3)); + $this->assertEquals(404, Utils::defaultNumber(null, 404)); + $this->assertEquals(200, Utils::defaultNumber(200, 404)); + } + + public function testToFormString() + { + $query = [ + 'foo' => 'bar', + 'empty' => '', + 'a' => null, + 'withWhiteSpace' => 'a b', + ]; + $this->assertEquals('foo=bar&empty=&withWhiteSpace=a%20b', Utils::toFormString($query)); + + $object = json_decode(json_encode($query)); + $this->assertEquals('foo=bar&empty=&withWhiteSpace=a%20b', Utils::toFormString($object)); + } + + public function testToJSONString() + { + $object = new \stdClass(); + $this->assertJson(Utils::toJSONString($object)); + $this->assertEquals('[]', Utils::toJSONString([])); + $this->assertEquals('["foo"]', Utils::toJSONString(['foo'])); + $this->assertEquals( + '{"str":"test","number":1,"bool":false,"null":null,"chinese":"中文","http":"https://aliyun.com:8080/zh/中文.html"}', + Utils::toJSONString([ + 'str' => 'test', + 'number' => 1, + 'bool' => FALSE, + 'null' => null, + 'chinese' => '中文', + 'http' => 'https://aliyun.com:8080/zh/中文.html', + ]) + ); + $this->assertEquals('1', Utils::toJSONString(1)); + $this->assertEquals('true', Utils::toJSONString(TRUE)); + $this->assertEquals('null', Utils::toJSONString(null)); + } + + public function testEmpty() + { + $this->assertTrue(Utils::_empty('')); + $this->assertFalse(Utils::_empty('not empty')); + } + + public function testEqualString() + { + $this->assertTrue(Utils::equalString('a', 'a')); + $this->assertFalse(Utils::equalString('a', 'b')); + } + + public function testEqualNumber() + { + $this->assertTrue(Utils::equalNumber(1, 1)); + $this->assertFalse(Utils::equalNumber(1, 2)); + } + + public function testIsUnset() + { + $this->assertTrue(Utils::isUnset($a)); + $b = 1; + $this->assertFalse(Utils::isUnset($b)); + } + + public function testStringifyMapValue() + { + $this->assertEquals([], Utils::stringifyMapValue(null)); + $this->assertEquals([ + 'foo' => 'bar', + 'null' => '', + 'true' => 'true', + 'false' => 'false', + 'number' => '1000', + ], Utils::stringifyMapValue([ + 'foo' => 'bar', + 'null' => null, + 'true' => true, + 'false' => false, + 'number' => 1000, + ])); + } + + public function testAnyifyMapValue() + { + $this->assertEquals([ + 'foo' => 'bar', + 'null' => null, + 'true' => true, + 'false' => false, + 'number' => 1000, + ], Utils::anyifyMapValue([ + 'foo' => 'bar', + 'null' => null, + 'true' => true, + 'false' => false, + 'number' => 1000, + ])); + } + + public function testAssertAsBoolean() + { + $this->expectException(\InvalidArgumentException::class); + $this->expectExceptionMessage('It is not a boolean value.'); + Utils::assertAsBoolean('true'); + + try { + $map = true; + $this->assertEquals($map, Utils::assertAsBoolean($map)); + } catch (\Exception $e) { + // should not be here + $this->assertTrue(false); + } + } + + public function testAssertAsString() + { + $this->expectException(\InvalidArgumentException::class); + $this->expectExceptionMessage('It is not a string value.'); + Utils::assertAsString(123); + + try { + $map = '123'; + $this->assertEquals($map, Utils::assertAsString($map)); + } catch (\Exception $e) { + // should not be here + $this->assertTrue(false); + } + } + + public function testAssertAsBytes() + { + $this->expectException(\InvalidArgumentException::class); + $this->expectExceptionMessage('It is not a bytes value.'); + // failed because $var is not array + Utils::assertAsBytes('test'); + // failed because $var is map not array + Utils::assertAsBytes(['foo' => 1]); + // failed because item value is not int + Utils::assertAsBytes(['1']); + // failed because item value is out off range + Utils::assertAsBytes([256]); + + try { + // success + $map = [1, 2, 3]; + $this->assertEquals($map, Utils::assertAsBytes($map)); + $this->assertEquals([ + 115, 116, 114, 105, 110, 103, + ], Utils::assertAsBytes(Utils::toBytes('string'))); + } catch (\Exception $e) { + // should not be here + $this->assertTrue(false); + } + } + + public function testAssertAsNumber() + { + $this->expectException(\InvalidArgumentException::class); + $this->expectExceptionMessage('It is not a number value.'); + Utils::assertAsNumber('is not number'); + + try { + $map = 123; + $this->assertEquals($map, Utils::assertAsNumber($map)); + } catch (\Exception $e) { + // should not be here + $this->assertTrue(false); + } + } + + public function testAssertAsInteger() + { + $this->expectException(\InvalidArgumentException::class); + $this->expectExceptionMessage('It is not a int value.'); + Utils::assertAsInteger('is not int'); + + try { + $map = 123; + $this->assertEquals($map, Utils::assertAsInteger($map)); + } catch (\Exception $e) { + // should not be here + $this->assertTrue(false); + } + } + + public function testAssertAsMap() + { + $this->expectException(\InvalidArgumentException::class); + $this->expectExceptionMessage('It is not a map value.'); + Utils::assertAsMap('is not array'); + + try { + $map = ['foo' => 'bar']; + $this->assertEquals($map, Utils::assertAsMap($map)); + } catch (\Exception $e) { + // should not be here + $this->assertTrue(false); + } + } + + public function testAssertAsArray() + { + $this->expectException(\InvalidArgumentException::class); + $this->expectExceptionMessage('It is not a array value.'); + Utils::assertAsArray('is not array'); + + try { + $map = ['foo']; + $this->assertEquals($map, Utils::assertAsArray($map)); + } catch (\Exception $e) { + // should not be here + $this->assertTrue(false); + } + } + + public function testGetUserAgent() + { + $this->assertTrue(false !== strpos(Utils::getUserAgent('CustomUserAgent'), 'CustomUserAgent')); + } + + public function testIs2xx() + { + $this->assertTrue(Utils::is2xx(200)); + $this->assertFalse(Utils::is2xx(300)); + } + + public function testIs3xx() + { + $this->assertTrue(Utils::is3xx(300)); + $this->assertFalse(Utils::is3xx(400)); + } + + public function testIs4xx() + { + $this->assertTrue(Utils::is4xx(400)); + $this->assertFalse(Utils::is4xx(500)); + } + + public function testIs5xx() + { + $this->assertTrue(Utils::is5xx(500)); + $this->assertFalse(Utils::is5xx(600)); + } + + public function testToMap() + { + $from = new RequestTest(); + $from->query = new RequestTestQuery([ + 'booleanParamInQuery' => true, + 'mapParamInQuery' => [1, 2, 3], + ]); + $this->assertTrue($from->query->booleanParamInQuery); + $this->assertEquals([1, 2, 3], $from->query->mapParamInQuery); + + $target = new RequestShrinkTest([]); + $this->convert($from, $target); + $this->assertEquals([ + 'BooleanParamInQuery' => true, + 'MapParamInQuery' => [1, 2, 3], + ], $target->query->toMap()); + + $target->query->mapParamInQueryShrink = json_encode($from->query->mapParamInQuery); + $this->assertEquals([ + 'BooleanParamInQuery' => true, + 'MapParamInQuery' => '[1,2,3]', + ], Utils::toMap($target->query)); + } + + public function testSleep() + { + $before = microtime(true) * 1000; + Utils::sleep(1000); + $after = microtime(true) * 1000; + $sub = $after - $before; + $this->assertTrue(990 <= $sub && $sub <= 1100); + } + + public function testToArray() + { + $model = new RequestTest(); + $model->query = 'foo'; + $this->assertEquals([ + ['query' => 'foo'], + ], Utils::toArray([$model])); + + $subModel = new RequestTest(); + $subModel->query = 'bar'; + $model->query = $subModel; + $this->assertEquals([ + ['query' => ['query' => 'bar']], + ], Utils::toArray([$model])); + } + + public function testAssertAsReadable() + { + $s0 = Utils::assertAsReadable('string content'); + $this->assertTrue($s0 instanceof Stream); + + $s1 = Utils::assertAsReadable($s0); + $this->assertEquals($s1, $s0); + + $this->expectException(\InvalidArgumentException::class); + $this->expectExceptionMessage('It is not a stream value.'); + Utils::assertAsReadable(0); + } + + public function testRuntimeOptions() + { + $opts = new RuntimeOptions([ + "autoretry" => false, + "ignoreSSL" => false, + "key" => "key", + "cert" => "cert", + "ca" => "ca", + "maxAttempts" => 3, + "backoffPolicy" => "backoffPolicy", + "backoffPeriod" => 10, + "readTimeout" => 3000, + "connectTimeout" => 3000, + "httpProxy" => "httpProxy", + "httpsProxy" => "httpsProxy", + "noProxy" => "noProxy", + "maxIdleConns" => 300, + "keepAlive" => true, + ]); + $this->assertEquals(false, $opts->autoretry); + $this->assertEquals(false, $opts->ignoreSSL); + $this->assertEquals("key", $opts->key); + $this->assertEquals("cert", $opts->cert); + $this->assertEquals("ca", $opts->ca); + $this->assertEquals(3, $opts->maxAttempts); + $this->assertEquals("backoffPolicy", $opts->backoffPolicy); + $this->assertEquals(10, $opts->backoffPeriod); + $this->assertEquals(3000, $opts->readTimeout); + $this->assertEquals(3000, $opts->connectTimeout); + $this->assertEquals("httpProxy", $opts->httpProxy); + $this->assertEquals("httpsProxy", $opts->httpsProxy); + $this->assertEquals("noProxy", $opts->noProxy); + $this->assertEquals(300, $opts->maxIdleConns); + $this->assertEquals(true, $opts->keepAlive); + } + + private function convert($body, &$content) + { + $class = new \ReflectionClass($body); + foreach ($class->getProperties(\ReflectionProperty::IS_PUBLIC) as $property) { + $name = $property->getName(); + if (!$property->isStatic()) { + $value = $property->getValue($body); + if ($value instanceof StreamInterface) { + continue; + } + $content->{$name} = $value; + } + } + } +} + +/** + * @internal + * @coversNothing + */ +class RequestTest extends Model +{ + /** + * @var RequestTestQuery + */ + public $query; +} + +/** + * @internal + * @coversNothing + */ +class RequestShrinkTest extends Model +{ + /** + * @var RequestTestShrinkQuery + */ + public $query; +} + +class RequestTestQuery extends Model +{ + /** + * @description test + * + * @var bool + */ + public $booleanParamInQuery; + + /** + * @description test + * + * @var array + */ + public $mapParamInQuery; + protected $_name = [ + 'booleanParamInQuery' => 'BooleanParamInQuery', + 'mapParamInQuery' => 'MapParamInQuery', + ]; + + public function toMap() + { + $res = []; + if (null !== $this->booleanParamInQuery) { + $res['BooleanParamInQuery'] = $this->booleanParamInQuery; + } + if (null !== $this->mapParamInQuery) { + $res['MapParamInQuery'] = $this->mapParamInQuery; + } + + return $res; + } +} + +class RequestTestShrinkQuery extends Model +{ + /** + * @description test + * + * @var float + */ + public $booleanParamInQuery; + + /** + * @description test + * + * @var string + */ + public $mapParamInQueryShrink; + protected $_name = [ + 'booleanParamInQuery' => 'BooleanParamInQuery', + 'mapParamInQueryShrink' => 'MapParamInQuery', + ]; + + public function toMap() + { + $res = []; + if (null !== $this->booleanParamInQuery) { + $res['BooleanParamInQuery'] = $this->booleanParamInQuery; + } + if (null !== $this->mapParamInQueryShrink) { + $res['MapParamInQuery'] = $this->mapParamInQueryShrink; + } + + return $res; + } +} diff --git a/vendor/alibabacloud/tea-utils/tests/bootstrap.php b/vendor/alibabacloud/tea-utils/tests/bootstrap.php new file mode 100644 index 000000000..c62c4e81b --- /dev/null +++ b/vendor/alibabacloud/tea-utils/tests/bootstrap.php @@ -0,0 +1,3 @@ +setRiskyAllowed(true) + ->setIndent(' ') + ->setRules([ + '@PSR2' => true, + '@PhpCsFixer' => true, + '@Symfony:risky' => true, + 'concat_space' => ['spacing' => 'one'], + 'array_syntax' => ['syntax' => 'short'], + 'array_indentation' => true, + 'combine_consecutive_unsets' => true, + 'method_separation' => true, + 'single_quote' => true, + 'declare_equal_normalize' => true, + 'function_typehint_space' => true, + 'hash_to_slash_comment' => true, + 'include' => true, + 'lowercase_cast' => true, + 'no_multiline_whitespace_before_semicolons' => true, + 'no_leading_import_slash' => true, + 'no_multiline_whitespace_around_double_arrow' => true, + 'no_spaces_around_offset' => true, + 'no_unneeded_control_parentheses' => true, + 'no_unused_imports' => true, + 'no_whitespace_before_comma_in_array' => true, + 'no_whitespace_in_blank_line' => true, + 'object_operator_without_whitespace' => true, + 'single_blank_line_before_namespace' => true, + 'single_class_element_per_statement' => true, + 'space_after_semicolon' => true, + 'standardize_not_equals' => true, + 'ternary_operator_spaces' => true, + 'trailing_comma_in_multiline_array' => true, + 'trim_array_spaces' => true, + 'unary_operator_spaces' => true, + 'whitespace_after_comma_in_array' => true, + 'no_extra_consecutive_blank_lines' => [ + 'curly_brace_block', + 'extra', + 'parenthesis_brace_block', + 'square_brace_block', + 'throw', + 'use', + ], + 'binary_operator_spaces' => [ + 'align_double_arrow' => true, + 'align_equals' => true, + ], + 'braces' => [ + 'allow_single_line_closure' => true, + ], + ]) + ->setFinder( + PhpCsFixer\Finder::create() + ->exclude('vendor') + ->exclude('tests') + ->in(__DIR__) + ); diff --git a/vendor/alibabacloud/tea-xml/README-CN.md b/vendor/alibabacloud/tea-xml/README-CN.md new file mode 100644 index 000000000..0ac19d8a7 --- /dev/null +++ b/vendor/alibabacloud/tea-xml/README-CN.md @@ -0,0 +1,31 @@ +English | [简体中文](README-CN.md) + +![](https://aliyunsdk-pages.alicdn.com/icons/AlibabaCloud.svg) + +## Alibaba Cloud Tea XML Library for PHP + +## Installation + +### Composer + +```bash +composer require alibabacloud/tea-xml +``` + +## Issues + +[Opening an Issue](https://github.com/aliyun/tea-xml/issues/new), Issues not conforming to the guidelines may be closed immediately. + +## Changelog + +Detailed changes for each release are documented in the [release notes](./ChangeLog.txt). + +## References + +* [Latest Release](https://github.com/aliyun/tea-xml) + +## License + +[Apache-2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Copyright (c) 2009-present, Alibaba Cloud All rights reserved. diff --git a/vendor/alibabacloud/tea-xml/README.md b/vendor/alibabacloud/tea-xml/README.md new file mode 100644 index 000000000..b0f3ea01d --- /dev/null +++ b/vendor/alibabacloud/tea-xml/README.md @@ -0,0 +1,31 @@ +[English](README.md) | 简体中文 + +![](https://aliyunsdk-pages.alicdn.com/icons/AlibabaCloud.svg) + +## Alibaba Cloud Tea XML Library for PHP + +## 安装 + +### Composer + +```bash +composer require alibabacloud/tea-xml +``` + +## 问题 + +[提交 Issue](https://github.com/aliyun/tea-xml/issues/new),不符合指南的问题可能会立即关闭。 + +## 发行说明 + +每个版本的详细更改记录在[发行说明](./ChangeLog.txt)中。 + +## 相关 + +* [最新源码](https://github.com/aliyun/tea-xml) + +## 许可证 + +[Apache-2.0](http://www.apache.org/licenses/LICENSE-2.0) + +Copyright (c) 2009-present, Alibaba Cloud All rights reserved. diff --git a/vendor/alibabacloud/tea-xml/composer.json b/vendor/alibabacloud/tea-xml/composer.json new file mode 100644 index 000000000..5322b0448 --- /dev/null +++ b/vendor/alibabacloud/tea-xml/composer.json @@ -0,0 +1,44 @@ +{ + "name": "alibabacloud/tea-xml", + "description": "Alibaba Cloud Tea XML Library for PHP", + "type": "library", + "license": "Apache-2.0", + "authors": [ + { + "name": "Alibaba Cloud SDK", + "email": "sdk-team@alibabacloud.com" + } + ], + "require": { + "php": ">5.5" + }, + "require-dev": { + "phpunit/phpunit": "*", + "symfony/var-dumper": "*" + }, + "autoload": { + "psr-4": { + "AlibabaCloud\\Tea\\XML\\": "src" + } + }, + "autoload-dev": { + "psr-4": { + "AlibabaCloud\\Tea\\XML\\Tests\\": "tests" + } + }, + "scripts": { + "fixer": "php-cs-fixer fix ./", + "test": [ + "@clearCache", + "phpunit --colors=always" + ], + "clearCache": "rm -rf cache/*" + }, + "config": { + "sort-packages": true, + "preferred-install": "dist", + "optimize-autoloader": true + }, + "prefer-stable": true, + "minimum-stability": "dev" +} diff --git a/vendor/alibabacloud/tea-xml/phpunit.xml b/vendor/alibabacloud/tea-xml/phpunit.xml new file mode 100644 index 000000000..d43dde9f6 --- /dev/null +++ b/vendor/alibabacloud/tea-xml/phpunit.xml @@ -0,0 +1,32 @@ + + + + + + tests + + + ./tests + + + + + + integration + + + + + + + + + + + + ./src + + + diff --git a/vendor/alibabacloud/tea-xml/src/ArrayToXml.php b/vendor/alibabacloud/tea-xml/src/ArrayToXml.php new file mode 100644 index 000000000..d811c6324 --- /dev/null +++ b/vendor/alibabacloud/tea-xml/src/ArrayToXml.php @@ -0,0 +1,151 @@ +version = $xmlVersion; + $this->encoding = $xmlEncoding; + } + + /** + * Build an XML Data Set. + * + * @param array $data Associative Array containing values to be parsed into an XML Data Set(s) + * @param string $startElement Root Opening Tag, default data + * + * @return string XML String containing values + * @return mixed Boolean false on failure, string XML result on success + */ + public function buildXML($data, $startElement = 'data') + { + if (!\is_array($data)) { + $err = 'Invalid variable type supplied, expected array not found on line ' . __LINE__ . ' in Class: ' . __CLASS__ . ' Method: ' . __METHOD__; + trigger_error($err); + + return false; //return false error occurred + } + $xml = new XmlWriter(); + $xml->openMemory(); + $xml->startDocument($this->version, $this->encoding); + $xml->startElement($startElement); + $data = $this->writeAttr($xml, $data); + $this->writeEl($xml, $data); + $xml->endElement(); //write end element + //returns the XML results + return $xml->outputMemory(true); + } + + /** + * Write keys in $data prefixed with @ as XML attributes, if $data is an array. + * When an @ prefixed key is found, a '%' key is expected to indicate the element itself, + * and '#' prefixed key indicates CDATA content. + * + * @param XMLWriter $xml object + * @param array $data with attributes filtered out + * + * @return array $data | $nonAttributes + */ + protected function writeAttr(XMLWriter $xml, $data) + { + if (\is_array($data)) { + $nonAttributes = []; + foreach ($data as $key => $val) { + //handle an attribute with elements + if ('@' == $key[0]) { + $xml->writeAttribute(substr($key, 1), $val); + } elseif ('%' == $key[0]) { + if (\is_array($val)) { + $nonAttributes = $val; + } else { + $xml->text($val); + } + } elseif ('#' == $key[0]) { + if (\is_array($val)) { + $nonAttributes = $val; + } else { + $xml->startElement(substr($key, 1)); + $xml->writeCData($val); + $xml->endElement(); + } + } elseif ('!' == $key[0]) { + if (\is_array($val)) { + $nonAttributes = $val; + } else { + $xml->writeCData($val); + } + } //ignore normal elements + else { + $nonAttributes[$key] = $val; + } + } + + return $nonAttributes; + } + + return $data; + } + + /** + * Write XML as per Associative Array. + * + * @param XMLWriter $xml object + * @param array $data Associative Data Array + */ + protected function writeEl(XMLWriter $xml, $data) + { + foreach ($data as $key => $value) { + if (\is_array($value) && !$this->isAssoc($value)) { //numeric array + foreach ($value as $itemValue) { + if (\is_array($itemValue)) { + $xml->startElement($key); + $itemValue = $this->writeAttr($xml, $itemValue); + $this->writeEl($xml, $itemValue); + $xml->endElement(); + } else { + $itemValue = $this->writeAttr($xml, $itemValue); + $xml->writeElement($key, "{$itemValue}"); + } + } + } elseif (\is_array($value)) { //associative array + $xml->startElement($key); + $value = $this->writeAttr($xml, $value); + $this->writeEl($xml, $value); + $xml->endElement(); + } else { //scalar + $value = $this->writeAttr($xml, $value); + $xml->writeElement($key, "{$value}"); + } + } + } + + /** + * Check if array is associative with string based keys + * FROM: http://stackoverflow.com/questions/173400/php-arrays-a-good-way-to-check-if-an-array-is-associative-or-sequential/4254008#4254008. + * + * @param array $array Array to check + * + * @return bool + */ + protected function isAssoc($array) + { + return (bool) \count(array_filter(array_keys($array), 'is_string')); + } +} diff --git a/vendor/alibabacloud/tea-xml/src/XML.php b/vendor/alibabacloud/tea-xml/src/XML.php new file mode 100644 index 000000000..3550e0467 --- /dev/null +++ b/vendor/alibabacloud/tea-xml/src/XML.php @@ -0,0 +1,59 @@ + $v) { + if (isset($prop[$k])) { + $target[$k] = $v; + } + } + return $target; + } + } + + public static function toXML($array) + { + $arrayToXml = new ArrayToXml(); + if (\is_object($array)) { + $tmp = explode('\\', \get_class($array)); + $rootName = $tmp[\count($tmp) - 1]; + $data = json_decode(json_encode($array), true); + } else { + $tmp = $array; + reset($tmp); + $rootName = key($tmp); + $data = $array[$rootName]; + } + ksort($data); + + return $arrayToXml->buildXML($data, $rootName); + } + + private static function parse($xml) + { + if (\PHP_VERSION_ID < 80000) { + libxml_disable_entity_loader(true); + } + + return json_decode( + json_encode( + simplexml_load_string($xml, 'SimpleXMLElement', LIBXML_NOCDATA) + ), + true + ); + } +} diff --git a/vendor/alibabacloud/tea-xml/tests/XMLTest.php b/vendor/alibabacloud/tea-xml/tests/XMLTest.php new file mode 100644 index 000000000..9bc5059f5 --- /dev/null +++ b/vendor/alibabacloud/tea-xml/tests/XMLTest.php @@ -0,0 +1,59 @@ +\n" . + "\n" . + " test\n" . + " 1\n" . + "\n"; + + public function testParseXml() + { + $res = XML::parseXml($this->xmlStr, new tests()); + $name = $res['name']; + $value = $res['value']; + $this->assertEquals('test', $name); + $this->assertEquals(1, $value); + + $res = XML::parseXml($this->xmlStr, null); + $name = $res['name']; + $value = $res['value']; + $this->assertEquals('test', $name); + $this->assertEquals(1, $value); + } + + public function testArrayToXML() + { + $data = [ + 'tests' => [ + 'name' => 'test', + 'value' => 1, + ], + ]; + $this->assertEquals("\ntest1", XML::toXML($data)); + } + + public function testObjectToXML() + { + $obj = new tests(); + $obj->name = 'test'; + $obj->value = 1; + $this->assertEquals("\ntest1", XML::toXML($obj)); + } +} + +class tests +{ + public $name = ''; + public $value = 0; +} diff --git a/vendor/alibabacloud/tea-xml/tests/bootstrap.php b/vendor/alibabacloud/tea-xml/tests/bootstrap.php new file mode 100644 index 000000000..c62c4e81b --- /dev/null +++ b/vendor/alibabacloud/tea-xml/tests/bootstrap.php @@ -0,0 +1,3 @@ +setRiskyAllowed(true) + ->setIndent(' ') + ->setRules([ + '@PSR2' => true, + '@PhpCsFixer' => true, + '@Symfony:risky' => true, + 'concat_space' => ['spacing' => 'one'], + 'array_syntax' => ['syntax' => 'short'], + 'array_indentation' => true, + 'combine_consecutive_unsets' => true, + 'method_separation' => true, + 'single_quote' => true, + 'declare_equal_normalize' => true, + 'function_typehint_space' => true, + 'hash_to_slash_comment' => true, + 'include' => true, + 'lowercase_cast' => true, + 'no_multiline_whitespace_before_semicolons' => true, + 'no_leading_import_slash' => true, + 'no_multiline_whitespace_around_double_arrow' => true, + 'no_spaces_around_offset' => true, + 'no_unneeded_control_parentheses' => true, + 'no_unused_imports' => true, + 'no_whitespace_before_comma_in_array' => true, + 'no_whitespace_in_blank_line' => true, + 'object_operator_without_whitespace' => true, + 'single_blank_line_before_namespace' => true, + 'single_class_element_per_statement' => true, + 'space_after_semicolon' => true, + 'standardize_not_equals' => true, + 'ternary_operator_spaces' => true, + 'trailing_comma_in_multiline_array' => true, + 'trim_array_spaces' => true, + 'unary_operator_spaces' => true, + 'whitespace_after_comma_in_array' => true, + 'no_extra_consecutive_blank_lines' => [ + 'curly_brace_block', + 'extra', + 'parenthesis_brace_block', + 'square_brace_block', + 'throw', + 'use', + ], + 'binary_operator_spaces' => [ + 'align_double_arrow' => true, + 'align_equals' => true, + ], + 'braces' => [ + 'allow_single_line_closure' => true, + ], + ]) + ->setFinder( + PhpCsFixer\Finder::create() + ->exclude('vendor') + ->exclude('tests') + ->in(__DIR__) + ); diff --git a/vendor/alibabacloud/tea/CHANGELOG.md b/vendor/alibabacloud/tea/CHANGELOG.md new file mode 100644 index 000000000..a3b6a5332 --- /dev/null +++ b/vendor/alibabacloud/tea/CHANGELOG.md @@ -0,0 +1,148 @@ +# CHANGELOG + +## 3.1.22 - 2021-05-11 + +- Deprecate `stream_for` method. + +## 3.1.21 - 2021-03-15 + +- Supported set proxy&timeout on request. + +## 3.1.20 - 2020-12-02 + +- Fix the warning when the Tea::merge method received empty arguments. + +## 3.1.19 - 2020-10-09 + +- Fix the error when the code value is a string. + +## 3.1.18 - 2020-09-28 + +- Require Guzzle Version 7.0 + +## 3.1.17 - 2020-09-24 + +- TeaUnableRetryError support get error info. + +## 3.1.16 - 2020-08-31 + +- Fix the Maximum function nesting level error when repeated network requests. + +## 3.1.15 - 2020-07-28 + +- Improved validatePattern method. + +## 3.1.14 - 2020-07-03 + +- Supported set properties of TeaError with `ErrorInfo`. + +## 3.1.13 - 2020-06-09 + +- Reduce dependencies. + +## 3.1.12 - 2020-05-13 + +- Add validate method. +- Supported validate maximun&minimun of property. + +## 3.1.11 - 2020-05-07 + +- Fixed error when class is undefined. + +## 3.1.10 - 2020-05-07 + +- Fixed error when '$item' of array is null + +## 3.1.9 - 2020-04-13 + +- TeaUnableRetryError add $lastException param. + +## 3.1.8 - 2020-04-02 + +- Added some static methods of Model to validate fields of Model. + +## 3.1.7 - 2020-03-27 + +- Improve Tea::isRetryable method. + +## 3.1.6 - 2020-03-25 + +- Fixed bug when body is StreamInterface. + +## 3.1.5 - 2020-03-25 + +- Improve Model.toMap method. +- Improve Tea.merge method. +- Fixed tests. + +## 3.1.4 - 2020-03-20 + +- Added Tea::merge method. +- Change Tea::isRetryable method. + +## 3.1.3 - 2020-03-20 + +- Model: added toModel method. + +## 3.1.2 - 2020-03-19 + +- Model constructor supported array type parameter. + +## 3.1.1 - 2020-03-18 + +- Fixed bug : set method failed. +- Fixed bug : get empty contents form body. + +## 3.1.0 - 2020-03-13 + +- TeaUnableRetryError add 'lastRequest' property. +- Change Tea.send() method return. +- Fixed Tea. allowRetry() method. + +## 3.0.0 - 2020-02-14 +- Rename package name. + +## 2.0.3 - 2020-02-14 +- Improved Exception. + +## 2.0.2 - 2019-09-11 +- Supported `String`. + +## 2.0.1 - 2019-08-15 +- Supported `IteratorAggregate`. + +## 2.0.0 - 2019-08-14 +- Design `Request` as a standard `PsrRequest`. + +## 1.0.10 - 2019-08-12 +- Added `__toString` for `Response`. + +## 1.0.9 - 2019-08-01 +- Updated `Middleware`. + +## 1.0.8 - 2019-07-29 +- Supported `TransferStats`. + +## 1.0.7 - 2019-07-27 +- Improved request. + +## 1.0.6 - 2019-07-23 +- Trim key for parameter. + +## 1.0.5 - 2019-07-23 +- Supported default protocol. + +## 1.0.4 - 2019-07-22 +- Added `toArray()`. + +## 1.0.3 - 2019-05-02 +- Improved `Request`. + +## 1.0.2 - 2019-05-02 +- Added getHeader/getHeaders. + +## 1.0.1 - 2019-04-02 +- Improved design. + +## 1.0.0 - 2019-05-02 +- Initial release of the AlibabaCloud Tea Version 1.0.0 on Packagist See for more information. diff --git a/vendor/alibabacloud/tea/LICENSE.md b/vendor/alibabacloud/tea/LICENSE.md new file mode 100644 index 000000000..ec13fccd3 --- /dev/null +++ b/vendor/alibabacloud/tea/LICENSE.md @@ -0,0 +1,13 @@ +Copyright (c) 2009-present, Alibaba Cloud All rights reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. diff --git a/vendor/alibabacloud/tea/README.md b/vendor/alibabacloud/tea/README.md new file mode 100644 index 000000000..a8cbe661e --- /dev/null +++ b/vendor/alibabacloud/tea/README.md @@ -0,0 +1,16 @@ + +## Installation +``` +composer require alibabacloud/tea --optimize-autoloader +``` +> Some users may not be able to install due to network problems, you can try to switch the Composer mirror. + + +## Changelog +Detailed changes for each release are documented in the [release notes](CHANGELOG.md). + + +## License +[Apache-2.0](LICENSE.md) + +Copyright (c) 2009-present, Alibaba Cloud All rights reserved. diff --git a/vendor/alibabacloud/tea/composer.json b/vendor/alibabacloud/tea/composer.json new file mode 100644 index 000000000..163689eca --- /dev/null +++ b/vendor/alibabacloud/tea/composer.json @@ -0,0 +1,80 @@ +{ + "name": "alibabacloud/tea", + "homepage": "https://www.alibabacloud.com/", + "description": "Client of Tea for PHP", + "keywords": [ + "tea", + "client", + "alibabacloud", + "cloud" + ], + "type": "library", + "license": "Apache-2.0", + "support": { + "source": "https://github.com/aliyun/tea-php", + "issues": "https://github.com/aliyun/tea-php/issues" + }, + "authors": [ + { + "name": "Alibaba Cloud SDK", + "email": "sdk-team@alibabacloud.com", + "homepage": "http://www.alibabacloud.com" + } + ], + "require": { + "php": ">=5.5", + "ext-curl": "*", + "ext-json": "*", + "ext-libxml": "*", + "ext-mbstring": "*", + "ext-openssl": "*", + "ext-simplexml": "*", + "ext-xmlwriter": "*", + "guzzlehttp/guzzle": "^6.3|^7.0", + "adbario/php-dot-notation": "^2.4" + }, + "require-dev": { + "symfony/dotenv": "^3.4", + "phpunit/phpunit": "*", + "symfony/var-dumper": "^3.4" + }, + "suggest": { + "ext-sockets": "To use client-side monitoring" + }, + "autoload": { + "psr-4": { + "AlibabaCloud\\Tea\\": "src" + } + }, + "autoload-dev": { + "psr-4": { + "AlibabaCloud\\Tea\\Tests\\": "tests" + } + }, + "config": { + "sort-packages": true, + "preferred-install": "dist", + "optimize-autoloader": true + }, + "prefer-stable": true, + "minimum-stability": "dev", + "scripts": { + "cs": "phpcs --standard=PSR2 -n ./", + "cbf": "phpcbf --standard=PSR2 -n ./", + "fixer": "php-cs-fixer fix ./", + "test": [ + "@clearCache", + "phpunit --colors=always" + ], + "unit": [ + "@clearCache", + "phpunit --testsuite=Unit --colors=always" + ], + "feature": [ + "@clearCache", + "phpunit --testsuite=Feature --colors=always" + ], + "clearCache": "rm -rf cache/*", + "coverage": "open cache/coverage/index.html" + } +} diff --git a/vendor/alibabacloud/tea/src/Exception/TeaError.php b/vendor/alibabacloud/tea/src/Exception/TeaError.php new file mode 100644 index 000000000..f4ef0d9a9 --- /dev/null +++ b/vendor/alibabacloud/tea/src/Exception/TeaError.php @@ -0,0 +1,53 @@ +errorInfo = $errorInfo; + if (!empty($errorInfo)) { + $properties = ['name', 'message', 'code', 'data', 'description', 'accessDeniedDetail']; + foreach ($properties as $property) { + if (isset($errorInfo[$property])) { + $this->{$property} = $errorInfo[$property]; + if ($property === 'data' && isset($errorInfo['data']['statusCode'])) { + $this->statusCode = $errorInfo['data']['statusCode']; + } + } + } + } + } + + /** + * @return array + */ + public function getErrorInfo() + { + return $this->errorInfo; + } +} diff --git a/vendor/alibabacloud/tea/src/Exception/TeaRetryError.php b/vendor/alibabacloud/tea/src/Exception/TeaRetryError.php new file mode 100644 index 000000000..30aa7f8ef --- /dev/null +++ b/vendor/alibabacloud/tea/src/Exception/TeaRetryError.php @@ -0,0 +1,21 @@ +getErrorInfo(); + } + parent::__construct($error_info, $lastException->getMessage(), $lastException->getCode(), $lastException); + $this->lastRequest = $lastRequest; + $this->lastException = $lastException; + } + + public function getLastRequest() + { + return $this->lastRequest; + } + + public function getLastException() + { + return $this->lastException; + } +} diff --git a/vendor/alibabacloud/tea/src/Helper.php b/vendor/alibabacloud/tea/src/Helper.php new file mode 100644 index 000000000..f1c0fd4fc --- /dev/null +++ b/vendor/alibabacloud/tea/src/Helper.php @@ -0,0 +1,112 @@ + $ord) { + if ($k !== $i) { + return false; + } + if (!\is_int($ord)) { + return false; + } + if ($ord < 0 || $ord > 255) { + return false; + } + ++$i; + } + + return true; + } + + /** + * Convert a bytes to string(utf8). + * + * @param array $bytes + * + * @return string the return string + */ + public static function toString($bytes) + { + $str = ''; + foreach ($bytes as $ch) { + $str .= \chr($ch); + } + + return $str; + } + + /** + * @return array + */ + public static function merge(array $arrays) + { + $result = []; + foreach ($arrays as $array) { + foreach ($array as $key => $value) { + if (\is_int($key)) { + $result[] = $value; + + continue; + } + + if (isset($result[$key]) && \is_array($result[$key])) { + $result[$key] = self::merge( + [$result[$key], $value] + ); + + continue; + } + + $result[$key] = $value; + } + } + + return $result; + } +} diff --git a/vendor/alibabacloud/tea/src/Model.php b/vendor/alibabacloud/tea/src/Model.php new file mode 100644 index 000000000..538b55c53 --- /dev/null +++ b/vendor/alibabacloud/tea/src/Model.php @@ -0,0 +1,114 @@ + $v) { + $this->{$k} = $v; + } + } + } + + public function getName($name = null) + { + if (null === $name) { + return $this->_name; + } + + return isset($this->_name[$name]) ? $this->_name[$name] : $name; + } + + public function toMap() + { + $map = get_object_vars($this); + foreach ($map as $k => $m) { + if (0 === strpos($k, '_')) { + unset($map[$k]); + } + } + $res = []; + foreach ($map as $k => $v) { + $name = isset($this->_name[$k]) ? $this->_name[$k] : $k; + $res[$name] = $v; + } + + return $res; + } + + public function validate() + { + $vars = get_object_vars($this); + foreach ($vars as $k => $v) { + if (isset($this->_required[$k]) && $this->_required[$k] && empty($v)) { + throw new \InvalidArgumentException("{$k} is required."); + } + } + } + + public static function validateRequired($fieldName, $field, $val = null) + { + if (true === $val && null === $field) { + throw new \InvalidArgumentException($fieldName . ' is required'); + } + } + + public static function validateMaxLength($fieldName, $field, $val = null) + { + if (null !== $field && \strlen($field) > (int) $val) { + throw new \InvalidArgumentException($fieldName . ' is exceed max-length: ' . $val); + } + } + + public static function validateMinLength($fieldName, $field, $val = null) + { + if (null !== $field && \strlen($field) < (int) $val) { + throw new \InvalidArgumentException($fieldName . ' is less than min-length: ' . $val); + } + } + + public static function validatePattern($fieldName, $field, $regex = '') + { + if (null !== $field && '' !== $field && !preg_match("/^{$regex}$/", $field)) { + throw new \InvalidArgumentException($fieldName . ' is not match ' . $regex); + } + } + + public static function validateMaximum($fieldName, $field, $val) + { + if (null !== $field && $field > $val) { + throw new \InvalidArgumentException($fieldName . ' cannot be greater than ' . $val); + } + } + + public static function validateMinimum($fieldName, $field, $val) + { + if (null !== $field && $field < $val) { + throw new \InvalidArgumentException($fieldName . ' cannot be less than ' . $val); + } + } + + /** + * @param array $map + * @param Model $model + * + * @return mixed + */ + public static function toModel($map, $model) + { + $names = $model->getName(); + $names = array_flip($names); + foreach ($map as $key => $value) { + $name = isset($names[$key]) ? $names[$key] : $key; + $model->{$name} = $value; + } + + return $model; + } +} diff --git a/vendor/alibabacloud/tea/src/Parameter.php b/vendor/alibabacloud/tea/src/Parameter.php new file mode 100644 index 000000000..324a95d5e --- /dev/null +++ b/vendor/alibabacloud/tea/src/Parameter.php @@ -0,0 +1,50 @@ +toArray()); + } + + /** + * @return array + */ + public function getRealParameters() + { + $array = []; + $obj = new ReflectionObject($this); + $properties = $obj->getProperties(); + + foreach ($properties as $property) { + $docComment = $property->getDocComment(); + $key = trim(Helper::findFromString($docComment, '@real', "\n")); + $value = $property->getValue($this); + $array[$key] = $value; + } + + return $array; + } + + /** + * @return array + */ + public function toArray() + { + return $this->getRealParameters(); + } +} diff --git a/vendor/alibabacloud/tea/src/Request.php b/vendor/alibabacloud/tea/src/Request.php new file mode 100644 index 000000000..db49142e3 --- /dev/null +++ b/vendor/alibabacloud/tea/src/Request.php @@ -0,0 +1,123 @@ +method = $method; + } + + /** + * These fields are compatible if you define other fields. + * Mainly for compatibility situations where the code generator cannot generate set properties. + * + * @return PsrRequest + */ + public function getPsrRequest() + { + $this->assertQuery($this->query); + + $request = clone $this; + + $uri = $request->getUri(); + if ($this->query) { + $uri = $uri->withQuery(http_build_query($this->query)); + } + + if ($this->port) { + $uri = $uri->withPort($this->port); + } + + if ($this->protocol) { + $uri = $uri->withScheme($this->protocol); + } + + if ($this->pathname) { + $uri = $uri->withPath($this->pathname); + } + + if (isset($this->headers['host'])) { + $uri = $uri->withHost($this->headers['host']); + } + + $request = $request->withUri($uri); + $request = $request->withMethod($this->method); + + if ('' !== $this->body && null !== $this->body) { + if ($this->body instanceof StreamInterface) { + $request = $request->withBody($this->body); + } else { + $body = $this->body; + if (Helper::isBytes($this->body)) { + $body = Helper::toString($this->body); + } + if (\function_exists('\GuzzleHttp\Psr7\stream_for')) { + // @deprecated stream_for will be removed in guzzlehttp/psr7:2.0 + $request = $request->withBody(\GuzzleHttp\Psr7\stream_for($body)); + } else { + $request = $request->withBody(\GuzzleHttp\Psr7\Utils::streamFor($body)); + } + } + } + + if ($this->headers) { + foreach ($this->headers as $key => $value) { + $request = $request->withHeader($key, $value); + } + } + + return $request; + } + + /** + * @param array $query + */ + private function assertQuery($query) + { + if (!\is_array($query) && $query !== null) { + throw new InvalidArgumentException('Query must be array.'); + } + } +} diff --git a/vendor/alibabacloud/tea/src/Response.php b/vendor/alibabacloud/tea/src/Response.php new file mode 100644 index 000000000..cb446e74e --- /dev/null +++ b/vendor/alibabacloud/tea/src/Response.php @@ -0,0 +1,372 @@ +getStatusCode(), + $response->getHeaders(), + $response->getBody(), + $response->getProtocolVersion(), + $response->getReasonPhrase() + ); + $this->headers = $response->getHeaders(); + $this->body = $response->getBody(); + $this->statusCode = $response->getStatusCode(); + if ($this->body->isSeekable()) { + $this->body->seek(0); + } + + if (Helper::isJson((string) $this->getBody())) { + $this->dot = new Dot($this->toArray()); + } else { + $this->dot = new Dot(); + } + } + + /** + * @return string + */ + public function __toString() + { + return (string) $this->getBody(); + } + + /** + * @param string $name + * + * @return null|mixed + */ + public function __get($name) + { + $data = $this->dot->all(); + if (!isset($data[$name])) { + return null; + } + + return json_decode(json_encode($data))->{$name}; + } + + /** + * @param string $name + * @param mixed $value + */ + public function __set($name, $value) + { + $this->dot->set($name, $value); + } + + /** + * @param string $name + * + * @return bool + */ + public function __isset($name) + { + return $this->dot->has($name); + } + + /** + * @param $offset + */ + public function __unset($offset) + { + $this->dot->delete($offset); + } + + /** + * @return array + */ + public function toArray() + { + return \GuzzleHttp\json_decode((string) $this->getBody(), true); + } + + /** + * @param array|int|string $keys + * @param mixed $value + */ + public function add($keys, $value = null) + { + return $this->dot->add($keys, $value); + } + + /** + * @return array + */ + public function all() + { + return $this->dot->all(); + } + + /** + * @param null|array|int|string $keys + */ + public function clear($keys = null) + { + return $this->dot->clear($keys); + } + + /** + * @param array|int|string $keys + */ + public function delete($keys) + { + return $this->dot->delete($keys); + } + + /** + * @param string $delimiter + * @param null|array $items + * @param string $prepend + * + * @return array + */ + public function flatten($delimiter = '.', $items = null, $prepend = '') + { + return $this->dot->flatten($delimiter, $items, $prepend); + } + + /** + * @param null|int|string $key + * @param mixed $default + * + * @return mixed + */ + public function get($key = null, $default = null) + { + return $this->dot->get($key, $default); + } + + /** + * @param array|int|string $keys + * + * @return bool + */ + public function has($keys) + { + return $this->dot->has($keys); + } + + /** + * @param null|array|int|string $keys + * + * @return bool + */ + public function isEmpty($keys = null) + { + return $this->dot->isEmpty($keys); + } + + /** + * @param array|self|string $key + * @param array|self $value + */ + public function merge($key, $value = []) + { + return $this->dot->merge($key, $value); + } + + /** + * @param array|self|string $key + * @param array|self $value + */ + public function mergeRecursive($key, $value = []) + { + return $this->dot->mergeRecursive($key, $value); + } + + /** + * @param array|self|string $key + * @param array|self $value + */ + public function mergeRecursiveDistinct($key, $value = []) + { + return $this->dot->mergeRecursiveDistinct($key, $value); + } + + /** + * @param null|int|string $key + * @param mixed $default + * + * @return mixed + */ + public function pull($key = null, $default = null) + { + return $this->dot->pull($key, $default); + } + + /** + * @param null|int|string $key + * @param mixed $value + * + * @return mixed + */ + public function push($key = null, $value = null) + { + return $this->dot->push($key, $value); + } + + /** + * Replace all values or values within the given key + * with an array or Dot object. + * + * @param array|self|string $key + * @param array|self $value + */ + public function replace($key, $value = []) + { + return $this->dot->replace($key, $value); + } + + /** + * Set a given key / value pair or pairs. + * + * @param array|int|string $keys + * @param mixed $value + */ + public function set($keys, $value = null) + { + return $this->dot->set($keys, $value); + } + + /** + * Replace all items with a given array. + * + * @param mixed $items + */ + public function setArray($items) + { + return $this->dot->setArray($items); + } + + /** + * Replace all items with a given array as a reference. + */ + public function setReference(array &$items) + { + return $this->dot->setReference($items); + } + + /** + * Return the value of a given key or all the values as JSON. + * + * @param mixed $key + * @param int $options + * + * @return string + */ + public function toJson($key = null, $options = 0) + { + return $this->dot->toJson($key, $options); + } + + /** + * Retrieve an external iterator. + */ + #[\ReturnTypeWillChange] + public function getIterator() + { + return $this->dot->getIterator(); + } + + /** + * Whether a offset exists. + * + * @param $offset + * + * @return bool + */ + #[\ReturnTypeWillChange] + public function offsetExists($offset) + { + return $this->dot->offsetExists($offset); + } + + /** + * Offset to retrieve. + * + * @param $offset + * + * @return mixed + */ + #[\ReturnTypeWillChange] + public function offsetGet($offset) + { + return $this->dot->offsetGet($offset); + } + + /** + * Offset to set. + * + * @param $offset + * @param $value + */ + #[\ReturnTypeWillChange] + public function offsetSet($offset, $value) + { + $this->dot->offsetSet($offset, $value); + } + + /** + * Offset to unset. + * + * @param $offset + */ + #[\ReturnTypeWillChange] + public function offsetUnset($offset) + { + $this->dot->offsetUnset($offset); + } + + /** + * Count elements of an object. + * + * @param null $key + * + * @return int + */ + #[\ReturnTypeWillChange] + public function count($key = null) + { + return $this->dot->count($key); + } +} diff --git a/vendor/alibabacloud/tea/src/Tea.php b/vendor/alibabacloud/tea/src/Tea.php new file mode 100644 index 000000000..a138ad9a8 --- /dev/null +++ b/vendor/alibabacloud/tea/src/Tea.php @@ -0,0 +1,287 @@ +getPsrRequest(); + } + + $config = self::resolveConfig($config); + + $res = self::client()->send( + $request, + $config + ); + + return new Response($res); + } + + /** + * @return PromiseInterface + */ + public static function sendAsync(RequestInterface $request, array $config = []) + { + if (method_exists($request, 'getPsrRequest')) { + $request = $request->getPsrRequest(); + } + + $config = self::resolveConfig($config); + + return self::client()->sendAsync( + $request, + $config + ); + } + + /** + * @return Client + */ + public static function client(array $config = []) + { + if (isset(self::$config['handler'])) { + $stack = self::$config['handler']; + } else { + $stack = HandlerStack::create(); + $stack->push(Middleware::mapResponse(static function (ResponseInterface $response) { + return new Response($response); + })); + } + + self::$config['handler'] = $stack; + + if (!isset(self::$config['on_stats'])) { + self::$config['on_stats'] = function (TransferStats $stats) { + Response::$info = $stats->getHandlerStats(); + }; + } + + $new_config = Helper::merge([self::$config, $config]); + + return new Client($new_config); + } + + /** + * @param string $method + * @param string|UriInterface $uri + * @param array $options + * + * @throws GuzzleException + * + * @return ResponseInterface + */ + public static function request($method, $uri, $options = []) + { + return self::client()->request($method, $uri, $options); + } + + /** + * @param string $method + * @param string $uri + * @param array $options + * + * @throws GuzzleException + * + * @return string + */ + public static function string($method, $uri, $options = []) + { + return (string) self::client()->request($method, $uri, $options) + ->getBody(); + } + + /** + * @param string $method + * @param string|UriInterface $uri + * @param array $options + * + * @return PromiseInterface + */ + public static function requestAsync($method, $uri, $options = []) + { + return self::client()->requestAsync($method, $uri, $options); + } + + /** + * @param string|UriInterface $uri + * @param array $options + * + * @throws GuzzleException + * + * @return null|mixed + */ + public static function getHeaders($uri, $options = []) + { + return self::request('HEAD', $uri, $options)->getHeaders(); + } + + /** + * @param string|UriInterface $uri + * @param string $key + * @param null|mixed $default + * + * @throws GuzzleException + * + * @return null|mixed + */ + public static function getHeader($uri, $key, $default = null) + { + $headers = self::getHeaders($uri); + + return isset($headers[$key][0]) ? $headers[$key][0] : $default; + } + + /** + * @param int $retryTimes + * @param float $now + * + * @return bool + */ + public static function allowRetry(array $runtime, $retryTimes, $now) + { + unset($now); + if (!isset($retryTimes) || null === $retryTimes || !\is_numeric($retryTimes)) { + return false; + } + if ($retryTimes > 0 && (empty($runtime) || !isset($runtime['retryable']) || !$runtime['retryable'] || !isset($runtime['maxAttempts']))) { + return false; + } + $maxAttempts = $runtime['maxAttempts']; + $retry = empty($maxAttempts) ? 0 : (int) $maxAttempts; + + return $retry >= $retryTimes; + } + + /** + * @param int $retryTimes + * + * @return int + */ + public static function getBackoffTime(array $runtime, $retryTimes) + { + $backOffTime = 0; + $policy = isset($runtime['policy']) ? $runtime['policy'] : ''; + + if (empty($policy) || 'no' == $policy) { + return $backOffTime; + } + + $period = isset($runtime['period']) ? $runtime['period'] : ''; + if (null !== $period && '' !== $period) { + $backOffTime = (int) $period; + if ($backOffTime <= 0) { + return $retryTimes; + } + } + + return $backOffTime; + } + + public static function sleep($time) + { + sleep($time); + } + + public static function isRetryable($retry, $retryTimes = 0) + { + if ($retry instanceof TeaError) { + return true; + } + if (\is_array($retry)) { + $max = isset($retry['maxAttempts']) ? (int) ($retry['maxAttempts']) : 3; + + return $retryTimes <= $max; + } + + return false; + } + + /** + * @param mixed|Model[] ...$item + * + * @return mixed + */ + public static function merge(...$item) + { + $tmp = []; + $n = 0; + foreach ($item as $i) { + if (\is_object($i)) { + if ($i instanceof Model) { + $i = $i->toMap(); + } else { + $i = json_decode(json_encode($i), true); + } + } + if (null === $i) { + continue; + } + if (\is_array($i)) { + $tmp[$n++] = $i; + } + } + + if (\count($tmp)) { + return \call_user_func_array('array_merge', $tmp); + } + + return []; + } + + private static function resolveConfig(array $config = []) + { + $options = new Dot(['http_errors' => false]); + if (isset($config['httpProxy']) && !empty($config['httpProxy'])) { + $options->set('proxy.http', $config['httpProxy']); + } + if (isset($config['httpsProxy']) && !empty($config['httpsProxy'])) { + $options->set('proxy.https', $config['httpsProxy']); + } + if (isset($config['noProxy']) && !empty($config['noProxy'])) { + $options->set('proxy.no', $config['noProxy']); + } + if (isset($config['ignoreSSL']) && !empty($config['ignoreSSL'])) { + $options->set('verify',!((bool)$config['ignoreSSL'])); + } + // readTimeout&connectTimeout unit is millisecond + $read_timeout = isset($config['readTimeout']) && !empty($config['readTimeout']) ? (int) $config['readTimeout'] : 0; + $con_timeout = isset($config['connectTimeout']) && !empty($config['connectTimeout']) ? (int) $config['connectTimeout'] : 0; + // timeout unit is second + $options->set('timeout', ($read_timeout + $con_timeout) / 1000); + + return $options->all(); + } +} diff --git a/vendor/composer/autoload_files.php b/vendor/composer/autoload_files.php index f210f0591..43e3c3043 100644 --- a/vendor/composer/autoload_files.php +++ b/vendor/composer/autoload_files.php @@ -7,25 +7,25 @@ $baseDir = dirname($vendorDir); return array( '6e3fae29631ef280660b3cdad06f25a8' => $vendorDir . '/symfony/deprecation-contracts/function.php', - '0e6d7bf4a5811bfa5cf40c5ccd6fae6a' => $vendorDir . '/symfony/polyfill-mbstring/bootstrap.php', '7b11c4dc42b3b3023073cb14e519683c' => $vendorDir . '/ralouphie/getallheaders/src/getallheaders.php', - 'a4a119a56e50fbb293281d9a48007e0e' => $vendorDir . '/symfony/polyfill-php80/bootstrap.php', - '9b552a3cc426e3287cc811caefa3cf53' => $vendorDir . '/topthink/think-helper/src/helper.php', '37a3dc5111fe8f707ab4c132ef1dbc62' => $vendorDir . '/guzzlehttp/guzzle/src/functions_include.php', + 'd767e4fc2dc52fe66584ab8c6684783e' => $vendorDir . '/adbario/php-dot-notation/src/helpers.php', + '0e6d7bf4a5811bfa5cf40c5ccd6fae6a' => $vendorDir . '/symfony/polyfill-mbstring/bootstrap.php', + '9b552a3cc426e3287cc811caefa3cf53' => $vendorDir . '/topthink/think-helper/src/helper.php', + 'a4a119a56e50fbb293281d9a48007e0e' => $vendorDir . '/symfony/polyfill-php80/bootstrap.php', '35fab96057f1bf5e7aba31a8a6d5fdde' => $vendorDir . '/topthink/think-orm/stubs/load_stubs.php', '25072dd6e2470089de65ae7bf11d3109' => $vendorDir . '/symfony/polyfill-php72/bootstrap.php', 'e69f7f6ee287b969198c3c9d6777bd38' => $vendorDir . '/symfony/polyfill-intl-normalizer/bootstrap.php', 'a1105708a18b76903365ca1c4aa61b02' => $vendorDir . '/symfony/translation/Resources/functions.php', + 'b067bc7112e384b61c701452d53a14a8' => $vendorDir . '/mtdowling/jmespath.php/src/JmesPath.php', 'f598d06aa772fa33d905e87be6398fb1' => $vendorDir . '/symfony/polyfill-intl-idn/bootstrap.php', '0d59ee240a4cd96ddbb4ff164fccea4d' => $vendorDir . '/symfony/polyfill-php73/bootstrap.php', - 'd767e4fc2dc52fe66584ab8c6684783e' => $vendorDir . '/adbario/php-dot-notation/src/helpers.php', + '66453932bc1be9fb2f910a27947d11b6' => $vendorDir . '/alibabacloud/client/src/Functions.php', '2cffec82183ee1cea088009cef9a6fc3' => $vendorDir . '/ezyang/htmlpurifier/library/HTMLPurifier.composer.php', - 'b067bc7112e384b61c701452d53a14a8' => $vendorDir . '/mtdowling/jmespath.php/src/JmesPath.php', 'c5521cebe610a9bf42c44b3a5163adfd' => $vendorDir . '/overtrue/socialite/src/Contracts/FactoryInterface.php', 'ccd11c8e7dd9b33638b248681bdfba27' => $vendorDir . '/overtrue/socialite/src/Contracts/UserInterface.php', '5649552725dea6ec47381627600e3ac1' => $vendorDir . '/overtrue/socialite/src/Contracts/ProviderInterface.php', '23c18046f52bef3eea034657bafda50f' => $vendorDir . '/symfony/polyfill-php81/bootstrap.php', - '66453932bc1be9fb2f910a27947d11b6' => $vendorDir . '/alibabacloud/client/src/Functions.php', 'cd5441689b14144e5573bf989ee47b34' => $vendorDir . '/qcloud/cos-sdk-v5/src/Common.php', '841780ea2e1d6545ea3a253239d59c05' => $vendorDir . '/qiniu/php-sdk/src/Qiniu/functions.php', '941748b3c8cae4466c827dfb5ca9602a' => $vendorDir . '/rmccue/requests/library/Deprecated.php', diff --git a/vendor/composer/autoload_psr4.php b/vendor/composer/autoload_psr4.php index 94e4c70df..9a616ec5d 100644 --- a/vendor/composer/autoload_psr4.php +++ b/vendor/composer/autoload_psr4.php @@ -10,7 +10,7 @@ return array( 'think\\view\\driver\\' => array($vendorDir . '/topthink/think-view/src'), 'think\\trace\\' => array($vendorDir . '/topthink/think-trace/src'), 'think\\app\\' => array($vendorDir . '/topthink/think-multi-app/src'), - 'think\\' => array($vendorDir . '/topthink/framework/src/think', $vendorDir . '/topthink/think-helper/src', $vendorDir . '/topthink/think-orm/src', $vendorDir . '/topthink/think-queue/src', $vendorDir . '/topthink/think-template/src'), + 'think\\' => array($vendorDir . '/topthink/framework/src/think', $vendorDir . '/topthink/think-filesystem/src', $vendorDir . '/topthink/think-helper/src', $vendorDir . '/topthink/think-orm/src', $vendorDir . '/topthink/think-queue/src', $vendorDir . '/topthink/think-template/src'), 'clagiordano\\weblibs\\configmanager\\' => array($vendorDir . '/clagiordano/weblibs-configmanager/src'), 'app\\' => array($baseDir . '/app'), 'ZipStream\\' => array($vendorDir . '/maennchen/zipstream-php/src'), @@ -51,12 +51,15 @@ return array( 'Phrity\\Net\\' => array($vendorDir . '/phrity/net-uri/src'), 'PhpOffice\\PhpSpreadsheet\\' => array($vendorDir . '/phpoffice/phpspreadsheet/src/PhpSpreadsheet'), 'Overtrue\\Socialite\\' => array($vendorDir . '/overtrue/socialite/src'), + 'OneSm\\' => array($vendorDir . '/lizhichao/one-sm/src'), 'OSS\\' => array($vendorDir . '/aliyuncs/oss-sdk-php/src/OSS'), 'Nyholm\\Psr7\\' => array($vendorDir . '/nyholm/psr7/src'), 'Nyholm\\Psr7Server\\' => array($vendorDir . '/nyholm/psr7-server/src'), 'MyCLabs\\Enum\\' => array($vendorDir . '/myclabs/php-enum/src'), 'Monolog\\' => array($vendorDir . '/monolog/monolog/src/Monolog'), 'Matrix\\' => array($vendorDir . '/markbaker/matrix/classes/src'), + 'League\\MimeTypeDetection\\' => array($vendorDir . '/league/mime-type-detection/src'), + 'League\\Flysystem\\' => array($vendorDir . '/league/flysystem/src'), 'JmesPath\\' => array($vendorDir . '/mtdowling/jmespath.php/src'), 'JPush\\' => array($vendorDir . '/jpush/jpush/src/JPush'), 'GuzzleHttp\\UriTemplate\\' => array($vendorDir . '/guzzlehttp/uri-template/src'), @@ -69,9 +72,19 @@ return array( 'GatewayClient\\' => array($vendorDir . '/workerman/gatewayclient'), 'Firebase\\JWT\\' => array($vendorDir . '/firebase/php-jwt/src'), 'EasyWeChat\\' => array($vendorDir . '/w7corp/easywechat/src'), + 'Darabonba\\OpenApi\\' => array($vendorDir . '/alibabacloud/darabonba-openapi/src'), + 'Darabonba\\GatewaySpi\\' => array($vendorDir . '/alibabacloud/gateway-spi/src'), 'Cron\\' => array($vendorDir . '/dragonmantank/cron-expression/src/Cron'), 'Complex\\' => array($vendorDir . '/markbaker/complex/classes/src'), 'Carbon\\' => array($vendorDir . '/nesbot/carbon/src/Carbon'), + 'AlibabaCloud\\Tea\\XML\\' => array($vendorDir . '/alibabacloud/tea-xml/src'), + 'AlibabaCloud\\Tea\\Utils\\' => array($vendorDir . '/alibabacloud/tea-utils/src'), + 'AlibabaCloud\\Tea\\' => array($vendorDir . '/alibabacloud/tea/src'), + 'AlibabaCloud\\SDK\\Live\\V20161101\\' => array($vendorDir . '/alibabacloud/live-20161101/src'), + 'AlibabaCloud\\OpenApiUtil\\' => array($vendorDir . '/alibabacloud/openapi-util/src'), + 'AlibabaCloud\\Live\\' => array($vendorDir . '/alibabacloud/live'), + 'AlibabaCloud\\Endpoint\\' => array($vendorDir . '/alibabacloud/endpoint-util/src'), + 'AlibabaCloud\\Credentials\\' => array($vendorDir . '/alibabacloud/credentials/src'), 'AlibabaCloud\\Client\\' => array($vendorDir . '/alibabacloud/client/src'), 'Adbar\\' => array($vendorDir . '/adbario/php-dot-notation/src'), '' => array($vendorDir . '/phrity/util-errorhandler/src'), diff --git a/vendor/composer/autoload_static.php b/vendor/composer/autoload_static.php index 3e0d3a872..27086d942 100644 --- a/vendor/composer/autoload_static.php +++ b/vendor/composer/autoload_static.php @@ -8,25 +8,25 @@ class ComposerStaticInit7f3b0f886ea5f6310a43341d4e2b8ffb { public static $files = array ( '6e3fae29631ef280660b3cdad06f25a8' => __DIR__ . '/..' . '/symfony/deprecation-contracts/function.php', - '0e6d7bf4a5811bfa5cf40c5ccd6fae6a' => __DIR__ . '/..' . '/symfony/polyfill-mbstring/bootstrap.php', '7b11c4dc42b3b3023073cb14e519683c' => __DIR__ . '/..' . '/ralouphie/getallheaders/src/getallheaders.php', - 'a4a119a56e50fbb293281d9a48007e0e' => __DIR__ . '/..' . '/symfony/polyfill-php80/bootstrap.php', - '9b552a3cc426e3287cc811caefa3cf53' => __DIR__ . '/..' . '/topthink/think-helper/src/helper.php', '37a3dc5111fe8f707ab4c132ef1dbc62' => __DIR__ . '/..' . '/guzzlehttp/guzzle/src/functions_include.php', + 'd767e4fc2dc52fe66584ab8c6684783e' => __DIR__ . '/..' . '/adbario/php-dot-notation/src/helpers.php', + '0e6d7bf4a5811bfa5cf40c5ccd6fae6a' => __DIR__ . '/..' . '/symfony/polyfill-mbstring/bootstrap.php', + '9b552a3cc426e3287cc811caefa3cf53' => __DIR__ . '/..' . '/topthink/think-helper/src/helper.php', + 'a4a119a56e50fbb293281d9a48007e0e' => __DIR__ . '/..' . '/symfony/polyfill-php80/bootstrap.php', '35fab96057f1bf5e7aba31a8a6d5fdde' => __DIR__ . '/..' . '/topthink/think-orm/stubs/load_stubs.php', '25072dd6e2470089de65ae7bf11d3109' => __DIR__ . '/..' . '/symfony/polyfill-php72/bootstrap.php', 'e69f7f6ee287b969198c3c9d6777bd38' => __DIR__ . '/..' . '/symfony/polyfill-intl-normalizer/bootstrap.php', 'a1105708a18b76903365ca1c4aa61b02' => __DIR__ . '/..' . '/symfony/translation/Resources/functions.php', + 'b067bc7112e384b61c701452d53a14a8' => __DIR__ . '/..' . '/mtdowling/jmespath.php/src/JmesPath.php', 'f598d06aa772fa33d905e87be6398fb1' => __DIR__ . '/..' . '/symfony/polyfill-intl-idn/bootstrap.php', '0d59ee240a4cd96ddbb4ff164fccea4d' => __DIR__ . '/..' . '/symfony/polyfill-php73/bootstrap.php', - 'd767e4fc2dc52fe66584ab8c6684783e' => __DIR__ . '/..' . '/adbario/php-dot-notation/src/helpers.php', + '66453932bc1be9fb2f910a27947d11b6' => __DIR__ . '/..' . '/alibabacloud/client/src/Functions.php', '2cffec82183ee1cea088009cef9a6fc3' => __DIR__ . '/..' . '/ezyang/htmlpurifier/library/HTMLPurifier.composer.php', - 'b067bc7112e384b61c701452d53a14a8' => __DIR__ . '/..' . '/mtdowling/jmespath.php/src/JmesPath.php', 'c5521cebe610a9bf42c44b3a5163adfd' => __DIR__ . '/..' . '/overtrue/socialite/src/Contracts/FactoryInterface.php', 'ccd11c8e7dd9b33638b248681bdfba27' => __DIR__ . '/..' . '/overtrue/socialite/src/Contracts/UserInterface.php', '5649552725dea6ec47381627600e3ac1' => __DIR__ . '/..' . '/overtrue/socialite/src/Contracts/ProviderInterface.php', '23c18046f52bef3eea034657bafda50f' => __DIR__ . '/..' . '/symfony/polyfill-php81/bootstrap.php', - '66453932bc1be9fb2f910a27947d11b6' => __DIR__ . '/..' . '/alibabacloud/client/src/Functions.php', 'cd5441689b14144e5573bf989ee47b34' => __DIR__ . '/..' . '/qcloud/cos-sdk-v5/src/Common.php', '841780ea2e1d6545ea3a253239d59c05' => __DIR__ . '/..' . '/qiniu/php-sdk/src/Qiniu/functions.php', '941748b3c8cae4466c827dfb5ca9602a' => __DIR__ . '/..' . '/rmccue/requests/library/Deprecated.php', @@ -112,6 +112,7 @@ class ComposerStaticInit7f3b0f886ea5f6310a43341d4e2b8ffb 'O' => array ( 'Overtrue\\Socialite\\' => 19, + 'OneSm\\' => 6, 'OSS\\' => 4, ), 'N' => @@ -125,6 +126,11 @@ class ComposerStaticInit7f3b0f886ea5f6310a43341d4e2b8ffb 'Monolog\\' => 8, 'Matrix\\' => 7, ), + 'L' => + array ( + 'League\\MimeTypeDetection\\' => 25, + 'League\\Flysystem\\' => 17, + ), 'J' => array ( 'JmesPath\\' => 9, @@ -149,6 +155,11 @@ class ComposerStaticInit7f3b0f886ea5f6310a43341d4e2b8ffb array ( 'EasyWeChat\\' => 11, ), + 'D' => + array ( + 'Darabonba\\OpenApi\\' => 18, + 'Darabonba\\GatewaySpi\\' => 21, + ), 'C' => array ( 'Cron\\' => 5, @@ -157,6 +168,14 @@ class ComposerStaticInit7f3b0f886ea5f6310a43341d4e2b8ffb ), 'A' => array ( + 'AlibabaCloud\\Tea\\XML\\' => 21, + 'AlibabaCloud\\Tea\\Utils\\' => 23, + 'AlibabaCloud\\Tea\\' => 17, + 'AlibabaCloud\\SDK\\Live\\V20161101\\' => 32, + 'AlibabaCloud\\OpenApiUtil\\' => 25, + 'AlibabaCloud\\Live\\' => 18, + 'AlibabaCloud\\Endpoint\\' => 22, + 'AlibabaCloud\\Credentials\\' => 25, 'AlibabaCloud\\Client\\' => 20, 'Adbar\\' => 6, ), @@ -182,10 +201,11 @@ class ComposerStaticInit7f3b0f886ea5f6310a43341d4e2b8ffb 'think\\' => array ( 0 => __DIR__ . '/..' . '/topthink/framework/src/think', - 1 => __DIR__ . '/..' . '/topthink/think-helper/src', - 2 => __DIR__ . '/..' . '/topthink/think-orm/src', - 3 => __DIR__ . '/..' . '/topthink/think-queue/src', - 4 => __DIR__ . '/..' . '/topthink/think-template/src', + 1 => __DIR__ . '/..' . '/topthink/think-filesystem/src', + 2 => __DIR__ . '/..' . '/topthink/think-helper/src', + 3 => __DIR__ . '/..' . '/topthink/think-orm/src', + 4 => __DIR__ . '/..' . '/topthink/think-queue/src', + 5 => __DIR__ . '/..' . '/topthink/think-template/src', ), 'clagiordano\\weblibs\\configmanager\\' => array ( @@ -348,6 +368,10 @@ class ComposerStaticInit7f3b0f886ea5f6310a43341d4e2b8ffb array ( 0 => __DIR__ . '/..' . '/overtrue/socialite/src', ), + 'OneSm\\' => + array ( + 0 => __DIR__ . '/..' . '/lizhichao/one-sm/src', + ), 'OSS\\' => array ( 0 => __DIR__ . '/..' . '/aliyuncs/oss-sdk-php/src/OSS', @@ -372,6 +396,14 @@ class ComposerStaticInit7f3b0f886ea5f6310a43341d4e2b8ffb array ( 0 => __DIR__ . '/..' . '/markbaker/matrix/classes/src', ), + 'League\\MimeTypeDetection\\' => + array ( + 0 => __DIR__ . '/..' . '/league/mime-type-detection/src', + ), + 'League\\Flysystem\\' => + array ( + 0 => __DIR__ . '/..' . '/league/flysystem/src', + ), 'JmesPath\\' => array ( 0 => __DIR__ . '/..' . '/mtdowling/jmespath.php/src', @@ -420,6 +452,14 @@ class ComposerStaticInit7f3b0f886ea5f6310a43341d4e2b8ffb array ( 0 => __DIR__ . '/..' . '/w7corp/easywechat/src', ), + 'Darabonba\\OpenApi\\' => + array ( + 0 => __DIR__ . '/..' . '/alibabacloud/darabonba-openapi/src', + ), + 'Darabonba\\GatewaySpi\\' => + array ( + 0 => __DIR__ . '/..' . '/alibabacloud/gateway-spi/src', + ), 'Cron\\' => array ( 0 => __DIR__ . '/..' . '/dragonmantank/cron-expression/src/Cron', @@ -432,6 +472,38 @@ class ComposerStaticInit7f3b0f886ea5f6310a43341d4e2b8ffb array ( 0 => __DIR__ . '/..' . '/nesbot/carbon/src/Carbon', ), + 'AlibabaCloud\\Tea\\XML\\' => + array ( + 0 => __DIR__ . '/..' . '/alibabacloud/tea-xml/src', + ), + 'AlibabaCloud\\Tea\\Utils\\' => + array ( + 0 => __DIR__ . '/..' . '/alibabacloud/tea-utils/src', + ), + 'AlibabaCloud\\Tea\\' => + array ( + 0 => __DIR__ . '/..' . '/alibabacloud/tea/src', + ), + 'AlibabaCloud\\SDK\\Live\\V20161101\\' => + array ( + 0 => __DIR__ . '/..' . '/alibabacloud/live-20161101/src', + ), + 'AlibabaCloud\\OpenApiUtil\\' => + array ( + 0 => __DIR__ . '/..' . '/alibabacloud/openapi-util/src', + ), + 'AlibabaCloud\\Live\\' => + array ( + 0 => __DIR__ . '/..' . '/alibabacloud/live', + ), + 'AlibabaCloud\\Endpoint\\' => + array ( + 0 => __DIR__ . '/..' . '/alibabacloud/endpoint-util/src', + ), + 'AlibabaCloud\\Credentials\\' => + array ( + 0 => __DIR__ . '/..' . '/alibabacloud/credentials/src', + ), 'AlibabaCloud\\Client\\' => array ( 0 => __DIR__ . '/..' . '/alibabacloud/client/src', diff --git a/vendor/composer/installed.json b/vendor/composer/installed.json index 053e19f81..2452f376c 100644 --- a/vendor/composer/installed.json +++ b/vendor/composer/installed.json @@ -155,6 +155,593 @@ }, "install-path": "../alibabacloud/client" }, + { + "name": "alibabacloud/credentials", + "version": "1.1.5", + "version_normalized": "1.1.5.0", + "source": { + "type": "git", + "url": "https://github.com/aliyun/credentials-php.git", + "reference": "1d8383ceef695974a88a3859c42e235fd2e3981a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/aliyun/credentials-php/zipball/1d8383ceef695974a88a3859c42e235fd2e3981a", + "reference": "1d8383ceef695974a88a3859c42e235fd2e3981a", + "shasum": "", + "mirrors": [ + { + "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%", + "preferred": true + } + ] + }, + "require": { + "adbario/php-dot-notation": "^2.2", + "alibabacloud/tea": "^3.0", + "ext-curl": "*", + "ext-json": "*", + "ext-libxml": "*", + "ext-mbstring": "*", + "ext-openssl": "*", + "ext-simplexml": "*", + "ext-xmlwriter": "*", + "guzzlehttp/guzzle": "^6.3|^7.0", + "php": ">=5.6" + }, + "require-dev": { + "composer/composer": "^1.8", + "drupal/coder": "^8.3", + "ext-dom": "*", + "ext-pcre": "*", + "ext-sockets": "*", + "ext-spl": "*", + "mikey179/vfsstream": "^1.6", + "monolog/monolog": "^1.24", + "phpunit/phpunit": "^5.7|^6.6|^7.5", + "psr/cache": "^1.0", + "symfony/dotenv": "^3.4", + "symfony/var-dumper": "^3.4" + }, + "suggest": { + "ext-sockets": "To use client-side monitoring" + }, + "time": "2023-04-11T02:12:12+00:00", + "type": "library", + "installation-source": "dist", + "autoload": { + "psr-4": { + "AlibabaCloud\\Credentials\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "Apache-2.0" + ], + "authors": [ + { + "name": "Alibaba Cloud SDK", + "email": "sdk-team@alibabacloud.com", + "homepage": "http://www.alibabacloud.com" + } + ], + "description": "Alibaba Cloud Credentials for PHP", + "homepage": "https://www.alibabacloud.com/", + "keywords": [ + "alibaba", + "alibabacloud", + "aliyun", + "client", + "cloud", + "credentials", + "library", + "sdk", + "tool" + ], + "support": { + "issues": "https://github.com/aliyun/credentials-php/issues", + "source": "https://github.com/aliyun/credentials-php" + }, + "install-path": "../alibabacloud/credentials" + }, + { + "name": "alibabacloud/darabonba-openapi", + "version": "0.2.9", + "version_normalized": "0.2.9.0", + "source": { + "type": "git", + "url": "https://github.com/alibabacloud-sdk-php/darabonba-openapi.git", + "reference": "4cdfc36615f345786d668dfbaf68d9a301b6dbe2" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/alibabacloud-sdk-php/darabonba-openapi/zipball/4cdfc36615f345786d668dfbaf68d9a301b6dbe2", + "reference": "4cdfc36615f345786d668dfbaf68d9a301b6dbe2", + "shasum": "", + "mirrors": [ + { + "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%", + "preferred": true + } + ] + }, + "require": { + "alibabacloud/credentials": "^1.1", + "alibabacloud/gateway-spi": "^1", + "alibabacloud/openapi-util": "^0.1.10|^0.2.1", + "alibabacloud/tea-utils": "^0.2.17", + "alibabacloud/tea-xml": "^0.2", + "php": ">5.5" + }, + "time": "2023-02-06T12:02:21+00:00", + "type": "library", + "installation-source": "dist", + "autoload": { + "psr-4": { + "Darabonba\\OpenApi\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "Apache-2.0" + ], + "authors": [ + { + "name": "Alibaba Cloud SDK", + "email": "sdk-team@alibabacloud.com" + } + ], + "description": "Alibaba Cloud OpenApi Client", + "support": { + "issues": "https://github.com/alibabacloud-sdk-php/darabonba-openapi/issues", + "source": "https://github.com/alibabacloud-sdk-php/darabonba-openapi/tree/0.2.9" + }, + "install-path": "../alibabacloud/darabonba-openapi" + }, + { + "name": "alibabacloud/endpoint-util", + "version": "0.1.1", + "version_normalized": "0.1.1.0", + "source": { + "type": "git", + "url": "https://github.com/alibabacloud-sdk-php/endpoint-util.git", + "reference": "f3fe88a25d8df4faa3b0ae14ff202a9cc094e6c5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/alibabacloud-sdk-php/endpoint-util/zipball/f3fe88a25d8df4faa3b0ae14ff202a9cc094e6c5", + "reference": "f3fe88a25d8df4faa3b0ae14ff202a9cc094e6c5", + "shasum": "", + "mirrors": [ + { + "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%", + "preferred": true + } + ] + }, + "require": { + "php": ">5.5" + }, + "require-dev": { + "phpunit/phpunit": "^4.8.35|^5.4.3" + }, + "time": "2020-06-04T10:57:15+00:00", + "type": "library", + "installation-source": "dist", + "autoload": { + "psr-4": { + "AlibabaCloud\\Endpoint\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "Apache-2.0" + ], + "authors": [ + { + "name": "Alibaba Cloud SDK", + "email": "sdk-team@alibabacloud.com" + } + ], + "description": "Alibaba Cloud Endpoint Library for PHP", + "support": { + "source": "https://github.com/alibabacloud-sdk-php/endpoint-util/tree/0.1.1" + }, + "install-path": "../alibabacloud/endpoint-util" + }, + { + "name": "alibabacloud/gateway-spi", + "version": "1.0.0", + "version_normalized": "1.0.0.0", + "source": { + "type": "git", + "url": "https://github.com/alibabacloud-sdk-php/alibabacloud-gateway-spi.git", + "reference": "7440f77750c329d8ab252db1d1d967314ccd1fcb" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/alibabacloud-sdk-php/alibabacloud-gateway-spi/zipball/7440f77750c329d8ab252db1d1d967314ccd1fcb", + "reference": "7440f77750c329d8ab252db1d1d967314ccd1fcb", + "shasum": "", + "mirrors": [ + { + "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%", + "preferred": true + } + ] + }, + "require": { + "alibabacloud/credentials": "^1.1", + "php": ">5.5" + }, + "time": "2022-07-14T05:31:35+00:00", + "type": "library", + "installation-source": "dist", + "autoload": { + "psr-4": { + "Darabonba\\GatewaySpi\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "Apache-2.0" + ], + "authors": [ + { + "name": "Alibaba Cloud SDK", + "email": "sdk-team@alibabacloud.com" + } + ], + "description": "Alibaba Cloud Gateway SPI Client", + "support": { + "source": "https://github.com/alibabacloud-sdk-php/alibabacloud-gateway-spi/tree/1.0.0" + }, + "install-path": "../alibabacloud/gateway-spi" + }, + { + "name": "alibabacloud/live", + "version": "1.8.958", + "version_normalized": "1.8.958.0", + "source": { + "type": "git", + "url": "https://github.com/alibabacloud-sdk-php/live.git", + "reference": "2dc756e9e156cb33bc1287d28fc3fade87e4ae60" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/alibabacloud-sdk-php/live/zipball/2dc756e9e156cb33bc1287d28fc3fade87e4ae60", + "reference": "2dc756e9e156cb33bc1287d28fc3fade87e4ae60", + "shasum": "", + "mirrors": [ + { + "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%", + "preferred": true + } + ] + }, + "require": { + "alibabacloud/client": "^1.5", + "php": ">=5.5" + }, + "time": "2021-04-29T09:14:45+00:00", + "type": "library", + "installation-source": "dist", + "autoload": { + "psr-4": { + "AlibabaCloud\\Live\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "Apache-2.0" + ], + "authors": [ + { + "name": "Alibaba Cloud SDK", + "email": "sdk-team@alibabacloud.com", + "homepage": "http://www.alibabacloud.com" + } + ], + "description": "Alibaba Cloud Live SDK for PHP", + "homepage": "https://www.alibabacloud.com/", + "keywords": [ + "alibaba", + "alibabacloud", + "aliyun", + "cloud", + "library", + "live", + "sdk" + ], + "support": { + "issues": "https://github.com/alibabacloud-sdk-php/live/issues", + "source": "https://github.com/alibabacloud-sdk-php/live" + }, + "install-path": "../alibabacloud/live" + }, + { + "name": "alibabacloud/live-20161101", + "version": "1.1.1", + "version_normalized": "1.1.1.0", + "source": { + "type": "git", + "url": "https://github.com/alibabacloud-sdk-php/live-20161101.git", + "reference": "6aa9436929b8d8d2b5a51daeca7227ebc88e1717" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/alibabacloud-sdk-php/live-20161101/zipball/6aa9436929b8d8d2b5a51daeca7227ebc88e1717", + "reference": "6aa9436929b8d8d2b5a51daeca7227ebc88e1717", + "shasum": "", + "mirrors": [ + { + "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%", + "preferred": true + } + ] + }, + "require": { + "alibabacloud/darabonba-openapi": "^0.2.8", + "alibabacloud/endpoint-util": "^0.1.0", + "alibabacloud/openapi-util": "^0.1.10|^0.2.0", + "alibabacloud/tea-utils": "^0.2.17", + "php": ">5.5" + }, + "time": "2022-12-05T03:08:45+00:00", + "type": "library", + "installation-source": "dist", + "autoload": { + "psr-4": { + "AlibabaCloud\\SDK\\Live\\V20161101\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "Apache-2.0" + ], + "authors": [ + { + "name": "Alibaba Cloud SDK", + "email": "sdk-team@alibabacloud.com" + } + ], + "description": "Alibaba Cloud ApsaraVideo for Live (20161101) SDK Library for PHP", + "support": { + "source": "https://github.com/alibabacloud-sdk-php/live-20161101/tree/1.1.1" + }, + "install-path": "../alibabacloud/live-20161101" + }, + { + "name": "alibabacloud/openapi-util", + "version": "0.2.1", + "version_normalized": "0.2.1.0", + "source": { + "type": "git", + "url": "https://github.com/alibabacloud-sdk-php/openapi-util.git", + "reference": "f31f7bcd835e08ca24b6b8ba33637eb4eceb093a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/alibabacloud-sdk-php/openapi-util/zipball/f31f7bcd835e08ca24b6b8ba33637eb4eceb093a", + "reference": "f31f7bcd835e08ca24b6b8ba33637eb4eceb093a", + "shasum": "", + "mirrors": [ + { + "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%", + "preferred": true + } + ] + }, + "require": { + "alibabacloud/tea": "^3.1", + "alibabacloud/tea-utils": "^0.2", + "lizhichao/one-sm": "^1.5", + "php": ">5.5" + }, + "require-dev": { + "phpunit/phpunit": "*" + }, + "time": "2023-01-10T09:10:10+00:00", + "type": "library", + "installation-source": "dist", + "autoload": { + "psr-4": { + "AlibabaCloud\\OpenApiUtil\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "Apache-2.0" + ], + "authors": [ + { + "name": "Alibaba Cloud SDK", + "email": "sdk-team@alibabacloud.com" + } + ], + "description": "Alibaba Cloud OpenApi Util", + "support": { + "issues": "https://github.com/alibabacloud-sdk-php/openapi-util/issues", + "source": "https://github.com/alibabacloud-sdk-php/openapi-util/tree/0.2.1" + }, + "install-path": "../alibabacloud/openapi-util" + }, + { + "name": "alibabacloud/tea", + "version": "3.2.1", + "version_normalized": "3.2.1.0", + "source": { + "type": "git", + "url": "https://github.com/aliyun/tea-php.git", + "reference": "1619cb96c158384f72b873e1f85de8b299c9c367" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/aliyun/tea-php/zipball/1619cb96c158384f72b873e1f85de8b299c9c367", + "reference": "1619cb96c158384f72b873e1f85de8b299c9c367", + "shasum": "", + "mirrors": [ + { + "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%", + "preferred": true + } + ] + }, + "require": { + "adbario/php-dot-notation": "^2.4", + "ext-curl": "*", + "ext-json": "*", + "ext-libxml": "*", + "ext-mbstring": "*", + "ext-openssl": "*", + "ext-simplexml": "*", + "ext-xmlwriter": "*", + "guzzlehttp/guzzle": "^6.3|^7.0", + "php": ">=5.5" + }, + "require-dev": { + "phpunit/phpunit": "*", + "symfony/dotenv": "^3.4", + "symfony/var-dumper": "^3.4" + }, + "suggest": { + "ext-sockets": "To use client-side monitoring" + }, + "time": "2023-05-16T06:43:41+00:00", + "type": "library", + "installation-source": "dist", + "autoload": { + "psr-4": { + "AlibabaCloud\\Tea\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "Apache-2.0" + ], + "authors": [ + { + "name": "Alibaba Cloud SDK", + "email": "sdk-team@alibabacloud.com", + "homepage": "http://www.alibabacloud.com" + } + ], + "description": "Client of Tea for PHP", + "homepage": "https://www.alibabacloud.com/", + "keywords": [ + "alibabacloud", + "client", + "cloud", + "tea" + ], + "support": { + "issues": "https://github.com/aliyun/tea-php/issues", + "source": "https://github.com/aliyun/tea-php" + }, + "install-path": "../alibabacloud/tea" + }, + { + "name": "alibabacloud/tea-utils", + "version": "0.2.19", + "version_normalized": "0.2.19.0", + "source": { + "type": "git", + "url": "https://github.com/alibabacloud-sdk-php/tea-utils.git", + "reference": "8dfc1a93e9415818e93a621b644abbb84981aea4" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/alibabacloud-sdk-php/tea-utils/zipball/8dfc1a93e9415818e93a621b644abbb84981aea4", + "reference": "8dfc1a93e9415818e93a621b644abbb84981aea4", + "shasum": "", + "mirrors": [ + { + "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%", + "preferred": true + } + ] + }, + "require": { + "alibabacloud/tea": "^3.1", + "php": ">5.5" + }, + "time": "2023-06-26T09:49:19+00:00", + "type": "library", + "installation-source": "dist", + "autoload": { + "psr-4": { + "AlibabaCloud\\Tea\\Utils\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "Apache-2.0" + ], + "authors": [ + { + "name": "Alibaba Cloud SDK", + "email": "sdk-team@alibabacloud.com" + } + ], + "description": "Alibaba Cloud Tea Utils for PHP", + "support": { + "issues": "https://github.com/aliyun/tea-util/issues", + "source": "https://github.com/aliyun/tea-util" + }, + "install-path": "../alibabacloud/tea-utils" + }, + { + "name": "alibabacloud/tea-xml", + "version": "0.2.4", + "version_normalized": "0.2.4.0", + "source": { + "type": "git", + "url": "https://github.com/alibabacloud-sdk-php/tea-xml.git", + "reference": "3e0c000bf536224eebbac913c371bef174c0a16a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/alibabacloud-sdk-php/tea-xml/zipball/3e0c000bf536224eebbac913c371bef174c0a16a", + "reference": "3e0c000bf536224eebbac913c371bef174c0a16a", + "shasum": "", + "mirrors": [ + { + "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%", + "preferred": true + } + ] + }, + "require": { + "php": ">5.5" + }, + "require-dev": { + "phpunit/phpunit": "*", + "symfony/var-dumper": "*" + }, + "time": "2022-08-02T04:12:58+00:00", + "type": "library", + "installation-source": "dist", + "autoload": { + "psr-4": { + "AlibabaCloud\\Tea\\XML\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "Apache-2.0" + ], + "authors": [ + { + "name": "Alibaba Cloud SDK", + "email": "sdk-team@alibabacloud.com" + } + ], + "description": "Alibaba Cloud Tea XML Library for PHP", + "support": { + "source": "https://github.com/alibabacloud-sdk-php/tea-xml/tree/0.2.4" + }, + "install-path": "../alibabacloud/tea-xml" + }, { "name": "aliyuncs/oss-sdk-php", "version": "v2.6.0", @@ -1119,6 +1706,229 @@ }, "install-path": "../jpush/jpush" }, + { + "name": "league/flysystem", + "version": "2.5.0", + "version_normalized": "2.5.0.0", + "source": { + "type": "git", + "url": "https://github.com/thephpleague/flysystem.git", + "reference": "8aaffb653c5777781b0f7f69a5d937baf7ab6cdb" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/8aaffb653c5777781b0f7f69a5d937baf7ab6cdb", + "reference": "8aaffb653c5777781b0f7f69a5d937baf7ab6cdb", + "shasum": "", + "mirrors": [ + { + "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%", + "preferred": true + } + ] + }, + "require": { + "ext-json": "*", + "league/mime-type-detection": "^1.0.0", + "php": "^7.2 || ^8.0" + }, + "conflict": { + "guzzlehttp/ringphp": "<1.1.1" + }, + "require-dev": { + "async-aws/s3": "^1.5", + "async-aws/simple-s3": "^1.0", + "aws/aws-sdk-php": "^3.132.4", + "composer/semver": "^3.0", + "ext-fileinfo": "*", + "ext-ftp": "*", + "friendsofphp/php-cs-fixer": "^3.2", + "google/cloud-storage": "^1.23", + "phpseclib/phpseclib": "^2.0", + "phpstan/phpstan": "^0.12.26", + "phpunit/phpunit": "^8.5 || ^9.4", + "sabre/dav": "^4.1" + }, + "time": "2022-09-17T21:02:32+00:00", + "type": "library", + "installation-source": "dist", + "autoload": { + "psr-4": { + "League\\Flysystem\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Frank de Jonge", + "email": "info@frankdejonge.nl" + } + ], + "description": "File storage abstraction for PHP", + "keywords": [ + "WebDAV", + "aws", + "cloud", + "file", + "files", + "filesystem", + "filesystems", + "ftp", + "s3", + "sftp", + "storage" + ], + "support": { + "issues": "https://github.com/thephpleague/flysystem/issues", + "source": "https://github.com/thephpleague/flysystem/tree/2.5.0" + }, + "funding": [ + { + "url": "https://ecologi.com/frankdejonge", + "type": "custom" + }, + { + "url": "https://github.com/frankdejonge", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/league/flysystem", + "type": "tidelift" + } + ], + "install-path": "../league/flysystem" + }, + { + "name": "league/mime-type-detection", + "version": "1.13.0", + "version_normalized": "1.13.0.0", + "source": { + "type": "git", + "url": "https://github.com/thephpleague/mime-type-detection.git", + "reference": "a6dfb1194a2946fcdc1f38219445234f65b35c96" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/a6dfb1194a2946fcdc1f38219445234f65b35c96", + "reference": "a6dfb1194a2946fcdc1f38219445234f65b35c96", + "shasum": "", + "mirrors": [ + { + "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%", + "preferred": true + } + ] + }, + "require": { + "ext-fileinfo": "*", + "php": "^7.4 || ^8.0" + }, + "require-dev": { + "friendsofphp/php-cs-fixer": "^3.2", + "phpstan/phpstan": "^0.12.68", + "phpunit/phpunit": "^8.5.8 || ^9.3 || ^10.0" + }, + "time": "2023-08-05T12:09:49+00:00", + "type": "library", + "installation-source": "dist", + "autoload": { + "psr-4": { + "League\\MimeTypeDetection\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Frank de Jonge", + "email": "info@frankdejonge.nl" + } + ], + "description": "Mime-type detection for Flysystem", + "support": { + "issues": "https://github.com/thephpleague/mime-type-detection/issues", + "source": "https://github.com/thephpleague/mime-type-detection/tree/1.13.0" + }, + "funding": [ + { + "url": "https://github.com/frankdejonge", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/league/flysystem", + "type": "tidelift" + } + ], + "install-path": "../league/mime-type-detection" + }, + { + "name": "lizhichao/one-sm", + "version": "1.10", + "version_normalized": "1.10.0.0", + "source": { + "type": "git", + "url": "https://github.com/lizhichao/sm.git", + "reference": "687a012a44a5bfd4d9143a0234e1060543be455a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/lizhichao/sm/zipball/687a012a44a5bfd4d9143a0234e1060543be455a", + "reference": "687a012a44a5bfd4d9143a0234e1060543be455a", + "shasum": "", + "mirrors": [ + { + "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%", + "preferred": true + } + ] + }, + "require": { + "php": ">=5.6" + }, + "time": "2021-05-26T06:19:22+00:00", + "type": "library", + "installation-source": "dist", + "autoload": { + "psr-4": { + "OneSm\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "Apache-2.0" + ], + "authors": [ + { + "name": "tanszhe", + "email": "1018595261@qq.com" + } + ], + "description": "国密sm3", + "keywords": [ + "php", + "sm3" + ], + "support": { + "issues": "https://github.com/lizhichao/sm/issues", + "source": "https://github.com/lizhichao/sm/tree/1.10" + }, + "funding": [ + { + "url": "https://www.vicsdf.com/img/w.jpg", + "type": "custom" + }, + { + "url": "https://www.vicsdf.com/img/z.jpg", + "type": "custom" + } + ], + "install-path": "../lizhichao/one-sm" + }, { "name": "maennchen/zipstream-php", "version": "2.4.0", @@ -4974,6 +5784,61 @@ }, "install-path": "../topthink/framework" }, + { + "name": "topthink/think-filesystem", + "version": "v2.0.2", + "version_normalized": "2.0.2.0", + "source": { + "type": "git", + "url": "https://github.com/top-think/think-filesystem.git", + "reference": "c08503232fcae0c3c7fefae5e6b5c841ffe09f2f" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/top-think/think-filesystem/zipball/c08503232fcae0c3c7fefae5e6b5c841ffe09f2f", + "reference": "c08503232fcae0c3c7fefae5e6b5c841ffe09f2f", + "shasum": "", + "mirrors": [ + { + "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%", + "preferred": true + } + ] + }, + "require": { + "league/flysystem": "^2.0", + "topthink/framework": "^6.1|^8.0" + }, + "require-dev": { + "mikey179/vfsstream": "^1.6", + "mockery/mockery": "^1.2", + "phpunit/phpunit": "^8.0" + }, + "time": "2023-02-08T01:23:42+00:00", + "type": "library", + "installation-source": "dist", + "autoload": { + "psr-4": { + "think\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "Apache-2.0" + ], + "authors": [ + { + "name": "yunwuxin", + "email": "448901948@qq.com" + } + ], + "description": "The ThinkPHP6.1 Filesystem Package", + "support": { + "issues": "https://github.com/top-think/think-filesystem/issues", + "source": "https://github.com/top-think/think-filesystem/tree/v2.0.2" + }, + "install-path": "../topthink/think-filesystem" + }, { "name": "topthink/think-helper", "version": "v3.1.6", diff --git a/vendor/composer/installed.php b/vendor/composer/installed.php index 210ff4cb3..a0107ca66 100644 --- a/vendor/composer/installed.php +++ b/vendor/composer/installed.php @@ -3,7 +3,7 @@ 'name' => 'topthink/think', 'pretty_version' => 'dev-master', 'version' => 'dev-master', - 'reference' => 'a05bdfc5cb5ebc4e7fddfde0185716a16d4898ca', + 'reference' => 'a33f154b3124fdc0dfd6899f4340ae6e48e88e3a', 'type' => 'project', 'install_path' => __DIR__ . '/../../', 'aliases' => array(), @@ -28,6 +28,96 @@ 'aliases' => array(), 'dev_requirement' => false, ), + 'alibabacloud/credentials' => array( + 'pretty_version' => '1.1.5', + 'version' => '1.1.5.0', + 'reference' => '1d8383ceef695974a88a3859c42e235fd2e3981a', + 'type' => 'library', + 'install_path' => __DIR__ . '/../alibabacloud/credentials', + 'aliases' => array(), + 'dev_requirement' => false, + ), + 'alibabacloud/darabonba-openapi' => array( + 'pretty_version' => '0.2.9', + 'version' => '0.2.9.0', + 'reference' => '4cdfc36615f345786d668dfbaf68d9a301b6dbe2', + 'type' => 'library', + 'install_path' => __DIR__ . '/../alibabacloud/darabonba-openapi', + 'aliases' => array(), + 'dev_requirement' => false, + ), + 'alibabacloud/endpoint-util' => array( + 'pretty_version' => '0.1.1', + 'version' => '0.1.1.0', + 'reference' => 'f3fe88a25d8df4faa3b0ae14ff202a9cc094e6c5', + 'type' => 'library', + 'install_path' => __DIR__ . '/../alibabacloud/endpoint-util', + 'aliases' => array(), + 'dev_requirement' => false, + ), + 'alibabacloud/gateway-spi' => array( + 'pretty_version' => '1.0.0', + 'version' => '1.0.0.0', + 'reference' => '7440f77750c329d8ab252db1d1d967314ccd1fcb', + 'type' => 'library', + 'install_path' => __DIR__ . '/../alibabacloud/gateway-spi', + 'aliases' => array(), + 'dev_requirement' => false, + ), + 'alibabacloud/live' => array( + 'pretty_version' => '1.8.958', + 'version' => '1.8.958.0', + 'reference' => '2dc756e9e156cb33bc1287d28fc3fade87e4ae60', + 'type' => 'library', + 'install_path' => __DIR__ . '/../alibabacloud/live', + 'aliases' => array(), + 'dev_requirement' => false, + ), + 'alibabacloud/live-20161101' => array( + 'pretty_version' => '1.1.1', + 'version' => '1.1.1.0', + 'reference' => '6aa9436929b8d8d2b5a51daeca7227ebc88e1717', + 'type' => 'library', + 'install_path' => __DIR__ . '/../alibabacloud/live-20161101', + 'aliases' => array(), + 'dev_requirement' => false, + ), + 'alibabacloud/openapi-util' => array( + 'pretty_version' => '0.2.1', + 'version' => '0.2.1.0', + 'reference' => 'f31f7bcd835e08ca24b6b8ba33637eb4eceb093a', + 'type' => 'library', + 'install_path' => __DIR__ . '/../alibabacloud/openapi-util', + 'aliases' => array(), + 'dev_requirement' => false, + ), + 'alibabacloud/tea' => array( + 'pretty_version' => '3.2.1', + 'version' => '3.2.1.0', + 'reference' => '1619cb96c158384f72b873e1f85de8b299c9c367', + 'type' => 'library', + 'install_path' => __DIR__ . '/../alibabacloud/tea', + 'aliases' => array(), + 'dev_requirement' => false, + ), + 'alibabacloud/tea-utils' => array( + 'pretty_version' => '0.2.19', + 'version' => '0.2.19.0', + 'reference' => '8dfc1a93e9415818e93a621b644abbb84981aea4', + 'type' => 'library', + 'install_path' => __DIR__ . '/../alibabacloud/tea-utils', + 'aliases' => array(), + 'dev_requirement' => false, + ), + 'alibabacloud/tea-xml' => array( + 'pretty_version' => '0.2.4', + 'version' => '0.2.4.0', + 'reference' => '3e0c000bf536224eebbac913c371bef174c0a16a', + 'type' => 'library', + 'install_path' => __DIR__ . '/../alibabacloud/tea-xml', + 'aliases' => array(), + 'dev_requirement' => false, + ), 'aliyuncs/oss-sdk-php' => array( 'pretty_version' => 'v2.6.0', 'version' => '2.6.0.0', @@ -136,6 +226,33 @@ 'aliases' => array(), 'dev_requirement' => false, ), + 'league/flysystem' => array( + 'pretty_version' => '2.5.0', + 'version' => '2.5.0.0', + 'reference' => '8aaffb653c5777781b0f7f69a5d937baf7ab6cdb', + 'type' => 'library', + 'install_path' => __DIR__ . '/../league/flysystem', + 'aliases' => array(), + 'dev_requirement' => false, + ), + 'league/mime-type-detection' => array( + 'pretty_version' => '1.13.0', + 'version' => '1.13.0.0', + 'reference' => 'a6dfb1194a2946fcdc1f38219445234f65b35c96', + 'type' => 'library', + 'install_path' => __DIR__ . '/../league/mime-type-detection', + 'aliases' => array(), + 'dev_requirement' => false, + ), + 'lizhichao/one-sm' => array( + 'pretty_version' => '1.10', + 'version' => '1.10.0.0', + 'reference' => '687a012a44a5bfd4d9143a0234e1060543be455a', + 'type' => 'library', + 'install_path' => __DIR__ . '/../lizhichao/one-sm', + 'aliases' => array(), + 'dev_requirement' => false, + ), 'maennchen/zipstream-php' => array( 'pretty_version' => '2.4.0', 'version' => '2.4.0.0', @@ -658,12 +775,21 @@ 'topthink/think' => array( 'pretty_version' => 'dev-master', 'version' => 'dev-master', - 'reference' => 'a05bdfc5cb5ebc4e7fddfde0185716a16d4898ca', + 'reference' => 'a33f154b3124fdc0dfd6899f4340ae6e48e88e3a', 'type' => 'project', 'install_path' => __DIR__ . '/../../', 'aliases' => array(), 'dev_requirement' => false, ), + 'topthink/think-filesystem' => array( + 'pretty_version' => 'v2.0.2', + 'version' => '2.0.2.0', + 'reference' => 'c08503232fcae0c3c7fefae5e6b5c841ffe09f2f', + 'type' => 'library', + 'install_path' => __DIR__ . '/../topthink/think-filesystem', + 'aliases' => array(), + 'dev_requirement' => false, + ), 'topthink/think-helper' => array( 'pretty_version' => 'v3.1.6', 'version' => '3.1.6.0', diff --git a/vendor/league/flysystem/INFO.md b/vendor/league/flysystem/INFO.md new file mode 100644 index 000000000..8a44d14ec --- /dev/null +++ b/vendor/league/flysystem/INFO.md @@ -0,0 +1,2 @@ +View the docs at: https://flysystem.thephpleague.com/v2/ +Changelog at: https://github.com/thephpleague/flysystem/blob/2.x/CHANGELOG.md diff --git a/vendor/league/flysystem/LICENSE b/vendor/league/flysystem/LICENSE new file mode 100644 index 000000000..1f0165218 --- /dev/null +++ b/vendor/league/flysystem/LICENSE @@ -0,0 +1,19 @@ +Copyright (c) 2013-2022 Frank de Jonge + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is furnished +to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. diff --git a/vendor/league/flysystem/composer.json b/vendor/league/flysystem/composer.json new file mode 100644 index 000000000..9c244f8c0 --- /dev/null +++ b/vendor/league/flysystem/composer.json @@ -0,0 +1,48 @@ +{ + "name": "league/flysystem", + "description": "File storage abstraction for PHP", + "keywords": [ + "filesystem", "filesystems", "files", "storage", "aws", + "s3", "ftp", "sftp", "webdav", "file", "cloud" + ], + "scripts": { + "phpstan": "vendor/bin/phpstan analyse -l 6 src" + }, + "type": "library", + "minimum-stability": "dev", + "prefer-stable": true, + "autoload": { + "psr-4": { + "League\\Flysystem\\": "src" + } + }, + "require": { + "php": "^7.2 || ^8.0", + "ext-json": "*", + "league/mime-type-detection": "^1.0.0" + }, + "require-dev": { + "ext-fileinfo": "*", + "ext-ftp": "*", + "phpunit/phpunit": "^8.5 || ^9.4", + "phpstan/phpstan": "^0.12.26", + "phpseclib/phpseclib": "^2.0", + "aws/aws-sdk-php": "^3.132.4", + "composer/semver": "^3.0", + "friendsofphp/php-cs-fixer": "^3.2", + "google/cloud-storage": "^1.23", + "async-aws/s3": "^1.5", + "async-aws/simple-s3": "^1.0", + "sabre/dav": "^4.1" + }, + "conflict": { + "guzzlehttp/ringphp": "<1.1.1" + }, + "license": "MIT", + "authors": [ + { + "name": "Frank de Jonge", + "email": "info@frankdejonge.nl" + } + ] +} diff --git a/vendor/league/flysystem/config.subsplit-publish.json b/vendor/league/flysystem/config.subsplit-publish.json new file mode 100644 index 000000000..b0de91ee2 --- /dev/null +++ b/vendor/league/flysystem/config.subsplit-publish.json @@ -0,0 +1,49 @@ +{ + "sub-splits": [ + { + "name": "ftp", + "directory": "src/Ftp", + "target": "git@github.com:thephpleague/flysystem-ftp.git" + }, + { + "name": "sftp", + "directory": "src/PhpseclibV2", + "target": "git@github.com:thephpleague/flysystem-sftp.git" + }, + { + "name": "sftp-v3", + "directory": "src/PhpseclibV3", + "target": "git@github.com:thephpleague/flysystem-sftp-v3.git" + }, + { + "name": "memory", + "directory": "src/InMemory", + "target": "git@github.com:thephpleague/flysystem-memory.git" + }, + { + "name": "ziparchive", + "directory": "src/ZipArchive", + "target": "git@github.com:thephpleague/flysystem-ziparchive.git" + }, + { + "name": "aws-s3-v3", + "directory": "src/AwsS3V3", + "target": "git@github.com:thephpleague/flysystem-aws-s3-v3.git" + }, + { + "name": "async-aws-s3", + "directory": "src/AsyncAwsS3", + "target": "git@github.com:thephpleague/flysystem-async-aws-s3.git" + }, + { + "name": "google-cloud-storage", + "directory": "src/GoogleCloudStorage", + "target": "git@github.com:thephpleague/flysystem-google-cloud-storage.git" + }, + { + "name": "adapter-test-utilities", + "directory": "src/AdapterTestUtilities", + "target": "git@github.com:thephpleague/flysystem-adapter-test-utilities.git" + } + ] +} diff --git a/vendor/league/flysystem/docker-compose.yml b/vendor/league/flysystem/docker-compose.yml new file mode 100644 index 000000000..3ab6b7729 --- /dev/null +++ b/vendor/league/flysystem/docker-compose.yml @@ -0,0 +1,58 @@ +--- +version: "3" +services: + webdav: + image: bytemark/webdav + restart: always + ports: + - "80:80" + environment: + AUTH_TYPE: Digest + USERNAME: alice + PASSWORD: secret1234 + sftp: + container_name: sftp + restart: always + image: atmoz/sftp + volumes: + - ./test_files/sftp/users.conf:/etc/sftp/users.conf + - ./test_files/sftp/ssh_host_ed25519_key:/etc/ssh/ssh_host_ed25519_key + - ./test_files/sftp/ssh_host_rsa_key:/etc/ssh/ssh_host_rsa_key + - ./test_files/sftp/id_rsa.pub:/home/bar/.ssh/keys/id_rsa.pub + ports: + - "2222:22" + ftp: + container_name: ftp + restart: always + image: delfer/alpine-ftp-server + environment: + USERS: 'foo|pass|/home/foo/upload' + ADDRESS: 'localhost' + ports: + - "2121:21" + - "21000-21010:21000-21010" + ftpd: + container_name: ftpd + restart: always + environment: + PUBLICHOST: localhost + FTP_USER_NAME: foo + FTP_USER_PASS: pass + FTP_USER_HOME: /home/foo + image: stilliard/pure-ftpd + ports: + - "2122:21" + - "30000-30009:30000-30009" + command: "/run.sh -l puredb:/etc/pure-ftpd/pureftpd.pdb -E -j -P localhost" + toxiproxy: + container_name: toxiproxy + restart: unless-stopped + image: ghcr.io/shopify/toxiproxy + command: "-host 0.0.0.0 -config /opt/toxiproxy/config.json" + volumes: + - ./test_files/toxiproxy/toxiproxy.json:/opt/toxiproxy/config.json:ro + ports: + - "8474:8474" # HTTP API + - "8222:8222" # SFTP + - "8121:8121" # FTP + - "8122:8122" # FTPD diff --git a/vendor/league/flysystem/readme.md b/vendor/league/flysystem/readme.md new file mode 100644 index 000000000..0c0b98eaf --- /dev/null +++ b/vendor/league/flysystem/readme.md @@ -0,0 +1,45 @@ +# League\Flysystem + +[![Author](https://img.shields.io/badge/author-@frankdejonge-blue.svg)](https://twitter.com/frankdejonge) +[![Source Code](https://img.shields.io/badge/source-thephpleague/flysystem-blue.svg)](https://github.com/thephpleague/flysystem) +[![Latest Version](https://img.shields.io/github/tag/thephpleague/flysystem.svg)](https://github.com/thephpleague/flysystem/releases) +[![Software License](https://img.shields.io/badge/license-MIT-brightgreen.svg)](https://github.com/thephpleague/flysystem/blob/master/LICENSE) +[![Quality Assurance](https://github.com/thephpleague/flysystem/workflows/Quality%20Assurance/badge.svg?branch=2.x)](https://github.com/thephpleague/flysystem/actions?query=workflow%3A%22Quality+Assurance%22) +[![Total Downloads](https://img.shields.io/packagist/dt/league/flysystem.svg)](https://packagist.org/packages/league/flysystem) +![php 7.2+](https://img.shields.io/badge/php-min%207.2-red.svg) + +## About Flysystem + +Flysystem is a file storage library for PHP. It provides one interface to +interact with many types of filesystems. When you use Flysystem, you're +not only protected from vendor lock-in, you'll also have a consistent experience +for which ever storage is right for you. + +## Getting Started + +* **[New in V2](https://flysystem.thephpleague.com/v2/docs/what-is-new/)**: What it new in Flysystem V2? +* **[Architecture](https://flysystem.thephpleague.com/v2/docs/architecture/)**: Flysystem's internal architecture +* **[Flysystem API](https://flysystem.thephpleague.com/v2/docs/usage/filesystem-api/)**: How to interact with your Flysystem instance +* **[Upgrade to V2](https://flysystem.thephpleague.com/v2/docs/advanced/upgrade-to-2.0.0/)**: How to upgrade your Flysystem V1 instance to V2 + +### Commonly-Used Adapters + +* **[AsyncAws S3](https://flysystem.thephpleague.com/v2/docs/adapter/async-aws-s3/)** +* **[AWS S3](https://flysystem.thephpleague.com/v2/docs/adapter/aws-s3-v3/)** +* **[Local](https://flysystem.thephpleague.com/v2/docs/adapter/local/)** +* **[Memory](https://flysystem.thephpleague.com/v2/docs/adapter/in-memory/)** + +### Third party Adapters + +* **[Gitlab](https://github.com/RoyVoetman/flysystem-gitlab-storage)** +* **[Google Drive (using regular paths)](https://github.com/masbug/flysystem-google-drive-ext)** + +You can always [create an adapter](https://flysystem.thephpleague.com/v2/docs/advanced/creating-an-adapter/) yourself. + +## Security + +If you discover any security related issues, please email info@frankdejonge.nl instead of using the issue tracker. + +## Enjoy + +Oh, and if you've come down this far, you might as well follow me on [twitter](https://twitter.com/frankdejonge). diff --git a/vendor/league/flysystem/src/Config.php b/vendor/league/flysystem/src/Config.php new file mode 100644 index 000000000..77c3b5a1d --- /dev/null +++ b/vendor/league/flysystem/src/Config.php @@ -0,0 +1,43 @@ +options = $options; + } + + /** + * @param mixed $default + * + * @return mixed + */ + public function get(string $property, $default = null) + { + return $this->options[$property] ?? $default; + } + + public function extend(array $options): Config + { + return new Config(array_merge($this->options, $options)); + } + + public function withDefaults(array $defaults): Config + { + return new Config($this->options + $defaults); + } +} diff --git a/vendor/league/flysystem/src/CorruptedPathDetected.php b/vendor/league/flysystem/src/CorruptedPathDetected.php new file mode 100644 index 000000000..70631ccc7 --- /dev/null +++ b/vendor/league/flysystem/src/CorruptedPathDetected.php @@ -0,0 +1,13 @@ +path = $path; + $this->visibility = $visibility; + $this->lastModified = $lastModified; + $this->extraMetadata = $extraMetadata; + } + + public function path(): string + { + return $this->path; + } + + public function type(): string + { + return StorageAttributes::TYPE_DIRECTORY; + } + + public function visibility(): ?string + { + return $this->visibility; + } + + public function lastModified(): ?int + { + return $this->lastModified; + } + + public function extraMetadata(): array + { + return $this->extraMetadata; + } + + public function isFile(): bool + { + return false; + } + + public function isDir(): bool + { + return true; + } + + public function withPath(string $path): StorageAttributes + { + $clone = clone $this; + $clone->path = $path; + + return $clone; + } + + public static function fromArray(array $attributes): StorageAttributes + { + return new DirectoryAttributes( + $attributes[StorageAttributes::ATTRIBUTE_PATH], + $attributes[StorageAttributes::ATTRIBUTE_VISIBILITY] ?? null, + $attributes[StorageAttributes::ATTRIBUTE_LAST_MODIFIED] ?? null, + $attributes[StorageAttributes::ATTRIBUTE_EXTRA_METADATA] ?? [] + ); + } + + /** + * @inheritDoc + */ + public function jsonSerialize(): array + { + return [ + StorageAttributes::ATTRIBUTE_TYPE => $this->type, + StorageAttributes::ATTRIBUTE_PATH => $this->path, + StorageAttributes::ATTRIBUTE_VISIBILITY => $this->visibility, + StorageAttributes::ATTRIBUTE_LAST_MODIFIED => $this->lastModified, + StorageAttributes::ATTRIBUTE_EXTRA_METADATA => $this->extraMetadata, + ]; + } +} diff --git a/vendor/league/flysystem/src/DirectoryListing.php b/vendor/league/flysystem/src/DirectoryListing.php new file mode 100644 index 000000000..0f429a875 --- /dev/null +++ b/vendor/league/flysystem/src/DirectoryListing.php @@ -0,0 +1,84 @@ + + */ + private $listing; + + /** + * @param iterable $listing + */ + public function __construct(iterable $listing) + { + $this->listing = $listing; + } + + public function filter(callable $filter): DirectoryListing + { + $generator = (static function (iterable $listing) use ($filter): Generator { + foreach ($listing as $item) { + if ($filter($item)) { + yield $item; + } + } + })($this->listing); + + return new DirectoryListing($generator); + } + + public function map(callable $mapper): DirectoryListing + { + $generator = (static function (iterable $listing) use ($mapper): Generator { + foreach ($listing as $item) { + yield $mapper($item); + } + })($this->listing); + + return new DirectoryListing($generator); + } + + public function sortByPath(): DirectoryListing + { + $listing = $this->toArray(); + + usort($listing, function (StorageAttributes $a, StorageAttributes $b) { + return $a->path() <=> $b->path(); + }); + + return new DirectoryListing($listing); + } + + /** + * @return Traversable + */ + public function getIterator(): Traversable + { + return $this->listing instanceof Traversable + ? $this->listing + : new ArrayIterator($this->listing); + } + + /** + * @return T[] + */ + public function toArray(): array + { + return $this->listing instanceof Traversable + ? iterator_to_array($this->listing, false) + : (array) $this->listing; + } +} diff --git a/vendor/league/flysystem/src/FileAttributes.php b/vendor/league/flysystem/src/FileAttributes.php new file mode 100644 index 000000000..2efd9c4d2 --- /dev/null +++ b/vendor/league/flysystem/src/FileAttributes.php @@ -0,0 +1,139 @@ +path = $path; + $this->fileSize = $fileSize; + $this->visibility = $visibility; + $this->lastModified = $lastModified; + $this->mimeType = $mimeType; + $this->extraMetadata = $extraMetadata; + } + + public function type(): string + { + return $this->type; + } + + public function path(): string + { + return $this->path; + } + + public function fileSize(): ?int + { + return $this->fileSize; + } + + public function visibility(): ?string + { + return $this->visibility; + } + + public function lastModified(): ?int + { + return $this->lastModified; + } + + public function mimeType(): ?string + { + return $this->mimeType; + } + + public function extraMetadata(): array + { + return $this->extraMetadata; + } + + public function isFile(): bool + { + return true; + } + + public function isDir(): bool + { + return false; + } + + public function withPath(string $path): StorageAttributes + { + $clone = clone $this; + $clone->path = $path; + + return $clone; + } + + public static function fromArray(array $attributes): StorageAttributes + { + return new FileAttributes( + $attributes[StorageAttributes::ATTRIBUTE_PATH], + $attributes[StorageAttributes::ATTRIBUTE_FILE_SIZE] ?? null, + $attributes[StorageAttributes::ATTRIBUTE_VISIBILITY] ?? null, + $attributes[StorageAttributes::ATTRIBUTE_LAST_MODIFIED] ?? null, + $attributes[StorageAttributes::ATTRIBUTE_MIME_TYPE] ?? null, + $attributes[StorageAttributes::ATTRIBUTE_EXTRA_METADATA] ?? [] + ); + } + + public function jsonSerialize(): array + { + return [ + StorageAttributes::ATTRIBUTE_TYPE => self::TYPE_FILE, + StorageAttributes::ATTRIBUTE_PATH => $this->path, + StorageAttributes::ATTRIBUTE_FILE_SIZE => $this->fileSize, + StorageAttributes::ATTRIBUTE_VISIBILITY => $this->visibility, + StorageAttributes::ATTRIBUTE_LAST_MODIFIED => $this->lastModified, + StorageAttributes::ATTRIBUTE_MIME_TYPE => $this->mimeType, + StorageAttributes::ATTRIBUTE_EXTRA_METADATA => $this->extraMetadata, + ]; + } +} diff --git a/vendor/league/flysystem/src/Filesystem.php b/vendor/league/flysystem/src/Filesystem.php new file mode 100644 index 000000000..f66574d68 --- /dev/null +++ b/vendor/league/flysystem/src/Filesystem.php @@ -0,0 +1,163 @@ +adapter = $adapter; + $this->config = new Config($config); + $this->pathNormalizer = $pathNormalizer ?: new WhitespacePathNormalizer(); + } + + public function fileExists(string $location): bool + { + return $this->adapter->fileExists($this->pathNormalizer->normalizePath($location)); + } + + public function write(string $location, string $contents, array $config = []): void + { + $this->adapter->write( + $this->pathNormalizer->normalizePath($location), + $contents, + $this->config->extend($config) + ); + } + + public function writeStream(string $location, $contents, array $config = []): void + { + /* @var resource $contents */ + $this->assertIsResource($contents); + $this->rewindStream($contents); + $this->adapter->writeStream( + $this->pathNormalizer->normalizePath($location), + $contents, + $this->config->extend($config) + ); + } + + public function read(string $location): string + { + return $this->adapter->read($this->pathNormalizer->normalizePath($location)); + } + + public function readStream(string $location) + { + return $this->adapter->readStream($this->pathNormalizer->normalizePath($location)); + } + + public function delete(string $location): void + { + $this->adapter->delete($this->pathNormalizer->normalizePath($location)); + } + + public function deleteDirectory(string $location): void + { + $this->adapter->deleteDirectory($this->pathNormalizer->normalizePath($location)); + } + + public function createDirectory(string $location, array $config = []): void + { + $this->adapter->createDirectory( + $this->pathNormalizer->normalizePath($location), + $this->config->extend($config) + ); + } + + public function listContents(string $location, bool $deep = self::LIST_SHALLOW): DirectoryListing + { + $path = $this->pathNormalizer->normalizePath($location); + + return new DirectoryListing($this->adapter->listContents($path, $deep)); + } + + public function move(string $source, string $destination, array $config = []): void + { + $this->adapter->move( + $this->pathNormalizer->normalizePath($source), + $this->pathNormalizer->normalizePath($destination), + $this->config->extend($config) + ); + } + + public function copy(string $source, string $destination, array $config = []): void + { + $this->adapter->copy( + $this->pathNormalizer->normalizePath($source), + $this->pathNormalizer->normalizePath($destination), + $this->config->extend($config) + ); + } + + public function lastModified(string $path): int + { + return $this->adapter->lastModified($this->pathNormalizer->normalizePath($path))->lastModified(); + } + + public function fileSize(string $path): int + { + return $this->adapter->fileSize($this->pathNormalizer->normalizePath($path))->fileSize(); + } + + public function mimeType(string $path): string + { + return $this->adapter->mimeType($this->pathNormalizer->normalizePath($path))->mimeType(); + } + + public function setVisibility(string $path, string $visibility): void + { + $this->adapter->setVisibility($this->pathNormalizer->normalizePath($path), $visibility); + } + + public function visibility(string $path): string + { + return $this->adapter->visibility($this->pathNormalizer->normalizePath($path))->visibility(); + } + + /** + * @param mixed $contents + */ + private function assertIsResource($contents): void + { + if (is_resource($contents) === false) { + throw new InvalidStreamProvided( + "Invalid stream provided, expected stream resource, received " . gettype($contents) + ); + } elseif ($type = get_resource_type($contents) !== 'stream') { + throw new InvalidStreamProvided( + "Invalid stream provided, expected stream resource, received resource of type " . $type + ); + } + } + + /** + * @param resource $resource + */ + private function rewindStream($resource): void + { + if (ftell($resource) !== 0 && stream_get_meta_data($resource)['seekable']) { + rewind($resource); + } + } +} diff --git a/vendor/league/flysystem/src/FilesystemAdapter.php b/vendor/league/flysystem/src/FilesystemAdapter.php new file mode 100644 index 000000000..6dcb51e40 --- /dev/null +++ b/vendor/league/flysystem/src/FilesystemAdapter.php @@ -0,0 +1,108 @@ + + * + * @throws FilesystemException + */ + public function listContents(string $path, bool $deep): iterable; + + /** + * @throws UnableToMoveFile + * @throws FilesystemException + */ + public function move(string $source, string $destination, Config $config): void; + + /** + * @throws UnableToCopyFile + * @throws FilesystemException + */ + public function copy(string $source, string $destination, Config $config): void; +} diff --git a/vendor/league/flysystem/src/FilesystemException.php b/vendor/league/flysystem/src/FilesystemException.php new file mode 100644 index 000000000..f9d60185f --- /dev/null +++ b/vendor/league/flysystem/src/FilesystemException.php @@ -0,0 +1,11 @@ + + * + * @throws FilesystemException + */ + public function listContents(string $location, bool $deep = self::LIST_SHALLOW): DirectoryListing; + + /** + * @throws UnableToRetrieveMetadata + * @throws FilesystemException + */ + public function lastModified(string $path): int; + + /** + * @throws UnableToRetrieveMetadata + * @throws FilesystemException + */ + public function fileSize(string $path): int; + + /** + * @throws UnableToRetrieveMetadata + * @throws FilesystemException + */ + public function mimeType(string $path): string; + + /** + * @throws UnableToRetrieveMetadata + * @throws FilesystemException + */ + public function visibility(string $path): string; +} diff --git a/vendor/league/flysystem/src/FilesystemWriter.php b/vendor/league/flysystem/src/FilesystemWriter.php new file mode 100644 index 000000000..a24bb0fcf --- /dev/null +++ b/vendor/league/flysystem/src/FilesystemWriter.php @@ -0,0 +1,58 @@ +prefixer = new PathPrefixer($location, DIRECTORY_SEPARATOR); + $this->writeFlags = $writeFlags; + $this->linkHandling = $linkHandling; + $this->visibility = $visibility ?: new PortableVisibilityConverter(); + $this->ensureDirectoryExists($location, $this->visibility->defaultForDirectories()); + $this->mimeTypeDetector = $mimeTypeDetector ?: new FinfoMimeTypeDetector(); + } + + public function write(string $path, string $contents, Config $config): void + { + $this->writeToFile($path, $contents, $config); + } + + public function writeStream(string $path, $contents, Config $config): void + { + $this->writeToFile($path, $contents, $config); + } + + /** + * @param resource|string $contents + */ + private function writeToFile(string $path, $contents, Config $config): void + { + $prefixedLocation = $this->prefixer->prefixPath($path); + $this->ensureDirectoryExists( + dirname($prefixedLocation), + $this->resolveDirectoryVisibility($config->get(Config::OPTION_DIRECTORY_VISIBILITY)) + ); + error_clear_last(); + + if (@file_put_contents($prefixedLocation, $contents, $this->writeFlags) === false) { + throw UnableToWriteFile::atLocation($path, error_get_last()['message'] ?? ''); + } + + if ($visibility = $config->get(Config::OPTION_VISIBILITY)) { + $this->setVisibility($path, (string) $visibility); + } + } + + public function delete(string $path): void + { + $location = $this->prefixer->prefixPath($path); + + if ( ! file_exists($location)) { + return; + } + + error_clear_last(); + + if ( ! @unlink($location)) { + throw UnableToDeleteFile::atLocation($location, error_get_last()['message'] ?? ''); + } + } + + public function deleteDirectory(string $prefix): void + { + $location = $this->prefixer->prefixPath($prefix); + + if ( ! is_dir($location)) { + return; + } + + $contents = $this->listDirectoryRecursively($location, RecursiveIteratorIterator::CHILD_FIRST); + + /** @var SplFileInfo $file */ + foreach ($contents as $file) { + if ( ! $this->deleteFileInfoObject($file)) { + throw UnableToDeleteDirectory::atLocation($prefix, "Unable to delete file at " . $file->getPathname()); + } + } + + unset($contents); + + if ( ! @rmdir($location)) { + throw UnableToDeleteDirectory::atLocation($prefix, error_get_last()['message'] ?? ''); + } + } + + private function listDirectoryRecursively( + string $path, + int $mode = RecursiveIteratorIterator::SELF_FIRST + ): Generator { + yield from new RecursiveIteratorIterator( + new RecursiveDirectoryIterator($path, FilesystemIterator::SKIP_DOTS), + $mode + ); + } + + protected function deleteFileInfoObject(SplFileInfo $file): bool + { + switch ($file->getType()) { + case 'dir': + return @rmdir((string) $file->getRealPath()); + case 'link': + return @unlink((string) $file->getPathname()); + default: + return @unlink((string) $file->getRealPath()); + } + } + + public function listContents(string $path, bool $deep): iterable + { + $location = $this->prefixer->prefixPath($path); + + if ( ! is_dir($location)) { + return; + } + + /** @var SplFileInfo[] $iterator */ + $iterator = $deep ? $this->listDirectoryRecursively($location) : $this->listDirectory($location); + + foreach ($iterator as $fileInfo) { + if ($fileInfo->isLink()) { + if ($this->linkHandling & self::SKIP_LINKS) { + continue; + } + throw SymbolicLinkEncountered::atLocation($fileInfo->getPathname()); + } + + $path = $this->prefixer->stripPrefix($fileInfo->getPathname()); + $lastModified = $fileInfo->getMTime(); + $isDirectory = $fileInfo->isDir(); + $permissions = octdec(substr(sprintf('%o', $fileInfo->getPerms()), -4)); + $visibility = $isDirectory ? $this->visibility->inverseForDirectory($permissions) : $this->visibility->inverseForFile($permissions); + + yield $isDirectory ? new DirectoryAttributes($path, $visibility, $lastModified) : new FileAttributes( + str_replace('\\', '/', $path), + $fileInfo->getSize(), + $visibility, + $lastModified + ); + } + } + + public function move(string $source, string $destination, Config $config): void + { + $sourcePath = $this->prefixer->prefixPath($source); + $destinationPath = $this->prefixer->prefixPath($destination); + $this->ensureDirectoryExists( + dirname($destinationPath), + $this->resolveDirectoryVisibility($config->get(Config::OPTION_DIRECTORY_VISIBILITY)) + ); + + if ( ! @rename($sourcePath, $destinationPath)) { + throw UnableToMoveFile::fromLocationTo($sourcePath, $destinationPath); + } + } + + public function copy(string $source, string $destination, Config $config): void + { + $sourcePath = $this->prefixer->prefixPath($source); + $destinationPath = $this->prefixer->prefixPath($destination); + $this->ensureDirectoryExists( + dirname($destinationPath), + $this->resolveDirectoryVisibility($config->get(Config::OPTION_DIRECTORY_VISIBILITY)) + ); + + if ( ! @copy($sourcePath, $destinationPath)) { + throw UnableToCopyFile::fromLocationTo($sourcePath, $destinationPath); + } + } + + public function read(string $path): string + { + $location = $this->prefixer->prefixPath($path); + error_clear_last(); + $contents = @file_get_contents($location); + + if ($contents === false) { + throw UnableToReadFile::fromLocation($path, error_get_last()['message'] ?? ''); + } + + return $contents; + } + + public function readStream(string $path) + { + $location = $this->prefixer->prefixPath($path); + error_clear_last(); + $contents = @fopen($location, 'rb'); + + if ($contents === false) { + throw UnableToReadFile::fromLocation($path, error_get_last()['message'] ?? ''); + } + + return $contents; + } + + protected function ensureDirectoryExists(string $dirname, int $visibility): void + { + if (is_dir($dirname)) { + return; + } + + error_clear_last(); + + if ( ! @mkdir($dirname, $visibility, true)) { + $mkdirError = error_get_last(); + } + + clearstatcache(true, $dirname); + + if ( ! is_dir($dirname)) { + $errorMessage = isset($mkdirError['message']) ? $mkdirError['message'] : ''; + + throw UnableToCreateDirectory::atLocation($dirname, $errorMessage); + } + } + + public function fileExists(string $location): bool + { + $location = $this->prefixer->prefixPath($location); + + return is_file($location); + } + + public function createDirectory(string $path, Config $config): void + { + $location = $this->prefixer->prefixPath($path); + $visibility = $config->get(Config::OPTION_VISIBILITY, $config->get(Config::OPTION_DIRECTORY_VISIBILITY)); + $permissions = $this->resolveDirectoryVisibility($visibility); + + if (is_dir($location)) { + $this->setPermissions($location, $permissions); + + return; + } + + error_clear_last(); + + if ( ! @mkdir($location, $permissions, true)) { + throw UnableToCreateDirectory::atLocation($path, error_get_last()['message'] ?? ''); + } + } + + public function setVisibility(string $path, string $visibility): void + { + $path = $this->prefixer->prefixPath($path); + $visibility = is_dir($path) ? $this->visibility->forDirectory($visibility) : $this->visibility->forFile( + $visibility + ); + + $this->setPermissions($path, $visibility); + } + + public function visibility(string $path): FileAttributes + { + $location = $this->prefixer->prefixPath($path); + clearstatcache(false, $location); + error_clear_last(); + $fileperms = @fileperms($location); + + if ($fileperms === false) { + throw UnableToRetrieveMetadata::visibility($path, error_get_last()['message'] ?? ''); + } + + $permissions = $fileperms & 0777; + $visibility = $this->visibility->inverseForFile($permissions); + + return new FileAttributes($path, null, $visibility); + } + + private function resolveDirectoryVisibility(?string $visibility): int + { + return $visibility === null ? $this->visibility->defaultForDirectories() : $this->visibility->forDirectory( + $visibility + ); + } + + public function mimeType(string $path): FileAttributes + { + $location = $this->prefixer->prefixPath($path); + error_clear_last(); + $mimeType = $this->mimeTypeDetector->detectMimeTypeFromFile($location); + + if ($mimeType === null) { + throw UnableToRetrieveMetadata::mimeType($path, error_get_last()['message'] ?? ''); + } + + return new FileAttributes($path, null, null, null, $mimeType); + } + + public function lastModified(string $path): FileAttributes + { + $location = $this->prefixer->prefixPath($path); + error_clear_last(); + $lastModified = @filemtime($location); + + if ($lastModified === false) { + throw UnableToRetrieveMetadata::lastModified($path, error_get_last()['message'] ?? ''); + } + + return new FileAttributes($path, null, null, $lastModified); + } + + public function fileSize(string $path): FileAttributes + { + $location = $this->prefixer->prefixPath($path); + error_clear_last(); + + if (is_file($location) && ($fileSize = @filesize($location)) !== false) { + return new FileAttributes($path, $fileSize); + } + + throw UnableToRetrieveMetadata::fileSize($path, error_get_last()['message'] ?? ''); + } + + private function listDirectory(string $location): Generator + { + $iterator = new DirectoryIterator($location); + + foreach ($iterator as $item) { + if ($item->isDot()) { + continue; + } + + yield $item; + } + } + + private function setPermissions(string $location, int $visibility): void + { + error_clear_last(); + if ( ! @chmod($location, $visibility)) { + $extraMessage = error_get_last()['message'] ?? ''; + throw UnableToSetVisibility::atLocation($this->prefixer->stripPrefix($location), $extraMessage); + } + } +} diff --git a/vendor/league/flysystem/src/MountManager.php b/vendor/league/flysystem/src/MountManager.php new file mode 100644 index 000000000..b5a777353 --- /dev/null +++ b/vendor/league/flysystem/src/MountManager.php @@ -0,0 +1,334 @@ + + */ + private $filesystems = []; + + /** + * MountManager constructor. + * + * @param array $filesystems + */ + public function __construct(array $filesystems = []) + { + $this->mountFilesystems($filesystems); + } + + public function fileExists(string $location): bool + { + /** @var FilesystemOperator $filesystem */ + [$filesystem, $path] = $this->determineFilesystemAndPath($location); + + try { + return $filesystem->fileExists($path); + } catch (UnableToCheckFileExistence $exception) { + throw UnableToCheckFileExistence::forLocation($location, $exception); + } + } + + public function read(string $location): string + { + /** @var FilesystemOperator $filesystem */ + [$filesystem, $path] = $this->determineFilesystemAndPath($location); + + try { + return $filesystem->read($path); + } catch (UnableToReadFile $exception) { + throw UnableToReadFile::fromLocation($location, $exception->reason(), $exception); + } + } + + public function readStream(string $location) + { + /** @var FilesystemOperator $filesystem */ + [$filesystem, $path] = $this->determineFilesystemAndPath($location); + + try { + return $filesystem->readStream($path); + } catch (UnableToReadFile $exception) { + throw UnableToReadFile::fromLocation($location, $exception->reason(), $exception); + } + } + + public function listContents(string $location, bool $deep = self::LIST_SHALLOW): DirectoryListing + { + /** @var FilesystemOperator $filesystem */ + [$filesystem, $path, $mountIdentifier] = $this->determineFilesystemAndPath($location); + + return + $filesystem + ->listContents($path, $deep) + ->map( + function (StorageAttributes $attributes) use ($mountIdentifier) { + return $attributes->withPath(sprintf('%s://%s', $mountIdentifier, $attributes->path())); + } + ); + } + + public function lastModified(string $location): int + { + /** @var FilesystemOperator $filesystem */ + [$filesystem, $path] = $this->determineFilesystemAndPath($location); + + try { + return $filesystem->lastModified($path); + } catch (UnableToRetrieveMetadata $exception) { + throw UnableToRetrieveMetadata::lastModified($location, $exception->reason(), $exception); + } + } + + public function fileSize(string $location): int + { + /** @var FilesystemOperator $filesystem */ + [$filesystem, $path] = $this->determineFilesystemAndPath($location); + + try { + return $filesystem->fileSize($path); + } catch (UnableToRetrieveMetadata $exception) { + throw UnableToRetrieveMetadata::fileSize($location, $exception->reason(), $exception); + } + } + + public function mimeType(string $location): string + { + /** @var FilesystemOperator $filesystem */ + [$filesystem, $path] = $this->determineFilesystemAndPath($location); + + try { + return $filesystem->mimeType($path); + } catch (UnableToRetrieveMetadata $exception) { + throw UnableToRetrieveMetadata::mimeType($location, $exception->reason(), $exception); + } + } + + public function visibility(string $location): string + { + /** @var FilesystemOperator $filesystem */ + [$filesystem, $path] = $this->determineFilesystemAndPath($location); + + try { + return $filesystem->visibility($path); + } catch (UnableToRetrieveMetadata $exception) { + throw UnableToRetrieveMetadata::visibility($location, $exception->reason(), $exception); + } + } + + public function write(string $location, string $contents, array $config = []): void + { + /** @var FilesystemOperator $filesystem */ + [$filesystem, $path] = $this->determineFilesystemAndPath($location); + + try { + $filesystem->write($path, $contents, $config); + } catch (UnableToWriteFile $exception) { + throw UnableToWriteFile::atLocation($location, $exception->reason(), $exception); + } + } + + public function writeStream(string $location, $contents, array $config = []): void + { + /** @var FilesystemOperator $filesystem */ + [$filesystem, $path] = $this->determineFilesystemAndPath($location); + $filesystem->writeStream($path, $contents, $config); + } + + public function setVisibility(string $path, string $visibility): void + { + /** @var FilesystemOperator $filesystem */ + [$filesystem, $path] = $this->determineFilesystemAndPath($path); + $filesystem->setVisibility($path, $visibility); + } + + public function delete(string $location): void + { + /** @var FilesystemOperator $filesystem */ + [$filesystem, $path] = $this->determineFilesystemAndPath($location); + + try { + $filesystem->delete($path); + } catch (UnableToDeleteFile $exception) { + throw UnableToDeleteFile::atLocation($location, '', $exception); + } + } + + public function deleteDirectory(string $location): void + { + /** @var FilesystemOperator $filesystem */ + [$filesystem, $path] = $this->determineFilesystemAndPath($location); + + try { + $filesystem->deleteDirectory($path); + } catch (UnableToDeleteDirectory $exception) { + throw UnableToDeleteDirectory::atLocation($location, '', $exception); + } + } + + public function createDirectory(string $location, array $config = []): void + { + /** @var FilesystemOperator $filesystem */ + [$filesystem, $path] = $this->determineFilesystemAndPath($location); + + try { + $filesystem->createDirectory($path, $config); + } catch (UnableToCreateDirectory $exception) { + throw UnableToCreateDirectory::dueToFailure($location, $exception); + } + } + + public function move(string $source, string $destination, array $config = []): void + { + /** @var FilesystemOperator $sourceFilesystem */ + /* @var FilesystemOperator $destinationFilesystem */ + [$sourceFilesystem, $sourcePath] = $this->determineFilesystemAndPath($source); + [$destinationFilesystem, $destinationPath] = $this->determineFilesystemAndPath($destination); + + $sourceFilesystem === $destinationFilesystem ? $this->moveInTheSameFilesystem( + $sourceFilesystem, + $sourcePath, + $destinationPath, + $source, + $destination + ) : $this->moveAcrossFilesystems($source, $destination); + } + + public function copy(string $source, string $destination, array $config = []): void + { + /** @var FilesystemOperator $sourceFilesystem */ + /* @var FilesystemOperator $destinationFilesystem */ + [$sourceFilesystem, $sourcePath] = $this->determineFilesystemAndPath($source); + [$destinationFilesystem, $destinationPath] = $this->determineFilesystemAndPath($destination); + + $sourceFilesystem === $destinationFilesystem ? $this->copyInSameFilesystem( + $sourceFilesystem, + $sourcePath, + $destinationPath, + $source, + $destination + ) : $this->copyAcrossFilesystem( + $config['visibility'] ?? null, + $sourceFilesystem, + $sourcePath, + $destinationFilesystem, + $destinationPath, + $source, + $destination + ); + } + + private function mountFilesystems(array $filesystems): void + { + foreach ($filesystems as $key => $filesystem) { + $this->guardAgainstInvalidMount($key, $filesystem); + /* @var string $key */ + /* @var FilesystemOperator $filesystem */ + $this->mountFilesystem($key, $filesystem); + } + } + + /** + * @param mixed $key + * @param mixed $filesystem + */ + private function guardAgainstInvalidMount($key, $filesystem): void + { + if ( ! is_string($key)) { + throw UnableToMountFilesystem::becauseTheKeyIsNotValid($key); + } + + if ( ! $filesystem instanceof FilesystemOperator) { + throw UnableToMountFilesystem::becauseTheFilesystemWasNotValid($filesystem); + } + } + + private function mountFilesystem(string $key, FilesystemOperator $filesystem): void + { + $this->filesystems[$key] = $filesystem; + } + + /** + * @param string $path + * + * @return array{0:FilesystemOperator, 1:string} + */ + private function determineFilesystemAndPath(string $path): array + { + if (strpos($path, '://') < 1) { + throw UnableToResolveFilesystemMount::becauseTheSeparatorIsMissing($path); + } + + /** @var string $mountIdentifier */ + /** @var string $mountPath */ + [$mountIdentifier, $mountPath] = explode('://', $path, 2); + + if ( ! array_key_exists($mountIdentifier, $this->filesystems)) { + throw UnableToResolveFilesystemMount::becauseTheMountWasNotRegistered($mountIdentifier); + } + + return [$this->filesystems[$mountIdentifier], $mountPath, $mountIdentifier]; + } + + private function copyInSameFilesystem( + FilesystemOperator $sourceFilesystem, + string $sourcePath, + string $destinationPath, + string $source, + string $destination + ): void { + try { + $sourceFilesystem->copy($sourcePath, $destinationPath); + } catch (UnableToCopyFile $exception) { + throw UnableToCopyFile::fromLocationTo($source, $destination, $exception); + } + } + + private function copyAcrossFilesystem( + ?string $visibility, + FilesystemOperator $sourceFilesystem, + string $sourcePath, + FilesystemOperator $destinationFilesystem, + string $destinationPath, + string $source, + string $destination + ): void { + try { + $visibility = $visibility ?? $sourceFilesystem->visibility($sourcePath); + $stream = $sourceFilesystem->readStream($sourcePath); + $destinationFilesystem->writeStream($destinationPath, $stream, compact('visibility')); + } catch (UnableToRetrieveMetadata | UnableToReadFile | UnableToWriteFile $exception) { + throw UnableToCopyFile::fromLocationTo($source, $destination, $exception); + } + } + + private function moveInTheSameFilesystem( + FilesystemOperator $sourceFilesystem, + string $sourcePath, + string $destinationPath, + string $source, + string $destination + ): void { + try { + $sourceFilesystem->move($sourcePath, $destinationPath); + } catch (UnableToMoveFile $exception) { + throw UnableToMoveFile::fromLocationTo($source, $destination, $exception); + } + } + + private function moveAcrossFilesystems(string $source, string $destination): void + { + try { + $this->copy($source, $destination); + $this->delete($source); + } catch (UnableToCopyFile | UnableToDeleteFile $exception) { + throw UnableToMoveFile::fromLocationTo($source, $destination, $exception); + } + } +} diff --git a/vendor/league/flysystem/src/PathNormalizer.php b/vendor/league/flysystem/src/PathNormalizer.php new file mode 100644 index 000000000..54da201ae --- /dev/null +++ b/vendor/league/flysystem/src/PathNormalizer.php @@ -0,0 +1,10 @@ +prefix = rtrim($prefix, '\\/'); + + if ($this->prefix !== '' || $prefix === $separator) { + $this->prefix .= $separator; + } + + $this->separator = $separator; + } + + public function prefixPath(string $path): string + { + return $this->prefix . ltrim($path, '\\/'); + } + + public function stripPrefix(string $path): string + { + /* @var string */ + return substr($path, strlen($this->prefix)); + } + + public function stripDirectoryPrefix(string $path): string + { + return rtrim($this->stripPrefix($path), '\\/'); + } + + public function prefixDirectoryPath(string $path): string + { + $prefixedPath = $this->prefixPath(rtrim($path, '\\/')); + + if ((substr($prefixedPath, -1) === $this->separator) || $prefixedPath === '') { + return $prefixedPath; + } + + return $prefixedPath . $this->separator; + } +} diff --git a/vendor/league/flysystem/src/PathTraversalDetected.php b/vendor/league/flysystem/src/PathTraversalDetected.php new file mode 100644 index 000000000..d149997f7 --- /dev/null +++ b/vendor/league/flysystem/src/PathTraversalDetected.php @@ -0,0 +1,28 @@ +path; + } + + public static function forPath(string $path): PathTraversalDetected + { + $e = new PathTraversalDetected("Path traversal detected: {$path}"); + $e->path = $path; + + return $e; + } +} diff --git a/vendor/league/flysystem/src/PortableVisibilityGuard.php b/vendor/league/flysystem/src/PortableVisibilityGuard.php new file mode 100644 index 000000000..6e2498b42 --- /dev/null +++ b/vendor/league/flysystem/src/PortableVisibilityGuard.php @@ -0,0 +1,19 @@ +formatPropertyName((string) $offset); + + return isset($this->{$property}); + } + + /** + * @param mixed $offset + * + * @return mixed + */ + #[\ReturnTypeWillChange] + public function offsetGet($offset) + { + $property = $this->formatPropertyName((string) $offset); + + return $this->{$property}; + } + + /** + * @param mixed $offset + * @param mixed $value + */ + #[\ReturnTypeWillChange] + public function offsetSet($offset, $value): void + { + throw new RuntimeException('Properties can not be manipulated'); + } + + /** + * @param mixed $offset + */ + #[\ReturnTypeWillChange] + public function offsetUnset($offset): void + { + throw new RuntimeException('Properties can not be manipulated'); + } +} diff --git a/vendor/league/flysystem/src/StorageAttributes.php b/vendor/league/flysystem/src/StorageAttributes.php new file mode 100644 index 000000000..6be6235bd --- /dev/null +++ b/vendor/league/flysystem/src/StorageAttributes.php @@ -0,0 +1,40 @@ +location; + } + + public static function atLocation(string $pathName): SymbolicLinkEncountered + { + $e = new static("Unsupported symbolic link encountered at location $pathName"); + $e->location = $pathName; + + return $e; + } +} diff --git a/vendor/league/flysystem/src/UnableToCheckFileExistence.php b/vendor/league/flysystem/src/UnableToCheckFileExistence.php new file mode 100644 index 000000000..d78e4ee89 --- /dev/null +++ b/vendor/league/flysystem/src/UnableToCheckFileExistence.php @@ -0,0 +1,21 @@ +source; + } + + public function destination(): string + { + return $this->destination; + } + + public static function fromLocationTo( + string $sourcePath, + string $destinationPath, + Throwable $previous = null + ): UnableToCopyFile { + $e = new static("Unable to copy file from $sourcePath to $destinationPath", 0 , $previous); + $e->source = $sourcePath; + $e->destination = $destinationPath; + + return $e; + } + + public function operation(): string + { + return FilesystemOperationFailed::OPERATION_COPY; + } +} diff --git a/vendor/league/flysystem/src/UnableToCreateDirectory.php b/vendor/league/flysystem/src/UnableToCreateDirectory.php new file mode 100644 index 000000000..8298f9f8c --- /dev/null +++ b/vendor/league/flysystem/src/UnableToCreateDirectory.php @@ -0,0 +1,44 @@ +location = $dirname; + + return $e; + } + + public static function dueToFailure(string $dirname, Throwable $previous): UnableToCreateDirectory + { + $message = "Unable to create a directory at {$dirname}"; + $e = new static($message, 0, $previous); + $e->location = $dirname; + + return $e; + } + + public function operation(): string + { + return FilesystemOperationFailed::OPERATION_CREATE_DIRECTORY; + } + + public function location(): string + { + return $this->location; + } +} diff --git a/vendor/league/flysystem/src/UnableToDeleteDirectory.php b/vendor/league/flysystem/src/UnableToDeleteDirectory.php new file mode 100644 index 000000000..eeeab24b2 --- /dev/null +++ b/vendor/league/flysystem/src/UnableToDeleteDirectory.php @@ -0,0 +1,48 @@ +location = $location; + $e->reason = $reason; + + return $e; + } + + public function operation(): string + { + return FilesystemOperationFailed::OPERATION_DELETE_DIRECTORY; + } + + public function reason(): string + { + return $this->reason; + } + + public function location(): string + { + return $this->location; + } +} diff --git a/vendor/league/flysystem/src/UnableToDeleteFile.php b/vendor/league/flysystem/src/UnableToDeleteFile.php new file mode 100644 index 000000000..18f7215cc --- /dev/null +++ b/vendor/league/flysystem/src/UnableToDeleteFile.php @@ -0,0 +1,45 @@ +location = $location; + $e->reason = $reason; + + return $e; + } + + public function operation(): string + { + return FilesystemOperationFailed::OPERATION_DELETE; + } + + public function reason(): string + { + return $this->reason; + } + + public function location(): string + { + return $this->location; + } +} diff --git a/vendor/league/flysystem/src/UnableToMountFilesystem.php b/vendor/league/flysystem/src/UnableToMountFilesystem.php new file mode 100644 index 000000000..bd41bc98f --- /dev/null +++ b/vendor/league/flysystem/src/UnableToMountFilesystem.php @@ -0,0 +1,32 @@ +source; + } + + public function destination(): string + { + return $this->destination; + } + + public static function fromLocationTo( + string $sourcePath, + string $destinationPath, + Throwable $previous = null + ): UnableToMoveFile { + $e = new static("Unable to move file from $sourcePath to $destinationPath", 0, $previous); + $e->source = $sourcePath; + $e->destination = $destinationPath; + + return $e; + } + + public function operation(): string + { + return FilesystemOperationFailed::OPERATION_MOVE; + } +} diff --git a/vendor/league/flysystem/src/UnableToReadFile.php b/vendor/league/flysystem/src/UnableToReadFile.php new file mode 100644 index 000000000..766b56309 --- /dev/null +++ b/vendor/league/flysystem/src/UnableToReadFile.php @@ -0,0 +1,45 @@ +location = $location; + $e->reason = $reason; + + return $e; + } + + public function operation(): string + { + return FilesystemOperationFailed::OPERATION_READ; + } + + public function reason(): string + { + return $this->reason; + } + + public function location(): string + { + return $this->location; + } +} diff --git a/vendor/league/flysystem/src/UnableToResolveFilesystemMount.php b/vendor/league/flysystem/src/UnableToResolveFilesystemMount.php new file mode 100644 index 000000000..91a9ee3e3 --- /dev/null +++ b/vendor/league/flysystem/src/UnableToResolveFilesystemMount.php @@ -0,0 +1,20 @@ +reason = $reason; + $e->location = $location; + $e->metadataType = $type; + + return $e; + } + + public function reason(): string + { + return $this->reason; + } + + public function location(): string + { + return $this->location; + } + + public function metadataType(): string + { + return $this->metadataType; + } + + public function operation(): string + { + return FilesystemOperationFailed::OPERATION_RETRIEVE_METADATA; + } +} diff --git a/vendor/league/flysystem/src/UnableToSetVisibility.php b/vendor/league/flysystem/src/UnableToSetVisibility.php new file mode 100644 index 000000000..5862d0e0c --- /dev/null +++ b/vendor/league/flysystem/src/UnableToSetVisibility.php @@ -0,0 +1,49 @@ +reason; + } + + public static function atLocation(string $filename, string $extraMessage = '', Throwable $previous = null): self + { + $message = "Unable to set visibility for file {$filename}. $extraMessage"; + $e = new static(rtrim($message), 0, $previous); + $e->reason = $extraMessage; + $e->location = $filename; + + return $e; + } + + public function operation(): string + { + return FilesystemOperationFailed::OPERATION_SET_VISIBILITY; + } + + public function location(): string + { + return $this->location; + } +} diff --git a/vendor/league/flysystem/src/UnableToWriteFile.php b/vendor/league/flysystem/src/UnableToWriteFile.php new file mode 100644 index 000000000..5de786658 --- /dev/null +++ b/vendor/league/flysystem/src/UnableToWriteFile.php @@ -0,0 +1,45 @@ +location = $location; + $e->reason = $reason; + + return $e; + } + + public function operation(): string + { + return FilesystemOperationFailed::OPERATION_WRITE; + } + + public function reason(): string + { + return $this->reason; + } + + public function location(): string + { + return $this->location; + } +} diff --git a/vendor/league/flysystem/src/UnixVisibility/PortableVisibilityConverter.php b/vendor/league/flysystem/src/UnixVisibility/PortableVisibilityConverter.php new file mode 100644 index 000000000..5cc1eb232 --- /dev/null +++ b/vendor/league/flysystem/src/UnixVisibility/PortableVisibilityConverter.php @@ -0,0 +1,109 @@ +filePublic = $filePublic; + $this->filePrivate = $filePrivate; + $this->directoryPublic = $directoryPublic; + $this->directoryPrivate = $directoryPrivate; + $this->defaultForDirectories = $defaultForDirectories; + } + + public function forFile(string $visibility): int + { + PortableVisibilityGuard::guardAgainstInvalidInput($visibility); + + return $visibility === Visibility::PUBLIC + ? $this->filePublic + : $this->filePrivate; + } + + public function forDirectory(string $visibility): int + { + PortableVisibilityGuard::guardAgainstInvalidInput($visibility); + + return $visibility === Visibility::PUBLIC + ? $this->directoryPublic + : $this->directoryPrivate; + } + + public function inverseForFile(int $visibility): string + { + if ($visibility === $this->filePublic) { + return Visibility::PUBLIC; + } elseif ($visibility === $this->filePrivate) { + return Visibility::PRIVATE; + } + + return Visibility::PUBLIC; // default + } + + public function inverseForDirectory(int $visibility): string + { + if ($visibility === $this->directoryPublic) { + return Visibility::PUBLIC; + } elseif ($visibility === $this->directoryPrivate) { + return Visibility::PRIVATE; + } + + return Visibility::PUBLIC; // default + } + + public function defaultForDirectories(): int + { + return $this->defaultForDirectories === Visibility::PUBLIC ? $this->directoryPublic : $this->directoryPrivate; + } + + /** + * @param array $permissionMap + */ + public static function fromArray(array $permissionMap, string $defaultForDirectories = Visibility::PRIVATE): PortableVisibilityConverter + { + return new PortableVisibilityConverter( + $permissionMap['file']['public'] ?? 0644, + $permissionMap['file']['private'] ?? 0600, + $permissionMap['dir']['public'] ?? 0755, + $permissionMap['dir']['private'] ?? 0700, + $defaultForDirectories + ); + } +} diff --git a/vendor/league/flysystem/src/UnixVisibility/VisibilityConverter.php b/vendor/league/flysystem/src/UnixVisibility/VisibilityConverter.php new file mode 100644 index 000000000..64af86a07 --- /dev/null +++ b/vendor/league/flysystem/src/UnixVisibility/VisibilityConverter.php @@ -0,0 +1,14 @@ +location; + } + + public static function atLocation(string $location): UnreadableFileEncountered + { + $e = new static("Unreadable file encountered at location {$location}."); + $e->location = $location; + + return $e; + } +} diff --git a/vendor/league/flysystem/src/Visibility.php b/vendor/league/flysystem/src/Visibility.php new file mode 100644 index 000000000..071ca0000 --- /dev/null +++ b/vendor/league/flysystem/src/Visibility.php @@ -0,0 +1,11 @@ +rejectFunkyWhiteSpace($path); + + return $this->normalizeRelativePath($path); + } + + private function rejectFunkyWhiteSpace(string $path): void + { + if (preg_match('#\p{C}+#u', $path)) { + throw CorruptedPathDetected::forPath($path); + } + } + + private function normalizeRelativePath(string $path): string + { + $parts = []; + + foreach (explode('/', $path) as $part) { + switch ($part) { + case '': + case '.': + break; + + case '..': + if (empty($parts)) { + throw PathTraversalDetected::forPath($path); + } + array_pop($parts); + break; + + default: + $parts[] = $part; + break; + } + } + + return implode('/', $parts); + } +} diff --git a/vendor/league/mime-type-detection/CHANGELOG.md b/vendor/league/mime-type-detection/CHANGELOG.md new file mode 100644 index 000000000..653ca5181 --- /dev/null +++ b/vendor/league/mime-type-detection/CHANGELOG.md @@ -0,0 +1,49 @@ +# Changelog + +## 1.13.0 - 2022-08-05 + +### Added + +- A reverse lookup mechanism to fetch one or all extensions for a given mimetype + +## 1.12.0 - 2022-08-03 + +### Updated + +- Updated lookup + +## 1.11.0 - 2022-04-17 + +### Updated + +- Updated lookup + +## 1.10.0 - 2022-04-11 + +### Fixed + +- Added Flysystem v1 inconclusive mime-types and made it configurable as a constructor parameter. + +## 1.9.0 - 2021-11-21 + +### Updated + +- Updated lookup + +## 1.8.0 - 2021-09-25 + +### Added + +- Added the decorator `OverridingExtensionToMimeTypeMap` which allows you to override values. + +## 1.7.0 - 2021-01-18 + +### Added + +- Added a `bufferSampleSize` parameter to the `FinfoMimeTypeDetector` class that allows you to send a reduced content sample which costs less memory. + +## 1.6.0 - 2021-01-18 + +### Changes + +- Updated generated mime-type map diff --git a/vendor/league/mime-type-detection/LICENSE b/vendor/league/mime-type-detection/LICENSE new file mode 100644 index 000000000..39d50b5e7 --- /dev/null +++ b/vendor/league/mime-type-detection/LICENSE @@ -0,0 +1,19 @@ +Copyright (c) 2013-2023 Frank de Jonge + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is furnished +to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. diff --git a/vendor/league/mime-type-detection/composer.json b/vendor/league/mime-type-detection/composer.json new file mode 100644 index 000000000..cd75beea7 --- /dev/null +++ b/vendor/league/mime-type-detection/composer.json @@ -0,0 +1,34 @@ +{ + "name": "league/mime-type-detection", + "description": "Mime-type detection for Flysystem", + "license": "MIT", + "authors": [ + { + "name": "Frank de Jonge", + "email": "info@frankdejonge.nl" + } + ], + "scripts": { + "test": "vendor/bin/phpunit", + "phpstan": "vendor/bin/phpstan analyse -l 6 src" + }, + "require": { + "php": "^7.4 || ^8.0", + "ext-fileinfo": "*" + }, + "require-dev": { + "phpunit/phpunit": "^8.5.8 || ^9.3 || ^10.0", + "phpstan/phpstan": "^0.12.68", + "friendsofphp/php-cs-fixer": "^3.2" + }, + "autoload": { + "psr-4": { + "League\\MimeTypeDetection\\": "src" + } + }, + "config": { + "platform": { + "php": "7.4.0" + } + } +} diff --git a/vendor/league/mime-type-detection/src/EmptyExtensionToMimeTypeMap.php b/vendor/league/mime-type-detection/src/EmptyExtensionToMimeTypeMap.php new file mode 100644 index 000000000..fc0424161 --- /dev/null +++ b/vendor/league/mime-type-detection/src/EmptyExtensionToMimeTypeMap.php @@ -0,0 +1,13 @@ +extensions = $extensions ?: new GeneratedExtensionToMimeTypeMap(); + } + + public function detectMimeType(string $path, $contents): ?string + { + return $this->detectMimeTypeFromPath($path); + } + + public function detectMimeTypeFromPath(string $path): ?string + { + $extension = strtolower(pathinfo($path, PATHINFO_EXTENSION)); + + return $this->extensions->lookupMimeType($extension); + } + + public function detectMimeTypeFromFile(string $path): ?string + { + return $this->detectMimeTypeFromPath($path); + } + + public function detectMimeTypeFromBuffer(string $contents): ?string + { + return null; + } + + public function lookupExtension(string $mimetype): ?string + { + return $this->extensions instanceof ExtensionLookup + ? $this->extensions->lookupExtension($mimetype) + : null; + } + + public function lookupAllExtensions(string $mimetype): array + { + return $this->extensions instanceof ExtensionLookup + ? $this->extensions->lookupAllExtensions($mimetype) + : []; + } +} diff --git a/vendor/league/mime-type-detection/src/ExtensionToMimeTypeMap.php b/vendor/league/mime-type-detection/src/ExtensionToMimeTypeMap.php new file mode 100644 index 000000000..1dad7bc1a --- /dev/null +++ b/vendor/league/mime-type-detection/src/ExtensionToMimeTypeMap.php @@ -0,0 +1,10 @@ + + */ + private $inconclusiveMimetypes; + + public function __construct( + string $magicFile = '', + ExtensionToMimeTypeMap $extensionMap = null, + ?int $bufferSampleSize = null, + array $inconclusiveMimetypes = self::INCONCLUSIVE_MIME_TYPES + ) { + $this->finfo = new finfo(FILEINFO_MIME_TYPE, $magicFile); + $this->extensionMap = $extensionMap ?: new GeneratedExtensionToMimeTypeMap(); + $this->bufferSampleSize = $bufferSampleSize; + $this->inconclusiveMimetypes = $inconclusiveMimetypes; + } + + public function detectMimeType(string $path, $contents): ?string + { + $mimeType = is_string($contents) + ? (@$this->finfo->buffer($this->takeSample($contents)) ?: null) + : null; + + if ($mimeType !== null && ! in_array($mimeType, $this->inconclusiveMimetypes)) { + return $mimeType; + } + + return $this->detectMimeTypeFromPath($path); + } + + public function detectMimeTypeFromPath(string $path): ?string + { + $extension = strtolower(pathinfo($path, PATHINFO_EXTENSION)); + + return $this->extensionMap->lookupMimeType($extension); + } + + public function detectMimeTypeFromFile(string $path): ?string + { + return @$this->finfo->file($path) ?: null; + } + + public function detectMimeTypeFromBuffer(string $contents): ?string + { + return @$this->finfo->buffer($this->takeSample($contents)) ?: null; + } + + private function takeSample(string $contents): string + { + if ($this->bufferSampleSize === null) { + return $contents; + } + + return (string) substr($contents, 0, $this->bufferSampleSize); + } + + public function lookupExtension(string $mimetype): ?string + { + return $this->extensionMap instanceof ExtensionLookup + ? $this->extensionMap->lookupExtension($mimetype) + : null; + } + + public function lookupAllExtensions(string $mimetype): array + { + return $this->extensionMap instanceof ExtensionLookup + ? $this->extensionMap->lookupAllExtensions($mimetype) + : []; + } +} diff --git a/vendor/league/mime-type-detection/src/GeneratedExtensionToMimeTypeMap.php b/vendor/league/mime-type-detection/src/GeneratedExtensionToMimeTypeMap.php new file mode 100644 index 000000000..72f515fbc --- /dev/null +++ b/vendor/league/mime-type-detection/src/GeneratedExtensionToMimeTypeMap.php @@ -0,0 +1,2291 @@ + + * + * @internal + */ + public const MIME_TYPES_FOR_EXTENSIONS = [ + '1km' => 'application/vnd.1000minds.decision-model+xml', + '3dml' => 'text/vnd.in3d.3dml', + '3ds' => 'image/x-3ds', + '3g2' => 'video/3gpp2', + '3gp' => 'video/3gp', + '3gpp' => 'video/3gpp', + '3mf' => 'model/3mf', + '7z' => 'application/x-7z-compressed', + '7zip' => 'application/x-7z-compressed', + '123' => 'application/vnd.lotus-1-2-3', + 'aab' => 'application/x-authorware-bin', + 'aac' => 'audio/acc', + 'aam' => 'application/x-authorware-map', + 'aas' => 'application/x-authorware-seg', + 'abw' => 'application/x-abiword', + 'ac' => 'application/vnd.nokia.n-gage.ac+xml', + 'ac3' => 'audio/ac3', + 'acc' => 'application/vnd.americandynamics.acc', + 'ace' => 'application/x-ace-compressed', + 'acu' => 'application/vnd.acucobol', + 'acutc' => 'application/vnd.acucorp', + 'adp' => 'audio/adpcm', + 'adts' => 'audio/aac', + 'aep' => 'application/vnd.audiograph', + 'afm' => 'application/x-font-type1', + 'afp' => 'application/vnd.ibm.modcap', + 'age' => 'application/vnd.age', + 'ahead' => 'application/vnd.ahead.space', + 'ai' => 'application/pdf', + 'aif' => 'audio/x-aiff', + 'aifc' => 'audio/x-aiff', + 'aiff' => 'audio/x-aiff', + 'air' => 'application/vnd.adobe.air-application-installer-package+zip', + 'ait' => 'application/vnd.dvb.ait', + 'ami' => 'application/vnd.amiga.ami', + 'aml' => 'application/automationml-aml+xml', + 'amlx' => 'application/automationml-amlx+zip', + 'amr' => 'audio/amr', + 'apk' => 'application/vnd.android.package-archive', + 'apng' => 'image/apng', + 'appcache' => 'text/cache-manifest', + 'appinstaller' => 'application/appinstaller', + 'application' => 'application/x-ms-application', + 'appx' => 'application/appx', + 'appxbundle' => 'application/appxbundle', + 'apr' => 'application/vnd.lotus-approach', + 'arc' => 'application/x-freearc', + 'arj' => 'application/x-arj', + 'asc' => 'application/pgp-signature', + 'asf' => 'video/x-ms-asf', + 'asm' => 'text/x-asm', + 'aso' => 'application/vnd.accpac.simply.aso', + 'asx' => 'video/x-ms-asf', + 'atc' => 'application/vnd.acucorp', + 'atom' => 'application/atom+xml', + 'atomcat' => 'application/atomcat+xml', + 'atomdeleted' => 'application/atomdeleted+xml', + 'atomsvc' => 'application/atomsvc+xml', + 'atx' => 'application/vnd.antix.game-component', + 'au' => 'audio/x-au', + 'avci' => 'image/avci', + 'avcs' => 'image/avcs', + 'avi' => 'video/x-msvideo', + 'avif' => 'image/avif', + 'aw' => 'application/applixware', + 'azf' => 'application/vnd.airzip.filesecure.azf', + 'azs' => 'application/vnd.airzip.filesecure.azs', + 'azv' => 'image/vnd.airzip.accelerator.azv', + 'azw' => 'application/vnd.amazon.ebook', + 'b16' => 'image/vnd.pco.b16', + 'bat' => 'application/x-msdownload', + 'bcpio' => 'application/x-bcpio', + 'bdf' => 'application/x-font-bdf', + 'bdm' => 'application/vnd.syncml.dm+wbxml', + 'bdoc' => 'application/x-bdoc', + 'bed' => 'application/vnd.realvnc.bed', + 'bh2' => 'application/vnd.fujitsu.oasysprs', + 'bin' => 'application/octet-stream', + 'blb' => 'application/x-blorb', + 'blorb' => 'application/x-blorb', + 'bmi' => 'application/vnd.bmi', + 'bmml' => 'application/vnd.balsamiq.bmml+xml', + 'bmp' => 'image/bmp', + 'book' => 'application/vnd.framemaker', + 'box' => 'application/vnd.previewsystems.box', + 'boz' => 'application/x-bzip2', + 'bpk' => 'application/octet-stream', + 'bpmn' => 'application/octet-stream', + 'bsp' => 'model/vnd.valve.source.compiled-map', + 'btf' => 'image/prs.btif', + 'btif' => 'image/prs.btif', + 'buffer' => 'application/octet-stream', + 'bz' => 'application/x-bzip', + 'bz2' => 'application/x-bzip2', + 'c' => 'text/x-c', + 'c4d' => 'application/vnd.clonk.c4group', + 'c4f' => 'application/vnd.clonk.c4group', + 'c4g' => 'application/vnd.clonk.c4group', + 'c4p' => 'application/vnd.clonk.c4group', + 'c4u' => 'application/vnd.clonk.c4group', + 'c11amc' => 'application/vnd.cluetrust.cartomobile-config', + 'c11amz' => 'application/vnd.cluetrust.cartomobile-config-pkg', + 'cab' => 'application/vnd.ms-cab-compressed', + 'caf' => 'audio/x-caf', + 'cap' => 'application/vnd.tcpdump.pcap', + 'car' => 'application/vnd.curl.car', + 'cat' => 'application/vnd.ms-pki.seccat', + 'cb7' => 'application/x-cbr', + 'cba' => 'application/x-cbr', + 'cbr' => 'application/x-cbr', + 'cbt' => 'application/x-cbr', + 'cbz' => 'application/x-cbr', + 'cc' => 'text/x-c', + 'cco' => 'application/x-cocoa', + 'cct' => 'application/x-director', + 'ccxml' => 'application/ccxml+xml', + 'cdbcmsg' => 'application/vnd.contact.cmsg', + 'cdf' => 'application/x-netcdf', + 'cdfx' => 'application/cdfx+xml', + 'cdkey' => 'application/vnd.mediastation.cdkey', + 'cdmia' => 'application/cdmi-capability', + 'cdmic' => 'application/cdmi-container', + 'cdmid' => 'application/cdmi-domain', + 'cdmio' => 'application/cdmi-object', + 'cdmiq' => 'application/cdmi-queue', + 'cdr' => 'application/cdr', + 'cdx' => 'chemical/x-cdx', + 'cdxml' => 'application/vnd.chemdraw+xml', + 'cdy' => 'application/vnd.cinderella', + 'cer' => 'application/pkix-cert', + 'cfs' => 'application/x-cfs-compressed', + 'cgm' => 'image/cgm', + 'chat' => 'application/x-chat', + 'chm' => 'application/vnd.ms-htmlhelp', + 'chrt' => 'application/vnd.kde.kchart', + 'cif' => 'chemical/x-cif', + 'cii' => 'application/vnd.anser-web-certificate-issue-initiation', + 'cil' => 'application/vnd.ms-artgalry', + 'cjs' => 'application/node', + 'cla' => 'application/vnd.claymore', + 'class' => 'application/octet-stream', + 'cld' => 'model/vnd.cld', + 'clkk' => 'application/vnd.crick.clicker.keyboard', + 'clkp' => 'application/vnd.crick.clicker.palette', + 'clkt' => 'application/vnd.crick.clicker.template', + 'clkw' => 'application/vnd.crick.clicker.wordbank', + 'clkx' => 'application/vnd.crick.clicker', + 'clp' => 'application/x-msclip', + 'cmc' => 'application/vnd.cosmocaller', + 'cmdf' => 'chemical/x-cmdf', + 'cml' => 'chemical/x-cml', + 'cmp' => 'application/vnd.yellowriver-custom-menu', + 'cmx' => 'image/x-cmx', + 'cod' => 'application/vnd.rim.cod', + 'coffee' => 'text/coffeescript', + 'com' => 'application/x-msdownload', + 'conf' => 'text/plain', + 'cpio' => 'application/x-cpio', + 'cpl' => 'application/cpl+xml', + 'cpp' => 'text/x-c', + 'cpt' => 'application/mac-compactpro', + 'crd' => 'application/x-mscardfile', + 'crl' => 'application/pkix-crl', + 'crt' => 'application/x-x509-ca-cert', + 'crx' => 'application/x-chrome-extension', + 'cryptonote' => 'application/vnd.rig.cryptonote', + 'csh' => 'application/x-csh', + 'csl' => 'application/vnd.citationstyles.style+xml', + 'csml' => 'chemical/x-csml', + 'csp' => 'application/vnd.commonspace', + 'csr' => 'application/octet-stream', + 'css' => 'text/css', + 'cst' => 'application/x-director', + 'csv' => 'text/csv', + 'cu' => 'application/cu-seeme', + 'curl' => 'text/vnd.curl', + 'cwl' => 'application/cwl', + 'cww' => 'application/prs.cww', + 'cxt' => 'application/x-director', + 'cxx' => 'text/x-c', + 'dae' => 'model/vnd.collada+xml', + 'daf' => 'application/vnd.mobius.daf', + 'dart' => 'application/vnd.dart', + 'dataless' => 'application/vnd.fdsn.seed', + 'davmount' => 'application/davmount+xml', + 'dbf' => 'application/vnd.dbf', + 'dbk' => 'application/docbook+xml', + 'dcr' => 'application/x-director', + 'dcurl' => 'text/vnd.curl.dcurl', + 'dd2' => 'application/vnd.oma.dd2+xml', + 'ddd' => 'application/vnd.fujixerox.ddd', + 'ddf' => 'application/vnd.syncml.dmddf+xml', + 'dds' => 'image/vnd.ms-dds', + 'deb' => 'application/x-debian-package', + 'def' => 'text/plain', + 'deploy' => 'application/octet-stream', + 'der' => 'application/x-x509-ca-cert', + 'dfac' => 'application/vnd.dreamfactory', + 'dgc' => 'application/x-dgc-compressed', + 'dib' => 'image/bmp', + 'dic' => 'text/x-c', + 'dir' => 'application/x-director', + 'dis' => 'application/vnd.mobius.dis', + 'disposition-notification' => 'message/disposition-notification', + 'dist' => 'application/octet-stream', + 'distz' => 'application/octet-stream', + 'djv' => 'image/vnd.djvu', + 'djvu' => 'image/vnd.djvu', + 'dll' => 'application/octet-stream', + 'dmg' => 'application/x-apple-diskimage', + 'dmn' => 'application/octet-stream', + 'dmp' => 'application/vnd.tcpdump.pcap', + 'dms' => 'application/octet-stream', + 'dna' => 'application/vnd.dna', + 'doc' => 'application/msword', + 'docm' => 'application/vnd.ms-word.template.macroEnabled.12', + 'docx' => 'application/vnd.openxmlformats-officedocument.wordprocessingml.document', + 'dot' => 'application/msword', + 'dotm' => 'application/vnd.ms-word.template.macroEnabled.12', + 'dotx' => 'application/vnd.openxmlformats-officedocument.wordprocessingml.template', + 'dp' => 'application/vnd.osgi.dp', + 'dpg' => 'application/vnd.dpgraph', + 'dpx' => 'image/dpx', + 'dra' => 'audio/vnd.dra', + 'drle' => 'image/dicom-rle', + 'dsc' => 'text/prs.lines.tag', + 'dssc' => 'application/dssc+der', + 'dtb' => 'application/x-dtbook+xml', + 'dtd' => 'application/xml-dtd', + 'dts' => 'audio/vnd.dts', + 'dtshd' => 'audio/vnd.dts.hd', + 'dump' => 'application/octet-stream', + 'dvb' => 'video/vnd.dvb.file', + 'dvi' => 'application/x-dvi', + 'dwd' => 'application/atsc-dwd+xml', + 'dwf' => 'model/vnd.dwf', + 'dwg' => 'image/vnd.dwg', + 'dxf' => 'image/vnd.dxf', + 'dxp' => 'application/vnd.spotfire.dxp', + 'dxr' => 'application/x-director', + 'ear' => 'application/java-archive', + 'ecelp4800' => 'audio/vnd.nuera.ecelp4800', + 'ecelp7470' => 'audio/vnd.nuera.ecelp7470', + 'ecelp9600' => 'audio/vnd.nuera.ecelp9600', + 'ecma' => 'application/ecmascript', + 'edm' => 'application/vnd.novadigm.edm', + 'edx' => 'application/vnd.novadigm.edx', + 'efif' => 'application/vnd.picsel', + 'ei6' => 'application/vnd.pg.osasli', + 'elc' => 'application/octet-stream', + 'emf' => 'image/emf', + 'eml' => 'message/rfc822', + 'emma' => 'application/emma+xml', + 'emotionml' => 'application/emotionml+xml', + 'emz' => 'application/x-msmetafile', + 'eol' => 'audio/vnd.digital-winds', + 'eot' => 'application/vnd.ms-fontobject', + 'eps' => 'application/postscript', + 'epub' => 'application/epub+zip', + 'es3' => 'application/vnd.eszigno3+xml', + 'esa' => 'application/vnd.osgi.subsystem', + 'esf' => 'application/vnd.epson.esf', + 'et3' => 'application/vnd.eszigno3+xml', + 'etx' => 'text/x-setext', + 'eva' => 'application/x-eva', + 'evy' => 'application/x-envoy', + 'exe' => 'application/octet-stream', + 'exi' => 'application/exi', + 'exp' => 'application/express', + 'exr' => 'image/aces', + 'ext' => 'application/vnd.novadigm.ext', + 'ez' => 'application/andrew-inset', + 'ez2' => 'application/vnd.ezpix-album', + 'ez3' => 'application/vnd.ezpix-package', + 'f' => 'text/x-fortran', + 'f4v' => 'video/mp4', + 'f77' => 'text/x-fortran', + 'f90' => 'text/x-fortran', + 'fbs' => 'image/vnd.fastbidsheet', + 'fcdt' => 'application/vnd.adobe.formscentral.fcdt', + 'fcs' => 'application/vnd.isac.fcs', + 'fdf' => 'application/vnd.fdf', + 'fdt' => 'application/fdt+xml', + 'fe_launch' => 'application/vnd.denovo.fcselayout-link', + 'fg5' => 'application/vnd.fujitsu.oasysgp', + 'fgd' => 'application/x-director', + 'fh' => 'image/x-freehand', + 'fh4' => 'image/x-freehand', + 'fh5' => 'image/x-freehand', + 'fh7' => 'image/x-freehand', + 'fhc' => 'image/x-freehand', + 'fig' => 'application/x-xfig', + 'fits' => 'image/fits', + 'flac' => 'audio/x-flac', + 'fli' => 'video/x-fli', + 'flo' => 'application/vnd.micrografx.flo', + 'flv' => 'video/x-flv', + 'flw' => 'application/vnd.kde.kivio', + 'flx' => 'text/vnd.fmi.flexstor', + 'fly' => 'text/vnd.fly', + 'fm' => 'application/vnd.framemaker', + 'fnc' => 'application/vnd.frogans.fnc', + 'fo' => 'application/vnd.software602.filler.form+xml', + 'for' => 'text/x-fortran', + 'fpx' => 'image/vnd.fpx', + 'frame' => 'application/vnd.framemaker', + 'fsc' => 'application/vnd.fsc.weblaunch', + 'fst' => 'image/vnd.fst', + 'ftc' => 'application/vnd.fluxtime.clip', + 'fti' => 'application/vnd.anser-web-funds-transfer-initiation', + 'fvt' => 'video/vnd.fvt', + 'fxp' => 'application/vnd.adobe.fxp', + 'fxpl' => 'application/vnd.adobe.fxp', + 'fzs' => 'application/vnd.fuzzysheet', + 'g2w' => 'application/vnd.geoplan', + 'g3' => 'image/g3fax', + 'g3w' => 'application/vnd.geospace', + 'gac' => 'application/vnd.groove-account', + 'gam' => 'application/x-tads', + 'gbr' => 'application/rpki-ghostbusters', + 'gca' => 'application/x-gca-compressed', + 'gdl' => 'model/vnd.gdl', + 'gdoc' => 'application/vnd.google-apps.document', + 'ged' => 'text/vnd.familysearch.gedcom', + 'geo' => 'application/vnd.dynageo', + 'geojson' => 'application/geo+json', + 'gex' => 'application/vnd.geometry-explorer', + 'ggb' => 'application/vnd.geogebra.file', + 'ggt' => 'application/vnd.geogebra.tool', + 'ghf' => 'application/vnd.groove-help', + 'gif' => 'image/gif', + 'gim' => 'application/vnd.groove-identity-message', + 'glb' => 'model/gltf-binary', + 'gltf' => 'model/gltf+json', + 'gml' => 'application/gml+xml', + 'gmx' => 'application/vnd.gmx', + 'gnumeric' => 'application/x-gnumeric', + 'gpg' => 'application/gpg-keys', + 'gph' => 'application/vnd.flographit', + 'gpx' => 'application/gpx+xml', + 'gqf' => 'application/vnd.grafeq', + 'gqs' => 'application/vnd.grafeq', + 'gram' => 'application/srgs', + 'gramps' => 'application/x-gramps-xml', + 'gre' => 'application/vnd.geometry-explorer', + 'grv' => 'application/vnd.groove-injector', + 'grxml' => 'application/srgs+xml', + 'gsf' => 'application/x-font-ghostscript', + 'gsheet' => 'application/vnd.google-apps.spreadsheet', + 'gslides' => 'application/vnd.google-apps.presentation', + 'gtar' => 'application/x-gtar', + 'gtm' => 'application/vnd.groove-tool-message', + 'gtw' => 'model/vnd.gtw', + 'gv' => 'text/vnd.graphviz', + 'gxf' => 'application/gxf', + 'gxt' => 'application/vnd.geonext', + 'gz' => 'application/gzip', + 'gzip' => 'application/gzip', + 'h' => 'text/x-c', + 'h261' => 'video/h261', + 'h263' => 'video/h263', + 'h264' => 'video/h264', + 'hal' => 'application/vnd.hal+xml', + 'hbci' => 'application/vnd.hbci', + 'hbs' => 'text/x-handlebars-template', + 'hdd' => 'application/x-virtualbox-hdd', + 'hdf' => 'application/x-hdf', + 'heic' => 'image/heic', + 'heics' => 'image/heic-sequence', + 'heif' => 'image/heif', + 'heifs' => 'image/heif-sequence', + 'hej2' => 'image/hej2k', + 'held' => 'application/atsc-held+xml', + 'hh' => 'text/x-c', + 'hjson' => 'application/hjson', + 'hlp' => 'application/winhlp', + 'hpgl' => 'application/vnd.hp-hpgl', + 'hpid' => 'application/vnd.hp-hpid', + 'hps' => 'application/vnd.hp-hps', + 'hqx' => 'application/mac-binhex40', + 'hsj2' => 'image/hsj2', + 'htc' => 'text/x-component', + 'htke' => 'application/vnd.kenameaapp', + 'htm' => 'text/html', + 'html' => 'text/html', + 'hvd' => 'application/vnd.yamaha.hv-dic', + 'hvp' => 'application/vnd.yamaha.hv-voice', + 'hvs' => 'application/vnd.yamaha.hv-script', + 'i2g' => 'application/vnd.intergeo', + 'icc' => 'application/vnd.iccprofile', + 'ice' => 'x-conference/x-cooltalk', + 'icm' => 'application/vnd.iccprofile', + 'ico' => 'image/x-icon', + 'ics' => 'text/calendar', + 'ief' => 'image/ief', + 'ifb' => 'text/calendar', + 'ifm' => 'application/vnd.shana.informed.formdata', + 'iges' => 'model/iges', + 'igl' => 'application/vnd.igloader', + 'igm' => 'application/vnd.insors.igm', + 'igs' => 'model/iges', + 'igx' => 'application/vnd.micrografx.igx', + 'iif' => 'application/vnd.shana.informed.interchange', + 'img' => 'application/octet-stream', + 'imp' => 'application/vnd.accpac.simply.imp', + 'ims' => 'application/vnd.ms-ims', + 'in' => 'text/plain', + 'ini' => 'text/plain', + 'ink' => 'application/inkml+xml', + 'inkml' => 'application/inkml+xml', + 'install' => 'application/x-install-instructions', + 'iota' => 'application/vnd.astraea-software.iota', + 'ipfix' => 'application/ipfix', + 'ipk' => 'application/vnd.shana.informed.package', + 'irm' => 'application/vnd.ibm.rights-management', + 'irp' => 'application/vnd.irepository.package+xml', + 'iso' => 'application/x-iso9660-image', + 'itp' => 'application/vnd.shana.informed.formtemplate', + 'its' => 'application/its+xml', + 'ivp' => 'application/vnd.immervision-ivp', + 'ivu' => 'application/vnd.immervision-ivu', + 'jad' => 'text/vnd.sun.j2me.app-descriptor', + 'jade' => 'text/jade', + 'jam' => 'application/vnd.jam', + 'jar' => 'application/java-archive', + 'jardiff' => 'application/x-java-archive-diff', + 'java' => 'text/x-java-source', + 'jhc' => 'image/jphc', + 'jisp' => 'application/vnd.jisp', + 'jls' => 'image/jls', + 'jlt' => 'application/vnd.hp-jlyt', + 'jng' => 'image/x-jng', + 'jnlp' => 'application/x-java-jnlp-file', + 'joda' => 'application/vnd.joost.joda-archive', + 'jp2' => 'image/jp2', + 'jpe' => 'image/jpeg', + 'jpeg' => 'image/jpeg', + 'jpf' => 'image/jpx', + 'jpg' => 'image/jpeg', + 'jpg2' => 'image/jp2', + 'jpgm' => 'video/jpm', + 'jpgv' => 'video/jpeg', + 'jph' => 'image/jph', + 'jpm' => 'video/jpm', + 'jpx' => 'image/jpx', + 'js' => 'application/javascript', + 'json' => 'application/json', + 'json5' => 'application/json5', + 'jsonld' => 'application/ld+json', + 'jsonml' => 'application/jsonml+json', + 'jsx' => 'text/jsx', + 'jt' => 'model/jt', + 'jxr' => 'image/jxr', + 'jxra' => 'image/jxra', + 'jxrs' => 'image/jxrs', + 'jxs' => 'image/jxs', + 'jxsc' => 'image/jxsc', + 'jxsi' => 'image/jxsi', + 'jxss' => 'image/jxss', + 'kar' => 'audio/midi', + 'karbon' => 'application/vnd.kde.karbon', + 'kdb' => 'application/octet-stream', + 'kdbx' => 'application/x-keepass2', + 'key' => 'application/x-iwork-keynote-sffkey', + 'kfo' => 'application/vnd.kde.kformula', + 'kia' => 'application/vnd.kidspiration', + 'kml' => 'application/vnd.google-earth.kml+xml', + 'kmz' => 'application/vnd.google-earth.kmz', + 'kne' => 'application/vnd.kinar', + 'knp' => 'application/vnd.kinar', + 'kon' => 'application/vnd.kde.kontour', + 'kpr' => 'application/vnd.kde.kpresenter', + 'kpt' => 'application/vnd.kde.kpresenter', + 'kpxx' => 'application/vnd.ds-keypoint', + 'ksp' => 'application/vnd.kde.kspread', + 'ktr' => 'application/vnd.kahootz', + 'ktx' => 'image/ktx', + 'ktx2' => 'image/ktx2', + 'ktz' => 'application/vnd.kahootz', + 'kwd' => 'application/vnd.kde.kword', + 'kwt' => 'application/vnd.kde.kword', + 'lasxml' => 'application/vnd.las.las+xml', + 'latex' => 'application/x-latex', + 'lbd' => 'application/vnd.llamagraphics.life-balance.desktop', + 'lbe' => 'application/vnd.llamagraphics.life-balance.exchange+xml', + 'les' => 'application/vnd.hhe.lesson-player', + 'less' => 'text/less', + 'lgr' => 'application/lgr+xml', + 'lha' => 'application/octet-stream', + 'link66' => 'application/vnd.route66.link66+xml', + 'list' => 'text/plain', + 'list3820' => 'application/vnd.ibm.modcap', + 'listafp' => 'application/vnd.ibm.modcap', + 'litcoffee' => 'text/coffeescript', + 'lnk' => 'application/x-ms-shortcut', + 'log' => 'text/plain', + 'lostxml' => 'application/lost+xml', + 'lrf' => 'application/octet-stream', + 'lrm' => 'application/vnd.ms-lrm', + 'ltf' => 'application/vnd.frogans.ltf', + 'lua' => 'text/x-lua', + 'luac' => 'application/x-lua-bytecode', + 'lvp' => 'audio/vnd.lucent.voice', + 'lwp' => 'application/vnd.lotus-wordpro', + 'lzh' => 'application/octet-stream', + 'm1v' => 'video/mpeg', + 'm2a' => 'audio/mpeg', + 'm2v' => 'video/mpeg', + 'm3a' => 'audio/mpeg', + 'm3u' => 'text/plain', + 'm3u8' => 'application/vnd.apple.mpegurl', + 'm4a' => 'audio/x-m4a', + 'm4p' => 'application/mp4', + 'm4s' => 'video/iso.segment', + 'm4u' => 'application/vnd.mpegurl', + 'm4v' => 'video/x-m4v', + 'm13' => 'application/x-msmediaview', + 'm14' => 'application/x-msmediaview', + 'm21' => 'application/mp21', + 'ma' => 'application/mathematica', + 'mads' => 'application/mads+xml', + 'maei' => 'application/mmt-aei+xml', + 'mag' => 'application/vnd.ecowin.chart', + 'maker' => 'application/vnd.framemaker', + 'man' => 'text/troff', + 'manifest' => 'text/cache-manifest', + 'map' => 'application/json', + 'mar' => 'application/octet-stream', + 'markdown' => 'text/markdown', + 'mathml' => 'application/mathml+xml', + 'mb' => 'application/mathematica', + 'mbk' => 'application/vnd.mobius.mbk', + 'mbox' => 'application/mbox', + 'mc1' => 'application/vnd.medcalcdata', + 'mcd' => 'application/vnd.mcd', + 'mcurl' => 'text/vnd.curl.mcurl', + 'md' => 'text/markdown', + 'mdb' => 'application/x-msaccess', + 'mdi' => 'image/vnd.ms-modi', + 'mdx' => 'text/mdx', + 'me' => 'text/troff', + 'mesh' => 'model/mesh', + 'meta4' => 'application/metalink4+xml', + 'metalink' => 'application/metalink+xml', + 'mets' => 'application/mets+xml', + 'mfm' => 'application/vnd.mfmp', + 'mft' => 'application/rpki-manifest', + 'mgp' => 'application/vnd.osgeo.mapguide.package', + 'mgz' => 'application/vnd.proteus.magazine', + 'mid' => 'audio/midi', + 'midi' => 'audio/midi', + 'mie' => 'application/x-mie', + 'mif' => 'application/vnd.mif', + 'mime' => 'message/rfc822', + 'mj2' => 'video/mj2', + 'mjp2' => 'video/mj2', + 'mjs' => 'text/javascript', + 'mk3d' => 'video/x-matroska', + 'mka' => 'audio/x-matroska', + 'mkd' => 'text/x-markdown', + 'mks' => 'video/x-matroska', + 'mkv' => 'video/x-matroska', + 'mlp' => 'application/vnd.dolby.mlp', + 'mmd' => 'application/vnd.chipnuts.karaoke-mmd', + 'mmf' => 'application/vnd.smaf', + 'mml' => 'text/mathml', + 'mmr' => 'image/vnd.fujixerox.edmics-mmr', + 'mng' => 'video/x-mng', + 'mny' => 'application/x-msmoney', + 'mobi' => 'application/x-mobipocket-ebook', + 'mods' => 'application/mods+xml', + 'mov' => 'video/quicktime', + 'movie' => 'video/x-sgi-movie', + 'mp2' => 'audio/mpeg', + 'mp2a' => 'audio/mpeg', + 'mp3' => 'audio/mpeg', + 'mp4' => 'video/mp4', + 'mp4a' => 'audio/mp4', + 'mp4s' => 'application/mp4', + 'mp4v' => 'video/mp4', + 'mp21' => 'application/mp21', + 'mpc' => 'application/vnd.mophun.certificate', + 'mpd' => 'application/dash+xml', + 'mpe' => 'video/mpeg', + 'mpeg' => 'video/mpeg', + 'mpf' => 'application/media-policy-dataset+xml', + 'mpg' => 'video/mpeg', + 'mpg4' => 'video/mp4', + 'mpga' => 'audio/mpeg', + 'mpkg' => 'application/vnd.apple.installer+xml', + 'mpm' => 'application/vnd.blueice.multipass', + 'mpn' => 'application/vnd.mophun.application', + 'mpp' => 'application/vnd.ms-project', + 'mpt' => 'application/vnd.ms-project', + 'mpy' => 'application/vnd.ibm.minipay', + 'mqy' => 'application/vnd.mobius.mqy', + 'mrc' => 'application/marc', + 'mrcx' => 'application/marcxml+xml', + 'ms' => 'text/troff', + 'mscml' => 'application/mediaservercontrol+xml', + 'mseed' => 'application/vnd.fdsn.mseed', + 'mseq' => 'application/vnd.mseq', + 'msf' => 'application/vnd.epson.msf', + 'msg' => 'application/vnd.ms-outlook', + 'msh' => 'model/mesh', + 'msi' => 'application/x-msdownload', + 'msix' => 'application/msix', + 'msixbundle' => 'application/msixbundle', + 'msl' => 'application/vnd.mobius.msl', + 'msm' => 'application/octet-stream', + 'msp' => 'application/octet-stream', + 'msty' => 'application/vnd.muvee.style', + 'mtl' => 'model/mtl', + 'mts' => 'model/vnd.mts', + 'mus' => 'application/vnd.musician', + 'musd' => 'application/mmt-usd+xml', + 'musicxml' => 'application/vnd.recordare.musicxml+xml', + 'mvb' => 'application/x-msmediaview', + 'mvt' => 'application/vnd.mapbox-vector-tile', + 'mwf' => 'application/vnd.mfer', + 'mxf' => 'application/mxf', + 'mxl' => 'application/vnd.recordare.musicxml', + 'mxmf' => 'audio/mobile-xmf', + 'mxml' => 'application/xv+xml', + 'mxs' => 'application/vnd.triscape.mxs', + 'mxu' => 'video/vnd.mpegurl', + 'n-gage' => 'application/vnd.nokia.n-gage.symbian.install', + 'n3' => 'text/n3', + 'nb' => 'application/mathematica', + 'nbp' => 'application/vnd.wolfram.player', + 'nc' => 'application/x-netcdf', + 'ncx' => 'application/x-dtbncx+xml', + 'nfo' => 'text/x-nfo', + 'ngdat' => 'application/vnd.nokia.n-gage.data', + 'nitf' => 'application/vnd.nitf', + 'nlu' => 'application/vnd.neurolanguage.nlu', + 'nml' => 'application/vnd.enliven', + 'nnd' => 'application/vnd.noblenet-directory', + 'nns' => 'application/vnd.noblenet-sealer', + 'nnw' => 'application/vnd.noblenet-web', + 'npx' => 'image/vnd.net-fpx', + 'nq' => 'application/n-quads', + 'nsc' => 'application/x-conference', + 'nsf' => 'application/vnd.lotus-notes', + 'nt' => 'application/n-triples', + 'ntf' => 'application/vnd.nitf', + 'numbers' => 'application/x-iwork-numbers-sffnumbers', + 'nzb' => 'application/x-nzb', + 'oa2' => 'application/vnd.fujitsu.oasys2', + 'oa3' => 'application/vnd.fujitsu.oasys3', + 'oas' => 'application/vnd.fujitsu.oasys', + 'obd' => 'application/x-msbinder', + 'obgx' => 'application/vnd.openblox.game+xml', + 'obj' => 'model/obj', + 'oda' => 'application/oda', + 'odb' => 'application/vnd.oasis.opendocument.database', + 'odc' => 'application/vnd.oasis.opendocument.chart', + 'odf' => 'application/vnd.oasis.opendocument.formula', + 'odft' => 'application/vnd.oasis.opendocument.formula-template', + 'odg' => 'application/vnd.oasis.opendocument.graphics', + 'odi' => 'application/vnd.oasis.opendocument.image', + 'odm' => 'application/vnd.oasis.opendocument.text-master', + 'odp' => 'application/vnd.oasis.opendocument.presentation', + 'ods' => 'application/vnd.oasis.opendocument.spreadsheet', + 'odt' => 'application/vnd.oasis.opendocument.text', + 'oga' => 'audio/ogg', + 'ogex' => 'model/vnd.opengex', + 'ogg' => 'audio/ogg', + 'ogv' => 'video/ogg', + 'ogx' => 'application/ogg', + 'omdoc' => 'application/omdoc+xml', + 'onepkg' => 'application/onenote', + 'onetmp' => 'application/onenote', + 'onetoc' => 'application/onenote', + 'onetoc2' => 'application/onenote', + 'opf' => 'application/oebps-package+xml', + 'opml' => 'text/x-opml', + 'oprc' => 'application/vnd.palm', + 'opus' => 'audio/ogg', + 'org' => 'text/x-org', + 'osf' => 'application/vnd.yamaha.openscoreformat', + 'osfpvg' => 'application/vnd.yamaha.openscoreformat.osfpvg+xml', + 'osm' => 'application/vnd.openstreetmap.data+xml', + 'otc' => 'application/vnd.oasis.opendocument.chart-template', + 'otf' => 'font/otf', + 'otg' => 'application/vnd.oasis.opendocument.graphics-template', + 'oth' => 'application/vnd.oasis.opendocument.text-web', + 'oti' => 'application/vnd.oasis.opendocument.image-template', + 'otp' => 'application/vnd.oasis.opendocument.presentation-template', + 'ots' => 'application/vnd.oasis.opendocument.spreadsheet-template', + 'ott' => 'application/vnd.oasis.opendocument.text-template', + 'ova' => 'application/x-virtualbox-ova', + 'ovf' => 'application/x-virtualbox-ovf', + 'owl' => 'application/rdf+xml', + 'oxps' => 'application/oxps', + 'oxt' => 'application/vnd.openofficeorg.extension', + 'p' => 'text/x-pascal', + 'p7a' => 'application/x-pkcs7-signature', + 'p7b' => 'application/x-pkcs7-certificates', + 'p7c' => 'application/pkcs7-mime', + 'p7m' => 'application/pkcs7-mime', + 'p7r' => 'application/x-pkcs7-certreqresp', + 'p7s' => 'application/pkcs7-signature', + 'p8' => 'application/pkcs8', + 'p10' => 'application/x-pkcs10', + 'p12' => 'application/x-pkcs12', + 'pac' => 'application/x-ns-proxy-autoconfig', + 'pages' => 'application/x-iwork-pages-sffpages', + 'pas' => 'text/x-pascal', + 'paw' => 'application/vnd.pawaafile', + 'pbd' => 'application/vnd.powerbuilder6', + 'pbm' => 'image/x-portable-bitmap', + 'pcap' => 'application/vnd.tcpdump.pcap', + 'pcf' => 'application/x-font-pcf', + 'pcl' => 'application/vnd.hp-pcl', + 'pclxl' => 'application/vnd.hp-pclxl', + 'pct' => 'image/x-pict', + 'pcurl' => 'application/vnd.curl.pcurl', + 'pcx' => 'image/x-pcx', + 'pdb' => 'application/x-pilot', + 'pde' => 'text/x-processing', + 'pdf' => 'application/pdf', + 'pem' => 'application/x-x509-user-cert', + 'pfa' => 'application/x-font-type1', + 'pfb' => 'application/x-font-type1', + 'pfm' => 'application/x-font-type1', + 'pfr' => 'application/font-tdpfr', + 'pfx' => 'application/x-pkcs12', + 'pgm' => 'image/x-portable-graymap', + 'pgn' => 'application/x-chess-pgn', + 'pgp' => 'application/pgp', + 'phar' => 'application/octet-stream', + 'php' => 'application/x-httpd-php', + 'php3' => 'application/x-httpd-php', + 'php4' => 'application/x-httpd-php', + 'phps' => 'application/x-httpd-php-source', + 'phtml' => 'application/x-httpd-php', + 'pic' => 'image/x-pict', + 'pkg' => 'application/octet-stream', + 'pki' => 'application/pkixcmp', + 'pkipath' => 'application/pkix-pkipath', + 'pkpass' => 'application/vnd.apple.pkpass', + 'pl' => 'application/x-perl', + 'plb' => 'application/vnd.3gpp.pic-bw-large', + 'plc' => 'application/vnd.mobius.plc', + 'plf' => 'application/vnd.pocketlearn', + 'pls' => 'application/pls+xml', + 'pm' => 'application/x-perl', + 'pml' => 'application/vnd.ctc-posml', + 'png' => 'image/png', + 'pnm' => 'image/x-portable-anymap', + 'portpkg' => 'application/vnd.macports.portpkg', + 'pot' => 'application/vnd.ms-powerpoint', + 'potm' => 'application/vnd.ms-powerpoint.presentation.macroEnabled.12', + 'potx' => 'application/vnd.openxmlformats-officedocument.presentationml.template', + 'ppa' => 'application/vnd.ms-powerpoint', + 'ppam' => 'application/vnd.ms-powerpoint.addin.macroEnabled.12', + 'ppd' => 'application/vnd.cups-ppd', + 'ppm' => 'image/x-portable-pixmap', + 'pps' => 'application/vnd.ms-powerpoint', + 'ppsm' => 'application/vnd.ms-powerpoint.slideshow.macroEnabled.12', + 'ppsx' => 'application/vnd.openxmlformats-officedocument.presentationml.slideshow', + 'ppt' => 'application/powerpoint', + 'pptm' => 'application/vnd.ms-powerpoint.presentation.macroEnabled.12', + 'pptx' => 'application/vnd.openxmlformats-officedocument.presentationml.presentation', + 'pqa' => 'application/vnd.palm', + 'prc' => 'model/prc', + 'pre' => 'application/vnd.lotus-freelance', + 'prf' => 'application/pics-rules', + 'provx' => 'application/provenance+xml', + 'ps' => 'application/postscript', + 'psb' => 'application/vnd.3gpp.pic-bw-small', + 'psd' => 'application/x-photoshop', + 'psf' => 'application/x-font-linux-psf', + 'pskcxml' => 'application/pskc+xml', + 'pti' => 'image/prs.pti', + 'ptid' => 'application/vnd.pvi.ptid1', + 'pub' => 'application/x-mspublisher', + 'pvb' => 'application/vnd.3gpp.pic-bw-var', + 'pwn' => 'application/vnd.3m.post-it-notes', + 'pya' => 'audio/vnd.ms-playready.media.pya', + 'pyo' => 'model/vnd.pytha.pyox', + 'pyox' => 'model/vnd.pytha.pyox', + 'pyv' => 'video/vnd.ms-playready.media.pyv', + 'qam' => 'application/vnd.epson.quickanime', + 'qbo' => 'application/vnd.intu.qbo', + 'qfx' => 'application/vnd.intu.qfx', + 'qps' => 'application/vnd.publishare-delta-tree', + 'qt' => 'video/quicktime', + 'qwd' => 'application/vnd.quark.quarkxpress', + 'qwt' => 'application/vnd.quark.quarkxpress', + 'qxb' => 'application/vnd.quark.quarkxpress', + 'qxd' => 'application/vnd.quark.quarkxpress', + 'qxl' => 'application/vnd.quark.quarkxpress', + 'qxt' => 'application/vnd.quark.quarkxpress', + 'ra' => 'audio/x-realaudio', + 'ram' => 'audio/x-pn-realaudio', + 'raml' => 'application/raml+yaml', + 'rapd' => 'application/route-apd+xml', + 'rar' => 'application/x-rar', + 'ras' => 'image/x-cmu-raster', + 'rcprofile' => 'application/vnd.ipunplugged.rcprofile', + 'rdf' => 'application/rdf+xml', + 'rdz' => 'application/vnd.data-vision.rdz', + 'relo' => 'application/p2p-overlay+xml', + 'rep' => 'application/vnd.businessobjects', + 'res' => 'application/x-dtbresource+xml', + 'rgb' => 'image/x-rgb', + 'rif' => 'application/reginfo+xml', + 'rip' => 'audio/vnd.rip', + 'ris' => 'application/x-research-info-systems', + 'rl' => 'application/resource-lists+xml', + 'rlc' => 'image/vnd.fujixerox.edmics-rlc', + 'rld' => 'application/resource-lists-diff+xml', + 'rm' => 'audio/x-pn-realaudio', + 'rmi' => 'audio/midi', + 'rmp' => 'audio/x-pn-realaudio-plugin', + 'rms' => 'application/vnd.jcp.javame.midlet-rms', + 'rmvb' => 'application/vnd.rn-realmedia-vbr', + 'rnc' => 'application/relax-ng-compact-syntax', + 'rng' => 'application/xml', + 'roa' => 'application/rpki-roa', + 'roff' => 'text/troff', + 'rp9' => 'application/vnd.cloanto.rp9', + 'rpm' => 'audio/x-pn-realaudio-plugin', + 'rpss' => 'application/vnd.nokia.radio-presets', + 'rpst' => 'application/vnd.nokia.radio-preset', + 'rq' => 'application/sparql-query', + 'rs' => 'application/rls-services+xml', + 'rsa' => 'application/x-pkcs7', + 'rsat' => 'application/atsc-rsat+xml', + 'rsd' => 'application/rsd+xml', + 'rsheet' => 'application/urc-ressheet+xml', + 'rss' => 'application/rss+xml', + 'rtf' => 'text/rtf', + 'rtx' => 'text/richtext', + 'run' => 'application/x-makeself', + 'rusd' => 'application/route-usd+xml', + 'rv' => 'video/vnd.rn-realvideo', + 's' => 'text/x-asm', + 's3m' => 'audio/s3m', + 'saf' => 'application/vnd.yamaha.smaf-audio', + 'sass' => 'text/x-sass', + 'sbml' => 'application/sbml+xml', + 'sc' => 'application/vnd.ibm.secure-container', + 'scd' => 'application/x-msschedule', + 'scm' => 'application/vnd.lotus-screencam', + 'scq' => 'application/scvp-cv-request', + 'scs' => 'application/scvp-cv-response', + 'scss' => 'text/x-scss', + 'scurl' => 'text/vnd.curl.scurl', + 'sda' => 'application/vnd.stardivision.draw', + 'sdc' => 'application/vnd.stardivision.calc', + 'sdd' => 'application/vnd.stardivision.impress', + 'sdkd' => 'application/vnd.solent.sdkm+xml', + 'sdkm' => 'application/vnd.solent.sdkm+xml', + 'sdp' => 'application/sdp', + 'sdw' => 'application/vnd.stardivision.writer', + 'sea' => 'application/octet-stream', + 'see' => 'application/vnd.seemail', + 'seed' => 'application/vnd.fdsn.seed', + 'sema' => 'application/vnd.sema', + 'semd' => 'application/vnd.semd', + 'semf' => 'application/vnd.semf', + 'senmlx' => 'application/senml+xml', + 'sensmlx' => 'application/sensml+xml', + 'ser' => 'application/java-serialized-object', + 'setpay' => 'application/set-payment-initiation', + 'setreg' => 'application/set-registration-initiation', + 'sfd-hdstx' => 'application/vnd.hydrostatix.sof-data', + 'sfs' => 'application/vnd.spotfire.sfs', + 'sfv' => 'text/x-sfv', + 'sgi' => 'image/sgi', + 'sgl' => 'application/vnd.stardivision.writer-global', + 'sgm' => 'text/sgml', + 'sgml' => 'text/sgml', + 'sh' => 'application/x-sh', + 'shar' => 'application/x-shar', + 'shex' => 'text/shex', + 'shf' => 'application/shf+xml', + 'shtml' => 'text/html', + 'sid' => 'image/x-mrsid-image', + 'sieve' => 'application/sieve', + 'sig' => 'application/pgp-signature', + 'sil' => 'audio/silk', + 'silo' => 'model/mesh', + 'sis' => 'application/vnd.symbian.install', + 'sisx' => 'application/vnd.symbian.install', + 'sit' => 'application/x-stuffit', + 'sitx' => 'application/x-stuffitx', + 'siv' => 'application/sieve', + 'skd' => 'application/vnd.koan', + 'skm' => 'application/vnd.koan', + 'skp' => 'application/vnd.koan', + 'skt' => 'application/vnd.koan', + 'sldm' => 'application/vnd.ms-powerpoint.slide.macroenabled.12', + 'sldx' => 'application/vnd.openxmlformats-officedocument.presentationml.slide', + 'slim' => 'text/slim', + 'slm' => 'text/slim', + 'sls' => 'application/route-s-tsid+xml', + 'slt' => 'application/vnd.epson.salt', + 'sm' => 'application/vnd.stepmania.stepchart', + 'smf' => 'application/vnd.stardivision.math', + 'smi' => 'application/smil', + 'smil' => 'application/smil', + 'smv' => 'video/x-smv', + 'smzip' => 'application/vnd.stepmania.package', + 'snd' => 'audio/basic', + 'snf' => 'application/x-font-snf', + 'so' => 'application/octet-stream', + 'spc' => 'application/x-pkcs7-certificates', + 'spdx' => 'text/spdx', + 'spf' => 'application/vnd.yamaha.smaf-phrase', + 'spl' => 'application/x-futuresplash', + 'spot' => 'text/vnd.in3d.spot', + 'spp' => 'application/scvp-vp-response', + 'spq' => 'application/scvp-vp-request', + 'spx' => 'audio/ogg', + 'sql' => 'application/x-sql', + 'src' => 'application/x-wais-source', + 'srt' => 'application/x-subrip', + 'sru' => 'application/sru+xml', + 'srx' => 'application/sparql-results+xml', + 'ssdl' => 'application/ssdl+xml', + 'sse' => 'application/vnd.kodak-descriptor', + 'ssf' => 'application/vnd.epson.ssf', + 'ssml' => 'application/ssml+xml', + 'sst' => 'application/octet-stream', + 'st' => 'application/vnd.sailingtracker.track', + 'stc' => 'application/vnd.sun.xml.calc.template', + 'std' => 'application/vnd.sun.xml.draw.template', + 'step' => 'application/STEP', + 'stf' => 'application/vnd.wt.stf', + 'sti' => 'application/vnd.sun.xml.impress.template', + 'stk' => 'application/hyperstudio', + 'stl' => 'model/stl', + 'stp' => 'application/STEP', + 'stpx' => 'model/step+xml', + 'stpxz' => 'model/step-xml+zip', + 'stpz' => 'model/step+zip', + 'str' => 'application/vnd.pg.format', + 'stw' => 'application/vnd.sun.xml.writer.template', + 'styl' => 'text/stylus', + 'stylus' => 'text/stylus', + 'sub' => 'text/vnd.dvb.subtitle', + 'sus' => 'application/vnd.sus-calendar', + 'susp' => 'application/vnd.sus-calendar', + 'sv4cpio' => 'application/x-sv4cpio', + 'sv4crc' => 'application/x-sv4crc', + 'svc' => 'application/vnd.dvb.service', + 'svd' => 'application/vnd.svd', + 'svg' => 'image/svg+xml', + 'svgz' => 'image/svg+xml', + 'swa' => 'application/x-director', + 'swf' => 'application/x-shockwave-flash', + 'swi' => 'application/vnd.aristanetworks.swi', + 'swidtag' => 'application/swid+xml', + 'sxc' => 'application/vnd.sun.xml.calc', + 'sxd' => 'application/vnd.sun.xml.draw', + 'sxg' => 'application/vnd.sun.xml.writer.global', + 'sxi' => 'application/vnd.sun.xml.impress', + 'sxm' => 'application/vnd.sun.xml.math', + 'sxw' => 'application/vnd.sun.xml.writer', + 't' => 'text/troff', + 't3' => 'application/x-t3vm-image', + 't38' => 'image/t38', + 'taglet' => 'application/vnd.mynfc', + 'tao' => 'application/vnd.tao.intent-module-archive', + 'tap' => 'image/vnd.tencent.tap', + 'tar' => 'application/x-tar', + 'tcap' => 'application/vnd.3gpp2.tcap', + 'tcl' => 'application/x-tcl', + 'td' => 'application/urc-targetdesc+xml', + 'teacher' => 'application/vnd.smart.teacher', + 'tei' => 'application/tei+xml', + 'teicorpus' => 'application/tei+xml', + 'tex' => 'application/x-tex', + 'texi' => 'application/x-texinfo', + 'texinfo' => 'application/x-texinfo', + 'text' => 'text/plain', + 'tfi' => 'application/thraud+xml', + 'tfm' => 'application/x-tex-tfm', + 'tfx' => 'image/tiff-fx', + 'tga' => 'image/x-tga', + 'tgz' => 'application/x-tar', + 'thmx' => 'application/vnd.ms-officetheme', + 'tif' => 'image/tiff', + 'tiff' => 'image/tiff', + 'tk' => 'application/x-tcl', + 'tmo' => 'application/vnd.tmobile-livetv', + 'toml' => 'application/toml', + 'torrent' => 'application/x-bittorrent', + 'tpl' => 'application/vnd.groove-tool-template', + 'tpt' => 'application/vnd.trid.tpt', + 'tr' => 'text/troff', + 'tra' => 'application/vnd.trueapp', + 'trig' => 'application/trig', + 'trm' => 'application/x-msterminal', + 'ts' => 'video/mp2t', + 'tsd' => 'application/timestamped-data', + 'tsv' => 'text/tab-separated-values', + 'ttc' => 'font/collection', + 'ttf' => 'font/ttf', + 'ttl' => 'text/turtle', + 'ttml' => 'application/ttml+xml', + 'twd' => 'application/vnd.simtech-mindmapper', + 'twds' => 'application/vnd.simtech-mindmapper', + 'txd' => 'application/vnd.genomatix.tuxedo', + 'txf' => 'application/vnd.mobius.txf', + 'txt' => 'text/plain', + 'u3d' => 'model/u3d', + 'u8dsn' => 'message/global-delivery-status', + 'u8hdr' => 'message/global-headers', + 'u8mdn' => 'message/global-disposition-notification', + 'u8msg' => 'message/global', + 'u32' => 'application/x-authorware-bin', + 'ubj' => 'application/ubjson', + 'udeb' => 'application/x-debian-package', + 'ufd' => 'application/vnd.ufdl', + 'ufdl' => 'application/vnd.ufdl', + 'ulx' => 'application/x-glulx', + 'umj' => 'application/vnd.umajin', + 'unityweb' => 'application/vnd.unity', + 'uo' => 'application/vnd.uoml+xml', + 'uoml' => 'application/vnd.uoml+xml', + 'uri' => 'text/uri-list', + 'uris' => 'text/uri-list', + 'urls' => 'text/uri-list', + 'usda' => 'model/vnd.usda', + 'usdz' => 'model/vnd.usdz+zip', + 'ustar' => 'application/x-ustar', + 'utz' => 'application/vnd.uiq.theme', + 'uu' => 'text/x-uuencode', + 'uva' => 'audio/vnd.dece.audio', + 'uvd' => 'application/vnd.dece.data', + 'uvf' => 'application/vnd.dece.data', + 'uvg' => 'image/vnd.dece.graphic', + 'uvh' => 'video/vnd.dece.hd', + 'uvi' => 'image/vnd.dece.graphic', + 'uvm' => 'video/vnd.dece.mobile', + 'uvp' => 'video/vnd.dece.pd', + 'uvs' => 'video/vnd.dece.sd', + 'uvt' => 'application/vnd.dece.ttml+xml', + 'uvu' => 'video/vnd.uvvu.mp4', + 'uvv' => 'video/vnd.dece.video', + 'uvva' => 'audio/vnd.dece.audio', + 'uvvd' => 'application/vnd.dece.data', + 'uvvf' => 'application/vnd.dece.data', + 'uvvg' => 'image/vnd.dece.graphic', + 'uvvh' => 'video/vnd.dece.hd', + 'uvvi' => 'image/vnd.dece.graphic', + 'uvvm' => 'video/vnd.dece.mobile', + 'uvvp' => 'video/vnd.dece.pd', + 'uvvs' => 'video/vnd.dece.sd', + 'uvvt' => 'application/vnd.dece.ttml+xml', + 'uvvu' => 'video/vnd.uvvu.mp4', + 'uvvv' => 'video/vnd.dece.video', + 'uvvx' => 'application/vnd.dece.unspecified', + 'uvvz' => 'application/vnd.dece.zip', + 'uvx' => 'application/vnd.dece.unspecified', + 'uvz' => 'application/vnd.dece.zip', + 'vbox' => 'application/x-virtualbox-vbox', + 'vbox-extpack' => 'application/x-virtualbox-vbox-extpack', + 'vcard' => 'text/vcard', + 'vcd' => 'application/x-cdlink', + 'vcf' => 'text/x-vcard', + 'vcg' => 'application/vnd.groove-vcard', + 'vcs' => 'text/x-vcalendar', + 'vcx' => 'application/vnd.vcx', + 'vdi' => 'application/x-virtualbox-vdi', + 'vds' => 'model/vnd.sap.vds', + 'vhd' => 'application/x-virtualbox-vhd', + 'vis' => 'application/vnd.visionary', + 'viv' => 'video/vnd.vivo', + 'vlc' => 'application/videolan', + 'vmdk' => 'application/x-virtualbox-vmdk', + 'vob' => 'video/x-ms-vob', + 'vor' => 'application/vnd.stardivision.writer', + 'vox' => 'application/x-authorware-bin', + 'vrml' => 'model/vrml', + 'vsd' => 'application/vnd.visio', + 'vsf' => 'application/vnd.vsf', + 'vss' => 'application/vnd.visio', + 'vst' => 'application/vnd.visio', + 'vsw' => 'application/vnd.visio', + 'vtf' => 'image/vnd.valve.source.texture', + 'vtt' => 'text/vtt', + 'vtu' => 'model/vnd.vtu', + 'vxml' => 'application/voicexml+xml', + 'w3d' => 'application/x-director', + 'wad' => 'application/x-doom', + 'wadl' => 'application/vnd.sun.wadl+xml', + 'war' => 'application/java-archive', + 'wasm' => 'application/wasm', + 'wav' => 'audio/x-wav', + 'wax' => 'audio/x-ms-wax', + 'wbmp' => 'image/vnd.wap.wbmp', + 'wbs' => 'application/vnd.criticaltools.wbs+xml', + 'wbxml' => 'application/wbxml', + 'wcm' => 'application/vnd.ms-works', + 'wdb' => 'application/vnd.ms-works', + 'wdp' => 'image/vnd.ms-photo', + 'weba' => 'audio/webm', + 'webapp' => 'application/x-web-app-manifest+json', + 'webm' => 'video/webm', + 'webmanifest' => 'application/manifest+json', + 'webp' => 'image/webp', + 'wg' => 'application/vnd.pmi.widget', + 'wgsl' => 'text/wgsl', + 'wgt' => 'application/widget', + 'wif' => 'application/watcherinfo+xml', + 'wks' => 'application/vnd.ms-works', + 'wm' => 'video/x-ms-wm', + 'wma' => 'audio/x-ms-wma', + 'wmd' => 'application/x-ms-wmd', + 'wmf' => 'image/wmf', + 'wml' => 'text/vnd.wap.wml', + 'wmlc' => 'application/wmlc', + 'wmls' => 'text/vnd.wap.wmlscript', + 'wmlsc' => 'application/vnd.wap.wmlscriptc', + 'wmv' => 'video/x-ms-wmv', + 'wmx' => 'video/x-ms-wmx', + 'wmz' => 'application/x-msmetafile', + 'woff' => 'font/woff', + 'woff2' => 'font/woff2', + 'word' => 'application/msword', + 'wpd' => 'application/vnd.wordperfect', + 'wpl' => 'application/vnd.ms-wpl', + 'wps' => 'application/vnd.ms-works', + 'wqd' => 'application/vnd.wqd', + 'wri' => 'application/x-mswrite', + 'wrl' => 'model/vrml', + 'wsc' => 'message/vnd.wfa.wsc', + 'wsdl' => 'application/wsdl+xml', + 'wspolicy' => 'application/wspolicy+xml', + 'wtb' => 'application/vnd.webturbo', + 'wvx' => 'video/x-ms-wvx', + 'x3d' => 'model/x3d+xml', + 'x3db' => 'model/x3d+fastinfoset', + 'x3dbz' => 'model/x3d+binary', + 'x3dv' => 'model/x3d-vrml', + 'x3dvz' => 'model/x3d+vrml', + 'x3dz' => 'model/x3d+xml', + 'x32' => 'application/x-authorware-bin', + 'x_b' => 'model/vnd.parasolid.transmit.binary', + 'x_t' => 'model/vnd.parasolid.transmit.text', + 'xaml' => 'application/xaml+xml', + 'xap' => 'application/x-silverlight-app', + 'xar' => 'application/vnd.xara', + 'xav' => 'application/xcap-att+xml', + 'xbap' => 'application/x-ms-xbap', + 'xbd' => 'application/vnd.fujixerox.docuworks.binder', + 'xbm' => 'image/x-xbitmap', + 'xca' => 'application/xcap-caps+xml', + 'xcs' => 'application/calendar+xml', + 'xdf' => 'application/xcap-diff+xml', + 'xdm' => 'application/vnd.syncml.dm+xml', + 'xdp' => 'application/vnd.adobe.xdp+xml', + 'xdssc' => 'application/dssc+xml', + 'xdw' => 'application/vnd.fujixerox.docuworks', + 'xel' => 'application/xcap-el+xml', + 'xenc' => 'application/xenc+xml', + 'xer' => 'application/patch-ops-error+xml', + 'xfdf' => 'application/xfdf', + 'xfdl' => 'application/vnd.xfdl', + 'xht' => 'application/xhtml+xml', + 'xhtm' => 'application/vnd.pwg-xhtml-print+xml', + 'xhtml' => 'application/xhtml+xml', + 'xhvml' => 'application/xv+xml', + 'xif' => 'image/vnd.xiff', + 'xl' => 'application/excel', + 'xla' => 'application/vnd.ms-excel', + 'xlam' => 'application/vnd.ms-excel.addin.macroEnabled.12', + 'xlc' => 'application/vnd.ms-excel', + 'xlf' => 'application/xliff+xml', + 'xlm' => 'application/vnd.ms-excel', + 'xls' => 'application/vnd.ms-excel', + 'xlsb' => 'application/vnd.ms-excel.sheet.binary.macroEnabled.12', + 'xlsm' => 'application/vnd.ms-excel.sheet.macroEnabled.12', + 'xlsx' => 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet', + 'xlt' => 'application/vnd.ms-excel', + 'xltm' => 'application/vnd.ms-excel.template.macroEnabled.12', + 'xltx' => 'application/vnd.openxmlformats-officedocument.spreadsheetml.template', + 'xlw' => 'application/vnd.ms-excel', + 'xm' => 'audio/xm', + 'xml' => 'application/xml', + 'xns' => 'application/xcap-ns+xml', + 'xo' => 'application/vnd.olpc-sugar', + 'xop' => 'application/xop+xml', + 'xpi' => 'application/x-xpinstall', + 'xpl' => 'application/xproc+xml', + 'xpm' => 'image/x-xpixmap', + 'xpr' => 'application/vnd.is-xpr', + 'xps' => 'application/vnd.ms-xpsdocument', + 'xpw' => 'application/vnd.intercon.formnet', + 'xpx' => 'application/vnd.intercon.formnet', + 'xsd' => 'application/xml', + 'xsf' => 'application/prs.xsf+xml', + 'xsl' => 'application/xml', + 'xslt' => 'application/xslt+xml', + 'xsm' => 'application/vnd.syncml+xml', + 'xspf' => 'application/xspf+xml', + 'xul' => 'application/vnd.mozilla.xul+xml', + 'xvm' => 'application/xv+xml', + 'xvml' => 'application/xv+xml', + 'xwd' => 'image/x-xwindowdump', + 'xyz' => 'chemical/x-xyz', + 'xz' => 'application/x-xz', + 'yaml' => 'text/yaml', + 'yang' => 'application/yang', + 'yin' => 'application/yin+xml', + 'yml' => 'text/yaml', + 'ymp' => 'text/x-suse-ymp', + 'z' => 'application/x-compress', + 'z1' => 'application/x-zmachine', + 'z2' => 'application/x-zmachine', + 'z3' => 'application/x-zmachine', + 'z4' => 'application/x-zmachine', + 'z5' => 'application/x-zmachine', + 'z6' => 'application/x-zmachine', + 'z7' => 'application/x-zmachine', + 'z8' => 'application/x-zmachine', + 'zaz' => 'application/vnd.zzazz.deck+xml', + 'zip' => 'application/zip', + 'zir' => 'application/vnd.zul', + 'zirz' => 'application/vnd.zul', + 'zmm' => 'application/vnd.handheld-entertainment+xml', + 'zsh' => 'text/x-scriptzsh', + ]; + + /** + * @var array + * + * @internal + */ + public const EXTENSIONS_FOR_MIME_TIMES = [ + 'application/andrew-inset' => ['ez'], + 'application/appinstaller' => ['appinstaller'], + 'application/applixware' => ['aw'], + 'application/appx' => ['appx'], + 'application/appxbundle' => ['appxbundle'], + 'application/atom+xml' => ['atom'], + 'application/atomcat+xml' => ['atomcat'], + 'application/atomdeleted+xml' => ['atomdeleted'], + 'application/atomsvc+xml' => ['atomsvc'], + 'application/atsc-dwd+xml' => ['dwd'], + 'application/atsc-held+xml' => ['held'], + 'application/atsc-rsat+xml' => ['rsat'], + 'application/automationml-aml+xml' => ['aml'], + 'application/automationml-amlx+zip' => ['amlx'], + 'application/bdoc' => ['bdoc'], + 'application/calendar+xml' => ['xcs'], + 'application/ccxml+xml' => ['ccxml'], + 'application/cdfx+xml' => ['cdfx'], + 'application/cdmi-capability' => ['cdmia'], + 'application/cdmi-container' => ['cdmic'], + 'application/cdmi-domain' => ['cdmid'], + 'application/cdmi-object' => ['cdmio'], + 'application/cdmi-queue' => ['cdmiq'], + 'application/cpl+xml' => ['cpl'], + 'application/cu-seeme' => ['cu'], + 'application/cwl' => ['cwl'], + 'application/dash+xml' => ['mpd'], + 'application/dash-patch+xml' => ['mpp'], + 'application/davmount+xml' => ['davmount'], + 'application/docbook+xml' => ['dbk'], + 'application/dssc+der' => ['dssc'], + 'application/dssc+xml' => ['xdssc'], + 'application/ecmascript' => ['ecma'], + 'application/emma+xml' => ['emma'], + 'application/emotionml+xml' => ['emotionml'], + 'application/epub+zip' => ['epub'], + 'application/exi' => ['exi'], + 'application/express' => ['exp'], + 'application/fdf' => ['fdf'], + 'application/fdt+xml' => ['fdt'], + 'application/font-tdpfr' => ['pfr'], + 'application/geo+json' => ['geojson'], + 'application/gml+xml' => ['gml'], + 'application/gpx+xml' => ['gpx'], + 'application/gxf' => ['gxf'], + 'application/gzip' => ['gz', 'gzip'], + 'application/hjson' => ['hjson'], + 'application/hyperstudio' => ['stk'], + 'application/inkml+xml' => ['ink', 'inkml'], + 'application/ipfix' => ['ipfix'], + 'application/its+xml' => ['its'], + 'application/java-archive' => ['jar', 'war', 'ear'], + 'application/java-serialized-object' => ['ser'], + 'application/java-vm' => ['class'], + 'application/javascript' => ['js'], + 'application/json' => ['json', 'map'], + 'application/json5' => ['json5'], + 'application/jsonml+json' => ['jsonml'], + 'application/ld+json' => ['jsonld'], + 'application/lgr+xml' => ['lgr'], + 'application/lost+xml' => ['lostxml'], + 'application/mac-binhex40' => ['hqx'], + 'application/mac-compactpro' => ['cpt'], + 'application/mads+xml' => ['mads'], + 'application/manifest+json' => ['webmanifest'], + 'application/marc' => ['mrc'], + 'application/marcxml+xml' => ['mrcx'], + 'application/mathematica' => ['ma', 'nb', 'mb'], + 'application/mathml+xml' => ['mathml'], + 'application/mbox' => ['mbox'], + 'application/media-policy-dataset+xml' => ['mpf'], + 'application/mediaservercontrol+xml' => ['mscml'], + 'application/metalink+xml' => ['metalink'], + 'application/metalink4+xml' => ['meta4'], + 'application/mets+xml' => ['mets'], + 'application/mmt-aei+xml' => ['maei'], + 'application/mmt-usd+xml' => ['musd'], + 'application/mods+xml' => ['mods'], + 'application/mp21' => ['m21', 'mp21'], + 'application/mp4' => ['mp4', 'mpg4', 'mp4s', 'm4p'], + 'application/msix' => ['msix'], + 'application/msixbundle' => ['msixbundle'], + 'application/msword' => ['doc', 'dot', 'word'], + 'application/mxf' => ['mxf'], + 'application/n-quads' => ['nq'], + 'application/n-triples' => ['nt'], + 'application/node' => ['cjs'], + 'application/octet-stream' => ['bin', 'dms', 'lrf', 'mar', 'so', 'dist', 'distz', 'pkg', 'bpk', 'dump', 'elc', 'deploy', 'exe', 'dll', 'deb', 'dmg', 'iso', 'img', 'msi', 'msp', 'msm', 'buffer', 'phar', 'lha', 'lzh', 'class', 'sea', 'dmn', 'bpmn', 'kdb', 'sst', 'csr'], + 'application/oda' => ['oda'], + 'application/oebps-package+xml' => ['opf'], + 'application/ogg' => ['ogx'], + 'application/omdoc+xml' => ['omdoc'], + 'application/onenote' => ['onetoc', 'onetoc2', 'onetmp', 'onepkg'], + 'application/oxps' => ['oxps'], + 'application/p2p-overlay+xml' => ['relo'], + 'application/patch-ops-error+xml' => ['xer'], + 'application/pdf' => ['pdf', 'ai'], + 'application/pgp-encrypted' => ['pgp'], + 'application/pgp-keys' => ['asc'], + 'application/pgp-signature' => ['sig', 'asc'], + 'application/pics-rules' => ['prf'], + 'application/pkcs10' => ['p10'], + 'application/pkcs7-mime' => ['p7m', 'p7c'], + 'application/pkcs7-signature' => ['p7s'], + 'application/pkcs8' => ['p8'], + 'application/pkix-attr-cert' => ['ac'], + 'application/pkix-cert' => ['cer'], + 'application/pkix-crl' => ['crl'], + 'application/pkix-pkipath' => ['pkipath'], + 'application/pkixcmp' => ['pki'], + 'application/pls+xml' => ['pls'], + 'application/postscript' => ['ai', 'eps', 'ps'], + 'application/provenance+xml' => ['provx'], + 'application/prs.cww' => ['cww'], + 'application/prs.xsf+xml' => ['xsf'], + 'application/pskc+xml' => ['pskcxml'], + 'application/raml+yaml' => ['raml'], + 'application/rdf+xml' => ['rdf', 'owl'], + 'application/reginfo+xml' => ['rif'], + 'application/relax-ng-compact-syntax' => ['rnc'], + 'application/resource-lists+xml' => ['rl'], + 'application/resource-lists-diff+xml' => ['rld'], + 'application/rls-services+xml' => ['rs'], + 'application/route-apd+xml' => ['rapd'], + 'application/route-s-tsid+xml' => ['sls'], + 'application/route-usd+xml' => ['rusd'], + 'application/rpki-ghostbusters' => ['gbr'], + 'application/rpki-manifest' => ['mft'], + 'application/rpki-roa' => ['roa'], + 'application/rsd+xml' => ['rsd'], + 'application/rss+xml' => ['rss'], + 'application/rtf' => ['rtf'], + 'application/sbml+xml' => ['sbml'], + 'application/scvp-cv-request' => ['scq'], + 'application/scvp-cv-response' => ['scs'], + 'application/scvp-vp-request' => ['spq'], + 'application/scvp-vp-response' => ['spp'], + 'application/sdp' => ['sdp'], + 'application/senml+xml' => ['senmlx'], + 'application/sensml+xml' => ['sensmlx'], + 'application/set-payment-initiation' => ['setpay'], + 'application/set-registration-initiation' => ['setreg'], + 'application/shf+xml' => ['shf'], + 'application/sieve' => ['siv', 'sieve'], + 'application/smil+xml' => ['smi', 'smil'], + 'application/sparql-query' => ['rq'], + 'application/sparql-results+xml' => ['srx'], + 'application/sql' => ['sql'], + 'application/srgs' => ['gram'], + 'application/srgs+xml' => ['grxml'], + 'application/sru+xml' => ['sru'], + 'application/ssdl+xml' => ['ssdl'], + 'application/ssml+xml' => ['ssml'], + 'application/swid+xml' => ['swidtag'], + 'application/tei+xml' => ['tei', 'teicorpus'], + 'application/thraud+xml' => ['tfi'], + 'application/timestamped-data' => ['tsd'], + 'application/toml' => ['toml'], + 'application/trig' => ['trig'], + 'application/ttml+xml' => ['ttml'], + 'application/ubjson' => ['ubj'], + 'application/urc-ressheet+xml' => ['rsheet'], + 'application/urc-targetdesc+xml' => ['td'], + 'application/vnd.1000minds.decision-model+xml' => ['1km'], + 'application/vnd.3gpp.pic-bw-large' => ['plb'], + 'application/vnd.3gpp.pic-bw-small' => ['psb'], + 'application/vnd.3gpp.pic-bw-var' => ['pvb'], + 'application/vnd.3gpp2.tcap' => ['tcap'], + 'application/vnd.3m.post-it-notes' => ['pwn'], + 'application/vnd.accpac.simply.aso' => ['aso'], + 'application/vnd.accpac.simply.imp' => ['imp'], + 'application/vnd.acucobol' => ['acu'], + 'application/vnd.acucorp' => ['atc', 'acutc'], + 'application/vnd.adobe.air-application-installer-package+zip' => ['air'], + 'application/vnd.adobe.formscentral.fcdt' => ['fcdt'], + 'application/vnd.adobe.fxp' => ['fxp', 'fxpl'], + 'application/vnd.adobe.xdp+xml' => ['xdp'], + 'application/vnd.adobe.xfdf' => ['xfdf'], + 'application/vnd.age' => ['age'], + 'application/vnd.ahead.space' => ['ahead'], + 'application/vnd.airzip.filesecure.azf' => ['azf'], + 'application/vnd.airzip.filesecure.azs' => ['azs'], + 'application/vnd.amazon.ebook' => ['azw'], + 'application/vnd.americandynamics.acc' => ['acc'], + 'application/vnd.amiga.ami' => ['ami'], + 'application/vnd.android.package-archive' => ['apk'], + 'application/vnd.anser-web-certificate-issue-initiation' => ['cii'], + 'application/vnd.anser-web-funds-transfer-initiation' => ['fti'], + 'application/vnd.antix.game-component' => ['atx'], + 'application/vnd.apple.installer+xml' => ['mpkg'], + 'application/vnd.apple.keynote' => ['key'], + 'application/vnd.apple.mpegurl' => ['m3u8'], + 'application/vnd.apple.numbers' => ['numbers'], + 'application/vnd.apple.pages' => ['pages'], + 'application/vnd.apple.pkpass' => ['pkpass'], + 'application/vnd.aristanetworks.swi' => ['swi'], + 'application/vnd.astraea-software.iota' => ['iota'], + 'application/vnd.audiograph' => ['aep'], + 'application/vnd.balsamiq.bmml+xml' => ['bmml'], + 'application/vnd.blueice.multipass' => ['mpm'], + 'application/vnd.bmi' => ['bmi'], + 'application/vnd.businessobjects' => ['rep'], + 'application/vnd.chemdraw+xml' => ['cdxml'], + 'application/vnd.chipnuts.karaoke-mmd' => ['mmd'], + 'application/vnd.cinderella' => ['cdy'], + 'application/vnd.citationstyles.style+xml' => ['csl'], + 'application/vnd.claymore' => ['cla'], + 'application/vnd.cloanto.rp9' => ['rp9'], + 'application/vnd.clonk.c4group' => ['c4g', 'c4d', 'c4f', 'c4p', 'c4u'], + 'application/vnd.cluetrust.cartomobile-config' => ['c11amc'], + 'application/vnd.cluetrust.cartomobile-config-pkg' => ['c11amz'], + 'application/vnd.commonspace' => ['csp'], + 'application/vnd.contact.cmsg' => ['cdbcmsg'], + 'application/vnd.cosmocaller' => ['cmc'], + 'application/vnd.crick.clicker' => ['clkx'], + 'application/vnd.crick.clicker.keyboard' => ['clkk'], + 'application/vnd.crick.clicker.palette' => ['clkp'], + 'application/vnd.crick.clicker.template' => ['clkt'], + 'application/vnd.crick.clicker.wordbank' => ['clkw'], + 'application/vnd.criticaltools.wbs+xml' => ['wbs'], + 'application/vnd.ctc-posml' => ['pml'], + 'application/vnd.cups-ppd' => ['ppd'], + 'application/vnd.curl.car' => ['car'], + 'application/vnd.curl.pcurl' => ['pcurl'], + 'application/vnd.dart' => ['dart'], + 'application/vnd.data-vision.rdz' => ['rdz'], + 'application/vnd.dbf' => ['dbf'], + 'application/vnd.dece.data' => ['uvf', 'uvvf', 'uvd', 'uvvd'], + 'application/vnd.dece.ttml+xml' => ['uvt', 'uvvt'], + 'application/vnd.dece.unspecified' => ['uvx', 'uvvx'], + 'application/vnd.dece.zip' => ['uvz', 'uvvz'], + 'application/vnd.denovo.fcselayout-link' => ['fe_launch'], + 'application/vnd.dna' => ['dna'], + 'application/vnd.dolby.mlp' => ['mlp'], + 'application/vnd.dpgraph' => ['dpg'], + 'application/vnd.dreamfactory' => ['dfac'], + 'application/vnd.ds-keypoint' => ['kpxx'], + 'application/vnd.dvb.ait' => ['ait'], + 'application/vnd.dvb.service' => ['svc'], + 'application/vnd.dynageo' => ['geo'], + 'application/vnd.ecowin.chart' => ['mag'], + 'application/vnd.enliven' => ['nml'], + 'application/vnd.epson.esf' => ['esf'], + 'application/vnd.epson.msf' => ['msf'], + 'application/vnd.epson.quickanime' => ['qam'], + 'application/vnd.epson.salt' => ['slt'], + 'application/vnd.epson.ssf' => ['ssf'], + 'application/vnd.eszigno3+xml' => ['es3', 'et3'], + 'application/vnd.ezpix-album' => ['ez2'], + 'application/vnd.ezpix-package' => ['ez3'], + 'application/vnd.fdf' => ['fdf'], + 'application/vnd.fdsn.mseed' => ['mseed'], + 'application/vnd.fdsn.seed' => ['seed', 'dataless'], + 'application/vnd.flographit' => ['gph'], + 'application/vnd.fluxtime.clip' => ['ftc'], + 'application/vnd.framemaker' => ['fm', 'frame', 'maker', 'book'], + 'application/vnd.frogans.fnc' => ['fnc'], + 'application/vnd.frogans.ltf' => ['ltf'], + 'application/vnd.fsc.weblaunch' => ['fsc'], + 'application/vnd.fujitsu.oasys' => ['oas'], + 'application/vnd.fujitsu.oasys2' => ['oa2'], + 'application/vnd.fujitsu.oasys3' => ['oa3'], + 'application/vnd.fujitsu.oasysgp' => ['fg5'], + 'application/vnd.fujitsu.oasysprs' => ['bh2'], + 'application/vnd.fujixerox.ddd' => ['ddd'], + 'application/vnd.fujixerox.docuworks' => ['xdw'], + 'application/vnd.fujixerox.docuworks.binder' => ['xbd'], + 'application/vnd.fuzzysheet' => ['fzs'], + 'application/vnd.genomatix.tuxedo' => ['txd'], + 'application/vnd.geogebra.file' => ['ggb'], + 'application/vnd.geogebra.tool' => ['ggt'], + 'application/vnd.geometry-explorer' => ['gex', 'gre'], + 'application/vnd.geonext' => ['gxt'], + 'application/vnd.geoplan' => ['g2w'], + 'application/vnd.geospace' => ['g3w'], + 'application/vnd.gmx' => ['gmx'], + 'application/vnd.google-apps.document' => ['gdoc'], + 'application/vnd.google-apps.presentation' => ['gslides'], + 'application/vnd.google-apps.spreadsheet' => ['gsheet'], + 'application/vnd.google-earth.kml+xml' => ['kml'], + 'application/vnd.google-earth.kmz' => ['kmz'], + 'application/vnd.grafeq' => ['gqf', 'gqs'], + 'application/vnd.groove-account' => ['gac'], + 'application/vnd.groove-help' => ['ghf'], + 'application/vnd.groove-identity-message' => ['gim'], + 'application/vnd.groove-injector' => ['grv'], + 'application/vnd.groove-tool-message' => ['gtm'], + 'application/vnd.groove-tool-template' => ['tpl'], + 'application/vnd.groove-vcard' => ['vcg'], + 'application/vnd.hal+xml' => ['hal'], + 'application/vnd.handheld-entertainment+xml' => ['zmm'], + 'application/vnd.hbci' => ['hbci'], + 'application/vnd.hhe.lesson-player' => ['les'], + 'application/vnd.hp-hpgl' => ['hpgl'], + 'application/vnd.hp-hpid' => ['hpid'], + 'application/vnd.hp-hps' => ['hps'], + 'application/vnd.hp-jlyt' => ['jlt'], + 'application/vnd.hp-pcl' => ['pcl'], + 'application/vnd.hp-pclxl' => ['pclxl'], + 'application/vnd.hydrostatix.sof-data' => ['sfd-hdstx'], + 'application/vnd.ibm.minipay' => ['mpy'], + 'application/vnd.ibm.modcap' => ['afp', 'listafp', 'list3820'], + 'application/vnd.ibm.rights-management' => ['irm'], + 'application/vnd.ibm.secure-container' => ['sc'], + 'application/vnd.iccprofile' => ['icc', 'icm'], + 'application/vnd.igloader' => ['igl'], + 'application/vnd.immervision-ivp' => ['ivp'], + 'application/vnd.immervision-ivu' => ['ivu'], + 'application/vnd.insors.igm' => ['igm'], + 'application/vnd.intercon.formnet' => ['xpw', 'xpx'], + 'application/vnd.intergeo' => ['i2g'], + 'application/vnd.intu.qbo' => ['qbo'], + 'application/vnd.intu.qfx' => ['qfx'], + 'application/vnd.ipunplugged.rcprofile' => ['rcprofile'], + 'application/vnd.irepository.package+xml' => ['irp'], + 'application/vnd.is-xpr' => ['xpr'], + 'application/vnd.isac.fcs' => ['fcs'], + 'application/vnd.jam' => ['jam'], + 'application/vnd.jcp.javame.midlet-rms' => ['rms'], + 'application/vnd.jisp' => ['jisp'], + 'application/vnd.joost.joda-archive' => ['joda'], + 'application/vnd.kahootz' => ['ktz', 'ktr'], + 'application/vnd.kde.karbon' => ['karbon'], + 'application/vnd.kde.kchart' => ['chrt'], + 'application/vnd.kde.kformula' => ['kfo'], + 'application/vnd.kde.kivio' => ['flw'], + 'application/vnd.kde.kontour' => ['kon'], + 'application/vnd.kde.kpresenter' => ['kpr', 'kpt'], + 'application/vnd.kde.kspread' => ['ksp'], + 'application/vnd.kde.kword' => ['kwd', 'kwt'], + 'application/vnd.kenameaapp' => ['htke'], + 'application/vnd.kidspiration' => ['kia'], + 'application/vnd.kinar' => ['kne', 'knp'], + 'application/vnd.koan' => ['skp', 'skd', 'skt', 'skm'], + 'application/vnd.kodak-descriptor' => ['sse'], + 'application/vnd.las.las+xml' => ['lasxml'], + 'application/vnd.llamagraphics.life-balance.desktop' => ['lbd'], + 'application/vnd.llamagraphics.life-balance.exchange+xml' => ['lbe'], + 'application/vnd.lotus-1-2-3' => ['123'], + 'application/vnd.lotus-approach' => ['apr'], + 'application/vnd.lotus-freelance' => ['pre'], + 'application/vnd.lotus-notes' => ['nsf'], + 'application/vnd.lotus-organizer' => ['org'], + 'application/vnd.lotus-screencam' => ['scm'], + 'application/vnd.lotus-wordpro' => ['lwp'], + 'application/vnd.macports.portpkg' => ['portpkg'], + 'application/vnd.mapbox-vector-tile' => ['mvt'], + 'application/vnd.mcd' => ['mcd'], + 'application/vnd.medcalcdata' => ['mc1'], + 'application/vnd.mediastation.cdkey' => ['cdkey'], + 'application/vnd.mfer' => ['mwf'], + 'application/vnd.mfmp' => ['mfm'], + 'application/vnd.micrografx.flo' => ['flo'], + 'application/vnd.micrografx.igx' => ['igx'], + 'application/vnd.mif' => ['mif'], + 'application/vnd.mobius.daf' => ['daf'], + 'application/vnd.mobius.dis' => ['dis'], + 'application/vnd.mobius.mbk' => ['mbk'], + 'application/vnd.mobius.mqy' => ['mqy'], + 'application/vnd.mobius.msl' => ['msl'], + 'application/vnd.mobius.plc' => ['plc'], + 'application/vnd.mobius.txf' => ['txf'], + 'application/vnd.mophun.application' => ['mpn'], + 'application/vnd.mophun.certificate' => ['mpc'], + 'application/vnd.mozilla.xul+xml' => ['xul'], + 'application/vnd.ms-artgalry' => ['cil'], + 'application/vnd.ms-cab-compressed' => ['cab'], + 'application/vnd.ms-excel' => ['xls', 'xlm', 'xla', 'xlc', 'xlt', 'xlw'], + 'application/vnd.ms-excel.addin.macroenabled.12' => ['xlam'], + 'application/vnd.ms-excel.sheet.binary.macroenabled.12' => ['xlsb'], + 'application/vnd.ms-excel.sheet.macroenabled.12' => ['xlsm'], + 'application/vnd.ms-excel.template.macroenabled.12' => ['xltm'], + 'application/vnd.ms-fontobject' => ['eot'], + 'application/vnd.ms-htmlhelp' => ['chm'], + 'application/vnd.ms-ims' => ['ims'], + 'application/vnd.ms-lrm' => ['lrm'], + 'application/vnd.ms-officetheme' => ['thmx'], + 'application/vnd.ms-outlook' => ['msg'], + 'application/vnd.ms-pki.seccat' => ['cat'], + 'application/vnd.ms-pki.stl' => ['stl'], + 'application/vnd.ms-powerpoint' => ['ppt', 'pps', 'pot', 'ppa'], + 'application/vnd.ms-powerpoint.addin.macroenabled.12' => ['ppam'], + 'application/vnd.ms-powerpoint.presentation.macroenabled.12' => ['pptm'], + 'application/vnd.ms-powerpoint.slide.macroenabled.12' => ['sldm'], + 'application/vnd.ms-powerpoint.slideshow.macroenabled.12' => ['ppsm'], + 'application/vnd.ms-powerpoint.template.macroenabled.12' => ['potm'], + 'application/vnd.ms-project' => ['mpp', 'mpt'], + 'application/vnd.ms-word.document.macroenabled.12' => ['docm'], + 'application/vnd.ms-word.template.macroenabled.12' => ['dotm'], + 'application/vnd.ms-works' => ['wps', 'wks', 'wcm', 'wdb'], + 'application/vnd.ms-wpl' => ['wpl'], + 'application/vnd.ms-xpsdocument' => ['xps'], + 'application/vnd.mseq' => ['mseq'], + 'application/vnd.musician' => ['mus'], + 'application/vnd.muvee.style' => ['msty'], + 'application/vnd.mynfc' => ['taglet'], + 'application/vnd.neurolanguage.nlu' => ['nlu'], + 'application/vnd.nitf' => ['ntf', 'nitf'], + 'application/vnd.noblenet-directory' => ['nnd'], + 'application/vnd.noblenet-sealer' => ['nns'], + 'application/vnd.noblenet-web' => ['nnw'], + 'application/vnd.nokia.n-gage.ac+xml' => ['ac'], + 'application/vnd.nokia.n-gage.data' => ['ngdat'], + 'application/vnd.nokia.n-gage.symbian.install' => ['n-gage'], + 'application/vnd.nokia.radio-preset' => ['rpst'], + 'application/vnd.nokia.radio-presets' => ['rpss'], + 'application/vnd.novadigm.edm' => ['edm'], + 'application/vnd.novadigm.edx' => ['edx'], + 'application/vnd.novadigm.ext' => ['ext'], + 'application/vnd.oasis.opendocument.chart' => ['odc'], + 'application/vnd.oasis.opendocument.chart-template' => ['otc'], + 'application/vnd.oasis.opendocument.database' => ['odb'], + 'application/vnd.oasis.opendocument.formula' => ['odf'], + 'application/vnd.oasis.opendocument.formula-template' => ['odft'], + 'application/vnd.oasis.opendocument.graphics' => ['odg'], + 'application/vnd.oasis.opendocument.graphics-template' => ['otg'], + 'application/vnd.oasis.opendocument.image' => ['odi'], + 'application/vnd.oasis.opendocument.image-template' => ['oti'], + 'application/vnd.oasis.opendocument.presentation' => ['odp'], + 'application/vnd.oasis.opendocument.presentation-template' => ['otp'], + 'application/vnd.oasis.opendocument.spreadsheet' => ['ods'], + 'application/vnd.oasis.opendocument.spreadsheet-template' => ['ots'], + 'application/vnd.oasis.opendocument.text' => ['odt'], + 'application/vnd.oasis.opendocument.text-master' => ['odm'], + 'application/vnd.oasis.opendocument.text-template' => ['ott'], + 'application/vnd.oasis.opendocument.text-web' => ['oth'], + 'application/vnd.olpc-sugar' => ['xo'], + 'application/vnd.oma.dd2+xml' => ['dd2'], + 'application/vnd.openblox.game+xml' => ['obgx'], + 'application/vnd.openofficeorg.extension' => ['oxt'], + 'application/vnd.openstreetmap.data+xml' => ['osm'], + 'application/vnd.openxmlformats-officedocument.presentationml.presentation' => ['pptx'], + 'application/vnd.openxmlformats-officedocument.presentationml.slide' => ['sldx'], + 'application/vnd.openxmlformats-officedocument.presentationml.slideshow' => ['ppsx'], + 'application/vnd.openxmlformats-officedocument.presentationml.template' => ['potx'], + 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet' => ['xlsx'], + 'application/vnd.openxmlformats-officedocument.spreadsheetml.template' => ['xltx'], + 'application/vnd.openxmlformats-officedocument.wordprocessingml.document' => ['docx'], + 'application/vnd.openxmlformats-officedocument.wordprocessingml.template' => ['dotx'], + 'application/vnd.osgeo.mapguide.package' => ['mgp'], + 'application/vnd.osgi.dp' => ['dp'], + 'application/vnd.osgi.subsystem' => ['esa'], + 'application/vnd.palm' => ['pdb', 'pqa', 'oprc'], + 'application/vnd.pawaafile' => ['paw'], + 'application/vnd.pg.format' => ['str'], + 'application/vnd.pg.osasli' => ['ei6'], + 'application/vnd.picsel' => ['efif'], + 'application/vnd.pmi.widget' => ['wg'], + 'application/vnd.pocketlearn' => ['plf'], + 'application/vnd.powerbuilder6' => ['pbd'], + 'application/vnd.previewsystems.box' => ['box'], + 'application/vnd.proteus.magazine' => ['mgz'], + 'application/vnd.publishare-delta-tree' => ['qps'], + 'application/vnd.pvi.ptid1' => ['ptid'], + 'application/vnd.pwg-xhtml-print+xml' => ['xhtm'], + 'application/vnd.quark.quarkxpress' => ['qxd', 'qxt', 'qwd', 'qwt', 'qxl', 'qxb'], + 'application/vnd.rar' => ['rar'], + 'application/vnd.realvnc.bed' => ['bed'], + 'application/vnd.recordare.musicxml' => ['mxl'], + 'application/vnd.recordare.musicxml+xml' => ['musicxml'], + 'application/vnd.rig.cryptonote' => ['cryptonote'], + 'application/vnd.rim.cod' => ['cod'], + 'application/vnd.rn-realmedia' => ['rm'], + 'application/vnd.rn-realmedia-vbr' => ['rmvb'], + 'application/vnd.route66.link66+xml' => ['link66'], + 'application/vnd.sailingtracker.track' => ['st'], + 'application/vnd.seemail' => ['see'], + 'application/vnd.sema' => ['sema'], + 'application/vnd.semd' => ['semd'], + 'application/vnd.semf' => ['semf'], + 'application/vnd.shana.informed.formdata' => ['ifm'], + 'application/vnd.shana.informed.formtemplate' => ['itp'], + 'application/vnd.shana.informed.interchange' => ['iif'], + 'application/vnd.shana.informed.package' => ['ipk'], + 'application/vnd.simtech-mindmapper' => ['twd', 'twds'], + 'application/vnd.smaf' => ['mmf'], + 'application/vnd.smart.teacher' => ['teacher'], + 'application/vnd.software602.filler.form+xml' => ['fo'], + 'application/vnd.solent.sdkm+xml' => ['sdkm', 'sdkd'], + 'application/vnd.spotfire.dxp' => ['dxp'], + 'application/vnd.spotfire.sfs' => ['sfs'], + 'application/vnd.stardivision.calc' => ['sdc'], + 'application/vnd.stardivision.draw' => ['sda'], + 'application/vnd.stardivision.impress' => ['sdd'], + 'application/vnd.stardivision.math' => ['smf'], + 'application/vnd.stardivision.writer' => ['sdw', 'vor'], + 'application/vnd.stardivision.writer-global' => ['sgl'], + 'application/vnd.stepmania.package' => ['smzip'], + 'application/vnd.stepmania.stepchart' => ['sm'], + 'application/vnd.sun.wadl+xml' => ['wadl'], + 'application/vnd.sun.xml.calc' => ['sxc'], + 'application/vnd.sun.xml.calc.template' => ['stc'], + 'application/vnd.sun.xml.draw' => ['sxd'], + 'application/vnd.sun.xml.draw.template' => ['std'], + 'application/vnd.sun.xml.impress' => ['sxi'], + 'application/vnd.sun.xml.impress.template' => ['sti'], + 'application/vnd.sun.xml.math' => ['sxm'], + 'application/vnd.sun.xml.writer' => ['sxw'], + 'application/vnd.sun.xml.writer.global' => ['sxg'], + 'application/vnd.sun.xml.writer.template' => ['stw'], + 'application/vnd.sus-calendar' => ['sus', 'susp'], + 'application/vnd.svd' => ['svd'], + 'application/vnd.symbian.install' => ['sis', 'sisx'], + 'application/vnd.syncml+xml' => ['xsm'], + 'application/vnd.syncml.dm+wbxml' => ['bdm'], + 'application/vnd.syncml.dm+xml' => ['xdm'], + 'application/vnd.syncml.dmddf+xml' => ['ddf'], + 'application/vnd.tao.intent-module-archive' => ['tao'], + 'application/vnd.tcpdump.pcap' => ['pcap', 'cap', 'dmp'], + 'application/vnd.tmobile-livetv' => ['tmo'], + 'application/vnd.trid.tpt' => ['tpt'], + 'application/vnd.triscape.mxs' => ['mxs'], + 'application/vnd.trueapp' => ['tra'], + 'application/vnd.ufdl' => ['ufd', 'ufdl'], + 'application/vnd.uiq.theme' => ['utz'], + 'application/vnd.umajin' => ['umj'], + 'application/vnd.unity' => ['unityweb'], + 'application/vnd.uoml+xml' => ['uoml', 'uo'], + 'application/vnd.vcx' => ['vcx'], + 'application/vnd.visio' => ['vsd', 'vst', 'vss', 'vsw'], + 'application/vnd.visionary' => ['vis'], + 'application/vnd.vsf' => ['vsf'], + 'application/vnd.wap.wbxml' => ['wbxml'], + 'application/vnd.wap.wmlc' => ['wmlc'], + 'application/vnd.wap.wmlscriptc' => ['wmlsc'], + 'application/vnd.webturbo' => ['wtb'], + 'application/vnd.wolfram.player' => ['nbp'], + 'application/vnd.wordperfect' => ['wpd'], + 'application/vnd.wqd' => ['wqd'], + 'application/vnd.wt.stf' => ['stf'], + 'application/vnd.xara' => ['xar'], + 'application/vnd.xfdl' => ['xfdl'], + 'application/vnd.yamaha.hv-dic' => ['hvd'], + 'application/vnd.yamaha.hv-script' => ['hvs'], + 'application/vnd.yamaha.hv-voice' => ['hvp'], + 'application/vnd.yamaha.openscoreformat' => ['osf'], + 'application/vnd.yamaha.openscoreformat.osfpvg+xml' => ['osfpvg'], + 'application/vnd.yamaha.smaf-audio' => ['saf'], + 'application/vnd.yamaha.smaf-phrase' => ['spf'], + 'application/vnd.yellowriver-custom-menu' => ['cmp'], + 'application/vnd.zul' => ['zir', 'zirz'], + 'application/vnd.zzazz.deck+xml' => ['zaz'], + 'application/voicexml+xml' => ['vxml'], + 'application/wasm' => ['wasm'], + 'application/watcherinfo+xml' => ['wif'], + 'application/widget' => ['wgt'], + 'application/winhlp' => ['hlp'], + 'application/wsdl+xml' => ['wsdl'], + 'application/wspolicy+xml' => ['wspolicy'], + 'application/x-7z-compressed' => ['7z', '7zip'], + 'application/x-abiword' => ['abw'], + 'application/x-ace-compressed' => ['ace'], + 'application/x-apple-diskimage' => ['dmg'], + 'application/x-arj' => ['arj'], + 'application/x-authorware-bin' => ['aab', 'x32', 'u32', 'vox'], + 'application/x-authorware-map' => ['aam'], + 'application/x-authorware-seg' => ['aas'], + 'application/x-bcpio' => ['bcpio'], + 'application/x-bdoc' => ['bdoc'], + 'application/x-bittorrent' => ['torrent'], + 'application/x-blorb' => ['blb', 'blorb'], + 'application/x-bzip' => ['bz'], + 'application/x-bzip2' => ['bz2', 'boz'], + 'application/x-cbr' => ['cbr', 'cba', 'cbt', 'cbz', 'cb7'], + 'application/x-cdlink' => ['vcd'], + 'application/x-cfs-compressed' => ['cfs'], + 'application/x-chat' => ['chat'], + 'application/x-chess-pgn' => ['pgn'], + 'application/x-chrome-extension' => ['crx'], + 'application/x-cocoa' => ['cco'], + 'application/x-conference' => ['nsc'], + 'application/x-cpio' => ['cpio'], + 'application/x-csh' => ['csh'], + 'application/x-debian-package' => ['deb', 'udeb'], + 'application/x-dgc-compressed' => ['dgc'], + 'application/x-director' => ['dir', 'dcr', 'dxr', 'cst', 'cct', 'cxt', 'w3d', 'fgd', 'swa'], + 'application/x-doom' => ['wad'], + 'application/x-dtbncx+xml' => ['ncx'], + 'application/x-dtbook+xml' => ['dtb'], + 'application/x-dtbresource+xml' => ['res'], + 'application/x-dvi' => ['dvi'], + 'application/x-envoy' => ['evy'], + 'application/x-eva' => ['eva'], + 'application/x-font-bdf' => ['bdf'], + 'application/x-font-ghostscript' => ['gsf'], + 'application/x-font-linux-psf' => ['psf'], + 'application/x-font-pcf' => ['pcf'], + 'application/x-font-snf' => ['snf'], + 'application/x-font-type1' => ['pfa', 'pfb', 'pfm', 'afm'], + 'application/x-freearc' => ['arc'], + 'application/x-futuresplash' => ['spl'], + 'application/x-gca-compressed' => ['gca'], + 'application/x-glulx' => ['ulx'], + 'application/x-gnumeric' => ['gnumeric'], + 'application/x-gramps-xml' => ['gramps'], + 'application/x-gtar' => ['gtar'], + 'application/x-hdf' => ['hdf'], + 'application/x-httpd-php' => ['php', 'php4', 'php3', 'phtml'], + 'application/x-install-instructions' => ['install'], + 'application/x-iso9660-image' => ['iso'], + 'application/x-iwork-keynote-sffkey' => ['key'], + 'application/x-iwork-numbers-sffnumbers' => ['numbers'], + 'application/x-iwork-pages-sffpages' => ['pages'], + 'application/x-java-archive-diff' => ['jardiff'], + 'application/x-java-jnlp-file' => ['jnlp'], + 'application/x-keepass2' => ['kdbx'], + 'application/x-latex' => ['latex'], + 'application/x-lua-bytecode' => ['luac'], + 'application/x-lzh-compressed' => ['lzh', 'lha'], + 'application/x-makeself' => ['run'], + 'application/x-mie' => ['mie'], + 'application/x-mobipocket-ebook' => ['prc', 'mobi'], + 'application/x-ms-application' => ['application'], + 'application/x-ms-shortcut' => ['lnk'], + 'application/x-ms-wmd' => ['wmd'], + 'application/x-ms-wmz' => ['wmz'], + 'application/x-ms-xbap' => ['xbap'], + 'application/x-msaccess' => ['mdb'], + 'application/x-msbinder' => ['obd'], + 'application/x-mscardfile' => ['crd'], + 'application/x-msclip' => ['clp'], + 'application/x-msdos-program' => ['exe'], + 'application/x-msdownload' => ['exe', 'dll', 'com', 'bat', 'msi'], + 'application/x-msmediaview' => ['mvb', 'm13', 'm14'], + 'application/x-msmetafile' => ['wmf', 'wmz', 'emf', 'emz'], + 'application/x-msmoney' => ['mny'], + 'application/x-mspublisher' => ['pub'], + 'application/x-msschedule' => ['scd'], + 'application/x-msterminal' => ['trm'], + 'application/x-mswrite' => ['wri'], + 'application/x-netcdf' => ['nc', 'cdf'], + 'application/x-ns-proxy-autoconfig' => ['pac'], + 'application/x-nzb' => ['nzb'], + 'application/x-perl' => ['pl', 'pm'], + 'application/x-pilot' => ['prc', 'pdb'], + 'application/x-pkcs12' => ['p12', 'pfx'], + 'application/x-pkcs7-certificates' => ['p7b', 'spc'], + 'application/x-pkcs7-certreqresp' => ['p7r'], + 'application/x-rar-compressed' => ['rar'], + 'application/x-redhat-package-manager' => ['rpm'], + 'application/x-research-info-systems' => ['ris'], + 'application/x-sea' => ['sea'], + 'application/x-sh' => ['sh'], + 'application/x-shar' => ['shar'], + 'application/x-shockwave-flash' => ['swf'], + 'application/x-silverlight-app' => ['xap'], + 'application/x-sql' => ['sql'], + 'application/x-stuffit' => ['sit'], + 'application/x-stuffitx' => ['sitx'], + 'application/x-subrip' => ['srt'], + 'application/x-sv4cpio' => ['sv4cpio'], + 'application/x-sv4crc' => ['sv4crc'], + 'application/x-t3vm-image' => ['t3'], + 'application/x-tads' => ['gam'], + 'application/x-tar' => ['tar', 'tgz'], + 'application/x-tcl' => ['tcl', 'tk'], + 'application/x-tex' => ['tex'], + 'application/x-tex-tfm' => ['tfm'], + 'application/x-texinfo' => ['texinfo', 'texi'], + 'application/x-tgif' => ['obj'], + 'application/x-ustar' => ['ustar'], + 'application/x-virtualbox-hdd' => ['hdd'], + 'application/x-virtualbox-ova' => ['ova'], + 'application/x-virtualbox-ovf' => ['ovf'], + 'application/x-virtualbox-vbox' => ['vbox'], + 'application/x-virtualbox-vbox-extpack' => ['vbox-extpack'], + 'application/x-virtualbox-vdi' => ['vdi'], + 'application/x-virtualbox-vhd' => ['vhd'], + 'application/x-virtualbox-vmdk' => ['vmdk'], + 'application/x-wais-source' => ['src'], + 'application/x-web-app-manifest+json' => ['webapp'], + 'application/x-x509-ca-cert' => ['der', 'crt', 'pem'], + 'application/x-xfig' => ['fig'], + 'application/x-xliff+xml' => ['xlf'], + 'application/x-xpinstall' => ['xpi'], + 'application/x-xz' => ['xz'], + 'application/x-zmachine' => ['z1', 'z2', 'z3', 'z4', 'z5', 'z6', 'z7', 'z8'], + 'application/xaml+xml' => ['xaml'], + 'application/xcap-att+xml' => ['xav'], + 'application/xcap-caps+xml' => ['xca'], + 'application/xcap-diff+xml' => ['xdf'], + 'application/xcap-el+xml' => ['xel'], + 'application/xcap-ns+xml' => ['xns'], + 'application/xenc+xml' => ['xenc'], + 'application/xfdf' => ['xfdf'], + 'application/xhtml+xml' => ['xhtml', 'xht'], + 'application/xliff+xml' => ['xlf'], + 'application/xml' => ['xml', 'xsl', 'xsd', 'rng'], + 'application/xml-dtd' => ['dtd'], + 'application/xop+xml' => ['xop'], + 'application/xproc+xml' => ['xpl'], + 'application/xslt+xml' => ['xsl', 'xslt'], + 'application/xspf+xml' => ['xspf'], + 'application/xv+xml' => ['mxml', 'xhvml', 'xvml', 'xvm'], + 'application/yang' => ['yang'], + 'application/yin+xml' => ['yin'], + 'application/zip' => ['zip'], + 'audio/3gpp' => ['3gpp'], + 'audio/aac' => ['adts', 'aac'], + 'audio/adpcm' => ['adp'], + 'audio/amr' => ['amr'], + 'audio/basic' => ['au', 'snd'], + 'audio/midi' => ['mid', 'midi', 'kar', 'rmi'], + 'audio/mobile-xmf' => ['mxmf'], + 'audio/mp3' => ['mp3'], + 'audio/mp4' => ['m4a', 'mp4a'], + 'audio/mpeg' => ['mpga', 'mp2', 'mp2a', 'mp3', 'm2a', 'm3a'], + 'audio/ogg' => ['oga', 'ogg', 'spx', 'opus'], + 'audio/s3m' => ['s3m'], + 'audio/silk' => ['sil'], + 'audio/vnd.dece.audio' => ['uva', 'uvva'], + 'audio/vnd.digital-winds' => ['eol'], + 'audio/vnd.dra' => ['dra'], + 'audio/vnd.dts' => ['dts'], + 'audio/vnd.dts.hd' => ['dtshd'], + 'audio/vnd.lucent.voice' => ['lvp'], + 'audio/vnd.ms-playready.media.pya' => ['pya'], + 'audio/vnd.nuera.ecelp4800' => ['ecelp4800'], + 'audio/vnd.nuera.ecelp7470' => ['ecelp7470'], + 'audio/vnd.nuera.ecelp9600' => ['ecelp9600'], + 'audio/vnd.rip' => ['rip'], + 'audio/wav' => ['wav'], + 'audio/wave' => ['wav'], + 'audio/webm' => ['weba'], + 'audio/x-aac' => ['aac'], + 'audio/x-aiff' => ['aif', 'aiff', 'aifc'], + 'audio/x-caf' => ['caf'], + 'audio/x-flac' => ['flac'], + 'audio/x-m4a' => ['m4a'], + 'audio/x-matroska' => ['mka'], + 'audio/x-mpegurl' => ['m3u'], + 'audio/x-ms-wax' => ['wax'], + 'audio/x-ms-wma' => ['wma'], + 'audio/x-pn-realaudio' => ['ram', 'ra', 'rm'], + 'audio/x-pn-realaudio-plugin' => ['rmp', 'rpm'], + 'audio/x-realaudio' => ['ra'], + 'audio/x-wav' => ['wav'], + 'audio/xm' => ['xm'], + 'chemical/x-cdx' => ['cdx'], + 'chemical/x-cif' => ['cif'], + 'chemical/x-cmdf' => ['cmdf'], + 'chemical/x-cml' => ['cml'], + 'chemical/x-csml' => ['csml'], + 'chemical/x-xyz' => ['xyz'], + 'font/collection' => ['ttc'], + 'font/otf' => ['otf'], + 'font/ttf' => ['ttf'], + 'font/woff' => ['woff'], + 'font/woff2' => ['woff2'], + 'image/aces' => ['exr'], + 'image/apng' => ['apng'], + 'image/avci' => ['avci'], + 'image/avcs' => ['avcs'], + 'image/avif' => ['avif'], + 'image/bmp' => ['bmp', 'dib'], + 'image/cgm' => ['cgm'], + 'image/dicom-rle' => ['drle'], + 'image/dpx' => ['dpx'], + 'image/emf' => ['emf'], + 'image/fits' => ['fits'], + 'image/g3fax' => ['g3'], + 'image/gif' => ['gif'], + 'image/heic' => ['heic'], + 'image/heic-sequence' => ['heics'], + 'image/heif' => ['heif'], + 'image/heif-sequence' => ['heifs'], + 'image/hej2k' => ['hej2'], + 'image/hsj2' => ['hsj2'], + 'image/ief' => ['ief'], + 'image/jls' => ['jls'], + 'image/jp2' => ['jp2', 'jpg2'], + 'image/jpeg' => ['jpeg', 'jpg', 'jpe'], + 'image/jph' => ['jph'], + 'image/jphc' => ['jhc'], + 'image/jpm' => ['jpm', 'jpgm'], + 'image/jpx' => ['jpx', 'jpf'], + 'image/jxr' => ['jxr'], + 'image/jxra' => ['jxra'], + 'image/jxrs' => ['jxrs'], + 'image/jxs' => ['jxs'], + 'image/jxsc' => ['jxsc'], + 'image/jxsi' => ['jxsi'], + 'image/jxss' => ['jxss'], + 'image/ktx' => ['ktx'], + 'image/ktx2' => ['ktx2'], + 'image/png' => ['png'], + 'image/prs.btif' => ['btif', 'btf'], + 'image/prs.pti' => ['pti'], + 'image/sgi' => ['sgi'], + 'image/svg+xml' => ['svg', 'svgz'], + 'image/t38' => ['t38'], + 'image/tiff' => ['tif', 'tiff'], + 'image/tiff-fx' => ['tfx'], + 'image/vnd.adobe.photoshop' => ['psd'], + 'image/vnd.airzip.accelerator.azv' => ['azv'], + 'image/vnd.dece.graphic' => ['uvi', 'uvvi', 'uvg', 'uvvg'], + 'image/vnd.djvu' => ['djvu', 'djv'], + 'image/vnd.dvb.subtitle' => ['sub'], + 'image/vnd.dwg' => ['dwg'], + 'image/vnd.dxf' => ['dxf'], + 'image/vnd.fastbidsheet' => ['fbs'], + 'image/vnd.fpx' => ['fpx'], + 'image/vnd.fst' => ['fst'], + 'image/vnd.fujixerox.edmics-mmr' => ['mmr'], + 'image/vnd.fujixerox.edmics-rlc' => ['rlc'], + 'image/vnd.microsoft.icon' => ['ico'], + 'image/vnd.ms-dds' => ['dds'], + 'image/vnd.ms-modi' => ['mdi'], + 'image/vnd.ms-photo' => ['wdp'], + 'image/vnd.net-fpx' => ['npx'], + 'image/vnd.pco.b16' => ['b16'], + 'image/vnd.tencent.tap' => ['tap'], + 'image/vnd.valve.source.texture' => ['vtf'], + 'image/vnd.wap.wbmp' => ['wbmp'], + 'image/vnd.xiff' => ['xif'], + 'image/vnd.zbrush.pcx' => ['pcx'], + 'image/webp' => ['webp'], + 'image/wmf' => ['wmf'], + 'image/x-3ds' => ['3ds'], + 'image/x-cmu-raster' => ['ras'], + 'image/x-cmx' => ['cmx'], + 'image/x-freehand' => ['fh', 'fhc', 'fh4', 'fh5', 'fh7'], + 'image/x-icon' => ['ico'], + 'image/x-jng' => ['jng'], + 'image/x-mrsid-image' => ['sid'], + 'image/x-ms-bmp' => ['bmp'], + 'image/x-pcx' => ['pcx'], + 'image/x-pict' => ['pic', 'pct'], + 'image/x-portable-anymap' => ['pnm'], + 'image/x-portable-bitmap' => ['pbm'], + 'image/x-portable-graymap' => ['pgm'], + 'image/x-portable-pixmap' => ['ppm'], + 'image/x-rgb' => ['rgb'], + 'image/x-tga' => ['tga'], + 'image/x-xbitmap' => ['xbm'], + 'image/x-xpixmap' => ['xpm'], + 'image/x-xwindowdump' => ['xwd'], + 'message/disposition-notification' => ['disposition-notification'], + 'message/global' => ['u8msg'], + 'message/global-delivery-status' => ['u8dsn'], + 'message/global-disposition-notification' => ['u8mdn'], + 'message/global-headers' => ['u8hdr'], + 'message/rfc822' => ['eml', 'mime'], + 'message/vnd.wfa.wsc' => ['wsc'], + 'model/3mf' => ['3mf'], + 'model/gltf+json' => ['gltf'], + 'model/gltf-binary' => ['glb'], + 'model/iges' => ['igs', 'iges'], + 'model/jt' => ['jt'], + 'model/mesh' => ['msh', 'mesh', 'silo'], + 'model/mtl' => ['mtl'], + 'model/obj' => ['obj'], + 'model/prc' => ['prc'], + 'model/step+xml' => ['stpx'], + 'model/step+zip' => ['stpz'], + 'model/step-xml+zip' => ['stpxz'], + 'model/stl' => ['stl'], + 'model/u3d' => ['u3d'], + 'model/vnd.cld' => ['cld'], + 'model/vnd.collada+xml' => ['dae'], + 'model/vnd.dwf' => ['dwf'], + 'model/vnd.gdl' => ['gdl'], + 'model/vnd.gtw' => ['gtw'], + 'model/vnd.mts' => ['mts'], + 'model/vnd.opengex' => ['ogex'], + 'model/vnd.parasolid.transmit.binary' => ['x_b'], + 'model/vnd.parasolid.transmit.text' => ['x_t'], + 'model/vnd.pytha.pyox' => ['pyo', 'pyox'], + 'model/vnd.sap.vds' => ['vds'], + 'model/vnd.usda' => ['usda'], + 'model/vnd.usdz+zip' => ['usdz'], + 'model/vnd.valve.source.compiled-map' => ['bsp'], + 'model/vnd.vtu' => ['vtu'], + 'model/vrml' => ['wrl', 'vrml'], + 'model/x3d+binary' => ['x3db', 'x3dbz'], + 'model/x3d+fastinfoset' => ['x3db'], + 'model/x3d+vrml' => ['x3dv', 'x3dvz'], + 'model/x3d+xml' => ['x3d', 'x3dz'], + 'model/x3d-vrml' => ['x3dv'], + 'text/cache-manifest' => ['appcache', 'manifest'], + 'text/calendar' => ['ics', 'ifb'], + 'text/coffeescript' => ['coffee', 'litcoffee'], + 'text/css' => ['css'], + 'text/csv' => ['csv'], + 'text/html' => ['html', 'htm', 'shtml'], + 'text/jade' => ['jade'], + 'text/javascript' => ['js', 'mjs'], + 'text/jsx' => ['jsx'], + 'text/less' => ['less'], + 'text/markdown' => ['md', 'markdown'], + 'text/mathml' => ['mml'], + 'text/mdx' => ['mdx'], + 'text/n3' => ['n3'], + 'text/plain' => ['txt', 'text', 'conf', 'def', 'list', 'log', 'in', 'ini', 'm3u'], + 'text/prs.lines.tag' => ['dsc'], + 'text/richtext' => ['rtx'], + 'text/rtf' => ['rtf'], + 'text/sgml' => ['sgml', 'sgm'], + 'text/shex' => ['shex'], + 'text/slim' => ['slim', 'slm'], + 'text/spdx' => ['spdx'], + 'text/stylus' => ['stylus', 'styl'], + 'text/tab-separated-values' => ['tsv'], + 'text/troff' => ['t', 'tr', 'roff', 'man', 'me', 'ms'], + 'text/turtle' => ['ttl'], + 'text/uri-list' => ['uri', 'uris', 'urls'], + 'text/vcard' => ['vcard'], + 'text/vnd.curl' => ['curl'], + 'text/vnd.curl.dcurl' => ['dcurl'], + 'text/vnd.curl.mcurl' => ['mcurl'], + 'text/vnd.curl.scurl' => ['scurl'], + 'text/vnd.dvb.subtitle' => ['sub'], + 'text/vnd.familysearch.gedcom' => ['ged'], + 'text/vnd.fly' => ['fly'], + 'text/vnd.fmi.flexstor' => ['flx'], + 'text/vnd.graphviz' => ['gv'], + 'text/vnd.in3d.3dml' => ['3dml'], + 'text/vnd.in3d.spot' => ['spot'], + 'text/vnd.sun.j2me.app-descriptor' => ['jad'], + 'text/vnd.wap.wml' => ['wml'], + 'text/vnd.wap.wmlscript' => ['wmls'], + 'text/vtt' => ['vtt'], + 'text/wgsl' => ['wgsl'], + 'text/x-asm' => ['s', 'asm'], + 'text/x-c' => ['c', 'cc', 'cxx', 'cpp', 'h', 'hh', 'dic'], + 'text/x-component' => ['htc'], + 'text/x-fortran' => ['f', 'for', 'f77', 'f90'], + 'text/x-handlebars-template' => ['hbs'], + 'text/x-java-source' => ['java'], + 'text/x-lua' => ['lua'], + 'text/x-markdown' => ['mkd'], + 'text/x-nfo' => ['nfo'], + 'text/x-opml' => ['opml'], + 'text/x-org' => ['org'], + 'text/x-pascal' => ['p', 'pas'], + 'text/x-processing' => ['pde'], + 'text/x-sass' => ['sass'], + 'text/x-scss' => ['scss'], + 'text/x-setext' => ['etx'], + 'text/x-sfv' => ['sfv'], + 'text/x-suse-ymp' => ['ymp'], + 'text/x-uuencode' => ['uu'], + 'text/x-vcalendar' => ['vcs'], + 'text/x-vcard' => ['vcf'], + 'text/xml' => ['xml'], + 'text/yaml' => ['yaml', 'yml'], + 'video/3gpp' => ['3gp', '3gpp'], + 'video/3gpp2' => ['3g2'], + 'video/h261' => ['h261'], + 'video/h263' => ['h263'], + 'video/h264' => ['h264'], + 'video/iso.segment' => ['m4s'], + 'video/jpeg' => ['jpgv'], + 'video/jpm' => ['jpm', 'jpgm'], + 'video/mj2' => ['mj2', 'mjp2'], + 'video/mp2t' => ['ts'], + 'video/mp4' => ['mp4', 'mp4v', 'mpg4', 'f4v'], + 'video/mpeg' => ['mpeg', 'mpg', 'mpe', 'm1v', 'm2v'], + 'video/ogg' => ['ogv'], + 'video/quicktime' => ['qt', 'mov'], + 'video/vnd.dece.hd' => ['uvh', 'uvvh'], + 'video/vnd.dece.mobile' => ['uvm', 'uvvm'], + 'video/vnd.dece.pd' => ['uvp', 'uvvp'], + 'video/vnd.dece.sd' => ['uvs', 'uvvs'], + 'video/vnd.dece.video' => ['uvv', 'uvvv'], + 'video/vnd.dvb.file' => ['dvb'], + 'video/vnd.fvt' => ['fvt'], + 'video/vnd.mpegurl' => ['mxu', 'm4u'], + 'video/vnd.ms-playready.media.pyv' => ['pyv'], + 'video/vnd.uvvu.mp4' => ['uvu', 'uvvu'], + 'video/vnd.vivo' => ['viv'], + 'video/webm' => ['webm'], + 'video/x-f4v' => ['f4v'], + 'video/x-fli' => ['fli'], + 'video/x-flv' => ['flv'], + 'video/x-m4v' => ['m4v'], + 'video/x-matroska' => ['mkv', 'mk3d', 'mks'], + 'video/x-mng' => ['mng'], + 'video/x-ms-asf' => ['asf', 'asx'], + 'video/x-ms-vob' => ['vob'], + 'video/x-ms-wm' => ['wm'], + 'video/x-ms-wmv' => ['wmv'], + 'video/x-ms-wmx' => ['wmx'], + 'video/x-ms-wvx' => ['wvx'], + 'video/x-msvideo' => ['avi'], + 'video/x-sgi-movie' => ['movie'], + 'video/x-smv' => ['smv'], + 'x-conference/x-cooltalk' => ['ice'], + 'application/x-photoshop' => ['psd'], + 'application/smil' => ['smi', 'smil'], + 'application/powerpoint' => ['ppt'], + 'application/vnd.ms-powerpoint.addin.macroEnabled.12' => ['ppam'], + 'application/vnd.ms-powerpoint.presentation.macroEnabled.12' => ['pptm', 'potm'], + 'application/vnd.ms-powerpoint.slideshow.macroEnabled.12' => ['ppsm'], + 'application/wbxml' => ['wbxml'], + 'application/wmlc' => ['wmlc'], + 'application/x-httpd-php-source' => ['phps'], + 'application/x-compress' => ['z'], + 'application/x-rar' => ['rar'], + 'video/vnd.rn-realvideo' => ['rv'], + 'application/vnd.ms-word.template.macroEnabled.12' => ['docm', 'dotm'], + 'application/vnd.ms-excel.sheet.macroEnabled.12' => ['xlsm'], + 'application/vnd.ms-excel.template.macroEnabled.12' => ['xltm'], + 'application/vnd.ms-excel.addin.macroEnabled.12' => ['xlam'], + 'application/vnd.ms-excel.sheet.binary.macroEnabled.12' => ['xlsb'], + 'application/excel' => ['xl'], + 'application/x-x509-user-cert' => ['pem'], + 'application/x-pkcs10' => ['p10'], + 'application/x-pkcs7-signature' => ['p7a'], + 'application/pgp' => ['pgp'], + 'application/gpg-keys' => ['gpg'], + 'application/x-pkcs7' => ['rsa'], + 'video/3gp' => ['3gp'], + 'audio/acc' => ['aac'], + 'application/vnd.mpegurl' => ['m4u'], + 'application/videolan' => ['vlc'], + 'audio/x-au' => ['au'], + 'audio/ac3' => ['ac3'], + 'text/x-scriptzsh' => ['zsh'], + 'application/cdr' => ['cdr'], + 'application/STEP' => ['step', 'stp'], + ]; + + public function lookupMimeType(string $extension): ?string + { + return self::MIME_TYPES_FOR_EXTENSIONS[$extension] ?? null; + } + + public function lookupExtension(string $mimetype): ?string + { + return self::EXTENSIONS_FOR_MIME_TIMES[$mimetype][0] ?? null; + } + + /** + * @return string[] + */ + public function lookupAllExtensions(string $mimetype): array + { + return self::EXTENSIONS_FOR_MIME_TIMES[$mimetype] ?? []; + } +} diff --git a/vendor/league/mime-type-detection/src/MimeTypeDetector.php b/vendor/league/mime-type-detection/src/MimeTypeDetector.php new file mode 100644 index 000000000..5d799d2a8 --- /dev/null +++ b/vendor/league/mime-type-detection/src/MimeTypeDetector.php @@ -0,0 +1,19 @@ + $overrides + */ + public function __construct(ExtensionToMimeTypeMap $innerMap, array $overrides) + { + $this->innerMap = $innerMap; + $this->overrides = $overrides; + } + + public function lookupMimeType(string $extension): ?string + { + return $this->overrides[$extension] ?? $this->innerMap->lookupMimeType($extension); + } +} diff --git a/vendor/lizhichao/one-sm/.github/FUNDING.yml b/vendor/lizhichao/one-sm/.github/FUNDING.yml new file mode 100644 index 000000000..d312585b5 --- /dev/null +++ b/vendor/lizhichao/one-sm/.github/FUNDING.yml @@ -0,0 +1,5 @@ +# 如果对你有帮助 欢迎打赏 + +custom: ["https://www.vicsdf.com/img/z.jpg","https://www.vicsdf.com/img/w.jpg"] + + diff --git a/vendor/lizhichao/one-sm/.github/workflows/sm.yml b/vendor/lizhichao/one-sm/.github/workflows/sm.yml new file mode 100644 index 000000000..24f30d2da --- /dev/null +++ b/vendor/lizhichao/one-sm/.github/workflows/sm.yml @@ -0,0 +1,33 @@ +name: sm + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + + +jobs: + run: + runs-on: ubuntu-latest + strategy: + matrix: + php-versions: [ '5.6','7.0','7.1', '7.2', '7.4', '8.0' ] + name: PHP ${{ matrix.php-versions }} + steps: + - name: Checkout + uses: actions/checkout@v2 + - name: Install PHP + uses: shivammathur/setup-php@v2 + with: + php-version: ${{ matrix.php-versions }} + coverage: none + ini-values: opcache.jit_buffer_size=256M, opcache.jit=1205, pcre.jit=1, opcache.enable=1, opcache.enable_cli=1 + - name: Check PHP Version + run: php -v && php -i | grep opcache + - name: Install Dependencies + run: composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist + - name: Execute tests sm3 + run: php tests/sm3.php + - name: Execute tests sm4 + run: php tests/sm4.php diff --git a/vendor/lizhichao/one-sm/.gitignore b/vendor/lizhichao/one-sm/.gitignore new file mode 100644 index 000000000..cc52049e5 --- /dev/null +++ b/vendor/lizhichao/one-sm/.gitignore @@ -0,0 +1,7 @@ +/vendor +.idea +.vscode +.svn +.DS_Store +composer.lock +cache/ diff --git a/vendor/lizhichao/one-sm/.php_cs.dist b/vendor/lizhichao/one-sm/.php_cs.dist new file mode 100644 index 000000000..8617ec2fa --- /dev/null +++ b/vendor/lizhichao/one-sm/.php_cs.dist @@ -0,0 +1,65 @@ +setRiskyAllowed(true) + ->setIndent(' ') + ->setRules([ + '@PSR2' => true, + '@PhpCsFixer' => true, + '@Symfony:risky' => true, + 'concat_space' => ['spacing' => 'one'], + 'array_syntax' => ['syntax' => 'short'], + 'array_indentation' => true, + 'combine_consecutive_unsets' => true, + 'method_separation' => true, + 'single_quote' => true, + 'declare_equal_normalize' => true, + 'function_typehint_space' => true, + 'hash_to_slash_comment' => true, + 'include' => true, + 'lowercase_cast' => true, + 'no_multiline_whitespace_before_semicolons' => true, + 'no_leading_import_slash' => true, + 'no_multiline_whitespace_around_double_arrow' => true, + 'no_spaces_around_offset' => true, + 'no_unneeded_control_parentheses' => true, + 'no_unused_imports' => true, + 'no_whitespace_before_comma_in_array' => true, + 'no_whitespace_in_blank_line' => true, + 'object_operator_without_whitespace' => true, + 'single_blank_line_before_namespace' => true, + 'single_class_element_per_statement' => true, + 'space_after_semicolon' => true, + 'standardize_not_equals' => true, + 'ternary_operator_spaces' => true, + 'trailing_comma_in_multiline_array' => true, + 'trim_array_spaces' => true, + 'unary_operator_spaces' => true, + 'whitespace_after_comma_in_array' => true, + 'no_extra_consecutive_blank_lines' => [ + 'curly_brace_block', + 'extra', + 'parenthesis_brace_block', + 'square_brace_block', + 'throw', + 'use', + ], + 'binary_operator_spaces' => [ + 'align_double_arrow' => true, + 'align_equals' => true, + ], + 'braces' => [ + 'allow_single_line_closure' => true, + ], + ]) + ->setFinder( + PhpCsFixer\Finder::create() + ->exclude('vendor') + ->exclude('tests') + ->in(__DIR__) + ); diff --git a/vendor/lizhichao/one-sm/README.md b/vendor/lizhichao/one-sm/README.md new file mode 100644 index 000000000..bb07cda18 --- /dev/null +++ b/vendor/lizhichao/one-sm/README.md @@ -0,0 +1,100 @@ +## php国密算法 + +- sm3 + - 字符串签名 + - 文件签名 +- sm4 + - ecb + - cbc + - cfb + - ofb + - ctr + +## 安装 + +```shell +composer require lizhichao/one-sm +``` + +## SM3签名 +```php +sign('abc') . PHP_EOL; +echo $sm3->sign(str_repeat("adfas哈哈哈", 100)) . PHP_EOL; + + +// 文件签名 +echo $sm3->signFile(__FILE__) . PHP_EOL; +``` +### 性能测试 +和 [openssl](https://github.com/openssl/openssl) , [SM3-PHP](https://github.com/DongyunLee/SM3-PHP) 性能测试 + +```shell +php bench.php +``` +结果 +``` +openssl:4901d7181a1024b8c0f59b8d3c5c6d96b4b707ad10e8ebc8ece5dc49364a3067 +one-sm3:4901d7181a1024b8c0f59b8d3c5c6d96b4b707ad10e8ebc8ece5dc49364a3067 +SM3-PHP:4901d7181a1024b8c0f59b8d3c5c6d96b4b707ad10e8ebc8ece5dc49364a3067 +openssl time:6.3741207122803ms +one-sm3 time:8.1770420074463ms +SM3-PHP time:1738.5928630829ms + +``` +[测试代码bench.php](https://github.com/lizhichao/sm/blob/master/bench.php) + + +## SM4加密 + +```php +enDataEcb($data); +// 加密后的长度和原数据长度一致 +var_dump(strlen($d) === $str_len); + +// ECB解密 +$d = $sm4->deDataEcb($d); +// 解密后和原数据相等 +var_dump(md5($d) === $sign); + + +// 初始化向量16位 +$iv = hex2bin(md5(2)); +// CBC加密 +$d = $sm4->enDataCbc($data, $iv); +// 加密后的长度和原数据长度一致 +var_dump(strlen($d)===$str_len); + +// CBC解密 +$d = $sm4->deDataCbc($d, $iv); +// 解密后和原数据相等 +var_dump(md5($d)===$sign); + +``` + +## 我的其他仓库 + +* [一个极简高性能php框架,支持[swoole | php-fpm ]环境](https://github.com/lizhichao/one) +* [clickhouse tcp 客户端](https://github.com/lizhichao/one-ck) +* [中文分词](https://github.com/lizhichao/VicWord) +* [nsq客户端](https://github.com/lizhichao/one-nsq) diff --git a/vendor/lizhichao/one-sm/bench.php b/vendor/lizhichao/one-sm/bench.php new file mode 100644 index 000000000..156f4d35b --- /dev/null +++ b/vendor/lizhichao/one-sm/bench.php @@ -0,0 +1,97 @@ +sign($str) . PHP_EOL; + + +$t2 = microtime(true); + +echo 'SM3-PHP:' . sm3($str) . PHP_EOL; + +$t3 = microtime(true); + +echo 'openssl time:'.($t1 - $t) * 1000 . 'ms' . PHP_EOL; +echo 'one-sm3 time:'.($t2 - $t1) * 1000 . 'ms' . PHP_EOL; +echo 'SM3-PHP time:'.($t3 - $t2) * 1000 . 'ms' . PHP_EOL; + +// 文件签名 +//echo \OneSm\Sm3::signFile(__FILE__) . PHP_EOL; \ No newline at end of file diff --git a/vendor/lizhichao/one-sm/composer.json b/vendor/lizhichao/one-sm/composer.json new file mode 100644 index 000000000..8d41b477d --- /dev/null +++ b/vendor/lizhichao/one-sm/composer.json @@ -0,0 +1,24 @@ +{ + "name": "lizhichao/one-sm", + "type": "library", + "description": "国密sm3", + "keywords": [ + "php", + "sm3" + ], + "license": "Apache-2.0", + "authors": [ + { + "name": "tanszhe", + "email": "1018595261@qq.com" + } + ], + "require": { + "php": ">=5.6" + }, + "autoload": { + "psr-4": { + "OneSm\\": "src/" + } + } +} diff --git a/vendor/lizhichao/one-sm/src/Sm3.php b/vendor/lizhichao/one-sm/src/Sm3.php new file mode 100644 index 000000000..d9eb75f9d --- /dev/null +++ b/vendor/lizhichao/one-sm/src/Sm3.php @@ -0,0 +1,142 @@ +getK($l); + $bt = $this->getB($k); + $str = $str . $bt . pack('J', $l); + + $count = strlen($str); + $l = $count / $this->STR_LEN; + $vr = hex2bin($this->IV); + for ($i = 0; $i < $l; $i++) { + $vr = $this->cf($vr, substr($str, $i * $this->STR_LEN, $this->STR_LEN)); + } + return bin2hex($vr); + + } + + private function getK($l) + { + $v = $l % $this->LEN; + return $v + $this->STR_LEN < $this->LEN + ? $this->LEN - $this->STR_LEN - $v - 1 + : ($this->LEN * 2) - $this->STR_LEN - $v - 1; + } + + private function getB($k) + { + $arg = [128]; + $arg = array_merge($arg, array_fill(0, intval($k / 8), 0)); + return pack('C*', ...$arg); + } + + public function signFile($file) + { + $l = filesize($file) * 8; + $k = $this->getK($l); + $bt = $this->getB($k) . pack('J', $l); + + $hd = fopen($file, 'r'); + $vr = hex2bin($this->IV); + $str = fread($hd, $this->STR_LEN); + if ($l > $this->LEN - $this->STR_LEN - 1) { + do { + $vr = $this->cf($vr, $str); + $str = fread($hd, $this->STR_LEN); + } while (!feof($hd)); + } + + $str = $str . $bt; + $count = strlen($str) * 8; + $l = $count / $this->LEN; + for ($i = 0; $i < $l; $i++) { + $vr = $this->cf($vr, substr($str, $i * $this->STR_LEN, $this->STR_LEN)); + } + return bin2hex($vr); + } + + + private function t($i) + { + return $i < 16 ? 0x79cc4519 : 0x7a879d8a; + } + + private function cf($ai, $bi) + { + $wr = array_values(unpack('N*', $bi)); + for ($i = 16; $i < 68; $i++) { + $wr[$i] = $this->p1($wr[$i - 16] + ^ + $wr[$i - 9] + ^ + $this->lm($wr[$i - 3], 15)) + ^ + $this->lm($wr[$i - 13], 7) + ^ + $wr[$i - 6]; + } + $wr1 = []; + for ($i = 0; $i < 64; $i++) { + $wr1[] = $wr[$i] ^ $wr[$i + 4]; + } + + list($a, $b, $c, $d, $e, $f, $g, $h) = array_values(unpack('N*', $ai)); + + for ($i = 0; $i < 64; $i++) { + $ss1 = $this->lm( + ($this->lm($a, 12) + $e + $this->lm($this->t($i), $i % 32) & 0xffffffff), + 7); + $ss2 = $ss1 ^ $this->lm($a, 12); + $tt1 = ($this->ff($i, $a, $b, $c) + $d + $ss2 + $wr1[$i]) & 0xffffffff; + $tt2 = ($this->gg($i, $e, $f, $g) + $h + $ss1 + $wr[$i]) & 0xffffffff; + $d = $c; + $c = $this->lm($b, 9); + $b = $a; + $a = $tt1; + $h = $g; + $g = $this->lm($f, 19); + $f = $e; + $e = $this->p0($tt2); + } + + return pack('N*', $a, $b, $c, $d, $e, $f, $g, $h) ^ $ai; + } + + + private function ff($j, $x, $y, $z) + { + return $j < 16 ? $x ^ $y ^ $z : ($x & $y) | ($x & $z) | ($y & $z); + } + + private function gg($j, $x, $y, $z) + { + return $j < 16 ? $x ^ $y ^ $z : ($x & $y) | (~$x & $z); + } + + + private function lm($a, $n) + { + return ($a >> (32 - $n) | (($a << $n) & 0xffffffff)); + } + + private function p0($x) + { + return $x ^ $this->lm($x, 9) ^ $this->lm($x, 17); + } + + private function p1($x) + { + return $x ^ $this->lm($x, 15) ^ $this->lm($x, 23); + } + +} \ No newline at end of file diff --git a/vendor/lizhichao/one-sm/src/Sm4.php b/vendor/lizhichao/one-sm/src/Sm4.php new file mode 100644 index 000000000..4421d2fcd --- /dev/null +++ b/vendor/lizhichao/one-sm/src/Sm4.php @@ -0,0 +1,350 @@ +ck16($key); + $this->crk($key); + } + + private function dd(&$data) + { + $n = strlen($data) % $this->len; + $data = $data . str_repeat($this->b, $n); + } + + private function ck16($str) + { + if (strlen($str) !== $this->len) { + throw new \Exception('秘钥长度为16位'); + } + } + + private function add($v) + { + $arr = unpack('N*', $v); + $max = 0xffffffff; + $j = 1; + for ($i = 4; $i > 0; $i--) { + if ($arr[$i] > $max - $j) { + $j = 1; + $arr[$i] = 0; + } else { + $arr[$i] += $j; + break; + } + } + return pack('N*', ...$arr); + } + + /** + * @param string $str 加密字符串 + * @param string $iv 初始化字符串16位 + * @return string + * @throws \Exception + */ + public function deDataCtr($str, $iv) + { + return $this->enDataCtr($str, $iv); + } + + /** + * @param string $str 加密字符串 + * @param string $iv 初始化字符串16位 + * @return string + * @throws \Exception + */ + public function enDataCtr($str, $iv) + { + $this->ck16($iv); + $r = ''; + $this->dd($str); + $l = strlen($str) / $this->len; + for ($i = 0; $i < $l; $i++) { + $s = substr($str, $i * $this->len, $this->len); + $tr = []; + $this->encode(array_values(unpack('N*', $iv)), $tr); + $s1 = pack('N*', ...$tr); + $s1 = $s1 ^ $s; + $iv = $this->add($iv); + $r .= $s1; + } + return $r; + } + + + /** + * @param string $str 加密字符串 + * @param string $iv 初始化字符串16位 + * @return string + * @throws \Exception + */ + public function enDataOfb($str, $iv) + { + $this->ck16($iv); + $r = ''; + $this->dd($str); + $l = strlen($str) / $this->len; + for ($i = 0; $i < $l; $i++) { + $s = substr($str, $i * $this->len, $this->len); + $tr = []; + $this->encode(array_values(unpack('N*', $iv)), $tr); + $iv = pack('N*', ...$tr); + $s1 = $s ^ $iv; + $r .= $s1; + } + return $r; + } + + /** + * @param string $str 加密字符串 + * @param string $iv 初始化字符串16位 + * @return string + * @throws \Exception + */ + public function deDataOfb($str, $iv) + { + return $this->enDataOfb($str, $iv); + } + + /** + * @param string $str 加密字符串 + * @param string $iv 初始化字符串16位 + * @return string + * @throws \Exception + */ + public function deDataCfb($str, $iv) + { + $this->ck16($iv); + $r = ''; + $this->dd($str); + $l = strlen($str) / $this->len; + for ($i = 0; $i < $l; $i++) { + $s = substr($str, $i * $this->len, $this->len); + $tr = []; + $this->encode(array_values(unpack('N*', $iv)), $tr); + $s1 = pack('N*', ...$tr); + $s1 = $s ^ $s1; + $iv = $s; + $r .= $s1; + } + return $r; + } + + /** + * @param string $str 加密字符串 + * @param string $iv 初始化字符串16位 + * @return string + * @throws \Exception + */ + public function enDataCfb($str, $iv) + { + $this->ck16($iv); + $r = ''; + $this->dd($str); + $l = strlen($str) / $this->len; + for ($i = 0; $i < $l; $i++) { + $s = substr($str, $i * $this->len, $this->len); + $tr = []; + $this->encode(array_values(unpack('N*', $iv)), $tr); + $s1 = pack('N*', ...$tr); + $iv = $s ^ $s1; + $r .= $iv; + } + return $r; + } + + + /** + * @param string $str 加密字符串 + * @param string $iv 初始化字符串16位 + * @return string + * @throws \Exception + */ + public function enDataCbc($str, $iv) + { + $this->ck16($iv); + $r = ''; + $this->dd($str); + $l = strlen($str) / $this->len; + for ($i = 0; $i < $l; $i++) { + $s = substr($str, $i * $this->len, $this->len); + $s = $iv ^ $s; + $tr = []; + $this->encode(array_values(unpack('N*', $s)), $tr); + $iv = pack('N*', ...$tr); + $r .= $iv; + } + return $r; + } + + /** + * @param string $str 加密字符串 + * @param string $iv 初始化字符串16位 + * @return string + * @throws \Exception + */ + public function deDataCbc($str, $iv) + { + $this->ck16($iv); + $r = ''; + $this->dd($str); + $l = strlen($str) / $this->len; + for ($i = 0; $i < $l; $i++) { + $s = substr($str, $i * $this->len, $this->len); + $tr = []; + $this->decode(array_values(unpack('N*', $s)), $tr); + $s1 = pack('N*', ...$tr); + $s1 = $iv ^ $s1; + $iv = $s; + $r .= $s1; + } + return $r; + } + + + /** + * @param string $str 加密字符串 + * @return string + */ + public function enDataEcb($str) + { + $r = []; + $this->dd($str); + $ar = unpack('N*', $str); + do { + $this->encode([current($ar), next($ar), next($ar), next($ar)], $r); + } while (next($ar)); + return pack('N*', ...$r); + } + + /** + * @param string $str 解密字符串 + * @return string + */ + public function deDataEcb($str) + { + $r = []; + $this->dd($str); + $ar = unpack('N*', $str); + do { + $this->decode([current($ar), next($ar), next($ar), next($ar)], $r); + } while (next($ar)); + return pack('N*', ...$r); + } + + private function encode($ar, &$r) + { + for ($i = 0; $i < 32; $i++) { + $ar[$i + 4] = $this->f($ar[$i], $ar[$i + 1], $ar[$i + 2], $ar[$i + 3], $this->rk[$i]); + } + $r[] = $ar[35]; + $r[] = $ar[34]; + $r[] = $ar[33]; + $r[] = $ar[32]; + } + + private function decode($ar, &$r) + { + for ($i = 0; $i < 32; $i++) { + $ar[$i + 4] = $this->f($ar[$i], $ar[$i + 1], $ar[$i + 2], $ar[$i + 3], $this->rk[31 - $i]); + } + $r[] = $ar[35]; + $r[] = $ar[34]; + $r[] = $ar[33]; + $r[] = $ar[32]; + } + + private function crk($key) + { + $keys = array_values(unpack('N*', $key)); + $keys = [ + $keys[0] ^ $this->fk[0], + $keys[1] ^ $this->fk[1], + $keys[2] ^ $this->fk[2], + $keys[3] ^ $this->fk[3] + ]; + for ($i = 0; $i < 32; $i++) { + $this->rk[] = $keys[] = $keys[$i] ^ $this->t1($keys[$i + 1] ^ $keys[$i + 2] ^ $keys[$i + 3] ^ $this->ck[$i]); + } + } + + private function lm($a, $n) + { + return ($a >> (32 - $n) | (($a << $n) & 0xffffffff)); + } + + private function f($x0, $x1, $x2, $x3, $r) + { + return $x0 ^ $this->t($x1 ^ $x2 ^ $x3 ^ $r); + } + + private function s($n) + { + return $this->Sbox[($n & 0xff)] | $this->Sbox[(($n >> 8) & 0xff)] << 8 | $this->Sbox[(($n >> 16) & 0xff)] << 16 | $this->Sbox[(($n >> 24) & 0xff)] << 24; + } + + private function t($n) + { + $b = $this->s($n); + return $b ^ $this->lm($b, 2) ^ $this->lm($b, 10) ^ $this->lm($b, 18) ^ $this->lm($b, 24); + } + + private function t1($n) + { + $b = $this->s($n); + return $b ^ $this->lm($b, 13) ^ $this->lm($b, 23); + } + + +} \ No newline at end of file diff --git a/vendor/lizhichao/one-sm/test.php b/vendor/lizhichao/one-sm/test.php new file mode 100644 index 000000000..2318a6942 --- /dev/null +++ b/vendor/lizhichao/one-sm/test.php @@ -0,0 +1,3 @@ +sign('test')); + $pack = 'H' . (string)$size; + if (\strlen($secret) > $size) { + $secret = pack($pack, $sm3->sign($secret)); + } + $key = str_pad($secret, $size, \chr(0x00)); + $ipad = $key ^ str_repeat(\chr(0x36), $size); + $opad = $key ^ str_repeat(\chr(0x5C), $size); + $hmac = $sm3->sign($opad . pack($pack, $sm3->sign($ipad . $data))); + + return $raw_output ? pack($pack, $hmac) : $hmac; +} + +$sm3 = new \OneSm\Sm3(); +eq('66c7f0f462eeedd9d1f2d46bdc10e4e24167c4875cf2f7a2297da02b8f4ba8e0', $sm3->sign('abc')); +eq('1294da78431a20991584c68a669f2c59618e08bf0d7989f35f6ae1d7d570e143', $sm3->sign(str_repeat("adfas哈哈哈", 100))); +eq('1ab21d8355cfa17f8e61194831e81a8f22bec8c728fefb747ed035eb5082aa2b', $sm3->sign('')); + +eq( + '8e4bd77d8a10526fae772bb6014dfaed0335491e1cdfa92d3aca1481ae5d9a83', + hmac(str_repeat('abc', 1000), 'secret') +); +eq( + hex2bin('8e4bd77d8a10526fae772bb6014dfaed0335491e1cdfa92d3aca1481ae5d9a83'), + hmac(str_repeat('abc', 1000), 'secret', true) +); + diff --git a/vendor/lizhichao/one-sm/tests/sm4.php b/vendor/lizhichao/one-sm/tests/sm4.php new file mode 100644 index 000000000..ff032882a --- /dev/null +++ b/vendor/lizhichao/one-sm/tests/sm4.php @@ -0,0 +1,79 @@ +enDataEcb($data); +// 加密后的长度和原数据长度一致 +eq(strlen($d), $str_len); +// 解密ecb +$d = $sm4->deDataEcb($d); +// 解密后和原数据相等 +eq(md5($d), $sign); + +echo "\n --- cbc --- \n"; +// 加密cbc +$d = $sm4->enDataCbc($data, $iv); +// 加密后的长度和原数据长度一致 +eq(strlen($d), $str_len); +// 解密cbc +$d = $sm4->deDataCbc($d, $iv); +// 解密后和原数据相等 +eq(md5($d), $sign); + +echo "\n --- ofb --- \n"; +// 加密ofb +$d = $sm4->enDataOfb($data, $iv); +// 加密后的长度和原数据长度一致 +eq(strlen($d), $str_len); +// 解密ofb +$d = $sm4->deDataOfb($d, $iv); +// 解密后和原数据相等 +eq(md5($d), $sign); + +echo "\n --- cfb --- \n"; + +// 加密cfb +$d = $sm4->enDatacfb($data, $iv); +// 加密后的长度和原数据长度一致 +eq(strlen($d), $str_len); +// 解密cfb +$d = $sm4->deDatacfb($d, $iv); +// 解密后和原数据相等 +eq(md5($d), $sign); + + +echo "\n --- ctr --- \n"; + +// 加密ctr +$d = $sm4->enDataCtr($data, $iv); +// 加密后的长度和原数据长度一致 +eq(strlen($d), $str_len); +// 解密ctr +$d = $sm4->deDataCtr($d, $iv); +// 解密后和原数据相等 +eq(md5($d), $sign); + +//ecb/cbc/cfb/ofb/ctr \ No newline at end of file diff --git a/vendor/services.php b/vendor/services.php index fe2e2f3ca..88f0716e9 100644 --- a/vendor/services.php +++ b/vendor/services.php @@ -1,6 +1,6 @@ - 'think\\app\\Service', 1 => 'think\\queue\\Service', diff --git a/vendor/topthink/think-filesystem/.gitignore b/vendor/topthink/think-filesystem/.gitignore new file mode 100644 index 000000000..25ad74d67 --- /dev/null +++ b/vendor/topthink/think-filesystem/.gitignore @@ -0,0 +1,3 @@ +composer.lock +/.idea +/vendor diff --git a/vendor/topthink/think-filesystem/README.md b/vendor/topthink/think-filesystem/README.md new file mode 100644 index 000000000..90977dd7d --- /dev/null +++ b/vendor/topthink/think-filesystem/README.md @@ -0,0 +1,5 @@ +# think-filesystem for ThinkPHP6.1 + +## 安装 + +> composer require topthink/think-filesystem diff --git a/vendor/topthink/think-filesystem/composer.json b/vendor/topthink/think-filesystem/composer.json new file mode 100644 index 000000000..8c4f508fb --- /dev/null +++ b/vendor/topthink/think-filesystem/composer.json @@ -0,0 +1,33 @@ +{ + "name": "topthink/think-filesystem", + "description": "The ThinkPHP6.1 Filesystem Package", + "type": "library", + "license": "Apache-2.0", + "authors": [ + { + "name": "yunwuxin", + "email": "448901948@qq.com" + } + ], + "autoload": { + "psr-4": { + "think\\": "src" + } + }, + "autoload-dev": { + "psr-4": { + "think\\tests\\": "tests/" + } + }, + "require": { + "topthink/framework": "^6.1|^8.0", + "league/flysystem": "^2.0" + }, + "require-dev": { + "mikey179/vfsstream": "^1.6", + "mockery/mockery": "^1.2", + "phpunit/phpunit": "^8.0" + }, + "minimum-stability": "dev", + "prefer-stable": true +} diff --git a/vendor/topthink/think-filesystem/phpunit.xml.dist b/vendor/topthink/think-filesystem/phpunit.xml.dist new file mode 100644 index 000000000..e20a13381 --- /dev/null +++ b/vendor/topthink/think-filesystem/phpunit.xml.dist @@ -0,0 +1,25 @@ + + + + + ./tests + + + + + ./src/think + + + diff --git a/vendor/topthink/think-filesystem/src/Filesystem.php b/vendor/topthink/think-filesystem/src/Filesystem.php new file mode 100644 index 000000000..0aee929f5 --- /dev/null +++ b/vendor/topthink/think-filesystem/src/Filesystem.php @@ -0,0 +1,89 @@ + +// +---------------------------------------------------------------------- +declare (strict_types = 1); + +namespace think; + +use InvalidArgumentException; +use think\filesystem\Driver; +use think\filesystem\driver\Local; +use think\helper\Arr; + +/** + * Class Filesystem + * @package think + * @mixin Driver + * @mixin Local + */ +class Filesystem extends Manager +{ + protected $namespace = '\\think\\filesystem\\driver\\'; + + /** + * @param null|string $name + * @return Driver + */ + public function disk(string $name = null): Driver + { + return $this->driver($name); + } + + protected function resolveType(string $name) + { + return $this->getDiskConfig($name, 'type', 'local'); + } + + protected function resolveConfig(string $name) + { + return $this->getDiskConfig($name); + } + + /** + * 获取缓存配置 + * @access public + * @param null|string $name 名称 + * @param mixed $default 默认值 + * @return mixed + */ + public function getConfig(string $name = null, $default = null) + { + if (!is_null($name)) { + return $this->app->config->get('filesystem.' . $name, $default); + } + + return $this->app->config->get('filesystem'); + } + + /** + * 获取磁盘配置 + * @param string $disk + * @param null $name + * @param null $default + * @return array + */ + public function getDiskConfig($disk, $name = null, $default = null) + { + if ($config = $this->getConfig("disks.{$disk}")) { + return Arr::get($config, $name, $default); + } + + throw new InvalidArgumentException("Disk [$disk] not found."); + } + + /** + * 默认驱动 + * @return string|null + */ + public function getDefaultDriver() + { + return $this->getConfig('default'); + } +} diff --git a/vendor/topthink/think-filesystem/src/facade/Filesystem.php b/vendor/topthink/think-filesystem/src/facade/Filesystem.php new file mode 100644 index 000000000..0e32c2c2a --- /dev/null +++ b/vendor/topthink/think-filesystem/src/facade/Filesystem.php @@ -0,0 +1,33 @@ + +// +---------------------------------------------------------------------- +declare (strict_types = 1); + +namespace think\facade; + +use think\Facade; +use think\filesystem\Driver; + +/** + * Class Filesystem + * @package think\facade + * @mixin \think\Filesystem + * @method static Driver disk(string $name = null) , null|string + * @method static mixed getConfig(null|string $name = null, mixed $default = null) 获取缓存配置 + * @method static array getDiskConfig(string $disk, null $name = null, null $default = null) 获取磁盘配置 + * @method static string|null getDefaultDriver() 默认驱动 + */ +class Filesystem extends Facade +{ + protected static function getFacadeClass() + { + return \think\Filesystem::class; + } +} diff --git a/vendor/topthink/think-filesystem/src/filesystem/Driver.php b/vendor/topthink/think-filesystem/src/filesystem/Driver.php new file mode 100644 index 000000000..e80414150 --- /dev/null +++ b/vendor/topthink/think-filesystem/src/filesystem/Driver.php @@ -0,0 +1,130 @@ + +// +---------------------------------------------------------------------- +declare (strict_types = 1); + +namespace think\filesystem; + +use League\Flysystem\Filesystem; +use League\Flysystem\FilesystemAdapter; +use League\Flysystem\UnableToSetVisibility; +use League\Flysystem\UnableToWriteFile; +use RuntimeException; +use think\Cache; +use think\File; + +/** + * Class Driver + * @package think\filesystem + * @mixin Filesystem + */ +abstract class Driver +{ + + /** @var Cache */ + protected $cache; + + /** @var Filesystem */ + protected $filesystem; + + /** + * 配置参数 + * @var array + */ + protected $config = []; + + public function __construct(Cache $cache, array $config) + { + $this->cache = $cache; + $this->config = array_merge($this->config, $config); + + $adapter = $this->createAdapter(); + $this->filesystem = $this->createFilesystem($adapter); + } + + abstract protected function createAdapter(): FilesystemAdapter; + + protected function createFilesystem(FilesystemAdapter $adapter): Filesystem + { + $config = array_intersect_key($this->config, array_flip(['visibility', 'disable_asserts', 'url'])); + + return new Filesystem($adapter, $config); + } + + /** + * 获取文件完整路径 + * @param string $path + * @return string + */ + public function path(string $path): string + { + return $path; + } + + protected function concatPathToUrl($url, $path) + { + return rtrim($url, '/') . '/' . ltrim($path, '/'); + } + + public function url(string $path): string + { + throw new RuntimeException('This driver does not support retrieving URLs.'); + } + + /** + * 保存文件 + * @param string $path 路径 + * @param File $file 文件 + * @param null|string|\Closure $rule 文件名规则 + * @param array $options 参数 + * @return bool|string + */ + public function putFile(string $path, File $file, $rule = null, array $options = []) + { + return $this->putFileAs($path, $file, $file->hashName($rule), $options); + } + + /** + * 指定文件名保存文件 + * @param string $path 路径 + * @param File $file 文件 + * @param string $name 文件名 + * @param array $options 参数 + * @return bool|string + */ + public function putFileAs(string $path, File $file, string $name, array $options = []) + { + $stream = fopen($file->getRealPath(), 'r'); + $path = trim($path . '/' . $name, '/'); + + $result = $this->put($path, $stream, $options); + + if (is_resource($stream)) { + fclose($stream); + } + + return $result ? $path : false; + } + + protected function put(string $path, $contents, array $options = []) + { + try { + $this->writeStream($path, $contents, $options); + } catch (UnableToWriteFile|UnableToSetVisibility $e) { + return false; + } + return true; + } + + public function __call($method, $parameters) + { + return $this->filesystem->$method(...$parameters); + } +} diff --git a/vendor/topthink/think-filesystem/src/filesystem/driver/Local.php b/vendor/topthink/think-filesystem/src/filesystem/driver/Local.php new file mode 100644 index 000000000..3b1b64d8c --- /dev/null +++ b/vendor/topthink/think-filesystem/src/filesystem/driver/Local.php @@ -0,0 +1,98 @@ + +// +---------------------------------------------------------------------- +declare (strict_types = 1); + +namespace think\filesystem\driver; + +use League\Flysystem\FilesystemAdapter; +use League\Flysystem\Local\LocalFilesystemAdapter; +use League\Flysystem\PathNormalizer; +use League\Flysystem\PathPrefixer; +use League\Flysystem\UnixVisibility\PortableVisibilityConverter; +use League\Flysystem\Visibility; +use League\Flysystem\WhitespacePathNormalizer; +use think\filesystem\Driver; + +class Local extends Driver +{ + /** + * 配置参数 + * @var array + */ + protected $config = [ + 'root' => '', + ]; + + /** + * @var PathPrefixer + */ + protected $prefixer; + + /** + * @var PathNormalizer + */ + protected $normalizer; + + protected function createAdapter(): FilesystemAdapter + { + $visibility = PortableVisibilityConverter::fromArray( + $this->config['permissions'] ?? [], + $this->config['visibility'] ?? Visibility::PRIVATE + ); + + $links = ($this->config['links'] ?? null) === 'skip' + ? LocalFilesystemAdapter::SKIP_LINKS + : LocalFilesystemAdapter::DISALLOW_LINKS; + + return new LocalFilesystemAdapter( + $this->config['root'], + $visibility, + $this->config['lock'] ?? LOCK_EX, + $links + ); + } + + protected function prefixer() + { + if (!$this->prefixer) { + $this->prefixer = new PathPrefixer($this->config['root'], DIRECTORY_SEPARATOR); + } + return $this->prefixer; + } + + protected function normalizer() + { + if (!$this->normalizer) { + $this->normalizer = new WhitespacePathNormalizer(); + } + return $this->normalizer; + } + + /** + * 获取文件访问地址 + * @param string $path 文件路径 + * @return string + */ + public function url(string $path): string + { + $path = $this->normalizer()->normalizePath($path); + + if (isset($this->config['url'])) { + return $this->concatPathToUrl($this->config['url'], $path); + } + return parent::url($path); + } + + public function path(string $path): string + { + return $this->prefixer()->prefixPath($path); + } +} diff --git a/vendor/topthink/think-filesystem/tests/FilesystemTest.php b/vendor/topthink/think-filesystem/tests/FilesystemTest.php new file mode 100644 index 000000000..cc9d94e09 --- /dev/null +++ b/vendor/topthink/think-filesystem/tests/FilesystemTest.php @@ -0,0 +1,66 @@ +app = m::mock(App::class)->makePartial(); + Container::setInstance($this->app); + $this->app->shouldReceive('make')->with(App::class)->andReturn($this->app); + $this->config = m::mock(Config::class); + $this->config->shouldReceive('get')->with('filesystem.default', null)->andReturn('local'); + $this->app->shouldReceive('get')->with('config')->andReturn($this->config); + $this->filesystem = new Filesystem($this->app); + + $this->root = vfsStream::setup('rootDir'); + } + + protected function tearDown(): void + { + m::close(); + } + + public function testDisk() + { + $this->config->shouldReceive('get')->with('filesystem.disks.local', null)->andReturn([ + 'type' => 'local', + 'root' => $this->root->url(), + ]); + + $this->config->shouldReceive('get')->with('filesystem.disks.foo', null)->andReturn([ + 'type' => 'local', + 'root' => $this->root->url(), + ]); + + $this->assertInstanceOf(Local::class, $this->filesystem->disk()); + + $this->assertInstanceOf(Local::class, $this->filesystem->disk('foo')); + } + +} + diff --git a/vendor/topthink/think-filesystem/tests/bootstrap.php b/vendor/topthink/think-filesystem/tests/bootstrap.php new file mode 100644 index 000000000..a4abe2daf --- /dev/null +++ b/vendor/topthink/think-filesystem/tests/bootstrap.php @@ -0,0 +1,2 @@ +