diff --git a/app/common/repositories/system/merchant/FinancialRecordRepository.php b/app/common/repositories/system/merchant/FinancialRecordRepository.php index 7ee71b7a..a4773475 100644 --- a/app/common/repositories/system/merchant/FinancialRecordRepository.php +++ b/app/common/repositories/system/merchant/FinancialRecordRepository.php @@ -210,6 +210,7 @@ class FinancialRecordRepository extends BaseRepository $count = $this->dao->search($where)->where('financial_type', 'in', ['order', 'mer_presell'])->sum('number'); //保证金 $auto_margin = $this->dao->search($where)->where('financial_type', 'auto_margin')->sum('number'); + $auto_margin_refund = $this->dao->search($where)->where('financial_type', 'auto_margin_refund')->sum('number'); //平台优惠券 $coupon = $this->dao->search($where)->where('financial_type', 'in', ['order_platform_coupon', 'order_svip_coupon'])->sum('number'); //商户余额 @@ -281,7 +282,7 @@ class FinancialRecordRepository extends BaseRepository 'name' => '商户冻结金额' ], [ 'className' => 'el-icon-s-cooperation', - 'count' => $auto_margin, + 'count' => bcsub($auto_margin,$auto_margin_refund,2), 'field' => '元', 'name' => '商户保证金金额' ], @@ -438,10 +439,8 @@ class FinancialRecordRepository extends BaseRepository 'data' => [ [ '平台手续费', - $expend['number_order_charge'] . '元', - $expend['count_order_charge'] . '笔', - '退回' . $expend['number_order_charge'] . '元', - '退回' . $expend['count_charge'] . '笔', + bcsub($expend['number_order_charge'], $expend['number_charge']). '元', + bcsub($expend['count_order_charge'], $expend['count_charge']). '笔', ], [ '店铺保证金', @@ -634,7 +633,11 @@ class FinancialRecordRepository extends BaseRepository //商户保证金退回 $financialType = ['auto_margin_refund']; [$data['count_auto_margin_refund'], $data['number_auto_margin_refund']] = $this->dao->getDataByType($type, $where, $date, $financialType); - $number3 = bcsub($data['number_auto_margin'], $data['number_auto_margin_refund'], 3); + $number3 = bcsub($data['number_auto_margin'], $data['number_auto_margin_refund']); + if ($number3>0){ + $data['count_auto_margin'] = bcsub($data['count_auto_margin'], $data['count_auto_margin_refund']); + $data['number_auto_margin'] = $number3; + } //退回佣金 $financialType = ['refund_brokerage_two', 'refund_brokerage_one']; [$data['count_refund_brokerage'], $data['number_refund_brokerage']] = $this->dao->getDataByType($type, $where, $date, $financialType); @@ -645,7 +648,6 @@ class FinancialRecordRepository extends BaseRepository //退回给平台的会员优惠券金额 $financialType = ['refund_svip_coupon']; [$data['count_svipcoupon'], $data['number_svipcoupon']] = $this->dao->getDataByType($type, $where, $date, $financialType); - // if (!empty($financialType1)){ // $financialType2= [explode('_refund',$financialType1[0])[0]]; // halt($financialType1,$financialType2); @@ -654,7 +656,6 @@ class FinancialRecordRepository extends BaseRepository // $data['count_brokerage']+=$data['count_commission2']-$data['count_commission']; // $data['number_brokerage']+=$data['number_commission2']-$data['number_commission']; // } - //佣金 brokerage_one,brokerage_two - 退回佣金 refund_brokerage_two,refund_brokerage_one ) $number = bcsub($data['number_brokerage'], $data['number_refund_brokerage'], 3); //平台手续费 =( order_charge + 预售手续费 presell_charge - 平台退给商户的手续费 refund_charge ) @@ -671,6 +672,11 @@ class FinancialRecordRepository extends BaseRepository $financialType = ['order_true', 'presell_true','auto_margin']; [$data['count_order'], $data['number_order']] = $this->dao->getDataByType($type, $where, $date, $financialType); + $financialType = ['commission_to_entry_merchant']; + [$data['count_merchant'], $data['number_merchant']] = $this->dao->getDataByType($type, $where, $date, $financialType); + $data['count_order']=bcsub($data['count_order'],$data['count_merchant']); + $data['number_order']=bcsub($data['number_order'],$data['number_merchant']); + //付给商户的优惠券抵扣金额 $financialType = ['order_platform_coupon']; [$data['count_coupon'], $data['number_coupon']] = $this->dao->getDataByType($type, $where, $date, $financialType); @@ -682,6 +688,7 @@ class FinancialRecordRepository extends BaseRepository //付给服务团队和其他的佣金 [$data['count_refund'], $data['number_refund']] = $this->dao->getDataByType($type, $where, $date, $refund); [$data['count_commission'], $data['number_commission']] = $this->dao->getDataByType($type, $where, $date, $commission); + $data['count_brokerage']+=$data['count_commission']-$data['count_refund']; $data['number_brokerage']+=$data['number_commission']-$data['number_refund']; diff --git a/crmeb/services/ExcelService.php b/crmeb/services/ExcelService.php index aff04c0d..4e369c1c 100644 --- a/crmeb/services/ExcelService.php +++ b/crmeb/services/ExcelService.php @@ -49,25 +49,25 @@ class ExcelService * @author Qinii * @day 3/17/21 */ - public function export($id, $path, $header, $title, $export = [], $filename = '',$end = [],$suffix = 'xlsx') + public function export($id, $path, $header, $title, $export = [], $filename = '', $end = [], $suffix = 'xlsx') { - try{ + try { $_path = SpreadsheetExcelService::instance() ->createOrActive($id) - ->setExcelHeader($header,count($title['mark']) + 2) + ->setExcelHeader($header, count($title['mark']) + 2) ->setExcelTile($title) ->setExcelContent($export) ->setExcelEnd($end) ->excelSave($filename, $suffix, $path); - app()->make(ExcelRepository::class)->update($id,[ - 'name' => $filename.'.'.$suffix, + app()->make(ExcelRepository::class)->update($id, [ + 'name' => $filename . '.' . $suffix, 'status' => 1, - 'path' => '/'.$_path + 'path' => '/' . $_path ]); - }catch (Exception $exception){ - app()->make(ExcelRepository::class)->update($id,[ - 'name' => $filename.'.'.$suffix, + } catch (Exception $exception) { + app()->make(ExcelRepository::class)->update($id, [ + 'name' => $filename . '.' . $suffix, 'status' => 2, 'message' => $exception->getMessage() ]); @@ -109,7 +109,7 @@ class ExcelService } $filename = '搜索记录_' . date('YmdHis'); $foot = []; - return compact('count','header','title','export','foot','filename'); + return compact('count', 'header', 'title', 'export', 'foot', 'filename'); } /** @@ -119,7 +119,7 @@ class ExcelService * @author Qinii * @day 2020-08-10 */ - public function order(array $where, int $page, int $limit ) + public function order(array $where, int $page, int $limit) { $paytype = [0 => '余额', 1 => '微信', 2 => '小程序', 3 => 'H5', 4 => '支付宝', 5 => '支付宝扫码', 6 => '微信扫码',]; $make = app()->make(StoreOrderRepository::class); @@ -128,7 +128,9 @@ class ExcelService unset($where['status']); $query = $make->search($where, $del)->where($make->getOrderType($status))->with([ 'orderProduct', - 'merchant' => function ($query) {return $query->field('mer_id,mer_name');}, + 'merchant' => function ($query) { + return $query->field('mer_id,mer_name'); + }, 'user', 'spread', ])->order('order_id ASC'); @@ -141,37 +143,37 @@ class ExcelService $product[] = [ $value['cart_info']['product']['store_name'], $value['cart_info']['productAttr']['sku'] ?: '无', - $value['product_num'].' '. $value['unit_name'], + $value['product_num'] . ' ' . $value['unit_name'], $value['cart_info']['productAttr']['price'] ]; } $one = [ - $item['merchant']['mer_name'], - $item['order_sn'], - $item['order_type'] ? '核销订单':'普通订单', - $item['spread']['nickname'] ?? '无', - $item['user']['nickname'] ?? $item['uid'], - $product, - $item['coupon_price'] , - $item['pay_postage'], - $value['product_price'], - $item['refund_price'], - $item['real_name'], - $item['user_phone'], - $item['user_address'] ?: '', - $item['delivery_id'] ?: '', - $item['create_time'], - $paytype[$item['pay_type']], - $item['paid'] ? '已支付':'未支付', - $item['remark'] ?: '', + $item['merchant']['mer_name'], + $item['order_sn'], + $item['order_type'] ? '核销订单' : '普通订单', + $item['spread']['nickname'] ?? '无', + $item['user']['nickname'] ?? $item['uid'], + $product, + $item['coupon_price'], + $item['pay_postage'], + $value['product_price'], + $item['refund_price'], + $item['real_name'], + $item['user_phone'], + $item['user_address'] ?: '', + $item['delivery_id'] ?: '', + $item['create_time'], + $paytype[$item['pay_type']], + $item['paid'] ? '已支付' : '未支付', + $item['remark'] ?: '', ]; $export[] = $one; } - $header = ['商户名称','订单编号','订单类型','推广人','用户信息', '商品名称','商品规格','商品数量','商品价格','优惠','实付邮费(元)','实付金额(元)','已退款金额(元)', '收货人','收货人电话','收货地址','物流/电话','下单时间','支付方式','支付状态','商家备注']; - $filename = '订单列表_'.date('YmdHis'); - $title = ['订单列表','导出时间:'.date('Y-m-d H:i:s',time())]; + $header = ['商户名称', '订单编号', '订单类型', '推广人', '用户信息', '商品名称', '商品规格', '商品数量', '商品价格', '优惠', '实付邮费(元)', '实付金额(元)', '已退款金额(元)', '收货人', '收货人电话', '收货地址', '物流/电话', '下单时间', '支付方式', '支付状态', '商家备注']; + $filename = '订单列表_' . date('YmdHis'); + $title = ['订单列表', '导出时间:' . date('Y-m-d H:i:s', time())]; $foot = ''; - return compact('count','header','title','export','foot','filename'); + return compact('count', 'header', 'title', 'export', 'foot', 'filename'); } /** @@ -181,7 +183,7 @@ class ExcelService * @author Qinii * @day 2020-08-10 */ - public function financial(array $where,int $page,int $limit) + public function financial(array $where, int $page, int $limit) { $_key = [ 'mer_accoubts' => '财务对账', @@ -204,22 +206,22 @@ class ExcelService 'refundOrder' ]); - $header = ['商户名称','交易流水单号','类型','总订单号','订单号/退款单号','用户名','用户ID','交易类型','收入/支出','金额','创建时间']; + $header = ['商户名称', '交易流水单号', '类型', '总订单号', '订单号/退款单号', '用户名', '用户ID', '交易类型', '收入/支出', '金额', '创建时间']; $title = [ '流水列表', - '生成时间:' . date('Y-m-d H:i:s',time()) + '生成时间:' . date('Y-m-d H:i:s', time()) ]; $export = []; $count = $query->count(); - $list = $query->page($page,$limit)->select(); + $list = $query->page($page, $limit)->select(); foreach ($list as $v) { - $wx = (substr($v['order_sn'],0,2) === 'wx'); + $wx = (substr($v['order_sn'], 0, 2) === 'wx'); $export[] = [ $v['merchant']['mer_name'], $v['financial_record_sn'], $wx ? '订单' : '退款单', - $wx ? $v['orderInfo']['groupOrder']['group_order_sn'] : '' , - $wx ? $v['order_sn'] : $v['refundOrder']['refund_order_sn'] , + $wx ? $v['orderInfo']['groupOrder']['group_order_sn'] : '', + $wx ? $v['order_sn'] : $v['refundOrder']['refund_order_sn'], $v['user_info'], $v['user_id'], $_key[$v['financial_type']], @@ -229,9 +231,9 @@ class ExcelService ]; } - $filename = '流水列表_'.date('YmdHis'); - $foot =[]; - return compact('count','header','title','export','foot','filename'); + $filename = '流水列表_' . date('YmdHis'); + $foot = []; + return compact('count', 'header', 'title', 'export', 'foot', 'filename'); } /** @@ -241,31 +243,31 @@ class ExcelService * @author Qinii * @day 3/13/21 */ - public function delivery(array $where,int $page, int $limit) + public function delivery(array $where, int $page, int $limit) { $make = app()->make(StoreOrderRepository::class); $where['order_type'] = 0; $query = $make->search($where)->with(['orderProduct'])->order('order_id ASC'); - $header = ['订单编号','物流公司','物流编码','物流单号', '发货地址','用户信息','手机号','商品信息','支付时间']; + $header = ['订单编号', '物流公司', '物流编码', '物流单号', '发货地址', '用户信息', '手机号', '商品信息', '支付时间']; $title = [ '批量发货单', - '生成时间:' . date('Y-m-d H:i:s',time()), + '生成时间:' . date('Y-m-d H:i:s', time()), ]; - $filename = '批量发货单_'.date('YmdHis'); + $filename = '批量发货单_' . date('YmdHis'); $export = []; $count = $query->count(); - $data = $query->page($page,$limit)->select(); - foreach ($data as $item){ + $data = $query->page($page, $limit)->select(); + foreach ($data as $item) { $product = ''; - foreach ($item['orderProduct'] as $value){ - $product = $product.$value['cart_info']['product']['store_name'].'【'. $value['cart_info']['productAttr']['sku'] .'】【' . $value['product_num'].'】'.PHP_EOL; + foreach ($item['orderProduct'] as $value) { + $product = $product . $value['cart_info']['product']['store_name'] . '【' . $value['cart_info']['productAttr']['sku'] . '】【' . $value['product_num'] . '】' . PHP_EOL; } $export[] = [ $item['order_sn'] ?? '', '', - $item['delivery_name']??"", - $item['delivery_id']??"", - $item['user_address']??"", + $item['delivery_name'] ?? "", + $item['delivery_id'] ?? "", + $item['user_address'] ?? "", $item['real_name'] ?? '', $item['user_phone'] ?? '', $product, @@ -274,7 +276,7 @@ class ExcelService } $foot = []; - return compact('count','header','title','export','foot','filename'); + return compact('count', 'header', 'title', 'export', 'foot', 'filename'); } /** @@ -284,20 +286,20 @@ class ExcelService * @author Qinii * @day 3/17/21 */ - public function importDelivery(array $where,int $page,int $limit) + public function importDelivery(array $where, int $page, int $limit) { $make = app()->make(StoreImportDeliveryRepository::class); $query = $make->getSearch($where)->order('create_time ASC'); $title = [ '发货记录', - '生成时间:' . date('Y-m-d H:i:s',time()) + '生成时间:' . date('Y-m-d H:i:s', time()) ]; - $header = ['订单编号','物流公司','物流单号', '发货状态','备注']; - $filename = '发货单记录_'.date('YmdHis'); + $header = ['订单编号', '物流公司', '物流单号', '发货状态', '备注']; + $filename = '发货单记录_' . date('YmdHis'); $export = []; $count = $query->count(); - $data = $query->page($page,$limit)->select(); - foreach ($data as $item){ + $data = $query->page($page, $limit)->select(); + foreach ($data as $item) { $export[] = [ $item['order_sn'], $item['delivery_name'], @@ -307,7 +309,7 @@ class ExcelService ]; } $foot = []; - return compact('count','header','title','export','foot','filename'); + return compact('count', 'header', 'title', 'export', 'foot', 'filename'); } /** @@ -317,7 +319,7 @@ class ExcelService * @author Qinii * @day 3/25/21 */ - public function exportFinancial(array $where,int $page, int $limit,$merchant=[]) + public function exportFinancial(array $where, int $page, int $limit, $merchant = []) { /* order 收入 公共 新订单 @@ -335,80 +337,91 @@ class ExcelService presell_true 支出 平台 商户入账 */ $financialType = [ - 'order' => '订单支付', - 'presell' => '预售订单(尾款)', + 'order' => '订单支付', + 'presell' => '预售订单(尾款)', 'brokerage_one' => '一级佣金', 'brokerage_two' => '二级佣金', - 'order_charge' => '手续费', - 'order_true' => '商户入账', - 'refund_order' => '退款', + 'order_charge' => '手续费', + 'order_true' => '商户入账', + 'refund_order' => '退款', 'refund_charge' => '返还手续费', - 'refund_true' => '商户返还入账', - 'presell_charge'=> '预售订单(手续费)', - 'presell_true' => '商户入账', + 'refund_true' => '商户返还入账', + 'presell_charge' => '预售订单(手续费)', + 'presell_true' => '商户入账', 'refund_brokerage_one' => '返还一级佣金', 'refund_brokerage_two' => '返还二级佣金', - 'mer_presell' => '预售订单(总额)', - 'order_presell' => '预售订单(定金)', + 'mer_presell' => '预售订单(总额)', + 'order_presell' => '预售订单(定金)', 'refund_platform_coupon' => '退回优惠券补贴', 'order_platform_coupon' => '优惠券补贴', - 'auto_margin'=> '保证金', - 'commission_to_service_team'=>'订单平台佣金', - 'commission_to_platform'=>'订单剩余平台手续费', - 'commission_to_village'=>'订单平台佣金', - 'commission_to_town'=>'订单平台佣金', - 'commission_to_service_team_refun'=>'退回平台佣金', - 'commission_to_platform_refun'=>'退回剩余平台手续费', - 'commission_to_village_refun'=>'退回平台佣金', - 'commission_to_town_refun'=>'退回平台佣金', - 'auto_margin_refun'=>'退回保证金', - 'commission_to_entry_merchant'=>'订单平台佣金', - 'commission_to_cloud_warehouse'=> '订单平台佣金', - 'commission_to_entry_merchant_refund'=> '退回平台佣金', - 'commission_to_cloud_warehouse_refund'=> '退回平台佣金', + 'auto_margin' => '保证金', + 'commission_to_service_team' => '订单平台佣金', + 'commission_to_platform' => '订单剩余平台手续费', + 'commission_to_village' => '订单平台佣金', + 'commission_to_town' => '订单平台佣金', + 'commission_to_service_team_refund' => '退回平台佣金', + 'commission_to_platform_refund' => '退回剩余平台手续费', + 'commission_to_village_refund' => '退回平台佣金', + 'commission_to_town_refund' => '退回平台佣金', + 'auto_margin_refund' => '退回保证金', + 'commission_to_entry_merchant' => '订单平台佣金', + 'commission_to_cloud_warehouse' => '订单平台佣金', + 'commission_to_entry_merchant_refund' => '退回平台佣金', + 'commission_to_cloud_warehouse_refund' => '退回平台佣金', ]; - $sys_pm_1 = ['order','presell','order_charge','order_presell','presell_charge','refund_brokerage_one','refund_brokerage_two','commission_to_platform']; - $mer_pm_1 = ['order','presell','refund_charge','refund_brokerage_one','refund_brokerage_two','mer_presell', - 'order_platform_coupon','commission_to_cloud_warehouse','commission_to_entry_merchant','commission_to_town','commission_to_village','commission_to_service_team']; - $date_ = $where['date'];unset($where['date']); + $sys_pm_1 = ['order', 'presell', 'order_charge', 'order_presell', 'presell_charge', 'refund_brokerage_one', 'refund_brokerage_two', 'commission_to_platform']; + $mer_pm_1 = ['order', 'presell', 'refund_brokerage_one', 'refund_brokerage_two', 'mer_presell', + 'order_platform_coupon', 'commission_to_cloud_warehouse', 'commission_to_entry_merchant', 'commission_to_town', 'commission_to_village', 'commission_to_service_team']; + $date_ = $where['date']; + unset($where['date']); $make = app()->make(FinancialRecordRepository::class); - $query = $make->search($where)->with(['orderInfo','refundOrder','merchant.merchantCategory']); + $query = $make->search($where)->with(['orderInfo', 'refundOrder', 'merchant.merchantCategory']); - if($where['type'] == 1){ + if ($where['type'] == 1) { $title_ = '日账单'; - $start_date = $date_.' 00:00:00'; - $end_date = $date_.' 23:59:59'; - $query->whereDay('create_time',$date_); - }else{ + $start_date = $date_ . ' 00:00:00'; + $end_date = $date_ . ' 23:59:59'; + $query->whereDay('create_time', $date_); + } else { $title_ = '月账单'; $start_date = (date('Y-m-01', strtotime($date_))); $end_date = date('Y-m-d', strtotime("$start_date +1 month -1 day")); - $query->whereMonth('create_time',$date_); + $query->whereMonth('create_time', $date_); } - $income = $make->countIncome($where['type'],$where,$date_,$merchant); - $expend = $make->countExpend($where['type'],$where,$date_,$merchant); + $income = $make->countIncome($where['type'], $where, $date_, $merchant); + $expend = $make->countExpend($where['type'], $where, $date_, $merchant); // $refund = $make->countRefund($where['type'],$where,$date_); - $charge = bcsub($income['number'],$expend['number'],2); - $filename = $title_.'('.$date_.')'.time(); + $charge = bcsub($income['number'], $expend['number'], 2); + $filename = $title_ . '(' . $date_ . ')' . time(); $export = []; $limit = 20; $count = $query->count(); $i = 1; $order_make = app()->make(StoreOrderRepository::class); //平台 - if(!$where['is_mer']){ - $header = ['商户类别','商户分类','商户名称','总订单号','订单编号','交易流水号','交易时间', '对方信息','交易类型','收支金额','备注']; + if (!$where['is_mer']) { + $header = ['商户类别', '商户分类', '商户名称', '总订单号', '订单编号', '交易流水号', '交易时间', '对方信息', '交易类型', '收支金额', '备注']; $list = $query->page($page, $limit)->order('create_time DESC')->select(); foreach ($list as $value) { $order = $order_make->get($value['order_id']); + if ($value['merchant']) { + $export[] = [ + $value['merchant']['is_trader'] ? '自营' : '非自营', + $value['merchant']['merchantCategory']['category_name'] ?? '平台', + $value['merchant']['mer_name'] ?? '平台', + ]; + }else{ + $export[] = [ + '平台', + '平台', + '平台', + ]; + } $export[] = [ - $value['merchant']['is_trader'] ? '自营' : '非自营', - $value['merchant']['merchantCategory']['category_name'] ?? '平台', - $value['merchant']['mer_name'] ?? '平台', $order['groupOrder']['group_order_sn'] ?? '无数据', $value['order_sn'], $value['financial_record_sn'], @@ -420,17 +433,24 @@ class ExcelService ]; } $foot = [ - '合计:平台应入账手续费 '.$charge, - '收入合计: '.'订单支付'.$income['count'].'笔,'.'实际支付金额共:'.$income['number'].'元;', - '支出合计: '.'佣金支出'.$expend['count_brokerage'].'笔,支出金额:'.$expend['number_brokerage'].'元;商户入账支出'.$expend['count_order'].'笔,支出金额:'.$expend['number_order'].'元;退款手续费'.$expend['count_charge'].'笔,支出金额'.$expend['number_charge'].'元;合计支出'.$expend['number'], + '合计:平台应入账手续费 ' . $charge, + '收入合计: ' . '订单支付' . $income['count'] . '笔,' . '实际支付金额共:' . $income['number'] . '元;', + '支出合计: ' . '佣金支出' . $expend['count_brokerage'] . '笔,支出金额:' . $expend['number_brokerage'] . '元;商户入账支出' . $expend['count_order'] . '笔,支出金额:' . $expend['number_order'] . '元;退款手续费' . $expend['count_charge'] . '笔,支出金额' . $expend['number_charge'] . '元;合计支出' . $expend['number'], ]; - //商户 - }else{ - $header = ['序号','总订单号','子订单编号','交易流水号','交易时间', '对方信息','交易类型','收支金额','备注']; + //商户 + } else { + $header = ['序号', '总订单号', '子订单编号', '交易流水号', '交易时间', '对方信息', '交易类型', '收支金额', '备注']; $mer_name = ''; $list = $query->page($page, $limit)->order('create_time DESC')->select(); foreach ($list as $key => $value) { $order = $order_make->get($value['order_id']); + if ($value['financial_type']=='refund_true'){ + $find_number=Db::name('financial_record')->where('order_sn',$value['order_sn']) + ->where('financial_type','auto_margin_refund')->value('number'); + if ($find_number && $find_number>0){ + $value['number']-=$find_number; + } + } $export[] = [ $i, $order['groupOrder']['group_order_sn'] ?? '无数据', @@ -446,25 +466,25 @@ class ExcelService $mer_name = $mer_name ? $mer_name : ($value['merchant']['mer_name'] ?? ''); } $count_brokeage = $expend['count_brokerage'] + $expend['count_refund_brokerage']; - $number_brokeage = bcsub($expend['number_brokerage'],$expend['number_refund_brokerage'],2); - $count_charge = $expend['count_charge']+$expend['count_order_charge']; - $number_charge = bcsub($expend['number_order_charge'],$expend['number_charge'],2); + $number_brokeage = bcsub($expend['number_brokerage'], $expend['number_refund_brokerage'], 2); + $count_charge = $expend['count_charge'] + $expend['count_order_charge']; + $number_charge = bcsub($expend['number_order_charge'], $expend['number_charge'], 2); $foot = [ - '合计:商户应入金额 '.$charge, - '收入合计: '.'订单支付'.$income['count'].'笔,'.'实际支付金额共:'.$income['number'].'元;', - '支出合计: '.'佣金支出'.$count_brokeage.'笔,支出金额:'.$number_brokeage.'元;退款'.$expend['count_refund'].'笔,支出金额:'.$expend['number_refund'].'元;平台手续费'.$count_charge.'笔,支出金额:'.$number_charge.'元;合计支出金额:'.$expend['number'].'元;', + '合计:商户应入金额 ' . $charge, + '收入合计: ' . '订单支付' . $income['count'] . '笔,' . '实际支付金额共:' . $income['number'] . '元;', + '支出合计: ' . '佣金支出' . $count_brokeage . '笔,支出金额:' . $number_brokeage . '元;退款' . $expend['count_refund'] . '笔,支出金额:' . $expend['number_refund'] . '元;平台手续费' . $count_charge . '笔,支出金额:' . $number_charge . '元;合计支出金额:' . $expend['number'] . '元;', //'商户应入金额 '.$charge, ]; - $mer_name = '商户名称:'.$mer_name; + $mer_name = '商户名称:' . $mer_name; } $title = [ $title_, $mer_name ?? '平台', - '结算账期:【' .$start_date.'】至【'.$end_date.'】', - '生成时间:' . date('Y-m-d H:i:s',time()) + '结算账期:【' . $start_date . '】至【' . $end_date . '】', + '生成时间:' . date('Y-m-d H:i:s', time()) ]; - return compact('count','header','title','export','foot','filename'); + return compact('count', 'header', 'title', 'export', 'foot', 'filename'); } /** @@ -474,7 +494,7 @@ class ExcelService * @author Qinii * @day 6/10/21 */ - public function refundOrder(array $where,int $page, int $limit) + public function refundOrder(array $where, int $page, int $limit) { $query = app()->make(StoreRefundOrderRepository::class)->search($where) ->where('is_system_del', 0)->with([ @@ -492,24 +512,24 @@ class ExcelService $title = [ '退款订单', - '生成时间:' . date('Y-m-d H:i:s',time()) + '生成时间:' . date('Y-m-d H:i:s', time()) ]; - $header = ['商户名称','退款单号','申请时间','最新更新时间', '退款金额','退货件量','退货商品信息','退款类型','订单状态','拒绝理由','退货人','退货地址','相关订单号','退货物流公司','退货物流单号','备注']; - $filename = '退款订单'.time(); + $header = ['商户名称', '退款单号', '申请时间', '最新更新时间', '退款金额', '退货件量', '退货商品信息', '退款类型', '订单状态', '拒绝理由', '退货人', '退货地址', '相关订单号', '退货物流公司', '退货物流单号', '备注']; + $filename = '退款订单' . time(); $status = [ 0 => '待审核', 1 => '待退货', 2 => '待收货', 3 => '已退款', - -1=> '审核未通过', + -1 => '审核未通过', ]; - $count= $query->count(); - $data = $query->page($page,$limit)->select()->toArray(); - foreach ($data as $datum){ + $count = $query->count(); + $data = $query->page($page, $limit)->select()->toArray(); + foreach ($data as $datum) { $product = ''; - foreach ($datum['refundProduct'] as $value){ - $product .= '【'.$value['product']['cart_info']['product']['product_id'].'】'.$value['product']['cart_info']['product']['store_name'].'*'.$value['refund_num'].$value['product']['cart_info']['product']['unit_name'].PHP_EOL; + foreach ($datum['refundProduct'] as $value) { + $product .= '【' . $value['product']['cart_info']['product']['product_id'] . '】' . $value['product']['cart_info']['product']['store_name'] . '*' . $value['refund_num'] . $value['product']['cart_info']['product']['unit_name'] . PHP_EOL; } $export[] = [ $datum['merchant']['mer_name'], @@ -519,7 +539,7 @@ class ExcelService $datum['refund_price'], $datum['refund_num'], $product, - ($datum['refund_type'] == 1 ) ? '仅退款' : '退款退货', + ($datum['refund_type'] == 1) ? '仅退款' : '退款退货', $status[$datum['status']], $datum['fail_message'], $datum['order']['real_name'], @@ -532,7 +552,7 @@ class ExcelService } $foot = ''; - return compact('count','header','title','export','foot','filename'); + return compact('count', 'header', 'title', 'export', 'foot', 'filename'); } /** @@ -542,18 +562,18 @@ class ExcelService * @author Qinii * @day 6/10/21 */ - public function integralLog($where,int $page, int $limit) + public function integralLog($where, int $page, int $limit) { $title = [ '积分日志', - '生成时间:' . date('Y-m-d H:i:s',time()) + '生成时间:' . date('Y-m-d H:i:s', time()) ]; - $header = ['用户ID','用户昵称','积分标题','变动积分', '当前积分余额','备注','时间']; - $filename = '积分日志'.time(); + $header = ['用户ID', '用户昵称', '积分标题', '变动积分', '当前积分余额', '备注', '时间']; + $filename = '积分日志' . time(); $export = []; $query = app()->make(UserBillRepository::class)->searchJoin($where)->order('a.create_time DESC'); $count = $query->count(); - $list = $query->page($page,$limit)->select(); + $list = $query->page($page, $limit)->select(); foreach ($list as $item) { $export[] = [ $item['uid'], @@ -566,17 +586,17 @@ class ExcelService ]; } $foot = ''; - return compact('count','header','title','export','foot','filename'); + return compact('count', 'header', 'title', 'export', 'foot', 'filename'); } - public function intention($where,int $page, int $limit) + public function intention($where, int $page, int $limit) { $title = [ '申请列表', - '生成时间:' . date('Y-m-d H:i:s',time()) + '生成时间:' . date('Y-m-d H:i:s', time()) ]; - $header = ['商户姓名','联系方式','备注','店铺名称','店铺分类','时间']; - $filename = '申请列表'.time(); + $header = ['商户姓名', '联系方式', '备注', '店铺名称', '店铺分类', '时间']; + $filename = '申请列表' . time(); $export = []; $query = app()->make(MerchantIntentionRepository::class)->search($where)->with(['merchantCategory', 'merchantType'])->order('a.create_time DESC'); $count = $query->count(); @@ -592,7 +612,7 @@ class ExcelService ]; } $foot = ''; - return compact('count','header','title','export','foot','filename'); + return compact('count', 'header', 'title', 'export', 'foot', 'filename'); } /** @@ -606,29 +626,29 @@ class ExcelService { $title = [ '转账记录', - '生成时间:' . date('Y-m-d H:i:s',time()) + '生成时间:' . date('Y-m-d H:i:s', time()) ]; - $header = ['商户名称','申请时间','转账金额','到账状态','审核状态','拒绝理由','商户余额','转账信息']; - $filename = '转账记录_'.time(); + $header = ['商户名称', '申请时间', '转账金额', '到账状态', '审核状态', '拒绝理由', '商户余额', '转账信息']; + $filename = '转账记录_' . time(); $export = []; $query = app()->make(FinancialRepository::class)->search($where)->with('merchant'); $count = $query->count(); $list = $query->page($page, $limit)->select(); foreach ($list as $item) { if ($item->financial_type == 1) { - $acount = '姓名:'.$item->financial_account->name.PHP_EOL; - $acount .= '银行名称:'.$item->financial_account->bank.PHP_EOL; - $acount .= '银行卡号:'.$item->financial_account->bank_code; + $acount = '姓名:' . $item->financial_account->name . PHP_EOL; + $acount .= '银行名称:' . $item->financial_account->bank . PHP_EOL; + $acount .= '银行卡号:' . $item->financial_account->bank_code; } if ($item->financial_type == 2) { - $acount = '姓名:'.$item->financial_account->name.PHP_EOL; - $acount .= '微信号:'.$item->financial_account->wechat.PHP_EOL; - $acount .= '收款二维码地址:'.$item->financial_account->wechat_code; + $acount = '姓名:' . $item->financial_account->name . PHP_EOL; + $acount .= '微信号:' . $item->financial_account->wechat . PHP_EOL; + $acount .= '收款二维码地址:' . $item->financial_account->wechat_code; } if ($item->financial_type == 3) { - $acount = '姓名:'.$item->financial_account->name.PHP_EOL; - $acount .= '支付宝号:'.$item->financial_account->alipay.PHP_EOL; - $acount .= '收款二维码地址:'.$item->financial_account->alipay_code; + $acount = '姓名:' . $item->financial_account->name . PHP_EOL; + $acount .= '支付宝号:' . $item->financial_account->alipay . PHP_EOL; + $acount .= '收款二维码地址:' . $item->financial_account->alipay_code; } $export[] = [ $item->merchant->mer_name, @@ -642,7 +662,7 @@ class ExcelService ]; } $foot = ''; - return compact('count','header','title','export','foot','filename'); + return compact('count', 'header', 'title', 'export', 'foot', 'filename'); } /** @@ -656,7 +676,7 @@ class ExcelService { $title = [ '提现申请', - '生成时间:' . date('Y-m-d H:i:s',time()) + '生成时间:' . date('Y-m-d H:i:s', time()) ]; $type = [ '银行卡', @@ -664,8 +684,8 @@ class ExcelService '支付宝', '微信零钱', ]; - $header = ['用户名','用户UID','提现金额','余额','审核状态','拒绝理由','提现方式','转账信息']; - $filename = '提现申请_'.time(); + $header = ['用户名', '用户UID', '提现金额', '余额', '审核状态', '拒绝理由', '提现方式', '转账信息']; + $filename = '提现申请_' . time(); $path = 'extract'; $export = []; $query = app()->make(UserExtractRepository::class)->search($where)->order('create_time DESC'); @@ -674,16 +694,16 @@ class ExcelService foreach ($list as $item) { $acount = ''; if ($item->extract_type == 0) { - $acount .= '银行地址:'.$item->bank_address.PHP_EOL; - $acount .= '银行卡号:'.$item->bank_code; + $acount .= '银行地址:' . $item->bank_address . PHP_EOL; + $acount .= '银行卡号:' . $item->bank_code; } if ($item->extract_type == 2) { - $acount .= '微信号:'.$item->wechat.PHP_EOL; - $acount .= '收款二维码地址:'.$item->extract_pic; + $acount .= '微信号:' . $item->wechat . PHP_EOL; + $acount .= '收款二维码地址:' . $item->extract_pic; } if ($item->extract_type == 1) { - $acount .= '支付宝号:'.$item->alipay.PHP_EOL; - $acount .= '收款二维码地址:'.$item->extract_pic; + $acount .= '支付宝号:' . $item->alipay . PHP_EOL; + $acount .= '收款二维码地址:' . $item->extract_pic; } $export[] = [ $item->real_name, @@ -697,7 +717,7 @@ class ExcelService ]; } $foot = ''; - return compact('count','header','title','export','foot','filename'); + return compact('count', 'header', 'title', 'export', 'foot', 'filename'); } /** @@ -711,18 +731,18 @@ class ExcelService { $title = [ '分账明细', - '生成时间:' . date('Y-m-d H:i:s',time()) + '生成时间:' . date('Y-m-d H:i:s', time()) ]; - $header = ['订单编号','商户名称','订单类型','状态','分账时间','订单金额']; - $filename = '分账明细_'.time(); + $header = ['订单编号', '商户名称', '订单类型', '状态', '分账时间', '订单金额']; + $filename = '分账明细_' . time(); $export = []; - $query = app()->make(StoreOrderProfitsharingRepository::class)->search($where)->with('order','merchant')->order('create_time DESC'); + $query = app()->make(StoreOrderProfitsharingRepository::class)->search($where)->with('order', 'merchant')->order('create_time DESC'); $count = $query->count(); $list = $query->page($page, $limit)->select(); foreach ($list as $item) { - $info = '分账金额:'. $item->profitsharing_price.PHP_EOL; - if(isset($item->profitsharing_price) && $item->profitsharing_price > 0) $info .= '退款金额:'. $item->profitsharing_refund.PHP_EOL; - $info .= '分账给商户金额:'. $item->profitsharing_mer_price; + $info = '分账金额:' . $item->profitsharing_price . PHP_EOL; + if (isset($item->profitsharing_price) && $item->profitsharing_price > 0) $info .= '退款金额:' . $item->profitsharing_refund . PHP_EOL; + $info .= '分账给商户金额:' . $item->profitsharing_mer_price; $export[] = [ $item->order->order_sn ?? '', $item->merchant->mer_name, @@ -733,7 +753,7 @@ class ExcelService ]; } $foot = ''; - return compact('count','header','title','export','foot','filename'); + return compact('count', 'header', 'title', 'export', 'foot', 'filename'); } /** @@ -747,10 +767,10 @@ class ExcelService { $title = [ '资金记录', - '生成时间:' . date('Y-m-d H:i:s',time()) + '生成时间:' . date('Y-m-d H:i:s', time()) ]; - $header = ['用户ID','昵称','金额','明细类型','备注','时间']; - $filename = '资金记录_'.time(); + $header = ['用户ID', '昵称', '金额', '明细类型', '备注', '时间']; + $filename = '资金记录_' . time(); $export = []; $query = app()->make(UserBillRepository::class) ->searchJoin($where)->order('a.create_time DESC'); @@ -759,7 +779,7 @@ class ExcelService foreach ($list as $item) { $export[] = [ $item->uid, - $item->user->nickname??'', + $item->user->nickname ?? '', $item->number, $item->title, $item->mark, @@ -768,6 +788,6 @@ class ExcelService } $export = array_reverse($export); $foot = ''; - return compact('count','header','title','export','foot','filename'); + return compact('count', 'header', 'title', 'export', 'foot', 'filename'); } } diff --git a/public/mer.html b/public/mer.html index d89ed2a7..3177535e 100644 --- a/public/mer.html +++ b/public/mer.html @@ -1 +1 @@ -加载中...
\ No newline at end of file +加载中...
\ No newline at end of file diff --git a/public/mer/css/chunk-0fa0e81e.3f2a189e.css b/public/mer/css/chunk-0fa0e81e.3f2a189e.css new file mode 100644 index 00000000..6480e28b --- /dev/null +++ b/public/mer/css/chunk-0fa0e81e.3f2a189e.css @@ -0,0 +1 @@ +.selWidth[data-v-6f36b31e]{width:300px}.el-dropdown-link[data-v-6f36b31e]{cursor:pointer;color:#409eff;font-size:12px}.el-icon-arrow-down[data-v-6f36b31e]{font-size:12px}.tabBox_tit[data-v-6f36b31e]{width:60%;font-size:12px!important;margin:0 2px 0 10px;letter-spacing:1px;padding:5px 0;-webkit-box-sizing:border-box;box-sizing:border-box}.el-menu-item[data-v-6f36b31e]{font-weight:700;color:#333}[data-v-6f36b31e] .el-dialog__header{text-align:left}.el-col[data-v-6f36b31e]{position:relative}.el-col .el-divider--vertical[data-v-6f36b31e]{position:absolute;height:100%;right:0;top:0;margin:0}.grid-content[data-v-6f36b31e]{padding:0 15px;display:block}.grid-content .color_gray[data-v-6f36b31e],.grid-content .color_red[data-v-6f36b31e],.grid-content .title[data-v-6f36b31e]{display:block;line-height:20px}.grid-content .color_red[data-v-6f36b31e]{color:red;font-weight:700}.grid-content .color_gray[data-v-6f36b31e]{color:#333;font-weight:700}.grid-content .count[data-v-6f36b31e]{font-size:12px}.grid-content .list[data-v-6f36b31e]{margin-top:20px}.grid-content .list .item[data-v-6f36b31e]{overflow:hidden;margin-bottom:10px}.grid-content .list .cost[data-v-6f36b31e],.grid-content .list .name[data-v-6f36b31e]{line-height:20px}.grid-content .list .cost[data-v-6f36b31e]{text-align:right}.grid-content .list .cost span[data-v-6f36b31e]{display:block}.grid-content .list .cost_count[data-v-6f36b31e],.grid-content .list .name[data-v-6f36b31e]{font-size:12px}.grid-content .list .cost_count[data-v-6f36b31e]{margin-top:10px}.grid-content .list .cost_num[data-v-6f36b31e]{font-weight:700;color:#333} \ No newline at end of file diff --git a/public/mer/css/chunk-82bee4a8.4e2f1042.css b/public/mer/css/chunk-82bee4a8.4e2f1042.css new file mode 100644 index 00000000..af6ee7f1 --- /dev/null +++ b/public/mer/css/chunk-82bee4a8.4e2f1042.css @@ -0,0 +1 @@ +.empty-box[data-v-651c0c53]{height:150px}.mobile-page[data-v-651c0c53]{position:relative;width:auto}.mobile-page .banner[data-v-651c0c53]{width:100%;height:150px;margin-top:0}.mobile-page .banner.on[data-v-651c0c53]{margin-top:-150px}.mobile-page .banner img[data-v-651c0c53]{width:100%;height:100%;border-radius:10px}.mobile-page .banner img.doc[data-v-651c0c53]{border-radius:0}.mobile-page .bg[data-v-651c0c53]{width:100%;height:150px;background:-webkit-gradient(linear,left top,right top,from(#f62c2c),to(#f96e29));background:linear-gradient(90deg,#f62c2c,#f96e29)}.dot[data-v-651c0c53]{position:absolute;left:0;bottom:20px;width:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.dot.number[data-v-651c0c53]{bottom:4px}.dot .num[data-v-651c0c53]{width:25px;height:18px;line-height:18px;background-color:#000;color:#fff;opacity:.3;border-radius:8px;font-size:12px;text-align:center}.dot .dot-item[data-v-651c0c53]{width:5px;height:5px;background:#aaa;border-radius:50%;margin:0 3px}.dot.line-dot[data-v-651c0c53]{bottom:20px}.dot.line-dot .line_dot-item[data-v-651c0c53]{width:8px;height:2px;background:#aaa;margin:0 3px}.bargainOn .list-wrapper[data-v-97b6085c],.bargainOn[data-v-97b6085c]{border-radius:0!important}.line1[data-v-97b6085c]{white-space:nowrap;word-break:break-all;overflow:hidden;text-overflow:ellipsis}.home_bargain[data-v-97b6085c]{width:100%;padding:0 10px;border-radius:10px}.home_bargain .bargin_count[data-v-97b6085c]{border-radius:10px}.home_bargain .title-bar[data-v-97b6085c]{border-radius:10px 10px 0 0;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;padding:0 10px}.home_bargain .title-bar .title-left[data-v-97b6085c],.home_bargain .title-bar[data-v-97b6085c]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.home_bargain .title-bar .title-left[data-v-97b6085c]{width:300px}.home_bargain .title-bar img[data-v-97b6085c]{width:60px;height:15px}.home_bargain .title-bar .right[data-v-97b6085c]{font-size:12px;color:#282828;width:50px}.home_bargain .title-bar .right span[data-v-97b6085c]{font-size:8px;display:inline-block}.home_bargain .title-bar .avatar-wrapper[data-v-97b6085c]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-left:14px}.home_bargain .title-bar .avatar-wrapper img[data-v-97b6085c]{width:15px;height:15px;margin-left:-5px;border:1px solid #fff;border-radius:50%}.home_bargain .title-bar .num[data-v-97b6085c]{margin-left:3px;color:#999;font-size:13px}.home_bargain .list-wrapper[data-v-97b6085c]{display:-webkit-box;display:-ms-flexbox;display:flex;width:100%;padding:0 10px 10px;border-radius:0 0 10px 10px}.home_bargain .list-wrapper .item[data-v-97b6085c]{-ms-flex-negative:0;flex-shrink:0;width:110px;border-radius:8px 8px 0 0;overflow:hidden;margin:0 10px 10px 0;-webkit-box-shadow:0 1px 10px rgba(0,0,0,.08);box-shadow:0 1px 10px rgba(0,0,0,.08);border-radius:0 0 8px 8px}.home_bargain .list-wrapper .item .empty-box[data-v-97b6085c]{border-radius:6px 6px 0 0!important}.home_bargain .list-wrapper .item .img-box[data-v-97b6085c]{width:100%;height:105px;position:relative}.home_bargain .list-wrapper .item .img-box .box[data-v-97b6085c],.home_bargain .list-wrapper .item .img-box img[data-v-97b6085c]{width:100%;height:100%}.home_bargain .list-wrapper .item .img-box .box-num[data-v-97b6085c]{padding:2px 6px;border-radius:8px;background:rgba(0,0,0,.35);color:#fff;text-align:center;position:absolute;top:5px;left:5px;font-size:11px}.home_bargain .list-wrapper .item .con-box[data-v-97b6085c]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center;background:#fff}.home_bargain .list-wrapper .item .con-box .con-desc[data-v-97b6085c]{padding:5px 6px 0}.home_bargain .list-wrapper .item .con-box .title[data-v-97b6085c]{font-size:13px;color:#333;line-height:16px}.home_bargain .list-wrapper .item .con-box .price[data-v-97b6085c]{display:-webkit-box;display:-ms-flexbox;display:flex;color:#e93323;width:100%;margin-top:2px}.home_bargain .list-wrapper .item .con-box .price p[data-v-97b6085c]{font-size:10px;margin:0;padding:0}.home_bargain .list-wrapper .item .con-box .price p .price-label[data-v-97b6085c]{font-size:12px;font-weight:700}.home_bargain .list-wrapper .item .con-box .price .price-name[data-v-97b6085c]{font-size:11px;display:inline-block;width:45px;height:17px;text-align:center;line-height:16px;background:#ffeae5;border-radius:2px;color:#e93323;font-weight:700}.home_bargain .list-wrapper .item .con-box .btn[data-v-97b6085c]{width:93px;height:26px;line-height:26px;background:-webkit-gradient(linear,left top,right top,from(red),to(#ff5400));background:linear-gradient(90deg,red,#ff5400);text-align:center;color:#fff;font-size:12px;border-radius:0 0 8px 8px;margin-top:6px}.home_bargain .list-wrapper.colum0[data-v-97b6085c]{overflow:hidden}.home_bargain .list-wrapper.colum0 .item[data-v-97b6085c]{margin-bottom:0}.home_bargain .list-wrapper.colum1[data-v-97b6085c]{-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.home_bargain .list-wrapper.colum1 .item[data-v-97b6085c]{width:31.3%}.home_bargain .list-wrapper.colum1 .item[data-v-97b6085c]:nth-child(3n){margin-right:0!important}.home_bargain .list-wrapper.colum1 .item .img-box[data-v-97b6085c]{width:100%}.home_bargain .list-wrapper.colum1 .btn[data-v-97b6085c]{border-radius:12px!important;width:93px!important;margin-bottom:5px}.home_bargain .list-wrapper.colum2[data-v-97b6085c]{overflow:hidden;display:block}.home_bargain .list-wrapper.colum2 .item[data-v-97b6085c]{position:relative;background-size:cover;border-radius:6px;width:166px;padding:11px 11px 15px;margin-right:0}.home_bargain .list-wrapper.colum2 .item[data-v-97b6085c]:first-child,.home_bargain .list-wrapper.colum2 .item[data-v-97b6085c]:nth-child(3){margin-bottom:0}.home_bargain .list-wrapper.colum2 .item .img-box[data-v-97b6085c]{position:absolute}.home_bargain .list-wrapper.colum2 .item .box-btn[data-v-97b6085c]{display:block;margin-top:3px;color:#fff;font-size:12px;font-weight:700;width:55px;line-height:16px;text-align:center;border-radius:8px}.home_bargain .list-wrapper.colum2 .item .box-btn span[data-v-97b6085c]{font-size:8px}.home_bargain .list-wrapper.colum2 .item .info[data-v-97b6085c]{background:transparent}.home_bargain .list-wrapper.colum2 .item .info .title[data-v-97b6085c]{font-size:15px;color:#333;font-weight:700;line-height:17px}.home_bargain .list-wrapper.colum2 .item .info .price[data-v-97b6085c]{display:block;font-size:15px;font-weight:700;margin-top:4px;color:#e93323}.home_bargain .list-wrapper.colum2 .item[data-v-97b6085c]:first-child{height:190px;float:left;background-image:url(../../mer/img/c_presell_bg0.1337ae44.png)}.home_bargain .list-wrapper.colum2 .item:first-child .img-box[data-v-97b6085c]{width:80px;height:80px;right:13px;bottom:8px}.home_bargain .list-wrapper.colum2 .item:first-child .box-btn[data-v-97b6085c]{background:-webkit-gradient(linear,left top,right top,from(#fd5d48),to(#f63724));background:linear-gradient(90deg,#fd5d48,#f63724)}.home_bargain .list-wrapper.colum2 .item[data-v-97b6085c]:nth-child(2),.home_bargain .list-wrapper.colum2 .item[data-v-97b6085c]:nth-child(3){float:right;height:90px;margin-right:0}.home_bargain .list-wrapper.colum2 .item:nth-child(2) .img-box[data-v-97b6085c],.home_bargain .list-wrapper.colum2 .item:nth-child(3) .img-box[data-v-97b6085c]{width:60px;height:60px;right:5px;bottom:5px}.home_bargain .list-wrapper.colum2 .item:nth-child(2) .title[data-v-97b6085c],.home_bargain .list-wrapper.colum2 .item:nth-child(3) .title[data-v-97b6085c]{width:75px}.home_bargain .list-wrapper.colum2 .item[data-v-97b6085c]:nth-child(2){background-image:url(../../mer/img/c_presell_bg2.ec584069.png)}.home_bargain .list-wrapper.colum2 .item:nth-child(2) .box-btn[data-v-97b6085c]{background:-webkit-gradient(linear,left top,right top,from(#fdca1a),to(#f7b21f));background:linear-gradient(90deg,#fdca1a,#f7b21f)}.home_bargain .list-wrapper.colum2 .item:nth-child(2) .price[data-v-97b6085c]{color:#f4ab0b}.home_bargain .list-wrapper.colum2 .item[data-v-97b6085c]:nth-child(3){margin-top:10px;background-image:url(../../mer/img/c_presell_bg1.c37de1f0.png)}.home_bargain .list-wrapper.colum2 .item:nth-child(3) .box-btn[data-v-97b6085c]{background:-webkit-gradient(linear,left top,right top,from(#ffb052),to(#fe961a));background:linear-gradient(90deg,#ffb052,#fe961a)}.home_bargain .list-wrapper.colum2 .item:nth-child(3) .price[data-v-97b6085c]{color:#fd8a00}.couponOn[data-v-b381d028]{border-radius:10px}.home_coupon[data-v-b381d028]{background:#fff}.home_coupon .title-wrapper[data-v-b381d028]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;padding:10px 13px;border-radius:10px 10px 0 0}.home_coupon .title-wrapper span[data-v-b381d028]{font-size:12px}.home_coupon .title-wrapper .right[data-v-b381d028]{color:#999;font-size:12px}.home_coupon .title-wrapper .right span[data-v-b381d028]{font-size:8px}.coupon[data-v-b381d028]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:5px 0 15px 10px;overflow:hidden}.coupon .item0[data-v-b381d028]{margin-right:14px;width:130px;height:97px;position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;-webkit-box-align:end;-ms-flex-align:end;align-items:end}.coupon .item0 .top[data-v-b381d028]{text-align:center;position:absolute;top:0;left:5px;width:120px;height:62px;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAPAAAAB8CAYAAABXJz0xAAAAAXNSR0IArs4c6QAACZhJREFUeF7t3E2MXXUZx/Hn97+dO+dep+WtCBTaYgVqy4sKEsEYpbogLNQY3WjUjQsXRheQGDe60I0hkYUvCxduNJGFIQY3viQCGrU1vEgqBQQsxdYiFkvpjPfemc49j/k3UyxjO733zjP332m/k/wziznn95z7uf3lzJxzbmUBX51O5ypJd7j7bZK2m9nVZnaFmVUB8UQgsNoFemb2spntc/enJe1y90fa7faB5b4wjRpw9OjR9c1m83N1XX9K0ntGzWE/BM5XAXd/LKV0/9zc3I/WrVv36igOQxfY3Td0u92vppQ+7+7tUYayDwII/E9AUqeu6x+2Wq1vSTo4jM3ABXb3yV6v9xUzy2tqmCFsiwACAwnMmNm9VVXdK2l2kD0GKnCv19vq7g+Y2fWDhLINAgiMLiDpKTP7ZFVVfz1TyhkL3Ol08t+4PzCztWcK4+cIIBAmMO3uX2i32/cvlbhkgTudzt2Svh12SAQhgMBQAu5+T7vdvu90O522wJR3KGc2RmDFBJYq8SkLvPBr809W7IgIRgCBoQTc/dOn+nX6/wq8cMHqUf7mHcqXjRFYaYFpSbcuvrD1pgLnW0Wzs7OPufsNK3005COAwNACe6qquuXkW0xvKnC32/2amX1j6Fh2QACBcQl8vdVqffPEsDcKnJ+w6vV6+b4TD2mM661gDgLDC8xUVbX1xBNbbxS40+l8R9KXhs9jDwQQGKeAu3+33W5/Oc88XuCFDya8xLPN43wbmIXAaAL52em5ubnN+QMQxwvc6/Xudnce2BjNk70QGLuApHuqqrrveIE7nc6jfCRw7O8BAxEYWSB/FLHdbt+qhQ/j7x85iR0RQKCIgLtvVLfb/YyZ/bjIETAUAQSWI/DZfAb+nqQvLieFfRFAYPwC7v79fAZ+yMx2jH88ExFAYJkCD+cC7zWzty0ziN0RQGD8Ai/mAnf53yPHL89EBAIEernAHhBEBAIIFBCgwAXQGYlAlAAFjpIkB4ECAhS4ADojEYgSoMBRkuQgUECAAhdAZyQCUQIUOEqSHAQKCFDgAuiMRCBKgAJHSZKDQAEBClwAnZEIRAlQ4ChJchAoIECBC6AzEoEoAQocJUkOAgUEKHABdEYiECVAgaMkyUGggAAFLoDOSASiBChwlCQ5CBQQoMAF0BmJQJQABY6SJAeBAgIUuAA6IxGIEqDAUZLkIFBAgAIXQGckAlECFDhKkhwECghQ4ALojEQgSoACR0mSg0ABAQpcAJ2RCEQJUOAoSXIQKCBAgQugMxKBKAEKHCVJDgIFBChwAXRGIhAlQIGjJMlBoIAABS6AzkgEogQocJQkOQgUEKDABdAZiUCUAAWOkiQHgQICFLgAOiMRiBKgwFGS5CBQQIACF0BnJAJRAhQ4SpIcBAoIUOAC6IxEIEqAAkdJkoNAAQEKXACdkQhECVDgKElyECggQIELoDMSgSgBChwlSQ4CBQQocAF0RiIQJUCBoyTJQaCAAAUugM5IBKIEKHCUJDkIFBCgwAXQGYlAlAAFjpIkB4ECAhS4ADojEYgSoMBRkuQgUECAAhdAZyQCUQIUOEqSHAQKCFDgAuiMRCBKgAJHSZKDQAEBClwAnZEIRAlQ4ChJchAoIECBC6AzEoEoAQocJUkOAgUEKHABdEYiECVAgaMkyUGggAAFLoDOSASiBChwlCQ5CBQQoMAF0BmJQJQABY6SJAeBAgIUuAA6IxGIEqDAUZLkIFBAgAIXQGckAlECFDhKkhwECghQ4ALojEQgSoACR0mSg0ABAQpcAJ2RCEQJUOAoSXIQKCBAgQugMxKBKAEKHCVJDgIFBChwAXRGIhAlQIGjJMlBoIAABS6AzkgEogQocJQkOQgUEKDABdAZiUCUAAWOkiQHgQICFLgAOiMRWK6ApN3u/lPNzs5uq+v6E5I+7u43LzeY/RFAYGUEJD3h7j9LKT0wOTn5TJ6ik0cdOXJkS7PZ/Jikj5rZ+81szcocCqkIIDCAwLy7/yGl9KCZPVhV1d7F+7ypwCf/0N0v6vV6d5nZR8zsTjO7aICBbIIAAssTeM3dfy3p51VV/ULSa0vFnbbAi8rc6Ha7t0m6y93vlHTL4rP38o6ZvRE4rwUeM7Nfmdkvd+3atWvHjh3zg2oMVODFYe6+vtvtflhSPjPvMLOrBx3IdgggYPvM7OF8pu33+79Zu3btoVFNRirw4mG9Xu+afr9/R0rpQ2b2ATO7ctQDYj8EzkGBf5jZ78zsIUmPVFX1QtRrDCnwKQp9rbvni2AfNLP3mdm1UQdMDgJnu4Ck5939j2b2W0m/r6rq+ZU65hUp8OKDnZmZuTyldHte7n67pJvdvb1SL4pcBMYlIKnj7k9I2lnX9c5Wq7VT0j/HNn9cgxZdFJvodDo3NRqNW939vWZ2i6Rt7s5tqxJvCDMHFcgXl56p6/rxRqPxp36//2i73d4t6digAdHbjeUMPMhB5zNyt9t9V0rp3e6eC/1Od7/ezCYH2Z9tEAgWmJW0R9KT+Qxb1/WfW63Wk/mMGzxnWXFnTYFP9Sr27NnT3Lx58zsajcaNkm4ysxvd/QYz27isV83OCJwk4O77JT0l6S/uvjultLvZbD5b8sw66Bt0Vhf4dC/C3S+Yn5/fnpek7e6+zcy2LtzOSoO+eLY7rwRqM9sn6Vkze7bf7z8t6elWq5W/v75aJVZlgZcodjU3N5dvaV0n6bqFq99vN7NruLW1Wv+JDnXcbmYHzexvZpZv1TyfUnrOzJ5rNpsvSOoNlbYKNj6nCryUt7vncm+Zn5/f0mg0rq7rektKaXNd15slbTKzS1fB+8Uhmh1y97+b2UsppfxAxIv9fn/fmjVr9jabzb3nYkmXetPPmwKf6V/+wYMH21NTUxsnJiauMrMT60pJG9z9CjPL63IzmzhTFj8fSeCYu79iZi+nlA66ez6T5gcgDuQl6cDhw4f3b9iw4ay6iDTSKw3ciQIPgenump6evmRycvKyuq4vc/e3ppQudfd89s7f10u6RNLF7n6xmeX1liFGnEub/sfMDks67O55/VvSq2Z2SNKhuq7z93+llF5pNpu5uPnn+VdgvoYQoMBDYI2yab6SvmnTpgsnJiYu7Pf7F6SU1uVV1/U6d18racrMptx9SlJ+uKWdv7t7y8yqvPKv/5Ly7bTmwppw9wlJ+b55Xo2T1uku4uWLOP0TS9J8XdfzC1da833MubzcPd8+yX8rHl+Suu6ez3r5gYWOpBkzm3H3GUnTKaWjdV0fX41G4/Vjx44dmZqaOiIp5/G1wgL/BZoCsu7SVXPwAAAAAElFTkSuQmCC);background-size:100% 100%}.coupon .item0 .top .num[data-v-b381d028]{margin:8px 0 2px;font-size:26px;font-weight:700}.coupon .item0 .top .num span[data-v-b381d028]{font-weight:400;font-size:14px}.coupon .item0 .top .txt[data-v-b381d028]{font-size:12px}.coupon .item0 .coupon-btn[data-v-b381d028]{width:130px;height:80px;text-align:center;font-size:14px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:end;-ms-flex-align:end;align-items:end;justify-items:center;border-radius:12px}.coupon .item0 .coupon-btn span[data-v-b381d028]{display:inline-block;color:#fff;width:100%;padding-bottom:10px}.coupon .item0.gary .coupon-btn[data-v-b381d028]{background:#bbb}.coupon .item0.gary .top[data-v-b381d028]{color:#bbb}.coupon .item1[data-v-b381d028]{-ms-flex-negative:0;flex-shrink:0;position:relative;width:122px;height:64px;color:#fff;border-radius:10px 7px 7px 10px;margin-right:12px}.coupon .item1[data-v-b381d028]:before{position:absolute;content:"";width:10px;height:10px;border-radius:50%;background-color:#fff;left:-4px;top:26px}.coupon .item1 .left[data-v-b381d028]{float:left;width:98px;height:64px;background-color:#f7f7f7;border-radius:7px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.coupon .item1 .left .num[data-v-b381d028]{font-size:24px;font-weight:700}.coupon .item1 .left .num span[data-v-b381d028],.coupon .item1 .left .txt[data-v-b381d028]{font-size:12px}.coupon .item1 .right[data-v-b381d028]{float:right;width:23px;height:64px;border-radius:7px;position:relative;right:0;top:0;z-index:0;-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;font-size:12px}.coupon .item1.gary[data-v-b381d028]{background:#d8d8d8}.coupon .item1.gary .left[data-v-b381d028]{background:#f7f7f7}.itemOn .empty-box[data-v-7f3ae610],.itemOn[data-v-7f3ae610],.itemOn img[data-v-7f3ae610]{border-radius:0!important}.itemOn .img-box .label[data-v-7f3ae610]{border-radius:0 0 8px 0!important}.pageOn[data-v-7f3ae610]{border-radius:8px!important}.line2[data-v-7f3ae610]{overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2}.listBig[data-v-7f3ae610]{width:100%;padding:10px 0 10px 0}.listBig .itemBig[data-v-7f3ae610]{width:100%;margin-bottom:15px;border-radius:10px}.listBig .itemBig .img-box[data-v-7f3ae610]{width:100%;height:160px;position:relative;border-radius:50px}.listBig .itemBig .img-box img[data-v-7f3ae610]{width:100%;height:160px;border-radius:10px}.listBig .itemBig .img-box .empty-box[data-v-7f3ae610]{border-radius:8px 8px 0 0}.listBig .itemBig .img-box .label[data-v-7f3ae610]{position:absolute;top:0;left:0;width:59px;height:25px;line-height:25px;text-align:center;color:#fff;font-size:12px;border-radius:8px 0 8px 0}.listBig .itemBig .name[data-v-7f3ae610]{font-size:15px;font-weight:700;margin-top:8px;padding:0 10px}.listBig .itemBig .coupon[data-v-7f3ae610]{width:16px;height:18px;line-height:18px;text-align:center;font-size:12px;margin-right:5px;display:inline-block}.listBig .itemBig .price[data-v-7f3ae610]{font-weight:700;font-size:12px;padding:0 10px;margin-top:10px}.listBig .itemBig .price .num[data-v-7f3ae610]{font-size:18px;margin-right:5px}.listBig .itemBig .price .old-price[data-v-7f3ae610]{color:#aaa!important;font-weight:400;text-decoration:line-through}.paddingBox[data-v-7f3ae610]{padding-bottom:0}.home_product .hd_nav[data-v-7f3ae610]{display:-webkit-box;display:-ms-flexbox;display:flex;height:65px;padding:0 5px}.home_product .hd_nav .item[data-v-7f3ae610]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:25%}.home_product .hd_nav .item .title[data-v-7f3ae610]{font-size:16px;color:#282828}.home_product .hd_nav .item .label[data-v-7f3ae610]{width:62px;height:18px;line-height:18px;text-align:center;background:transparent;border-radius:8px;color:#999;font-size:12px}.home_product .hd_nav .item .label.active .title[data-v-7f3ae610]{color:#f44}.home_product .hd_nav .item .label.active .label[data-v-7f3ae610]{color:#fff;background:-webkit-gradient(linear,right top,left top,from(#ff5400),to(red));background:linear-gradient(270deg,#ff5400,red)}.home_product .list-wrapper[data-v-7f3ae610]{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;padding-top:10px}.home_product .list-wrapper .item[data-v-7f3ae610]{width:48.5%;margin-bottom:10px;border-radius:10px}.home_product .list-wrapper .item .img-box[data-v-7f3ae610]{position:relative;width:100%;height:173px}.home_product .list-wrapper .item .img-box .box[data-v-7f3ae610],.home_product .list-wrapper .item .img-box img[data-v-7f3ae610]{width:100%;height:100%;border-radius:10px 0 0 10px}.home_product .list-wrapper .item .img-box .empty-box[data-v-7f3ae610]{background:#f3f5f7;border-radius:10px}.home_product .list-wrapper .item .img-box .box[data-v-7f3ae610]{background:#d8d8d8}.home_product .list-wrapper .item .info[data-v-7f3ae610]{padding:15px 10px;overflow:hidden}.home_product .list-wrapper .item .info .title[data-v-7f3ae610]{font-size:14px;color:#282828;height:28px}.home_product .list-wrapper .item .info .text[data-v-7f3ae610]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-top:10px}.home_product .list-wrapper .item .info .label[data-v-7f3ae610]{padding:0 5px;border-radius:2px;color:#fff;font-size:10px;text-align:center;line-height:15px}.home_product .list-wrapper .item .info .coupon[data-v-7f3ae610],.home_product .list-wrapper .item .info .ship[data-v-7f3ae610]{padding:0 5px;line-height:13px;border-radius:2px;font-size:10px;margin-left:3px}.home_product .list-wrapper .item .info .ship[data-v-7f3ae610]{color:#ff9000;border:1px solid #ff9000}.home_product .list-wrapper .item .info .old-price[data-v-7f3ae610]{color:#aaa;font-size:13px;text-decoration:line-through;margin-left:3px}.home_product .list-wrapper .item .info .price[data-v-7f3ae610]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.home_product .list-wrapper .item .info .price .num[data-v-7f3ae610],.home_product .list-wrapper .item .info .price .num span[data-v-7f3ae610]{font-size:14px}.home_product .list-wrapper .item .info .price .label[data-v-7f3ae610]{width:16px;height:18px;margin-left:5px;text-align:center;line-height:18px;font-size:11px}.home_product .list-wrapper .item .info .price .label.on[data-v-7f3ae610]{margin-left:0}.home_product .list-wrapper.itemA .item[data-v-7f3ae610]{display:-webkit-box;display:-ms-flexbox;display:flex;width:100%}.home_product .list-wrapper.itemA .item .img-box[data-v-7f3ae610]{position:relative;width:110px;height:110px}.home_product .list-wrapper.itemA .item .img-box .box[data-v-7f3ae610],.home_product .list-wrapper.itemA .item .img-box .empty-box[data-v-7f3ae610],.home_product .list-wrapper.itemA .item .img-box img[data-v-7f3ae610]{border-radius:10px}.home_product .list-wrapper.itemA .item .info[data-v-7f3ae610]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-flex:1;-ms-flex:1;flex:1;margin-left:5px;padding:5px 10px}.home_product .list-wrapper.itemA .item .info .num[data-v-7f3ae610]{font-weight:700}.home_product .list-wrapper.itemB[data-v-7f3ae610]{-webkit-box-pack:inherit;-ms-flex-pack:inherit;justify-content:inherit}.home_product .list-wrapper.itemB .item[data-v-7f3ae610]{width:31.6%;margin-right:8px}.home_product .list-wrapper.itemB .item[data-v-7f3ae610]:nth-child(3n){margin-right:0}.home_product .list-wrapper.itemB .item .img-box[data-v-7f3ae610]{position:relative;width:100%;height:110px}.home_product .list-wrapper.itemB .item .img-box .box[data-v-7f3ae610],.home_product .list-wrapper.itemB .item .img-box .empty-box[data-v-7f3ae610],.home_product .list-wrapper.itemB .item .img-box img[data-v-7f3ae610]{border-radius:10px 10px 0 0}.home_product .list-wrapper.itemC .item[data-v-7f3ae610]{background-color:#fff}.home_product .list-wrapper.itemC .item .box[data-v-7f3ae610],.home_product .list-wrapper.itemC .item .empty-box[data-v-7f3ae610],.home_product .list-wrapper.itemC .item img[data-v-7f3ae610]{border-radius:10px 10px 0 0}.home_product .list-wrapper.itemC .item .price[data-v-7f3ae610]{margin-top:10px}.home-hot[data-v-91fd3b52]{padding:5px 0;margin:0 10px;background:#ffe5e3;border-radius:12px}.home-hot .hd[data-v-91fd3b52]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.home-hot .hd .txt[data-v-91fd3b52]{margin-right:10px;color:#fc3c3e;font-size:16px;font-weight:700}.home-hot .hd .color-txt[data-v-91fd3b52]{width:110px;height:18px;border-radius:13px 0 13px 0;color:#fff;text-align:center;font-size:11px;-webkit-box-shadow:3px 1px 1px 1px rgba(255,203,199,.8);box-shadow:3px 1px 1px 1px rgba(255,203,199,.8)}.home-hot .bd[data-v-91fd3b52]{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.home-hot .bd .item[data-v-91fd3b52]{display:-webkit-box;display:-ms-flexbox;display:flex;width:49%;margin-right:2%;padding:10px;height:78px;background:#fff;border-radius:8px;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.home-hot .bd .item[data-v-91fd3b52]:nth-child(2n){margin-right:0}.home-hot .bd .item:first-child .des[data-v-91fd3b52]{color:#8fbbe8}.home-hot .bd .item:nth-child(2) .des[data-v-91fd3b52]{color:#d797b7}.home-hot .bd .item[data-v-91fd3b52]:nth-child(3){margin-top:10px}.home-hot .bd .item:nth-child(3) .des[data-v-91fd3b52]{color:#c49bd1}.home-hot .bd .item[data-v-91fd3b52]:nth-child(4){margin-top:10px}.home-hot .bd .item:nth-child(4) .des[data-v-91fd3b52]{color:#a3bf95}.home-hot .bd .item .left[data-v-91fd3b52]{width:75px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.home-hot .bd .item .left .title[data-v-91fd3b52]{font-size:14px;font-weight:700}.home-hot .bd .item .left .des[data-v-91fd3b52]{font-size:10px;margin-top:5px}.home-hot .bd .item .left .link[data-v-91fd3b52]{width:56px;height:18px;padding:0 10px;margin-top:3px;background:-webkit-gradient(linear,left top,right top,from(#4bc4ff),to(#207eff));background:linear-gradient(90deg,#4bc4ff,#207eff 100%);border-radius:9px;color:#fff;font-size:13px}.home-hot .bd .item .img-box[data-v-91fd3b52]{width:60px;height:60px}.home-hot .bd .item .img-box img[data-v-91fd3b52]{width:100%;height:100%}.home-hot .bd .item .img-box .box[data-v-91fd3b52]{width:100%;height:100%;background:#d8d8d8}.home-hot .bd .item.one_item[data-v-91fd3b52]{width:23.5%;height:110px;margin-right:2%;display:block;margin-top:0}.home-hot .bd .item.one_item[data-v-91fd3b52]:nth-child(4n){margin-right:0}.home-hot .bd .item.one_item .left[data-v-91fd3b52]{display:block;width:100%}.home-hot .bd .item.one_item .left .des[data-v-91fd3b52]{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.home-hot .bd .item.one_item .img-box[data-v-91fd3b52]{width:50px;height:50px;display:block;margin:8px auto 0}.pageOn[data-v-ab92431c]{border-radius:10px!important}.list_menu[data-v-ab92431c]{padding:0 12px 12px;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.list_menu .item[data-v-ab92431c]{margin-top:12px;font-size:11px;color:#282828;text-align:center;width:33.3333%}.list_menu .item.four[data-v-ab92431c]{width:25%}.list_menu .item.five[data-v-ab92431c]{width:20%}.list_menu .item .img-box[data-v-ab92431c]{width:50px;height:50px;margin:0 auto 5px auto}.list_menu .item .img-box.on .empty-box[data-v-ab92431c],.list_menu .item .img-box.on[data-v-ab92431c],.list_menu .item .img-box.on img[data-v-ab92431c]{border-radius:50%}.list_menu .item .img-box img[data-v-ab92431c]{width:100%;height:100%}.list_menu .icontupian[data-v-ab92431c]{font-size:16px}.home_menu[data-v-ab92431c]{padding:0 0 12px 0;display:-webkit-box;display:-ms-flexbox;display:flex;overflow:hidden}.home_menu .menu-item[data-v-ab92431c]{margin-top:12px;font-size:11px;color:#282828;text-align:center;-webkit-box-flex:0;-ms-flex:0 0 20%;flex:0 0 20%}.home_menu .menu-item .img-box[data-v-ab92431c]{width:50px;height:50px;margin:0 auto}.home_menu .menu-item .img-box.on .empty-box[data-v-ab92431c],.home_menu .menu-item .img-box.on[data-v-ab92431c],.home_menu .menu-item .img-box.on img[data-v-ab92431c]{border-radius:50%}.home_menu .menu-item .box[data-v-ab92431c],.home_menu .menu-item img[data-v-ab92431c]{width:100%;height:100%}.home_menu .menu-item .box[data-v-ab92431c]{background:#d8d8d8}.home_menu .menu-item p[data-v-ab92431c]{margin-top:5px}.home_menu .menu-item[data-v-ab92431c]:nth-child(5n){margin-right:0}.home_menu.on .menu-item[data-v-ab92431c],.home_menu.on .menu-item[data-v-ab92431c]:nth-child(5n){margin-right:51px}.home_menu.on .menu-item[data-v-ab92431c]:nth-child(4n){margin-right:0}.home_menu .icontupian[data-v-ab92431c]{font-size:16px}.dot[data-v-ab92431c]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;padding-bottom:10px}.dot.number[data-v-ab92431c]{bottom:15px}.dot .num[data-v-ab92431c]{width:25px;height:18px;line-height:18px;background-color:#000;color:#fff;opacity:.3;border-radius:8px;font-size:12px;text-align:center}.dot .dot-item[data-v-ab92431c]{width:5px;height:5px;background:#aaa;border-radius:50%;margin:0 3px}.dot.line-dot .dot-item[data-v-ab92431c]{width:8px;height:2px;background:#aaa;margin:0 3px}.pinkOn[data-v-541d58a8]{border-radius:0!important}.line1[data-v-541d58a8]{white-space:nowrap;word-break:break-all;overflow:hidden;text-overflow:ellipsis}.mobile-page[data-v-541d58a8]{padding-top:10px}.home_pink[data-v-541d58a8]{padding:10px 8px;background:#fff;border-radius:10px}.home_pink .title-wrapper[data-v-541d58a8]{-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.home_pink .title-wrapper .left[data-v-541d58a8],.home_pink .title-wrapper[data-v-541d58a8]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.home_pink .title-wrapper .left .icon[data-v-541d58a8]{width:60px;height:15px}.home_pink .title-wrapper .right[data-v-541d58a8]{font-size:12px}.home_pink .title-wrapper .right span[data-v-541d58a8]{font-size:8px}.home_pink .list-wrapper[data-v-541d58a8]{display:-webkit-box;display:-ms-flexbox;display:flex;margin-top:10px}.home_pink .list-wrapper .item[data-v-541d58a8]{-ms-flex-negative:0;flex-shrink:0;width:95px;background:#fff;border-radius:8px;margin:0 10px 10px 0}.home_pink .list-wrapper .item .img-box[data-v-541d58a8]{position:relative;width:100%;height:110px}.home_pink .list-wrapper .item .img-box .box[data-v-541d58a8],.home_pink .list-wrapper .item .img-box img[data-v-541d58a8]{width:100%;height:100%;border-radius:8px 8px 0 0}.home_pink .list-wrapper .item .img-box .box[data-v-541d58a8]{background:#d8d8d8}.home_pink .list-wrapper .item .img-box .num[data-v-541d58a8]{position:absolute;left:6px;top:6px;width:70px;height:16px;line-height:16px;text-align:center;background:rgba(0,0,0,.1);-webkit-box-shadow:1px 1px 4px 0 rgba(0,0,0,.06);box-shadow:1px 1px 4px 0 rgba(0,0,0,.06);border-radius:8px;color:#fff;font-size:12px}.home_pink .list-wrapper .item .info[data-v-541d58a8]{padding:5px 0}.home_pink .list-wrapper .item .info .title[data-v-541d58a8]{font-size:12px;color:#282828}.home_pink .list-wrapper .item .info .price[data-v-541d58a8]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-top:2px}.home_pink .list-wrapper .item .info .price .label[data-v-541d58a8]{display:inline-block;height:20px;line-height:20px;padding:0 3px;margin-right:3px;font-size:9px;font-weight:400;text-shadow:1px 1px 4px rgba(0,0,0,.06);color:#f44;width:46px}.home_pink .list-wrapper .item .info .price .num[data-v-541d58a8]{color:#f44;font-size:14px;font-weight:700;width:40px}.home_pink .list-wrapper .item .info .price .num span[data-v-541d58a8]{font-size:12px}.home_pink .list-wrapper .item .info .price p[data-v-541d58a8]{margin:0}.home_pink .list-wrapper .item .btn[data-v-541d58a8]{width:95px;height:24px;line-height:24px;background:-webkit-gradient(linear,left top,right top,from(red),to(#ff5400));background:linear-gradient(90deg,red,#ff5400);border-radius:12px;text-align:center;color:#fff;font-size:10px}.home_pink .list-wrapper.colum0[data-v-541d58a8]{overflow:hidden}.home_pink .list-wrapper.colum1[data-v-541d58a8]{-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.home_pink .list-wrapper.colum1 .item[data-v-541d58a8]{width:31.3%}.home_pink .list-wrapper.colum1 .item[data-v-541d58a8]:nth-child(3n){margin-right:0!important}.home_pink .list-wrapper.colum1 .item .img-box[data-v-541d58a8]{width:100%}.home_pink .list-wrapper.colum2[data-v-541d58a8]{overflow:hidden;display:block}.home_pink .list-wrapper.colum2 .item[data-v-541d58a8]{position:relative;background-size:cover;border-radius:6px;width:166px;padding:11px 11px 15px}.home_pink .list-wrapper.colum2 .item .img-box[data-v-541d58a8]{position:absolute}.home_pink .list-wrapper.colum2 .item .box-btn[data-v-541d58a8]{display:block;margin-top:3px;color:#fff;font-size:12px;font-weight:700;width:55px;line-height:16px;text-align:center;border-radius:8px}.home_pink .list-wrapper.colum2 .item .box-btn span[data-v-541d58a8]{font-size:8px}.home_pink .list-wrapper.colum2 .item .info[data-v-541d58a8]{background:transparent}.home_pink .list-wrapper.colum2 .item .info .title[data-v-541d58a8]{font-size:15px;color:#333;font-weight:700;line-height:17px}.home_pink .list-wrapper.colum2 .item .info .price[data-v-541d58a8]{display:block;font-size:15px;font-weight:700;margin-top:4px;color:#e93323}.home_pink .list-wrapper.colum2 .item[data-v-541d58a8]:first-child{height:190px;float:left;background-image:url(../../mer/img/c_presell_bg0.1337ae44.png)}.home_pink .list-wrapper.colum2 .item:first-child .img-box[data-v-541d58a8]{width:80px;height:80px;right:13px;bottom:8px}.home_pink .list-wrapper.colum2 .item:first-child .box-btn[data-v-541d58a8]{background:-webkit-gradient(linear,left top,right top,from(#fd5d48),to(#f63724));background:linear-gradient(90deg,#fd5d48,#f63724)}.home_pink .list-wrapper.colum2 .item[data-v-541d58a8]:nth-child(2),.home_pink .list-wrapper.colum2 .item[data-v-541d58a8]:nth-child(3){float:right;height:90px;margin-right:0}.home_pink .list-wrapper.colum2 .item:nth-child(2) .img-box[data-v-541d58a8],.home_pink .list-wrapper.colum2 .item:nth-child(3) .img-box[data-v-541d58a8]{width:60px;height:60px;right:5px;bottom:5px}.home_pink .list-wrapper.colum2 .item:nth-child(2) .title[data-v-541d58a8],.home_pink .list-wrapper.colum2 .item:nth-child(3) .title[data-v-541d58a8]{width:75px}.home_pink .list-wrapper.colum2 .item[data-v-541d58a8]:nth-child(2){background-image:url(../../mer/img/c_presell_bg2.ec584069.png)}.home_pink .list-wrapper.colum2 .item:nth-child(2) .box-btn[data-v-541d58a8]{background:-webkit-gradient(linear,left top,right top,from(#fdca1a),to(#f7b21f));background:linear-gradient(90deg,#fdca1a,#f7b21f)}.home_pink .list-wrapper.colum2 .item:nth-child(2) .price[data-v-541d58a8]{color:#f4ab0b}.home_pink .list-wrapper.colum2 .item[data-v-541d58a8]:nth-child(3){background-image:url(../../mer/img/c_presell_bg1.c37de1f0.png)}.home_pink .list-wrapper.colum2 .item:nth-child(3) .box-btn[data-v-541d58a8]{background:-webkit-gradient(linear,left top,right top,from(#ffb052),to(#fe961a));background:linear-gradient(90deg,#ffb052,#fe961a)}.home_pink .list-wrapper.colum2 .item:nth-child(3) .price[data-v-541d58a8]{color:#fd8a00}p[data-v-57eea00c]{margin:0;padding:0;line-height:1.5}.presellOn[data-v-57eea00c]{border-radius:0!important}.line1[data-v-57eea00c]{white-space:nowrap;word-break:break-all;overflow:hidden;text-overflow:ellipsis}.home_presell[data-v-57eea00c]{border-radius:10px;padding-bottom:10px;background-color:#fff}.home_presell .title-wrapper[data-v-57eea00c]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;background:-webkit-gradient(linear,left top,left bottom,from(rgba(249,126,59,.2)),color-stop(1%,rgba(249,126,59,.2)),to(rgba(249,126,59,0)));background:linear-gradient(180deg,rgba(249,126,59,.2),rgba(249,126,59,.2) 1%,rgba(249,126,59,0));background-image:url(../../mer/img/presell_bg.f8d4d960.png);background-size:cover;background-repeat:no-repeat;padding:10px 13px;border-radius:10px 10px 0 0}.home_presell .title-wrapper img[data-v-57eea00c]{width:60px;height:15px}.home_presell .title-wrapper .right[data-v-57eea00c]{font-size:12px;color:#282828}.home_presell .title-wrapper .right span[data-v-57eea00c]{font-size:8px}.home_presell .list-wrapper[data-v-57eea00c]{display:-webkit-box;display:-ms-flexbox;display:flex;padding:0 8px;margin-top:10px}.home_presell .list-wrapper .item[data-v-57eea00c]{width:107px;margin:0 10px 8px 0}.home_presell .list-wrapper .item .img-box[data-v-57eea00c]{position:relative;width:107px;height:107px}.home_presell .list-wrapper .item .img-box .box[data-v-57eea00c],.home_presell .list-wrapper .item .img-box img[data-v-57eea00c]{width:100%;height:100%;border-radius:10px 10px 0 0}.home_presell .list-wrapper .item .img-box .box[data-v-57eea00c]{background:#d8d8d8}.home_presell .list-wrapper .item .img-box .label[data-v-57eea00c]{position:absolute;left:0;top:0;width:46px;height:22px;border-radius:10px 0 10px 0;color:#fff;font-size:13px;text-align:center;line-height:22px}.home_presell .list-wrapper .item .img-box .box-bg[data-v-57eea00c]{position:absolute;bottom:0;left:0;text-align:center;width:82px;height:23px;line-height:23px;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAJUAAAAqCAMAAACN4OndAAAAmVBMVEUAAAD/dy37mij/eiz+hCv+fSz8kyn+gCz9hyv9jSr9iir8kCn8lin7lyj7mij7mij7mij7mij7mij7mij7mij7mij7mSj7mij7mij7mij7mSj7mij7mij7mij+gSz7mij7mij7mij7mij7mij/dy37mij7mCj/eyz+fiz+gSv8kCn9jCr9hiv9iSr8lCn8kin+hCv8lin9jiqx53KQAAAAJHRSTlMA8fHx8fHx8fHx8fHx8cdMjnpvNBgN59vYrp9eKfXt4tGUP76oKK8EAAABeklEQVRYw82Z126DQBBFx6S3xRQ3wDXZkJ7Y//9xgVm2GQXJIZHveWEfj0YczUpLA5cTzZniomaxOG24ZK6ZK+aGOVfc1twxwW9YhqR5aFE2PCmema+KN+adeWV2uxfms+ajZrt9NMhDET9blT21enitW1bd07JebS3FX2glXVZllxbzP1oTUqQja+WLabq0fK/+WkNSTOPGqj2tI/zzG2IyOdNWAClOiVnXp8YBIMXxJk2LUFSnubaCSDEYN19tBZSilCttBZRiFaO2AkpRykJb4aRYj0pb4aQohd04OCmKkbWCSXE1ImuFkmKQkmOFkmJIrhVIijPyrEBSDH0rkBSjyiiMjBVKisNIyMBYIaU4M1ZIKdqNg5RibqyQUkyMFVCKEzJWQClm1gooxdBa4aS4JGuFk2LkWMGkGLj3K5gUY3c7o6Q4IdcKJcXEswJJMSbPCiPFiHwrhBTnOe1ZAaR4X9C+1dFTFDk5DHrQfjVQHPhqMBZZnJDLN9Y/g30cqDDDAAAAAElFTkSuQmCC);background-repeat:no-repeat;background-size:cover;color:#fff;font-size:12px;border-radius:0 0 0 6px}.home_presell .list-wrapper .item .info[data-v-57eea00c]{padding:5px 0;background:#fff;border-radius:0 0 10px 10px}.home_presell .list-wrapper .item .info .title[data-v-57eea00c]{font-size:13px;color:#282828;margin-top:3px}.home_presell .list-wrapper .item .info .old-price[data-v-57eea00c]{color:#aaa;font-size:13px;text-decoration:line-through}.home_presell .list-wrapper .item .info .price[data-v-57eea00c]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;color:#e93323;font-weight:700}.home_presell .list-wrapper .item .info .price span[data-v-57eea00c]{font-size:10px;font-weight:400}.home_presell .list-wrapper.colum0[data-v-57eea00c]{overflow:hidden}.home_presell .list-wrapper.colum1[data-v-57eea00c]{-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.home_presell .list-wrapper.colum1 .item[data-v-57eea00c]{width:31.3%}.home_presell .list-wrapper.colum1 .item[data-v-57eea00c]:nth-child(3n){margin-right:0!important}.home_presell .list-wrapper.colum1 .item .img-box[data-v-57eea00c]{width:100%}.home_presell .list-wrapper.colum2[data-v-57eea00c]{overflow:hidden;display:block}.home_presell .list-wrapper.colum2 .item[data-v-57eea00c]{position:relative;background-size:cover;border-radius:6px;width:166px;padding:11px 11px 15px}.home_presell .list-wrapper.colum2 .item .img-box[data-v-57eea00c]{position:absolute}.home_presell .list-wrapper.colum2 .item .box-btn[data-v-57eea00c]{display:block;margin-top:3px;color:#fff;font-size:12px;font-weight:700;width:55px;line-height:16px;text-align:center;border-radius:8px}.home_presell .list-wrapper.colum2 .item .box-btn span[data-v-57eea00c]{font-size:8px}.home_presell .list-wrapper.colum2 .item .info[data-v-57eea00c]{background:transparent}.home_presell .list-wrapper.colum2 .item .info .title[data-v-57eea00c]{font-size:15px;color:#333;font-weight:700;line-height:17px}.home_presell .list-wrapper.colum2 .item .info .price[data-v-57eea00c]{display:block;font-size:15px;font-weight:700;margin-top:4px;color:#e93323}.home_presell .list-wrapper.colum2 .item[data-v-57eea00c]:first-child{height:190px;float:left;background-image:url(../../mer/img/c_presell_bg0.1337ae44.png)}.home_presell .list-wrapper.colum2 .item:first-child .img-box[data-v-57eea00c]{width:80px;height:80px;right:13px;bottom:8px}.home_presell .list-wrapper.colum2 .item:first-child .box-btn[data-v-57eea00c]{background:-webkit-gradient(linear,left top,right top,from(#fd5d48),to(#f63724));background:linear-gradient(90deg,#fd5d48,#f63724)}.home_presell .list-wrapper.colum2 .item[data-v-57eea00c]:nth-child(2),.home_presell .list-wrapper.colum2 .item[data-v-57eea00c]:nth-child(3){float:right;height:90px;margin-right:0}.home_presell .list-wrapper.colum2 .item:nth-child(2) .img-box[data-v-57eea00c],.home_presell .list-wrapper.colum2 .item:nth-child(3) .img-box[data-v-57eea00c]{width:60px;height:60px;right:5px;bottom:5px}.home_presell .list-wrapper.colum2 .item:nth-child(2) .title[data-v-57eea00c],.home_presell .list-wrapper.colum2 .item:nth-child(3) .title[data-v-57eea00c]{width:75px}.home_presell .list-wrapper.colum2 .item[data-v-57eea00c]:nth-child(2){background-image:url(../../mer/img/c_presell_bg2.ec584069.png)}.home_presell .list-wrapper.colum2 .item:nth-child(2) .box-btn[data-v-57eea00c]{background:-webkit-gradient(linear,left top,right top,from(#fdca1a),to(#f7b21f));background:linear-gradient(90deg,#fdca1a,#f7b21f)}.home_presell .list-wrapper.colum2 .item:nth-child(2) .price[data-v-57eea00c]{color:#f4ab0b}.home_presell .list-wrapper.colum2 .item[data-v-57eea00c]:nth-child(3){background-image:url(../../mer/img/c_presell_bg1.c37de1f0.png)}.home_presell .list-wrapper.colum2 .item:nth-child(3) .box-btn[data-v-57eea00c]{background:-webkit-gradient(linear,left top,right top,from(#ffb052),to(#fe961a));background:linear-gradient(90deg,#ffb052,#fe961a)}.home_presell .list-wrapper.colum2 .item:nth-child(3) .price[data-v-57eea00c]{color:#fd8a00}.seckillOn[data-v-69611176]{border-radius:0!important}.line1[data-v-69611176]{white-space:nowrap;word-break:break-all;overflow:hidden;text-overflow:ellipsis}.seckill-box[data-v-69611176]{padding:15px 10px;background:#fff;border-radius:10px}.seckill-box .hd[data-v-69611176]{-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.seckill-box .hd .left[data-v-69611176],.seckill-box .hd[data-v-69611176]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.seckill-box .hd .left img[data-v-69611176]{width:60px;height:15px}.seckill-box .hd .left .time[data-v-69611176]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-left:5px;border:1px solid #e93323;border-radius:2px}.seckill-box .hd .left .time span[data-v-69611176]{font-size:11px;text-align:center;line-height:16px;padding:1px 4px}.seckill-box .hd .left .time .text[data-v-69611176]{color:#fff;background:#e93323}.seckill-box .hd .left .time .num[data-v-69611176]{color:#e93323}.seckill-box .hd .right[data-v-69611176]{font-size:12px}.seckill-box .hd .right span[data-v-69611176]{font-size:8px}.seckill-box .list-wrapper[data-v-69611176]{display:-webkit-box;display:-ms-flexbox;display:flex;margin-top:8px}.seckill-box .list-wrapper .list-item[data-v-69611176]{-ms-flex-negative:0;flex-shrink:0;width:95px;margin:0 10px 10px 0;background:#fff;border-radius:6px 6px 0 0}.seckill-box .list-wrapper .list-item .img-box[data-v-69611176]{position:relative;width:100%;height:110px}.seckill-box .list-wrapper .list-item .img-box .box[data-v-69611176],.seckill-box .list-wrapper .list-item .img-box img[data-v-69611176]{width:100%;height:100%;border-radius:8px}.seckill-box .list-wrapper .list-item .img-box .box[data-v-69611176]{background:#d8d8d8}.seckill-box .list-wrapper .list-item .title[data-v-69611176]{margin-top:5px;font-size:14px;color:#282828;padding:0 3px}.seckill-box .list-wrapper .list-item .label[data-v-69611176]{width:100%;height:9px;line-height:9px;background:#ffdcd9;border-radius:8px;color:#fff;font-size:10px;text-align:center;position:relative;margin-top:5px}.seckill-box .list-wrapper .list-item .label[data-v-69611176]:before{content:"";display:inline-block;width:26%;height:9px;background:-webkit-gradient(linear,left top,right top,from(red),to(#ff5400));background:linear-gradient(90deg,red,#ff5400);border-radius:6px;position:absolute;top:0;left:0}.seckill-box .list-wrapper .list-item .price[data-v-69611176]{display:-webkit-box;display:-ms-flexbox;display:flex;padding:0 3px;margin-top:5px}.seckill-box .list-wrapper .list-item .price .num-label[data-v-69611176]{color:#f44;font-size:11px;font-weight:600;margin:1px 2px 0}.seckill-box .list-wrapper .list-item .price .num[data-v-69611176]{color:#f44;font-size:14px;font-weight:600}.seckill-box .list-wrapper .list-item .price .ot_price[data-v-69611176]{text-decoration:line-through;font-size:11px;color:#ccc;margin-left:3px}.seckill-box .list-wrapper.colum0[data-v-69611176]{overflow:hidden}.seckill-box .list-wrapper.colum1[data-v-69611176]{-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.seckill-box .list-wrapper.colum1 .list-item[data-v-69611176]{width:31.3%}.seckill-box .list-wrapper.colum1 .list-item[data-v-69611176]:nth-child(3n){margin-right:0!important}.seckill-box .list-wrapper.colum1 .list-item .img-box[data-v-69611176]{width:100%}.seckill-box .list-wrapper.colum2[data-v-69611176]{overflow:hidden;display:block}.seckill-box .list-wrapper.colum2 .list-item[data-v-69611176]{position:relative;background-size:cover;border-radius:6px;width:166px;padding:11px 11px 15px;margin-right:0}.seckill-box .list-wrapper.colum2 .list-item .img-box[data-v-69611176]{position:absolute}.seckill-box .list-wrapper.colum2 .list-item .box-btn[data-v-69611176]{display:block;margin-top:3px;color:#fff;font-size:12px;font-weight:700;width:55px;line-height:16px;text-align:center;border-radius:8px}.seckill-box .list-wrapper.colum2 .list-item .box-btn span[data-v-69611176]{font-size:8px}.seckill-box .list-wrapper.colum2 .list-item .info[data-v-69611176]{background:transparent}.seckill-box .list-wrapper.colum2 .list-item .info .title[data-v-69611176]{font-size:15px;color:#333;font-weight:700;line-height:17px}.seckill-box .list-wrapper.colum2 .list-item .info .price[data-v-69611176]{display:block;font-size:15px;font-weight:700;margin-top:4px;color:#e93323}.seckill-box .list-wrapper.colum2 .list-item[data-v-69611176]:first-child{height:190px;float:left;background-image:url(../../mer/img/c_presell_bg0.1337ae44.png)}.seckill-box .list-wrapper.colum2 .list-item:first-child .img-box[data-v-69611176]{width:80px;height:80px;right:13px;bottom:8px}.seckill-box .list-wrapper.colum2 .list-item:first-child .box-btn[data-v-69611176]{background:-webkit-gradient(linear,left top,right top,from(#fd5d48),to(#f63724));background:linear-gradient(90deg,#fd5d48,#f63724)}.seckill-box .list-wrapper.colum2 .list-item[data-v-69611176]:nth-child(2),.seckill-box .list-wrapper.colum2 .list-item[data-v-69611176]:nth-child(3){float:right;height:90px;margin-right:0}.seckill-box .list-wrapper.colum2 .list-item:nth-child(2) .img-box[data-v-69611176],.seckill-box .list-wrapper.colum2 .list-item:nth-child(3) .img-box[data-v-69611176]{width:60px;height:60px;right:5px;bottom:5px}.seckill-box .list-wrapper.colum2 .list-item:nth-child(2) .title[data-v-69611176],.seckill-box .list-wrapper.colum2 .list-item:nth-child(3) .title[data-v-69611176]{width:75px}.seckill-box .list-wrapper.colum2 .list-item[data-v-69611176]:nth-child(2){background-image:url(../../mer/img/c_presell_bg2.ec584069.png)}.seckill-box .list-wrapper.colum2 .list-item:nth-child(2) .box-btn[data-v-69611176]{background:-webkit-gradient(linear,left top,right top,from(#fdca1a),to(#f7b21f));background:linear-gradient(90deg,#fdca1a,#f7b21f)}.seckill-box .list-wrapper.colum2 .list-item:nth-child(2) .price[data-v-69611176]{color:#f4ab0b}.seckill-box .list-wrapper.colum2 .list-item[data-v-69611176]:nth-child(3){background-image:url(../../mer/img/c_presell_bg1.c37de1f0.png)}.seckill-box .list-wrapper.colum2 .list-item:nth-child(3) .box-btn[data-v-69611176]{background:-webkit-gradient(linear,left top,right top,from(#ffb052),to(#fe961a));background:linear-gradient(90deg,#ffb052,#fe961a)}.seckill-box .list-wrapper.colum2 .list-item:nth-child(3) .price[data-v-69611176]{color:#fd8a00}.titleOn[data-v-1702722c]{border-radius:10px!important}.title-box[data-v-1702722c]{color:#282828;padding:5px 10px}.pageOn[data-v-558bc715]{border-radius:0!important}.page-count[data-v-558bc715]{border-radius:8px}.home_topic[data-v-558bc715]{border-radius:10px}.home_topic .title-wrapper[data-v-558bc715]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;padding:10px 13px;border-radius:10px 10px 0 0}.home_topic .title-wrapper img[data-v-558bc715]{width:60px;height:15px}.home_topic .title-wrapper .right[data-v-558bc715]{font-size:12px;color:#282828}.home_topic .title-wrapper .right span[data-v-558bc715]{font-size:8px}.list_menu[data-v-558bc715]{padding:0 12px 12px;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.list_menu .item[data-v-558bc715]{margin-top:12px;font-size:11px;color:#282828;text-align:center;width:100%}.list_menu .item .img-box[data-v-558bc715]{width:100%;height:130px;margin:0 auto 5px auto}.list_menu .item .img-box.on .empty-box[data-v-558bc715],.list_menu .item .img-box.on[data-v-558bc715],.list_menu .item .img-box.on img[data-v-558bc715]{border-radius:50%}.list_menu .item .img-box img[data-v-558bc715]{width:100%;height:100%}.list_menu .icontupian[data-v-558bc715]{font-size:16px}.home_menu[data-v-558bc715]{padding:0 12px 12px;display:-webkit-box;display:-ms-flexbox;display:flex;overflow:hidden}.home_menu .menu-item[data-v-558bc715]{margin-top:12px;width:100%}.home_menu .menu-item .img-box[data-v-558bc715]{width:100%;height:130px}.home_menu .menu-item .img-box.on[data-v-558bc715]{border-radius:50%}.home_menu .menu-item .img-box.on .empty-box[data-v-558bc715],.home_menu .menu-item .img-box.on img[data-v-558bc715]{border-radius:8px}.home_menu .menu-item .box[data-v-558bc715],.home_menu .menu-item img[data-v-558bc715]{width:100%;height:100%}.home_menu .menu-item .box[data-v-558bc715]{background:#d8d8d8}.home_menu .menu-item p[data-v-558bc715]{margin-top:5px}.home_menu .menu-item[data-v-558bc715]:nth-child(5n){margin-right:0}.home_menu.on .menu-item[data-v-558bc715],.home_menu.on .menu-item[data-v-558bc715]:nth-child(5n){margin-right:51px}.home_menu.on .menu-item[data-v-558bc715]:nth-child(4n){margin-right:0}.home_menu .icontupian[data-v-558bc715]{font-size:16px}.dot[data-v-558bc715]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;padding:0 10px 10px}.dot .dot-item[data-v-558bc715]{width:5px;height:5px;background:#aaa;border-radius:50%;margin:0 3px}.dot.line-dot .dot-item[data-v-558bc715]{width:4px;height:2px;background:#aaa;margin:0 3px}.dot.line-dot .dot-item[data-v-558bc715]:first-child{width:8px}.pageOn[data-v-07d0d8a8]{border-radius:12px!important}.pageOn .advertItem01 img[data-v-07d0d8a8]{border-radius:10px}.pageOn .advertItem02 .item:first-child img[data-v-07d0d8a8]{border-radius:10px 0 0 10px}.pageOn .advertItem02 .item:nth-child(2) img[data-v-07d0d8a8]{border-radius:0 10px 10px 0}.pageOn .advertItem03 .item:first-child img[data-v-07d0d8a8]{border-radius:10px 0 0 10px}.pageOn .advertItem03 .item:nth-child(2) img[data-v-07d0d8a8]{border-radius:0}.pageOn .advertItem03 .item:nth-child(3) img[data-v-07d0d8a8]{border-radius:0 10px 10px 0}.pageOn .advertItem04 .item:first-child img[data-v-07d0d8a8]{border-radius:10px 0 0 10px}.pageOn .advertItem04 .item:nth-child(2) .pic:first-child img[data-v-07d0d8a8]{border-radius:0 10px 0 0}.pageOn .advertItem04 .item:nth-child(2) .pic:nth-child(2) img[data-v-07d0d8a8]{border-radius:0 0 10px 0}.pageOn .advertItem05 .item:first-child img[data-v-07d0d8a8]{border-radius:10px 0 0 10px}.pageOn .advertItem05 .item:nth-child(2) img[data-v-07d0d8a8]{border-radius:0}.pageOn .advertItem05 .item:nth-child(4) img[data-v-07d0d8a8]{border-radius:0 10px 10px 0}.pageOn .advertItem06 .item:first-child img[data-v-07d0d8a8]{border-radius:10px 0 0 0}.pageOn .advertItem06 .item:nth-child(2) img[data-v-07d0d8a8]{border-radius:0 10px 0 0}.pageOn .advertItem06 .item:nth-child(3) img[data-v-07d0d8a8]{border-radius:0 0 0 10px}.pageOn .advertItem06 .item:nth-child(4) img[data-v-07d0d8a8]{border-radius:0 0 10px 0}.mobile-page .advert .advertItem01[data-v-07d0d8a8]{width:100%;height:100%}.mobile-page .advert .advertItem01 .empty-box[data-v-07d0d8a8]{width:100%;height:379px;border-radius:0}.mobile-page .advert .advertItem01 .empty-box .icontupian[data-v-07d0d8a8]{font-size:50px;color:#999}.mobile-page .advert .advertItem01 img[data-v-07d0d8a8]{width:100%;height:100%}.mobile-page .advert .advertItem02[data-v-07d0d8a8]{width:100%}.mobile-page .advert .advertItem02 .item[data-v-07d0d8a8]{width:50%;height:auto}.mobile-page .advert .advertItem02 .item img[data-v-07d0d8a8]{width:100%;height:100%}.mobile-page .advert .advertItem02 .item .empty-box[data-v-07d0d8a8]{width:100%;height:189.5px;border-radius:0}.mobile-page .advert .advertItem03 .item[data-v-07d0d8a8]{width:33.3333%}.mobile-page .advert .advertItem03 .item .empty-box[data-v-07d0d8a8]{width:100%;height:126.4px;border-radius:0}.mobile-page .advert .advertItem04 .item[data-v-07d0d8a8]{width:50%;height:189.5px}.mobile-page .advert .advertItem04 .item .empty-box[data-v-07d0d8a8]{width:100%;height:100%;border-radius:0}.mobile-page .advert .advertItem04 .item img[data-v-07d0d8a8]{width:100%;height:100%}.mobile-page .advert .advertItem04 .item .pic[data-v-07d0d8a8]{width:100%;height:94.75px}.mobile-page .advert .advertItem05 .item[data-v-07d0d8a8]{width:25%}.mobile-page .advert .advertItem05 .item .empty-box[data-v-07d0d8a8]{width:100%;height:94.75px;border-radius:0}.mobile-page .advert .advertItem06 .item[data-v-07d0d8a8]{width:50%;height:95px}.mobile-page .advert .advertItem06 .item img[data-v-07d0d8a8]{width:100%;height:100%}.mobile-page .advert .advertItem06 .item .empty-box[data-v-07d0d8a8]{width:100%;height:100%;border-radius:0}.mobile-page[data-v-7a95016c]{background:#f5f5f5;font-size:12px}.pageOn[data-v-7a95016c]{border-radius:8px!important}.live-wrapper-a[data-v-7a95016c]{padding:5px 10px 0;margin-top:6px}.live-wrapper-a .live-item-a[data-v-7a95016c]{display:-webkit-box;display:-ms-flexbox;display:flex;position:relative;margin-bottom:10px;background:#fff;border-radius:8px;overflow:hidden}.live-wrapper-a .live-item-a .img-box[data-v-7a95016c]{position:relative;width:170px;height:136px;border-radius:8px 0 0 8px;overflow:hidden}.live-wrapper-a .live-item-a .info[data-v-7a95016c]{-webkit-box-flex:1;-ms-flex:1;flex:1;padding:8px 5px;border-radius:0 8px 8px 0;overflow:hidden}.live-wrapper-a .live-item-a .info .title[data-v-7a95016c]{color:#333;font-size:14px}.live-wrapper-a .live-item-a .info .people[data-v-7a95016c]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;font-size:12px;margin-top:15px;color:#666}.live-wrapper-a .live-item-a .info .people img[data-v-7a95016c]{width:32px;height:32px;margin-right:5px;border-radius:50%}.live-wrapper-a .live-item-a .info .goods-wrapper[data-v-7a95016c]{margin-top:10px;display:-webkit-box;display:-ms-flexbox;display:flex}.live-wrapper-a .live-item-a .info .goods-wrapper .goods-item[data-v-7a95016c]{position:relative;width:48px;height:48px;margin-right:8px}.live-wrapper-a .live-item-a .info .goods-wrapper .goods-item[data-v-7a95016c]:nth-child(3n){margin-right:0}.live-wrapper-a .live-item-a .info .goods-wrapper .goods-item img[data-v-7a95016c]{width:100%;height:100%}.live-wrapper-a .live-item-a .info .goods-wrapper .goods-item span[data-v-7a95016c]{position:absolute;left:0;bottom:0;color:#fff;font-size:12px}.live-wrapper-a.live-wrapper-c[data-v-7a95016c]{display:-webkit-box;display:-ms-flexbox;display:flex;overflow:hidden}.live-wrapper-a.live-wrapper-c .live-item-a[data-v-7a95016c]{margin-right:10px;width:140px;height:112px;-ms-flex-negative:0;flex-shrink:0}.live-wrapper-a.live-wrapper-c .live-item-a .img-box[data-v-7a95016c]{width:100%;height:112px;border-radius:8px 8px 0 0}.live-wrapper-a.live-wrapper-c .live-item-a .info[data-v-7a95016c]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.live-wrapper-a.live-wrapper-c .live-item-a .info .left[data-v-7a95016c]{width:60%}.live-wrapper-b[data-v-7a95016c]{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;padding:10px 10px 0}.live-wrapper-b .live-item-b[data-v-7a95016c]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;width:165px;margin-bottom:10px;border-radius:8px;overflow:hidden}.live-wrapper-b .live-item-b .img-box[data-v-7a95016c]{position:relative;height:137px}.live-wrapper-b .live-item-b .info[data-v-7a95016c]{width:100%;padding:10px;background-color:#fff}.live-wrapper-b .live-item-b .info .people[data-v-7a95016c]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-top:8px;color:#666}.live-wrapper-b .live-item-b .info .people img[data-v-7a95016c]{width:32px;height:32px;margin-right:5px;border-radius:50%}.iconfont-diy[data-v-7a95016c]{font-size:12px}.icontupian[data-v-7a95016c]{font-size:24px}.bggary[data-v-7a95016c]{background:-webkit-gradient(linear,right top,left top,from(#999),to(#666));background:linear-gradient(270deg,#999,#666)}.bgred[data-v-7a95016c]{background:-webkit-gradient(linear,right top,left top,from(#f5742f),to(#ff1717));background:linear-gradient(270deg,#f5742f,#ff1717)}.empty-goods[data-v-7a95016c]{width:50px;height:48px;background:#b2b2b2}.empty-goods[data-v-7a95016c],.label[data-v-7a95016c]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;color:#fff;font-size:12px}.label[data-v-7a95016c]{position:absolute;left:0;top:0;width:76px;height:17px;line-height:17px;border-radius:8px 0 8px 0}.label.bgblue[data-v-7a95016c]{-webkit-box-pack:inherit;-ms-flex-pack:inherit;justify-content:inherit;width:110px;background:rgba(0,0,0,.36);overflow:hidden}.label.bgblue .txt[data-v-7a95016c]{width:48px;height:100%;text-align:center;margin-right:5px;background:-webkit-gradient(linear,right top,left top,from(#2fa1f5),to(#0076ff));background:linear-gradient(270deg,#2fa1f5,#0076ff)}.label.bggary[data-v-7a95016c]{width:54px}.title-box[data-v-7a95016c]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:10px 10px 0;font-size:16px}.title-box .icon[data-v-7a95016c]{width:66px;height:16px}.title-box span[data-v-7a95016c]{font-size:12px}.title-box span .iconfont[data-v-7a95016c]{font-size:8px}.box[data-v-5a66809e]{height:20px;background:#f5f5f5}.mobile-page[data-v-55f42962]{padding:7px 0}.mobile-page[data-v-eee590ca] video{width:100%!important}.box[data-v-eee590ca]{min-height:100px;padding:10px;background:#f5f5f5}.box img[data-v-eee590ca]{max-width:100%;height:auto}.c_row-item[data-v-12806735]{margin-bottom:20px}.color-box[data-v-12806735]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.color-box .color-item[data-v-12806735]{margin-left:15px}.color-box .color-item span[data-v-12806735]{margin-left:5px;color:#999;font-size:13px;cursor:pointer}.tabBox_img[data-v-f3031e04]{width:36px;height:36px;border-radius:4px;cursor:pointer}.tabBox_img img[data-v-f3031e04]{width:100%;height:100%}[data-v-f3031e04]::-webkit-scrollbar-thumb{-webkit-box-shadow:inset 0 0 6px #ddd}[data-v-f3031e04]::-webkit-scrollbar{width:4px!important}.on[data-v-f3031e04]{background-color:#2d8cf0!important;color:#fff!important}.menu-item[data-v-f3031e04]{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;word-break:break-all}.menu-item .icon-box[data-v-f3031e04]{z-index:3;position:absolute;right:20px;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%);display:none}.menu-item:hover .icon-box[data-v-f3031e04]{display:block}.menu-item .right-menu[data-v-f3031e04]{z-index:10;position:absolute;right:-106px;top:-11px;width:auto;min-width:121px}.table_box[data-v-f3031e04]{margin-top:14px;display:-webkit-box;display:-ms-flexbox;display:flex;position:relative}.table_box .left_box[data-v-f3031e04]{width:171px;height:470px;border-right:1px solid #eee;overflow-x:hidden;overflow-y:auto}.table_box .left_box .left_cont[data-v-f3031e04]{margin-bottom:12px;cursor:pointer}.table_box .right_box[data-v-f3031e04]{margin-left:23px;font-size:13px;font-family:PingFang SC;width:645px;height:470px;overflow-x:hidden;overflow-y:auto}.table_box .right_box .cont[data-v-f3031e04]{font-weight:500;color:#000;font-weight:700}.table_box .right_box .Box[data-v-f3031e04]{margin-top:19px;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.table_box .right_box .Box .cont_box[data-v-f3031e04]{font-weight:400;color:rgba(0,0,0,.85);background:#fafafa;border-radius:3px;text-align:center;padding:7px 30px;margin-right:10px;margin-bottom:18px;cursor:pointer}.table_box .right_box .Box .cont_box[data-v-f3031e04]:hover{background-color:#eee;color:#333}.table_box .right_box .Box .item[data-v-f3031e04]{position:relative}.table_box .right_box .Box .item .iconfont[data-v-f3031e04]{display:none}.table_box .right_box .Box .item:hover .iconfont[data-v-f3031e04]{display:block}.table_box .right_box .Box .iconfont[data-v-f3031e04]{position:absolute;right:9px;top:-8px;font-size:18px;color:#333}.table_box .Button[data-v-f3031e04]{position:absolute;bottom:15px;right:15px;font-family:PingFangSC-Regular;text-align:center}.table_box .Button .cancel[data-v-f3031e04]{width:70px;height:32px;background:#fff;border:1px solid rgba(0,0,0,.14902);border-radius:2px;font-size:14px;color:#000;line-height:32px;float:left;margin-right:10px;cursor:pointer}.table_box .Button .ok[data-v-f3031e04]{width:70px;height:32px;background:#1890ff;border-radius:2px;font-size:14px;color:#fff;line-height:32px;float:left;cursor:pointer}.hot_imgs[data-v-79a77f20]{margin-bottom:20px}.hot_imgs .title[data-v-79a77f20]{padding:13px 0;color:#999;font-size:12px;border-bottom:1px solid rgba(0,0,0,.05)}.hot_imgs .list-box .item[data-v-79a77f20]{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;margin-top:20px;border-bottom:1px solid #eee;padding-bottom:10px}.hot_imgs .list-box .item .move-icon[data-v-79a77f20]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:30px;height:80px;cursor:move}.hot_imgs .list-box .item .img-box[data-v-79a77f20]{position:relative;width:70px;height:70px}.hot_imgs .list-box .item .img-box img[data-v-79a77f20]{width:100%;height:100%}.hot_imgs .list-box .info[data-v-79a77f20]{-webkit-box-flex:1;-ms-flex:1;flex:1;margin-left:22px}.hot_imgs .list-box .info .info-item[data-v-79a77f20]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-bottom:10px}.hot_imgs .list-box .info .info-item span[data-v-79a77f20]{width:40px;font-size:13px}.hot_imgs .list-box .info .info-item .input-box[data-v-79a77f20]{-webkit-box-flex:1;-ms-flex:1;flex:1}.hot_imgs .list-box .info .info-item .input-box[data-v-79a77f20] .ivu-input{font-size:13px!important}.hot_imgs .list-box .delect-btn[data-v-79a77f20]{position:absolute;right:-7px;top:-12px}.hot_imgs .list-box .delect-btn .iconfont-diy[data-v-79a77f20]{font-size:25px;color:#999}.hot_imgs .add-btn[data-v-79a77f20]{margin-top:10px}.upload-box[data-v-79a77f20]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;width:100%;height:100%;background:#f7f7f7;font-size:12px;color:#ccc}.upload-box .iconfont[data-v-79a77f20]{font-size:16px}.iconfont-diy[data-v-79a77f20]{color:#ddd;font-size:28px}[data-v-340eff88] .ivu-input{font-size:13px!important}.tips[data-v-340eff88]{padding-bottom:5px;font-size:12px;color:#999;border-bottom:1px solid rgba(0,0,0,.05)}.box-item[data-v-340eff88]{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;margin-top:15px;padding:20px 30px 20px 0;border:1px solid #ddd;border-radius:3px}.box-item .del-box[data-v-340eff88]{position:absolute;right:-13px;top:-18px;cursor:pointer}.box-item .del-box .iconfont[data-v-340eff88]{color:#999;font-size:30px}.box-item .left-tool[data-v-340eff88]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:72px}.box-item .left-tool .iconfont[data-v-340eff88]{color:#999;font-size:36px;cursor:move}.box-item .right-wrapper[data-v-340eff88]{-webkit-box-flex:1;-ms-flex:1;flex:1}.box-item .right-wrapper .img-wrapper[data-v-340eff88]{display:-webkit-box;display:-ms-flexbox;display:flex}.box-item .right-wrapper .img-wrapper .img-item[data-v-340eff88]{position:relative;width:80px;height:80px;margin-right:20px;cursor:pointer}.box-item .right-wrapper .img-wrapper img[data-v-340eff88]{display:block;width:100%;height:100%}.box-item .right-wrapper .img-wrapper .empty-img[data-v-340eff88]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;width:100%;height:100%;background:#f7f7f7;font-size:12px;color:#bfbfbf}.box-item .right-wrapper .img-wrapper .empty-img .iconfont[data-v-340eff88]{font-size:16px}.box-item .right-wrapper .img-wrapper .txt[data-v-340eff88]{position:absolute;left:0;bottom:0;width:100%;height:22px;line-height:22px;text-align:center;background:rgba(0,0,0,.4);color:#fff;font-size:12px}.box-item .c_row-item[data-v-340eff88]{margin-top:10px}.add-btn[data-v-340eff88]{margin-top:20px;width:100%;height:40px}.footer[data-v-4442b510]{margin:15px 0}.tabBox_img[data-v-4442b510]{width:36px;height:36px;border-radius:4px;cursor:pointer}.tabBox_img img[data-v-4442b510]{width:100%;height:100%}.tabform .ivu-form-item[data-v-4442b510]{margin-bottom:16px!important}.btn[data-v-4442b510]{margin-top:20px;float:right}.goodList table[data-v-4442b510]{width:100%!important}.goods-box[data-v-2ed05ad9]{padding:16px 0;margin-bottom:16px;border-top:1px solid rgba(0,0,0,.05)}.goods-box .list-group[data-v-2ed05ad9],.goods-box .wrapper[data-v-2ed05ad9]{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.goods-box .add-item[data-v-2ed05ad9]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:80px;height:80px;margin-bottom:10px;background:#f7f7f7}.goods-box .add-item .iconfont-diy[data-v-2ed05ad9]{font-size:20px;color:#d8d8d8}.goods-box .item[data-v-2ed05ad9]{position:relative;width:80px;height:80px;margin-bottom:20px;margin-right:12px}.goods-box .item img[data-v-2ed05ad9]{width:100%;height:100%}.goods-box .item .icondel_1[data-v-2ed05ad9]{position:absolute;right:-10px;top:-16px;color:#999;font-size:28px;cursor:pointer}[data-v-67b32add] .ivu-input{font-size:13px!important}.hot_imgs[data-v-67b32add]{border-top:1px solid rgba(0,0,0,.05)}.hot_imgs .title[data-v-67b32add]{padding:13px 0;color:#999;font-size:12px;border-bottom:1px solid rgba(0,0,0,.05)}.hot_imgs .list-box .item[data-v-67b32add]{display:-webkit-box;display:-ms-flexbox;display:flex;margin-top:20px}.hot_imgs .list-box .item .move-icon[data-v-67b32add]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:30px;height:80px;cursor:move}.hot_imgs .list-box .item .img-box[data-v-67b32add]{width:80px;height:80px}.hot_imgs .list-box .item .img-box img[data-v-67b32add]{width:100%;height:100%}.hot_imgs .list-box .item .info[data-v-67b32add]{-webkit-box-flex:1;-ms-flex:1;flex:1;margin-left:22px}.hot_imgs .list-box .item .info .info-item[data-v-67b32add]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-bottom:10px}.hot_imgs .list-box .item .info .info-item span[data-v-67b32add]{width:40px;font-size:13px}.hot_imgs .list-box .item .info .info-item .input-box[data-v-67b32add]{-webkit-box-flex:1;-ms-flex:1;flex:1}.add-btn[data-v-67b32add]{margin-top:10px}.upload-box[data-v-67b32add]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;width:80px;height:80px;background:#f7f7f7;font-size:12px;color:#ccc}.line-box[data-v-e5dd5998]{margin-top:20px;padding:10px 0 20px;border-top:1px solid rgba(0,0,0,.05);border-bottom:1px solid rgba(0,0,0,.05)}.line-box .title p[data-v-e5dd5998]{font-size:14px;color:#000}.line-box .title span[data-v-e5dd5998]{color:#999}.line-box .input-box[data-v-e5dd5998]{margin-top:10px}.line-box .input-box .add-btn[data-v-e5dd5998]{margin-top:18px}.line-box .input-box .input-item[data-v-e5dd5998]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-bottom:15px;position:relative}.line-box .input-box .input-item .delete[data-v-e5dd5998]{position:absolute;right:-7px;top:-8px;color:#999}.line-box .input-box .input-item .icon[data-v-e5dd5998]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:36px;cursor:move}.line-box .input-box .input-item[data-v-e5dd5998] .ivu-input{-webkit-box-flex:1;-ms-flex:1;flex:1;height:36px;font-size:13px!important}[data-v-128c8b87] .ivu-input{font-size:13px!important}.c_row-item[data-v-128c8b87]{margin-bottom:13px}[data-v-73408e04] .el-input-number{width:100%}[data-v-73408e04] .ivu-input{font-size:13px!important}.numbox[data-v-73408e04]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-bottom:20px}.numbox span[data-v-73408e04]{width:80px;color:#999}.c_row-item[data-v-73408e04]{width:100%}.c_row-item[data-v-e03dde4a]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-bottom:20px}.hot_imgs[data-v-28aed3df]{margin-bottom:20px}.hot_imgs .title[data-v-28aed3df]{padding:13px 0;color:#999;font-size:12px;border-bottom:1px solid rgba(0,0,0,.05)}.hot_imgs .list-box .item[data-v-28aed3df]{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;margin-top:20px;border-bottom:1px solid #eee;padding-bottom:10px}.hot_imgs .list-box .item .move-icon[data-v-28aed3df]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:30px;height:80px;cursor:move}.hot_imgs .list-box .item .img-box[data-v-28aed3df]{position:relative;width:70px;height:70px}.hot_imgs .list-box .item .img-box img[data-v-28aed3df]{width:100%;height:100%}.hot_imgs .list-box .info[data-v-28aed3df]{-webkit-box-flex:1;-ms-flex:1;flex:1;margin-left:22px}.hot_imgs .list-box .info .info-item[data-v-28aed3df]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-bottom:10px}.hot_imgs .list-box .info .info-item span[data-v-28aed3df]{width:40px;font-size:13px}.hot_imgs .list-box .info .info-item .input-box[data-v-28aed3df]{-webkit-box-flex:1;-ms-flex:1;flex:1}.hot_imgs .list-box .info .info-item .input-box[data-v-28aed3df] .ivu-input{font-size:13px!important}.hot_imgs .list-box .delect-btn[data-v-28aed3df]{position:absolute;right:-7px;top:-12px}.hot_imgs .list-box .delect-btn .iconfont-diy[data-v-28aed3df]{font-size:25px;color:#999}.hot_imgs .add-btn[data-v-28aed3df]{margin-top:10px}.upload-box[data-v-28aed3df]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;width:100%;height:100%;background:#f7f7f7;font-size:12px;color:#ccc}.upload-box .iconfont[data-v-28aed3df]{font-size:16px}.iconfont-diy[data-v-28aed3df]{color:#ddd;font-size:28px}.editor[data-v-f155c83a]{width:100%;margin:0 auto}.toolbar[data-v-f155c83a]{border:1px solid #ccc}.text[data-v-f155c83a]{border:1px solid #ccc;min-height:600px}.iview-video-style[data-v-732b6bbd]{width:40%;height:180px;border-radius:10px;background-color:#707070;margin-top:10px;position:relative;overflow:hidden}.iview-video-style .iconv[data-v-732b6bbd]{color:#fff;line-height:180px;width:50px;height:50px;display:inherit;font-size:26px;position:absolute;top:-74px;left:50%;margin-left:-25px}.iview-video-style .mark[data-v-732b6bbd]{position:absolute;width:100%;height:30px;top:0;background-color:rgba(0,0,0,.5);text-align:center}.mt50[data-v-732b6bbd]{margin-top:50px}.bottom[data-v-dac0639e]{margin-bottom:10px;cursor:pointer}[data-v-6c40324f] .ivu-divider-horizontal{margin:12px 0}.empty-box[data-v-6c40324f]{color:#8c8c8c;font-size:12px;border-radius:0;background-color:#eee;width:100%;border:1px solid #ddd;text-align:center}.mobile-page .tip[data-v-6c40324f]{font-size:12px;color:rgba(0,0,0,.45);margin-bottom:2px;margin-top:3px}.mobile-page .advert[data-v-6c40324f]{cursor:pointer}.mobile-page .advert .advertItem01[data-v-6c40324f]{width:100%;height:100%}.mobile-page .advert .advertItem01 .empty-box[data-v-6c40324f]{height:366px;border:1px solid #ddd}.mobile-page .advert .advertItem01 img[data-v-6c40324f]{width:100%;height:100%;border:1px solid #1890ff}.mobile-page .advert .advertItem02[data-v-6c40324f]{width:100%}.mobile-page .advert .advertItem02 .item[data-v-6c40324f]{width:50%;height:100%}.mobile-page .advert .advertItem02 .item img[data-v-6c40324f]{width:100%;height:100%}.mobile-page .advert .advertItem02 .item.on img[data-v-6c40324f]{border:1px solid #1890ff!important}.mobile-page .advert .advertItem02 .item.on .empty-box[data-v-6c40324f]{border:1px solid #1890ff!important;color:#1890ff}.mobile-page .advert .advertItem02 .item .empty-box[data-v-6c40324f]{height:189.5px;border-right:1px solid #eee}.mobile-page .advert .advertItem02 .item:nth-child(2) .empty-box[data-v-6c40324f]{border-right:1px solid #ddd}.mobile-page .advert .advertItem03 .item[data-v-6c40324f]{width:33.3333%}.mobile-page .advert .advertItem03 .item .empty-box[data-v-6c40324f]{height:126.4px;border-right:1px solid #eee}.mobile-page .advert .advertItem03 .item:nth-child(2) .empty-box[data-v-6c40324f]{border-right:1px solid #eee}.mobile-page .advert .advertItem03 .item:nth-child(3) .empty-box[data-v-6c40324f]{border-right:1px solid #ddd}.mobile-page .advert .advertItem04 .item[data-v-6c40324f]{width:50%;height:189.5px}.mobile-page .advert .advertItem04 .item .empty-box[data-v-6c40324f]{height:100%}.mobile-page .advert .advertItem04 .item img[data-v-6c40324f]{width:100%;height:100%}.mobile-page .advert .advertItem04 .item.on img[data-v-6c40324f]{border:1px solid #1890ff!important}.mobile-page .advert .advertItem04 .item.on .empty-box[data-v-6c40324f]{border:1px solid #1890ff!important;color:#1890ff}.mobile-page .advert .advertItem04 .item .pic[data-v-6c40324f]{width:100%;height:94.75px}.mobile-page .advert .advertItem04 .item .pic.on img[data-v-6c40324f]{border:1px solid #1890ff!important}.mobile-page .advert .advertItem04 .item .pic.on .empty-box[data-v-6c40324f]{border:1px solid #1890ff!important;color:#1890ff}.mobile-page .advert .advertItem04 .item:first-child .empty-box[data-v-6c40324f]{border-right:1px solid #eee}.mobile-page .advert .advertItem04 .item:nth-child(2) .pic:nth-child(2) .empty-box[data-v-6c40324f]{border-top:1px solid #eee}.mobile-page .advert .advertItem05 .item[data-v-6c40324f]{width:25%}.mobile-page .advert .advertItem05 .item .empty-box[data-v-6c40324f]{height:94.75px}.mobile-page .advert .advertItem05 .item:nth-child(4) .empty-box[data-v-6c40324f]{border-right:1px solid #ddd}.mobile-page .advert .advertItem05 .item:nth-child(2) .empty-box[data-v-6c40324f]{border-right:1px solid #eee}.mobile-page .advert .advertItem06 .item[data-v-6c40324f]{width:50%;height:95px}.mobile-page .advert .advertItem06 .item img[data-v-6c40324f]{width:100%;height:100%}.mobile-page .advert .advertItem06 .item.on img[data-v-6c40324f]{border:1px solid #1890ff!important}.mobile-page .advert .advertItem06 .item.on .empty-box[data-v-6c40324f]{border:1px solid #1890ff!important;color:#1890ff}.mobile-page .advert .advertItem06 .item .empty-box[data-v-6c40324f]{height:100%;border-right:1px solid #eee;border-bottom:1px solid #eee}.mobile-page .advert .advertItem06 .item:nth-child(2) .empty-box[data-v-6c40324f]{border-right:1px solid #ddd}.mobile-page .advert .advertItem06 .item:nth-child(3) .empty-box[data-v-6c40324f]{border-bottom:1px solid #ddd}.mobile-page .advert .advertItem06 .item:nth-child(4) .empty-box[data-v-6c40324f]{border-right:1px solid #ddd;border-bottom:1px solid #ddd}[data-v-399ee89c] .el-input__inner{font-size:13px}.c_product[data-v-399ee89c]{border-bottom:1px solid rgba(0,0,0,.05);padding-bottom:20px;margin-bottom:20px}.c_product .list-box .item[data-v-399ee89c]{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;margin-top:23px;padding:18px 20px 18px 0;border:1px solid #eee;-webkit-box-shadow:0 0 10px #eee;box-shadow:0 0 10px #eee}.c_product .list-box .item .delete[data-v-399ee89c]{position:absolute;right:0;top:0;right:-13px;top:-14px;color:#999;cursor:pointer}.c_product .list-box .move-icon[data-v-399ee89c]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:50px;cursor:move}.c_product .list-box .content[data-v-399ee89c]{-webkit-box-flex:1;-ms-flex:1;flex:1}.c_product .list-box .content .con-item[data-v-399ee89c]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-bottom:15px}.c_product .list-box .content .con-item[data-v-399ee89c]:last-child{margin-bottom:0}.c_product .list-box .content .con-item span[data-v-399ee89c]{width:45px;font-size:13px}.c_product .add-btn[data-v-399ee89c]{margin-top:18px}.title[data-v-399ee89c]{padding-top:20px;font-size:12px;color:#999}.iconfont-diy[data-v-399ee89c]{color:#ddd;font-size:38px}.c_row-item[data-v-a9cfff72]{margin-top:20px;margin-bottom:20px}.setUp[data-v-42b10ac6] .ivu-tabs-nav-scroll{padding:0 30px}.setUp[data-v-42b10ac6] .ivu-tabs-nav .ivu-tabs-tab{padding:8px 45px}.c_row-item[data-v-35044b96]{margin-bottom:20px}.c_row-item .label[data-v-35044b96]{color:#999}.c_row-item[data-v-511e2a30]{margin-top:10px;margin-bottom:10px}.color-box[data-v-511e2a30]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.color-box .color-item[data-v-511e2a30]{margin-left:15px}.color-box .color-item span[data-v-511e2a30]{margin-left:5px;color:#999;font-size:13px;cursor:pointer}[data-v-4e7cb8ae] .el-radio-group .el-radio:after{height:0}[data-v-4e7cb8ae] .el-radio-group .el-radio{height:34px;-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;cursor:pointer;border:1px solid #dcdee2;position:relative;margin:0;padding:0 15px}[data-v-4e7cb8ae] .el-radio__label{padding-left:0}.el-radio-group .el-radio.is-checked[data-v-4e7cb8ae]{background:#fff;border-color:#2d8cf0;color:#2d8cf0;-webkit-box-shadow:-1px 0 0 0 #2d8cf0;box-shadow:-1px 0 0 0 #2d8cf0;z-index:1}.el-radio-group .el-radio.is-checked[data-v-4e7cb8ae]:first-child{border-color:#2d8cf0;-webkit-box-shadow:none;box-shadow:none}[data-v-4e7cb8ae] .el-radio-group .el-radio:nth-of-type(2){border-left:1px solid #dcdee2}[data-v-4e7cb8ae] .el-radio__inner{opacity:0;width:0;height:0}.radio-box[data-v-4e7cb8ae] .el-radio-group{display:-webkit-box;display:-ms-flexbox;display:flex;width:100%;-ms-flex-wrap:wrap;flex-wrap:wrap}.radio-box[data-v-4e7cb8ae] .el-radio-group .ivu-radio-wrapper{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.radio-box.on[data-v-4e7cb8ae] .el-radio{-webkit-box-flex:unset;-ms-flex:unset;flex:unset;width:67px;margin-right:20px;border-radius:4px}.title-tips[data-v-4e7cb8ae]{padding-bottom:10px;font-size:14px;color:#333}.title-tips span[data-v-4e7cb8ae]{margin-right:14px;color:#999}.iconfont-diy[data-v-4e7cb8ae]{font-size:20px;line-height:18px}.txt_tab[data-v-42995300]{margin-top:20px}.c_row-item[data-v-42995300]{margin-bottom:20px}.row-item[data-v-42995300]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.iconfont[data-v-42995300]{font-size:18px}.color-box[data-v-42995300]{position:relative;max-width:100%;min-height:1px}.el-radio-group[data-v-42995300]{display:inline-block;font-size:0;vertical-align:middle;-webkit-text-size-adjust:none}[data-v-42995300] .el-radio-group .el-radio:after{height:0}[data-v-42995300] .el-radio-group .el-radio{display:inline-block;height:32px;line-height:30px;margin:0;padding:0 15px;font-size:14px;color:#515a6e;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;cursor:pointer;border:1px solid #dcdee2;border-left:0;background:#fff;position:relative}[data-v-42995300] .el-radio-group .el-radio:first-child{border-radius:4px 0 0 4px;border-left:1px solid #dcdee2}[data-v-42995300] .el-radio__label{padding-left:0}.el-radio-group .el-radio.is-checked[data-v-42995300]{background:#fff;border-color:#2d8cf0;color:#2d8cf0;-webkit-box-shadow:-1px 0 0 0 #2d8cf0;box-shadow:-1px 0 0 0 #2d8cf0;z-index:1}.el-radio-group .el-radio.is-checked[data-v-42995300]:first-child{border-color:#2d8cf0;-webkit-box-shadow:none;box-shadow:none}[data-v-42995300] .el-radio-group .el-radio:nth-of-type(2){border-left:1px solid #dcdee2}[data-v-42995300] .el-radio__inner{opacity:0;width:0;height:0}.header[data-v-279b1e0a]{font-size:14px;color:#000}.title[data-v-279b1e0a]{margin-bottom:10px;padding-bottom:10px;border-bottom:1px solid rgba(0,0,0,.05);font-size:12px;color:#999}.box[data-v-279b1e0a]{width:80px;height:80px;margin-bottom:10px;position:relative}.box .iconfont-diy[data-v-279b1e0a]{position:absolute;top:-15px;right:-8px;font-size:25px;color:#999}.box img[data-v-279b1e0a]{width:100%;height:100%}.upload-box[data-v-279b1e0a]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;width:80px;height:80px;background:#f7f7f7;font-size:12px;color:#ccc}.upload-box .iconfont[data-v-279b1e0a]{font-size:16px}.title-tips[data-v-b21cd35c]{padding-bottom:10px;font-size:14px;color:#333}.title-tips span[data-v-b21cd35c]{margin-right:14px;color:#999}.title-tips[data-v-ff2b709e]{padding-bottom:10px;font-size:14px;color:#333}.title-tips span[data-v-ff2b709e]{margin-right:14px;color:#999}.pro[data-v-7b44f013]{padding:15px 15px 0}.pro .tips[data-v-7b44f013]{height:50px;line-height:50px;color:#999;font-size:12px;border-bottom:1px solid rgba(0,0,0,.05)}.pro .btn-box[data-v-7b44f013]{padding-bottom:20px}.hot[data-v-50f148c3]{padding-left:14px;padding-right:14px}.pro[data-v-149503b3]{padding:0 15px}.pro .tips[data-v-149503b3]{height:50px;line-height:50px;color:#999;font-size:12px;border-bottom:1px solid rgba(0,0,0,.05)}.pro .btn-box[data-v-149503b3]{padding-bottom:20px}.title-tips[data-v-ff759d2a]{padding-bottom:10px;font-size:14px;color:#333}.title-tips span[data-v-ff759d2a]{margin-right:14px;color:#999}[data-v-2088a878] .ivu-radio-group-button.ivu-radio-group-large .ivu-radio-wrapper{width:52px!important;margin-bottom:10px;margin-right:9px!important}.pro[data-v-2088a878]{padding:15px 15px 0}.pro .tips[data-v-2088a878]{height:50px;line-height:50px;color:#999;font-size:12px;border-bottom:1px solid rgba(0,0,0,.05)}.btn-box[data-v-2088a878]{padding-bottom:20px}.title-tips[data-v-8741f466]{padding-bottom:10px;font-size:14px;color:#333}.title-tips span[data-v-8741f466]{margin-right:14px;color:#999}.upload-box[data-v-6a6281b6]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;width:80px;height:80px;background:#f7f7f7;font-size:12px;color:#ccc}[data-v-6a6281b6] .el-radio{display:inline-block;height:32px;line-height:30px;margin:0;padding:0 15px;color:#515a6e;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;cursor:pointer;border:1px solid #dcdee2;border-left:0;background:#fff;position:relative}[data-v-6a6281b6] .el-radio:first-child{border-radius:4px 0 0 4px;border-left:1px solid #dcdee2}[data-v-6a6281b6] .el-radio .el-radio__input{display:inline-block;margin-right:4px;white-space:nowrap;position:relative;line-height:1;vertical-align:middle;cursor:pointer;width:0;margin-right:0}[data-v-6a6281b6] .el-radio>span{margin-left:0}[data-v-6a6281b6] .el-radio .el-radio__inner{opacity:0;width:0;height:0}[data-v-6a6281b6] .el-radio .el-radio__label{padding-left:0}.slider-box .title[data-v-6a6281b6]{color:#999;font-size:13px;margin-bottom:5px}.c_row-item[data-v-6a6281b6]{padding:0 15px;margin-top:22px}.slider-box .color[data-v-6a6281b6]{margin-bottom:15px}.boxs[data-v-6a6281b6]{width:60px;height:60px;margin-bottom:10px;position:relative}.boxs .replace[data-v-6a6281b6]{background:rgba(0,0,0,.4);border-radius:0 0 6px 6px;position:absolute;bottom:0;left:0;width:100%;color:#fff;font-size:12px;text-align:center;height:24px;line-height:24px}.boxs .iconfont-diy[data-v-6a6281b6]{position:absolute;top:-15px;right:-8px;font-size:25px;color:#999}.boxs img[data-v-6a6281b6]{width:100%;height:100%;border-radius:6px}.page-fooot[data-v-881cfbe2]{display:-webkit-box;display:-ms-flexbox;display:flex;background:#fff}.page-fooot .foot-item[data-v-881cfbe2]{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:50px}.page-fooot .foot-item img[data-v-881cfbe2]{width:25px;height:25px}.page-fooot .foot-item p[data-v-881cfbe2]{padding:0;margin:0;font-size:12px;color:#282828}.page-fooot .foot-item p.on[data-v-881cfbe2]{color:#00a4f8}.product_tabs[data-v-5526c018]{padding:16px 32px;background:#fff;border-bottom:1px solid #e8eaec;text-align:right}.ysize[data-v-5526c018]{background-size:100%}.fullsize[data-v-5526c018]{background-size:100% 100%}.repeat[data-v-5526c018]{background-repeat:repeat}.noRepeat[data-v-5526c018]{background-repeat:no-repeat}[data-v-5526c018] .el-input__inner{font-size:13px}.defaultData[data-v-5526c018]{cursor:pointer;position:absolute;left:50%;margin-left:245px}.defaultData .data[data-v-5526c018]{margin-top:20px;color:#282828;background-color:#fff;width:94px;text-align:center;height:32px;line-height:32px;border-radius:3px;font-size:12px}.defaultData .data[data-v-5526c018]:hover{background-color:#2d8cf0;color:#fff;border:0}.overflowy .picture[data-v-5526c018]{width:379px;height:20px;margin:0 auto;background-color:#fff}.bnt[data-v-5526c018]{width:80px!important}[data-v-5526c018]::-webkit-scrollbar-thumb{-webkit-box-shadow:inset 0 0 6px #fff;display:none}.left[data-v-5526c018]:hover::-webkit-scrollbar-thumb,.right-box[data-v-5526c018]:hover::-webkit-scrollbar-thumb{display:block}.contxt[data-v-5526c018]:hover ::-webkit-scrollbar-thumb{display:block}[data-v-5526c018]::-webkit-scrollbar{width:4px!important}.store-home[data-v-5526c018]{width:379px;margin:0 auto;background-image:-webkit-gradient(linear,left bottom,left top,from(rgba(0,0,0,.9)),to(rgba(0,0,0,.5))),url(../../mer/img/mer_banner.8479a608.jpg);background-image:linear-gradient(0deg,rgba(0,0,0,.9),rgba(0,0,0,.5)),url(../../mer/img/mer_banner.8479a608.jpg);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;background-position:0 0/750px 200px no-repeat fixed;overflow:hidden}.header[data-v-5526c018]{position:relative;z-index:6;padding-right:17px;height:43px;padding-left:16px}.header .head-menu[data-v-5526c018],.header[data-v-5526c018]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.header .head-menu[data-v-5526c018]{height:27px;width:70px;background:rgba(0,0,0,.25);border-radius:13px}.header .head-menu .icon-xiangzuo[data-v-5526c018]{font-size:16px;color:#fff}.header .head-menu .iconfont-h5[data-v-5526c018]{-webkit-box-flex:1;-ms-flex:1;flex:1;text-align:center;color:#fff;-webkit-box-sizing:border-box;box-sizing:border-box}.header .head-menu .iconfont-h5.icon-xiangzuo[data-v-5526c018]{border-right:1px solid hsla(0,0%,100%,.3)}.header .search[data-v-5526c018]{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;min-width:0;height:30px;border-radius:15px;margin-left:16px;background-color:#fff;font-weight:500;font-size:13px;color:#999}.header .search .iconfont-h5[data-v-5526c018]{margin-right:6px;margin-left:15px;font-size:12px}.store[data-v-5526c018]{position:relative;z-index:6;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding-right:10px;padding-left:10px;padding-top:10px;padding-bottom:11px}.store image[data-v-5526c018]{width:37px;height:37px;border-radius:3px}.store .kefu[data-v-5526c018]{color:#fff;margin-right:13px;cursor:pointer}.store .kefu .icon-kefu3[data-v-5526c018]{font-size:17px}.store .text[data-v-5526c018]{-webkit-box-flex:1;-ms-flex:1;flex:1;min-width:0;margin-right:10px;margin-left:10px}.store .text div[data-v-5526c018]{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;max-width:100%}.store .text div .name[data-v-5526c018]{-webkit-box-flex:1;-ms-flex:1;flex:1;min-width:0;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;font-weight:700;font-size:15px;line-height:1;color:#fff}.store .text div .iconfont-h5[data-v-5526c018]{margin-left:5px;font-size:8px;color:#fff}.store .text .score[data-v-5526c018]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-top:10px;font-weight:500;font-size:12px;line-height:1;color:#fff}.store .text .score .star[data-v-5526c018]{position:relative;width:56px;height:10px;margin-right:5px;background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAG8AAAATCAMAAACp+6PoAAAAZlBMVEUAAADpMyPpMyPpMyPpMyPpMyPpMyPpMyPpMyPpMyPpMyPpMyPpMyPpMyPpMyPpMyPpMyPpMyPpMyPpMyPpMyPpMyPpMyPpMyPpMyPpMyPpMyPpMyPpMyPpMyPpMyPpMyPpMyPpMyPKqB2aAAAAIXRSTlMA/Onfy7+oG9LPxrOrloaAbWBNRzkjHgTukHJxPzIvCgcVzGbCAAAAnUlEQVRIx73QRxLDIBQDUNzAce9OT/79LxnBTAaXtdBG6M1fof4x9aR8+JyLrKhQPInIAx2KC9gVHYhnsek9UHkZC2fJMCs2v5syEZ84u41UlnNwyePqRCkuiawPdPngksl6T+6QyuXxH9gceTOYbF7E54XN5ufGOmw2dxvT2Gyu7Ijb1FaOzeZEJGpWpfoYD2w2D1lt3OPbZncUk38iPXa8mx9k4gAAAABJRU5ErkJggg==) 0 0/100% 100% no-repeat;overflow:hidden}.store .text .score .star span[data-v-5526c018]{position:absolute;top:0;left:0;width:100%;height:100%}.store .button[data-v-5526c018]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:56px;height:24px;border-radius:12px;background-color:#e93323;font-weight:500;font-size:11px;color:#fff}.store .button .iconfont[data-v-5526c018]{margin-right:6rpx;font-size:22rpx}.store .button.gary[data-v-5526c018]{background-color:#999}.font-bg-red[data-v-5526c018]{display:inline-block;color:#fff;font-size:11px;text-align:center;border-radius:2px;padding:0 2px;line-height:15px;margin-right:4px;background-color:#e93323;border:1px solid #e93323}.nav[data-v-5526c018]{position:relative}.nav .nav-cont[data-v-5526c018]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:42px}.nav .nav-cont .item[data-v-5526c018]{-webkit-box-flex:1;-ms-flex:1;flex:1;min-width:0}.nav .nav-cont .item .cont[data-v-5526c018],.nav .nav-cont .item[data-v-5526c018]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.nav .nav-cont .item .cont[data-v-5526c018]{width:58px;height:22px;border-radius:11px;font-weight:500;font-size:12px;color:#fff}.nav .nav-cont .item .cont .arrow-icon[data-v-5526c018]{margin-left:5px;font-size:9px}.nav .nav-cont .item .cont .icon-pailie[data-v-5526c018],.nav .nav-cont .item .cont .layout-icon[data-v-5526c018]{font-size:16px}.nav .nav-cont .item .cont image[data-v-5526c018]{width:8px;height:10px;margin-left:3px}.nav .nav-cont .active .cont[data-v-5526c018]{background-color:#fff;font-weight:700;color:#e93323}.footer[data-v-5526c018]{display:-webkit-box;display:-ms-flexbox;display:flex;width:379px;margin:0 auto;height:50px;background-color:#fff;opacity:.96}.footer .item[data-v-5526c018]{-webkit-box-flex:1;-ms-flex:1;flex:1;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;font-weight:500;font-size:10px;color:#282828}.footer .item .iconfont-h5[data-v-5526c018]{font-size:22px}.footer .item .icon-zhuanti[data-v-5526c018]{font-size:18px}.footer .active[data-v-5526c018]{color:#e93323}.scrollCon[data-v-5526c018]{overflow-y:scroll;overflow-x:hidden}.scroll-box .position[data-v-5526c018]{display:block!important;height:40px;text-align:center;line-height:40px;border:1px dashed #1890ff;color:#1890ff;background-color:#edf4fb}.scroll-box .conter[data-v-5526c018]{display:none!important}.dragClass[data-v-5526c018]{background-color:#fff}.ivu-mt[data-v-5526c018]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.iconfont-diy[data-v-5526c018]{font-size:24px;color:#1890ff}.diy-wrapper[data-v-5526c018]{max-width:100%;min-width:1100px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.diy-wrapper .left[data-v-5526c018]{min-width:300px;max-width:300px;border-radius:4px;height:100%}.diy-wrapper .left .title-bar[data-v-5526c018]{display:-webkit-box;display:-ms-flexbox;display:flex;color:#333;border-bottom:1px solid #eee;border-radius:4px;cursor:pointer}.diy-wrapper .left .title-bar .title-item[data-v-5526c018]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-flex:1;-ms-flex:1;flex:1;height:45px}.diy-wrapper .left .title-bar .title-item.on[data-v-5526c018]{color:#1890ff;font-size:14px;border-bottom:1px solid #1890ff}.diy-wrapper .left .wrapper[data-v-5526c018]{padding:15px;overflow-y:scroll;-webkit-overflow-scrolling:touch}.diy-wrapper .left .wrapper .tips[data-v-5526c018]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;padding-bottom:15px;font-size:13px;color:#000;cursor:pointer}.diy-wrapper .left .wrapper .tips .ivu-icon[data-v-5526c018]{color:#000}.diy-wrapper .left .link-item[data-v-5526c018]{padding:10px;border-bottom:1px solid #f5f5f5;font-size:12px;color:#323232}.diy-wrapper .left .link-item .name[data-v-5526c018]{font-size:14px;color:#1890ff}.diy-wrapper .left .link-item .link-txt[data-v-5526c018]{margin-top:2px;word-break:break-all}.diy-wrapper .left .link-item .params[data-v-5526c018]{margin-top:5px;color:#1cbe6b;word-break:break-all}.diy-wrapper .left .link-item .params .txt[data-v-5526c018]{color:#323232}.diy-wrapper .left .link-item .params span:last-child i[data-v-5526c018]{display:none;color:red}.diy-wrapper .left .link-item .lable[data-v-5526c018]{display:-webkit-box;display:-ms-flexbox;display:flex;margin-top:5px;color:#999;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.diy-wrapper .left .link-item .lable p[data-v-5526c018]{-webkit-box-flex:1;-ms-flex:1;flex:1;word-break:break-all}.diy-wrapper .left .link-item .lable button[data-v-5526c018]{margin-left:30px}.diy-wrapper .left .dragArea.list-group[data-v-5526c018]{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.diy-wrapper .left .dragArea.list-group .list-group-item[data-v-5526c018]{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:74px;height:66px;margin-right:17px;margin-bottom:10px;font-size:12px;color:#666;cursor:pointer;border-radius:5px;text-align:center}.diy-wrapper .left .dragArea.list-group .list-group-item[data-v-5526c018]:hover{-webkit-box-shadow:0 0 5px 0 rgba(24,144,255,.3);box-shadow:0 0 5px 0 rgba(24,144,255,.3);border-right:5px}.diy-wrapper .left .dragArea.list-group .list-group-item[data-v-5526c018]:nth-child(3n){margin-right:0}.diy-wrapper .content[data-v-5526c018]{position:relative;height:100%;width:100%}.diy-wrapper .content .page-foot[data-v-5526c018]{position:relative;width:379px;margin:0 auto 20px auto}.diy-wrapper .content .page-foot .delete-box[data-v-5526c018]{display:none;position:absolute;left:-2px;top:0;width:383px;height:100%;border:2px dashed #1890ff;padding:10px 0}.diy-wrapper .content .page-foot.on[data-v-5526c018]{cursor:move}.diy-wrapper .content .page-foot.on .delete-box[data-v-5526c018]{display:block;border:2px solid #1890ff;-webkit-box-shadow:0 0 10px 0 rgba(24,144,255,.3);box-shadow:0 0 10px 0 rgba(24,144,255,.3)}.diy-wrapper .content .page-title[data-v-5526c018]{position:relative;height:35px;line-height:35px;background:#fff;font-size:15px;color:#333;text-align:center;width:379px;margin:0 auto}.diy-wrapper .content .page-title .delete-box[data-v-5526c018]{display:none;position:absolute;left:-2px;top:0;width:383px;height:100%;border:2px dashed #1890ff;padding:10px 0}.diy-wrapper .content .page-title .delete-box span[data-v-5526c018]{position:absolute;right:0;bottom:0;width:32px;height:16px;line-height:16px;display:inline-block;text-align:center;font-size:10px;color:#fff;background:rgba(0,0,0,.4);margin-left:2px;cursor:pointer;z-index:11}.diy-wrapper .content .page-title.on[data-v-5526c018]{cursor:move}.diy-wrapper .content .page-title.on .delete-box[data-v-5526c018]{display:block;border:2px solid #1890ff;-webkit-box-shadow:0 0 10px 0 rgba(24,144,255,.3);box-shadow:0 0 10px 0 rgba(24,144,255,.3)}.diy-wrapper .content .scroll-box[data-v-5526c018]{-webkit-box-flex:1;-ms-flex:1;flex:1;background-color:#fff;width:379px;margin:0 auto;padding-top:1px}.diy-wrapper .content .dragArea.list-group[data-v-5526c018]{width:100%;height:100%}.diy-wrapper .content .dragArea.list-group .mConfig-item[data-v-5526c018]{position:relative;cursor:move}.diy-wrapper .content .dragArea.list-group .mConfig-item .delete-box[data-v-5526c018]{display:none;position:absolute;left:-2px;top:0;width:383px;height:100%;border:2px dashed #1890ff}.diy-wrapper .content .dragArea.list-group .mConfig-item .delete-box .handleType[data-v-5526c018]{position:absolute;right:-43px;top:0;width:36px;height:143px;border-radius:4px;background-color:#1890ff;cursor:pointer;color:#fff;font-weight:700;text-align:center;padding:4px 0}.diy-wrapper .content .dragArea.list-group .mConfig-item .delete-box .handleType .iconfont[data-v-5526c018]{padding:5px 0}.diy-wrapper .content .dragArea.list-group .mConfig-item .delete-box .handleType .iconfont.on[data-v-5526c018]{opacity:.4}.diy-wrapper .content .dragArea.list-group .mConfig-item.on[data-v-5526c018]{cursor:move}.diy-wrapper .content .dragArea.list-group .mConfig-item.on .delete-box[data-v-5526c018]{display:block;border:2px solid #1890ff;-webkit-box-shadow:0 0 10px 0 rgba(24,144,255,.3);box-shadow:0 0 10px 0 rgba(24,144,255,.3)}.diy-wrapper .right-box[data-v-5526c018]{max-width:400px;min-width:400px;height:100%;border-radius:4px;overflow:scroll;-webkit-overflow-scrolling:touch}.diy-wrapper .right-box .title-bar[data-v-5526c018]{width:100%;height:45px;line-height:45px;padding-left:24px;color:#000;border-radius:4px;border-bottom:1px solid #eee;font-size:14px}.diy-wrapper[data-v-5526c018] ::-webkit-scrollbar{width:6px;background-color:transparent}.diy-wrapper[data-v-5526c018] ::-webkit-scrollbar-track{border-radius:10px}.diy-wrapper[data-v-5526c018] ::-webkit-scrollbar-thumb{background-color:#bfc1c4}.foot-box[data-v-5526c018]{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;height:80px;background:#fff;-webkit-box-shadow:0 -2px 4px 0 rgba(0,0,0,.03);box-shadow:0 -2px 4px 0 rgba(0,0,0,.03)}.foot-box button[data-v-5526c018]{width:100px;height:32px;font-size:13px}.foot-box button[data-v-5526c018]:first-child{margin-right:20px}[data-v-5526c018] .ivu-scroll-loader{display:none}[data-v-5526c018] .el-card{bordr:none;-webkit-box-shadow:none;box-shadow:none}[data-v-5526c018] .el-card__body{padding:0} \ No newline at end of file diff --git a/public/mer/css/chunk-dadf4114.3cf0a865.css b/public/mer/css/chunk-dadf4114.3cf0a865.css new file mode 100644 index 00000000..cbbdc58d --- /dev/null +++ b/public/mer/css/chunk-dadf4114.3cf0a865.css @@ -0,0 +1 @@ +.monaco-editor{font-family:-apple-system,BlinkMacSystemFont,Segoe WPC,Segoe UI,HelveticaNeue-Light,Ubuntu,Droid Sans,sans-serif}.monaco-editor.hc-black .monaco-menu .monaco-action-bar.vertical .action-menu-item:focus .action-label,.monaco-editor.vs-dark .monaco-menu .monaco-action-bar.vertical .action-menu-item:focus .action-label,.monaco-menu .monaco-action-bar.vertical .action-item .action-menu-item:focus .action-label{stroke-width:1.2px}.monaco-editor-hover p{margin:0}.monaco-editor.hc-black{-ms-high-contrast-adjust:none}@media screen and (-ms-high-contrast:active){.monaco-editor.vs-dark .view-overlays .current-line,.monaco-editor.vs .view-overlays .current-line{border-color:windowtext!important;border-left:0;border-right:0}.monaco-editor.vs-dark .cursor,.monaco-editor.vs .cursor{background-color:windowtext!important}.monaco-editor.vs-dark .dnd-target,.monaco-editor.vs .dnd-target{border-color:windowtext!important}.monaco-editor.vs-dark .selected-text,.monaco-editor.vs .selected-text{background-color:highlight!important}.monaco-editor.vs-dark .view-line,.monaco-editor.vs .view-line{-ms-high-contrast-adjust:none}.monaco-editor.vs-dark .view-line span,.monaco-editor.vs .view-line span{color:windowtext!important}.monaco-editor.vs-dark .view-line span.inline-selected-text,.monaco-editor.vs .view-line span.inline-selected-text{color:highlighttext!important}.monaco-editor.vs-dark .view-overlays,.monaco-editor.vs .view-overlays{-ms-high-contrast-adjust:none}.monaco-editor.vs-dark .reference-decoration,.monaco-editor.vs-dark .selectionHighlight,.monaco-editor.vs-dark .wordHighlight,.monaco-editor.vs-dark .wordHighlightStrong,.monaco-editor.vs .reference-decoration,.monaco-editor.vs .selectionHighlight,.monaco-editor.vs .wordHighlight,.monaco-editor.vs .wordHighlightStrong{border:2px dotted highlight!important;background:transparent!important;-webkit-box-sizing:border-box;box-sizing:border-box}.monaco-editor.vs-dark .rangeHighlight,.monaco-editor.vs .rangeHighlight{background:transparent!important;border:1px dotted activeborder!important;-webkit-box-sizing:border-box;box-sizing:border-box}.monaco-editor.vs-dark .bracket-match,.monaco-editor.vs .bracket-match{border-color:windowtext!important;background:transparent!important}.monaco-editor.vs-dark .currentFindMatch,.monaco-editor.vs-dark .findMatch,.monaco-editor.vs .currentFindMatch,.monaco-editor.vs .findMatch{border:2px dotted activeborder!important;background:transparent!important;-webkit-box-sizing:border-box;box-sizing:border-box}.monaco-editor.vs-dark .find-widget,.monaco-editor.vs .find-widget{border:1px solid windowtext}.monaco-editor.vs-dark .monaco-list .monaco-list-row,.monaco-editor.vs .monaco-list .monaco-list-row{-ms-high-contrast-adjust:none;color:windowtext!important}.monaco-editor.vs-dark .monaco-list .monaco-list-row.focused,.monaco-editor.vs .monaco-list .monaco-list-row.focused{color:highlighttext!important;background-color:highlight!important}.monaco-editor.vs-dark .monaco-list .monaco-list-row:hover,.monaco-editor.vs .monaco-list .monaco-list-row:hover{background:transparent!important;border:1px solid highlight;-webkit-box-sizing:border-box;box-sizing:border-box}.monaco-editor.vs-dark .monaco-tree .monaco-tree-row,.monaco-editor.vs .monaco-tree .monaco-tree-row{-ms-high-contrast-adjust:none;color:windowtext!important}.monaco-editor.vs-dark .monaco-tree .monaco-tree-row.focused,.monaco-editor.vs-dark .monaco-tree .monaco-tree-row.selected,.monaco-editor.vs .monaco-tree .monaco-tree-row.focused,.monaco-editor.vs .monaco-tree .monaco-tree-row.selected{color:highlighttext!important;background-color:highlight!important}.monaco-editor.vs-dark .monaco-tree .monaco-tree-row:hover,.monaco-editor.vs .monaco-tree .monaco-tree-row:hover{background:transparent!important;border:1px solid highlight;-webkit-box-sizing:border-box;box-sizing:border-box}.monaco-editor.vs-dark .monaco-scrollable-element>.scrollbar,.monaco-editor.vs .monaco-scrollable-element>.scrollbar{-ms-high-contrast-adjust:none;background:background!important;border:1px solid windowtext;-webkit-box-sizing:border-box;box-sizing:border-box}.monaco-editor.vs-dark .monaco-scrollable-element>.scrollbar>.slider,.monaco-editor.vs .monaco-scrollable-element>.scrollbar>.slider{background:windowtext!important}.monaco-editor.vs-dark .monaco-scrollable-element>.scrollbar>.slider.active,.monaco-editor.vs-dark .monaco-scrollable-element>.scrollbar>.slider:hover,.monaco-editor.vs .monaco-scrollable-element>.scrollbar>.slider.active,.monaco-editor.vs .monaco-scrollable-element>.scrollbar>.slider:hover{background:highlight!important}.monaco-editor.vs-dark .decorationsOverviewRuler,.monaco-editor.vs .decorationsOverviewRuler{opacity:0}.monaco-editor.vs-dark .minimap,.monaco-editor.vs .minimap{display:none}.monaco-editor.vs-dark .squiggly-d-error,.monaco-editor.vs .squiggly-d-error{background:transparent!important;border-bottom:4px double #e47777}.monaco-editor.vs-dark .squiggly-b-info,.monaco-editor.vs-dark .squiggly-c-warning,.monaco-editor.vs .squiggly-b-info,.monaco-editor.vs .squiggly-c-warning{border-bottom:4px double #71b771}.monaco-editor.vs-dark .squiggly-a-hint,.monaco-editor.vs .squiggly-a-hint{border-bottom:4px double #6c6c6c}.monaco-editor.vs-dark .monaco-menu .monaco-action-bar.vertical .action-menu-item:focus .action-label,.monaco-editor.vs .monaco-menu .monaco-action-bar.vertical .action-menu-item:focus .action-label{-ms-high-contrast-adjust:none;color:highlighttext!important;background-color:highlight!important}.monaco-editor.vs-dark .monaco-menu .monaco-action-bar.vertical .action-menu-item:hover .action-label,.monaco-editor.vs .monaco-menu .monaco-action-bar.vertical .action-menu-item:hover .action-label{-ms-high-contrast-adjust:none;background:transparent!important;border:1px solid highlight;-webkit-box-sizing:border-box;box-sizing:border-box}.monaco-diff-editor.vs-dark .diffOverviewRuler,.monaco-diff-editor.vs .diffOverviewRuler{display:none}.monaco-editor.vs-dark .line-delete,.monaco-editor.vs-dark .line-insert,.monaco-editor.vs .line-delete,.monaco-editor.vs .line-insert{background:transparent!important;border:1px solid highlight!important;-webkit-box-sizing:border-box;box-sizing:border-box}.monaco-editor.vs-dark .char-delete,.monaco-editor.vs-dark .char-insert,.monaco-editor.vs .char-delete,.monaco-editor.vs .char-insert{background:transparent!important}}.monaco-aria-container{position:absolute;left:-999em}::-ms-clear{display:none}.monaco-editor .editor-widget input{color:inherit}.monaco-editor{position:relative;overflow:visible;-webkit-text-size-adjust:100%}.monaco-editor .overflow-guard{position:relative;overflow:hidden}.monaco-editor .view-overlays{position:absolute;top:0}.monaco-editor .inputarea{min-width:0;min-height:0;margin:0;padding:0;position:absolute;outline:none!important;resize:none;border:none;overflow:hidden;color:transparent;background-color:transparent}.monaco-editor .inputarea.ime-input{z-index:10}.monaco-editor .margin-view-overlays .line-numbers{position:absolute;text-align:right;display:inline-block;vertical-align:middle;-webkit-box-sizing:border-box;box-sizing:border-box;cursor:default;height:100%}.monaco-editor .relative-current-line-number{text-align:left;display:inline-block;width:100%}.monaco-editor .margin-view-overlays .line-numbers{cursor:-webkit-image-set(url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNSIgaGVpZ2h0PSIyNSI+PHBhdGggZmlsbD0iI2ZmZiIgc3Ryb2tlPSIjMDAwIiBkPSJNMTQuNSAxLjJMMS45IDEzLjhIN2wtMy44IDcuNyAzLjEgMSAzLjgtNy42IDQuNCAzLjF6Ii8+PC9zdmc+") 1x,url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMCIgaGVpZ2h0PSI1MCI+PHBhdGggZmlsbD0iI2ZmZiIgc3Ryb2tlPSIjMDAwIiBzdHJva2Utd2lkdGg9IjIiIGQ9Ik0yOSAyLjRMMy44IDI3LjZIMTRMNi40IDQzbDYuMiAyIDcuNi0xNS4yTDI5IDM2eiIvPjwvc3ZnPg==") 2x) 30 0,default}.monaco-editor.mac .margin-view-overlays .line-numbers{cursor:-webkit-image-set(url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMyIgaGVpZ2h0PSIxOSI+PHBhdGggZD0iTTUuMyAxNi42bDEuNi00LjdIMi4xTDEyLjUgMS4ydjE0LjRMOS43IDEzbC0xLjYgNC42Yy0uMi41LS44LjgtMS4zLjZsLS44LS4zYy0uNi0uMi0uOS0uNy0uNy0xLjN6IiBzdHJva2U9IiNmZmYiIHN0cm9rZS1taXRlcmxpbWl0PSIxMCIvPjwvc3ZnPg==") 1x,url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNiIgaGVpZ2h0PSIzOCI+PHBhdGggZD0iTTEwLjYgMzMuMmwzLjItOS40SDQuMkwyNSAyLjR2MjguOEwxOS40IDI2bC0zLjIgOS4yYy0uNCAxLTEuNiAxLjYtMi42IDEuMmwtMS42LS42Yy0xLjItLjQtMS44LTEuNC0xLjQtMi42eiIgc3Ryb2tlPSIjZmZmIiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiLz48L3N2Zz4=") 2x) 24 3,default}.monaco-editor .margin-view-overlays .line-numbers.lh-odd{margin-top:1px}.monaco-editor .margin-view-overlays .current-line,.monaco-editor .view-overlays .current-line{display:block;position:absolute;left:0;top:0;-webkit-box-sizing:border-box;box-sizing:border-box}.monaco-editor .margin-view-overlays .current-line.current-line-margin.current-line-margin-both{border-right:0}.monaco-editor .lines-content .cdr{position:absolute}.monaco-scrollable-element>.scrollbar>.up-arrow{background:url("data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTEgMTEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTkuNDggOC45NjFsMS4yNi0xLjI2LTUuMDQtNS4wNC01LjQ2IDUuMDQgMS4yNiAxLjI2IDQuMi0zLjc4IDMuNzggMy43OHoiIGZpbGw9IiM0MjQyNDIiLz48L3N2Zz4=");cursor:pointer}.monaco-scrollable-element>.scrollbar>.down-arrow{background:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxMSAxMSI+PHBhdGggZmlsbD0iIzQyNDI0MiIgZD0iTTEuNSAyLjY2MkwuMjQgMy45MjJsNS4wNCA1LjA0IDUuNDYtNS4wNC0xLjI2LTEuMjYtNC4yIDMuNzgtMy43OC0zLjc4eiIvPjwvc3ZnPg==");cursor:pointer}.monaco-scrollable-element>.scrollbar>.left-arrow{background:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxMSAxMSI+PHBhdGggZmlsbD0iIzQyNDI0MiIgZD0iTTguNjQgMS40NDFMNy4zOC4xODFsLTUuMDQgNS4wNCA1LjA0IDUuNDYgMS4yNi0xLjI2LTMuNzgtNC4yIDMuNzgtMy43OHoiLz48L3N2Zz4=");cursor:pointer}.monaco-scrollable-element>.scrollbar>.right-arrow{background:url("data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTEgMTEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZmlsbD0iIzQyNDI0MiIgZD0iTTIuNDY3IDkuNTQ4bDEuMjYgMS4yNiA1LjA0LTUuMDQtNS4wNC01LjQ2LTEuMjYgMS4yNiAzLjc4IDQuMi0zLjc4IDMuNzh6Ii8+PC9zdmc+");cursor:pointer}.hc-black .monaco-scrollable-element>.scrollbar>.up-arrow,.vs-dark .monaco-scrollable-element>.scrollbar>.up-arrow{background:url("data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTEgMTEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTkuNDggOC45NjFsMS4yNi0xLjI2LTUuMDQtNS4wNC01LjQ2IDUuMDQgMS4yNiAxLjI2IDQuMi0zLjc4IDMuNzggMy43OHoiIGZpbGw9IiNFOEU4RTgiLz48L3N2Zz4=")}.hc-black .monaco-scrollable-element>.scrollbar>.down-arrow,.vs-dark .monaco-scrollable-element>.scrollbar>.down-arrow{background:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxMSAxMSI+PHBhdGggZmlsbD0iI0U4RThFOCIgZD0iTTEuNSAyLjY2MkwuMjQgMy45MjJsNS4wNCA1LjA0IDUuNDYtNS4wNC0xLjI2LTEuMjYtNC4yIDMuNzgtMy43OC0zLjc4eiIvPjwvc3ZnPg==")}.hc-black .monaco-scrollable-element>.scrollbar>.left-arrow,.vs-dark .monaco-scrollable-element>.scrollbar>.left-arrow{background:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxMSAxMSI+PHBhdGggZmlsbD0iI0U4RThFOCIgZD0iTTguNjQgMS40NDFMNy4zOC4xODFsLTUuMDQgNS4wNCA1LjA0IDUuNDYgMS4yNi0xLjI2LTMuNzgtNC4yIDMuNzgtMy43OHoiLz48L3N2Zz4=")}.hc-black .monaco-scrollable-element>.scrollbar>.right-arrow,.vs-dark .monaco-scrollable-element>.scrollbar>.right-arrow{background:url("data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTEgMTEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZmlsbD0iI0U4RThFOCIgZD0iTTIuNDY3IDkuNTQ4bDEuMjYgMS4yNiA1LjA0LTUuMDQtNS4wNC01LjQ2LTEuMjYgMS4yNiAzLjc4IDQuMi0zLjc4IDMuNzh6Ii8+PC9zdmc+")}.monaco-scrollable-element>.visible{opacity:1;background:transparent;-webkit-transition:opacity .1s linear;transition:opacity .1s linear}.monaco-scrollable-element>.invisible{opacity:0;pointer-events:none}.monaco-scrollable-element>.invisible.fade{-webkit-transition:opacity .8s linear;transition:opacity .8s linear}.monaco-scrollable-element>.shadow{position:absolute;display:none}.monaco-scrollable-element>.shadow.top{display:block;top:0;left:3px;height:3px;width:100%;-webkit-box-shadow:#ddd 0 6px 6px -6px inset;box-shadow:inset 0 6px 6px -6px #ddd}.monaco-scrollable-element>.shadow.left{display:block;top:3px;left:0;height:100%;width:3px;-webkit-box-shadow:#ddd 6px 0 6px -6px inset;box-shadow:inset 6px 0 6px -6px #ddd}.monaco-scrollable-element>.shadow.top-left-corner{display:block;top:0;left:0;height:3px;width:3px}.monaco-scrollable-element>.shadow.top.left{-webkit-box-shadow:#ddd 6px 6px 6px -6px inset;box-shadow:inset 6px 6px 6px -6px #ddd}.vs .monaco-scrollable-element>.scrollbar>.slider{background:hsla(0,0%,39.2%,.4)}.vs-dark .monaco-scrollable-element>.scrollbar>.slider{background:hsla(0,0%,47.5%,.4)}.hc-black .monaco-scrollable-element>.scrollbar>.slider{background:rgba(111,195,223,.6)}.monaco-scrollable-element>.scrollbar>.slider:hover{background:hsla(0,0%,39.2%,.7)}.hc-black .monaco-scrollable-element>.scrollbar>.slider:hover{background:rgba(111,195,223,.8)}.monaco-scrollable-element>.scrollbar>.slider.active{background:rgba(0,0,0,.6)}.vs-dark .monaco-scrollable-element>.scrollbar>.slider.active{background:hsla(0,0%,74.9%,.4)}.hc-black .monaco-scrollable-element>.scrollbar>.slider.active{background:#6fc3df}.vs-dark .monaco-scrollable-element .shadow.top{-webkit-box-shadow:none;box-shadow:none}.vs-dark .monaco-scrollable-element .shadow.left{-webkit-box-shadow:#000 6px 0 6px -6px inset;box-shadow:inset 6px 0 6px -6px #000}.vs-dark .monaco-scrollable-element .shadow.top.left{-webkit-box-shadow:#000 6px 6px 6px -6px inset;box-shadow:inset 6px 6px 6px -6px #000}.hc-black .monaco-scrollable-element .shadow.left,.hc-black .monaco-scrollable-element .shadow.top,.hc-black .monaco-scrollable-element .shadow.top.left{-webkit-box-shadow:none;box-shadow:none}.monaco-editor .glyph-margin{position:absolute;top:0}.monaco-editor .margin-view-overlays .cgmr{position:absolute;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.monaco-editor .lines-content .cigr,.monaco-editor .lines-content .cigra{position:absolute}.monaco-editor.no-user-select .lines-content,.monaco-editor.no-user-select .view-line,.monaco-editor.no-user-select .view-lines{-moz-user-select:none;user-select:none;-webkit-user-select:none;-ms-user-select:none}.monaco-editor .view-lines{cursor:text;white-space:nowrap}.monaco-editor.hc-black.mac .view-lines,.monaco-editor.vs-dark.mac .view-lines{cursor:-webkit-image-set(url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAQAAAC1+jfqAAAAL0lEQVQoz2NgCD3x//9/BhBYBWdhgFVAiVW4JBFKGIa4AqD0//9D3pt4I4tAdAMAHTQ/j5Zom30AAAAASUVORK5CYII=) 1x,url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAQAAADZc7J/AAAAz0lEQVRIx2NgYGBY/R8I/vx5eelX3n82IJ9FxGf6tksvf/8FiTMQAcAGQMDvSwu09abffY8QYSAScNk45G198eX//yev73/4///701eh//kZSARckrNBRvz//+8+6ZohwCzjGNjdgQxkAg7B9WADeBjIBqtJCbhRA0YNoIkBSNmaPEMoNmA0FkYNoFKhapJ6FGyAH3nauaSmPfwI0v/3OukVi0CIZ+F25KrtYcx/CTIy0e+rC7R1Z4KMICVTQQ14feVXIbR695u14+Ir4gwAAD49E54wc1kWAAAAAElFTkSuQmCC) 2x) 5 8,text}.monaco-editor .view-line{position:absolute;width:100%}.monaco-editor .lines-decorations{position:absolute;top:0;background:#fff}.monaco-editor .margin-view-overlays .cldr{position:absolute;height:100%}.monaco-editor .margin-view-overlays .cmdr{position:absolute;left:0;width:100%;height:100%}.monaco-editor .minimap.slider-mouseover .minimap-slider{opacity:0;-webkit-transition:opacity .1s linear;transition:opacity .1s linear}.monaco-editor .minimap.slider-mouseover .minimap-slider.active,.monaco-editor .minimap.slider-mouseover:hover .minimap-slider{opacity:1}.monaco-editor .minimap-shadow-hidden{position:absolute;width:0}.monaco-editor .minimap-shadow-visible{position:absolute;left:-6px;width:6px}.monaco-editor .overlayWidgets{position:absolute;top:0;left:0}.monaco-editor .view-ruler{position:absolute;top:0}.monaco-editor .scroll-decoration{position:absolute;top:0;left:0;height:6px}.monaco-editor .lines-content .cslr{position:absolute}.monaco-editor .top-left-radius{border-top-left-radius:3px}.monaco-editor .bottom-left-radius{border-bottom-left-radius:3px}.monaco-editor .top-right-radius{border-top-right-radius:3px}.monaco-editor .bottom-right-radius{border-bottom-right-radius:3px}.monaco-editor.hc-black .top-left-radius{border-top-left-radius:0}.monaco-editor.hc-black .bottom-left-radius{border-bottom-left-radius:0}.monaco-editor.hc-black .top-right-radius{border-top-right-radius:0}.monaco-editor.hc-black .bottom-right-radius{border-bottom-right-radius:0}.monaco-editor .cursors-layer{position:absolute;top:0}.monaco-editor .cursors-layer>.cursor{position:absolute;cursor:text;overflow:hidden}.monaco-editor .cursors-layer.cursor-smooth-caret-animation>.cursor{-webkit-transition:all 80ms;transition:all 80ms}.monaco-editor .cursors-layer.cursor-block-outline-style>.cursor{-webkit-box-sizing:border-box;box-sizing:border-box;background:transparent!important;border-style:solid;border-width:1px}.monaco-editor .cursors-layer.cursor-underline-style>.cursor{border-bottom-width:2px;border-bottom-style:solid;background:transparent!important;-webkit-box-sizing:border-box;box-sizing:border-box}.monaco-editor .cursors-layer.cursor-underline-thin-style>.cursor{border-bottom-width:1px;border-bottom-style:solid;background:transparent!important;-webkit-box-sizing:border-box;box-sizing:border-box}@-webkit-keyframes monaco-cursor-smooth{0%,20%{opacity:1}60%,to{opacity:0}}@keyframes monaco-cursor-smooth{0%,20%{opacity:1}60%,to{opacity:0}}@-webkit-keyframes monaco-cursor-phase{0%,20%{opacity:1}90%,to{opacity:0}}@keyframes monaco-cursor-phase{0%,20%{opacity:1}90%,to{opacity:0}}@-webkit-keyframes monaco-cursor-expand{0%,20%{-webkit-transform:scaleY(1);transform:scaleY(1)}80%,to{-webkit-transform:scaleY(0);transform:scaleY(0)}}@keyframes monaco-cursor-expand{0%,20%{-webkit-transform:scaleY(1);transform:scaleY(1)}80%,to{-webkit-transform:scaleY(0);transform:scaleY(0)}}.cursor-smooth{-webkit-animation:monaco-cursor-smooth .5s ease-in-out 0s 20 alternate;animation:monaco-cursor-smooth .5s ease-in-out 0s 20 alternate}.cursor-phase{-webkit-animation:monaco-cursor-phase .5s ease-in-out 0s 20 alternate;animation:monaco-cursor-phase .5s ease-in-out 0s 20 alternate}.cursor-expand>.cursor{-webkit-animation:monaco-cursor-expand .5s ease-in-out 0s 20 alternate;animation:monaco-cursor-expand .5s ease-in-out 0s 20 alternate}.monaco-diff-editor .diffOverview{z-index:9}.monaco-diff-editor.vs .diffOverview{background:rgba(0,0,0,.03)}.monaco-diff-editor.vs-dark .diffOverview{background:hsla(0,0%,100%,.01)}.monaco-diff-editor .diffViewport{-webkit-box-shadow:inset 0 0 1px 0 #b9b9b9;box-shadow:inset 0 0 1px 0 #b9b9b9;background:rgba(0,0,0,.1)}.monaco-diff-editor.hc-black .diffViewport,.monaco-diff-editor.vs-dark .diffViewport{background:hsla(0,0%,100%,.1)}.monaco-scrollable-element.modified-in-monaco-diff-editor.vs-dark .scrollbar,.monaco-scrollable-element.modified-in-monaco-diff-editor.vs .scrollbar{background:transparent}.monaco-scrollable-element.modified-in-monaco-diff-editor.hc-black .scrollbar{background:none}.monaco-scrollable-element.modified-in-monaco-diff-editor .slider{z-index:10}.modified-in-monaco-diff-editor .slider.active{background:hsla(0,0%,67.1%,.4)}.modified-in-monaco-diff-editor.hc-black .slider.active{background:none}.monaco-diff-editor .delete-sign,.monaco-diff-editor .insert-sign,.monaco-editor .delete-sign,.monaco-editor .insert-sign{background-size:60%;opacity:.7;background-repeat:no-repeat;background-position:75%;background-size:11px 11px}.monaco-diff-editor.hc-black .delete-sign,.monaco-diff-editor.hc-black .insert-sign,.monaco-editor.hc-black .delete-sign,.monaco-editor.hc-black .insert-sign{opacity:1}.monaco-diff-editor .insert-sign,.monaco-editor .insert-sign{background-image:url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTE0IDd2MUg4djZIN1Y4SDFWN2g2VjFoMXY2aDZ6IiBmaWxsPSIjNDI0MjQyIi8+PC9zdmc+")}.monaco-diff-editor .delete-sign,.monaco-editor .delete-sign{background-image:url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTE1IDhIMVY3aDE0djF6IiBmaWxsPSIjNDI0MjQyIi8+PC9zdmc+")}.monaco-diff-editor.hc-black .insert-sign,.monaco-diff-editor.vs-dark .insert-sign,.monaco-editor.hc-black .insert-sign,.monaco-editor.vs-dark .insert-sign{background-image:url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTE0IDd2MUg4djZIN1Y4SDFWN2g2VjFoMXY2aDZ6IiBmaWxsPSIjQzVDNUM1Ii8+PC9zdmc+")}.monaco-diff-editor.hc-black .delete-sign,.monaco-diff-editor.vs-dark .delete-sign,.monaco-editor.hc-black .delete-sign,.monaco-editor.vs-dark .delete-sign{background-image:url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTE1IDhIMVY3aDE0djF6IiBmaWxsPSIjQzVDNUM1Ii8+PC9zdmc+")}.monaco-editor .inline-added-margin-view-zone,.monaco-editor .inline-deleted-margin-view-zone{text-align:right}.monaco-editor .diagonal-fill{background:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAJCAYAAADgkQYQAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAAadEVYdFNvZnR3YXJlAFBhaW50Lk5FVCB2My41LjEwMPRyoQAAAChJREFUKFNjOH/+fAMDDgCSu3Dhwn9c8gwwBTgNGR4KQP4HhQOhsAIAZCBTkhtqePcAAAAASUVORK5CYII=")}.monaco-editor.vs-dark .diagonal-fill{opacity:.2}.monaco-editor.hc-black .diagonal-fill{background:none}.monaco-editor .view-zones .view-lines .view-line span{display:inline-block}.monaco-editor .margin-view-zones .inline-deleted-margin-view-zone .lightbulb-glyph{background:url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xMS42NyA4LjY1OGMtLjMzOC4zMzQtLjU5OC43MDUtLjc4MSAxLjExNC0uMTc4LjQwNy0uMjY4Ljg1LS4yNjggMS4zMjl2MS42YTEuMzA0IDEuMzA0IDAgMCAxLS43OTQgMS4xOTdjLS4xNTkuMDY4LS4zMjkuMTAyLS41MDkuMTAySDcuNzEyYTEuMjg1IDEuMjg1IDAgMCAxLS45MjItLjM3OSAxLjMwMyAxLjMwMyAwIDAgMS0uMzgtLjkydi0xLjZjMC0uNDc5LS4wOTItLjkyMS0uMjc0LTEuMzI5YTMuNTU2IDMuNTU2IDAgMCAwLS43NzYtMS4xMTQgNC42ODkgNC42ODkgMCAwIDEtMS4wMDYtMS40MzdBNC4xODcgNC4xODcgMCAwIDEgNCA1LjVhNC40MzIgNC40MzIgMCAwIDEgLjYxNi0yLjI3Yy4xOTctLjMzNi40MzItLjY0LjcwNS0uOTE0LjI3NC0uMjcyLjU3OC0uNTA2LjkxMS0uNzAyLjMzOC0uMTk2LjctLjM0OCAxLjA4NC0uNDU0QzcuNyAxLjA1MyA4LjEgMSA4LjUxNiAxYTQuNDc2IDQuNDc2IDAgMCAxIDIuMjc2LjYxNCA0LjQ3NSA0LjQ3NSAwIDAgMSAxLjYyMiAxLjYxNiA0LjQzOCA0LjQzOCAwIDAgMSAuNjE2IDIuMjdjMCAuNjE3LS4xMTcgMS4xOTEtLjM1MyAxLjcyMWE0LjY5IDQuNjkgMCAwIDEtMS4wMDYgMS40Mzd6TTkuNjIzIDEwLjVINy40MDl2Mi4yMDFjMCAuMDgxLjAyOC4xNS4wOS4yMTIuMDYyLjA2MS4xMzEuMDkuMjEzLjA5aDEuNjA2YS4yODkuMjg5IDAgMCAwIC4yMTMtLjA5LjI4Ni4yODYgMCAwIDAgLjA5LS4yMTJWMTAuNXoiIGZpbGw9IiM0MjQyNDIiLz48cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTExLjY3IDguNjU4Yy0uMzM4LjMzNC0uNTk4LjcwNS0uNzgxIDEuMTE0LS4xNzguNDA3LS4yNjguODUtLjI2OCAxLjMyOXYxLjZhMS4zMDQgMS4zMDQgMCAwIDEtLjc5NCAxLjE5N2MtLjE1OS4wNjgtLjMyOS4xMDItLjUwOS4xMDJINy43MTJhMS4yODUgMS4yODUgMCAwIDEtLjkyMi0uMzc5IDEuMzAzIDEuMzAzIDAgMCAxLS4zOC0uOTJ2LTEuNmMwLS40NzktLjA5Mi0uOTIxLS4yNzQtMS4zMjlhMy41NTYgMy41NTYgMCAwIDAtLjc3Ni0xLjExNCA0LjY4OSA0LjY4OSAwIDAgMS0xLjAwNi0xLjQzN0E0LjE4NyA0LjE4NyAwIDAgMSA0IDUuNWE0LjQzMiA0LjQzMiAwIDAgMSAuNjE2LTIuMjdjLjE5Ny0uMzM2LjQzMi0uNjQuNzA1LS45MTQuMjc0LS4yNzIuNTc4LS41MDYuOTExLS43MDIuMzM4LS4xOTYuNy0uMzQ4IDEuMDg0LS40NTRDNy43IDEuMDUzIDguMSAxIDguNTE2IDFhNC40NzYgNC40NzYgMCAwIDEgMi4yNzYuNjE0IDQuNDc1IDQuNDc1IDAgMCAxIDEuNjIyIDEuNjE2IDQuNDM4IDQuNDM4IDAgMCAxIC42MTYgMi4yN2MwIC42MTctLjExNyAxLjE5MS0uMzUzIDEuNzIxYTQuNjkgNC42OSAwIDAgMS0xLjAwNiAxLjQzN3pNOS42MjMgMTAuNUg3LjQwOXYyLjIwMWMwIC4wODEuMDI4LjE1LjA5LjIxMi4wNjIuMDYxLjEzMS4wOS4yMTMuMDloMS42MDZhLjI4OS4yODkgMCAwIDAgLjIxMy0uMDkuMjg2LjI4NiAwIDAgMCAuMDktLjIxMlYxMC41eiIgZmlsbD0iIzQyNDI0MiIvPjwvc3ZnPg==") 50% no-repeat}.monaco-editor.hc-dark .margin-view-zones .inline-deleted-margin-view-zone .lightbulb-glyph,.monaco-editor.vs-dark .margin-view-zones .inline-deleted-margin-view-zone .lightbulb-glyph{background:url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xMS42NyA4LjY1OGMtLjMzOC4zMzQtLjU5OC43MDUtLjc4MSAxLjExNC0uMTc4LjQwNy0uMjY4Ljg1LS4yNjggMS4zMjl2MS42YTEuMzA0IDEuMzA0IDAgMCAxLS43OTQgMS4xOTdjLS4xNTkuMDY4LS4zMjkuMTAyLS41MDkuMTAySDcuNzEyYTEuMjg1IDEuMjg1IDAgMCAxLS45MjItLjM3OSAxLjMwMyAxLjMwMyAwIDAgMS0uMzgtLjkydi0xLjZjMC0uNDc5LS4wOTItLjkyMS0uMjc0LTEuMzI5YTMuNTU2IDMuNTU2IDAgMCAwLS43NzYtMS4xMTQgNC42ODkgNC42ODkgMCAwIDEtMS4wMDYtMS40MzdBNC4xODcgNC4xODcgMCAwIDEgNCA1LjVhNC40MzIgNC40MzIgMCAwIDEgLjYxNi0yLjI3Yy4xOTctLjMzNi40MzItLjY0LjcwNS0uOTE0LjI3NC0uMjcyLjU3OC0uNTA2LjkxMS0uNzAyLjMzOC0uMTk2LjctLjM0OCAxLjA4NC0uNDU0QzcuNyAxLjA1MyA4LjEgMSA4LjUxNiAxYTQuNDc2IDQuNDc2IDAgMCAxIDIuMjc2LjYxNCA0LjQ3NSA0LjQ3NSAwIDAgMSAxLjYyMiAxLjYxNiA0LjQzOCA0LjQzOCAwIDAgMSAuNjE2IDIuMjdjMCAuNjE3LS4xMTcgMS4xOTEtLjM1MyAxLjcyMWE0LjY5IDQuNjkgMCAwIDEtMS4wMDYgMS40Mzd6TTkuNjIzIDEwLjVINy40MDl2Mi4yMDFjMCAuMDgxLjAyOC4xNS4wOS4yMTIuMDYyLjA2MS4xMzEuMDkuMjEzLjA5aDEuNjA2YS4yODkuMjg5IDAgMCAwIC4yMTMtLjA5LjI4Ni4yODYgMCAwIDAgLjA5LS4yMTJWMTAuNXoiIGZpbGw9IiNDMkMyQzIiLz48L3N2Zz4=") 50% no-repeat}.monaco-editor .margin-view-zones .lightbulb-glyph:hover{cursor:pointer}.monaco-sash{position:absolute;z-index:35;-ms-touch-action:none;touch-action:none}.monaco-sash.disabled{pointer-events:none}.monaco-sash.vertical{cursor:ew-resize;top:0;width:4px;height:100%}.monaco-sash.mac.vertical{cursor:col-resize}.monaco-sash.vertical.minimum{cursor:e-resize}.monaco-sash.vertical.maximum{cursor:w-resize}.monaco-sash.horizontal{cursor:ns-resize;left:0;width:100%;height:4px}.monaco-sash.mac.horizontal{cursor:row-resize}.monaco-sash.horizontal.minimum{cursor:s-resize}.monaco-sash.horizontal.maximum{cursor:n-resize}.monaco-sash:not(.disabled).orthogonal-end:after,.monaco-sash:not(.disabled).orthogonal-start:before{content:" ";height:8px;width:8px;z-index:100;display:block;cursor:all-scroll;position:absolute}.monaco-sash.orthogonal-start.vertical:before{left:-2px;top:-4px}.monaco-sash.orthogonal-end.vertical:after{left:-2px;bottom:-4px}.monaco-sash.orthogonal-start.horizontal:before{top:-2px;left:-4px}.monaco-sash.orthogonal-end.horizontal:after{top:-2px;right:-4px}.monaco-sash.disabled{cursor:default!important;pointer-events:none!important}.monaco-sash.touch.vertical{width:20px}.monaco-sash.touch.horizontal{height:20px}.monaco-sash.debug{background:#0ff}.monaco-sash.debug.disabled{background:rgba(0,255,255,.2)}.monaco-sash.debug:not(.disabled).orthogonal-end:after,.monaco-sash.debug:not(.disabled).orthogonal-start:before{background:red}.monaco-diff-editor .diff-review-line-number{text-align:right;display:inline-block}.monaco-diff-editor .diff-review{position:absolute;-moz-user-select:none;user-select:none;-webkit-user-select:none;-ms-user-select:none}.monaco-diff-editor .diff-review-summary{padding-left:10px}.monaco-diff-editor .diff-review-shadow{position:absolute}.monaco-diff-editor .diff-review-row{white-space:pre}.monaco-diff-editor .diff-review-table{display:table;min-width:100%}.monaco-diff-editor .diff-review-row{display:table-row;width:100%}.monaco-diff-editor .diff-review-cell{display:table-cell}.monaco-diff-editor .diff-review-spacer{display:inline-block;width:10px}.monaco-diff-editor .diff-review-actions{display:inline-block;position:absolute;right:10px;top:2px}.monaco-diff-editor .diff-review-actions .action-label{width:16px;height:16px;margin:2px 0}.monaco-diff-editor .action-label.icon.close-diff-review{background:url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik04IDguNzA3bDMuNjQ2IDMuNjQ3LjcwOC0uNzA3TDguNzA3IDhsMy42NDctMy42NDYtLjcwNy0uNzA4TDggNy4yOTMgNC4zNTQgMy42NDZsLS43MDguNzA4TDcuMjkzIDhsLTMuNjQ3IDMuNjQ2LjcwOC43MDhMOCA4LjcwN3oiIGZpbGw9IiM0MjQyNDIiLz48L3N2Zz4=") 50% no-repeat}.monaco-diff-editor.hc-black .action-label.icon.close-diff-review,.monaco-diff-editor.vs-dark .action-label.icon.close-diff-review{background:url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik04IDguNzA3bDMuNjQ2IDMuNjQ3LjcwOC0uNzA3TDguNzA3IDhsMy42NDctMy42NDYtLjcwNy0uNzA4TDggNy4yOTMgNC4zNTQgMy42NDZsLS43MDguNzA4TDcuMjkzIDhsLTMuNjQ3IDMuNjQ2LjcwOC43MDhMOCA4LjcwN3oiIGZpbGw9IiNDNUM1QzUiLz48L3N2Zz4=") 50% no-repeat}.monaco-action-bar{text-align:right;overflow:hidden;white-space:nowrap}.monaco-action-bar .actions-container{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0 auto;padding:0;width:100%;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.monaco-action-bar.vertical .actions-container{display:inline-block}.monaco-action-bar.reverse .actions-container{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.monaco-action-bar .action-item{cursor:pointer;display:inline-block;-webkit-transition:-webkit-transform 50ms ease;transition:-webkit-transform 50ms ease;transition:transform 50ms ease;transition:transform 50ms ease,-webkit-transform 50ms ease;position:relative}.monaco-action-bar .action-item.disabled{cursor:default}.monaco-action-bar.animated .action-item.active{-webkit-transform:scale(1.272019649);transform:scale(1.272019649)}.monaco-action-bar .action-item .codicon,.monaco-action-bar .action-item .icon{display:inline-block}.monaco-action-bar .action-label{font-size:11px;margin-right:4px}.monaco-action-bar .action-item.disabled .action-label,.monaco-action-bar .action-item.disabled .action-label:hover{opacity:.4}.monaco-action-bar.vertical{text-align:left}.monaco-action-bar.vertical .action-item{display:block}.monaco-action-bar.vertical .action-label.separator{display:block;border-bottom:1px solid #bbb;padding-top:1px;margin-left:.8em;margin-right:.8em}.monaco-action-bar.animated.vertical .action-item.active{-webkit-transform:translate(5px);transform:translate(5px)}.secondary-actions .monaco-action-bar .action-label{margin-left:6px}.monaco-action-bar .action-item.select-container{overflow:hidden;-webkit-box-flex:1;-ms-flex:1;flex:1;max-width:170px;min-width:60px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin-right:10px}.context-view .monaco-menu{min-width:130px}.context-view-block{position:fixed;left:0;top:0;z-index:-1;width:100%;height:100%}.monaco-menu .monaco-action-bar.vertical{margin-left:0;overflow:visible}.monaco-menu .monaco-action-bar.vertical .actions-container{display:block}.monaco-menu .monaco-action-bar.vertical .action-item{padding:0;-webkit-transform:none;transform:none;display:-webkit-box;display:-ms-flexbox;display:flex}.monaco-menu .monaco-action-bar.vertical .action-item.active{-webkit-transform:none;transform:none}.monaco-menu .monaco-action-bar.vertical .action-menu-item{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;display:-webkit-box;display:-ms-flexbox;display:flex;height:2em;-webkit-box-align:center;-ms-flex-align:center;align-items:center;position:relative}.monaco-menu .monaco-action-bar.vertical .action-label{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;text-decoration:none;padding:0 1em;background:none;font-size:12px;line-height:1}.monaco-menu .monaco-action-bar.vertical .keybinding,.monaco-menu .monaco-action-bar.vertical .submenu-indicator{display:inline-block;-webkit-box-flex:2;-ms-flex:2 1 auto;flex:2 1 auto;padding:0 1em;text-align:right;font-size:12px;line-height:1}.monaco-menu .monaco-action-bar.vertical .submenu-indicator{height:100%;mask:url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQiIGhlaWdodD0iMTQiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTQuNTIgMTIuMzY0TDkuODc5IDcgNC41MiAxLjYzNmwuNjE1LS42MTVMMTEuMTIyIDdsLTUuOTg2IDUuOTgtLjYxNS0uNjE2eiIgZmlsbD0iIzAwMCIvPjwvc3ZnPg==") no-repeat 90% 50%/13px 13px;-webkit-mask:url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQiIGhlaWdodD0iMTQiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTQuNTIgMTIuMzY0TDkuODc5IDcgNC41MiAxLjYzNmwuNjE1LS42MTVMMTEuMTIyIDdsLTUuOTg2IDUuOTgtLjYxNS0uNjE2eiIgZmlsbD0iIzAwMCIvPjwvc3ZnPg==") no-repeat 90% 50%/13px 13px}.monaco-menu .monaco-action-bar.vertical .action-item.disabled .keybinding,.monaco-menu .monaco-action-bar.vertical .action-item.disabled .submenu-indicator{opacity:.4}.monaco-menu .monaco-action-bar.vertical .action-label:not(.separator){display:inline-block;-webkit-box-sizing:border-box;box-sizing:border-box;margin:0}.monaco-menu .monaco-action-bar.vertical .action-item{position:static;overflow:visible}.monaco-menu .monaco-action-bar.vertical .action-item .monaco-submenu{position:absolute}.monaco-menu .monaco-action-bar.vertical .action-label.separator{padding:.5em 0 0 0;margin-bottom:.5em;width:100%}.monaco-menu .monaco-action-bar.vertical .action-label.separator.text{padding:.7em 1em .1em 1em;font-weight:700;opacity:1}.monaco-menu .monaco-action-bar.vertical .action-label:hover{color:inherit}.monaco-menu .monaco-action-bar.vertical .menu-item-check{position:absolute;visibility:hidden;mask:url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNC40MzEgMy4zMjNsLTguNDcgMTAtLjc5LS4wMzYtMy4zNS00Ljc3LjgxOC0uNTc0IDIuOTc4IDQuMjQgOC4wNTEtOS41MDYuNzY0LjY0NnoiIGZpbGw9IiNDNUM1QzUiLz48L3N2Zz4=") no-repeat 50% 56%/15px 15px;-webkit-mask:url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNC40MzEgMy4zMjNsLTguNDcgMTAtLjc5LS4wMzYtMy4zNS00Ljc3LjgxOC0uNTc0IDIuOTc4IDQuMjQgOC4wNTEtOS41MDYuNzY0LjY0NnoiIGZpbGw9IiNDNUM1QzUiLz48L3N2Zz4=") no-repeat 50% 56%/15px 15px;width:1em;height:100%}.monaco-menu .monaco-action-bar.vertical .action-menu-item.checked .menu-item-check{visibility:visible}.context-view.monaco-menu-container{outline:0;border:none;-webkit-animation:fadeIn 83ms linear;animation:fadeIn 83ms linear}.context-view.monaco-menu-container .monaco-action-bar.vertical:focus,.context-view.monaco-menu-container .monaco-action-bar.vertical :focus,.context-view.monaco-menu-container :focus{outline:0}.monaco-menu .monaco-action-bar.vertical .action-item{border:thin solid transparent}.hc-black .context-view.monaco-menu-container{-webkit-box-shadow:none;box-shadow:none}.hc-black .monaco-menu .monaco-action-bar.vertical .action-item.focused{background:none}.menubar{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-negative:1;flex-shrink:1;-webkit-box-sizing:border-box;box-sizing:border-box;height:30px;overflow:hidden;-ms-flex-wrap:wrap;flex-wrap:wrap}.fullscreen .menubar:not(.compact){margin:0;padding:0 5px}.menubar>.menubar-menu-button{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-sizing:border-box;box-sizing:border-box;padding:0 8px;cursor:default;-webkit-app-region:no-drag;zoom:1;white-space:nowrap;outline:0}.menubar.compact{-ms-flex-negative:0;flex-shrink:0}.menubar.compact>.menubar-menu-button{width:100%;height:100%;padding:0}.menubar .menubar-menu-items-holder{position:absolute;left:0;opacity:1;z-index:2000}.menubar .menubar-menu-items-holder.monaco-menu-container{outline:0;border:none}.menubar .menubar-menu-items-holder.monaco-menu-container :focus{outline:0}.menubar .toolbar-toggle-more{background-position:50%;background-repeat:no-repeat;background-size:14px;width:20px;height:100%}.menubar.compact .toolbar-toggle-more{position:absolute;left:0;top:0;background-position:50%;background-repeat:no-repeat;background-size:16px;cursor:pointer;width:100%}.menubar .toolbar-toggle-more{display:inline-block;padding:0;mask:url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTQgOGExIDEgMCAxIDEtMiAwIDEgMSAwIDAgMSAyIDB6TTkgOGExIDEgMCAxIDEtMiAwIDEgMSAwIDAgMSAyIDB6TTE0IDhhMSAxIDAgMSAxLTIgMCAxIDEgMCAwIDEgMiAweiIgZmlsbD0iI0M1QzVDNSIvPjwvc3ZnPg==") no-repeat 50% 55%/14px 14px;-webkit-mask:url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTQgOGExIDEgMCAxIDEtMiAwIDEgMSAwIDAgMSAyIDB6TTkgOGExIDEgMCAxIDEtMiAwIDEgMSAwIDAgMSAyIDB6TTE0IDhhMSAxIDAgMSAxLTIgMCAxIDEgMCAwIDEgMiAweiIgZmlsbD0iI0M1QzVDNSIvPjwvc3ZnPg==") no-repeat 50% 55%/14px 14px}.menubar.compact .toolbar-toggle-more{mask:url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTgiIGhlaWdodD0iMTgiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTE4IDUuNjI1SDBWNC41aDE4djEuMTI1em0wIDlIMFYxMy41aDE4djEuMTI1em0wLTQuNTA5SDBWOWgxOHYxLjExNnoiIGZpbGw9IiNmZmYiLz48L3N2Zz4=") no-repeat 50% 55%/16px 16px;-webkit-mask:url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTgiIGhlaWdodD0iMTgiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTE4IDUuNjI1SDBWNC41aDE4djEuMTI1em0wIDlIMFYxMy41aDE4djEuMTI1em0wLTQuNTA5SDBWOWgxOHYxLjExNnoiIGZpbGw9IiNmZmYiLz48L3N2Zz4=") no-repeat 50% 55%/16px 16px}.context-view{position:absolute;z-index:2000}.monaco-list{position:relative;height:100%;width:100%;white-space:nowrap}.monaco-list.mouse-support{-moz-user-select:none;user-select:none;-webkit-user-select:none;-ms-user-select:none}.monaco-list>.monaco-scrollable-element{height:100%}.monaco-list-rows{position:relative;width:100%;height:100%}.monaco-list.horizontal-scrolling .monaco-list-rows{width:auto;min-width:100%}.monaco-list-row{position:absolute;-webkit-box-sizing:border-box;box-sizing:border-box;overflow:hidden;width:100%}.monaco-list.mouse-support .monaco-list-row{cursor:pointer;-ms-touch-action:none;touch-action:none}.monaco-list-row.scrolling{display:none!important}.monaco-list.element-focused,.monaco-list.selection-multiple,.monaco-list.selection-single{outline:0!important}.monaco-list:focus .monaco-list-row.selected .codicon{color:inherit}.monaco-drag-image{display:inline-block;padding:1px 7px;border-radius:10px;font-size:12px;position:absolute}.monaco-list-type-filter{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;position:absolute;border-radius:2px;padding:0 3px;max-width:calc(100% - 10px);text-overflow:ellipsis;overflow:hidden;text-align:right;-webkit-box-sizing:border-box;box-sizing:border-box;cursor:all-scroll;font-size:13px;line-height:18px;height:20px;z-index:1;top:4px}.monaco-list-type-filter.dragging{-webkit-transition:top .2s,left .2s;transition:top .2s,left .2s}.monaco-list-type-filter.ne{right:4px}.monaco-list-type-filter.nw{left:4px}.monaco-list-type-filter>.controls{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-transition:width .2s;transition:width .2s;width:0}.monaco-list-type-filter.dragging>.controls,.monaco-list-type-filter:hover>.controls{width:36px}.monaco-list-type-filter>.controls>*{border:none;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-appearance:none;-moz-appearance:none;background:none;width:16px;height:16px;-ms-flex-negative:0;flex-shrink:0;margin:0;padding:0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;cursor:pointer}.monaco-list-type-filter>.controls>.filter:checked:before{content:"\EB83"!important}.monaco-list-type-filter>.controls>.filter{margin-left:4px}.monaco-list-type-filter-message{position:absolute;-webkit-box-sizing:border-box;box-sizing:border-box;width:100%;height:100%;top:0;left:0;padding:40px 1em 1em 1em;text-align:center;white-space:normal;opacity:.7;pointer-events:none}.monaco-list-type-filter-message:empty{display:none}.monaco-list-type-filter{cursor:-webkit-grab;cursor:grab}.monaco-list-type-filter.dragging{cursor:-webkit-grabbing;cursor:grabbing}.monaco-tl-row{display:-webkit-box;display:-ms-flexbox;display:flex;height:100%;-webkit-box-align:center;-ms-flex-align:center;align-items:center;position:relative}.monaco-tl-indent{height:100%;position:absolute;top:0;left:16px;pointer-events:none}.hide-arrows .monaco-tl-indent{left:12px}.monaco-tl-indent>.indent-guide{display:inline-block;-webkit-box-sizing:border-box;box-sizing:border-box;height:100%;border-left:1px solid transparent;-webkit-transition:border-color .1s linear;transition:border-color .1s linear}.monaco-tl-contents,.monaco-tl-twistie{height:100%}.monaco-tl-twistie{font-size:10px;text-align:right;padding-right:6px;-ms-flex-negative:0;flex-shrink:0;width:16px;display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;color:inherit!important;-webkit-transform:translateX(3px);transform:translateX(3px)}.monaco-tl-contents{-webkit-box-flex:1;-ms-flex:1;flex:1;overflow:hidden}.monaco-tl-twistie.collapsed:before{-webkit-transform:rotate(-90deg);transform:rotate(-90deg)}.monaco-tl-twistie.codicon-loading:before{-webkit-animation:codicon-spin 1.25s linear infinite;animation:codicon-spin 1.25s linear infinite}.monaco-editor .bracket-match{-webkit-box-sizing:border-box;box-sizing:border-box}.monaco-menu .monaco-action-bar.vertical .action-label.hover{background-color:#eee}.monaco-editor .monaco-editor-overlaymessage{padding-bottom:8px}@-webkit-keyframes fadeIn{0%{opacity:0}to{opacity:1}}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}.monaco-editor .monaco-editor-overlaymessage.fadeIn{-webkit-animation:fadeIn .15s ease-out;animation:fadeIn .15s ease-out}@-webkit-keyframes fadeOut{0%{opacity:1}to{opacity:0}}@keyframes fadeOut{0%{opacity:1}to{opacity:0}}.monaco-editor .monaco-editor-overlaymessage.fadeOut{-webkit-animation:fadeOut .1s ease-out;animation:fadeOut .1s ease-out}.monaco-editor .monaco-editor-overlaymessage .message{padding:1px 4px}.monaco-editor .monaco-editor-overlaymessage .anchor{width:0!important;height:0!important;border-color:transparent;border-style:solid;z-index:1000;border-width:8px;position:absolute}.monaco-editor .codicon-lightbulb,.monaco-editor .lightbulb-glyph{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;height:16px;width:20px;padding-left:2px}.monaco-editor .codicon-lightbulb:hover,.monaco-editor .lightbulb-glyph:hover{cursor:pointer}.monaco-editor .codelens-decoration{overflow:hidden;display:inline-block;text-overflow:ellipsis}.monaco-editor .codelens-decoration>a,.monaco-editor .codelens-decoration>span{-moz-user-select:none;user-select:none;-webkit-user-select:none;-ms-user-select:none;white-space:nowrap;vertical-align:sub}.monaco-editor .codelens-decoration>a{text-decoration:none}.monaco-editor .codelens-decoration>a:hover{text-decoration:underline;cursor:pointer}@-webkit-keyframes fadein{0%{opacity:0;visibility:visible}to{opacity:1}}@keyframes fadein{0%{opacity:0;visibility:visible}to{opacity:1}}.monaco-editor .codelens-decoration.fadein{-webkit-animation:fadein .1s linear;animation:fadein .1s linear}@font-face{font-family:codicon;src:url(../../mer/fonts/codicon.35bb8d56.ttf) format("truetype")}.codicon[class*=codicon-]{font:normal normal normal 16px/1 codicon;display:inline-block;text-decoration:none;text-rendering:auto;text-align:center;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-moz-user-select:none;user-select:none;-webkit-user-select:none;-ms-user-select:none}.codicon-add:before,.codicon-gist-new:before,.codicon-plus:before,.codicon-repo-create:before{content:"\EA60"}.codicon-light-bulb:before,.codicon-lightbulb:before{content:"\EA61"}.codicon-repo-delete:before,.codicon-repo:before{content:"\EA62"}.codicon-gist-fork:before,.codicon-repo-forked:before{content:"\EA63"}.codicon-git-pull-request-abandoned:before,.codicon-git-pull-request:before{content:"\EA64"}.codicon-keyboard:before,.codicon-record-keys:before{content:"\EA65"}.codicon-tag-add:before,.codicon-tag-remove:before,.codicon-tag:before{content:"\EA66"}.codicon-person-add:before,.codicon-person-filled:before,.codicon-person-follow:before,.codicon-person-outline:before,.codicon-person:before{content:"\EA67"}.codicon-git-branch-create:before,.codicon-git-branch-delete:before,.codicon-git-branch:before,.codicon-source-control:before{content:"\EA68"}.codicon-mirror-public:before,.codicon-mirror:before{content:"\EA69"}.codicon-star-add:before,.codicon-star-delete:before,.codicon-star-empty:before,.codicon-star:before{content:"\EA6A"}.codicon-comment-add:before,.codicon-comment:before{content:"\EA6B"}.codicon-alert:before,.codicon-warning:before{content:"\EA6C"}.codicon-search-save:before,.codicon-search:before{content:"\EA6D"}.codicon-log-out:before,.codicon-sign-out:before{content:"\EA6E"}.codicon-log-in:before,.codicon-sign-in:before{content:"\EA6F"}.codicon-eye-unwatch:before,.codicon-eye-watch:before,.codicon-eye:before{content:"\EA70"}.codicon-circle-filled:before,.codicon-close-dirty:before,.codicon-debug-breakpoint-disabled:before,.codicon-debug-breakpoint:before,.codicon-debug-hint:before,.codicon-primitive-dot:before{content:"\EA71"}.codicon-primitive-square:before{content:"\EA72"}.codicon-edit:before,.codicon-pencil:before{content:"\EA73"}.codicon-info:before,.codicon-issue-opened:before{content:"\EA74"}.codicon-gist-private:before,.codicon-git-fork-private:before,.codicon-lock:before,.codicon-mirror-private:before{content:"\EA75"}.codicon-close:before,.codicon-remove-close:before,.codicon-x:before{content:"\EA76"}.codicon-repo-sync:before,.codicon-sync:before{content:"\EA77"}.codicon-clone:before,.codicon-desktop-download:before{content:"\EA78"}.codicon-beaker:before,.codicon-microscope:before{content:"\EA79"}.codicon-device-desktop:before,.codicon-vm:before{content:"\EA7A"}.codicon-file-text:before,.codicon-file:before{content:"\EA7B"}.codicon-ellipsis:before,.codicon-kebab-horizontal:before,.codicon-more:before{content:"\EA7C"}.codicon-mail-reply:before,.codicon-reply:before{content:"\EA7D"}.codicon-organization-filled:before,.codicon-organization-outline:before,.codicon-organization:before{content:"\EA7E"}.codicon-file-add:before,.codicon-new-file:before{content:"\EA7F"}.codicon-file-directory-create:before,.codicon-new-folder:before{content:"\EA80"}.codicon-trash:before,.codicon-trashcan:before{content:"\EA81"}.codicon-clock:before,.codicon-history:before{content:"\EA82"}.codicon-file-directory:before,.codicon-folder:before,.codicon-symbol-folder:before{content:"\EA83"}.codicon-github:before,.codicon-logo-github:before,.codicon-mark-github:before{content:"\EA84"}.codicon-console:before,.codicon-terminal:before{content:"\EA85"}.codicon-symbol-event:before,.codicon-zap:before{content:"\EA86"}.codicon-error:before,.codicon-stop:before{content:"\EA87"}.codicon-symbol-variable:before,.codicon-variable:before{content:"\EA88"}.codicon-array:before,.codicon-symbol-array:before{content:"\EA8A"}.codicon-symbol-module:before,.codicon-symbol-namespace:before,.codicon-symbol-object:before,.codicon-symbol-package:before{content:"\EA8B"}.codicon-symbol-constructor:before,.codicon-symbol-function:before,.codicon-symbol-method:before{content:"\EA8C"}.codicon-symbol-boolean:before,.codicon-symbol-null:before{content:"\EA8F"}.codicon-symbol-number:before,.codicon-symbol-numeric:before{content:"\EA90"}.codicon-symbol-struct:before,.codicon-symbol-structure:before{content:"\EA91"}.codicon-symbol-parameter:before,.codicon-symbol-type-parameter:before{content:"\EA92"}.codicon-symbol-key:before,.codicon-symbol-text:before{content:"\EA93"}.codicon-go-to-file:before,.codicon-symbol-reference:before{content:"\EA94"}.codicon-symbol-enum:before,.codicon-symbol-value:before{content:"\EA95"}.codicon-symbol-ruler:before,.codicon-symbol-unit:before{content:"\EA96"}.codicon-activate-breakpoints:before{content:"\EA97"}.codicon-archive:before{content:"\EA98"}.codicon-arrow-both:before{content:"\EA99"}.codicon-arrow-down:before{content:"\EA9A"}.codicon-arrow-left:before{content:"\EA9B"}.codicon-arrow-right:before{content:"\EA9C"}.codicon-arrow-small-down:before{content:"\EA9D"}.codicon-arrow-small-left:before{content:"\EA9E"}.codicon-arrow-small-right:before{content:"\EA9F"}.codicon-arrow-small-up:before{content:"\EAA0"}.codicon-arrow-up:before{content:"\EAA1"}.codicon-bell:before{content:"\EAA2"}.codicon-bold:before{content:"\EAA3"}.codicon-book:before{content:"\EAA4"}.codicon-bookmark:before{content:"\EAA5"}.codicon-debug-breakpoint-conditional-unverified:before{content:"\EAA6"}.codicon-debug-breakpoint-conditional-disabled:before,.codicon-debug-breakpoint-conditional:before{content:"\EAA7"}.codicon-debug-breakpoint-data-unverified:before{content:"\EAA8"}.codicon-debug-breakpoint-data-disabled:before,.codicon-debug-breakpoint-data:before{content:"\EAA9"}.codicon-debug-breakpoint-log-unverified:before{content:"\EAAA"}.codicon-debug-breakpoint-log-disabled:before,.codicon-debug-breakpoint-log:before{content:"\EAAB"}.codicon-briefcase:before{content:"\EAAC"}.codicon-broadcast:before{content:"\EAAD"}.codicon-browser:before{content:"\EAAE"}.codicon-bug:before{content:"\EAAF"}.codicon-calendar:before{content:"\EAB0"}.codicon-case-sensitive:before{content:"\EAB1"}.codicon-check:before{content:"\EAB2"}.codicon-checklist:before{content:"\EAB3"}.codicon-chevron-down:before{content:"\EAB4"}.codicon-chevron-left:before{content:"\EAB5"}.codicon-chevron-right:before{content:"\EAB6"}.codicon-chevron-up:before{content:"\EAB7"}.codicon-chrome-close:before{content:"\EAB8"}.codicon-chrome-maximize:before{content:"\EAB9"}.codicon-chrome-minimize:before{content:"\EABA"}.codicon-chrome-restore:before{content:"\EABB"}.codicon-circle-outline:before,.codicon-debug-breakpoint-unverified:before{content:"\EABC"}.codicon-circle-slash:before{content:"\EABD"}.codicon-circuit-board:before{content:"\EABE"}.codicon-clear-all:before{content:"\EABF"}.codicon-clippy:before{content:"\EAC0"}.codicon-close-all:before{content:"\EAC1"}.codicon-cloud-download:before{content:"\EAC2"}.codicon-cloud-upload:before{content:"\EAC3"}.codicon-code:before{content:"\EAC4"}.codicon-collapse-all:before{content:"\EAC5"}.codicon-color-mode:before{content:"\EAC6"}.codicon-comment-discussion:before{content:"\EAC7"}.codicon-compare-changes:before{content:"\EAC8"}.codicon-credit-card:before{content:"\EAC9"}.codicon-dash:before{content:"\EACC"}.codicon-dashboard:before{content:"\EACD"}.codicon-database:before{content:"\EACE"}.codicon-debug-continue:before{content:"\EACF"}.codicon-debug-disconnect:before{content:"\EAD0"}.codicon-debug-pause:before{content:"\EAD1"}.codicon-debug-restart:before{content:"\EAD2"}.codicon-debug-start:before{content:"\EAD3"}.codicon-debug-step-into:before{content:"\EAD4"}.codicon-debug-step-out:before{content:"\EAD5"}.codicon-debug-step-over:before{content:"\EAD6"}.codicon-debug-stop:before{content:"\EAD7"}.codicon-debug:before{content:"\EAD8"}.codicon-device-camera-video:before{content:"\EAD9"}.codicon-device-camera:before{content:"\EADA"}.codicon-device-mobile:before{content:"\EADB"}.codicon-diff-added:before{content:"\EADC"}.codicon-diff-ignored:before{content:"\EADD"}.codicon-diff-modified:before{content:"\EADE"}.codicon-diff-removed:before{content:"\EADF"}.codicon-diff-renamed:before{content:"\EAE0"}.codicon-diff:before{content:"\EAE1"}.codicon-discard:before{content:"\EAE2"}.codicon-editor-layout:before{content:"\EAE3"}.codicon-empty-window:before{content:"\EAE4"}.codicon-exclude:before{content:"\EAE5"}.codicon-extensions:before{content:"\EAE6"}.codicon-eye-closed:before{content:"\EAE7"}.codicon-file-binary:before{content:"\EAE8"}.codicon-file-code:before{content:"\EAE9"}.codicon-file-media:before{content:"\EAEA"}.codicon-file-pdf:before{content:"\EAEB"}.codicon-file-submodule:before{content:"\EAEC"}.codicon-file-symlink-directory:before{content:"\EAED"}.codicon-file-symlink-file:before{content:"\EAEE"}.codicon-file-zip:before{content:"\EAEF"}.codicon-files:before{content:"\EAF0"}.codicon-filter:before{content:"\EAF1"}.codicon-flame:before{content:"\EAF2"}.codicon-fold-down:before{content:"\EAF3"}.codicon-fold-up:before{content:"\EAF4"}.codicon-fold:before{content:"\EAF5"}.codicon-folder-active:before{content:"\EAF6"}.codicon-folder-opened:before{content:"\EAF7"}.codicon-gear:before{content:"\EAF8"}.codicon-gift:before{content:"\EAF9"}.codicon-gist-secret:before{content:"\EAFA"}.codicon-gist:before{content:"\EAFB"}.codicon-git-commit:before{content:"\EAFC"}.codicon-git-compare:before{content:"\EAFD"}.codicon-git-merge:before{content:"\EAFE"}.codicon-github-action:before{content:"\EAFF"}.codicon-github-alt:before{content:"\EB00"}.codicon-globe:before{content:"\EB01"}.codicon-grabber:before{content:"\EB02"}.codicon-graph:before{content:"\EB03"}.codicon-gripper:before{content:"\EB04"}.codicon-heart:before{content:"\EB05"}.codicon-home:before{content:"\EB06"}.codicon-horizontal-rule:before{content:"\EB07"}.codicon-hubot:before{content:"\EB08"}.codicon-inbox:before{content:"\EB09"}.codicon-issue-closed:before{content:"\EB0A"}.codicon-issue-reopened:before{content:"\EB0B"}.codicon-issues:before{content:"\EB0C"}.codicon-italic:before{content:"\EB0D"}.codicon-jersey:before{content:"\EB0E"}.codicon-json:before{content:"\EB0F"}.codicon-kebab-vertical:before{content:"\EB10"}.codicon-key:before{content:"\EB11"}.codicon-law:before{content:"\EB12"}.codicon-lightbulb-autofix:before{content:"\EB13"}.codicon-link-external:before{content:"\EB14"}.codicon-link:before{content:"\EB15"}.codicon-list-ordered:before{content:"\EB16"}.codicon-list-unordered:before{content:"\EB17"}.codicon-live-share:before{content:"\EB18"}.codicon-loading:before{content:"\EB19"}.codicon-location:before{content:"\EB1A"}.codicon-mail-read:before{content:"\EB1B"}.codicon-mail:before{content:"\EB1C"}.codicon-markdown:before{content:"\EB1D"}.codicon-megaphone:before{content:"\EB1E"}.codicon-mention:before{content:"\EB1F"}.codicon-milestone:before{content:"\EB20"}.codicon-mortar-board:before{content:"\EB21"}.codicon-move:before{content:"\EB22"}.codicon-multiple-windows:before{content:"\EB23"}.codicon-mute:before{content:"\EB24"}.codicon-no-newline:before{content:"\EB25"}.codicon-note:before{content:"\EB26"}.codicon-octoface:before{content:"\EB27"}.codicon-open-preview:before{content:"\EB28"}.codicon-package:before{content:"\EB29"}.codicon-paintcan:before{content:"\EB2A"}.codicon-pin:before{content:"\EB2B"}.codicon-play:before{content:"\EB2C"}.codicon-plug:before{content:"\EB2D"}.codicon-preserve-case:before{content:"\EB2E"}.codicon-preview:before{content:"\EB2F"}.codicon-project:before{content:"\EB30"}.codicon-pulse:before{content:"\EB31"}.codicon-question:before{content:"\EB32"}.codicon-quote:before{content:"\EB33"}.codicon-radio-tower:before{content:"\EB34"}.codicon-reactions:before{content:"\EB35"}.codicon-references:before{content:"\EB36"}.codicon-refresh:before{content:"\EB37"}.codicon-regex:before{content:"\EB38"}.codicon-remote-explorer:before{content:"\EB39"}.codicon-remote:before{content:"\EB3A"}.codicon-remove:before{content:"\EB3B"}.codicon-replace-all:before{content:"\EB3C"}.codicon-replace:before{content:"\EB3D"}.codicon-repo-clone:before{content:"\EB3E"}.codicon-repo-force-push:before{content:"\EB3F"}.codicon-repo-pull:before{content:"\EB40"}.codicon-repo-push:before{content:"\EB41"}.codicon-report:before{content:"\EB42"}.codicon-request-changes:before{content:"\EB43"}.codicon-rocket:before{content:"\EB44"}.codicon-root-folder-opened:before{content:"\EB45"}.codicon-root-folder:before{content:"\EB46"}.codicon-rss:before{content:"\EB47"}.codicon-ruby:before{content:"\EB48"}.codicon-save-all:before{content:"\EB49"}.codicon-save-as:before{content:"\EB4A"}.codicon-save:before{content:"\EB4B"}.codicon-screen-full:before{content:"\EB4C"}.codicon-screen-normal:before{content:"\EB4D"}.codicon-search-stop:before{content:"\EB4E"}.codicon-server:before{content:"\EB50"}.codicon-settings-gear:before{content:"\EB51"}.codicon-settings:before{content:"\EB52"}.codicon-shield:before{content:"\EB53"}.codicon-smiley:before{content:"\EB54"}.codicon-sort-precedence:before{content:"\EB55"}.codicon-split-horizontal:before{content:"\EB56"}.codicon-split-vertical:before{content:"\EB57"}.codicon-squirrel:before{content:"\EB58"}.codicon-star-full:before{content:"\EB59"}.codicon-star-half:before{content:"\EB5A"}.codicon-symbol-class:before{content:"\EB5B"}.codicon-symbol-color:before{content:"\EB5C"}.codicon-symbol-constant:before{content:"\EB5D"}.codicon-symbol-enum-member:before{content:"\EB5E"}.codicon-symbol-field:before{content:"\EB5F"}.codicon-symbol-file:before{content:"\EB60"}.codicon-symbol-interface:before{content:"\EB61"}.codicon-symbol-keyword:before{content:"\EB62"}.codicon-symbol-misc:before{content:"\EB63"}.codicon-symbol-operator:before{content:"\EB64"}.codicon-symbol-property:before{content:"\EB65"}.codicon-symbol-snippet:before{content:"\EB66"}.codicon-tasklist:before{content:"\EB67"}.codicon-telescope:before{content:"\EB68"}.codicon-text-size:before{content:"\EB69"}.codicon-three-bars:before{content:"\EB6A"}.codicon-thumbsdown:before{content:"\EB6B"}.codicon-thumbsup:before{content:"\EB6C"}.codicon-tools:before{content:"\EB6D"}.codicon-triangle-down:before{content:"\EB6E"}.codicon-triangle-left:before{content:"\EB6F"}.codicon-triangle-right:before{content:"\EB70"}.codicon-triangle-up:before{content:"\EB71"}.codicon-twitter:before{content:"\EB72"}.codicon-unfold:before{content:"\EB73"}.codicon-unlock:before{content:"\EB74"}.codicon-unmute:before{content:"\EB75"}.codicon-unverified:before{content:"\EB76"}.codicon-verified:before{content:"\EB77"}.codicon-versions:before{content:"\EB78"}.codicon-vm-active:before{content:"\EB79"}.codicon-vm-outline:before{content:"\EB7A"}.codicon-vm-running:before{content:"\EB7B"}.codicon-watch:before{content:"\EB7C"}.codicon-whitespace:before{content:"\EB7D"}.codicon-whole-word:before{content:"\EB7E"}.codicon-window:before{content:"\EB7F"}.codicon-word-wrap:before{content:"\EB80"}.codicon-zoom-in:before{content:"\EB81"}.codicon-zoom-out:before{content:"\EB82"}.codicon-list-filter:before{content:"\EB83"}.codicon-list-flat:before{content:"\EB84"}.codicon-list-selection:before,.codicon-selection:before{content:"\EB85"}.codicon-list-tree:before{content:"\EB86"}.codicon-debug-breakpoint-function-unverified:before{content:"\EB87"}.codicon-debug-breakpoint-function-disabled:before,.codicon-debug-breakpoint-function:before{content:"\EB88"}.codicon-debug-breakpoint-stackframe-active:before{content:"\EB89"}.codicon-debug-breakpoint-stackframe-focused:before,.codicon-debug-breakpoint-stackframe:before{content:"\EB8B"}.codicon-debug-breakpoint-unsupported:before{content:"\EB8C"}.codicon-symbol-string:before{content:"\EB8D"}.codicon-debug-reverse-continue:before{content:"\EB8E"}.codicon-debug-step-back:before{content:"\EB8F"}.codicon-debug-restart-frame:before{content:"\EB90"}.codicon-debug-alternate:before{content:"\EB91"}.codicon-debug-alt:before{content:"\F101"}@-webkit-keyframes codicon-spin{to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes codicon-spin{to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.codicon-animation-spin{-webkit-animation:codicon-spin 1.5s linear infinite;animation:codicon-spin 1.5s linear infinite}.monaco-editor.vs .dnd-target{border-right:2px dotted #000;color:#fff}.monaco-editor.vs-dark .dnd-target{border-right:2px dotted #aeafad;color:#51504f}.monaco-editor.hc-black .dnd-target{border-right:2px dotted #fff;color:#000}.monaco-editor.hc-black.mac.mouse-default .view-lines,.monaco-editor.mouse-default .view-lines,.monaco-editor.vs-dark.mac.mouse-default .view-lines{cursor:default}.monaco-editor.hc-black.mac.mouse-copy .view-lines,.monaco-editor.mouse-copy .view-lines,.monaco-editor.vs-dark.mac.mouse-copy .view-lines{cursor:copy}.monaco-custom-checkbox{margin-left:2px;float:left;cursor:pointer;overflow:hidden;opacity:.7;width:20px;height:20px;border:1px solid transparent;padding:1px;-webkit-box-sizing:border-box;box-sizing:border-box;-moz-user-select:none;user-select:none;-webkit-user-select:none;-ms-user-select:none}.monaco-custom-checkbox.checked,.monaco-custom-checkbox:hover{opacity:1}.hc-black .monaco-custom-checkbox,.hc-black .monaco-custom-checkbox:hover{background:none}.monaco-custom-checkbox.monaco-simple-checkbox{height:18px;width:18px;border:1px solid transparent;border-radius:3px;margin-right:9px;margin-left:0;padding:0;opacity:1;background-size:16px!important}.monaco-custom-checkbox.monaco-simple-checkbox.checked{background:url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNSAzLjc2M2wtOS4xOTMgOC4xNzItLjcyMS0uMDQyTDEgNy4yOTZsLjc2My0uNjc4IDMuNzQ3IDQuMjE0TDE0LjMyMSAzbC42NzkuNzYzeiIgZmlsbD0iIzQyNDI0MiIvPjwvc3ZnPg==") 50% no-repeat;background:url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xNSAzLjc2M2wtOS4xOTMgOC4xNzItLjcyMS0uMDQyTDEgNy4yOTZsLjc2My0uNjc4IDMuNzQ3IDQuMjE0TDE0LjMyMSAzbC42NzkuNzYzeiIgZmlsbD0iI0M1QzVDNSIvPjwvc3ZnPg==") 50% no-repeat}.monaco-editor .find-widget{position:absolute;z-index:10;height:33px;overflow:hidden;line-height:19px;-webkit-transition:-webkit-transform .2s linear;transition:-webkit-transform .2s linear;transition:transform .2s linear;transition:transform .2s linear,-webkit-transform .2s linear;padding:0 4px;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-transform:translateY(Calc(-100% - 10px));transform:translateY(Calc(-100% - 10px))}.monaco-editor .find-widget textarea{margin:0}.monaco-editor .find-widget.hiddenEditor{display:none}.monaco-editor .find-widget.replaceToggled>.replace-part{display:-webkit-box;display:-ms-flexbox;display:flex}.monaco-editor .find-widget.visible{-webkit-transform:translateY(0);transform:translateY(0)}.monaco-editor .find-widget .monaco-inputbox.synthetic-focus{outline:1px solid -webkit-focus-ring-color;outline-offset:-1px}.monaco-editor .find-widget .monaco-inputbox .input{background-color:transparent;min-height:0}.monaco-editor .find-widget .monaco-findInput .input{font-size:13px}.monaco-editor .find-widget>.find-part,.monaco-editor .find-widget>.replace-part{margin:4px 0 0 17px;font-size:12px;display:-webkit-box;display:-ms-flexbox;display:flex}.monaco-editor .find-widget>.find-part .monaco-inputbox,.monaco-editor .find-widget>.replace-part .monaco-inputbox{min-height:25px}.monaco-editor .find-widget>.replace-part .monaco-inputbox>.wrapper>.mirror{padding-right:22px}.monaco-editor .find-widget>.find-part .monaco-inputbox>.wrapper>.input,.monaco-editor .find-widget>.find-part .monaco-inputbox>.wrapper>.mirror,.monaco-editor .find-widget>.replace-part .monaco-inputbox>.wrapper>.input,.monaco-editor .find-widget>.replace-part .monaco-inputbox>.wrapper>.mirror{padding-top:2px;padding-bottom:2px}.monaco-editor .find-widget>.find-part .find-actions,.monaco-editor .find-widget>.replace-part .replace-actions{height:25px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monaco-editor .find-widget .monaco-findInput{vertical-align:middle;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1;flex:1}.monaco-editor .find-widget .monaco-findInput .monaco-scrollable-element{width:100%}.monaco-editor .find-widget .monaco-findInput .monaco-scrollable-element .scrollbar.vertical{opacity:0}.monaco-editor .find-widget .matchesCount{margin:0 0 0 3px;padding:2px 0 0 2px;height:25px;vertical-align:middle;-webkit-box-sizing:border-box;box-sizing:border-box;text-align:center;line-height:23px}.monaco-editor .find-widget .button,.monaco-editor .find-widget .matchesCount{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:initial;-ms-flex:initial;flex:initial}.monaco-editor .find-widget .button{width:20px;height:20px;margin-left:3px;background-position:50%;background-repeat:no-repeat;cursor:pointer;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.monaco-editor .find-widget .button:not(.disabled):hover{background-color:rgba(0,0,0,.1)}.monaco-editor .find-widget .button.left{margin-left:0;margin-right:3px}.monaco-editor .find-widget .button.wide{width:auto;padding:1px 6px;top:-1px}.monaco-editor .find-widget .button.toggle{position:absolute;top:0;left:3px;width:18px;height:100%;-webkit-box-sizing:border-box;box-sizing:border-box}.monaco-editor .find-widget .button.toggle.disabled{display:none}.monaco-editor .find-widget .disabled{opacity:.3;cursor:default}.monaco-editor .find-widget>.replace-part{display:none}.monaco-editor .find-widget>.replace-part>.monaco-findInput{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;vertical-align:middle;-webkit-box-flex:1;-ms-flex:auto;flex:auto;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:0;flex-shrink:0}.monaco-editor .find-widget>.replace-part>.monaco-findInput>.controls{position:absolute;top:3px;right:2px}.monaco-editor .find-widget.reduced-find-widget .matchesCount{display:none}.monaco-editor .find-widget.narrow-find-widget{max-width:257px!important}.monaco-editor .find-widget.collapsed-find-widget{max-width:170px!important}.monaco-editor .find-widget.collapsed-find-widget .button.next,.monaco-editor .find-widget.collapsed-find-widget .button.previous,.monaco-editor .find-widget.collapsed-find-widget .button.replace,.monaco-editor .find-widget.collapsed-find-widget .button.replace-all,.monaco-editor .find-widget.collapsed-find-widget>.find-part .monaco-findInput .controls{display:none}.monaco-editor .findMatch{-webkit-animation-duration:0;animation-duration:0;-webkit-animation-name:inherit!important;animation-name:inherit!important}.monaco-editor .find-widget .monaco-sash{width:2px!important;margin-left:-4px}.monaco-editor.hc-black .find-widget .button:not(.disabled):hover,.monaco-editor.vs-dark .find-widget .button:not(.disabled):hover{background-color:hsla(0,0%,100%,.1)}.monaco-editor.hc-black .find-widget .button:before{position:relative;top:1px;left:2px}.monaco-findInput{position:relative}.monaco-findInput .monaco-inputbox{font-size:13px;width:100%}.monaco-findInput>.controls{position:absolute;top:3px;right:2px}.vs .monaco-findInput.disabled{background-color:#e1e1e1}.vs-dark .monaco-findInput.disabled{background-color:#333}.monaco-findInput.highlight-0 .controls{-webkit-animation:monaco-findInput-highlight-0 .1s linear 0s;animation:monaco-findInput-highlight-0 .1s linear 0s}.monaco-findInput.highlight-1 .controls{-webkit-animation:monaco-findInput-highlight-1 .1s linear 0s;animation:monaco-findInput-highlight-1 .1s linear 0s}.hc-black .monaco-findInput.highlight-0 .controls,.vs-dark .monaco-findInput.highlight-0 .controls{-webkit-animation:monaco-findInput-highlight-dark-0 .1s linear 0s;animation:monaco-findInput-highlight-dark-0 .1s linear 0s}.hc-black .monaco-findInput.highlight-1 .controls,.vs-dark .monaco-findInput.highlight-1 .controls{-webkit-animation:monaco-findInput-highlight-dark-1 .1s linear 0s;animation:monaco-findInput-highlight-dark-1 .1s linear 0s}@-webkit-keyframes monaco-findInput-highlight-0{0%{background:rgba(253,255,0,.8)}to{background:transparent}}@keyframes monaco-findInput-highlight-0{0%{background:rgba(253,255,0,.8)}to{background:transparent}}@-webkit-keyframes monaco-findInput-highlight-1{0%{background:rgba(253,255,0,.8)}99%{background:transparent}}@keyframes monaco-findInput-highlight-1{0%{background:rgba(253,255,0,.8)}99%{background:transparent}}@-webkit-keyframes monaco-findInput-highlight-dark-0{0%{background:hsla(0,0%,100%,.44)}to{background:transparent}}@keyframes monaco-findInput-highlight-dark-0{0%{background:hsla(0,0%,100%,.44)}to{background:transparent}}@-webkit-keyframes monaco-findInput-highlight-dark-1{0%{background:hsla(0,0%,100%,.44)}99%{background:transparent}}@keyframes monaco-findInput-highlight-dark-1{0%{background:hsla(0,0%,100%,.44)}99%{background:transparent}}.monaco-inputbox{position:relative;display:block;padding:0;-webkit-box-sizing:border-box;box-sizing:border-box;font-size:inherit}.monaco-inputbox.idle{border:1px solid transparent}.monaco-inputbox>.wrapper>.input,.monaco-inputbox>.wrapper>.mirror{padding:4px}.monaco-inputbox>.wrapper{position:relative;width:100%;height:100%}.monaco-inputbox>.wrapper>.input{display:inline-block;-webkit-box-sizing:border-box;box-sizing:border-box;width:100%;height:100%;line-height:inherit;border:none;font-family:inherit;font-size:inherit;resize:none;color:inherit}.monaco-inputbox>.wrapper>input{text-overflow:ellipsis}.monaco-inputbox>.wrapper>textarea.input{display:block;-ms-overflow-style:none;scrollbar-width:none;outline:none}.monaco-inputbox>.wrapper>textarea.input::-webkit-scrollbar{display:none}.monaco-inputbox>.wrapper>textarea.input.empty{white-space:nowrap}.monaco-inputbox>.wrapper>.mirror{position:absolute;display:inline-block;width:100%;top:0;left:0;-webkit-box-sizing:border-box;box-sizing:border-box;white-space:pre-wrap;visibility:hidden;word-wrap:break-word}.monaco-inputbox-container{text-align:right}.monaco-inputbox-container .monaco-inputbox-message{display:inline-block;overflow:hidden;text-align:left;width:100%;-webkit-box-sizing:border-box;box-sizing:border-box;padding:.4em;font-size:12px;line-height:17px;min-height:34px;margin-top:-1px;word-wrap:break-word}.monaco-inputbox .monaco-action-bar{position:absolute;right:2px;top:4px}.monaco-inputbox .monaco-action-bar .action-item{margin-left:2px}.monaco-inputbox .monaco-action-bar .action-item .codicon{background-repeat:no-repeat;width:16px;height:16px}.monaco-editor .margin-view-overlays .codicon-chevron-down,.monaco-editor .margin-view-overlays .codicon-chevron-right{cursor:pointer;opacity:0;-webkit-transition:opacity .5s;transition:opacity .5s;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;font-size:140%;margin-left:2px}.monaco-editor .margin-view-overlays .codicon.alwaysShowFoldIcons,.monaco-editor .margin-view-overlays .codicon.codicon-chevron-right,.monaco-editor .margin-view-overlays:hover .codicon{opacity:1}.monaco-editor .inline-folded:after{color:grey;margin:.1em .2em 0 .2em;content:"\22EF";display:inline;line-height:1em;cursor:pointer}.monaco-editor .peekview-widget .head{-webkit-box-sizing:border-box;box-sizing:border-box;display:-webkit-box;display:-ms-flexbox;display:flex}.monaco-editor .peekview-widget .head .peekview-title{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;font-size:13px;margin-left:20px;cursor:pointer}.monaco-editor .peekview-widget .head .peekview-title .dirname:not(:empty){font-size:.9em;margin-left:.5em}.monaco-editor .peekview-widget .head .peekview-title .meta{white-space:nowrap}.monaco-editor .peekview-widget .head .peekview-title .meta:not(:empty):before{content:"-";padding:0 .3em}.monaco-editor .peekview-widget .head .peekview-actions{-webkit-box-flex:1;-ms-flex:1;flex:1;text-align:right;padding-right:2px}.monaco-editor .peekview-widget .head .peekview-actions>.monaco-action-bar{display:inline-block}.monaco-editor .peekview-widget .head .peekview-actions>.monaco-action-bar,.monaco-editor .peekview-widget .head .peekview-actions>.monaco-action-bar>.actions-container{height:100%}.monaco-editor .peekview-widget .head .peekview-actions>.monaco-action-bar .action-item{margin-left:4px}.monaco-editor .peekview-widget .head .peekview-actions>.monaco-action-bar .action-label{width:16px;height:100%;margin:0;line-height:inherit;background-repeat:no-repeat;background-position:50%}.monaco-editor .peekview-widget .head .peekview-actions>.monaco-action-bar .action-label.codicon{margin:0}.monaco-editor .peekview-widget>.body{border-top:1px solid;position:relative}.monaco-editor .peekview-widget .head .peekview-title .codicon{margin-right:4px}.monaco-editor .zone-widget{position:absolute;z-index:10}.monaco-editor .zone-widget .zone-widget-container{border-top-style:solid;border-bottom-style:solid;border-top-width:0;border-bottom-width:0;position:relative}.monaco-editor .zone-widget .zone-widget-container.reference-zone-widget{border-top-width:1px;border-bottom-width:1px}.monaco-editor .reference-zone-widget .inline{display:inline-block;vertical-align:top}.monaco-editor .reference-zone-widget .messages{height:100%;width:100%;text-align:center;padding:3em 0}.monaco-editor .reference-zone-widget .ref-tree{line-height:23px}.monaco-editor .reference-zone-widget .ref-tree .reference{text-overflow:ellipsis;overflow:hidden}.monaco-editor .reference-zone-widget .ref-tree .reference-file{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;width:100%;height:100%}.monaco-editor .reference-zone-widget .ref-tree .monaco-list:focus .selected .reference-file{color:inherit!important}.monaco-editor .reference-zone-widget .ref-tree .reference-file .count{margin-right:12px;margin-left:auto}.monaco-editor.hc-black .reference-zone-widget .ref-tree .reference-file{font-weight:700}.monaco-icon-label{display:-webkit-box;display:-ms-flexbox;display:flex;overflow:hidden;text-overflow:ellipsis}.monaco-icon-label:before{background-size:16px;background-position:0;background-repeat:no-repeat;padding-right:6px;width:16px;height:22px;line-height:inherit!important;display:inline-block;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;vertical-align:top;-ms-flex-negative:0;flex-shrink:0}.monaco-icon-label>.monaco-icon-label-container{min-width:0;overflow:hidden;text-overflow:ellipsis;-webkit-box-flex:1;-ms-flex:1;flex:1}.monaco-icon-label>.monaco-icon-label-container>.monaco-icon-name-container>.label-name{color:inherit;white-space:pre}.monaco-icon-label>.monaco-icon-label-container>.monaco-icon-name-container>.label-name>.label-separator{margin:0 2px;opacity:.5}.monaco-icon-label>.monaco-icon-label-container>.monaco-icon-description-container>.label-description{opacity:.7;margin-left:.5em;font-size:.9em;white-space:pre}.monaco-icon-label.italic>.monaco-icon-description-container>.label-description,.monaco-icon-label.italic>.monaco-icon-label-container>.monaco-icon-name-container>.label-name{font-style:italic}.monaco-icon-label:after{opacity:.75;font-size:90%;font-weight:600;padding:0 16px 0 5px;text-align:center}.monaco-list:focus .selected .monaco-icon-label,.monaco-list:focus .selected .monaco-icon-label:after,.monaco-tree.focused .selected .monaco-icon-label,.monaco-tree.focused .selected .monaco-icon-label:after{color:inherit!important}.monaco-list-row.focused.selected .label-description,.monaco-list-row.selected .label-description,.monaco-tree-row.focused.selected .label-description,.monaco-tree-row.selected .label-description{opacity:.8}.monaco-count-badge{padding:3px 5px;border-radius:11px;font-size:11px;min-width:18px;min-height:18px;line-height:11px;font-weight:400;text-align:center;display:inline-block;-webkit-box-sizing:border-box;box-sizing:border-box}.monaco-split-view2{position:relative;width:100%;height:100%}.monaco-split-view2>.sash-container{position:absolute;width:100%;height:100%;pointer-events:none}.monaco-split-view2>.sash-container>.monaco-sash{pointer-events:auto}.monaco-split-view2>.split-view-container{width:100%;height:100%;white-space:nowrap;position:relative}.monaco-split-view2>.split-view-container>.split-view-view{white-space:normal;position:absolute}.monaco-split-view2>.split-view-container>.split-view-view:not(.visible){display:none}.monaco-split-view2.vertical>.split-view-container>.split-view-view{width:100%}.monaco-split-view2.horizontal>.split-view-container>.split-view-view{height:100%}.monaco-split-view2.separator-border>.split-view-container>.split-view-view:not(:first-child):before{content:" ";position:absolute;top:0;left:0;z-index:5;pointer-events:none;background-color:var(--separator-border)}.monaco-split-view2.separator-border.horizontal>.split-view-container>.split-view-view:not(:first-child):before{height:100%;width:1px}.monaco-split-view2.separator-border.vertical>.split-view-container>.split-view-view:not(:first-child):before{height:1px;width:100%}.monaco-editor .goto-definition-link{text-decoration:underline;cursor:pointer}.monaco-editor .peekview-widget .head .peekview-title .severity-icon{display:inline-block;vertical-align:text-top;margin-right:4px}.monaco-editor .marker-widget{text-overflow:ellipsis;white-space:nowrap}.monaco-editor .marker-widget>.stale{opacity:.6;font-style:italic}.monaco-editor .marker-widget .title{display:inline-block;padding-right:5px}.monaco-editor .marker-widget .descriptioncontainer{position:absolute;white-space:pre;-moz-user-select:text;user-select:text;-webkit-user-select:text;-ms-user-select:text;padding:8px 12px 0 20px}.monaco-editor .marker-widget .descriptioncontainer .message{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.monaco-editor .marker-widget .descriptioncontainer .message .details{padding-left:6px}.monaco-editor .marker-widget .descriptioncontainer .message .code,.monaco-editor .marker-widget .descriptioncontainer .message .source{opacity:.6}.monaco-editor .marker-widget .descriptioncontainer .filename{cursor:pointer}.monaco-editor-hover{cursor:default;position:absolute;overflow:hidden;z-index:50;-moz-user-select:text;user-select:text;-webkit-user-select:text;-ms-user-select:text;-webkit-box-sizing:initial;box-sizing:initial;-webkit-animation:fadein .1s linear;animation:fadein .1s linear;line-height:1.5em}.monaco-editor-hover.hidden{display:none}.monaco-editor-hover .hover-contents{padding:4px 8px}.monaco-editor-hover .markdown-hover>.hover-contents:not(.code-hover-contents){max-width:500px;word-wrap:break-word}.monaco-editor-hover .markdown-hover>.hover-contents:not(.code-hover-contents) hr{min-width:100vw}.monaco-editor-hover p,.monaco-editor-hover ul{margin:8px 0}.monaco-editor-hover code{font-family:var(--monaco-monospace-font)}.monaco-editor-hover hr{margin-top:4px;margin-bottom:-6px;margin-left:-10px;margin-right:-10px;height:1px}.monaco-editor-hover p:first-child,.monaco-editor-hover ul:first-child{margin-top:0}.monaco-editor-hover p:last-child,.monaco-editor-hover ul:last-child{margin-bottom:0}.monaco-editor-hover ol,.monaco-editor-hover ul{padding-left:20px}.monaco-editor-hover li>p{margin-bottom:0}.monaco-editor-hover li>ul{margin-top:0}.monaco-editor-hover code{border-radius:3px;padding:0 .4em}.monaco-editor-hover .monaco-tokenized-source{white-space:pre-wrap;word-break:break-all}.monaco-editor-hover .hover-row.status-bar{font-size:12px;line-height:22px}.monaco-editor-hover .hover-row.status-bar .actions{display:-webkit-box;display:-ms-flexbox;display:flex;padding:0 8px}.monaco-editor-hover .hover-row.status-bar .actions .action-container{margin-right:16px;cursor:pointer}.monaco-editor-hover .hover-row.status-bar .actions .action-container .action .icon{padding-right:4px}.monaco-editor-hover .markdown-hover .hover-contents .codicon{color:inherit;font-size:inherit;vertical-align:middle}.colorpicker-widget{height:190px;-moz-user-select:none;user-select:none;-webkit-user-select:none;-ms-user-select:none}.monaco-editor .colorpicker-hover:focus{outline:none}.colorpicker-header{display:-webkit-box;display:-ms-flexbox;display:flex;height:24px;position:relative;background:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAYAAACp8Z5+AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAAZdEVYdFNvZnR3YXJlAHBhaW50Lm5ldCA0LjAuMTZEaa/1AAAAHUlEQVQYV2PYvXu3JAi7uLiAMaYAjAGTQBPYLQkAa/0Zef3qRswAAAAASUVORK5CYII=");background-size:9px 9px;-ms-interpolation-mode:nearest-neighbor;image-rendering:-webkit-optimize-contrast;image-rendering:-o-pixelated;image-rendering:pixelated}.colorpicker-header .picked-color{width:216px;line-height:24px;cursor:pointer;color:#fff;-webkit-box-flex:1;-ms-flex:1;flex:1;text-align:center}.colorpicker-header .picked-color.light{color:#000}.colorpicker-header .original-color{width:74px;z-index:inherit;cursor:pointer}.colorpicker-body{display:-webkit-box;display:-ms-flexbox;display:flex;padding:8px;position:relative}.colorpicker-body .saturation-wrap{overflow:hidden;height:150px;position:relative;min-width:220px;-webkit-box-flex:1;-ms-flex:1;flex:1}.colorpicker-body .saturation-box{height:150px;position:absolute}.colorpicker-body .saturation-selection{width:9px;height:9px;margin:-5px 0 0 -5px;border:1px solid #fff;border-radius:100%;-webkit-box-shadow:0 0 2px rgba(0,0,0,.8);box-shadow:0 0 2px rgba(0,0,0,.8);position:absolute}.colorpicker-body .strip{width:25px;height:150px}.colorpicker-body .hue-strip{background:-webkit-gradient(linear,left top,left bottom,from(red),color-stop(17%,#ff0),color-stop(33%,#0f0),color-stop(50%,#0ff),color-stop(67%,#00f),color-stop(83%,#f0f),to(red));background:linear-gradient(180deg,red 0,#ff0 17%,#0f0 33%,#0ff 50%,#00f 67%,#f0f 83%,red)}.colorpicker-body .hue-strip,.colorpicker-body .opacity-strip{position:relative;margin-left:8px;cursor:-webkit-grab;cursor:grab}.colorpicker-body .opacity-strip{background:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAYAAACp8Z5+AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAAZdEVYdFNvZnR3YXJlAHBhaW50Lm5ldCA0LjAuMTZEaa/1AAAAHUlEQVQYV2PYvXu3JAi7uLiAMaYAjAGTQBPYLQkAa/0Zef3qRswAAAAASUVORK5CYII=");background-size:9px 9px;-ms-interpolation-mode:nearest-neighbor;image-rendering:-webkit-optimize-contrast;image-rendering:-o-pixelated;image-rendering:pixelated}.colorpicker-body .strip.grabbing{cursor:-webkit-grabbing;cursor:grabbing}.colorpicker-body .slider{position:absolute;top:0;left:-2px;width:calc(100% + 4px);height:4px;-webkit-box-sizing:border-box;box-sizing:border-box;border:1px solid hsla(0,0%,100%,.71);-webkit-box-shadow:0 0 1px rgba(0,0,0,.85);box-shadow:0 0 1px rgba(0,0,0,.85)}.colorpicker-body .strip .overlay{height:150px;pointer-events:none}.monaco-editor .detected-link,.monaco-editor .detected-link-active{text-decoration:underline;text-underline-position:under}.monaco-editor .detected-link-active{cursor:pointer}.monaco-editor .parameter-hints-widget{z-index:10;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;line-height:1.5em}.monaco-editor .parameter-hints-widget>.wrapper{max-width:440px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.monaco-editor .parameter-hints-widget.multiple{min-height:3.3em;padding:0}.monaco-editor .parameter-hints-widget.visible{-webkit-transition:left .05s ease-in-out;transition:left .05s ease-in-out}.monaco-editor .parameter-hints-widget p,.monaco-editor .parameter-hints-widget ul{margin:8px 0}.monaco-editor .parameter-hints-widget .body,.monaco-editor .parameter-hints-widget .monaco-scrollable-element{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;min-height:100%}.monaco-editor .parameter-hints-widget .signature{padding:4px 5px}.monaco-editor .parameter-hints-widget .docs{padding:0 10px 0 5px;white-space:pre-wrap}.monaco-editor .parameter-hints-widget .docs.empty{display:none}.monaco-editor .parameter-hints-widget .docs .markdown-docs{white-space:normal}.monaco-editor .parameter-hints-widget .docs .code{white-space:pre-wrap}.monaco-editor .parameter-hints-widget .docs code{border-radius:3px;padding:0 .4em}.monaco-editor .parameter-hints-widget .controls{display:none;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center;min-width:22px;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.monaco-editor .parameter-hints-widget.multiple .controls{display:-webkit-box;display:-ms-flexbox;display:flex;padding:0 2px}.monaco-editor .parameter-hints-widget.multiple .button{width:16px;height:16px;background-repeat:no-repeat;cursor:pointer}.monaco-editor .parameter-hints-widget .button.previous{bottom:24px;background-image:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNiAxNiI+PHBhdGggZmlsbD0iIzQyNDI0MiIgZD0iTTEwLjggOS41bC45LS45TDguMSA1IDQuMiA4LjZsLjkuOSAzLTIuNyAyLjcgMi43eiIvPjwvc3ZnPg==")}.monaco-editor .parameter-hints-widget .button.next{background-image:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNiAxNiI+PHBhdGggZmlsbD0iIzQyNDI0MiIgZD0iTTUuMSA1bC0uOS45IDMuNiAzLjYgMy45LTMuNi0xLS45LTMgMi43TDUuMSA1eiIvPjwvc3ZnPg==")}.monaco-editor .parameter-hints-widget .overloads{text-align:center;height:12px;line-height:12px;opacity:.5;font-family:var(--monaco-monospace-font)}.monaco-editor .parameter-hints-widget .signature .parameter.active{font-weight:700;text-decoration:underline}.monaco-editor .parameter-hints-widget .documentation-parameter>.parameter{font-weight:700;margin-right:.5em}.monaco-editor.hc-black .parameter-hints-widget .button.previous,.monaco-editor.vs-dark .parameter-hints-widget .button.previous{background-image:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNiAxNiI+PHBhdGggZmlsbD0iI0U4RThFOCIgZD0iTTEwLjggOS41bC45LS45TDguMSA1IDQuMiA4LjZsLjkuOSAzLTIuNyAyLjcgMi43eiIvPjwvc3ZnPg==")}.monaco-editor.hc-black .parameter-hints-widget .button.next,.monaco-editor.vs-dark .parameter-hints-widget .button.next{background-image:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNiAxNiI+PHBhdGggZmlsbD0iI0U4RThFOCIgZD0iTTUuMSA1bC0uOS45IDMuNiAzLjYgMy45LTMuNi0xLS45LTMgMi43TDUuMSA1eiIvPjwvc3ZnPg==")}.monaco-editor .rename-box{z-index:100;color:inherit}.monaco-editor .rename-box .rename-input{padding:4px}.monaco-editor .snippet-placeholder{min-width:2px}.monaco-editor .finish-snippet-placeholder,.monaco-editor .snippet-placeholder{outline-style:solid;outline-width:1px}.monaco-editor .suggest-widget{z-index:40;width:430px}.monaco-editor .suggest-widget>.details,.monaco-editor .suggest-widget>.message,.monaco-editor .suggest-widget>.tree{width:100%;border-style:solid;border-width:1px;-webkit-box-sizing:border-box;box-sizing:border-box}.monaco-editor.hc-black .suggest-widget>.details,.monaco-editor.hc-black .suggest-widget>.message,.monaco-editor.hc-black .suggest-widget>.tree{border-width:2px}.monaco-editor .suggest-widget.docs-side{width:660px}.monaco-editor .suggest-widget.docs-side>.details,.monaco-editor .suggest-widget.docs-side>.tree{width:50%;float:left}.monaco-editor .suggest-widget.docs-side.list-right>.details,.monaco-editor .suggest-widget.docs-side.list-right>.tree{float:right}.monaco-editor .suggest-widget>.details ol,.monaco-editor .suggest-widget>.details ul{padding-left:20px}.monaco-editor .suggest-widget>.details p code{font-family:var(--monaco-monospace-font)}.monaco-editor .suggest-widget>.message{padding-left:22px}.monaco-editor .suggest-widget>.tree{height:100%}.monaco-editor .suggest-widget .monaco-list{-moz-user-select:none;user-select:none;-webkit-user-select:none;-ms-user-select:none}.monaco-editor .suggest-widget .monaco-list .monaco-list-row{display:-webkit-box;display:-ms-flexbox;display:flex;-mox-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;padding-right:10px;background-repeat:no-repeat;background-position:2px 2px;white-space:nowrap;cursor:pointer;-ms-touch-action:none;touch-action:none}.monaco-editor .suggest-widget .monaco-list .monaco-list-row>.contents{-webkit-box-flex:1;-ms-flex:1;flex:1;height:100%;overflow:hidden;padding-left:2px}.monaco-editor .suggest-widget .monaco-list .monaco-list-row>.contents>.main{display:-webkit-box;display:-ms-flexbox;display:flex;overflow:hidden;text-overflow:ellipsis;white-space:pre}.monaco-editor .suggest-widget:not(.frozen) .monaco-highlighted-label .highlight{font-weight:700}.monaco-editor .suggest-widget .details>.monaco-scrollable-element>.body>.header>.codicon-close,.monaco-editor .suggest-widget .monaco-list .monaco-list-row>.contents>.main>.readMore:before{color:inherit;opacity:.6;font-size:14px;margin-left:4px;cursor:pointer}.monaco-editor .suggest-widget .details>.monaco-scrollable-element>.body>.header>.codicon-close{position:absolute;top:2px;right:2px}.monaco-editor .suggest-widget .details>.monaco-scrollable-element>.body>.header>.codicon-close:hover,.monaco-editor .suggest-widget .monaco-list .monaco-list-row>.contents>.main>.readMore:hover{opacity:1}.monaco-editor .suggest-widget .monaco-list .monaco-list-row>.contents>.main>.type-label{margin-left:.8em;-webkit-box-flex:1;-ms-flex:1;flex:1;text-align:right;overflow:hidden;text-overflow:ellipsis;opacity:.7;white-space:nowrap}.monaco-editor .suggest-widget .monaco-list .monaco-list-row>.contents>.main>.type-label>.monaco-tokenized-source{display:inline}.monaco-editor .suggest-widget.docs-below .monaco-list .monaco-list-row.focused>.contents>.main>.readMore,.monaco-editor .suggest-widget.docs-side .monaco-list .monaco-list-row.focused>.contents>.main>.readMore,.monaco-editor .suggest-widget.docs-side .monaco-list .monaco-list-row.focused>.contents>.main>.type-label,.monaco-editor .suggest-widget .monaco-list .monaco-list-row>.contents>.main>.readMore,.monaco-editor .suggest-widget .monaco-list .monaco-list-row>.contents>.main>.type-label{display:none}.monaco-editor .suggest-widget .monaco-list .monaco-list-row.focused>.contents>.main>.readMore,.monaco-editor .suggest-widget .monaco-list .monaco-list-row.focused>.contents>.main>.type-label{display:inline}.monaco-editor .suggest-widget .monaco-list .monaco-list-row .monaco-icon-label.deprecated{opacity:.66;text-decoration:unset}.monaco-editor .suggest-widget .monaco-list .monaco-list-row .monaco-icon-label.deprecated>.monaco-icon-label-description-container{text-decoration:line-through}.monaco-editor .suggest-widget .monaco-list .monaco-list-row .monaco-icon-label:before{height:100%}.monaco-editor .suggest-widget .monaco-list .monaco-list-row .icon{display:block;height:16px;width:16px;margin-left:2px;background-repeat:no-repeat;background-size:80%;background-position:50%}.monaco-editor .suggest-widget .monaco-list .monaco-list-row .icon.hide{display:none}.monaco-editor .suggest-widget .monaco-list .monaco-list-row .suggest-icon{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-right:4px}.monaco-editor .suggest-widget.no-icons .monaco-list .monaco-list-row .icon,.monaco-editor .suggest-widget.no-icons .monaco-list .monaco-list-row .suggest-icon:before{display:none}.monaco-editor .suggest-widget .monaco-list .monaco-list-row .icon.customcolor .colorspan{margin:0 0 0 .3em;border:.1em solid #000;width:.7em;height:.7em;display:inline-block}.monaco-editor .suggest-widget .details{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;cursor:default}.monaco-editor .suggest-widget .details.no-docs{display:none}.monaco-editor .suggest-widget.docs-below .details{border-top-width:0}.monaco-editor .suggest-widget .details>.monaco-scrollable-element{-webkit-box-flex:1;-ms-flex:1;flex:1}.monaco-editor .suggest-widget .details>.monaco-scrollable-element>.body{position:absolute;-webkit-box-sizing:border-box;box-sizing:border-box;height:100%;width:100%}.monaco-editor .suggest-widget .details>.monaco-scrollable-element>.body>.header>.type{-webkit-box-flex:2;-ms-flex:2;flex:2;overflow:hidden;text-overflow:ellipsis;opacity:.7;word-break:break-all;margin:0 24px 0 0;padding:4px 0 12px 5px}.monaco-editor .suggest-widget .details>.monaco-scrollable-element>.body>.docs{margin:0;padding:4px 5px;white-space:pre-wrap}.monaco-editor .suggest-widget .details>.monaco-scrollable-element>.body>.docs.markdown-docs{padding:0;white-space:normal}.monaco-editor .suggest-widget .details>.monaco-scrollable-element>.body>.docs.markdown-docs>div,.monaco-editor .suggest-widget .details>.monaco-scrollable-element>.body>.docs.markdown-docs>span:not(:empty){padding:4px 5px}.monaco-editor .suggest-widget .details>.monaco-scrollable-element>.body>.docs.markdown-docs>div>p:first-child{margin-top:0}.monaco-editor .suggest-widget .details>.monaco-scrollable-element>.body>.docs.markdown-docs>div>p:last-child{margin-bottom:0}.monaco-editor .suggest-widget .details>.monaco-scrollable-element>.body>.docs .code{white-space:pre-wrap;word-wrap:break-word}.monaco-editor .suggest-widget .details>.monaco-scrollable-element>.body>p:empty{display:none}.monaco-editor .suggest-widget .details code{border-radius:3px;padding:0 .4em}.monaco-editor .suggest-insert-unexpected{font-style:italic}.monaco-list .monaco-list-row.focused.selected .outline-element-decoration,.monaco-list .monaco-list-row.focused.selected .outline-element .monaco-highlighted-label{color:inherit!important}.monaco-list .outline-element{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1;flex:1;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-flow:row nowrap;flex-flow:row nowrap;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monaco-list .outline-element .monaco-highlighted-label{color:var(--outline-element-color)}.monaco-tree .monaco-tree-row.focused .outline-element .outline-element-detail{visibility:inherit}.monaco-list .outline-element .outline-element-decoration{opacity:.75;font-size:90%;font-weight:600;padding:0 12px 0 5px;margin-left:auto;text-align:center;color:var(--outline-element-color)}.monaco-list .outline-element .outline-element-decoration.bubble{font-family:codicon;font-size:14px;opacity:.4}.monaco-list .outline-element .outline-element-icon{margin-right:4px}.monaco-workbench .monaco-icon-label.deprecated{text-decoration:line-through;opacity:.66}.monaco-workbench .symbol-icon.inline{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding-left:0}.monaco-workbench .symbol-icon.block{display:inline-block;height:14px;width:16px;min-height:14px;min-width:16px;background-position:50%}.monaco-editor .accessibilityHelpWidget{padding:10px;vertical-align:middle;overflow:scroll}.monaco-editor .iPadShowKeyboard{width:58px;min-width:0;height:36px;min-height:0;margin:0;padding:0;position:absolute;resize:none;overflow:hidden;background:url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTMiIGhlaWdodD0iMzYiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwKSI+PHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00OC4wMzYgNC4wMUg0LjAwOFYzMi4wM2g0NC4wMjhWNC4wMXpNNC4wMDguMDA4QTQuMDAzIDQuMDAzIDAgMCAwIC4wMDUgNC4wMVYzMi4wM2E0LjAwMyA0LjAwMyAwIDAgMCA0LjAwMyA0LjAwMmg0NC4wMjhhNC4wMDMgNC4wMDMgMCAwIDAgNC4wMDMtNC4wMDJWNC4wMUE0LjAwMyA0LjAwMyAwIDAgMCA0OC4wMzYuMDA4SDQuMDA4ek04LjAxIDguMDEzaDQuMDAzdjQuMDAzSDguMDFWOC4wMTN6bTEyLjAwOCAwaC00LjAwMnY0LjAwM2g0LjAwMlY4LjAxM3ptNC4wMDMgMGg0LjAwMnY0LjAwM2gtNC4wMDJWOC4wMTN6bTEyLjAwOCAwaC00LjAwM3Y0LjAwM2g0LjAwM1Y4LjAxM3ptNC4wMDIgMGg0LjAwM3Y0LjAwM0g0MC4wM1Y4LjAxM3ptLTI0LjAxNSA4LjAwNUg4LjAxdjQuMDAzaDguMDA2di00LjAwM3ptNC4wMDIgMGg0LjAwM3Y0LjAwM2gtNC4wMDN2LTQuMDAzem0xMi4wMDggMGgtNC4wMDN2NC4wMDNoNC4wMDN2LTQuMDAzem0xMi4wMDggMHY0LjAwM2gtOC4wMDV2LTQuMDAzaDguMDA1em0tMzIuMDIxIDguMDA1SDguMDF2NC4wMDNoNC4wMDN2LTQuMDAzem00LjAwMyAwaDIwLjAxM3Y0LjAwM0gxNi4wMTZ2LTQuMDAzem0yOC4wMTggMEg0MC4wM3Y0LjAwM2g0LjAwM3YtNC4wMDN6IiBmaWxsPSIjNDI0MjQyIi8+PC9nPjxkZWZzPjxjbGlwUGF0aCBpZD0iY2xpcDAiPjxwYXRoIGZpbGw9IiNmZmYiIGQ9Ik0wIDBoNTN2MzZIMHoiLz48L2NsaXBQYXRoPjwvZGVmcz48L3N2Zz4=") 50% no-repeat;border:4px solid #f6f6f6;border-radius:4px}.monaco-editor.vs-dark .iPadShowKeyboard{background:url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTMiIGhlaWdodD0iMzYiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwKSI+PHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik00OC4wMzYgNC4wMUg0LjAwOFYzMi4wM2g0NC4wMjhWNC4wMXpNNC4wMDguMDA4QTQuMDAzIDQuMDAzIDAgMCAwIC4wMDUgNC4wMVYzMi4wM2E0LjAwMyA0LjAwMyAwIDAgMCA0LjAwMyA0LjAwMmg0NC4wMjhhNC4wMDMgNC4wMDMgMCAwIDAgNC4wMDMtNC4wMDJWNC4wMUE0LjAwMyA0LjAwMyAwIDAgMCA0OC4wMzYuMDA4SDQuMDA4ek04LjAxIDguMDEzaDQuMDAzdjQuMDAzSDguMDFWOC4wMTN6bTEyLjAwOCAwaC00LjAwMnY0LjAwM2g0LjAwMlY4LjAxM3ptNC4wMDMgMGg0LjAwMnY0LjAwM2gtNC4wMDJWOC4wMTN6bTEyLjAwOCAwaC00LjAwM3Y0LjAwM2g0LjAwM1Y4LjAxM3ptNC4wMDIgMGg0LjAwM3Y0LjAwM0g0MC4wM1Y4LjAxM3ptLTI0LjAxNSA4LjAwNUg4LjAxdjQuMDAzaDguMDA2di00LjAwM3ptNC4wMDIgMGg0LjAwM3Y0LjAwM2gtNC4wMDN2LTQuMDAzem0xMi4wMDggMGgtNC4wMDN2NC4wMDNoNC4wMDN2LTQuMDAzem0xMi4wMDggMHY0LjAwM2gtOC4wMDV2LTQuMDAzaDguMDA1em0tMzIuMDIxIDguMDA1SDguMDF2NC4wMDNoNC4wMDN2LTQuMDAzem00LjAwMyAwaDIwLjAxM3Y0LjAwM0gxNi4wMTZ2LTQuMDAzem0yOC4wMTggMEg0MC4wM3Y0LjAwM2g0LjAwM3YtNC4wMDN6IiBmaWxsPSIjQzVDNUM1Ii8+PC9nPjxkZWZzPjxjbGlwUGF0aCBpZD0iY2xpcDAiPjxwYXRoIGZpbGw9IiNmZmYiIGQ9Ik0wIDBoNTN2MzZIMHoiLz48L2NsaXBQYXRoPjwvZGVmcz48L3N2Zz4=") 50% no-repeat;border:4px solid #252526}.monaco-editor .tokens-inspect-widget{z-index:50;-moz-user-select:text;user-select:text;-webkit-user-select:text;-ms-user-select:text;padding:10px}.tokens-inspect-separator{height:1px;border:0}.monaco-editor .tokens-inspect-widget .tm-token{font-family:monospace}.monaco-editor .tokens-inspect-widget .tm-token-length{font-weight:400;font-size:60%;float:right}.monaco-editor .tokens-inspect-widget .tm-metadata-table{width:100%}.monaco-editor .tokens-inspect-widget .tm-metadata-value{font-family:monospace;text-align:right}.monaco-editor .tokens-inspect-widget .tm-token-type{font-family:monospace}.monaco-keybinding{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;line-height:10px}.monaco-keybinding>.monaco-keybinding-key{display:inline-block;border:1px solid hsla(0,0%,80%,.4);border-bottom-color:hsla(0,0%,73.3%,.4);border-radius:3px;-webkit-box-shadow:inset 0 -1px 0 hsla(0,0%,73.3%,.4);box-shadow:inset 0 -1px 0 hsla(0,0%,73.3%,.4);background-color:hsla(0,0%,86.7%,.4);vertical-align:middle;color:#555;font-size:11px;padding:3px 5px;margin:0 2px}.monaco-keybinding>.monaco-keybinding-key:first-child{margin-left:0}.monaco-keybinding>.monaco-keybinding-key:last-child{margin-right:0}.hc-black .monaco-keybinding>.monaco-keybinding-key,.vs-dark .monaco-keybinding>.monaco-keybinding-key{background-color:hsla(0,0%,50.2%,.17);color:#ccc;border:1px solid rgba(51,51,51,.6);border-bottom-color:rgba(68,68,68,.6);-webkit-box-shadow:inset 0 -1px 0 rgba(68,68,68,.6);box-shadow:inset 0 -1px 0 rgba(68,68,68,.6)}.monaco-keybinding>.monaco-keybinding-key-separator{display:inline-block}.monaco-keybinding>.monaco-keybinding-key-chord-separator{width:6px}.monaco-quick-open-widget .monaco-list .monaco-list-row .monaco-highlighted-label .highlight,.monaco-quick-open-widget .monaco-tree .monaco-tree-row .monaco-highlighted-label .highlight{color:#0066bf}.vs-dark .monaco-quick-open-widget .monaco-list .monaco-list-row .monaco-highlighted-label .highlight,.vs-dark .monaco-quick-open-widget .monaco-tree .monaco-tree-row .monaco-highlighted-label .highlight{color:#0097fb}.hc-black .monaco-quick-open-widget .monaco-list .monaco-list-row .monaco-highlighted-label .highlight,.hc-black .monaco-quick-open-widget .monaco-tree .monaco-tree-row .monaco-highlighted-label .highlight{color:#f38518}.monaco-quick-open-widget{position:absolute;width:600px;z-index:2000;padding-bottom:6px;left:50%;margin-left:-300px}.monaco-quick-open-widget .monaco-progress-container{position:absolute;left:0;top:38px;z-index:1;height:2px}.monaco-quick-open-widget .monaco-progress-container .progress-bit{height:2px}.monaco-quick-open-widget .quick-open-input{width:588px;border:none;margin:6px}.monaco-quick-open-widget .quick-open-input .monaco-inputbox{width:100%;height:25px}.monaco-quick-open-widget .quick-open-result-count{position:absolute;left:-10000px}.monaco-quick-open-widget .quick-open-tree{line-height:22px}.monaco-quick-open-widget .quick-open-tree .monaco-tree-row>.content>.sub-content{overflow:hidden}.monaco-quick-open-widget.content-changing .quick-open-tree .monaco-scrollable-element .slider{display:none}.monaco-quick-open-widget .quick-open-tree .quick-open-entry{overflow:hidden;text-overflow:ellipsis;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;height:100%}.monaco-quick-open-widget .quick-open-tree .quick-open-entry .quick-open-entry-icon,.monaco-quick-open-widget .quick-open-tree .quick-open-entry>.quick-open-row{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.monaco-quick-open-widget .quick-open-tree .quick-open-entry .quick-open-entry-icon{overflow:hidden;width:16px;height:16px;margin-right:4px;vertical-align:middle;-ms-flex-negative:0;flex-shrink:0}.monaco-quick-open-widget .quick-open-tree .monaco-icon-label,.monaco-quick-open-widget .quick-open-tree .monaco-icon-label .monaco-icon-label-description-container{-webkit-box-flex:1;-ms-flex:1;flex:1}.monaco-quick-open-widget .quick-open-tree .quick-open-entry .monaco-highlighted-label span{opacity:1}.monaco-quick-open-widget .quick-open-tree .quick-open-entry-meta{opacity:.7;line-height:normal}.monaco-quick-open-widget .quick-open-tree .content.has-group-label .quick-open-entry-keybinding{margin-right:8px}.monaco-quick-open-widget .quick-open-tree .quick-open-entry-keybinding .monaco-keybinding-key{vertical-align:text-bottom}.monaco-quick-open-widget .quick-open-tree .results-group{margin-right:18px}.monaco-quick-open-widget .quick-open-tree .focused .monaco-tree-row.focused>.content.has-actions>.results-group,.monaco-quick-open-widget .quick-open-tree .monaco-tree-row.focused>.content.has-actions>.results-group,.monaco-quick-open-widget .quick-open-tree .monaco-tree-row:hover:not(.highlighted)>.content.has-actions>.results-group{margin-right:0}.monaco-quick-open-widget .quick-open-tree .results-group-separator{border-top-width:1px;border-top-style:solid;-webkit-box-sizing:border-box;box-sizing:border-box;margin-left:-11px;padding-left:11px}.monaco-tree .monaco-tree-row>.content.actions{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex}.monaco-tree .monaco-tree-row>.content.actions>.sub-content{-webkit-box-flex:1;-ms-flex:1;flex:1}.monaco-tree .monaco-tree-row>.content.actions .action-item{margin:0}.monaco-tree .monaco-tree-row>.content.actions>.primary-action-bar{line-height:22px;display:none;padding:0 .8em 0 .4em}.monaco-tree .monaco-tree-row.focused>.content.has-actions>.primary-action-bar{width:0;display:block}.monaco-tree.focused .monaco-tree-row.focused>.content.has-actions>.primary-action-bar,.monaco-tree .monaco-tree-row:hover:not(.highlighted)>.content.has-actions>.primary-action-bar,.monaco-tree .monaco-tree-row>.content.has-actions.more>.primary-action-bar{width:inherit;display:block}.monaco-tree .monaco-tree-row>.content.actions>.primary-action-bar .action-label{margin-right:.4em;margin-top:4px;background-repeat:no-repeat;width:16px;height:16px}.monaco-quick-open-widget .quick-open-tree .monaco-highlighted-label .highlight{font-weight:700}.monaco-tree{height:100%;width:100%;white-space:nowrap;-moz-user-select:none;user-select:none;-webkit-user-select:none;-ms-user-select:none;position:relative}.monaco-tree>.monaco-scrollable-element{height:100%}.monaco-tree>.monaco-scrollable-element>.monaco-tree-wrapper{height:100%;width:100%;position:relative}.monaco-tree .monaco-tree-rows{position:absolute;width:100%;height:100%}.monaco-tree .monaco-tree-rows>.monaco-tree-row{-webkit-box-sizing:border-box;box-sizing:border-box;cursor:pointer;overflow:hidden;width:100%;-ms-touch-action:none;touch-action:none}.monaco-tree .monaco-tree-rows>.monaco-tree-row>.content{position:relative;height:100%}.monaco-tree-drag-image{display:inline-block;padding:1px 7px;border-radius:10px;font-size:12px;position:absolute}.monaco-tree .monaco-tree-rows>.monaco-tree-row.scrolling{display:none}.monaco-tree.highlighted .monaco-tree-rows>.monaco-tree-row:not(.highlighted){opacity:.3}.monaco-progress-container{width:100%;height:5px;overflow:hidden}.monaco-progress-container .progress-bit{width:2%;height:5px;position:absolute;left:0;display:none}.monaco-progress-container.active .progress-bit{display:inherit}.monaco-progress-container.discrete .progress-bit{left:0;-webkit-transition:width .1s linear;transition:width .1s linear}.monaco-progress-container.discrete.done .progress-bit{width:100%}.monaco-progress-container.infinite .progress-bit{-webkit-animation-name:progress;animation-name:progress;-webkit-animation-duration:4s;animation-duration:4s;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;-webkit-animation-timing-function:linear;animation-timing-function:linear;-webkit-transform:translateZ(0);transform:translateZ(0)}@-webkit-keyframes progress{0%{-webkit-transform:translateX(0) scaleX(1);transform:translateX(0) scaleX(1)}50%{-webkit-transform:translateX(2500%) scaleX(3);transform:translateX(2500%) scaleX(3)}to{-webkit-transform:translateX(4950%) scaleX(1);transform:translateX(4950%) scaleX(1)}}@keyframes progress{0%{-webkit-transform:translateX(0) scaleX(1);transform:translateX(0) scaleX(1)}50%{-webkit-transform:translateX(2500%) scaleX(3);transform:translateX(2500%) scaleX(3)}to{-webkit-transform:translateX(4950%) scaleX(1);transform:translateX(4950%) scaleX(1)}}.monaco-quick-open-widget{font-size:13px} \ No newline at end of file diff --git a/public/mer/js/app.4dce0ecb.js b/public/mer/js/app.4dce0ecb.js new file mode 100644 index 00000000..efb2828b --- /dev/null +++ b/public/mer/js/app.4dce0ecb.js @@ -0,0 +1 @@ +(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["app"],{0:function(t,e,n){t.exports=n("56d7")},"0781":function(t,e,n){"use strict";n.r(e);n("24ab");var i=n("83d6"),a=n.n(i),r=a.a.showSettings,o=a.a.tagsView,c=a.a.fixedHeader,s=a.a.sidebarLogo,u={theme:JSON.parse(localStorage.getItem("themeColor"))?JSON.parse(localStorage.getItem("themeColor")):"#1890ff",showSettings:r,tagsView:o,fixedHeader:c,sidebarLogo:s,isEdit:!1},l={CHANGE_SETTING:function(t,e){var n=e.key,i=e.value;t.hasOwnProperty(n)&&(t[n]=i)},SET_ISEDIT:function(t,e){t.isEdit=e}},d={changeSetting:function(t,e){var n=t.commit;n("CHANGE_SETTING",e)},setEdit:function(t,e){var n=t.commit;n("SET_ISEDIT",e)}};e["default"]={namespaced:!0,state:u,mutations:l,actions:d}},"096e":function(t,e,n){"use strict";n.r(e);var i=n("e017"),a=n.n(i),r=n("21a1"),o=n.n(r),c=new a.a({id:"icon-skill",use:"icon-skill-usage",viewBox:"0 0 128 128",content:''});o.a.add(c);e["default"]=c},"0a4d":function(t,e,n){"use strict";n("ddd5")},"0c6d":function(t,e,n){"use strict";n("ac6a");var i=n("bc3a"),a=n.n(i),r=n("4360"),o=n("bbcc"),c=a.a.create({baseURL:o["a"].https,timeout:6e4}),s={login:!0};function u(t){var e=r["a"].getters.token,n=t.headers||{};return e&&(n["X-Token"]=e,t.headers=n),new Promise((function(e,n){c(t).then((function(t){var i=t.data||{};return 200!==t.status?n({message:"请求失败",res:t,data:i}):-1===[41e4,410001,410002,4e4].indexOf(i.status)?200===i.status?e(i,t):n({message:i.message,res:t,data:i}):void r["a"].dispatch("user/resetToken").then((function(){location.reload()}))})).catch((function(t){return n({message:t})}))}))}var l=["post","put","patch","delete"].reduce((function(t,e){return t[e]=function(t){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};return u(Object.assign({url:t,data:n,method:e},s,i))},t}),{});["get","head"].forEach((function(t){l[t]=function(e){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};return u(Object.assign({url:e,params:n,method:t},s,i))}})),e["a"]=l},"0f9a":function(t,e,n){"use strict";n.r(e);var i=n("c7eb"),a=(n("96cf"),n("1da1")),r=(n("7f7f"),n("c24f")),o=n("5f87"),c=n("a18c"),s=n("a78e"),u=n.n(s),l={token:Object(o["a"])(),name:"",avatar:"",introduction:"",roles:[],menuList:JSON.parse(localStorage.getItem("MenuList")),sidebarWidth:window.localStorage.getItem("sidebarWidth"),sidebarStyle:window.localStorage.getItem("sidebarStyle")},d={SET_MENU_LIST:function(t,e){t.menuList=e},SET_TOKEN:function(t,e){t.token=e},SET_INTRODUCTION:function(t,e){t.introduction=e},SET_NAME:function(t,e){t.name=e},SET_AVATAR:function(t,e){t.avatar=e},SET_ROLES:function(t,e){t.roles=e},SET_SIDEBAR_WIDTH:function(t,e){t.sidebarWidth=e},SET_SIDEBAR_STYLE:function(t,e){t.sidebarStyle=e,window.localStorage.setItem("sidebarStyle",e)}},h={login:function(t,e){var n=t.commit;return new Promise((function(t,i){Object(r["q"])(e).then((function(e){var i=e.data;n("SET_TOKEN",i.token),u.a.set("MerName",i.admin.account),Object(o["c"])(i.token),t(i)})).catch((function(t){i(t)}))}))},getMenus:function(t){var e=this,n=t.commit;return new Promise((function(t,i){Object(r["k"])().then((function(e){n("SET_MENU_LIST",e.data),localStorage.setItem("MenuList",JSON.stringify(e.data)),t(e)})).catch((function(t){e.$message.error(t.message),i(t)}))}))},getInfo:function(t){var e=t.commit,n=t.state;return new Promise((function(t,i){Object(r["j"])(n.token).then((function(n){var a=n.data;a||i("Verification failed, please Login again.");var r=a.roles,o=a.name,c=a.avatar,s=a.introduction;(!r||r.length<=0)&&i("getInfo: roles must be a non-null array!"),e("SET_ROLES",r),e("SET_NAME",o),e("SET_AVATAR",c),e("SET_INTRODUCTION",s),t(a)})).catch((function(t){i(t)}))}))},logout:function(t){var e=t.commit,n=t.state,i=t.dispatch;return new Promise((function(t,a){Object(r["s"])(n.token).then((function(){e("SET_TOKEN",""),e("SET_ROLES",[]),Object(o["b"])(),Object(c["d"])(),u.a.remove(),i("tagsView/delAllViews",null,{root:!0}),t()})).catch((function(t){a(t)}))}))},resetToken:function(t){var e=t.commit;return new Promise((function(t){e("SET_TOKEN",""),e("SET_ROLES",[]),Object(o["b"])(),t()}))},changeRoles:function(t,e){var n=t.commit,r=t.dispatch;return new Promise(function(){var t=Object(a["a"])(Object(i["a"])().mark((function t(a){var s,u,l,d;return Object(i["a"])().wrap((function(t){while(1)switch(t.prev=t.next){case 0:return s=e+"-token",n("SET_TOKEN",s),Object(o["c"])(s),t.next=5,r("getInfo");case 5:return u=t.sent,l=u.roles,Object(c["d"])(),t.next=10,r("permission/generateRoutes",l,{root:!0});case 10:d=t.sent,c["c"].addRoutes(d),r("tagsView/delAllViews",null,{root:!0}),a();case 14:case"end":return t.stop()}}),t)})));return function(e){return t.apply(this,arguments)}}())}};e["default"]={namespaced:!0,state:l,mutations:d,actions:h}},1:function(t,e){},"12a5":function(t,e,n){"use strict";n.r(e);var i=n("e017"),a=n.n(i),r=n("21a1"),o=n.n(r),c=new a.a({id:"icon-shopping",use:"icon-shopping-usage",viewBox:"0 0 128 128",content:''});o.a.add(c);e["default"]=c},1430:function(t,e,n){"use strict";n.r(e);var i=n("e017"),a=n.n(i),r=n("21a1"),o=n.n(r),c=new a.a({id:"icon-qq",use:"icon-qq-usage",viewBox:"0 0 128 128",content:''});o.a.add(c);e["default"]=c},"14b7":function(t,e,n){},"15ae":function(t,e,n){"use strict";n("7680")},1779:function(t,e,n){"use strict";n.r(e);var i=n("e017"),a=n.n(i),r=n("21a1"),o=n.n(r),c=new a.a({id:"icon-bug",use:"icon-bug-usage",viewBox:"0 0 128 128",content:''});o.a.add(c);e["default"]=c},"17df":function(t,e,n){"use strict";n.r(e);var i=n("e017"),a=n.n(i),r=n("21a1"),o=n.n(r),c=new a.a({id:"icon-international",use:"icon-international-usage",viewBox:"0 0 128 128",content:''});o.a.add(c);e["default"]=c},"18f0":function(t,e,n){"use strict";n.r(e);var i=n("e017"),a=n.n(i),r=n("21a1"),o=n.n(r),c=new a.a({id:"icon-link",use:"icon-link-usage",viewBox:"0 0 128 128",content:''});o.a.add(c);e["default"]=c},"1aef":function(t,e,n){"use strict";n("ec9f")},"1e38":function(t,e,n){"use strict";n("c6b6")},"225f":function(t,e,n){"use strict";n("3ddf")},"24ab":function(t,e,n){t.exports={theme:"#1890ff"}},2580:function(t,e,n){"use strict";n.r(e);var i=n("e017"),a=n.n(i),r=n("21a1"),o=n.n(r),c=new a.a({id:"icon-language",use:"icon-language-usage",viewBox:"0 0 128 128",content:''});o.a.add(c);e["default"]=c},2801:function(t,e,n){"use strict";n.d(e,"k",(function(){return a})),n.d(e,"o",(function(){return r})),n.d(e,"m",(function(){return o})),n.d(e,"n",(function(){return c})),n.d(e,"l",(function(){return s})),n.d(e,"c",(function(){return u})),n.d(e,"b",(function(){return l})),n.d(e,"s",(function(){return d})),n.d(e,"i",(function(){return h})),n.d(e,"j",(function(){return m})),n.d(e,"a",(function(){return f})),n.d(e,"q",(function(){return p})),n.d(e,"p",(function(){return g})),n.d(e,"r",(function(){return b})),n.d(e,"g",(function(){return v})),n.d(e,"f",(function(){return A})),n.d(e,"e",(function(){return w})),n.d(e,"d",(function(){return y})),n.d(e,"h",(function(){return k}));var i=n("0c6d");function a(t){return i["a"].get("store/order/reconciliation/lst",t)}function r(t,e){return i["a"].post("store/order/reconciliation/status/".concat(t),e)}function o(t,e){return i["a"].get("store/order/reconciliation/".concat(t,"/order"),e)}function c(t,e){return i["a"].get("store/order/reconciliation/".concat(t,"/refund"),e)}function s(t){return i["a"].get("store/order/reconciliation/mark/".concat(t,"/form"))}function u(t){return i["a"].get("financial_record/list",t)}function l(t){return i["a"].get("financial_record/export",t)}function d(t){return i["a"].get("financial/export",t)}function h(){return i["a"].get("version")}function m(){return i["a"].get("financial/account/form")}function f(){return i["a"].get("financial/create/form")}function p(t){return i["a"].get("financial/lst",t)}function g(t){return i["a"].get("financial/detail/".concat(t))}function b(t){return i["a"].get("financial/mark/".concat(t,"/form"))}function v(t){return i["a"].get("financial_record/lst",t)}function A(t,e){return i["a"].get("financial_record/detail/".concat(t),e)}function w(t){return i["a"].get("financial_record/title",t)}function y(t,e){return i["a"].get("financial_record/detail_export/".concat(t),e)}function k(t){return i["a"].get("financial_record/count",t)}},"29c0":function(t,e,n){},"2a3d":function(t,e,n){"use strict";n.r(e);var i=n("e017"),a=n.n(i),r=n("21a1"),o=n.n(r),c=new a.a({id:"icon-password",use:"icon-password-usage",viewBox:"0 0 128 128",content:''});o.a.add(c);e["default"]=c},"2f11":function(t,e,n){"use strict";n.r(e);var i=n("e017"),a=n.n(i),r=n("21a1"),o=n.n(r),c=new a.a({id:"icon-peoples",use:"icon-peoples-usage",viewBox:"0 0 128 128",content:''});o.a.add(c);e["default"]=c},3046:function(t,e,n){"use strict";n.r(e);var i=n("e017"),a=n.n(i),r=n("21a1"),o=n.n(r),c=new a.a({id:"icon-money",use:"icon-money-usage",viewBox:"0 0 128 128",content:''});o.a.add(c);e["default"]=c},3087:function(t,e,n){"use strict";n.r(e);n("ac6a"),n("456d"),n("7f7f");e["default"]={namespaced:!0,state:{configName:"",pageTitle:"",pageName:"",pageShow:1,pageColor:0,pagePic:0,pageColorPicker:"#f5f5f5",pageTabVal:0,pagePicUrl:"",defaultArray:{},pageFooter:{name:"pageFoot",setUp:{tabVal:"0"},status:{title:"是否自定义",name:"status",status:!1},txtColor:{title:"文字颜色",name:"txtColor",default:[{item:"#282828"}],color:[{item:"#282828"}]},activeTxtColor:{title:"选中文字颜色",name:"txtColor",default:[{item:"#F62C2C"}],color:[{item:"#F62C2C"}]},bgColor:{title:"背景颜色",name:"bgColor",default:[{item:"#fff"}],color:[{item:"#fff"}]},menuList:[{imgList:[n("5946"),n("641c")],name:"首页",link:"/pages/index/index"},{imgList:[n("410e"),n("5640")],name:"分类",link:"/pages/goods_cate/goods_cate"},{imgList:[n("e03b"),n("905e")],name:"逛逛",link:"/pages/plant_grass/index"},{imgList:[n("af8c"),n("73fc")],name:"购物车",link:"/pages/order_addcart/order_addcart"},{imgList:[n("3dde"),n("8ea6")],name:"我的",link:"/pages/user/index"}]}},mutations:{FOOTER:function(t,e){t.pageFooter.status.title=e.title,t.pageFooter.menuList[2]=e.name},ADDARRAY:function(t,e){e.val.id="id"+e.val.timestamp,t.defaultArray[e.num]=e.val},DELETEARRAY:function(t,e){delete t.defaultArray[e.num]},ARRAYREAST:function(t,e){delete t.defaultArray[e]},defaultArraySort:function(t,e){var n=r(t.defaultArray),i=[],a={};function r(t){var e=Object.keys(t),n=e.map((function(e){return t[e]}));return n}function o(t,n,i){return t.forEach((function(t,n){t.id||(t.id="id"+t.timestamp),e.list.forEach((function(e,n){t.id==e.id&&(t.timestamp=e.num)}))})),t}void 0!=e.oldIndex?i=JSON.parse(JSON.stringify(o(n,e.newIndex,e.oldIndex))):(n.splice(e.newIndex,0,e.element.data().defaultConfig),i=JSON.parse(JSON.stringify(o(n,0,0))));for(var c=0;c'});o.a.add(c);e["default"]=c},"31c2":function(t,e,n){"use strict";n.r(e),n.d(e,"filterAsyncRoutes",(function(){return o}));var i=n("5530"),a=(n("ac6a"),n("6762"),n("2fdb"),n("a18c"));function r(t,e){return!e.meta||!e.meta.roles||t.some((function(t){return e.meta.roles.includes(t)}))}function o(t,e){var n=[];return t.forEach((function(t){var a=Object(i["a"])({},t);r(e,a)&&(a.children&&(a.children=o(a.children,e)),n.push(a))})),n}var c={routes:[],addRoutes:[]},s={SET_ROUTES:function(t,e){t.addRoutes=e,t.routes=a["b"].concat(e)}},u={generateRoutes:function(t,e){var n=t.commit;return new Promise((function(t){var i;i=e.includes("admin2")?a["asyncRoutes"]||[]:o(a["asyncRoutes"],e),n("SET_ROUTES",i),t(i)}))}};e["default"]={namespaced:!0,state:c,mutations:s,actions:u}},3289:function(t,e,n){"use strict";n.r(e);var i=n("e017"),a=n.n(i),r=n("21a1"),o=n.n(r),c=new a.a({id:"icon-list",use:"icon-list-usage",viewBox:"0 0 128 128",content:''});o.a.add(c);e["default"]=c},"3dde":function(t,e){t.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFEAAABRCAYAAACqj0o2AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA25pVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTQ1IDc5LjE2MzQ5OSwgMjAxOC8wOC8xMy0xNjo0MDoyMiAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDo2OWRlYjViMi04ZTEzLWNmNDgtODFlNi0yNzk5OTk1OWFjZjgiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6REFEQTg5MUU0MzlFMTFFOThDMzZDQjMzNTFCMDc3NUEiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6REFEQTg5MUQ0MzlFMTFFOThDMzZDQjMzNTFCMDc3NUEiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTkgKFdpbmRvd3MpIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6MkQxNzQyQjZFRjA2MTFFODhBREFDNDFBMUJFNDQxREIiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6MkQxNzQyQjdFRjA2MTFFODhBREFDNDFBMUJFNDQxREIiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz4dXT0nAAAECElEQVR42uycW0gVURSG5+ixTIlCshN0e8iiC0LRMSUwiiKKQOlGQQXSSwQR0YUo6jV8KYkKeiiKsvAliCLCohQiwlS6oJWUlaWVngq6oVhp/2K2ICF0zD17z6xZC362D+fsOfubmb0us8ZIb2+vIzY0SxEEAlEgCkQxgSgQBaJAFBvAosl8KBKJGP9h7XOn0AmOQcOhTqgjVt9sPDNIJhmJJPUhAxABjQ6yEFoJLYBm/XWSf0FN0F3oKlQJqD8FogsvFcMmaD80dRBffQcdhY4BZmdoIQLgTAxnobwhTNMClQBktS2I1hwLAK7FUDtEgGSToduYb2+ovDMWvBlDBZShaUq6VUoxb6mN9Ri/nbHQFRiueHgCd+PWPsx2TwTAiRgeQ6M9vDB+Q4UAeY/rnnjcY4Bk5O1P4YRFTS3KGEQsqhBDkaHDkdffyNGx7DJ81e9h5VhwFWZhSFjYPuLYG+u57InLLIVTyzndzvmW4uB5nCBOswRxOieIMUsQszhBtJWjRzkt7qMliN85QWyzBPENJ4iPLEFs5ASxyhLEKjYQkTU8wPDKMMAu6Bo3r3nSMMQKnLwvHCEmDB2LaorGqtzGIOKq+Iphn6HDleF4TewgKpCnMVw2EAkcNLkuG5kEPWN+6GE8WoyT1cUaIhZIWcQSqEbz1K+hRZi/xfSarOS0WOgnWjB0RtOUN6F8zPvcxnr80EZCBdsj0Iz/+Pp76ACdDK+anQLT0KQ6wIqhEmgplP6P8OUOdA66AHjdXv62QHWF9QNKAOOOW1Ad77hdEp0qxqSwpQbgvpn6PYGE6DfzdUMTJxOIAtEfFvXTj4FTGYNhEpQN0d9p0CiIHAm1G9NjBoox31J4Y6OH2zeOBbAITJ7ywrmO25+dA2UOYhoKbV5CDY5bwa6DagG2naV3BrRMlepRlrJYQfPK5TdD1dAtx22O/xxYiAA3EsNqaI0Cl27hTutRgfklxy3SJgIBEfCoZWQbtMrR106sw2hPvQ6dgG4ku58ahajaiCmPLQiAQ33quJXvcsDssQ4R8KhpqAyaH8Do5Am0EyArrUAEvBEYDkHbGcSb56EdAzkhzyACIL07QmX+2YxiZgqXqCre4DlEAMxV4UM2w+SDqu5FAFnlGUT1CsV9aBzjLI6eVRcA5DPtVRz1Fmg5c4COSjMvqhc3tRcg+l6hDYPNgTZ4AXFryIozW7QWIDriOVTt+QENCxFEepaTMbbuRbeuKzEWMoBkqcnu/8lCTHPCaSk6IYoJRIEoEAWimED0G8Sw/uPZHp0QW6EPIQNIbXtt2iDG6pspBVoXIpC0zvVq3Xpy5371REqFJjjePTP2gxGQ1j6A2oqyYuKdBaJAFIhiAlEgCkSBKDZ4+yPAAP/CgFUoJ7ivAAAAAElFTkSuQmCC"},"3ddf":function(t,e,n){},"410e":function(t,e){t.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFEAAABRCAYAAACqj0o2AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA25pVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTQ1IDc5LjE2MzQ5OSwgMjAxOC8wOC8xMy0xNjo0MDoyMiAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDo2OWRlYjViMi04ZTEzLWNmNDgtODFlNi0yNzk5OTk1OWFjZjgiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6MDA1MjZDM0I0MzlGMTFFOTkxMTdCN0ZFMDQzOTIyMkEiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6MDA1MjZDM0E0MzlGMTFFOTkxMTdCN0ZFMDQzOTIyMkEiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTkgKFdpbmRvd3MpIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6MkQxNzQyQjZFRjA2MTFFODhBREFDNDFBMUJFNDQxREIiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6MkQxNzQyQjdFRjA2MTFFODhBREFDNDFBMUJFNDQxREIiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz6rO72jAAABsUlEQVR42uzcsU4CQRDG8TtFGhLtKIydJJQ0VD4CRisfQe2oLCyECiwoqHwJ38PEiobGChMri+skoVHIOZtoQi4k7nqZUbj/l0yIEy93/nBng5zEaZpGJF+2IAARRBAJiCCCCCIBEUQQNzmlkG9OmrUjebiRqihe01SqKzXO9BtSPaldxXPPpG6ro8mjGqLkSqpl8OQmUueZXlvqxOiX61hzOW//4QopGZ07eJUxE9lY1nBj+Ydxs+spx/EHUg9FR3yVemE5MxMJiCCCCCIBEUQQQSQggggiiOTnrPufwuo5j98HMYruWc7MRPJbxA+j63r37Glkqj0T+1JvyrPUYQ1W9L97ZcVzz6XuQg+KQ/4FI2nWCrE8q6MJM5GNBUResfjE3d7WNtpYnjP9Q6lro41lrInYkTozeoIvM187wAuLfUXqVHM57xgBlj17Ggm+iZSZyMYCIogERBBBBJGACCKIIBIQQQQRRAIiiCCCSEAEsSiIC6Prmnv2NDILPSD0zfvh16PmR7u4eyBX3d7menuR7nvfi6Wf0Tsxn27MTAQRRAIiiCCCSEAEEcRNzqcAAwAGvzdJXw0gUgAAAABJRU5ErkJggg=="},"432f":function(t,e,n){},4360:function(t,e,n){"use strict";n("a481"),n("ac6a");var i=n("2b0e"),a=n("2f62"),r=(n("7f7f"),{sidebar:function(t){return t.app.sidebar},size:function(t){return t.app.size},device:function(t){return t.app.device},visitedViews:function(t){return t.tagsView.visitedViews},isEdit:function(t){return t.settings.isEdit},cachedViews:function(t){return t.tagsView.cachedViews},token:function(t){return t.user.token},avatar:function(t){return t.user.avatar},name:function(t){return t.user.name},introduction:function(t){return t.user.introduction},roles:function(t){return t.user.roles},permission_routes:function(t){return t.permission.routes},errorLogs:function(t){return t.errorLog.logs},menuList:function(t){return t.user.menuList}}),o=r,c=n("bfa9");i["default"].use(a["a"]);var s=n("c653"),u=s.keys().reduce((function(t,e){var n=e.replace(/^\.\/(.*)\.\w+$/,"$1"),i=s(e);return t[n]=i.default,t}),{}),l=(new c["a"]({storage:window.localStorage}),new a["a"].Store({modules:u,getters:o}));e["a"]=l},4678:function(t,e,n){var i={"./af":"2bfb","./af.js":"2bfb","./ar":"8e73","./ar-dz":"a356","./ar-dz.js":"a356","./ar-kw":"423e","./ar-kw.js":"423e","./ar-ly":"1cfd","./ar-ly.js":"1cfd","./ar-ma":"0a84","./ar-ma.js":"0a84","./ar-sa":"8230","./ar-sa.js":"8230","./ar-tn":"6d83","./ar-tn.js":"6d83","./ar.js":"8e73","./az":"485c","./az.js":"485c","./be":"1fc1","./be.js":"1fc1","./bg":"84aa","./bg.js":"84aa","./bm":"a7fa","./bm.js":"a7fa","./bn":"9043","./bn-bd":"9686","./bn-bd.js":"9686","./bn.js":"9043","./bo":"d26a","./bo.js":"d26a","./br":"6887","./br.js":"6887","./bs":"2554","./bs.js":"2554","./ca":"d716","./ca.js":"d716","./cs":"3c0d","./cs.js":"3c0d","./cv":"03ec","./cv.js":"03ec","./cy":"9797","./cy.js":"9797","./da":"0f14","./da.js":"0f14","./de":"b469","./de-at":"b3eb","./de-at.js":"b3eb","./de-ch":"bb71","./de-ch.js":"bb71","./de.js":"b469","./dv":"598a","./dv.js":"598a","./el":"8d47","./el.js":"8d47","./en-au":"0e6b","./en-au.js":"0e6b","./en-ca":"3886","./en-ca.js":"3886","./en-gb":"39a6","./en-gb.js":"39a6","./en-ie":"e1d3","./en-ie.js":"e1d3","./en-il":"7333","./en-il.js":"7333","./en-in":"ec2e","./en-in.js":"ec2e","./en-nz":"6f50","./en-nz.js":"6f50","./en-sg":"b7e9","./en-sg.js":"b7e9","./eo":"65db","./eo.js":"65db","./es":"898b","./es-do":"0a3c","./es-do.js":"0a3c","./es-mx":"b5b7","./es-mx.js":"b5b7","./es-us":"55c9","./es-us.js":"55c9","./es.js":"898b","./et":"ec18","./et.js":"ec18","./eu":"0ff2","./eu.js":"0ff2","./fa":"8df4","./fa.js":"8df4","./fi":"81e9","./fi.js":"81e9","./fil":"d69a","./fil.js":"d69a","./fo":"0721","./fo.js":"0721","./fr":"9f26","./fr-ca":"d9f8","./fr-ca.js":"d9f8","./fr-ch":"0e49","./fr-ch.js":"0e49","./fr.js":"9f26","./fy":"7118","./fy.js":"7118","./ga":"5120","./ga.js":"5120","./gd":"f6b4","./gd.js":"f6b4","./gl":"8840","./gl.js":"8840","./gom-deva":"aaf2","./gom-deva.js":"aaf2","./gom-latn":"0caa","./gom-latn.js":"0caa","./gu":"e0c5","./gu.js":"e0c5","./he":"c7aa","./he.js":"c7aa","./hi":"dc4d","./hi.js":"dc4d","./hr":"4ba9","./hr.js":"4ba9","./hu":"5b14","./hu.js":"5b14","./hy-am":"d6b6","./hy-am.js":"d6b6","./id":"5038","./id.js":"5038","./is":"0558","./is.js":"0558","./it":"6e98","./it-ch":"6f12","./it-ch.js":"6f12","./it.js":"6e98","./ja":"079e","./ja.js":"079e","./jv":"b540","./jv.js":"b540","./ka":"201b","./ka.js":"201b","./kk":"6d79","./kk.js":"6d79","./km":"e81d","./km.js":"e81d","./kn":"3e92","./kn.js":"3e92","./ko":"22f8","./ko.js":"22f8","./ku":"2421","./ku.js":"2421","./ky":"9609","./ky.js":"9609","./lb":"440c","./lb.js":"440c","./lo":"b29d","./lo.js":"b29d","./lt":"26f9","./lt.js":"26f9","./lv":"b97c","./lv.js":"b97c","./me":"293c","./me.js":"293c","./mi":"688b","./mi.js":"688b","./mk":"6909","./mk.js":"6909","./ml":"02fb","./ml.js":"02fb","./mn":"958b","./mn.js":"958b","./mr":"39bd","./mr.js":"39bd","./ms":"ebe4","./ms-my":"6403","./ms-my.js":"6403","./ms.js":"ebe4","./mt":"1b45","./mt.js":"1b45","./my":"8689","./my.js":"8689","./nb":"6ce3","./nb.js":"6ce3","./ne":"3a39","./ne.js":"3a39","./nl":"facd","./nl-be":"db29","./nl-be.js":"db29","./nl.js":"facd","./nn":"b84c","./nn.js":"b84c","./oc-lnc":"167b","./oc-lnc.js":"167b","./pa-in":"f3ff","./pa-in.js":"f3ff","./pl":"8d57","./pl.js":"8d57","./pt":"f260","./pt-br":"d2d4","./pt-br.js":"d2d4","./pt.js":"f260","./ro":"972c","./ro.js":"972c","./ru":"957c","./ru.js":"957c","./sd":"6784","./sd.js":"6784","./se":"ffff","./se.js":"ffff","./si":"eda5","./si.js":"eda5","./sk":"7be6","./sk.js":"7be6","./sl":"8155","./sl.js":"8155","./sq":"c8f3","./sq.js":"c8f3","./sr":"cf1e","./sr-cyrl":"13e9","./sr-cyrl.js":"13e9","./sr.js":"cf1e","./ss":"52bd","./ss.js":"52bd","./sv":"5fbd","./sv.js":"5fbd","./sw":"74dc","./sw.js":"74dc","./ta":"3de5","./ta.js":"3de5","./te":"5cbb","./te.js":"5cbb","./tet":"576c","./tet.js":"576c","./tg":"3b1b","./tg.js":"3b1b","./th":"10e8","./th.js":"10e8","./tk":"5aff","./tk.js":"5aff","./tl-ph":"0f38","./tl-ph.js":"0f38","./tlh":"cf75","./tlh.js":"cf75","./tr":"0e81","./tr.js":"0e81","./tzl":"cf51","./tzl.js":"cf51","./tzm":"c109","./tzm-latn":"b53d","./tzm-latn.js":"b53d","./tzm.js":"c109","./ug-cn":"6117","./ug-cn.js":"6117","./uk":"ada2","./uk.js":"ada2","./ur":"5294","./ur.js":"5294","./uz":"2e8c","./uz-latn":"010e","./uz-latn.js":"010e","./uz.js":"2e8c","./vi":"2921","./vi.js":"2921","./x-pseudo":"fd7e","./x-pseudo.js":"fd7e","./yo":"7f33","./yo.js":"7f33","./zh-cn":"5c3a","./zh-cn.js":"5c3a","./zh-hk":"49ab","./zh-hk.js":"49ab","./zh-mo":"3a6c","./zh-mo.js":"3a6c","./zh-tw":"90ea","./zh-tw.js":"90ea"};function a(t){var e=r(t);return n(e)}function r(t){var e=i[t];if(!(e+1)){var n=new Error("Cannot find module '"+t+"'");throw n.code="MODULE_NOT_FOUND",n}return e}a.keys=function(){return Object.keys(i)},a.resolve=r,t.exports=a,a.id="4678"},"47f1":function(t,e,n){"use strict";n.r(e);var i=n("e017"),a=n.n(i),r=n("21a1"),o=n.n(r),c=new a.a({id:"icon-table",use:"icon-table-usage",viewBox:"0 0 128 128",content:''});o.a.add(c);e["default"]=c},"47ff":function(t,e,n){"use strict";n.r(e);var i=n("e017"),a=n.n(i),r=n("21a1"),o=n.n(r),c=new a.a({id:"icon-message",use:"icon-message-usage",viewBox:"0 0 128 128",content:''});o.a.add(c);e["default"]=c},"4b27":function(t,e,n){"use strict";n("5445")},"4d49":function(t,e,n){"use strict";n.r(e);var i={logs:[]},a={ADD_ERROR_LOG:function(t,e){t.logs.push(e)},CLEAR_ERROR_LOG:function(t){t.logs.splice(0)}},r={addErrorLog:function(t,e){var n=t.commit;n("ADD_ERROR_LOG",e)},clearErrorLog:function(t){var e=t.commit;e("CLEAR_ERROR_LOG")}};e["default"]={namespaced:!0,state:i,mutations:a,actions:r}},"4d7e":function(t,e,n){"use strict";n("de9d")},"4df5":function(t,e,n){"use strict";n.r(e);var i=n("e017"),a=n.n(i),r=n("21a1"),o=n.n(r),c=new a.a({id:"icon-eye",use:"icon-eye-usage",viewBox:"0 0 128 64",content:''});o.a.add(c);e["default"]=c},"4fb4":function(t,e,n){t.exports=n.p+"mer/img/no.7de91001.png"},"51ff":function(t,e,n){var i={"./404.svg":"a14a","./bug.svg":"1779","./chart.svg":"c829","./clipboard.svg":"bc35","./component.svg":"56d6","./dashboard.svg":"f782","./documentation.svg":"90fb","./drag.svg":"9bbf","./edit.svg":"aa46","./education.svg":"ad1c","./email.svg":"cbb7","./example.svg":"30c3","./excel.svg":"6599","./exit-fullscreen.svg":"dbc7","./eye-open.svg":"d7ec","./eye.svg":"4df5","./form.svg":"eb1b","./fullscreen.svg":"9921","./guide.svg":"6683","./icon.svg":"9d91","./international.svg":"17df","./language.svg":"2580","./link.svg":"18f0","./list.svg":"3289","./lock.svg":"ab00","./message.svg":"47ff","./money.svg":"3046","./nested.svg":"dcf8","./password.svg":"2a3d","./pdf.svg":"f9a1","./people.svg":"d056","./peoples.svg":"2f11","./qq.svg":"1430","./search.svg":"8e8d","./shopping.svg":"12a5","./size.svg":"8644","./skill.svg":"096e","./star.svg":"708a","./tab.svg":"8fb7","./table.svg":"47f1","./theme.svg":"e534","./tree-table.svg":"e7c8","./tree.svg":"93cd","./user.svg":"b3b5","./wechat.svg":"80da","./zip.svg":"8aa6"};function a(t){var e=r(t);return n(e)}function r(t){var e=i[t];if(!(e+1)){var n=new Error("Cannot find module '"+t+"'");throw n.code="MODULE_NOT_FOUND",n}return e}a.keys=function(){return Object.keys(i)},a.resolve=r,t.exports=a,a.id="51ff"},5445:function(t,e,n){},"55d1":function(t,e,n){"use strict";n("bd3e")},5640:function(t,e){t.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFEAAABRCAYAAACqj0o2AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA25pVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTQ1IDc5LjE2MzQ5OSwgMjAxOC8wOC8xMy0xNjo0MDoyMiAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDo2OWRlYjViMi04ZTEzLWNmNDgtODFlNi0yNzk5OTk1OWFjZjgiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6QkExQUM1Q0Y0MzlFMTFFOUFFN0FFMjQzRUM3RTIxODkiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6QkExQUM1Q0U0MzlFMTFFOUFFN0FFMjQzRUM3RTIxODkiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTkgKFdpbmRvd3MpIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6MkQxNzQyQjZFRjA2MTFFODhBREFDNDFBMUJFNDQxREIiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6MkQxNzQyQjdFRjA2MTFFODhBREFDNDFBMUJFNDQxREIiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz5UuLmcAAACF0lEQVR42uycMUvDUBDHG61dBHVyKN0chC7ugl9AUWhx8AOoWycHB3VSBwcnv4RTM+UTFJztUuggOJQOTlroYlvqBSqU0kKS13tJm98fjkcffVz6S+6OXl7iDIfDDDLTCgiACEQgIiACEYhAREAEIhCXWdkwXy6Xy/sy3IitKx5TR+zOdd36+GSpVNqT4V5sQ9F3V+yxWq2+qUEUXYkdWji5X2LnE3MVsWNLF9eRZjivxhghWUu+Q0cZOZHCsoCFZYYOxFoG64tinkHuahj4LojVkgCxJZX0M+piqbpbBr7bhr4JZ3IiEBEQgQhEICIgAhGIQERABCIQU6N5tMKKhu2sXZO1hu2sfFIgejFeBK+EMzkRRYXYs3RcvwHnNNTRzokPYj8Z3XvAPqynKfP/czlF332xl7CLnDCPYDiOk4rwDPtYCjmRwgLEdP5jGW1vq9goLK7rfkz43pHh2lJhqWtW51uxU0sn+HLisw/wwoLfbbETzXBeswQwF3BOQ6E3kZITKSwLWFhmyN/e1jZY77fConZjzsSaBr79VpiXBIiNGLe3NcX3u4Hvb8KZnAhEBEQgAhGICIhABCIQERCBCMS0aB6tsEKM29vyhu2sQlIg1mK8CDzCmZyIokIcWDqufsA5DXW1c+LzaNR8tYu/B3La9jZ/bjOje+97MPYbA8vh7cbkRCACEQERiEAEIgIiEIG4zPoTYAALKF4dRnTU+gAAAABJRU5ErkJggg=="},"56d6":function(t,e,n){"use strict";n.r(e);var i=n("e017"),a=n.n(i),r=n("21a1"),o=n.n(r),c=new a.a({id:"icon-component",use:"icon-component-usage",viewBox:"0 0 128 128",content:''});o.a.add(c);e["default"]=c},"56d7":function(t,e,n){"use strict";n.r(e);var i={};n.r(i),n.d(i,"parseTime",(function(){return ie["c"]})),n.d(i,"formatTime",(function(){return ie["b"]})),n.d(i,"timeAgo",(function(){return Le})),n.d(i,"numberFormatter",(function(){return Ne})),n.d(i,"toThousandFilter",(function(){return Te})),n.d(i,"uppercaseFirst",(function(){return Qe})),n.d(i,"filterEmpty",(function(){return ae})),n.d(i,"filterYesOrNo",(function(){return re})),n.d(i,"filterShowOrHide",(function(){return oe})),n.d(i,"filterShowOrHideForFormConfig",(function(){return ce})),n.d(i,"filterYesOrNoIs",(function(){return se})),n.d(i,"paidFilter",(function(){return ue})),n.d(i,"payTypeFilter",(function(){return le})),n.d(i,"orderStatusFilter",(function(){return de})),n.d(i,"activityOrderStatus",(function(){return he})),n.d(i,"cancelOrderStatusFilter",(function(){return me})),n.d(i,"orderPayType",(function(){return fe})),n.d(i,"takeOrderStatusFilter",(function(){return pe})),n.d(i,"orderRefundFilter",(function(){return ge})),n.d(i,"accountStatusFilter",(function(){return be})),n.d(i,"reconciliationFilter",(function(){return ve})),n.d(i,"reconciliationStatusFilter",(function(){return Ae})),n.d(i,"productStatusFilter",(function(){return we})),n.d(i,"couponTypeFilter",(function(){return ye})),n.d(i,"couponUseTypeFilter",(function(){return ke})),n.d(i,"broadcastStatusFilter",(function(){return Ce})),n.d(i,"liveReviewStatusFilter",(function(){return Ee})),n.d(i,"broadcastType",(function(){return je})),n.d(i,"broadcastDisplayType",(function(){return Ie})),n.d(i,"filterClose",(function(){return xe})),n.d(i,"exportOrderStatusFilter",(function(){return Se})),n.d(i,"transactionTypeFilter",(function(){return Oe})),n.d(i,"seckillStatusFilter",(function(){return Re})),n.d(i,"seckillReviewStatusFilter",(function(){return _e})),n.d(i,"deliveryStatusFilter",(function(){return Me})),n.d(i,"organizationType",(function(){return De})),n.d(i,"id_docType",(function(){return ze})),n.d(i,"deliveryType",(function(){return Ve})),n.d(i,"runErrandStatus",(function(){return Be}));n("456d"),n("ac6a"),n("cadf"),n("551c"),n("f751"),n("097d");var a=n("2b0e"),r=n("a78e"),o=n.n(r),c=(n("f5df"),n("5c96")),s=n.n(c),u=n("c1df"),l=n.n(u),d=n("c7ad"),h=n.n(d),m=(n("24ab"),n("b20f"),n("fc4a"),n("de6e"),n("caf9")),f=function(){var t=this,e=t.$createElement,n=t._self._c||e;return t.isRouterAlive?n("div",{attrs:{id:"app"}},[n("router-view")],1):t._e()},p=[],g={name:"App",provide:function(){return{reload:this.reload}},data:function(){return{isRouterAlive:!0}},methods:{reload:function(){this.isRouterAlive=!1,this.$nextTick((function(){this.isRouterAlive=!0}))}}},b=g,v=n("2877"),A=Object(v["a"])(b,f,p,!1,null,null,null),w=A.exports,y=n("4360"),k=n("a18c"),C=n("30ba"),E=n.n(C),j=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",[n("el-dialog",{attrs:{title:"上传图片",visible:t.visible,width:"896px","before-close":t.handleClose},on:{"update:visible":function(e){t.visible=e}}},[t.visible?n("upload-index",{attrs:{"is-more":t.isMore},on:{getImage:t.getImage}}):t._e()],1)],1)},I=[],x=n("b5b8"),S={name:"UploadFroms",components:{UploadIndex:x["default"]},data:function(){return{visible:!1,callback:function(){},isMore:""}},watch:{},methods:{handleClose:function(){this.visible=!1},getImage:function(t){this.callback(t),this.visible=!1}}},O=S,R=Object(v["a"])(O,j,I,!1,null,"76ff32bf",null),_=R.exports;a["default"].use(s.a,{size:o.a.get("size")||"medium"});var M,D={install:function(t,e){var n=t.extend(_),i=new n;i.$mount(document.createElement("div")),document.body.appendChild(i.$el),t.prototype.$modalUpload=function(t,e){i.visible=!0,i.callback=t,i.isMore=e}}},z=D,V=n("6625"),B=n.n(V),F=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",[n("el-form",{ref:"formDynamic",staticClass:"attrFrom mb20",attrs:{size:"small",model:t.formDynamic,rules:t.rules,"label-width":"100px"},nativeOn:{submit:function(t){t.preventDefault()}}},[n("el-row",{attrs:{gutter:24}},[n("el-col",{attrs:{span:8}},[n("el-form-item",{attrs:{label:"模板名称:",prop:"template_name"}},[n("el-input",{attrs:{placeholder:"请输入模板名称"},model:{value:t.formDynamic.template_name,callback:function(e){t.$set(t.formDynamic,"template_name",e)},expression:"formDynamic.template_name"}})],1)],1),t._v(" "),t._l(t.formDynamic.template_value,(function(e,i){return n("el-col",{key:i,staticClass:"noForm",attrs:{span:24}},[n("el-form-item",[n("div",{staticClass:"acea-row row-middle"},[n("span",{staticClass:"mr5"},[t._v(t._s(e.value))]),n("i",{staticClass:"el-icon-circle-close",on:{click:function(e){return t.handleRemove(i)}}})]),t._v(" "),n("div",{staticClass:"rulesBox"},[t._l(e.detail,(function(i,a){return n("el-tag",{key:a,staticClass:"mb5 mr10",attrs:{closable:"",size:"medium","disable-transitions":!1},on:{close:function(n){return t.handleClose(e.detail,a)}}},[t._v("\n "+t._s(i)+"\n ")])})),t._v(" "),e.inputVisible?n("el-input",{ref:"saveTagInput",refInFor:!0,staticClass:"input-new-tag",attrs:{size:"small",maxlength:"30"},on:{blur:function(n){return t.createAttr(e.detail.attrsVal,i)}},nativeOn:{keyup:function(n){return!n.type.indexOf("key")&&t._k(n.keyCode,"enter",13,n.key,"Enter")?null:t.createAttr(e.detail.attrsVal,i)}},model:{value:e.detail.attrsVal,callback:function(n){t.$set(e.detail,"attrsVal",n)},expression:"item.detail.attrsVal"}}):n("el-button",{staticClass:"button-new-tag",attrs:{size:"small"},on:{click:function(n){return t.showInput(e)}}},[t._v("+ 添加")])],2)])],1)})),t._v(" "),t.isBtn?n("el-col",{staticClass:"mt10",staticStyle:{"padding-left":"0","padding-right":"0"},attrs:{span:24}},[n("el-col",{attrs:{span:8}},[n("el-form-item",{attrs:{label:"规格:"}},[n("el-input",{attrs:{maxlength:"30",placeholder:"请输入规格"},model:{value:t.attrsName,callback:function(e){t.attrsName=e},expression:"attrsName"}})],1)],1),t._v(" "),n("el-col",{attrs:{span:8}},[n("el-form-item",{attrs:{label:"规格值:"}},[n("el-input",{attrs:{maxlength:"30",placeholder:"请输入规格值"},model:{value:t.attrsVal,callback:function(e){t.attrsVal=e},expression:"attrsVal"}})],1)],1),t._v(" "),n("el-col",{attrs:{span:8}},[n("el-button",{staticClass:"mr10",attrs:{type:"primary"},on:{click:t.createAttrName}},[t._v("确定")]),t._v(" "),n("el-button",{on:{click:t.offAttrName}},[t._v("取消")])],1)],1):t._e(),t._v(" "),t.spinShow?n("Spin",{attrs:{size:"large",fix:""}}):t._e()],2),t._v(" "),n("el-form-item",[t.isBtn?t._e():n("el-button",{staticClass:"mt10",attrs:{type:"primary",icon:"md-add"},on:{click:t.addBtn}},[t._v("添加新规格")])],1),t._v(" "),n("div",{staticClass:"dialog-footer",attrs:{slot:"footer"},slot:"footer"},[n("el-button",{on:{click:function(e){t.dialogFormVisible=!1}}},[t._v("取 消")]),t._v(" "),n("el-button",{attrs:{type:"primary"},on:{click:function(e){t.dialogFormVisible=!1}}},[t._v("确 定")])],1)],1),t._v(" "),n("span",{staticClass:"footer acea-row"},[n("el-button",{on:{click:function(e){return t.resetForm("formDynamic")}}},[t._v("取消")]),t._v(" "),n("el-button",{attrs:{loading:t.loading,type:"primary"},on:{click:function(e){return t.handleSubmit("formDynamic")}}},[t._v("确 定")])],1)],1)},L=[],N=(n("7f7f"),n("c4c8")),T={name:"CreatAttr",props:{currentRow:{type:Object,default:null}},data:function(){return{dialogVisible:!1,inputVisible:!1,inputValue:"",spinShow:!1,loading:!1,grid:{xl:3,lg:3,md:12,sm:24,xs:24},modal:!1,index:1,rules:{template_name:[{required:!0,message:"请输入模板名称",trigger:"blur"}]},formDynamic:{template_name:"",template_value:[]},attrsName:"",attrsVal:"",formDynamicNameData:[],isBtn:!1,formDynamicName:[],results:[],result:[],ids:0}},watch:{currentRow:{handler:function(t,e){this.formDynamic=t},immediate:!0}},mounted:function(){var t=this;this.formDynamic.template_value.map((function(e){t.$set(e,"inputVisible",!1)}))},methods:{resetForm:function(t){this.$msgbox.close(),this.clear(),this.$refs[t].resetFields()},addBtn:function(){this.isBtn=!0},handleClose:function(t,e){t.splice(e,1)},offAttrName:function(){this.isBtn=!1},handleRemove:function(t){this.formDynamic.template_value.splice(t,1)},createAttrName:function(){if(this.attrsName&&this.attrsVal){var t={value:this.attrsName,detail:[this.attrsVal]};this.formDynamic.template_value.push(t);var e={};this.formDynamic.template_value=this.formDynamic.template_value.reduce((function(t,n){return!e[n.value]&&(e[n.value]=t.push(n)),t}),[]),this.attrsName="",this.attrsVal="",this.isBtn=!1}else{if(!this.attrsName)return void this.$message.warning("请输入规格名称!");if(!this.attrsVal)return void this.$message.warning("请输入规格值!")}},createAttr:function(t,e){if(t){this.formDynamic.template_value[e].detail.push(t);var n={};this.formDynamic.template_value[e].detail=this.formDynamic.template_value[e].detail.reduce((function(t,e){return!n[e]&&(n[e]=t.push(e)),t}),[]),this.formDynamic.template_value[e].inputVisible=!1}else this.$message.warning("请添加属性")},showInput:function(t){this.$set(t,"inputVisible",!0)},handleSubmit:function(t){var e=this;this.$refs[t].validate((function(t){return!!t&&(0===e.formDynamic.template_value.length?e.$message.warning("请至少添加一条属性规格!"):(e.loading=!0,void setTimeout((function(){e.currentRow.attr_template_id?Object(N["l"])(e.currentRow.attr_template_id,e.formDynamic).then((function(t){e.$message.success(t.message),e.loading=!1,setTimeout((function(){e.$msgbox.close()}),500),setTimeout((function(){e.clear(),e.$emit("getList")}),600)})).catch((function(t){e.loading=!1,e.$message.error(t.message)})):Object(N["j"])(e.formDynamic).then((function(t){e.$message.success(t.message),e.loading=!1,setTimeout((function(){e.$msgbox.close()}),500),setTimeout((function(){e.$emit("getList"),e.clear()}),600)})).catch((function(t){e.loading=!1,e.$message.error(t.message)}))}),1200)))}))},clear:function(){this.$refs["formDynamic"].resetFields(),this.formDynamic.template_value=[],this.formDynamic.template_name="",this.isBtn=!1,this.attrsName="",this.attrsVal=""},handleInputConfirm:function(){var t=this.inputValue;t&&this.dynamicTags.push(t),this.inputVisible=!1,this.inputValue=""}}},Q=T,P=(n("1e38"),Object(v["a"])(Q,F,L,!1,null,"5523fc24",null)),H=P.exports,U=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",[n("el-form",{directives:[{name:"loading",rawName:"v-loading",value:t.loading,expression:"loading"}],ref:"ruleForm",attrs:{model:t.ruleForm,"label-width":"120px",size:"mini",rules:t.rules}},[n("el-form-item",{attrs:{label:"模板名称",prop:"name"}},[n("el-input",{staticClass:"withs",attrs:{placeholder:"请输入模板名称"},model:{value:t.ruleForm.name,callback:function(e){t.$set(t.ruleForm,"name",e)},expression:"ruleForm.name"}})],1),t._v(" "),n("el-form-item",{attrs:{label:"运费说明",prop:"info"}},[n("el-input",{staticClass:"withs",attrs:{type:"textarea",placeholder:"请输入运费说明"},model:{value:t.ruleForm.info,callback:function(e){t.$set(t.ruleForm,"info",e)},expression:"ruleForm.info"}})],1),t._v(" "),n("el-form-item",{attrs:{label:"计费方式",prop:"type"}},[n("el-radio-group",{on:{change:function(e){return t.changeRadio(t.ruleForm.type)}},model:{value:t.ruleForm.type,callback:function(e){t.$set(t.ruleForm,"type",e)},expression:"ruleForm.type"}},[n("el-radio",{attrs:{label:0}},[t._v("按件数")]),t._v(" "),n("el-radio",{attrs:{label:1}},[t._v("按重量")]),t._v(" "),n("el-radio",{attrs:{label:2}},[t._v("按体积")])],1)],1),t._v(" "),n("el-form-item",{attrs:{label:"配送区域及运费",prop:"region"}},[n("el-table",{directives:[{name:"loading",rawName:"v-loading",value:t.listLoading,expression:"listLoading"}],staticClass:"tempBox",staticStyle:{width:"100%"},attrs:{data:t.ruleForm.region,border:"",fit:"","highlight-current-row":"",size:"mini"}},[n("el-table-column",{attrs:{align:"center",label:"可配送区域","min-width":"260"},scopedSlots:t._u([{key:"default",fn:function(e){return[0===e.$index?n("span",[t._v("默认全国 "),n("span",{staticStyle:{"font-weight":"bold"}},[t._v("(开启指定区域不配送时无效)")])]):n("LazyCascader",{staticStyle:{width:"98%"},attrs:{props:t.props,"collapse-tags":"",clearable:"",filterable:!1},model:{value:e.row.city_ids,callback:function(n){t.$set(e.row,"city_ids",n)},expression:"scope.row.city_ids"}})]}}])}),t._v(" "),n("el-table-column",{attrs:{"min-width":"130px",align:"center",label:t.columns.title},scopedSlots:t._u([{key:"default",fn:function(e){var i=e.row;return[n("el-input-number",{attrs:{"controls-position":"right",min:0},model:{value:i.first,callback:function(e){t.$set(i,"first",e)},expression:"row.first"}})]}}])}),t._v(" "),n("el-table-column",{attrs:{"min-width":"120px",align:"center",label:"运费(元)"},scopedSlots:t._u([{key:"default",fn:function(e){var i=e.row;return[n("el-input-number",{attrs:{"controls-position":"right",min:0},model:{value:i.first_price,callback:function(e){t.$set(i,"first_price",e)},expression:"row.first_price"}})]}}])}),t._v(" "),n("el-table-column",{attrs:{"min-width":"120px",align:"center",label:t.columns.title2},scopedSlots:t._u([{key:"default",fn:function(e){var i=e.row;return[n("el-input-number",{attrs:{"controls-position":"right",min:.1},model:{value:i.continue,callback:function(e){t.$set(i,"continue",e)},expression:"row.continue"}})]}}])}),t._v(" "),n("el-table-column",{attrs:{"class-name":"status-col",align:"center",label:"续费(元)","min-width":"120"},scopedSlots:t._u([{key:"default",fn:function(e){var i=e.row;return[n("el-input-number",{attrs:{"controls-position":"right",min:0},model:{value:i.continue_price,callback:function(e){t.$set(i,"continue_price",e)},expression:"row.continue_price"}})]}}])}),t._v(" "),n("el-table-column",{attrs:{align:"center",label:"操作","min-width":"80",fixed:"right"},scopedSlots:t._u([{key:"default",fn:function(e){return[e.$index>0?n("el-button",{attrs:{type:"text",size:"small"},on:{click:function(n){return t.confirmEdit(t.ruleForm.region,e.$index)}}},[t._v("\n 删除\n ")]):t._e()]}}])})],1)],1),t._v(" "),n("el-form-item",[n("el-button",{attrs:{type:"primary",size:"mini",icon:"el-icon-edit"},on:{click:function(e){return t.addRegion(t.ruleForm.region)}}},[t._v("\n 添加配送区域\n ")])],1),t._v(" "),n("el-form-item",{attrs:{label:"指定包邮",prop:"appoint"}},[n("el-radio-group",{model:{value:t.ruleForm.appoint,callback:function(e){t.$set(t.ruleForm,"appoint",e)},expression:"ruleForm.appoint"}},[n("el-radio",{attrs:{label:1}},[t._v("开启")]),t._v(" "),n("el-radio",{attrs:{label:0}},[t._v("关闭")])],1)],1),t._v(" "),1===t.ruleForm.appoint?n("el-form-item",{attrs:{prop:"free"}},[n("el-table",{directives:[{name:"loading",rawName:"v-loading",value:t.listLoading,expression:"listLoading"}],staticStyle:{width:"100%"},attrs:{data:t.ruleForm.free,border:"",fit:"","highlight-current-row":"",size:"mini"}},[n("el-table-column",{attrs:{align:"center",label:"选择地区","min-width":"220"},scopedSlots:t._u([{key:"default",fn:function(e){var i=e.row;return[n("LazyCascader",{staticStyle:{width:"95%"},attrs:{props:t.props,"collapse-tags":"",clearable:"",filterable:!1},model:{value:i.city_ids,callback:function(e){t.$set(i,"city_ids",e)},expression:"row.city_ids"}})]}}],null,!1,719238884)}),t._v(" "),n("el-table-column",{attrs:{"min-width":"180px",align:"center",label:t.columns.title3},scopedSlots:t._u([{key:"default",fn:function(e){var i=e.row;return[n("el-input-number",{attrs:{"controls-position":"right",min:1},model:{value:i.number,callback:function(e){t.$set(i,"number",e)},expression:"row.number"}})]}}],null,!1,2893068961)}),t._v(" "),n("el-table-column",{attrs:{"min-width":"120px",align:"center",label:"最低购买金额(元)"},scopedSlots:t._u([{key:"default",fn:function(e){var i=e.row;return[n("el-input-number",{attrs:{"controls-position":"right",min:.01},model:{value:i.price,callback:function(e){t.$set(i,"price",e)},expression:"row.price"}})]}}],null,!1,2216462721)}),t._v(" "),n("el-table-column",{attrs:{align:"center",label:"操作","min-width":"120",fixed:"right"},scopedSlots:t._u([{key:"default",fn:function(e){return[n("el-button",{attrs:{type:"text",size:"small"},on:{click:function(n){return t.confirmEdit(t.ruleForm.free,e.$index)}}},[t._v("\n 删除\n ")])]}}],null,!1,4029474057)})],1)],1):t._e(),t._v(" "),1===t.ruleForm.appoint?n("el-form-item",[n("el-button",{attrs:{type:"primary",size:"mini",icon:"el-icon-edit"},on:{click:function(e){return t.addFree(t.ruleForm.free)}}},[t._v("\n 添加指定包邮区域\n ")])],1):t._e(),t._v(" "),n("el-row",{attrs:{gutter:20}},[n("el-col",{attrs:{span:12}},[n("el-form-item",{attrs:{label:"指定区域不配送",prop:"undelivery"}},[n("el-radio-group",{model:{value:t.ruleForm.undelivery,callback:function(e){t.$set(t.ruleForm,"undelivery",e)},expression:"ruleForm.undelivery"}},[n("el-radio",{attrs:{label:1}},[t._v("自定义")]),t._v(" "),n("el-radio",{attrs:{label:2}},[t._v("开启")]),t._v(" "),n("el-radio",{attrs:{label:0}},[t._v("关闭")])],1),t._v(" "),n("br"),t._v('\n (说明: 选择"开启"时, 仅支持上表添加的配送区域)\n ')],1)],1),t._v(" "),n("el-col",{attrs:{span:12}},[1===t.ruleForm.undelivery?n("el-form-item",{staticClass:"noBox",attrs:{prop:"city_id3"}},[n("LazyCascader",{staticStyle:{width:"46%"},attrs:{placeholder:"请选择不配送区域",props:t.props,"collapse-tags":"",clearable:"",filterable:!1},model:{value:t.ruleForm.city_id3,callback:function(e){t.$set(t.ruleForm,"city_id3",e)},expression:"ruleForm.city_id3"}})],1):t._e()],1)],1),t._v(" "),n("el-form-item",{attrs:{label:"排序"}},[n("el-input",{staticClass:"withs",attrs:{placeholder:"请输入排序"},model:{value:t.ruleForm.sort,callback:function(e){t.$set(t.ruleForm,"sort",e)},expression:"ruleForm.sort"}})],1)],1),t._v(" "),n("span",{staticClass:"footer acea-row"},[n("el-button",{on:{click:function(e){return t.resetForm("ruleForm")}}},[t._v("取 消")]),t._v(" "),n("el-button",{attrs:{type:"primary"},on:{click:function(e){return t.onsubmit("ruleForm")}}},[t._v("确 定")])],1)],1)},G=[],W=(n("55dd"),n("2909")),Z=(n("c5f6"),n("8a9d")),Y=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"lazy-cascader",style:{width:t.width}},[t.disabled?n("div",{staticClass:"el-input__inner lazy-cascader-input lazy-cascader-input-disabled"},[n("span",{directives:[{name:"show",rawName:"v-show",value:t.placeholderVisible,expression:"placeholderVisible"}],staticClass:"lazy-cascader-placeholder"},[t._v("\n "+t._s(t.placeholder)+"\n ")]),t._v(" "),t.props.multiple?n("div",{staticClass:"lazy-cascader-tags"},t._l(t.labelArray,(function(e,i){return n("el-tag",{key:i,staticClass:"lazy-cascader-tag",attrs:{type:"info","disable-transitions":"",closable:""}},[n("span",[t._v(" "+t._s(e.label.join(t.separator)))])])})),1):n("div",{staticClass:"lazy-cascader-label"},[n("el-tooltip",{attrs:{placement:"top-start",content:t.labelObject.label.join(t.separator)}},[n("span",[t._v(t._s(t.labelObject.label.join(t.separator)))])])],1)]):n("el-popover",{ref:"popover",attrs:{trigger:"click",placement:"bottom-start"}},[n("div",{staticClass:"lazy-cascader-search"},[t.filterable?n("el-autocomplete",{staticClass:"inline-input",style:{width:t.searchWidth||"100%"},attrs:{"popper-class":t.suggestionsPopperClass,"prefix-icon":"el-icon-search",label:"name","fetch-suggestions":t.querySearch,"trigger-on-focus":!1,placeholder:"请输入"},on:{select:t.handleSelect,blur:function(e){t.isSearchEmpty=!1}},scopedSlots:t._u([{key:"default",fn:function(e){var i=e.item;return[n("div",{staticClass:"name",class:t.isChecked(i[t.props.value])},[t._v("\n "+t._s(i[t.props.label].join(t.separator))+"\n ")])]}}],null,!1,1538741936),model:{value:t.keyword,callback:function(e){t.keyword=e},expression:"keyword"}}):t._e(),t._v(" "),n("div",{directives:[{name:"show",rawName:"v-show",value:t.isSearchEmpty,expression:"isSearchEmpty"}],staticClass:"empty"},[t._v(t._s(t.searchEmptyText))])],1),t._v(" "),n("div",{staticClass:"lazy-cascader-panel"},[n("el-cascader-panel",{ref:"panel",attrs:{options:t.options,props:t.currentProps},on:{change:t.change},model:{value:t.current,callback:function(e){t.current=e},expression:"current"}})],1),t._v(" "),n("div",{staticClass:"el-input__inner lazy-cascader-input",class:t.disabled?"lazy-cascader-input-disabled":"",attrs:{slot:"reference"},slot:"reference"},[n("span",{directives:[{name:"show",rawName:"v-show",value:t.placeholderVisible,expression:"placeholderVisible"}],staticClass:"lazy-cascader-placeholder"},[t._v("\n "+t._s(t.placeholder)+"\n ")]),t._v(" "),t.props.multiple?n("div",{staticClass:"lazy-cascader-tags"},t._l(t.labelArray,(function(e,i){return n("el-tag",{key:i,staticClass:"lazy-cascader-tag",attrs:{type:"info",size:"small","disable-transitions":"",closable:""},on:{close:function(n){return t.handleClose(e)}}},[n("span",[t._v(" "+t._s(e.label.join(t.separator)))])])})),1):n("div",{staticClass:"lazy-cascader-label"},[n("el-tooltip",{attrs:{placement:"top-start",content:t.labelObject.label.join(t.separator)}},[n("span",[t._v(t._s(t.labelObject.label.join(t.separator)))])])],1),t._v(" "),t.clearable&&t.current.length>0?n("span",{staticClass:"lazy-cascader-clear",on:{click:function(e){return e.stopPropagation(),t.clearBtnClick(e)}}},[n("i",{staticClass:"el-icon-close"})]):t._e()])])],1)},J=[],q=n("c7eb"),X=(n("96cf"),n("1da1")),K=(n("20d6"),{props:{value:{type:Array,default:function(){return[]}},separator:{type:String,default:"/"},placeholder:{type:String,default:"请选择"},width:{type:String,default:"400px"},filterable:Boolean,clearable:Boolean,disabled:Boolean,props:{type:Object,default:function(){return{}}},suggestionsPopperClass:{type:String,default:"suggestions-popper-class"},searchWidth:{type:String},searchEmptyText:{type:String,default:"暂无数据"}},data:function(){return{isSearchEmpty:!1,keyword:"",options:[],current:[],labelObject:{label:[],value:[]},labelArray:[],currentProps:{multiple:this.props.multiple,checkStrictly:this.props.checkStrictly,value:this.props.value,label:this.props.label,leaf:this.props.leaf,lazy:!0,lazyLoad:this.lazyLoad}}},computed:{placeholderVisible:function(){return!this.current||0==this.current.length}},watch:{current:function(){this.getLabelArray()},value:function(t){this.current=t},keyword:function(){this.isSearchEmpty=!1}},created:function(){this.initOptions()},methods:{isChecked:function(t){if(this.props.multiple){var e=this.current.findIndex((function(e){return e.join()==t.join()}));return e>-1?"el-link el-link--primary":""}return t.join()==this.current.join()?"el-link el-link--primary":""},querySearch:function(t,e){var n=this;this.props.lazySearch(t,(function(t){e(t),t&&t.length||(n.isSearchEmpty=!0)}))},handleSelect:function(t){var e=this;if(this.props.multiple){var n=this.current.findIndex((function(n){return n.join()==t[e.props.value].join()}));-1==n&&(this.$refs.panel.clearCheckedNodes(),this.current.push(t[this.props.value]),this.$emit("change",this.current))}else null!=this.current&&t[this.props.value].join()===this.current.join()||(this.$refs.panel.activePath=[],this.current=t[this.props.value],this.$emit("change",this.current));this.keyword=""},initOptions:function(){var t=Object(X["a"])(Object(q["a"])().mark((function t(){var e=this;return Object(q["a"])().wrap((function(t){while(1)switch(t.prev=t.next){case 0:this.props.lazyLoad(0,(function(t){e.$set(e,"options",t),e.props.multiple?e.current=Object(W["a"])(e.value):e.current=e.value}));case 1:case"end":return t.stop()}}),t,this)})));function e(){return t.apply(this,arguments)}return e}(),getLabelArray:function(){var t=Object(X["a"])(Object(q["a"])().mark((function t(){var e,n,i,a=this;return Object(q["a"])().wrap((function(t){while(1)switch(t.prev=t.next){case 0:if(!this.props.multiple){t.next=16;break}e=[],n=0;case 3:if(!(n-1&&(this.$refs.panel.clearCheckedNodes(),this.current.splice(e,1),this.$emit("change",this.current))},clearBtnClick:function(){this.$refs.panel.clearCheckedNodes(),this.current=[],this.$emit("change",this.current)},change:function(){this.$emit("change",this.current)}}}),$=K,tt=(n("15ae"),Object(v["a"])($,Y,J,!1,null,null,null)),et=tt.exports,nt={name:"",type:0,appoint:0,sort:0,info:"",region:[{first:1,first_price:0,continue:1,continue_price:0,city_id:[],city_ids:[]}],undelivery:0,free:[],undelives:{},city_id3:[]},it={},at="重量(kg)",rt="体积(m³)",ot=[{title:"首件",title2:"续件",title3:"最低购买件数"},{title:"首件".concat(at),title2:"续件".concat(at),title3:"最低购买".concat(at)},{title:"首件".concat(rt),title2:"续件".concat(rt),title3:"最低购买".concat(rt)}],ct={name:"CreatTemplates",components:{LazyCascader:et},props:{tempId:{type:Number,default:0},componentKey:{type:Number,default:0}},data:function(){return{loading:!1,rules:{name:[{required:!0,message:"请输入模板名称",trigger:"change"}],info:[{required:!0,message:"请输入运费说明",trigger:"blur"},{min:3,max:500,message:"长度在 3 到 500 个字符",trigger:"blur"}],free:[{type:"array",required:!0,message:"请至少添加一个地区",trigger:"change"}],appoint:[{required:!0,message:"请选择是否指定包邮",trigger:"change"}],undelivery:[{required:!0,message:"请选择是否指定区域不配送",trigger:"change"}],type:[{required:!0,message:"请选择计费方式",trigger:"change"}],region:[{required:!0,message:"请选择活动区域",trigger:"change"}]},nodeKey:"city_id",props:{children:"children",label:"name",value:"id",multiple:!0,lazy:!0,lazyLoad:this.lazyLoad,checkStrictly:!0},dialogVisible:!1,ruleForm:Object.assign({},nt),listLoading:!1,cityList:[],columns:{title:"首件",title2:"续件",title3:"最低购买件数"}}},watch:{componentKey:{handler:function(t,e){t?this.getInfo():this.ruleForm={name:"",type:0,appoint:0,sort:0,region:[{first:1,first_price:0,continue:1,continue_price:0,city_id:[],city_ids:[]}],undelivery:0,free:[],undelives:{},city_id3:[]}}}},mounted:function(){this.tempId>0&&this.getInfo()},methods:{resetForm:function(t){this.$msgbox.close(),this.$refs[t].resetFields()},onClose:function(t){this.dialogVisible=!1,this.$refs[t].resetFields()},confirmEdit:function(t,e){t.splice(e,1)},changeRadio:function(t){this.columns=Object.assign({},ot[t])},addRegion:function(t){t.push(Object.assign({},{first:1,first_price:1,continue:1,continue_price:0,city_id:[],city_ids:[]}))},addFree:function(t){t.push(Object.assign({},{city_id:[],number:1,price:.01,city_ids:[]}))},lazyLoad:function(t,e){var n=this;if(it[t])it[t]().then((function(t){e(Object(W["a"])(t.data))}));else{var i=Object(Z["a"])(t);it[t]=function(){return i},i.then((function(n){n.data.forEach((function(t){t.leaf=0===t.snum})),it[t]=function(){return new Promise((function(t){setTimeout((function(){return t(n)}),300)}))},e(n.data)})).catch((function(t){n.$message.error(t.message)}))}},getInfo:function(){var t=this;this.loading=!0,Object(Z["d"])(this.tempId).then((function(e){t.dialogVisible=!0;var n=e.data;t.ruleForm={name:n.name,type:n.type,info:n.info,appoint:n.appoint,sort:n.sort,region:n.region,undelivery:n.undelivery,free:n.free,undelives:n.undelives,city_id3:n.undelives.city_ids||[]},t.ruleForm.region.map((function(e){t.$set(e,"city_id",e.city_ids[0]),t.$set(e,"city_ids",e.city_ids)})),t.ruleForm.free.map((function(e){t.$set(e,"city_id",e.city_ids[0]),t.$set(e,"city_ids",e.city_ids)})),t.changeRadio(n.type),t.loading=!1})).catch((function(e){t.$message.error(e.message),t.loading=!1}))},change:function(t){return t.map((function(t){var e=[];0!==t.city_ids.length&&(t.city_ids.map((function(t){e.push(t[t.length-1])})),t.city_id=e)})),t},changeOne:function(t){var e=[];if(0!==t.length)return t.map((function(t){e.push(t[t.length-1])})),e},onsubmit:function(t){var e=this,n={name:this.ruleForm.name,type:this.ruleForm.type,info:this.ruleForm.info,appoint:this.ruleForm.appoint,sort:this.ruleForm.sort,region:this.change(this.ruleForm.region),undelivery:this.ruleForm.undelivery,free:this.change(this.ruleForm.free),undelives:{city_id:this.changeOne(this.ruleForm.city_id3)}};this.$refs[t].validate((function(i){if(!i)return!1;0===e.tempId?Object(Z["b"])(n).then((function(n){e.$message.success(n.message),setTimeout((function(){e.$msgbox.close()}),500),setTimeout((function(){e.$emit("getList"),e.$refs[t].resetFields()}),600)})).catch((function(t){e.$message.error(t.message)})):Object(Z["f"])(e.tempId,n).then((function(n){e.$message.success(n.message),setTimeout((function(){e.$msgbox.close()}),500),setTimeout((function(){e.$emit("getList"),e.$refs[t].resetFields()}),600)})).catch((function(t){e.$message.error(t.message)}))}))}}},st=ct,ut=(n("967a"),Object(v["a"])(st,U,G,!1,null,"173db85a",null)),lt=ut.exports,dt=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"divBox"},[n("div",{staticClass:"header clearfix"},[n("div",{staticClass:"container"},[n("el-form",{attrs:{inline:"",size:"small"}},[n("el-form-item",{attrs:{label:"优惠劵名称:"}},[n("el-input",{staticClass:"selWidth",attrs:{placeholder:"请输入优惠券名称",size:"small"},nativeOn:{keyup:function(e){return!e.type.indexOf("key")&&t._k(e.keyCode,"enter",13,e.key,"Enter")?null:t.getList(e)}},model:{value:t.tableFrom.coupon_name,callback:function(e){t.$set(t.tableFrom,"coupon_name",e)},expression:"tableFrom.coupon_name"}},[n("el-button",{staticClass:"el-button-solt",attrs:{slot:"append",icon:"el-icon-search",size:"small"},on:{click:t.getList},slot:"append"})],1)],1)],1)],1)]),t._v(" "),n("el-table",{directives:[{name:"loading",rawName:"v-loading",value:t.listLoading,expression:"listLoading"}],ref:"table",staticStyle:{width:"100%"},attrs:{data:t.tableData.data,size:"mini","max-height":"400","tooltip-effect":"dark"},on:{"selection-change":t.handleSelectionChange}},["wu"===t.handle?n("el-table-column",{attrs:{type:"selection",width:"55"}}):t._e(),t._v(" "),n("el-table-column",{attrs:{prop:"coupon_id",label:"ID","min-width":"50"}}),t._v(" "),n("el-table-column",{attrs:{prop:"title",label:"优惠券名称","min-width":"120"}}),t._v(" "),n("el-table-column",{attrs:{label:"优惠劵类型","min-width":"80"},scopedSlots:t._u([{key:"default",fn:function(e){var i=e.row;return[n("span",[t._v(t._s(t._f("couponTypeFilter")(i.type)))])]}}])}),t._v(" "),n("el-table-column",{attrs:{prop:"coupon_price",label:"优惠券面值","min-width":"90"}}),t._v(" "),n("el-table-column",{attrs:{label:"最低消费额","min-width":"90"},scopedSlots:t._u([{key:"default",fn:function(e){return[n("span",[t._v(t._s(0===e.row.use_min_price?"不限制":e.row.use_min_price))])]}}])}),t._v(" "),n("el-table-column",{attrs:{label:"有效期限","min-width":"250"},scopedSlots:t._u([{key:"default",fn:function(e){return[n("span",[t._v(t._s(1===e.row.coupon_type?e.row.use_start_time+" 一 "+e.row.use_end_time:e.row.coupon_time))])]}}])}),t._v(" "),n("el-table-column",{attrs:{label:"剩余数量","min-width":"90"},scopedSlots:t._u([{key:"default",fn:function(e){return[n("span",[t._v(t._s(0===e.row.is_limited?"不限量":e.row.remain_count))])]}}])}),t._v(" "),"send"===t.handle?n("el-table-column",{attrs:{label:"操作","min-width":"120",fixed:"right",align:"center"},scopedSlots:t._u([{key:"default",fn:function(e){return[n("el-button",{staticClass:"mr10",attrs:{type:"text",size:"small"},on:{click:function(n){return t.send(e.row.id)}}},[t._v("发送")])]}}],null,!1,2106495788)}):t._e()],1),t._v(" "),n("div",{staticClass:"block mb20"},[n("el-pagination",{attrs:{"page-sizes":[2,20,30,40],"page-size":t.tableFrom.limit,"current-page":t.tableFrom.page,layout:"total, sizes, prev, pager, next, jumper",total:t.tableData.total},on:{"size-change":t.handleSizeChange,"current-change":t.pageChange}})],1),t._v(" "),n("div",[n("el-button",{staticClass:"fr",attrs:{size:"small",type:"primary"},on:{click:t.ok}},[t._v("确定")]),t._v(" "),n("el-button",{staticClass:"fr mr20",attrs:{size:"small"},on:{click:t.close}},[t._v("取消")])],1)],1)},ht=[],mt=n("ade3"),ft=n("b7be"),pt=n("83d6"),gt=(M={name:"CouponList",props:{handle:{type:String,default:""},couponId:{type:Array,default:function(){return[]}},keyNum:{type:Number,default:0},couponData:{type:Array,default:function(){return[]}}},data:function(){return{roterPre:pt["roterPre"],listLoading:!0,tableData:{data:[],total:0},tableFrom:{page:1,limit:2,coupon_name:"",send_type:3},multipleSelection:[],attr:[],multipleSelectionAll:[],idKey:"coupon_id",nextPageFlag:!1}},watch:{keyNum:{deep:!0,handler:function(t){this.getList()}}},mounted:function(){this.tableFrom.page=1,this.getList(),this.multipleSelectionAll=this.couponData}},Object(mt["a"])(M,"watch",{couponData:{deep:!0,handler:function(t){this.multipleSelectionAll=this.couponData,this.getList()}}}),Object(mt["a"])(M,"methods",{close:function(){this.$msgbox.close(),this.multipleSelection=[]},handleSelectionChange:function(t){var e=this;this.multipleSelection=t,setTimeout((function(){e.changePageCoreRecordData()}),50)},setSelectRow:function(){if(this.multipleSelectionAll&&!(this.multipleSelectionAll.length<=0)){var t=this.idKey,e=[];this.multipleSelectionAll.forEach((function(n){e.push(n[t])})),this.$refs.table.clearSelection();for(var n=0;n=0&&this.$refs.table.toggleRowSelection(this.tableData.data[n],!0)}},changePageCoreRecordData:function(){var t=this.idKey,e=this;if(this.multipleSelectionAll.length<=0)this.multipleSelectionAll=this.multipleSelection;else{var n=[];this.multipleSelectionAll.forEach((function(e){n.push(e[t])}));var i=[];this.multipleSelection.forEach((function(a){i.push(a[t]),n.indexOf(a[t])<0&&e.multipleSelectionAll.push(a)}));var a=[];this.tableData.data.forEach((function(e){i.indexOf(e[t])<0&&a.push(e[t])})),a.forEach((function(i){if(n.indexOf(i)>=0)for(var a=0;a0?(this.$emit("getCouponId",this.multipleSelectionAll),this.close()):this.$message.warning("请先选择优惠劵")},getList:function(){var t=this;this.listLoading=!0,Object(ft["F"])(this.tableFrom).then((function(e){t.tableData.data=e.data.list,t.tableData.total=e.data.count,t.listLoading=!1,t.$nextTick((function(){this.setSelectRow()}))})).catch((function(e){t.listLoading=!1,t.$message.error(e.message)}))},pageChange:function(t){this.changePageCoreRecordData(),this.tableFrom.page=t,this.getList()},handleSizeChange:function(t){this.changePageCoreRecordData(),this.tableFrom.limit=t,this.getList()}}),M),bt=gt,vt=(n("55d1"),Object(v["a"])(bt,dt,ht,!1,null,"34dbe50b",null)),At=vt.exports,wt=function(){var t=this,e=t.$createElement,n=t._self._c||e;return t.isExternal?n("div",t._g({staticClass:"svg-external-icon svg-icon",style:t.styleExternalIcon},t.$listeners)):n("svg",t._g({class:t.svgClass,attrs:{"aria-hidden":"true"}},t.$listeners),[n("use",{attrs:{"xlink:href":t.iconName}})])},yt=[],kt=n("61f7"),Ct={name:"SvgIcon",props:{iconClass:{type:String,required:!0},className:{type:String,default:""}},computed:{isExternal:function(){return Object(kt["b"])(this.iconClass)},iconName:function(){return"#icon-".concat(this.iconClass)},svgClass:function(){return this.className?"svg-icon "+this.className:"svg-icon"},styleExternalIcon:function(){return{mask:"url(".concat(this.iconClass,") no-repeat 50% 50%"),"-webkit-mask":"url(".concat(this.iconClass,") no-repeat 50% 50%")}}}},Et=Ct,jt=(n("cf1c"),Object(v["a"])(Et,wt,yt,!1,null,"61194e00",null)),It=jt.exports;a["default"].component("svg-icon",It);var xt=n("51ff"),St=function(t){return t.keys().map(t)};St(xt);var Ot=n("323e"),Rt=n.n(Ot),_t=(n("a5d8"),n("5f87")),Mt=n("bbcc"),Dt=Mt["a"].title;function zt(t){return t?"".concat(t," - ").concat(Dt):"".concat(Dt)}var Vt=n("c24f");Rt.a.configure({showSpinner:!1});var Bt=["".concat(pt["roterPre"],"/login"),"/auth-redirect"];k["c"].beforeEach(function(){var t=Object(X["a"])(Object(q["a"])().mark((function t(e,n,i){var a,r;return Object(q["a"])().wrap((function(t){while(1)switch(t.prev=t.next){case 0:if(a=y["a"].getters.isEdit,!a){t.next=5;break}c["MessageBox"].confirm("离开该编辑页面,已编辑信息会丢失,请问您确认离开吗?","提示",{confirmButtonText:"离开",cancelButtonText:"不离开",confirmButtonClass:"btnTrue",cancelButtonClass:"btnFalse",type:"warning"}).then((function(){y["a"].dispatch("settings/setEdit",!1),Rt.a.start(),document.title=zt(e.meta.title);var t=Object(_t["a"])();t?e.path==="".concat(pt["roterPre"],"/login")?(i({path:"/"}),Rt.a.done()):"/"===n.fullPath&&n.path!=="".concat(pt["roterPre"],"/login")?Object(Vt["h"])().then((function(t){i()})).catch((function(t){i()})):i():-1!==Bt.indexOf(e.path)?i():(i("".concat(pt["roterPre"],"/login?redirect=").concat(e.path)),Rt.a.done())})),t.next=21;break;case 5:if(Rt.a.start(),document.title=zt(e.meta.title),r=Object(_t["a"])(),!r){t.next=12;break}e.path==="".concat(pt["roterPre"],"/login")?(i({path:"/"}),Rt.a.done()):"/"===n.fullPath&&n.path!=="".concat(pt["roterPre"],"/login")?Object(Vt["h"])().then((function(t){i()})).catch((function(t){i()})):i(),t.next=20;break;case 12:if(-1===Bt.indexOf(e.path)){t.next=16;break}i(),t.next=20;break;case 16:return t.next=18,y["a"].dispatch("user/resetToken");case 18:i("".concat(pt["roterPre"],"/login?redirect=").concat(e.path)),Rt.a.done();case 20:y["a"].dispatch("settings/setEdit",!1);case 21:case"end":return t.stop()}}),t)})));return function(e,n,i){return t.apply(this,arguments)}}()),k["c"].afterEach((function(){Rt.a.done()}));var Ft,Lt=n("7212"),Nt=n.n(Lt),Tt=(n("dfa4"),n("5530")),Qt=n("0c6d"),Pt=1,Ht=function(){return++Pt};function Ut(t){var e=this,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},i=this.$createElement;return new Promise((function(r){t.then((function(t){var o=t.data;o.config.submitBtn=!1,o.config.resetBtn=!1,o.config.form||(o.config.form={}),o.config.formData||(o.config.formData={}),o.config.formData=Object(Tt["a"])(Object(Tt["a"])({},o.config.formData),n.formData),o.config.form.labelWidth="120px",o.config.global={upload:{props:{onSuccess:function(t,e){200===t.status&&(e.url=t.data.src)}}}},o=a["default"].observable(o),e.$msgbox({title:o.title,customClass:n.class||"modal-form",message:i("div",{class:"common-form-create",key:Ht()},[i("formCreate",{props:{rule:o.rule,option:o.config},on:{mounted:function(t){Ft=t}}})]),beforeClose:function(t,n,i){var a=function(){setTimeout((function(){n.confirmButtonLoading=!1}),500)};"confirm"===t?(n.confirmButtonLoading=!0,Ft.submit((function(t){Qt["a"][o.method.toLowerCase()](o.api,t).then((function(t){i(),e.$message.success(t.message||"提交成功"),r(t)})).catch((function(t){e.$message.error(t.message||"提交失败")})).finally((function(){a()}))}),(function(){return a()}))):(a(),i())}})})).catch((function(t){e.$message.error(t.message)}))}))}function Gt(t,e){var n=this,i=this.$createElement;return new Promise((function(a,r){n.$msgbox({title:"属性规格",customClass:"upload-form",closeOnClickModal:!1,showClose:!1,message:i("div",{class:"common-form-upload"},[i("attrFrom",{props:{currentRow:t},on:{getList:function(){e()}}})]),showCancelButton:!1,showConfirmButton:!1}).then((function(){a()})).catch((function(){r(),n.$message({type:"info",message:"已取消"})}))}))}function Wt(t,e,n){var i=this,a=this.$createElement;return new Promise((function(r,o){i.$msgbox({title:"运费模板",customClass:"upload-form-temp",closeOnClickModal:!1,showClose:!1,message:a("div",{class:"common-form-upload"},[a("templatesFrom",{props:{tempId:t,componentKey:n},on:{getList:function(){e()}}})]),showCancelButton:!1,showConfirmButton:!1}).then((function(){r()})).catch((function(){o(),i.$message({type:"info",message:"已取消"})}))}))}n("a481");var Zt=n("cea2"),Yt=n("40b3"),Jt=n.n(Yt),qt=n("bc3a"),Xt=n.n(qt),Kt=function(t,e,i,a,r,o,c,s){var u=n("3452"),l="/".concat(c,"/").concat(s),d=t+"\n"+a+"\n"+r+"\n"+o+"\n"+l,h=u.HmacSHA1(d,i);return h=u.enc.Base64.stringify(h),"UCloud "+e+":"+h},$t={videoUpload:function(t){return"COS"===t.type?this.cosUpload(t.evfile,t.res.data,t.uploading):"OSS"===t.type?this.ossHttp(t.evfile,t.res,t.uploading):"local"===t.type?this.uploadMp4ToLocal(t.evfile,t.res,t.uploading):"OBS"===t.type?this.obsHttp(t.evfile,t.res,t.uploading):"US3"===t.type?this.us3Http(t.evfile,t.res,t.uploading):this.qiniuHttp(t.evfile,t.res,t.uploading)},cosUpload:function(t,e,n){var i=new Jt.a({getAuthorization:function(t,n){n({TmpSecretId:e.credentials.tmpSecretId,TmpSecretKey:e.credentials.tmpSecretKey,XCosSecurityToken:e.credentials.sessionToken,ExpiredTime:e.expiredTime})}}),a=t.target.files[0],r=a.name,o=r.lastIndexOf("."),c="";-1!==o&&(c=r.substring(o));var s=(new Date).getTime()+c;return new Promise((function(t,r){i.sliceUploadFile({Bucket:e.bucket,Region:e.region,Key:s,Body:a,onProgress:function(t){n(t)}},(function(n,i){n?r({msg:n}):t({url:e.cdn?e.cdn+s:"http://"+i.Location,ETag:i.ETag})}))}))},obsHttp:function(t,e,n){var i=t.target.files[0],a=i.name,r=a.lastIndexOf("."),o="";-1!==r&&(o=a.substring(r));var c=(new Date).getTime()+o,s=new FormData,u=e.data;s.append("key",c),s.append("AccessKeyId",u.accessid),s.append("policy",u.policy),s.append("signature",u.signature),s.append("file",i),s.append("success_action_status",200);var l=u.host,d=l+"/"+c;return n(!0,100),new Promise((function(t,e){Xt.a.defaults.withCredentials=!1,Xt.a.post(l,s).then((function(){n(!1,0),t({url:u.cdn?u.cdn+"/"+c:d})})).catch((function(t){e({msg:t})}))}))},us3Http:function(t,e,n){var i=t.target.files[0],a=i.name,r=a.lastIndexOf("."),o="";-1!==r&&(o=a.substring(r));var c=(new Date).getTime()+o,s=e.data,u=Kt("PUT",s.accessid,s.secretKey,"",i.type,"",s.storageName,c);return new Promise((function(t,e){Xt.a.defaults.withCredentials=!1;var a="https://".concat(s.storageName,".cn-bj.ufileos.com/").concat(c);Xt.a.put(a,i,{headers:{Authorization:u,"content-type":i.type}}).then((function(e){n(!1,0),t({url:s.cdn?s.cdn+"/"+c:a})})).catch((function(t){e({msg:t})}))}))},cosHttp:function(t,e,n){var i=function(t){return encodeURIComponent(t).replace(/!/g,"%21").replace(/'/g,"%27").replace(/\(/g,"%28").replace(/\)/g,"%29").replace(/\*/g,"%2A")},a=t.target.files[0],r=a.name,o=r.lastIndexOf("."),c="";-1!==o&&(c=r.substring(o));var s=(new Date).getTime()+c,u=e.data,l=u.credentials.sessionToken,d=u.url+i(s).replace(/%2F/g,"/"),h=new XMLHttpRequest;return h.open("PUT",d,!0),l&&h.setRequestHeader("x-cos-security-token",l),h.upload.onprogress=function(t){var e=Math.round(t.loaded/t.total*1e4)/100;n(!0,e)},new Promise((function(t,e){h.onload=function(){if(/^2\d\d$/.test(""+h.status)){var a=h.getResponseHeader("etag");n(!1,0),t({url:u.cdn?u.cdn+i(s).replace(/%2F/g,"/"):d,ETag:a})}else e({msg:"文件 "+s+" 上传失败,状态码:"+h.statu})},h.onerror=function(){e({msg:"文件 "+s+"上传失败,请检查是否没配置 CORS 跨域规"})},h.send(a),h.onreadystatechange=function(){}}))},ossHttp:function(t,e,n){var i=t.target.files[0],a=i.name,r=a.lastIndexOf("."),o="";-1!==r&&(o=a.substring(r));var c=(new Date).getTime()+o,s=new FormData,u=e.data;s.append("key",c),s.append("OSSAccessKeyId",u.accessid),s.append("policy",u.policy),s.append("Signature",u.signature),s.append("file",i),s.append("success_action_status",200);var l=u.host,d=l+"/"+c;return n(!0,100),new Promise((function(t,e){Xt.a.defaults.withCredentials=!1,Xt.a.post(l,s).then((function(){n(!1,0),t({url:u.cdn?u.cdn+"/"+c:d})})).catch((function(t){e({msg:t})}))}))},qiniuHttp:function(t,e,n){var i=e.data.token,a=t.target.files[0],r=a.name,o=r.lastIndexOf("."),c="";-1!==o&&(c=r.substring(o));var s=(new Date).getTime()+c,u=e.data.domain+"/"+s,l={useCdnDomain:!0},d={fname:"",params:{},mimeType:null},h=Zt["upload"](a,s,i,d,l);return new Promise((function(t,i){h.subscribe({next:function(t){var e=Math.round(t.total.loaded/t.total.size);n(!0,e)},error:function(t){i({msg:t})},complete:function(i){n(!1,0),t({url:e.data.cdn?e.data.cdn+"/"+s:u})}})}))},uploadMp4ToLocal:function(t,e,n){var i=t.target.files[0],a=new FormData;return a.append("file",i),n(!0,100),Object(N["Tb"])(a)}};function te(t,e,n,i,a){var r=this,o=this.$createElement;return new Promise((function(c,s){r.$msgbox({title:"优惠券列表",customClass:"upload-form-coupon",closeOnClickModal:!1,showClose:!1,message:o("div",{class:"common-form-upload"},[o("couponList",{props:{couponData:t,handle:e,couponId:n,keyNum:i},on:{getCouponId:function(t){a(t)}}})]),showCancelButton:!1,showConfirmButton:!1}).then((function(){c()})).catch((function(){s(),r.$message({type:"info",message:"已取消"})}))}))}function ee(t){var e=this;return new Promise((function(n,i){e.$confirm("确定".concat(t||"删除该条数据吗","?"),"提示",{confirmButtonText:"确定",cancelButtonText:"取消",type:"warning"}).then((function(){n()})).catch((function(){e.$message({type:"info",message:"已取消"})}))}))}function ne(t){var e=this;return new Promise((function(n,i){e.$confirm("".concat(t||"该记录删除后不可恢复,您确认删除吗","?"),"提示",{confirmButtonText:"删除",cancelButtonText:"不删除",type:"warning"}).then((function(){n()})).catch((function(t){e.$message({type:"info",message:"已取消"})}))}))}n("6b54");var ie=n("ed08");function ae(t){var e="-";return t?(e=t,e):e}function re(t){return t?"是":"否"}function oe(t){return t?"显示":"不显示"}function ce(t){return"‘0’"===t?"显示":"不显示"}function se(t){return t?"否":"是"}function ue(t){var e={0:"未支付",1:"已支付"};return e[t]}function le(t){var e={0:"余额",1:"微信",2:"微信",3:"微信",4:"支付宝",5:"支付宝"};return e[t]}function de(t){var e={0:"待发货",1:"待收货",2:"待评价",3:"已完成","-1":"已退款",9:"未成团",10:"待付尾款",11:"尾款过期未付"};return e[t]}function he(t){var e={"-1":"未完成",10:"已完成",0:"进行中"};return e[t]}function me(t){var e={0:"待核销",2:"待评价",3:"已完成","-1":"已退款",10:"待付尾款",11:"尾款过期未付"};return e[t]}function fe(t){var e={0:"余额支付",1:"微信支付",2:"小程序",3:"微信支付",4:"支付宝",5:"支付宝扫码",6:"微信扫码"};return e[t]}function pe(t){var e={0:"待核销",1:"待提货",2:"待评价",3:"已完成","-1":"已退款",9:"未成团",10:"待付尾款",11:"尾款过期未付"};return e[t]}function ge(t){var e={0:"待审核","-1":"审核未通过",1:"待退货",2:"待收货",3:"已退款"};return e[t]}function be(t){var e={0:"未转账",1:"已转账"};return e[t]}function ve(t){return t>0?"已对账":"未对账"}function Ae(t){var e={0:"未确认",1:"已拒绝",2:"已确认"};return e[t]}function we(t){var e={0:"下架",1:"上架显示","-1":"平台关闭"};return e[t]}function ye(t){var e={0:"店铺券",1:"商品券"};return e[t]}function ke(t){var e={0:"领取",1:"赠送券",2:"新人券",3:"赠送券"};return e[t]}function Ce(t){var e={101:"直播中",102:"未开始",103:"已结束",104:"禁播",105:"暂停",106:"异常",107:"已过期"};return e[t]}function Ee(t){var e={0:"未审核",1:"微信审核中",2:"审核通过","-1":"审核未通过"};return e[t]}function je(t){var e={0:"手机直播",1:"推流"};return e[t]}function Ie(t){var e={0:"竖屏",1:"横屏"};return e[t]}function xe(t){return t?"✔":"✖"}function Se(t){var e={0:"正在导出,请稍后再来",1:"完成",2:"失败"};return e[t]}function Oe(t){var e={mer_accoubts:"财务对账",refund_order:"退款订单",brokerage_one:"一级分佣",brokerage_two:"二级分佣",refund_brokerage_one:"返还一级分佣",refund_brokerage_two:"返还二级分佣",order:"订单支付",commission_to_platform:"剩余平台手续费",commission_to_service_team:"订单平台佣金",commission_to_village:"订单平台佣金",commission_to_town:"订单平台佣金",commission_to_entry_merchant:"订单平台佣金",commission_to_cloud_warehouse:"订单平台佣金",commission_to_entry_merchant_refund:"退回平台佣金",commission_to_cloud_warehouse_refund:"退回平台佣金",commission_to_platform_refund:"退回平台手续费",commission_to_service_team_refund:"退回平台佣金",commission_to_village_refund:"退回平台佣金",commission_to_town_refund:"退回平台佣金"};return e[t]}function Re(t){var e={0:"未开始",1:"正在进行","-1":"已结束"};return e[t]}function _e(t){var e={0:"审核中",1:"审核通过","-2":"强制下架","-1":"未通过"};return e[t]}function Me(t){var e={0:"处理中",1:"成功",10:"部分完成","-1":"失败"};return e[t]}function De(t){var e={2401:"小微商户",2500:"个人卖家",4:"个体工商户",2:"企业",3:"党政、机关及事业单位",1708:"其他组织"};return e[t]}function ze(t){var e={1:"中国大陆居民-身份证",2:"其他国家或地区居民-护照",3:"中国香港居民–来往内地通行证",4:"中国澳门居民–来往内地通行证",5:"中国台湾居民–来往大陆通行证"};return e[t]}function Ve(t){var e={1:"发货",2:"送货",3:"无需物流",4:"电子面单"};return e[t]}function Be(t){var e={"-1":"已取消",0:"待接单",2:"待取货",3:"配送中",4:"已完成",9:"物品返回中",10:"物品返回完成",100:"骑士到店"};return e[t]}function Fe(t,e){return 1===t?t+e:t+e+"s"}function Le(t){var e=Date.now()/1e3-Number(t);return e<3600?Fe(~~(e/60)," minute"):e<86400?Fe(~~(e/3600)," hour"):Fe(~~(e/86400)," day")}function Ne(t,e){for(var n=[{value:1e18,symbol:"E"},{value:1e15,symbol:"P"},{value:1e12,symbol:"T"},{value:1e9,symbol:"G"},{value:1e6,symbol:"M"},{value:1e3,symbol:"k"}],i=0;i=n[i].value)return(t/n[i].value).toFixed(e).replace(/\.0+$|(\.[0-9]*[1-9])0+$/,"$1")+n[i].symbol;return t.toString()}function Te(t){return(+t||0).toString().replace(/^-?\d+/g,(function(t){return t.replace(/(?=(?!\b)(\d{3})+$)/g,",")}))}function Qe(t){return t.charAt(0).toUpperCase()+t.slice(1)}var Pe=n("6618");a["default"].use(z),a["default"].use(E.a),a["default"].use(Nt.a),a["default"].use(m["a"],{preLoad:1.3,error:n("4fb4"),loading:n("7153"),attempt:1,listenEvents:["scroll","wheel","mousewheel","resize","animationend","transitionend","touchmove"]}),a["default"].component("vue-ueditor-wrap",B.a),a["default"].component("attrFrom",H),a["default"].component("templatesFrom",lt),a["default"].component("couponList",At),a["default"].prototype.$modalForm=Ut,a["default"].prototype.$modalSure=ee,a["default"].prototype.$videoCloud=$t,a["default"].prototype.$modalSureDelete=ne,a["default"].prototype.$modalAttr=Gt,a["default"].prototype.$modalTemplates=Wt,a["default"].prototype.$modalCoupon=te,a["default"].prototype.moment=l.a,a["default"].use(s.a,{size:o.a.get("size")||"medium"}),a["default"].use(h.a),Object.keys(i).forEach((function(t){a["default"].filter(t,i[t])}));var He=He||[];(function(){var t=document.createElement("script");t.src="https://cdn.oss.9gt.net/js/es.js?version=merchantv2.0";var e=document.getElementsByTagName("script")[0];e.parentNode.insertBefore(t,e)})(),k["c"].beforeEach((function(t,e,n){He&&t.path&&He.push(["_trackPageview","/#"+t.fullPath]),t.meta.title&&(document.title=t.meta.title+"-"+JSON.parse(o.a.get("MerInfo")).login_title),n()}));var Ue,Ge=Object(_t["a"])();Ge&&(Ue=Object(Pe["a"])(Ge)),a["default"].config.productionTip=!1;e["default"]=new a["default"]({el:"#app",data:{notice:Ue},methods:{closeNotice:function(){this.notice&&this.notice()}},router:k["c"],store:y["a"],render:function(t){return t(w)}})},5946:function(t,e){t.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFEAAABRCAYAAACqj0o2AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA25pVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTQ1IDc5LjE2MzQ5OSwgMjAxOC8wOC8xMy0xNjo0MDoyMiAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDo2OWRlYjViMi04ZTEzLWNmNDgtODFlNi0yNzk5OTk1OWFjZjgiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6MDdCOUYzQ0M0MzlGMTFFOThGQzg4RjY2RUU1Nzg2NTkiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6MDdCOUYzQ0I0MzlGMTFFOThGQzg4RjY2RUU1Nzg2NTkiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTkgKFdpbmRvd3MpIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6MkQxNzQyQjZFRjA2MTFFODhBREFDNDFBMUJFNDQxREIiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6MkQxNzQyQjdFRjA2MTFFODhBREFDNDFBMUJFNDQxREIiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz74tZTQAAACwklEQVR42uycS0hUURzGz7XRsTI01OkFEhEyWr7ATasWQWXqopUbiRZCmK+yRbSIokUQhKX2tFWbaCUUkYIg0iKyNEo3Ltq6adNGjNyM32H+UJCO4z33fb8Pfpu5c+6c+d17/+ecOw8rk8koxiwFVECJlEiJDCVSIiVSIkOJ7iSRa+PP5qN+9+0GuAZ2gDFwE6z60ZnU3I/QnYlHwAdwB5SCEjAI5kEjL+etcwF8Ayc22JYGs+AqsCjx/5SB1+Al2JPjeUVgCEyCA5T4NyfBd9CxjTanwQJoj7vEQnAXTIMqG+0rwFvwBOyMo8Rq8FFGYNN+dMug0xAniV3gK2h2cJ81MugMeD3oeC2xHIyDF2C3C/tPgofgPdgXRYmnZCA478FrnQWLoDUqEvXZcR9MgYMeHrRK8A48AsVhlqjr1CdZuvk1Oe4Bc6A+bBK1sMsBWqYdA59BnxsHs8Cly0jP3R77OXfbpKyMyCWeCrLEFinobSq4OSd9bAmaRF24h72eWhgkJX0ddmLQcUKiLthfQL8KX/qlVh73S6IlqwPjTvicOhm9e+0OOnYl6ltQE7I6SKrwR7+HURkQK72Q2C4rjzMqemmz8962I3EXeCZHq0JFN/tV9obvg3yvsnwlNsnE+ZKKT65Iva91QmKfLN3SKn6pl5PnoonEEplLFan4Rs8jx3I9IbHFDlbAK5W9pWRt8gLJiMhaA783eFx/lXjcRKJOZ45tt8GtiEh8KnUwEDcgYhdKpERKpESGEimREimRoURKpERKZCjR9SQC0o97Kvu5hp3or9Fdp0SllsCMzbaHeTmzJjKUSImUSIkMJVIiJVIiQ4mUSImUyFAiJVIiJeadPw71Y9Wntv/ml92Gph8PPFfZHxvuNdjHMnhj0F631X8Lc8hQ4Kjdxhb/Ipo1kRIpkaFESqRESmQokRIDm3UBBgBHwWAbFrIgUwAAAABJRU5ErkJggg=="},"5bdf":function(t,e,n){"use strict";n("7091")},"5f87":function(t,e,n){"use strict";n.d(e,"a",(function(){return c})),n.d(e,"c",(function(){return s})),n.d(e,"b",(function(){return u}));var i=n("a78e"),a=n.n(i),r=n("56d7"),o="merchantToken";function c(){return a.a.get(o)}function s(t){return a.a.set(o,t)}function u(){return r["default"]&&r["default"].closeNotice(),a.a.remove(o)}},6082:function(t,e,n){},"61d3":function(t,e,n){"use strict";n("6082")},"61f7":function(t,e,n){"use strict";n.d(e,"b",(function(){return i}));n("6b54");function i(t){return/^(https?:|mailto:|tel:)/.test(t)}},6244:function(t,e,n){"use strict";n("8201")},"641c":function(t,e){t.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFEAAABRCAYAAACqj0o2AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA25pVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTQ1IDc5LjE2MzQ5OSwgMjAxOC8wOC8xMy0xNjo0MDoyMiAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDo2OWRlYjViMi04ZTEzLWNmNDgtODFlNi0yNzk5OTk1OWFjZjgiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6QUY0MzkzRDQ0MzlFMTFFOTkwQ0NDREZCQTNCN0JEOEQiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6QUY0MzkzRDM0MzlFMTFFOTkwQ0NDREZCQTNCN0JEOEQiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTkgKFdpbmRvd3MpIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6MkQxNzQyQjZFRjA2MTFFODhBREFDNDFBMUJFNDQxREIiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6MkQxNzQyQjdFRjA2MTFFODhBREFDNDFBMUJFNDQxREIiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz5PKXo+AAADwklEQVR42uycSWgUQRiFe5JxFyUIihJQENSAJughB/UgIuIS0TYXCdGcRNQkRD2IaHABcSFKxIOoYDTihuhcvCkuqBBcIV48eBLj1YVENI4Z34+/4JKu7vT0xsx78KjDVE/X/1FVb6ozk1Qul7Oo/FRCBIRIiIRIESIhEiIhUoMobXoxlUrFPkDbtktlKJlMJhv3WJwOJinTiSVOiIA3Es0BuFGGAp+BdwHmF0L0BnA2msvwnH9eeg3XAeRLQnSGJzfcCrfBIxy69cO74WOAmSPEvwFORNMBr/B4yR24ASDfxw0xEekMgMvRvBoCQNESuBvXro57/LHORA2PNl3CTuqDv8ITDH1Ow9vDDp3EzUQArETzzAXgc3ieBsxtQ79N0hfvObcoZqKGRzN8xBAeMqijcCtm1/c/rtsBH4SHxxE6iQgWgJiE5jy8zNCtB14PCPcc3kNm21V4RtShE/tyRvErNTxMAG/AlU4ARfoZUZb42aSETugzEYWM0vDY4hIezQB0bojvXaswy6IInViWM4qsQnMFrjB0e6qnkDc+71GO5iK8yNAtkJNOpBA1BFrgw4YQGNBw2fs7PPJ8SLET3m94qJJ36EQGEQVN1vBYauj2Dq5HMQ8C3ner9cw9PYzQiSRYUMQq2dBdAF7X8AgUoIbOEzSS3p1Rhk4gMxEDGq3hsdklPJpQaEdEnwbWaaiMCyp0QlvO+rlNltCssMIjD5DT0FyC5wcROoFD9HiCkPA4JBt+vuGRZ+i0qksMobNHQ2cgEogY2BQ0F3R/cdJbDY+HCXlStEBn5VRDt7vwBoy5J9Rg0Q252wXgNbgqKQA1dB7LmHRsTlqsoWOHEiwaHsf1iYnLeDNrrQQLtdyUxqWbnIS2oZa+QGYibipn1RceAIo+W8mXlzFulJq1dqNKPABsQtMFz7SKT/KkqEsZ+IOIi8eiOQEPs4pXUns7WKR9QcR+0KufAT/CnwbxtwKC1e9Qo9TeafryQNpDqtUbZuo+eYBQIBBPodYWPxfyuzgBiBAJkRAJkSJEQiREQqR8nVjCEk47C9HcCvhta3DqeFQ0EPXe4wuhHi5nQiREBktIkr9n1HjsK6E0hhD/Vxbpet9jume5nLknUoRIiIRIiBQhEiIhEiJFiIRIiEWjMJ7iVNu23e6hX3kI927Evdd4GWPSIVZY5h9EhqlaLmfuiYToV0F/3bg3pL5e9CGuPVF+YCj/FKgsgCJ+WL++H+5VDXAdXBoQwJN+L07xX0RzTyREQqQIkRAJkRApQiTExOqnAAMAXR2Kua55/NAAAAAASUVORK5CYII="},6599:function(t,e,n){"use strict";n.r(e);var i=n("e017"),a=n.n(i),r=n("21a1"),o=n.n(r),c=new a.a({id:"icon-excel",use:"icon-excel-usage",viewBox:"0 0 128 128",content:''});o.a.add(c);e["default"]=c},6618:function(t,e,n){"use strict";var i=n("bbcc"),a=n("5c96"),r=n.n(a),o=n("a18c"),c=n("83d6"),s=n("2b0e");function u(t){t.$on("notice",(function(t){this.$notify.info({title:t.title||"消息",message:t.message,duration:5e3,onClick:function(){console.log("click")}})}))}function l(t){return new WebSocket("".concat(i["a"].wsSocketUrl,"?type=mer&token=").concat(t))}function d(t){var e,n=l(t),i=new s["default"];function a(t,e){n.send(JSON.stringify({type:t,data:e}))}return n.onopen=function(){i.$emit("open"),e=setInterval((function(){a("ping")}),1e4)},n.onmessage=function(t){i.$emit("message",t);var e=JSON.parse(t.data);if(200===e.status&&i.$emit(e.data.status,e.data.result),"notice"===e.type){var n=i.$createElement;r.a.Notification({title:e.data.data.title,message:n("a",{style:"color: teal"},e.data.data.message),onClick:function(){"min_stock"===e.data.type||"product"===e.data.type?o["c"].push({path:"".concat(c["roterPre"],"/product/list")}):"reply"===e.data.type?o["c"].push({path:"".concat(c["roterPre"],"/product/reviews")}):"product_success"===e.data.type?o["c"].push({path:"".concat(c["roterPre"],"/product/list?id=")+e.data.data.id+"&type=2"}):"product_fail"===e.data.type?o["c"].push({path:"".concat(c["roterPre"],"/product/list?id=")+e.data.data.id+"&type=7"}):"product_seckill_success"===e.data.type?o["c"].push({path:"".concat(c["roterPre"],"/marketing/seckill/list?id=")+e.data.data.id+"&type=2"}):"product_seckill_fail"===e.data.type?o["c"].push({path:"".concat(c["roterPre"],"/marketing/seckill/list?id=")+e.data.data.id+"&type=7"}):"new_order"===e.data.type?o["c"].push({path:"".concat(c["roterPre"],"/order/list?id=")+e.data.data.id}):"new_refund_order"===e.data.type?o["c"].push({path:"".concat(c["roterPre"],"/order/refund?id=")+e.data.data.id}):"product_presell_success"===e.data.type?o["c"].push({path:"".concat(c["roterPre"],"/marketing/presell/list?id=")+e.data.data.id+"&type="+e.data.data.type+"&status=1"}):"product_presell_fail"===e.data.type?o["c"].push({path:"".concat(c["roterPre"],"/marketing/presell/list?id=")+e.data.data.id+"&type="+e.data.data.type+"&status=-1"}):"product_group_success"===e.data.type?o["c"].push({path:"".concat(c["roterPre"],"/marketing/combination/combination_goods?id=")+e.data.data.id+"&status=1"}):"product_group_fail"===e.data.type?o["c"].push({path:"".concat(c["roterPre"],"/marketing/combination/combination_goods?id=")+e.data.data.id+"&status=-1"}):"product_assist_success"===e.data.type?o["c"].push({path:"".concat(c["roterPre"],"/marketing/assist/list?id=")+e.data.data.id+"&status=1"}):"product_assist_fail"===e.data.type?o["c"].push({path:"".concat(c["roterPre"],"/marketing/assist/list?id=")+e.data.data.id+"&status=-1"}):"broadcast_status_success"===e.data.type?o["c"].push({path:"".concat(c["roterPre"],"/marketing/studio/list?id=")+e.data.data.id+"&status=1"}):"broadcast_status_fail"===e.data.type?o["c"].push({path:"".concat(c["roterPre"],"/marketing/studio/list?id=")+e.data.data.id+"&status=-1"}):"goods_status_success"===e.data.type?o["c"].push({path:"".concat(c["roterPre"],"/marketing/broadcast/list?id=")+e.data.data.id+"&status=1"}):"goods_status_fail"===e.data.type&&o["c"].push({path:"".concat(c["roterPre"],"/marketing/broadcast/list?id=")+e.data.data.id+"&status=-1"})}})}},n.onclose=function(t){i.$emit("close",t),clearInterval(e)},u(i),function(){n.close()}}e["a"]=d},6683:function(t,e,n){"use strict";n.r(e);var i=n("e017"),a=n.n(i),r=n("21a1"),o=n.n(r),c=new a.a({id:"icon-guide",use:"icon-guide-usage",viewBox:"0 0 128 128",content:''});o.a.add(c);e["default"]=c},"678b":function(t,e,n){"use strict";n("432f")},"708a":function(t,e,n){"use strict";n.r(e);var i=n("e017"),a=n.n(i),r=n("21a1"),o=n.n(r),c=new a.a({id:"icon-star",use:"icon-star-usage",viewBox:"0 0 128 128",content:''});o.a.add(c);e["default"]=c},7091:function(t,e,n){},"711b":function(t,e,n){"use strict";n("f677")},7153:function(t,e){t.exports="data:image/jpeg;base64,/9j/4QAYRXhpZgAASUkqAAgAAAAAAAAAAAAAAP/sABFEdWNreQABAAQAAABkAAD/4QMuaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLwA8P3hwYWNrZXQgYmVnaW49Iu+7vyIgaWQ9Ilc1TTBNcENlaGlIenJlU3pOVGN6a2M5ZCI/PiA8eDp4bXBtZXRhIHhtbG5zOng9ImFkb2JlOm5zOm1ldGEvIiB4OnhtcHRrPSJBZG9iZSBYTVAgQ29yZSA1LjYtYzE0OCA3OS4xNjQwMzYsIDIwMTkvMDgvMTMtMDE6MDY6NTcgICAgICAgICI+IDxyZGY6UkRGIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyI+IDxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0PSIiIHhtbG5zOnhtcD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLyIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bXA6Q3JlYXRvclRvb2w9IkFkb2JlIFBob3Rvc2hvcCAyMS4wIChNYWNpbnRvc2gpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjNENTU5QTc5RkRFMTExRTlBQTQ0OEFDOUYyQTQ3RkZFIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjNENTU5QTdBRkRFMTExRTlBQTQ0OEFDOUYyQTQ3RkZFIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6M0Q1NTlBNzdGREUxMTFFOUFBNDQ4QUM5RjJBNDdGRkUiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6M0Q1NTlBNzhGREUxMTFFOUFBNDQ4QUM5RjJBNDdGRkUiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz7/7gAOQWRvYmUAZMAAAAAB/9sAhAABAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAgICAgICAgICAgIDAwMDAwMDAwMDAQEBAQEBAQIBAQICAgECAgMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwP/wAARCADIAMgDAREAAhEBAxEB/8QAcQABAAMAAgMBAAAAAAAAAAAAAAYHCAMFAQIECgEBAAAAAAAAAAAAAAAAAAAAABAAAQQBAgMHAgUFAQAAAAAAAAECAwQFEQYhQRIxIpPUVQcXMhNRYUIjFCQVJXW1NhEBAAAAAAAAAAAAAAAAAAAAAP/aAAwDAQACEQMRAD8A/egAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHhVREVVVERE1VV4IiJ2qq8kQCs8p7s7Uxtl9WN17JujcrJJsdDC+sjmro5GTWLNZJtOSs6mLyUCT7d3dg90Rvdi7KrNE1HT07DPs24WquiOdFq5r49eHUxz2oq6a6gSYAAAAAAAAAAAAAAAAAAAAAAAAAV17p5Gxj9oW0rOdG+9Yr4+SRiqjmwTdck6IqdiSxwrGv5PUDJgEj2lkbOL3JhrVVzmv8A7hWgka3X96vZlZBYhVP1JJFIqJ+C6L2oBtUAAAzl7nb7ktXEwWFsujrY+wyW5bgerXWL9d6Pjiiexdfs0pWoqr+qVNexqKoW5sfdMW6sJFacrW5Cr01snCmidNhreE7Wp2Q2mp1t5IvU3j0qBMQAAAAAAAAAAAAAAAAAAA6PceDr7jw13EWHLG2yxqxTInU6CxE5JYJkTVOpGSNTqTVOpqqmqagZSymxN14qy+vJhb1tqOVsdnHVpr1eZNe65j67HqzqTsa9Gu/FAJ/7e+3GTTJ1c3nqzqNajIyzUpz6NtWbUao6CSWHi6vDBIiO0f0vc5qJppqoGhZ54a0MtixKyGCCN8s00rkZHFHG1XPe9ztEa1rU1VQM73/d66m5Y7NGPr29WV1Z1J7UbLehc9v3biucnVFY7qLEmujWpoqd5wEm3z7k0osJXg27cbNdzNb7n8iJ2j8dUcrmSK9PqhvPc1zEaujo9FdwVG6hm4CXbK3RNtXNQ3dXOoz9NfJQN4/cqucmsjW9izVnd9nNdFbqiOUDYsE8NmGKxXkZNBPGyaGWNUcySKRqPjkY5OCte1UVAOUAAAAAAAAAAAAAAAAAAAABVREVVXRE4qq8ERE7VVQMye5W/Vzcz8HiJv8AEV5P6mxG7hkrEa8OlyfVShend5PcnVxRGgVEAAAANAe0W7utq7Vvy95iSTYiR6/UzjJYo6rzZxkj/LqTk1AL4AAAAAAAAAAAAAAAAAAED3fv7E7VjdBql7LOZrFj4np+11Jq2S7InV/Hj5omivdyTTigUfjPdLcdXNvyd+db1OyrWWcYn7daKBqr0/wWd5K80SOXR3FX/rVy8UCSb/8AcyDJ0WYnbk0qQXIGPyVxWPhl+3K3VccxHaOaui6TOTVF+lFVFcBR4AAAAAc9WzPTsQW6sr4bNaWOeCZi6Pjlicj2Pav4tcgG38NckyOIxWQma1st7G0bkrWaoxslmrFM9rEVVVGo566ar2AdkAAAAAAAAAAAAAAAA6fcM81XAZyzXkdFPXw+TnglYuj45oqU8kcjV5OY9qKn5oBiKSWSaR8s0j5ZZXufJLI9z5JHuXVz3vcque9yrqqquqqB6AAAAAAAAANt7X/8zt3/AEWI/wCfXA70AAAAAAAAAAAAAAAB8mQpx5Ghdx8znsivVLNOV8atSRkdqF8D3Rq5rmo9rXqqaoqa8gKp+FtuepZvxaHkAHwttz1LN+LQ8gA+FtuepZvxaHkAHwttz1LN+LQ8gA+FtuepZvxaHkAHwttz1LN+LQ8gA+FtuepZvxaHkAHwttz1LN+LQ8gA+FtuepZvxaHkALWx9OPHUKWPhc98VGpWpxPkVqyPjqwsgY6RWta1XuaxFXRETXkB9YAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/9k="},"73fc":function(t,e){t.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFEAAABRCAYAAACqj0o2AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA25pVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTQ1IDc5LjE2MzQ5OSwgMjAxOC8wOC8xMy0xNjo0MDoyMiAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDo2OWRlYjViMi04ZTEzLWNmNDgtODFlNi0yNzk5OTk1OWFjZjgiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6Q0I1NzhERDI0MzlFMTFFOTkwOTJBOTgyMTk4RjFDNkQiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6Q0I1NzhERDE0MzlFMTFFOTkwOTJBOTgyMTk4RjFDNkQiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTkgKFdpbmRvd3MpIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6MkQxNzQyQjZFRjA2MTFFODhBREFDNDFBMUJFNDQxREIiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6MkQxNzQyQjdFRjA2MTFFODhBREFDNDFBMUJFNDQxREIiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz74PCH/AAAEfUlEQVR42uycTUhUURTH35QKRdnHIopIhTYVaKWLCqIvSUlIcwpaFLQI+oKkFrWqZUGfBC2iTURQiOWIBWZZJmYE0ZdZUUZRJrQysoLKpux/8C2m6x3nzby5753nnAOHS/dd35z3m3vuOffcN4UGBwctEXcyRhAIRIEoEEUEokAUiAJRRCCakSynA8Ph8Aw0ixwOH2hoaGgaDYCc7OiykrgfAWxwOri6ujofIHvEnd3JGlkTBSILiKVw6RwJLP9LF3TvCNfXQZfH/HsCdBn0lkC0BUHiLZpTIwSSXgUiSUUmQEynO9+ERjNxXUwbRMzUr2juKd1zMEMLBGJycj0To3TI6RlLKBRykmAXoelUdy/QHwHj8gtaD62JRCLRdEZnpxH8E3RGTF+OrUGTndDukYKpEXfGukjTumUUeWqxX8n2jVEEsTvdyXYyqQ7NSHURfWb3c5VCzaS65nlgiQkwjzSusBDu/pQjPao4oXmvdH+AvQVO+JjaOzdr+soYz8IqTV+j3wUI3bpYzhhipabvqt8Q70O/K31L4TbjGbryJM2evx/a7itErCW/0bQq3ZQrrmA4Cys0AbbJfgZfZ2I8ly4LiCs3JnODjIYIV862Z2KsROMERu8h2vXHd0r3XBg+ixFHWgtzlb422N7PZSYGYTa6dmW/IHJKdarcpDZeQWy1hle76QBrLIP1cD6aPKW7M5WzcqMQYdA3O2eMlanQkqDvUryciZxdujJIENnto+HKMzXeQKeVT7hCJMP6lL4leJBcbntlu6jMDyIM+2sN1RhjhQLLqqAWHPyYiazyRXjARM0XSAGwjTvEFkbBpdwafnDWDI/5leoNjVS248wAOh4oVLqPWt4fpxLExUrfZkC8qBuc7pc80+HSKsT9DFKdP5b+pQN27hxvXeQgdzELPwcFYoe9gHOTOrc38Awivu2fbtIIg1/sebc38TKwzENDR6bZyqXD0Ms+AKQv9XWiBNsJH08gAiD9MR38LFUuPYcWJ3Oe4bX4ee6sylYNQLJuO2eAbNwZs3AamlfQKcqlswC4gzsgLnniSQ1ASrBrAXgBI15/8KV2pfKHRiEC0lo0mzSXxkHvMJt0dDg1mWOKc9rKADENcbpAdC/nMgGi6cCyG/oQWhQAFilXkzzbsQRVOCXbsiaKCMTAB5bYxHusnXhvsIZ+LPQReglan+pRZQo20DHtLuhqa+inxC+hZ/D5D1jvnW3jaYdCP2co1VyOQDfiQaKGAc5Gcxuar7m8D59/nHtgORoHIEkYesAwQHrOK3EAkhzDmFK2a6J9zrstwbAajDO5tKyEJip27OEcWKiinegHklTlyTNoQ0maxvgG0WnRdcCgDT9Nfr4XEKlG9yXBmB4s7L0GbehwMKadLUS7/H8owbCDhm14bI387iHN1CPck+0TUEoh1HyB3j44iIe84IENWyz9O0HkJethw4tAFCAQgQvtlIbqjOS+dTD+jZe7C9hQZqdblHjTaWMtbOhzU4AIyf+zLXtngSgQRQSiQBSIAlFEIJqRfwIMABiyUOLFGxshAAAAAElFTkSuQmCC"},7509:function(t,e,n){"use strict";n.r(e);var i=n("2909"),a=n("3835"),r=(n("ac6a"),n("b85c")),o=(n("7f7f"),n("6762"),n("2fdb"),{visitedViews:[],cachedViews:[]}),c={ADD_VISITED_VIEW:function(t,e){t.visitedViews.some((function(t){return t.path===e.path}))||t.visitedViews.push(Object.assign({},e,{title:e.meta.title||"no-name"}))},ADD_CACHED_VIEW:function(t,e){t.cachedViews.includes(e.name)||e.meta.noCache||t.cachedViews.push(e.name)},DEL_VISITED_VIEW:function(t,e){var n,i=Object(r["a"])(t.visitedViews.entries());try{for(i.s();!(n=i.n()).done;){var o=Object(a["a"])(n.value,2),c=o[0],s=o[1];if(s.path===e.path){t.visitedViews.splice(c,1);break}}}catch(u){i.e(u)}finally{i.f()}},DEL_CACHED_VIEW:function(t,e){var n=t.cachedViews.indexOf(e.name);n>-1&&t.cachedViews.splice(n,1)},DEL_OTHERS_VISITED_VIEWS:function(t,e){t.visitedViews=t.visitedViews.filter((function(t){return t.meta.affix||t.path===e.path}))},DEL_OTHERS_CACHED_VIEWS:function(t,e){var n=t.cachedViews.indexOf(e.name);t.cachedViews=n>-1?t.cachedViews.slice(n,n+1):[]},DEL_ALL_VISITED_VIEWS:function(t){var e=t.visitedViews.filter((function(t){return t.meta.affix}));t.visitedViews=e},DEL_ALL_CACHED_VIEWS:function(t){t.cachedViews=[]},UPDATE_VISITED_VIEW:function(t,e){var n,i=Object(r["a"])(t.visitedViews);try{for(i.s();!(n=i.n()).done;){var a=n.value;if(a.path===e.path){a=Object.assign(a,e);break}}}catch(o){i.e(o)}finally{i.f()}}},s={addView:function(t,e){var n=t.dispatch;n("addVisitedView",e),n("addCachedView",e)},addVisitedView:function(t,e){var n=t.commit;n("ADD_VISITED_VIEW",e)},addCachedView:function(t,e){var n=t.commit;n("ADD_CACHED_VIEW",e)},delView:function(t,e){var n=t.dispatch,a=t.state;return new Promise((function(t){n("delVisitedView",e),n("delCachedView",e),t({visitedViews:Object(i["a"])(a.visitedViews),cachedViews:Object(i["a"])(a.cachedViews)})}))},delVisitedView:function(t,e){var n=t.commit,a=t.state;return new Promise((function(t){n("DEL_VISITED_VIEW",e),t(Object(i["a"])(a.visitedViews))}))},delCachedView:function(t,e){var n=t.commit,a=t.state;return new Promise((function(t){n("DEL_CACHED_VIEW",e),t(Object(i["a"])(a.cachedViews))}))},delOthersViews:function(t,e){var n=t.dispatch,a=t.state;return new Promise((function(t){n("delOthersVisitedViews",e),n("delOthersCachedViews",e),t({visitedViews:Object(i["a"])(a.visitedViews),cachedViews:Object(i["a"])(a.cachedViews)})}))},delOthersVisitedViews:function(t,e){var n=t.commit,a=t.state;return new Promise((function(t){n("DEL_OTHERS_VISITED_VIEWS",e),t(Object(i["a"])(a.visitedViews))}))},delOthersCachedViews:function(t,e){var n=t.commit,a=t.state;return new Promise((function(t){n("DEL_OTHERS_CACHED_VIEWS",e),t(Object(i["a"])(a.cachedViews))}))},delAllViews:function(t,e){var n=t.dispatch,a=t.state;return new Promise((function(t){n("delAllVisitedViews",e),n("delAllCachedViews",e),t({visitedViews:Object(i["a"])(a.visitedViews),cachedViews:Object(i["a"])(a.cachedViews)})}))},delAllVisitedViews:function(t){var e=t.commit,n=t.state;return new Promise((function(t){e("DEL_ALL_VISITED_VIEWS"),t(Object(i["a"])(n.visitedViews))}))},delAllCachedViews:function(t){var e=t.commit,n=t.state;return new Promise((function(t){e("DEL_ALL_CACHED_VIEWS"),t(Object(i["a"])(n.cachedViews))}))},updateVisitedView:function(t,e){var n=t.commit;n("UPDATE_VISITED_VIEW",e)}};e["default"]={namespaced:!0,state:o,mutations:c,actions:s}},"75d9":function(t,e,n){},7680:function(t,e,n){},"770f":function(t,e,n){},"7b72":function(t,e,n){},"80da":function(t,e,n){"use strict";n.r(e);var i=n("e017"),a=n.n(i),r=n("21a1"),o=n.n(r),c=new a.a({id:"icon-wechat",use:"icon-wechat-usage",viewBox:"0 0 128 110",content:''});o.a.add(c);e["default"]=c},8201:function(t,e,n){},"83d6":function(t,e){t.exports={roterPre:"/merchant",title:"加载中...",showSettings:!0,tagsView:!0,fixedHeader:!1,sidebarLogo:!0,errorLog:"production"}},8544:function(t,e,n){},8593:function(t,e,n){"use strict";n.d(e,"u",(function(){return a})),n.d(e,"n",(function(){return r})),n.d(e,"K",(function(){return o})),n.d(e,"t",(function(){return c})),n.d(e,"s",(function(){return s})),n.d(e,"m",(function(){return u})),n.d(e,"J",(function(){return l})),n.d(e,"r",(function(){return d})),n.d(e,"o",(function(){return h})),n.d(e,"q",(function(){return m})),n.d(e,"g",(function(){return f})),n.d(e,"j",(function(){return p})),n.d(e,"x",(function(){return g})),n.d(e,"h",(function(){return b})),n.d(e,"i",(function(){return v})),n.d(e,"w",(function(){return A})),n.d(e,"k",(function(){return w})),n.d(e,"A",(function(){return y})),n.d(e,"F",(function(){return k})),n.d(e,"C",(function(){return C})),n.d(e,"E",(function(){return E})),n.d(e,"B",(function(){return j})),n.d(e,"L",(function(){return I})),n.d(e,"y",(function(){return x})),n.d(e,"z",(function(){return S})),n.d(e,"D",(function(){return O})),n.d(e,"G",(function(){return R})),n.d(e,"H",(function(){return _})),n.d(e,"l",(function(){return M})),n.d(e,"e",(function(){return D})),n.d(e,"I",(function(){return z})),n.d(e,"f",(function(){return V})),n.d(e,"p",(function(){return B})),n.d(e,"a",(function(){return F})),n.d(e,"v",(function(){return L})),n.d(e,"b",(function(){return N})),n.d(e,"c",(function(){return T})),n.d(e,"d",(function(){return Q}));var i=n("0c6d");function a(t,e){return i["a"].get("group/lst",{page:t,limit:e})}function r(){return i["a"].get("group/create/table")}function o(t){return i["a"].get("group/update/table/"+t)}function c(t){return i["a"].get("group/detail/"+t)}function s(t,e,n){return i["a"].get("group/data/lst/"+t,{page:e,limit:n})}function u(t){return i["a"].get("group/data/create/table/"+t)}function l(t,e){return i["a"].get("group/data/update/table/".concat(t,"/").concat(e))}function d(t,e){return i["a"].post("/group/data/status/".concat(t),{status:e})}function h(t){return i["a"].delete("group/data/delete/"+t)}function m(){return i["a"].get("system/attachment/category/formatLst")}function f(){return i["a"].get("system/attachment/category/create/form")}function p(t){return i["a"].get("system/attachment/category/update/form/".concat(t))}function g(t,e){return i["a"].post("system/attachment/update/".concat(t,".html"),e)}function b(t){return i["a"].delete("system/attachment/category/delete/".concat(t))}function v(t){return i["a"].get("system/attachment/lst",t)}function A(t){return i["a"].delete("system/attachment/delete",t)}function w(t,e){return i["a"].post("system/attachment/category",{ids:t,attachment_category_id:e})}function y(){return i["a"].get("service/create/form")}function k(t){return i["a"].get("service/update/form/".concat(t))}function C(t){return i["a"].get("service/list",t)}function E(t,e){return i["a"].post("service/status/".concat(t),{status:e})}function j(t){return i["a"].delete("service/delete/".concat(t))}function I(t){return i["a"].get("user/lst",t)}function x(t,e){return i["a"].get("service/".concat(t,"/user"),e)}function S(t,e,n){return i["a"].get("service/".concat(t,"/").concat(e,"/lst"),n)}function O(t){return i["a"].post("service/login/"+t)}function R(t){return i["a"].get("notice/lst",t)}function _(t){return i["a"].post("notice/read/".concat(t))}function M(t){return i["a"].post("applyments/create",t)}function D(){return i["a"].get("applyments/detail")}function z(t,e){return i["a"].post("applyments/update/".concat(t),e)}function V(t){return i["a"].get("profitsharing/lst",t)}function B(t){return i["a"].get("expr/lst",t)}function F(t){return i["a"].get("expr/partner/".concat(t,"/form"))}function L(t){return i["a"].get("profitsharing/export",t)}function N(t){return i["a"].get("ajcaptcha",t)}function T(t){return i["a"].post("ajcheck",t)}function Q(t){return i["a"].post("ajstatus",t)}},8644:function(t,e,n){"use strict";n.r(e);var i=n("e017"),a=n.n(i),r=n("21a1"),o=n.n(r),c=new a.a({id:"icon-size",use:"icon-size-usage",viewBox:"0 0 128 128",content:''});o.a.add(c);e["default"]=c},8646:function(t,e,n){"use strict";n("770f")},"8a9d":function(t,e,n){"use strict";n.d(e,"a",(function(){return a})),n.d(e,"e",(function(){return r})),n.d(e,"b",(function(){return o})),n.d(e,"f",(function(){return c})),n.d(e,"d",(function(){return s})),n.d(e,"c",(function(){return u}));var i=n("0c6d");function a(t){return i["a"].get("v2/system/city/lst/"+t)}function r(t){return i["a"].get("store/shipping/lst",t)}function o(t){return i["a"].post("store/shipping/create",t)}function c(t,e){return i["a"].post("store/shipping/update/".concat(t),e)}function s(t){return i["a"].get("/store/shipping/detail/".concat(t))}function u(t){return i["a"].delete("store/shipping/delete/".concat(t))}},"8aa6":function(t,e,n){"use strict";n.r(e);var i=n("e017"),a=n.n(i),r=n("21a1"),o=n.n(r),c=new a.a({id:"icon-zip",use:"icon-zip-usage",viewBox:"0 0 128 128",content:''});o.a.add(c);e["default"]=c},"8bcc":function(t,e,n){"use strict";n("29c0")},"8e8d":function(t,e,n){"use strict";n.r(e);var i=n("e017"),a=n.n(i),r=n("21a1"),o=n.n(r),c=new a.a({id:"icon-search",use:"icon-search-usage",viewBox:"0 0 128 128",content:''});o.a.add(c);e["default"]=c},"8ea6":function(t,e){t.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFEAAABRCAYAAACqj0o2AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA25pVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTQ1IDc5LjE2MzQ5OSwgMjAxOC8wOC8xMy0xNjo0MDoyMiAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDo2OWRlYjViMi04ZTEzLWNmNDgtODFlNi0yNzk5OTk1OWFjZjgiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6RDVCRUNFOTg0MzlFMTFFOTkyODA4MTRGOTU2MjgyQUUiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6RDVCRUNFOTc0MzlFMTFFOTkyODA4MTRGOTU2MjgyQUUiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTkgKFdpbmRvd3MpIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6MkQxNzQyQjZFRjA2MTFFODhBREFDNDFBMUJFNDQxREIiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6MkQxNzQyQjdFRjA2MTFFODhBREFDNDFBMUJFNDQxREIiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz6lVJLmAAAF2klEQVR42uycWWxVRRjH59oismvBvUCImrigRasFjaGCJhjToK1Row2SaELcgsuDuMT4YlJi1KASjWh8KZpAYhuRupCoxQeJgEYeVAhEpBXrUqkoqAi1/v85n0nTfKf39Nw5y53Ol/wzzZlzZvndObN8M6eFgYEB4600O84j8BA9RA/Rm4foIXqIHqI3DzEZq4x6Y6FQSKVAjY2NzGg2dCk0C5oMHYN+g76Fvmhvb9+ZFqAoK7pC1GVf0hAB72wE90G3QKcVuX0/9Cb0EoB+N+ohAt7JCFZCS6GKET7eD70OPQKYB0YlRAC8FsFaaGqJSf0ENQPkh1lAzGxgAcC7EXRYAEg7FdqENO/Ioi6ZtERUdhmCV4rc9ge0C9oDHYHOgC6GphV5bgla5FqnX2cAnI/go2H6vw+g1QwB4+iQZ/nmXAk9BF0f8jyfuRzPfu4kRECYiOBraLoS3QPdicq/FzGtBQhaoTOV6N3QhUjriIt94uMhAPna1kUFSMO9HyOYC32jRJ8D3e9cn4iWcxKCbmjCkKheqBZQumKmO4MTcGWA+hWqRrp/u9QSb1cA0u6KC1BaJJ+9R4ki1CbX1s43Kte2AcJbpSaMNNYj0AYSdyDilRvHEVOJes1iNtqUaYFLLfG8EGfHBot5aINSFX7A012BqE1D+vAa/mgrA6T1PQJt/VztCsQTlGtdCeTTq1yb4ApELZ9xKf1YR12BqL221eivKmxlgLQqZX091H5xBeIu5dp46CKLecxVBi96xPc6AVEGkG4l6laL2dwcMg915nWmdSjXluE1nGrhVT6Fzgsl6l3XViytyrUp0HMW0l6ljMJc9L7hFES8Vp8i+ExbU6MlLS+hFT4Q0i2sR55706hbpUnXVkCdyvXnAWMswmdQ8YGI8OhWetgEm1xDjX7EJ9KqVKr+RADajGBNSPTT7MNk67QYwPMRvB8CkPYk8tqdVr3Sbom0B02wMX+JEsfdv52AxC2CdhN4ZnokjnPAy6AboEVQmINzg/wgqVlWG1V0CmwywUkHm0ZvdwNa4Z+2Esztlikqyda1EPrEYrL0KV5nE2CuW+KgFjkGwWOi42MmwzM6KwBvTRKAyuYsjgwmBHkbNDbiY79DL0PPAmBi6+OyOtAkME80wX7yNVANdJassWkHTXAqbLv0px2A91fSZSo7iHm0XJ/Fcck8RA/RQ3TGKrMugJyUvcAE26o8oz0T4opmmozMkwdNaTiR7pWl4D4TeK15FuerJKc5uRqdZR+E6+Z6aB5UZ/R9kTj2A7RVxOXfdoA95sQUR1pag8z/uNSblFIDOQzx+PHb0EYA/bmsIALcePG2LJWJc9Z9778ClN71NgA9nFuIgMfTBvdCPE5cldNxoM8EZ4BeBMzu3EAEPB48f9QER9zGxKhYvwwU/Mhnj/x9QJZ6B+WeKaIqGXy43j5X/o6zf81dwFehp8SrlA1EOUPNrwBaRtjX7ZPOn/su22R0jbW1KZ4gju502F5hgpNgM0fYd/IE72qUoT9ViCg8v3paB82P8DhHyU4TeJ03Jr2BhLLNksFsMXRVxKncFugmlG1/KhBRyFoBUmx68qUJvnhaF3d0tACUe9L81I3fuMwpcjs/KlqMsm5NFCIKxYJsHjQJ1ox7JC2yMZUbQ9nrpe9eNMxtnNQv/P8TDusQxd+3A5oRchszXi57zLk11IN95wtQ7TAT9xrUozcJV1hLCED2edxTrss7QJqUsU7KrK1q2E2ttL7sa2pq4kDSpUxh+PlYYxIfJ6bUKq82wfbsJGXaNb2tra3HZktsCJkDNpcrQGmVLHuzElVhwj99iw2xRrnWiUK8U+6uLKlDpxI12zZEbTK9w7hjW5RrE21DdN3+ifugh2jBPEQPMR9W6h5LPeZZqxxhMS8riHMiLOr96+zNLsS+UcinzzZEnv87NIoAHjLh58vjOSDEFcZ/ULHEDO9LdMHoU2zl4Xmr/kRvfmDxED1ED9Gbh+gheogeoreR2X8CDACpuyLF6U1ukwAAAABJRU5ErkJggg=="},"8fb7":function(t,e,n){"use strict";n.r(e);var i=n("e017"),a=n.n(i),r=n("21a1"),o=n.n(r),c=new a.a({id:"icon-tab",use:"icon-tab-usage",viewBox:"0 0 128 128",content:''});o.a.add(c);e["default"]=c},"905e":function(t,e){t.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFEAAABRCAYAAACqj0o2AAAAAXNSR0IArs4c6QAADbRJREFUeF7tnH1wVNUVwM95bxPysV+RBBK+TPgKEQkBYRRDbWihQgWBKgoaa+yAguJIx3Zqh3aMUzva0U7o0CoolqigCDhGQRumOO6MUBgBTSGSBQKJED4MkXzsbrJJ3t7TuQuh2X1v38e+F3Da3H/33nPP+d1zv849bxH6i2kCaFpCvwDoh2iBE/RD7IdoAQELRPR7Yj9ECwhYIKLfE/9XIbavnjgUWeLoEMEwQLQhQzsIFCQASSDmB6SGZBBr8YUvvrOAgWkR190TGx+/yZ7isBcKQDMJcCYijgYAux7LiKgJEasJyCMgeZL2HdiLHpD0tLWyznWBSEVga58y5S4UhGJAmEsASZYYRdAEANuR2KaUlw7utUSmDiHXFGJdSXbS4IyMxwjgGQDI1KFfVBUj6lIVsdDLqYe+fK+vvdOIVsZtvtKCe17HLVOfIKDfAWD6Nb0nEdUCg1+llh38MG4DNBr2OcT2VVMKmUDrEPBmo0YggJ+A+BTtVXAYANiMygKASlGklUkvHToZR1vVJn0GMex9E2/5A2F46sqLvOcLQFAJENorhYRqJjJv2pqqFqWm/sdvyqTExHEiihOBoIgQigDArQmHyE/IVtrLqt7UrGugQp9A5EZiQtI2AJiuMYRNQLAFmbQ5Ze3h/Qb0jqjKByyQP3mmgPAwAS4AzY2KygPdwScHvXLUH2+fEXPDCiG9ZQSfys8NkVgJhNkqsi8gshe/bWtZn1NeH7RSBz6AQkLib4iwBABVvJPtCUhdc6wAaakntj+RfyuhWBFz5yUMAtDLjYHmP1oNL3og2h4dm25LTCkjwOJYg4QAXsY6Z9hfOXrBzEBaBjG4Ij9XEoT9SDHXpoMSdC9xvfJ1rRmFjbb1LS8oEkR4GwD4hiQrCOTtDOC0tHLl9VdPf5ZAbF+aP4wS8MBlD5SLRGBrkmsO/7qvz2uxDOZeKYrJbwPgbOU6tCeA3XFPbdMQ+QF6UKJzHyAWKAyzBIytSn3tyN/0jGhf1gnfknLz1wLicqV+iNEW+2uHl8Sjg2mIgWX5rwKCkmISY6Eljg1fb49Hsb5q0/7oBL5OrorhkctTXzuy3mjfpiC2/2L8PSQIMSDR0tQN1W8YVeha1A8sm7AWAFbK+iIIhqTOSc7y414jesQNsbkk250oOo6QwoKNRKWpf69+zogi17JueGqPvvkDIpwrX4Jot31D9Swj+sQN0V8yvgxQaVqw3al1R+dcr01Er/FhJ8DUrwgVzrMhVmx/8+hmvbLigthaPGq0KCbVAEbdYXkoCmmCvdzcuUuv8mbrtZbk3SaCsE9BzoWLEMjRe5aNC6Lv53mvI+DS6M4Z0DLnWzUbzBp3LdsHHr7pVQKFjZFYif0tr647tmGI/kXZmZCUXAeAEYFUJNqfuqlmmlEAjYsy7BnJAwfgW964Qv11RdlJ2VnownfrvjXaN6/fvCDbneBIqYsOYBBQrf1MTZ6eZckwxMCDuasJhOcVvHCec7N3px5DAg/kzgfEYgY4G/HKUwDxsD55ELAi5WzNejXl2x/MLWSXZ8JcQEzv6ZOI9iNhRXd7x/q0inrFCJCSfoHicc8SYKnsN0az7e94d2nZZBii74FxJxCAv4P0KlRlf+fYJK3O2heNHRpKELYjwG1qdQmgVpSoJGXrsYgQP/faFNvA1wFhsXpf1CIQLk151/u+lk493mhLGVCH0QELpE32zcce0pJhCGLborHTBRE/l3kh0TLne8dV10L//WMnAmKlLDgRSwMCSWBsccrWE2EQ4WXENuAzABinZdTV3wmesW859ic99QOLc18l+aUh2C5dyhi07aJqyMwQxMB9Y58ljHZ7CrazZtWO2uaNTRdSwndrtfCYkq38iXQxo+69ICR+BoD6AV6RJhC7t2cg1GCGHURQchBpoXPrSR6ZilkMQfQtGrMPASOmIiJUpG49vlCtk8Ci0WsJBPkNgTfS0oCvlQgNcQxAj0oXLjZ25eR4tOOW/vvG8g0maqBpjX3riV9aAjG8HjF3c/TZkCi0wvH+qXWxOmmbNyRdSEw9LztT6pljFtUREFalbDvxFy1x/nvGbASEkqh6VfbtJ1TXey0/uCqv5e6RU2w2gU/JiMK6pTznjvqYd03/wlEPA2K5qgG6tdDCEPN3j/392hlardsWjCoRRNwYXS/1u9oEtdOCbvVbF+QUiyjy4GavdRv8jg9qHapT+Wej1hKh8lTWssqi3wm09eRd+RYOvxlhwJHobqmLJjg+PlkdSx3dEP3zR75AgBEvdwhUZf/wlKqr++eP3EjA3ztUim4t4qfqqDip2Qs/uKe7xQ4ZxFBooXNHfczNRVNwj0D/vJEbSb5ebHd8dGqRmmkx2sVPI86Wjo9O6bLVf3dOHUFkUIKIPeLcUR9zSdIlmOvtn5fzNhFEPPogUrl9R/0jqhDvynmaEF6+rp5IUO3YWTdBD3//3Bwe2YmM0hOUOnaeihna0w3Rd1c2P6fxR/KrBYHW2D+uV93+m3+aXWBD/EqPAX1Xh9Y4NPTs6VvJTkAqdeystwDiHA4xnGnQiyI97/jkm99rGe+bc+PnAKj1kK8lJr7fCSXGuvNcuxp0vTL6uJ2XMyp6l1LHJ1ZAvPPGDwCBZxf09sRye+Vp1enMK7fNHDEdbcA9OZ4cmvjg9bQiWufYdXqFXiG+2SMUBpxKHZWnLfDEWcP5S1nEUQURdtt3ndYVSvfPGvEUIayJaYzuhSWWBAUBBPubur6ZkeMB3VkW/jtHyDYWFgo96drd8FcDPStX9c8a9hSBEAmBqMmx+0yG7lH+yfAyoFgvbXql6KyH4MWujhl2z0VD2Q1ts4b7EDAiU5cx9pDr04ZNpiH6ioYVgYh8XYwoFArlOT3ndL+O+WZykCB/sjTtib3VIi9KnYYB+osyMsmWdD7aRiaxaS7P2ZgJV7pVbyzKsCcLic2ydY3RcofnrKG3Wt+PhpZBzLdfnZ4Wu5oXeX6NQQ/k4lqLsmYLgviPaNES86eleVpiBnl1Q+SCfUVD+aNORBSHgCqdnnNzjJruK+Ige3mkoiaG1AMA8iJ1xQWQ6+8vGvICoRCZT0lwweFpyFKzz5CWvjuyVgNGPg0QkAR+yHIeOheV0aqN1XdHVhmgECMbQbt91MLi7WjvnjHogLE1sLeMth8OkYX6AGmLw3NONb3EEMTm2zMKRDFBdnBGPqX3njc0pXuU9/0g679pHYa0iUDoDXaYA9g4NSMzKTnhTHQqMyNa4f78fMxQH9fCsNq+wswjhFH51wQHnXvPTzXqO1dBFmaVESpsNvoEeoOdkikPDE/l6ZlPM0DZ9ZRC0hjXvouqB3XjEG8fvJoA5a99kjTV/UXTQX12y2v5CgeXERic2gTeYLd5gFybttszj4DMOeig818XNJ3DMMSw29uEM7Jdmli5c3+j5u1FDbJvGgep+xzpDUoh0x4YBnjr4PkgoCzUJQCtsu/7VjMibhhieJe+ddA2Arw3AghCMBhiOWYW9suyB+uZ2t5giFkC8ArEfYCRpw4ECFJ3+3DnIZ/mhhkXxJapA2cKKP5T5lVELzoPXPxtvFP66ho5NaOMFJOl+CqO3iCzDqB/avqDDAXZbQSJ1jgOXFSNUPXoGxfEsMdMyfiKAAoi9yZqCUndOWlVsQ+megH7piiAJPIGESzzwOYCt9uWkFBDgFGfyJFEIchzfam+oZiG2Dp5YDGiEPHmEt7uiUodXzZZkpvom5zee2p7gx0dMwYdDRi6C6sNWuvk9HcRUZZNQUDrXIeadEd+4vZEArD5JqXXgCylBFpCJFnijWGPL+AgaXawM2gpQN/ktMcIRKXzX1OISWOMzKa4IYYX5AJ3CYAoe2IkoFWuqkuau5reqc2nnRGjtOS2F6QVSiB4lL4R5OmB7qpLhtIDTUEMe2P+DefDX472KghU6jh8yZIprQXE6O/+8e6JIZu4BxU/TGcVzn83q2ZzKPVnCiIX2DohjWdTRaReIH/Yqf7+QWwbn1ZIAlYqASSEetbGJqXVG98UzUMc75ZD5A871S3fK0/05bnuZ6KwQREg/yS4m81wH2uN68ZlHmKeuw5Qlu1V6jr6/YDIl5y2PPdLEOtujiARoznumtbdRpcG00ecHgGt41w89Tg6Za7U5b3+ENtyHYUMxXWIEOODdZKIwRL3sVZTHyyZ98RcpxwiUanreNt1m87B0QNGdQoDSnlKs4p3+Rmxh9KO+1RzD/V4p3mIYzjEqOmMcF0gtoxM/bEgCCtJCH/ko/Y824RS10LnqeAePZC06piHOMqhsCZSqavW3+ee2JgB9gGpqYVgw9kEcC9C+P8h1AvRbikYemTg2Q6eOGpJMQ9xpEPmiQRUITAyN03ESPsYw2F4+eMjNwD/AyIaDag//RiJggBY6jjl+zOCtX9AZB5idmodKH3aZckYWyWEKqFbetLV0KkrlcRor+Yh3sg/pFH9vwejOl2ub1ozHgwBTwhDz6XVB/kVr8+KaVVbR4S/rjL6VUCfGcSfSxBguySxN244Z83GoaWseYhDk/tmOhvSjOoR0CMR+7S1Ibg9B/Tn3mgB0vO7IVWVBLYOSeIfB2nvinq0ia7TSztC8AuX/1ANgKAWAGtDEDomAnid57p0p7HEo4ZWG9MQtTr4f/i9H6IFo9wPsR+iBQQsENHvif0QLSBggYh+T+yHaAEBC0T0e6IFEP8D5dohnWmX6X0AAAAASUVORK5CYII="},"90fb":function(t,e,n){"use strict";n.r(e);var i=n("e017"),a=n.n(i),r=n("21a1"),o=n.n(r),c=new a.a({id:"icon-documentation",use:"icon-documentation-usage",viewBox:"0 0 128 128",content:''});o.a.add(c);e["default"]=c},"93cd":function(t,e,n){"use strict";n.r(e);var i=n("e017"),a=n.n(i),r=n("21a1"),o=n.n(r),c=new a.a({id:"icon-tree",use:"icon-tree-usage",viewBox:"0 0 128 128",content:''});o.a.add(c);e["default"]=c},"967a":function(t,e,n){"use strict";n("9796")},9796:function(t,e,n){},9921:function(t,e,n){"use strict";n.r(e);var i=n("e017"),a=n.n(i),r=n("21a1"),o=n.n(r),c=new a.a({id:"icon-fullscreen",use:"icon-fullscreen-usage",viewBox:"0 0 128 128",content:''});o.a.add(c);e["default"]=c},"9bbf":function(t,e,n){"use strict";n.r(e);var i=n("e017"),a=n.n(i),r=n("21a1"),o=n.n(r),c=new a.a({id:"icon-drag",use:"icon-drag-usage",viewBox:"0 0 128 128",content:''});o.a.add(c);e["default"]=c},"9d91":function(t,e,n){"use strict";n.r(e);var i=n("e017"),a=n.n(i),r=n("21a1"),o=n.n(r),c=new a.a({id:"icon-icon",use:"icon-icon-usage",viewBox:"0 0 128 128",content:''});o.a.add(c);e["default"]=c},a14a:function(t,e,n){"use strict";n.r(e);var i=n("e017"),a=n.n(i),r=n("21a1"),o=n.n(r),c=new a.a({id:"icon-404",use:"icon-404-usage",viewBox:"0 0 128 128",content:''});o.a.add(c);e["default"]=c},a18c:function(t,e,n){"use strict";var i,a,r=n("2b0e"),o=n("8c4f"),c=n("83d6"),s=n.n(c),u=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"app-wrapper",class:t.classObj},["mobile"===t.device&&t.sidebar.opened?n("div",{staticClass:"drawer-bg",on:{click:t.handleClickOutside}}):t._e(),t._v(" "),n("sidebar",{staticClass:"sidebar-container",class:"leftBar"+t.sidebarWidth}),t._v(" "),n("div",{staticClass:"main-container",class:["leftBar"+t.sidebarWidth,t.needTagsView?"hasTagsView":""]},[n("div",{class:{"fixed-header":t.fixedHeader}},[n("navbar"),t._v(" "),t.needTagsView?n("tags-view"):t._e()],1),t._v(" "),n("app-main")],1),t._v(" "),n("copy-right")],1)},l=[],d=n("5530"),h=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("section",{staticClass:"app-main"},[n("transition",{attrs:{name:"fade-transform",mode:"out-in"}},[n("keep-alive",{attrs:{include:t.cachedViews}},[n("router-view",{key:t.key})],1)],1)],1)},m=[],f={name:"AppMain",computed:{cachedViews:function(){return this.$store.state.tagsView.cachedViews},key:function(){return this.$route.path}}},p=f,g=(n("6244"),n("eb24"),n("2877")),b=Object(g["a"])(p,h,m,!1,null,"51b022fa",null),v=b.exports,A=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"navbar"},[n("hamburger",{staticClass:"hamburger-container",attrs:{id:"hamburger-container","is-active":t.sidebar.opened},on:{toggleClick:t.toggleSideBar}}),t._v(" "),n("breadcrumb",{staticClass:"breadcrumb-container",attrs:{id:"breadcrumb-container"}}),t._v(" "),n("div",{staticClass:"right-menu"},["mobile"!==t.device?[n("header-notice"),t._v(" "),n("search",{staticClass:"right-menu-item",attrs:{id:"header-search"}}),t._v(" "),n("screenfull",{staticClass:"right-menu-item hover-effect",attrs:{id:"screenfull"}})]:t._e(),t._v(" "),n("div",{staticClass:"platformLabel"},[t._v(t._s(t.label.mer_name))]),t._v(" "),n("el-dropdown",{staticClass:"avatar-container right-menu-item hover-effect",attrs:{trigger:"click","hide-on-click":!1}},[n("span",{staticClass:"el-dropdown-link fontSize"},[t._v("\n "+t._s(t.adminInfo)+"\n "),n("i",{staticClass:"el-icon-arrow-down el-icon--right"})]),t._v(" "),n("el-dropdown-menu",{attrs:{slot:"dropdown"},slot:"dropdown"},[n("el-dropdown-item",{nativeOn:{click:function(e){return t.goUser(e)}}},[n("span",{staticStyle:{display:"block"}},[t._v("个人中心")])]),t._v(" "),n("el-dropdown-item",{attrs:{divided:""},nativeOn:{click:function(e){return t.goPassword(e)}}},[n("span",{staticStyle:{display:"block"}},[t._v("修改密码")])]),t._v(" "),n("el-dropdown-item",{attrs:{divided:""}},[n("el-dropdown",{attrs:{placement:"right-start"},on:{command:t.handleCommand}},[n("span",[t._v("菜单样式")]),t._v(" "),n("el-dropdown-menu",{attrs:{slot:"dropdown"},slot:"dropdown"},[n("el-dropdown-item",{attrs:{command:"a"}},[t._v("标准")]),t._v(" "),n("el-dropdown-item",{attrs:{command:"b"}},[t._v("分栏")])],1)],1)],1),t._v(" "),n("el-dropdown-item",{attrs:{divided:""},nativeOn:{click:function(e){return t.logout(e)}}},[n("span",{staticStyle:{display:"block"}},[t._v("退出")])])],1)],1)],2)],1)},w=[],y=n("c7eb"),k=(n("96cf"),n("1da1")),C=n("2f62"),E=n("c24f"),j=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("el-breadcrumb",{staticClass:"app-breadcrumb",attrs:{separator:"/"}},[n("transition-group",{attrs:{name:"breadcrumb"}},t._l(t.levelList,(function(e,i){return n("el-breadcrumb-item",{key:i},[n("span",{staticClass:"no-redirect"},[t._v(t._s(e.meta.title))])])})),1)],1)},I=[],x=(n("7f7f"),n("f559"),n("bd11")),S=n.n(x),O={data:function(){return{levelList:null,roterPre:c["roterPre"]}},watch:{$route:function(t){t.path.startsWith("/redirect/")||this.getBreadcrumb()}},created:function(){this.getBreadcrumb()},methods:{getBreadcrumb:function(){var t=this.$route.matched.filter((function(t){return t.meta&&t.meta.title})),e=t[0];this.isDashboard(e)||(t=[{path:c["roterPre"]+"/dashboard",meta:{title:"控制台"}}].concat(t)),this.levelList=t.filter((function(t){return t.meta&&t.meta.title&&!1!==t.meta.breadcrumb}))},isDashboard:function(t){var e=t&&t.name;return!!e&&e.trim().toLocaleLowerCase()==="Dashboard".toLocaleLowerCase()},pathCompile:function(t){var e=this.$route.params,n=S.a.compile(t);return n(e)},handleLink:function(t){var e=t.redirect,n=t.path;e?this.$router.push(e):this.$router.push(this.pathCompile(n))}}},R=O,_=(n("d249"),Object(g["a"])(R,j,I,!1,null,"210f2cc6",null)),M=_.exports,D=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticStyle:{padding:"0 15px"},on:{click:t.toggleClick}},[n("svg",{staticClass:"hamburger",class:{"is-active":t.isActive},attrs:{viewBox:"0 0 1024 1024",xmlns:"http://www.w3.org/2000/svg",width:"64",height:"64"}},[n("path",{attrs:{d:"M408 442h480c4.4 0 8-3.6 8-8v-56c0-4.4-3.6-8-8-8H408c-4.4 0-8 3.6-8 8v56c0 4.4 3.6 8 8 8zm-8 204c0 4.4 3.6 8 8 8h480c4.4 0 8-3.6 8-8v-56c0-4.4-3.6-8-8-8H408c-4.4 0-8 3.6-8 8v56zm504-486H120c-4.4 0-8 3.6-8 8v56c0 4.4 3.6 8 8 8h784c4.4 0 8-3.6 8-8v-56c0-4.4-3.6-8-8-8zm0 632H120c-4.4 0-8 3.6-8 8v56c0 4.4 3.6 8 8 8h784c4.4 0 8-3.6 8-8v-56c0-4.4-3.6-8-8-8zM142.4 642.1L298.7 519a8.84 8.84 0 0 0 0-13.9L142.4 381.9c-5.8-4.6-14.4-.5-14.4 6.9v246.3a8.9 8.9 0 0 0 14.4 7z"}})])])},z=[],V={name:"Hamburger",props:{isActive:{type:Boolean,default:!1}},methods:{toggleClick:function(){this.$emit("toggleClick")}}},B=V,F=(n("c043"),Object(g["a"])(B,D,z,!1,null,"363956eb",null)),L=F.exports,N=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",[n("svg-icon",{attrs:{"icon-class":t.isFullscreen?"exit-fullscreen":"fullscreen"},on:{click:t.click}})],1)},T=[],Q=n("93bf"),P=n.n(Q),H={name:"Screenfull",data:function(){return{isFullscreen:!1}},mounted:function(){this.init()},beforeDestroy:function(){this.destroy()},methods:{click:function(){if(!P.a.enabled)return this.$message({message:"you browser can not work",type:"warning"}),!1;P.a.toggle()},change:function(){this.isFullscreen=P.a.isFullscreen},init:function(){P.a.enabled&&P.a.on("change",this.change)},destroy:function(){P.a.enabled&&P.a.off("change",this.change)}}},U=H,G=(n("4d7e"),Object(g["a"])(U,N,T,!1,null,"07f9857d",null)),W=G.exports,Z=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"header-notice right-menu-item"},[n("el-dropdown",{attrs:{trigger:"click"}},[n("span",{staticClass:"el-dropdown-link"},[t.count>0?n("el-badge",{staticClass:"item",attrs:{"is-dot":"",value:t.count}},[n("i",{staticClass:"el-icon-message-solid"})]):n("span",{staticClass:"item"},[n("i",{staticClass:"el-icon-message-solid"})])],1),t._v(" "),n("el-dropdown-menu",{attrs:{slot:"dropdown",placement:"top-end"},slot:"dropdown"},[n("el-dropdown-item",{staticClass:"clearfix"},[n("el-tabs",{on:{"tab-click":t.handleClick},model:{value:t.activeName,callback:function(e){t.activeName=e},expression:"activeName"}},[t.messageList.length>0?n("el-card",{staticClass:"box-card"},[n("div",{staticClass:"clearfix",attrs:{slot:"header"},slot:"header"},[n("span",[t._v("消息")])]),t._v(" "),t._l(t.messageList,(function(e,i){return n("router-link",{key:i,staticClass:"text item_content",attrs:{to:{path:t.roterPre+"/station/notice/"+e.notice_log_id}},nativeOn:{click:function(e){return t.HandleDelete(i)}}},[n("el-badge",{staticClass:"item",attrs:{"is-dot":""}}),t._v(" "+t._s(e.notice_title)+"\n ")],1)}))],2):n("div",{staticClass:"ivu-notifications-container-list"},[n("div",{staticClass:"ivu-notifications-tab-empty"},[n("div",{staticClass:"ivu-notifications-tab-empty-text"},[t._v("目前没有通知")]),t._v(" "),n("img",{staticClass:"ivu-notifications-tab-empty-img",attrs:{src:"https://file.iviewui.com/iview-pro/icon-no-message.svg",alt:""}})])])],1)],1)],1)],1)],1)},Y=[],J=n("8593"),q={name:"headerNotice",data:function(){return{activeName:"second",messageList:[],needList:[],count:0,tabPosition:"right",roterPre:c["roterPre"]}},computed:{},watch:{},mounted:function(){this.getList()},methods:{handleClick:function(t,e){console.log(t,e)},goDetail:function(t){t.is_read=1,console.log(this.$router),this.$router.push({path:this.roterPre+"/station/notice",query:{id:t.notice_log_id}})},getList:function(){var t=this;Object(J["G"])({is_read:0}).then((function(e){t.messageList=e.data.list,t.count=e.data.count})).catch((function(t){}))},HandleDelete:function(t){this.messageList.splice(t,1)}}},X=q,K=(n("225f"),Object(g["a"])(X,Z,Y,!1,null,"3bc87138",null)),$=K.exports,tt=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"header-search",class:{show:t.show}},[n("svg-icon",{attrs:{"class-name":"search-icon","icon-class":"search"},on:{click:function(e){return e.stopPropagation(),t.click(e)}}}),t._v(" "),n("el-select",{ref:"headerSearchSelect",staticClass:"header-search-select",attrs:{"remote-method":t.querySearch,filterable:"","default-first-option":"",remote:"",placeholder:"Search"},on:{change:t.change},model:{value:t.search,callback:function(e){t.search=e},expression:"search"}},[t._l(t.options,(function(e){return[0===e.children.length?n("el-option",{key:e.route,attrs:{value:e,label:e.menu_name.join(" > ")}}):t._e()]}))],2)],1)},et=[],nt=(n("386d"),n("2909")),it=n("b85c"),at=n("ffe7"),rt=n.n(at),ot=n("df7c"),ct=n.n(ot),st={name:"headerSearch",data:function(){return{search:"",options:[],searchPool:[],show:!1,fuse:void 0}},computed:Object(d["a"])({},Object(C["b"])(["menuList"])),watch:{routes:function(){this.searchPool=this.generateRoutes(this.menuList)},searchPool:function(t){this.initFuse(t)},show:function(t){t?document.body.addEventListener("click",this.close):document.body.removeEventListener("click",this.close)}},mounted:function(){this.searchPool=this.generateRoutes(this.menuList)},methods:{click:function(){this.show=!this.show,this.show&&this.$refs.headerSearchSelect&&this.$refs.headerSearchSelect.focus()},close:function(){this.$refs.headerSearchSelect&&this.$refs.headerSearchSelect.blur(),this.options=[],this.show=!1},change:function(t){var e=this;this.$router.push(t.route),this.search="",this.options=[],this.$nextTick((function(){e.show=!1}))},initFuse:function(t){this.fuse=new rt.a(t,{shouldSort:!0,threshold:.4,location:0,distance:100,maxPatternLength:32,minMatchCharLength:1,keys:[{name:"menu_name",weight:.7},{name:"route",weight:.3}]})},generateRoutes:function(t){var e,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"/",i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:[],a=[],r=Object(it["a"])(t);try{for(r.s();!(e=r.n()).done;){var o=e.value;if(!o.hidden){var c={route:ct.a.resolve(n,o.route),menu_name:Object(nt["a"])(i),children:o.children||[]};if(o.menu_name&&(c.menu_name=[].concat(Object(nt["a"])(c.menu_name),[o.menu_name]),"noRedirect"!==o.redirect&&a.push(c)),o.children){var s=this.generateRoutes(o.children,c.route,c.menu_name);s.length>=1&&(a=[].concat(Object(nt["a"])(a),Object(nt["a"])(s)))}}}}catch(u){r.e(u)}finally{r.f()}return a},querySearch:function(t){this.options=""!==t?this.fuse.search(t):[]}}},ut=st,lt=(n("8646"),Object(g["a"])(ut,tt,et,!1,null,"2301aee3",null)),dt=lt.exports,ht=n("a78e"),mt=n.n(ht),ft={components:{Breadcrumb:M,Hamburger:L,Screenfull:W,HeaderNotice:$,Search:dt},watch:{sidebarStyle:function(t){this.sidebarStyle=t}},data:function(){return{roterPre:c["roterPre"],sideBar1:"a"!=window.localStorage.getItem("sidebarStyle"),adminInfo:mt.a.set("MerName"),label:""}},computed:Object(d["a"])(Object(d["a"])({},Object(C["b"])(["sidebar","avatar","device"])),Object(C["d"])({sidebar:function(t){return t.app.sidebar},sidebarStyle:function(t){return t.user.sidebarStyle}})),mounted:function(){var t=this;Object(E["i"])().then((function(e){t.label=e.data})).catch((function(e){var n=e.message;t.$message.error(n)}))},methods:{handleCommand:function(t){this.$store.commit("user/SET_SIDEBAR_STYLE",t),window.localStorage.setItem("sidebarStyle",t),this.sideBar1?this.subMenuList&&this.subMenuList.length>0?this.$store.commit("user/SET_SIDEBAR_WIDTH",270):this.$store.commit("user/SET_SIDEBAR_WIDTH",130):this.$store.commit("user/SET_SIDEBAR_WIDTH",210)},toggleSideBar:function(){this.$store.dispatch("app/toggleSideBar")},goUser:function(){this.$modalForm(Object(E["h"])())},goPassword:function(){this.$modalForm(Object(E["v"])())},logout:function(){var t=Object(k["a"])(Object(y["a"])().mark((function t(){return Object(y["a"])().wrap((function(t){while(1)switch(t.prev=t.next){case 0:return t.next=2,this.$store.dispatch("user/logout");case 2:this.$router.push("".concat(c["roterPre"],"/login?redirect=").concat(this.$route.fullPath));case 3:case"end":return t.stop()}}),t,this)})));function e(){return t.apply(this,arguments)}return e}()}},pt=ft,gt=(n("ac94"),Object(g["a"])(pt,A,w,!1,null,"691d2aa4",null)),bt=gt.exports,vt=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"drawer-container"},[n("div",[n("h3",{staticClass:"drawer-title"},[t._v("Page style setting")]),t._v(" "),n("div",{staticClass:"drawer-item"},[n("span",[t._v("Theme Color")]),t._v(" "),n("theme-picker",{staticStyle:{float:"right",height:"26px",margin:"-3px 8px 0 0"},on:{change:t.themeChange}})],1),t._v(" "),n("div",{staticClass:"drawer-item"},[n("span",[t._v("Open Tags-View")]),t._v(" "),n("el-switch",{staticClass:"drawer-switch",model:{value:t.tagsView,callback:function(e){t.tagsView=e},expression:"tagsView"}})],1),t._v(" "),n("div",{staticClass:"drawer-item"},[n("span",[t._v("Fixed Header")]),t._v(" "),n("el-switch",{staticClass:"drawer-switch",model:{value:t.fixedHeader,callback:function(e){t.fixedHeader=e},expression:"fixedHeader"}})],1),t._v(" "),n("div",{staticClass:"drawer-item"},[n("span",[t._v("Sidebar Logo")]),t._v(" "),n("el-switch",{staticClass:"drawer-switch",model:{value:t.sidebarLogo,callback:function(e){t.sidebarLogo=e},expression:"sidebarLogo"}})],1)])])},At=[],wt=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("el-color-picker",{staticClass:"theme-picker",attrs:{predefine:["#409EFF","#1890ff","#304156","#212121","#11a983","#13c2c2","#6959CD","#f5222d"],"popper-class":"theme-picker-dropdown"},model:{value:t.theme,callback:function(e){t.theme=e},expression:"theme"}})},yt=[],kt=(n("c5f6"),n("6b54"),n("ac6a"),n("3b2b"),n("a481"),n("f6f8").version),Ct="#409EFF",Et={data:function(){return{chalk:"",theme:""}},computed:{defaultTheme:function(){return this.$store.state.settings.theme}},watch:{defaultTheme:{handler:function(t,e){this.theme=t},immediate:!0},theme:function(){var t=Object(k["a"])(Object(y["a"])().mark((function t(e){var n,i,a,r,o,c,s,u,l=this;return Object(y["a"])().wrap((function(t){while(1)switch(t.prev=t.next){case 0:if(n=this.chalk?this.theme:Ct,"string"===typeof e){t.next=3;break}return t.abrupt("return");case 3:if(i=this.getThemeCluster(e.replace("#","")),a=this.getThemeCluster(n.replace("#","")),r=this.$message({message:" Compiling the theme",customClass:"theme-message",type:"success",duration:0,iconClass:"el-icon-loading"}),o=function(t,e){return function(){var n=l.getThemeCluster(Ct.replace("#","")),a=l.updateStyle(l[t],n,i),r=document.getElementById(e);r||(r=document.createElement("style"),r.setAttribute("id",e),document.head.appendChild(r)),r.innerText=a}},this.chalk){t.next=11;break}return c="https://unpkg.com/element-ui@".concat(kt,"/lib/theme-chalk/index.css"),t.next=11,this.getCSSString(c,"chalk");case 11:s=o("chalk","chalk-style"),s(),u=[].slice.call(document.querySelectorAll("style")).filter((function(t){var e=t.innerText;return new RegExp(n,"i").test(e)&&!/Chalk Variables/.test(e)})),u.forEach((function(t){var e=t.innerText;"string"===typeof e&&(t.innerText=l.updateStyle(e,a,i))})),this.$emit("change",e),r.close();case 17:case"end":return t.stop()}}),t,this)})));function e(e){return t.apply(this,arguments)}return e}()},methods:{updateStyle:function(t,e,n){var i=t;return e.forEach((function(t,e){i=i.replace(new RegExp(t,"ig"),n[e])})),i},getCSSString:function(t,e){var n=this;return new Promise((function(i){var a=new XMLHttpRequest;a.onreadystatechange=function(){4===a.readyState&&200===a.status&&(n[e]=a.responseText.replace(/@font-face{[^}]+}/,""),i())},a.open("GET",t),a.send()}))},getThemeCluster:function(t){for(var e=function(t,e){var n=parseInt(t.slice(0,2),16),i=parseInt(t.slice(2,4),16),a=parseInt(t.slice(4,6),16);return 0===e?[n,i,a].join(","):(n+=Math.round(e*(255-n)),i+=Math.round(e*(255-i)),a+=Math.round(e*(255-a)),n=n.toString(16),i=i.toString(16),a=a.toString(16),"#".concat(n).concat(i).concat(a))},n=function(t,e){var n=parseInt(t.slice(0,2),16),i=parseInt(t.slice(2,4),16),a=parseInt(t.slice(4,6),16);return n=Math.round((1-e)*n),i=Math.round((1-e)*i),a=Math.round((1-e)*a),n=n.toString(16),i=i.toString(16),a=a.toString(16),"#".concat(n).concat(i).concat(a)},i=[t],a=0;a<=9;a++)i.push(e(t,Number((a/10).toFixed(2))));return i.push(n(t,.1)),i}}},jt=Et,It=(n("678b"),Object(g["a"])(jt,wt,yt,!1,null,null,null)),xt=It.exports,St={components:{ThemePicker:xt},data:function(){return{}},computed:{fixedHeader:{get:function(){return this.$store.state.settings.fixedHeader},set:function(t){this.$store.dispatch("settings/changeSetting",{key:"fixedHeader",value:t})}},tagsView:{get:function(){return this.$store.state.settings.tagsView},set:function(t){this.$store.dispatch("settings/changeSetting",{key:"tagsView",value:t})}},sidebarLogo:{get:function(){return this.$store.state.settings.sidebarLogo},set:function(t){this.$store.dispatch("settings/changeSetting",{key:"sidebarLogo",value:t})}}},methods:{themeChange:function(t){this.$store.dispatch("settings/changeSetting",{key:"theme",value:t})}}},Ot=St,Rt=(n("5bdf"),Object(g["a"])(Ot,vt,At,!1,null,"e1b97696",null)),_t=Rt.exports,Mt=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{key:t.sideBar1&&t.isCollapse,class:{"has-logo":t.showLogo}},[t.showLogo?n("logo",{attrs:{collapse:t.isCollapse,sideBar1:t.sideBar1}}):t._e(),t._v(" "),n("el-scrollbar",[t.sideBar1?[t.isCollapse?t._e():t._l(t.menuList,(function(e){return n("ul",{key:e.route,staticStyle:{padding:"0"}},[n("li",[n("div",{staticClass:"menu menu-one"},[n("div",{staticClass:"menu-item",class:{active:t.pathCompute(e)},on:{click:function(n){return t.goPath(e)}}},[n("i",{class:"menu-icon el-icon-"+e.icon}),n("span",[t._v(t._s(e.menu_name))])])])])])})),t._v(" "),t.subMenuList&&t.subMenuList.length>0&&!t.isCollapse?n("el-menu",{staticClass:"menuOpen",attrs:{"default-active":t.activeMenu,"background-color":"#ffffff","text-color":"#303133","unique-opened":!1,"active-text-color":"#303133",mode:"vertical"}},[n("div",{staticStyle:{height:"100%"}},[n("div",{staticClass:"sub-title"},[t._v(t._s(t.menu_name))]),t._v(" "),n("el-scrollbar",{attrs:{"wrap-class":"scrollbar-wrapper"}},t._l(t.subMenuList,(function(e,i){return n("div",{key:i},[!t.hasOneShowingChild(e.children,e)||t.onlyOneChild.children&&!t.onlyOneChild.noShowingChildren||e.alwaysShow?n("el-submenu",{ref:"subMenu",refInFor:!0,attrs:{index:t.resolvePath(e.route),"popper-append-to-body":""}},[n("template",{slot:"title"},[e?n("item",{attrs:{icon:e&&e.icon,title:e.menu_name}}):t._e()],1),t._v(" "),t._l(e.children,(function(e,i){return n("sidebar-item",{key:i,staticClass:"nest-menu",attrs:{"is-nest":!0,item:e,"base-path":t.resolvePath(e.route),isCollapse:t.isCollapse}})}))],2):[t.onlyOneChild?n("app-link",{attrs:{to:t.resolvePath(t.onlyOneChild.route)}},[n("el-menu-item",{attrs:{index:t.resolvePath(t.onlyOneChild.route)}},[n("item",{attrs:{icon:t.onlyOneChild.icon||e&&e.icon,title:t.onlyOneChild.menu_name}})],1)],1):t._e()]],2)})),0)],1)]):t._e(),t._v(" "),t.isCollapse?[n("el-menu",{staticClass:"menuStyle2",attrs:{"default-active":t.activeMenu,collapse:t.isCollapse,"background-color":t.variables.menuBg,"text-color":t.variables.menuText,"unique-opened":!0,"active-text-color":"#ffffff","collapse-transition":!1,mode:"vertical","popper-class":"styleTwo"}},[t._l(t.menuList,(function(t){return n("sidebar-item",{key:t.route,staticClass:"style2",attrs:{item:t,"base-path":t.route}})}))],2)]:t._e()]:n("el-menu",{staticClass:"subMenu1",attrs:{"default-active":t.activeMenu,collapse:t.isCollapse,"background-color":t.variables.menuBg,"text-color":t.variables.menuText,"unique-opened":!0,"active-text-color":t.variables.menuActiveText,"collapse-transition":!1,mode:"vertical"}},[t._l(t.menuList,(function(t){return n("sidebar-item",{key:t.route,attrs:{item:t,"base-path":t.route}})}))],2)],2)],1)},Dt=[],zt=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"sidebar-logo-container",class:{collapse:t.collapse}},[n("transition",{attrs:{name:"sidebarLogoFade"}},[t.collapse&&!t.sideBar1?n("router-link",{key:"collapse",staticClass:"sidebar-logo-link",attrs:{to:"/"}},[t.slogo?n("img",{staticClass:"sidebar-logo-small",attrs:{src:t.slogo}}):t._e()]):n("router-link",{key:"expand",staticClass:"sidebar-logo-link",attrs:{to:"/"}},[t.logo?n("img",{staticClass:"sidebar-logo-big",attrs:{src:t.logo}}):t._e()])],1)],1)},Vt=[],Bt=s.a.title,Ft={name:"SidebarLogo",props:{collapse:{type:Boolean,required:!0},sideBar1:{type:Boolean,required:!1}},data:function(){return{title:Bt,logo:JSON.parse(mt.a.get("MerInfo")).menu_logo,slogo:JSON.parse(mt.a.get("MerInfo")).menu_slogo}}},Lt=Ft,Nt=(n("4b27"),Object(g["a"])(Lt,zt,Vt,!1,null,"06bf082e",null)),Tt=Nt.exports,Qt=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("component",t._b({},"component",t.linkProps(t.to),!1),[t._t("default")],2)},Pt=[],Ht=n("61f7"),Ut={props:{to:{type:String,required:!0}},methods:{linkProps:function(t){return Object(Ht["b"])(t)?{is:"a",href:t,target:"_blank",rel:"noopener"}:{is:"router-link",to:t}}}},Gt=Ut,Wt=Object(g["a"])(Gt,Qt,Pt,!1,null,null,null),Zt=Wt.exports,Yt=function(){var t=this,e=t.$createElement,n=t._self._c||e;return t.item.hidden?t._e():n("div",{class:{menuTwo:t.isCollapse}},[[!t.hasOneShowingChild(t.item.children,t.item)||t.onlyOneChild.children&&!t.onlyOneChild.noShowingChildren||t.item.alwaysShow?n("el-submenu",{ref:"subMenu",class:{subMenu2:t.sideBar1},attrs:{"popper-class":t.sideBar1?"styleTwo":"",index:t.resolvePath(t.item.route),"popper-append-to-body":""}},[n("template",{slot:"title"},[t.item?n("item",{attrs:{icon:t.item&&t.item.icon,title:t.item.menu_name}}):t._e()],1),t._v(" "),t._l(t.item.children,(function(e,i){return n("sidebar-item",{key:i,staticClass:"nest-menu",attrs:{level:t.level+1,"is-nest":!0,item:e,"base-path":t.resolvePath(e.route)}})}))],2):[t.onlyOneChild?n("app-link",{attrs:{to:t.resolvePath(t.onlyOneChild.route)}},[n("el-menu-item",{class:{"submenu-title-noDropdown":!t.isNest},attrs:{index:t.resolvePath(t.onlyOneChild.route)}},[t.sideBar1&&(!t.item.children||t.item.children.length<=1)?[n("div",{staticClass:"el-submenu__title",class:{titles:0==t.level,hide:!t.sideBar1&&!t.isCollapse}},[n("i",{class:"menu-icon el-icon-"+t.item.icon}),n("span",[t._v(t._s(t.onlyOneChild.menu_name))])])]:n("item",{attrs:{icon:t.onlyOneChild.icon||t.item&&t.item.icon,title:t.onlyOneChild.menu_name}})],2)],1):t._e()]]],2)},Jt=[],qt={name:"MenuItem",functional:!0,props:{icon:{type:String,default:""},title:{type:String,default:""}},render:function(t,e){var n=e.props,i=n.icon,a=n.title,r=[];if(i){var o="el-icon-"+i;r.push(t("i",{class:o}))}return a&&r.push(t("span",{slot:"title"},[a])),r}},Xt=qt,Kt=Object(g["a"])(Xt,i,a,!1,null,null,null),$t=Kt.exports,te={computed:{device:function(){return this.$store.state.app.device}},mounted:function(){this.fixBugIniOS()},methods:{fixBugIniOS:function(){var t=this,e=this.$refs.subMenu;if(e){var n=e.handleMouseleave;e.handleMouseleave=function(e){"mobile"!==t.device&&n(e)}}}}},ee={name:"SidebarItem",components:{Item:$t,AppLink:Zt},mixins:[te],props:{item:{type:Object,required:!0},isNest:{type:Boolean,default:!1},basePath:{type:String,default:""},level:{type:Number,default:0},isCollapse:{type:Boolean,default:!0}},data:function(){return this.onlyOneChild=null,{sideBar1:"a"!=window.localStorage.getItem("sidebarStyle")}},computed:{activeMenu:function(){var t=this.$route,e=t.meta,n=t.path;return e.activeMenu?e.activeMenu:n}},methods:{hasOneShowingChild:function(){var t=this,e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],n=arguments.length>1?arguments[1]:void 0,i=e.filter((function(e){return!e.hidden&&(t.onlyOneChild=e,!0)}));return 1===i.length||0===i.length&&(this.onlyOneChild=Object(d["a"])(Object(d["a"])({},n),{},{path:"",noShowingChildren:!0}),!0)},resolvePath:function(t){return Object(Ht["b"])(t)?t:Object(Ht["b"])(this.basePath)?this.basePath:ct.a.resolve(this.basePath,t)}}},ne=ee,ie=(n("d0a6"),Object(g["a"])(ne,Yt,Jt,!1,null,"116a0188",null)),ae=ie.exports,re=n("cf1e2"),oe=n.n(re),ce={components:{SidebarItem:ae,Logo:Tt,AppLink:Zt,Item:$t},mixins:[te],data:function(){return this.onlyOneChild=null,{sideBar1:"a"!=window.localStorage.getItem("sidebarStyle"),menu_name:"",list:this.$store.state.user.menuList,subMenuList:[],activePath:"",isShow:!1}},computed:Object(d["a"])(Object(d["a"])(Object(d["a"])({},Object(C["b"])(["permission_routes","sidebar","menuList"])),Object(C["d"])({sidebar:function(t){return t.app.sidebar},sidebarRouters:function(t){return t.user.sidebarRouters},sidebarStyle:function(t){return t.user.sidebarStyle},routers:function(){var t=this.$store.state.user.menuList?this.$store.state.user.menuList:[];return t}})),{},{activeMenu:function(){var t=this.$route,e=t.meta,n=t.path;return e.activeMenu?e.activeMenu:n},showLogo:function(){return this.$store.state.settings.sidebarLogo},variables:function(){return oe.a},isCollapse:function(){return!this.sidebar.opened}}),watch:{sidebarStyle:function(t,e){this.sideBar1="a"!=t||"a"==e,this.setMenuWidth()},sidebar:{handler:function(t,e){this.sideBar1&&this.getSubMenu()},deep:!0},$route:{handler:function(t,e){this.sideBar1&&this.getSubMenu()},deep:!0}},mounted:function(){this.getMenus(),this.sideBar1?this.getSubMenu():this.setMenuWidth()},methods:Object(d["a"])({setMenuWidth:function(){this.sideBar1?this.subMenuList&&this.subMenuList.length>0&&!this.isCollapse?this.$store.commit("user/SET_SIDEBAR_WIDTH",270):this.$store.commit("user/SET_SIDEBAR_WIDTH",130):this.$store.commit("user/SET_SIDEBAR_WIDTH",180)},ishttp:function(t){return-1!==t.indexOf("http://")||-1!==t.indexOf("https://")},getMenus:function(){this.$store.dispatch("user/getMenus",{that:this})},hasOneShowingChild:function(){var t=this,e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],n=arguments.length>1?arguments[1]:void 0,i=e.filter((function(e){return!e.hidden&&(t.onlyOneChild=e,!0)}));return 1===i.length||0===i.length&&(this.onlyOneChild=Object(d["a"])(Object(d["a"])({},n),{},{path:"",noShowingChildren:!0}),!0)},resolvePath:function(t){return Object(Ht["b"])(t)||Object(Ht["b"])(this.basePath)?t:ct.a.resolve(t,t)},goPath:function(t){if(this.menu_name=t.menu_name,t.children){this.$store.commit("user/SET_SIDEBAR_WIDTH",270),this.subMenuList=t.children,window.localStorage.setItem("subMenuList",this.subMenuList);var e=this.resolvePath(this.getChild(t.children)[0].route);t.route=e,this.$router.push({path:e})}else{this.$store.commit("user/SET_SIDEBAR_WIDTH",130),this.subMenuList=[],window.localStorage.setItem("subMenuList",[]);var n=this.resolvePath(t.route);this.$router.push({path:n})}},getChild:function(t){var e=[];return t.forEach((function(t){var n=function t(n){var i=n.children;if(i)for(var a=0;a0&&(r=a[0],o=a[a.length-1]),r===t)i.scrollLeft=0;else if(o===t)i.scrollLeft=i.scrollWidth-n;else{var c=a.findIndex((function(e){return e===t})),s=a[c-1],u=a[c+1],l=u.$el.offsetLeft+u.$el.offsetWidth+pe,d=s.$el.offsetLeft-pe;l>i.scrollLeft+n?i.scrollLeft=l-n:d1&&void 0!==arguments[1]?arguments[1]:"/",i=[];return t.forEach((function(t){if(t.meta&&t.meta.affix){var a=ct.a.resolve(n,t.path);i.push({fullPath:a,path:a,name:t.name,meta:Object(d["a"])({},t.meta)})}if(t.children){var r=e.filterAffixTags(t.children,t.path);r.length>=1&&(i=[].concat(Object(nt["a"])(i),Object(nt["a"])(r)))}})),i},initTags:function(){var t,e=this.affixTags=this.filterAffixTags(this.routes),n=Object(it["a"])(e);try{for(n.s();!(t=n.n()).done;){var i=t.value;i.name&&this.$store.dispatch("tagsView/addVisitedView",i)}}catch(a){n.e(a)}finally{n.f()}},addTags:function(){var t=this.$route.name;return t&&this.$store.dispatch("tagsView/addView",this.$route),!1},moveToCurrentTag:function(){var t=this,e=this.$refs.tag;this.$nextTick((function(){var n,i=Object(it["a"])(e);try{for(i.s();!(n=i.n()).done;){var a=n.value;if(a.to.path===t.$route.path){t.$refs.scrollPane.moveToTarget(a),a.to.fullPath!==t.$route.fullPath&&t.$store.dispatch("tagsView/updateVisitedView",t.$route);break}}}catch(r){i.e(r)}finally{i.f()}}))},refreshSelectedTag:function(t){this.reload()},closeSelectedTag:function(t){var e=this;this.$store.dispatch("tagsView/delView",t).then((function(n){var i=n.visitedViews;e.isActive(t)&&e.toLastView(i,t)}))},closeOthersTags:function(){var t=this;this.$router.push(this.selectedTag),this.$store.dispatch("tagsView/delOthersViews",this.selectedTag).then((function(){t.moveToCurrentTag()}))},closeAllTags:function(t){var e=this;this.$store.dispatch("tagsView/delAllViews").then((function(n){var i=n.visitedViews;e.affixTags.some((function(e){return e.path===t.path}))||e.toLastView(i,t)}))},toLastView:function(t,e){var n=t.slice(-1)[0];n?this.$router.push(n.fullPath):"Dashboard"===e.name?this.$router.replace({path:"/redirect"+e.fullPath}):this.$router.push("/")},openMenu:function(t,e){var n=105,i=this.$el.getBoundingClientRect().left,a=this.$el.offsetWidth,r=a-n,o=e.clientX-i+15;this.left=o>r?r:o,this.top=e.clientY,this.visible=!0,this.selectedTag=t},closeMenu:function(){this.visible=!1}}},ye=we,ke=(n("0a4d"),n("b428"),Object(g["a"])(ye,de,he,!1,null,"3f349a64",null)),Ce=ke.exports,Ee=function(){var t=this,e=t.$createElement,n=t._self._c||e;return"0"!==t.openVersion?n("div",{staticClass:"ivu-global-footer i-copyright"},[-1==t.version.status?n("div",{staticClass:"ivu-global-footer-copyright"},[t._v(t._s("Copyright "+t.version.year+" ")),n("a",{attrs:{href:"http://"+t.version.url,target:"_blank"}},[t._v(t._s(t.version.version))])]):n("div",{staticClass:"ivu-global-footer-copyright"},[t._v(t._s(t.version.Copyright))])]):t._e()},je=[],Ie=n("2801"),xe={name:"i-copyright",data:function(){return{copyright:"Copyright © 2022 西安众邦网络科技有限公司",openVersion:"0",copyright_status:"0",version:{}}},mounted:function(){this.getVersion()},methods:{getVersion:function(){var t=this;Object(Ie["i"])().then((function(e){e.data.version;t.version=e.data,t.copyright=e.data.copyright,t.openVersion=e.data.sys_open_version})).catch((function(e){t.$message.error(e.message)}))}}},Se=xe,Oe=(n("8bcc"),Object(g["a"])(Se,Ee,je,!1,null,"036cf7b4",null)),Re=Oe.exports,_e=n("4360"),Me=document,De=Me.body,ze=992,Ve={watch:{$route:function(t){"mobile"===this.device&&this.sidebar.opened&&_e["a"].dispatch("app/closeSideBar",{withoutAnimation:!1})}},beforeMount:function(){window.addEventListener("resize",this.$_resizeHandler)},beforeDestroy:function(){window.removeEventListener("resize",this.$_resizeHandler)},mounted:function(){var t=this.$_isMobile();t&&(_e["a"].dispatch("app/toggleDevice","mobile"),_e["a"].dispatch("app/closeSideBar",{withoutAnimation:!0}))},methods:{$_isMobile:function(){var t=De.getBoundingClientRect();return t.width-1'});o.a.add(c);e["default"]=c},ab00:function(t,e,n){"use strict";n.r(e);var i=n("e017"),a=n.n(i),r=n("21a1"),o=n.n(r),c=new a.a({id:"icon-lock",use:"icon-lock-usage",viewBox:"0 0 128 128",content:''});o.a.add(c);e["default"]=c},ac94:function(t,e,n){"use strict";n("14b7")},ad1c:function(t,e,n){"use strict";n.r(e);var i=n("e017"),a=n.n(i),r=n("21a1"),o=n.n(r),c=new a.a({id:"icon-education",use:"icon-education-usage",viewBox:"0 0 128 128",content:''});o.a.add(c);e["default"]=c},af8c:function(t,e){t.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFEAAABRCAYAAACqj0o2AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA25pVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTQ1IDc5LjE2MzQ5OSwgMjAxOC8wOC8xMy0xNjo0MDoyMiAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDo2OWRlYjViMi04ZTEzLWNmNDgtODFlNi0yNzk5OTk1OWFjZjgiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6RjlCNUJCRDY0MzlFMTFFOUJCNDM5ODBGRTdCNDNGN0EiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6RjlCNUJCRDU0MzlFMTFFOUJCNDM5ODBGRTdCNDNGN0EiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTkgKFdpbmRvd3MpIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6MkQxNzQyQjZFRjA2MTFFODhBREFDNDFBMUJFNDQxREIiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6MkQxNzQyQjdFRjA2MTFFODhBREFDNDFBMUJFNDQxREIiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz52uNTZAAADk0lEQVR42uycXYhNURTH92VMKcTLNPNiFA9SJMSLSFOKUkI8KB4UeTDxoDxQXkwZHylPPCBP8tmlBoOhMUgmk4YH46NMEyWEUfNhxvVf3S3jzrn3nuOcvc/a56x//Ztm3z139vxmr73X/jg3k8vllCicxggCgSgQBaJIIApEgSgQRQLRjCr8Vvy4YEYNvizyWX0QbkoCoKr219FB1ACvBKhfC3dLOIfTChkTBSILiHVwpUws/6oT3lXi9dXw0hHfT4CXwLcF4l+9gY+VeL2nACJpZRogRhnOzfBQGsfFKCF+hx8UlM2EpwnEYLqexlk64/eMBSsWP9XmwM88Vi99jnEZgC/B9VixDEU5sfidwT/ANSPKKh1NdbbDXWUmUyPhTN36VoIidV5cyfbNBEHsigtis+6RSdC1uCB+gjsSAPCdxyRpde18IwEQs3FvQCRhXLwaN8RH8A+HAX6DW+OG+BNucRhik/4bYoXoekhng1QWiKM1FHRiNAmR9h/fOgjxnh4TWUB0tTdmg/6AQAyR2tiC2KJG73ZzFq1QurlB7NU5Y2JD2QZE10KaLURX1tF0WtnBFSI17LMjE0qOK8RfKr/HmLhZ2SZEF8bFXp1ks4bI/dyFxu0B7hDfq/xJYKJmZdsQOYf0sPK+dCAQA+g+/MUViG16AOem82HfwCbE/jBphMF/7Jmwb1JhscGz4PUe5Q3whRgA0j/1pYrgjNwWxAx8Ah5XUP4c3q8CnGdwlK1w3gIvLiijHrDNdYC2IFbBjR7lJ+GHKgGyEc5H4SkFZXRf8Rw8l1m+2MkR4ip4o0f5ePgusw5Fh1OTOYbzcZUCmYZYLRDD61QaIJoeE3fA7Sp/IZ67+rhCHE5Db5Qn7wWiQBSI/6Gx8CaV3w57Al+G1+nNCVuaBO+B78CP4dPwwrBvGvVjacVEKxR6nKHO4zWCuUGZv7MzXcOr9XhtN3zYc+Hv44M0bPXExiIASWvgvRYi7mIRgKRDJdrHAuJEeGuZOvWG061lqvxmx07OEGlHu9wDkrTLM9VgG+ZHVCc2iH43XQcNtqHf5O+3AZH26L6WqUMXK3sMtqHNR51W7j3xQJk6+wy34akqfcuBeupB7nniEZ1C5DzW1gTwrIU2bFbed4IoStbCL7jniX80W6c01Tp86eD8leUFxnKdzlDiTaeNdExR9P6knzwxI5+zLWtngSgQRQJRIApEgSgSiGb0W4ABAPZht+rjWKYmAAAAAElFTkSuQmCC"},b20f:function(t,e,n){t.exports={menuText:"#bfcbd9",menuActiveText:"#6394F9",subMenuActiveText:"#f4f4f5",menuBg:"#0B1529",menuHover:"#182848",subMenuBg:"#030C17",subMenuHover:"#182848",sideBarWidth:"180px"}},b3b5:function(t,e,n){"use strict";n.r(e);var i=n("e017"),a=n.n(i),r=n("21a1"),o=n.n(r),c=new a.a({id:"icon-user",use:"icon-user-usage",viewBox:"0 0 130 130",content:''});o.a.add(c);e["default"]=c},b428:function(t,e,n){"use strict";n("ea55")},b55e:function(t,e,n){},b5b8:function(t,e,n){"use strict";n.r(e);var i=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",[n("el-row",[n("el-col",t._b({},"el-col",t.grid,!1),[n("div",{staticClass:"Nav"},[n("div",{staticClass:"input"},[n("el-input",{staticStyle:{width:"100%"},attrs:{placeholder:"选择分类","prefix-icon":"el-icon-search",clearable:""},model:{value:t.filterText,callback:function(e){t.filterText=e},expression:"filterText"}})],1),t._v(" "),n("div",{staticClass:"trees-coadd"},[n("div",{staticClass:"scollhide"},[n("div",{staticClass:"trees"},[n("el-tree",{ref:"tree",attrs:{data:t.treeData2,"filter-node-method":t.filterNode,props:t.defaultProps},scopedSlots:t._u([{key:"default",fn:function(e){var i=e.node,a=e.data;return n("div",{staticClass:"custom-tree-node",on:{click:function(e){return e.stopPropagation(),t.handleNodeClick(a)}}},[n("div",[n("span",[t._v(t._s(i.label))]),t._v(" "),a.space_property_name?n("span",{staticStyle:{"font-size":"11px",color:"#3889b1"}},[t._v("("+t._s(a.attachment_category_name)+")")]):t._e()]),t._v(" "),n("span",{staticClass:"el-ic"},[n("i",{staticClass:"el-icon-circle-plus-outline",on:{click:function(e){return e.stopPropagation(),t.onAdd(a.attachment_category_id)}}}),t._v(" "),"0"==a.space_id||a.children&&"undefined"!=a.children||!a.attachment_category_id?t._e():n("i",{staticClass:"el-icon-edit",attrs:{title:"修改"},on:{click:function(e){return e.stopPropagation(),t.onEdit(a.attachment_category_id)}}}),t._v(" "),"0"==a.space_id||a.children&&"undefined"!=a.children||!a.attachment_category_id?t._e():n("i",{staticClass:"el-icon-delete",attrs:{title:"删除分类"},on:{click:function(e){return e.stopPropagation(),function(){return t.handleDelete(a.attachment_category_id)}()}}})])])}}])})],1)])])])]),t._v(" "),n("el-col",t._b({staticClass:"colLeft"},"el-col",t.grid2,!1),[n("div",{directives:[{name:"loading",rawName:"v-loading",value:t.loading,expression:"loading"}],staticClass:"conter"},[n("div",{staticClass:"bnt"},["/merchant/config/picture"!==t.params?n("el-button",{staticClass:"mb10 mr10",attrs:{size:"small",type:"primary"},on:{click:t.checkPics}},[t._v("使用选中图片")]):t._e(),t._v(" "),n("el-upload",{staticClass:"upload-demo mr10 mb15",attrs:{action:t.fileUrl,"on-success":t.handleSuccess,headers:t.myHeaders,"show-file-list":!1,multiple:""}},[n("el-button",{attrs:{size:"small",type:"primary"}},[t._v("点击上传")])],1),t._v(" "),n("el-button",{attrs:{type:"success",size:"small"},on:{click:function(e){return e.stopPropagation(),t.onAdd(0)}}},[t._v("添加分类")]),t._v(" "),n("el-button",{staticClass:"mr10",attrs:{type:"error",size:"small",disabled:0===t.checkPicList.length},on:{click:function(e){return e.stopPropagation(),t.editPicList("图片")}}},[t._v("删除图片")]),t._v(" "),n("el-input",{staticStyle:{width:"230px"},attrs:{placeholder:"请输入图片名称搜索",size:"small"},nativeOn:{keyup:function(e){return!e.type.indexOf("key")&&t._k(e.keyCode,"enter",13,e.key,"Enter")?null:t.getFileList(1)}},model:{value:t.tableData.attachment_name,callback:function(e){t.$set(t.tableData,"attachment_name",e)},expression:"tableData.attachment_name"}},[n("el-button",{staticClass:"el-button-solt",attrs:{slot:"append",icon:"el-icon-search"},on:{click:function(e){return t.getFileList(1)}},slot:"append"})],1),t._v(" "),n("el-select",{staticClass:"mb15",attrs:{placeholder:"图片移动至",size:"small"},model:{value:t.sleOptions.attachment_category_name,callback:function(e){t.$set(t.sleOptions,"attachment_category_name",e)},expression:"sleOptions.attachment_category_name"}},[n("el-option",{staticStyle:{"max-width":"560px",height:"200px",overflow:"auto","background-color":"#fff"},attrs:{label:t.sleOptions.attachment_category_name,value:t.sleOptions.attachment_category_id}},[n("el-tree",{ref:"tree2",attrs:{data:t.treeData2,"filter-node-method":t.filterNode,props:t.defaultProps},on:{"node-click":t.handleSelClick}})],1)],1)],1),t._v(" "),n("div",{staticClass:"pictrueList acea-row mb15"},[n("div",{directives:[{name:"show",rawName:"v-show",value:t.isShowPic,expression:"isShowPic"}],staticClass:"imagesNo"},[n("i",{staticClass:"el-icon-picture",staticStyle:{"font-size":"60px",color:"rgb(219, 219, 219)"}}),t._v(" "),n("span",{staticClass:"imagesNo_sp"},[t._v("图片库为空")])]),t._v(" "),n("div",{staticClass:"conters"},t._l(t.pictrueList.list,(function(e,i){return n("div",{key:i,staticClass:"gridPic"},[e.num>0?n("p",{staticClass:"number"},[n("el-badge",{staticClass:"item",attrs:{value:e.num}},[n("a",{staticClass:"demo-badge",attrs:{href:"#"}})])],1):t._e(),t._v(" "),n("img",{directives:[{name:"lazy",rawName:"v-lazy",value:e.attachment_src,expression:"item.attachment_src"}],class:e.isSelect?"on":"",on:{click:function(n){return t.changImage(e,i,t.pictrueList.list)}}}),t._v(" "),n("div",{staticStyle:{display:"flex","align-items":"center","justify-content":"space-between"}},[t.editId===e.attachment_id?n("el-input",{model:{value:e.attachment_name,callback:function(n){t.$set(e,"attachment_name",n)},expression:"item.attachment_name"}}):n("p",{staticClass:"name",staticStyle:{width:"80%"}},[t._v(t._s(e.attachment_name))]),t._v(" "),n("i",{staticClass:"el-icon-edit",on:{click:function(n){return t.handleEdit(e.attachment_id,e.attachment_name)}}})],1)])})),0)]),t._v(" "),n("div",{staticClass:"block"},[n("el-pagination",{attrs:{"page-sizes":[12,20,40,60],"page-size":t.tableData.limit,"current-page":t.tableData.page,layout:"total, sizes, prev, pager, next, jumper",total:t.pictrueList.total},on:{"size-change":t.handleSizeChange,"current-change":t.pageChange}})],1)])])],1)],1)},a=[],r=(n("4f7f"),n("5df3"),n("1c4c"),n("ac6a"),n("c7eb")),o=(n("96cf"),n("1da1")),c=(n("c5f6"),n("2909")),s=n("8593"),u=n("5f87"),l=n("bbcc"),d={name:"Upload",props:{isMore:{type:String,default:"1"},setModel:{type:String}},data:function(){return{loading:!1,params:"",sleOptions:{attachment_category_name:"",attachment_category_id:""},list:[],grid:{xl:8,lg:8,md:8,sm:8,xs:24},grid2:{xl:16,lg:16,md:16,sm:16,xs:24},filterText:"",treeData:[],treeData2:[],defaultProps:{children:"children",label:"attachment_category_name"},classifyId:0,myHeaders:{"X-Token":Object(u["a"])()},tableData:{page:1,limit:12,attachment_category_id:0,order:"",attachment_name:""},pictrueList:{list:[],total:0},isShowPic:!1,checkPicList:[],ids:[],checkedMore:[],checkedAll:[],selectItem:[],editId:"",editName:""}},computed:{fileUrl:function(){return l["a"].https+"/upload/image/".concat(this.tableData.attachment_category_id,"/file")}},watch:{filterText:function(t){this.$refs.tree.filter(t)}},mounted:function(){this.params=this.$route&&this.$route.path?this.$route.path:"",this.$route&&"dialog"===this.$route.query.field&&n.e("chunk-2d0da983").then(n.bind(null,"6bef")),this.getList(),this.getFileList("")},methods:{filterNode:function(t,e){return!t||-1!==e.attachment_category_name.indexOf(t)},getList:function(){var t=this,e={attachment_category_name:"全部图片",attachment_category_id:0};Object(s["q"])().then((function(n){t.treeData=n.data,t.treeData.unshift(e),t.treeData2=Object(c["a"])(t.treeData)})).catch((function(e){t.$message.error(e.message)}))},handleEdit:function(t,e){var n=this;if(t===this.editId)if(this.editName!==e){if(!e.trim())return void this.$message.warning("请先输入图片名称");Object(s["x"])(t,{attachment_name:e}).then((function(){return n.getFileList("")})),this.editId=""}else this.editId="",this.editName="";else this.editId=t,this.editName=e},onAdd:function(t){var e=this,n={};Number(t)>0&&(n.formData={pid:t}),this.$modalForm(Object(s["g"])(),n).then((function(t){t.message;e.getList()}))},onEdit:function(t){var e=this;this.$modalForm(Object(s["j"])(t)).then((function(){return e.getList()}))},handleDelete:function(t){var e=this;this.$modalSure().then((function(){Object(s["h"])(t).then((function(t){var n=t.message;e.$message.success(n),e.getList()})).catch((function(t){var n=t.message;e.$message.error(n)}))}))},handleNodeClick:function(t){this.tableData.attachment_category_id=t.attachment_category_id,this.selectItem=[],this.checkPicList=[],this.getFileList("")},handleSuccess:function(t){200===t.status?(this.$message.success("上传成功"),this.getFileList("")):this.$message.error(t.message)},getFileList:function(t){var e=this;this.loading=!0,this.tableData.page=t||this.tableData.page,Object(s["i"])(this.tableData).then(function(){var t=Object(o["a"])(Object(r["a"])().mark((function t(n){return Object(r["a"])().wrap((function(t){while(1)switch(t.prev=t.next){case 0:e.pictrueList.list=n.data.list,console.log(e.pictrueList.list),e.pictrueList.list.length?e.isShowPic=!1:e.isShowPic=!0,e.$route&&e.$route.query.field&&"dialog"!==e.$route.query.field&&(e.checkedMore=window.form_create_helper.get(e.$route.query.field)||[]),e.pictrueList.total=n.data.count,e.loading=!1;case 6:case"end":return t.stop()}}),t)})));return function(e){return t.apply(this,arguments)}}()).catch((function(t){e.$message.error(t.message),e.loading=!1}))},pageChange:function(t){this.tableData.page=t,this.selectItem=[],this.checkPicList=[],this.getFileList("")},handleSizeChange:function(t){this.tableData.limit=t,this.getFileList("")},changImage:function(t,e,n){var i=this;if(t.isSelect){t.isSelect=!1;e=this.ids.indexOf(t.attachment_id);e>-1&&this.ids.splice(e,1),this.selectItem.forEach((function(e,n){e.attachment_id==t.attachment_id&&i.selectItem.splice(n,1)})),this.checkPicList.map((function(e,n){e==t.attachment_src&&i.checkPicList.splice(n,1)}))}else t.isSelect=!0,this.selectItem.push(t),this.checkPicList.push(t.attachment_src),this.ids.push(t.attachment_id);this.$route&&"/merchant/config/picture"===this.$route.fullPath&&"dialog"!==this.$route.query.field||this.pictrueList.list.map((function(t,e){t.isSelect?i.selectItem.filter((function(e,n){t.attachment_id==e.attachment_id&&(t.num=n+1)})):t.num=0})),console.log(this.pictrueList.list)},checkPics:function(){if(this.checkPicList.length)if(console.log(this.$route),this.$route){if("1"===this.$route.query.type){if(this.checkPicList.length>1)return this.$message.warning("最多只能选一张图片");form_create_helper.set(this.$route.query.field,this.checkPicList[0]),form_create_helper.close(this.$route.query.field)}if("2"===this.$route.query.type&&(this.checkedAll=[].concat(Object(c["a"])(this.checkedMore),Object(c["a"])(this.checkPicList)),form_create_helper.set(this.$route.query.field,Array.from(new Set(this.checkedAll))),form_create_helper.close(this.$route.query.field)),"dialog"===this.$route.query.field){for(var t="",e=0;e';nowEditor.editor.execCommand("insertHtml",t),nowEditor.dialog.close(!0)}}else{if(console.log(this.isMore,this.checkPicList.length),"1"===this.isMore&&this.checkPicList.length>1)return this.$message.warning("最多只能选一张图片");console.log(this.checkPicList),this.$emit("getImage",this.checkPicList)}else this.$message.warning("请先选择图片")},editPicList:function(t){var e=this,n={ids:this.ids};this.$modalSure().then((function(){Object(s["w"])(n).then((function(t){t.message;e.$message.success("删除成功"),e.getFileList(""),e.checkPicList=[]})).catch((function(t){var n=t.message;e.$message.error(n)}))}))},handleSelClick:function(t){this.ids.length?(this.sleOptions={attachment_category_name:t.attachment_category_name,attachment_category_id:t.attachment_category_id},this.getMove()):this.$message.warning("请先选择图片")},getMove:function(){var t=this;Object(s["k"])(this.ids,this.sleOptions.attachment_category_id).then(function(){var e=Object(o["a"])(Object(r["a"])().mark((function e(n){return Object(r["a"])().wrap((function(e){while(1)switch(e.prev=e.next){case 0:t.$message.success(n.message),t.clearBoth(),t.getFileList("");case 3:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}()).catch((function(e){t.clearBoth(),t.$message.error(e.message)}))},clearBoth:function(){this.sleOptions={attachment_category_name:"",attachment_category_id:""},this.checkPicList=[],this.ids=[]}}},h=d,m=(n("c50c"),n("2877")),f=Object(m["a"])(h,i,a,!1,null,"47dc4ee2",null);e["default"]=f.exports},b7be:function(t,e,n){"use strict";n.d(e,"I",(function(){return a})),n.d(e,"B",(function(){return r})),n.d(e,"D",(function(){return o})),n.d(e,"C",(function(){return c})),n.d(e,"y",(function(){return s})),n.d(e,"U",(function(){return u})),n.d(e,"F",(function(){return l})),n.d(e,"A",(function(){return d})),n.d(e,"z",(function(){return h})),n.d(e,"G",(function(){return m})),n.d(e,"H",(function(){return f})),n.d(e,"J",(function(){return p})),n.d(e,"g",(function(){return g})),n.d(e,"d",(function(){return b})),n.d(e,"l",(function(){return v})),n.d(e,"K",(function(){return A})),n.d(e,"lb",(function(){return w})),n.d(e,"j",(function(){return y})),n.d(e,"i",(function(){return k})),n.d(e,"m",(function(){return C})),n.d(e,"f",(function(){return E})),n.d(e,"k",(function(){return j})),n.d(e,"n",(function(){return I})),n.d(e,"ib",(function(){return x})),n.d(e,"h",(function(){return S})),n.d(e,"c",(function(){return O})),n.d(e,"b",(function(){return R})),n.d(e,"V",(function(){return _})),n.d(e,"jb",(function(){return M})),n.d(e,"W",(function(){return D})),n.d(e,"fb",(function(){return z})),n.d(e,"kb",(function(){return V})),n.d(e,"e",(function(){return B})),n.d(e,"gb",(function(){return F})),n.d(e,"cb",(function(){return L})),n.d(e,"eb",(function(){return N})),n.d(e,"db",(function(){return T})),n.d(e,"bb",(function(){return Q})),n.d(e,"hb",(function(){return P})),n.d(e,"q",(function(){return H})),n.d(e,"p",(function(){return U})),n.d(e,"w",(function(){return G})),n.d(e,"u",(function(){return W})),n.d(e,"t",(function(){return Z})),n.d(e,"s",(function(){return Y})),n.d(e,"x",(function(){return J})),n.d(e,"o",(function(){return q})),n.d(e,"r",(function(){return X})),n.d(e,"Z",(function(){return K})),n.d(e,"v",(function(){return $})),n.d(e,"ab",(function(){return tt})),n.d(e,"X",(function(){return et})),n.d(e,"a",(function(){return nt})),n.d(e,"E",(function(){return it})),n.d(e,"R",(function(){return at})),n.d(e,"T",(function(){return rt})),n.d(e,"S",(function(){return ot})),n.d(e,"Y",(function(){return ct})),n.d(e,"P",(function(){return st})),n.d(e,"O",(function(){return ut})),n.d(e,"L",(function(){return lt})),n.d(e,"N",(function(){return dt})),n.d(e,"M",(function(){return ht})),n.d(e,"Q",(function(){return mt}));var i=n("0c6d");function a(t){return i["a"].get("store/coupon/update/".concat(t,"/form"))}function r(t){return i["a"].get("store/coupon/lst",t)}function o(t,e){return i["a"].post("store/coupon/status/".concat(t),{status:e})}function c(){return i["a"].get("store/coupon/create/form")}function s(t){return i["a"].get("store/coupon/clone/form/".concat(t))}function u(t){return i["a"].get("store/coupon/issue",t)}function l(t){return i["a"].get("store/coupon/select",t)}function d(t){return i["a"].get("store/coupon/detail/".concat(t))}function h(t){return i["a"].delete("store/coupon/delete/".concat(t))}function m(t){return i["a"].post("store/coupon/send",t)}function f(t){return i["a"].get("store/coupon_send/lst",t)}function p(){return i["a"].get("broadcast/room/create/form")}function g(t){return i["a"].get("broadcast/room/lst",t)}function b(t){return i["a"].get("broadcast/room/detail/".concat(t))}function v(t,e){return i["a"].post("broadcast/room/mark/".concat(t),{mark:e})}function A(){return i["a"].get("broadcast/goods/create/form")}function w(t){return i["a"].get("broadcast/goods/update/form/".concat(t))}function y(t){return i["a"].get("broadcast/goods/lst",t)}function k(t){return i["a"].get("broadcast/goods/detail/".concat(t))}function C(t,e){return i["a"].post("broadcast/goods/status/".concat(t),e)}function E(t){return i["a"].post("broadcast/room/export_goods",t)}function j(t,e){return i["a"].post("broadcast/goods/mark/".concat(t),{mark:e})}function I(t,e){return i["a"].post("broadcast/room/status/".concat(t),e)}function x(t,e){return i["a"].get("broadcast/room/goods/".concat(t),e)}function S(t){return i["a"].delete("broadcast/goods/delete/".concat(t))}function O(t){return i["a"].delete("broadcast/room/delete/".concat(t))}function R(t){return i["a"].post("broadcast/goods/batch_create",t)}function _(t,e){return i["a"].post("broadcast/room/feedsPublic/".concat(t),{status:e})}function M(t,e){return i["a"].post("broadcast/room/on_sale/".concat(t),e)}function D(t,e){return i["a"].post("broadcast/room/comment/".concat(t),{status:e})}function z(t,e){return i["a"].post("broadcast/room/closeKf/".concat(t),{status:e})}function V(t){return i["a"].get("broadcast/room/push_message/".concat(t))}function B(t){return i["a"].post("broadcast/room/rm_goods",t)}function F(t){return i["a"].get("broadcast/room/update/form/".concat(t))}function L(){return i["a"].get("broadcast/assistant/create/form")}function N(t){return i["a"].get("broadcast/assistant/update/".concat(t,"/form"))}function T(t){return i["a"].delete("broadcast/assistant/delete/".concat(t))}function Q(t){return i["a"].get("broadcast/assistant/lst",t)}function P(t){return i["a"].get("broadcast/room/addassistant/form/".concat(t))}function H(){return i["a"].get("config/others/group_buying")}function U(t){return i["a"].post("store/product/group/create",t)}function G(t,e){return i["a"].post("store/product/group/update/".concat(t),e)}function W(t){return i["a"].get("store/product/group/lst",t)}function Z(t){return i["a"].get("store/product/group/detail/".concat(t))}function Y(t){return i["a"].delete("store/product/group/delete/".concat(t))}function J(t,e){return i["a"].post("store/product/group/status/".concat(t),{status:e})}function q(t){return i["a"].get("store/product/group/buying/lst",t)}function X(t,e){return i["a"].get("store/product/group/buying/detail/".concat(t),e)}function K(t,e){return i["a"].get("store/seckill_product/detail/".concat(t),e)}function $(t,e){return i["a"].post("/store/product/group/sort/".concat(t),e)}function tt(t,e){return i["a"].post("/store/seckill_product/sort/".concat(t),e)}function et(t,e){return i["a"].post("/store/product/presell/sort/".concat(t),e)}function nt(t,e){return i["a"].post("/store/product/assist/sort/".concat(t),e)}function it(t,e){return i["a"].get("/store/coupon/product/".concat(t),e)}function at(t){return i["a"].get("config/".concat(t))}function rt(){return i["a"].get("integral/title")}function ot(t){return i["a"].get("integral/lst",t)}function ct(t){return i["a"].get("store/product/attr_value/".concat(t))}function st(t){return i["a"].post("discounts/create",t)}function ut(t){return i["a"].get("discounts/lst",t)}function lt(t,e){return i["a"].post("discounts/status/".concat(t),{status:e})}function dt(t){return i["a"].get("discounts/detail/".concat(t))}function ht(t){return i["a"].delete("discounts/delete/".concat(t))}function mt(t,e){return i["a"].post("discounts/update/".concat(t),e)}},bbcc:function(t,e,n){"use strict";var i=n("a78e"),a=n.n(i),r="".concat(location.origin),o=("https:"===location.protocol?"wss":"ws")+":"+location.hostname,c=a.a.get("MerInfo")?JSON.parse(a.a.get("MerInfo")).login_title:"",s={httpUrl:r,https:r+"/mer",wsSocketUrl:o,title:c||"加载中..."};e["a"]=s},bc35:function(t,e,n){"use strict";n.r(e);var i=n("e017"),a=n.n(i),r=n("21a1"),o=n.n(r),c=new a.a({id:"icon-clipboard",use:"icon-clipboard-usage",viewBox:"0 0 128 128",content:''});o.a.add(c);e["default"]=c},bd3e:function(t,e,n){},c043:function(t,e,n){"use strict";n("c068")},c068:function(t,e,n){},c24f:function(t,e,n){"use strict";n.d(e,"f",(function(){return a})),n.d(e,"q",(function(){return r})),n.d(e,"r",(function(){return o})),n.d(e,"s",(function(){return c})),n.d(e,"v",(function(){return s})),n.d(e,"h",(function(){return u})),n.d(e,"k",(function(){return l})),n.d(e,"j",(function(){return d})),n.d(e,"i",(function(){return h})),n.d(e,"p",(function(){return m})),n.d(e,"o",(function(){return f})),n.d(e,"n",(function(){return p})),n.d(e,"m",(function(){return g})),n.d(e,"a",(function(){return b})),n.d(e,"c",(function(){return v})),n.d(e,"e",(function(){return A})),n.d(e,"b",(function(){return w})),n.d(e,"d",(function(){return y})),n.d(e,"x",(function(){return k})),n.d(e,"y",(function(){return C})),n.d(e,"w",(function(){return E})),n.d(e,"g",(function(){return j})),n.d(e,"u",(function(){return I})),n.d(e,"z",(function(){return x})),n.d(e,"l",(function(){return S})),n.d(e,"t",(function(){return O}));var i=n("0c6d");function a(){return i["a"].get("captcha")}function r(t){return i["a"].post("login",t)}function o(){return i["a"].get("login_config")}function c(){return i["a"].get("logout")}function s(){return i["a"].get("system/admin/edit/password/form")}function u(){return i["a"].get("system/admin/edit/form")}function l(){return i["a"].get("menus")}function d(t){return Object(i["a"])({url:"/vue-element-admin/user/info",method:"get",params:{token:t}})}function h(){return i["a"].get("info")}function m(t){return i["a"].get("user/label/lst",t)}function f(){return i["a"].get("user/label/form")}function p(t){return i["a"].get("user/label/form/"+t)}function g(t){return i["a"].delete("user/label/".concat(t))}function b(t){return i["a"].post("auto_label/create",t)}function v(t){return i["a"].get("auto_label/lst",t)}function A(t,e){return i["a"].post("auto_label/update/"+t,e)}function w(t){return i["a"].delete("auto_label/delete/".concat(t))}function y(t){return i["a"].post("auto_label/sync/"+t)}function k(t){return i["a"].get("user/lst",t)}function C(t,e){return i["a"].get("user/order/".concat(t),e)}function E(t,e){return i["a"].get("user/coupon/".concat(t),e)}function j(t){return i["a"].get("user/change_label/form/"+t)}function I(t){return i["a"].post("/info/update",t)}function x(t){return i["a"].get("user/search_log",t)}function S(){return i["a"].get("../api/version")}function O(t){return i["a"].get("user/svip/order_lst",t)}},c4c8:function(t,e,n){"use strict";n.d(e,"Jb",(function(){return a})),n.d(e,"Hb",(function(){return r})),n.d(e,"Lb",(function(){return o})),n.d(e,"Ib",(function(){return c})),n.d(e,"Kb",(function(){return s})),n.d(e,"Mb",(function(){return u})),n.d(e,"j",(function(){return l})),n.d(e,"l",(function(){return d})),n.d(e,"k",(function(){return h})),n.d(e,"Nb",(function(){return m})),n.d(e,"eb",(function(){return f})),n.d(e,"bb",(function(){return p})),n.d(e,"Cb",(function(){return g})),n.d(e,"ab",(function(){return b})),n.d(e,"fb",(function(){return v})),n.d(e,"X",(function(){return A})),n.d(e,"sb",(function(){return w})),n.d(e,"qb",(function(){return y})),n.d(e,"lb",(function(){return k})),n.d(e,"cb",(function(){return C})),n.d(e,"tb",(function(){return E})),n.d(e,"r",(function(){return j})),n.d(e,"q",(function(){return I})),n.d(e,"p",(function(){return x})),n.d(e,"wb",(function(){return S})),n.d(e,"M",(function(){return O})),n.d(e,"Fb",(function(){return R})),n.d(e,"Gb",(function(){return _})),n.d(e,"Eb",(function(){return M})),n.d(e,"w",(function(){return D})),n.d(e,"W",(function(){return z})),n.d(e,"nb",(function(){return V})),n.d(e,"ob",(function(){return B})),n.d(e,"t",(function(){return F})),n.d(e,"Bb",(function(){return L})),n.d(e,"mb",(function(){return N})),n.d(e,"Db",(function(){return T})),n.d(e,"s",(function(){return Q})),n.d(e,"ub",(function(){return P})),n.d(e,"rb",(function(){return H})),n.d(e,"vb",(function(){return U})),n.d(e,"Y",(function(){return G})),n.d(e,"Z",(function(){return W})),n.d(e,"N",(function(){return Z})),n.d(e,"Q",(function(){return Y})),n.d(e,"P",(function(){return J})),n.d(e,"O",(function(){return q})),n.d(e,"T",(function(){return X})),n.d(e,"R",(function(){return K})),n.d(e,"S",(function(){return $})),n.d(e,"x",(function(){return tt})),n.d(e,"a",(function(){return et})),n.d(e,"i",(function(){return nt})),n.d(e,"g",(function(){return it})),n.d(e,"f",(function(){return at})),n.d(e,"e",(function(){return rt})),n.d(e,"b",(function(){return ot})),n.d(e,"d",(function(){return ct})),n.d(e,"h",(function(){return st})),n.d(e,"c",(function(){return ut})),n.d(e,"db",(function(){return lt})),n.d(e,"gb",(function(){return dt})),n.d(e,"pb",(function(){return ht})),n.d(e,"y",(function(){return mt})),n.d(e,"C",(function(){return ft})),n.d(e,"E",(function(){return pt})),n.d(e,"G",(function(){return gt})),n.d(e,"A",(function(){return bt})),n.d(e,"z",(function(){return vt})),n.d(e,"D",(function(){return At})),n.d(e,"F",(function(){return wt})),n.d(e,"B",(function(){return yt})),n.d(e,"Tb",(function(){return kt})),n.d(e,"H",(function(){return Ct})),n.d(e,"L",(function(){return Et})),n.d(e,"J",(function(){return jt})),n.d(e,"I",(function(){return It})),n.d(e,"K",(function(){return xt})),n.d(e,"v",(function(){return St})),n.d(e,"Rb",(function(){return Ot})),n.d(e,"Sb",(function(){return Rt})),n.d(e,"Qb",(function(){return _t})),n.d(e,"Ob",(function(){return Mt})),n.d(e,"Pb",(function(){return Dt})),n.d(e,"u",(function(){return zt})),n.d(e,"n",(function(){return Vt})),n.d(e,"m",(function(){return Bt})),n.d(e,"o",(function(){return Ft})),n.d(e,"hb",(function(){return Lt})),n.d(e,"Ab",(function(){return Nt})),n.d(e,"jb",(function(){return Tt})),n.d(e,"kb",(function(){return Qt})),n.d(e,"yb",(function(){return Pt})),n.d(e,"xb",(function(){return Ht})),n.d(e,"zb",(function(){return Ut})),n.d(e,"ib",(function(){return Gt})),n.d(e,"U",(function(){return Wt})),n.d(e,"V",(function(){return Zt}));var i=n("0c6d");function a(){return i["a"].get("store/category/lst")}function r(){return i["a"].get("store/category/create/form")}function o(t){return i["a"].get("store/category/update/form/".concat(t))}function c(t){return i["a"].delete("store/category/delete/".concat(t))}function s(t,e){return i["a"].post("store/category/status/".concat(t),{status:e})}function u(t){return i["a"].get("store/attr/template/lst",t)}function l(t){return i["a"].post("store/attr/template/create",t)}function d(t,e){return i["a"].post("store/attr/template/".concat(t),e)}function h(t){return i["a"].delete("store/attr/template/".concat(t))}function m(){return i["a"].get("/store/attr/template/list")}function f(t){return i["a"].get("store/product/lst",t)}function p(t){return i["a"].delete("store/product/delete/".concat(t))}function g(t){return i["a"].delete("store/seckill_product/delete/".concat(t))}function b(t){return i["a"].post("store/product/create",t)}function v(t){return i["a"].post("store/product/preview",t)}function A(t){return i["a"].post("store/productcopy/save",t)}function w(t){return i["a"].post("store/seckill_product/create",t)}function y(t){return i["a"].post("store/seckill_product/preview",t)}function k(t,e){return i["a"].post("store/product/update/".concat(t),e)}function C(t){return i["a"].get("store/product/detail/".concat(t))}function E(t){return i["a"].get("store/seckill_product/detail/".concat(t))}function j(){return i["a"].get("store/category/select")}function I(){return i["a"].get("store/category/list")}function x(){return i["a"].get("store/category/brandlist")}function S(){return i["a"].get("store/shipping/list")}function O(){return i["a"].get("store/product/lst_filter")}function R(){return i["a"].get("store/seckill_product/lst_filter")}function _(t,e){return i["a"].post("store/product/status/".concat(t),{status:e})}function M(t,e){return i["a"].post("store/seckill_product/status/".concat(t),{status:e})}function D(t){return i["a"].get("store/product/list",t)}function z(){return i["a"].get("store/product/config")}function V(t){return i["a"].get("store/reply/lst",t)}function B(t){return i["a"].get("store/reply/form/".concat(t))}function F(t){return i["a"].delete("store/product/destory/".concat(t))}function L(t){return i["a"].delete("store/seckill_product/destory/".concat(t))}function N(t){return i["a"].post("store/product/restore/".concat(t))}function T(t){return i["a"].post("store/seckill_product/restore/".concat(t))}function Q(t){return i["a"].get("store/productcopy/get",t)}function P(t){return i["a"].get("store/seckill_product/lst",t)}function H(){return i["a"].get("store/seckill_product/lst_time")}function U(t,e){return i["a"].post("store/seckill_product/update/".concat(t),e)}function G(){return i["a"].get("store/productcopy/count")}function W(t){return i["a"].get("store/productcopy/lst",t)}function Z(t){return i["a"].post("store/product/presell/create",t)}function Y(t,e){return i["a"].post("store/product/presell/update/".concat(t),e)}function J(t){return i["a"].get("store/product/presell/lst",t)}function q(t){return i["a"].get("store/product/presell/detail/".concat(t))}function X(t,e){return i["a"].post("store/product/presell/status/".concat(t),{status:e})}function K(t){return i["a"].delete("store/product/presell/delete/".concat(t))}function $(t){return i["a"].post("store/product/presell/preview",t)}function tt(t){return i["a"].post("store/product/group/preview",t)}function et(t){return i["a"].post("store/product/assist/create",t)}function nt(t,e){return i["a"].post("store/product/assist/update/".concat(t),e)}function it(t){return i["a"].get("store/product/assist/lst",t)}function at(t){return i["a"].get("store/product/assist/detail/".concat(t))}function rt(t){return i["a"].post("store/product/assist/preview",t)}function ot(t){return i["a"].delete("store/product/assist/delete/".concat(t))}function ct(t){return i["a"].get("store/product/assist_set/lst",t)}function st(t,e){return i["a"].post("store/product/assist/status/".concat(t),{status:e})}function ut(t,e){return i["a"].get("store/product/assist_set/detail/".concat(t),e)}function lt(){return i["a"].get("store/product/temp_key")}function dt(t,e){return i["a"].post("/store/product/sort/".concat(t),e)}function ht(t,e){return i["a"].post("/store/reply/sort/".concat(t),e)}function mt(t){return i["a"].post("guarantee/create",t)}function ft(t){return i["a"].get("guarantee/lst",t)}function pt(t,e){return i["a"].post("guarantee/sort/".concat(t),e)}function gt(t,e){return i["a"].post("guarantee/update/".concat(t),e)}function bt(t){return i["a"].get("guarantee/detail/".concat(t))}function vt(t){return i["a"].delete("guarantee/delete/".concat(t))}function At(t){return i["a"].get("guarantee/select",t)}function wt(t,e){return i["a"].post("guarantee/status/".concat(t),e)}function yt(){return i["a"].get("guarantee/list")}function kt(t){return i["a"].post("upload/video",t)}function Ct(){return i["a"].get("product/label/create/form")}function Et(t){return i["a"].get("product/label/update/".concat(t,"/form"))}function jt(t){return i["a"].get("product/label/lst",t)}function It(t){return i["a"].delete("product/label/delete/".concat(t))}function xt(t,e){return i["a"].post("product/label/status/".concat(t),{status:e})}function St(){return i["a"].get("product/label/option")}function Ot(t,e){return i["a"].post("store/product/labels/".concat(t),e)}function Rt(t,e){return i["a"].post("store/seckill_product/labels/".concat(t),e)}function _t(t,e){return i["a"].post("store/product/presell/labels/".concat(t),e)}function Mt(t,e){return i["a"].post("store/product/assist/labels/".concat(t),e)}function Dt(t,e){return i["a"].post("store/product/group/labels/".concat(t),e)}function zt(t,e){return i["a"].post("store/product/free_trial/".concat(t),e)}function Vt(t){return i["a"].post("store/product/batch_status",t)}function Bt(t){return i["a"].post("store/product/batch_labels",t)}function Ft(t){return i["a"].post("store/product/batch_temp",t)}function Lt(t){return i["a"].post("store/params/temp/create",t)}function Nt(t,e){return i["a"].post("store/params/temp/update/".concat(t),e)}function Tt(t){return i["a"].get("store/params/temp/detail/".concat(t))}function Qt(t){return i["a"].get("store/params/temp/lst",t)}function Pt(t){return i["a"].delete("store/params/temp/delete/".concat(t))}function Ht(t){return i["a"].get("store/params/temp/detail/".concat(t))}function Ut(t){return i["a"].get("store/params/temp/select",t)}function Gt(t){return i["a"].get("store/params/temp/show",t)}function Wt(t){return i["a"].post("store/product/batch_ext",t)}function Zt(t){return i["a"].post("store/product/batch_svip",t)}},c50c:function(t,e,n){"use strict";n("75d9")},c653:function(t,e,n){var i={"./app.js":"d9cd","./errorLog.js":"4d49","./mobildConfig.js":"3087","./permission.js":"31c2","./settings.js":"0781","./tagsView.js":"7509","./user.js":"0f9a"};function a(t){var e=r(t);return n(e)}function r(t){var e=i[t];if(!(e+1)){var n=new Error("Cannot find module '"+t+"'");throw n.code="MODULE_NOT_FOUND",n}return e}a.keys=function(){return Object.keys(i)},a.resolve=r,t.exports=a,a.id="c653"},c6b6:function(t,e,n){},c829:function(t,e,n){"use strict";n.r(e);var i=n("e017"),a=n.n(i),r=n("21a1"),o=n.n(r),c=new a.a({id:"icon-chart",use:"icon-chart-usage",viewBox:"0 0 128 128",content:''});o.a.add(c);e["default"]=c},cbb7:function(t,e,n){"use strict";n.r(e);var i=n("e017"),a=n.n(i),r=n("21a1"),o=n.n(r),c=new a.a({id:"icon-email",use:"icon-email-usage",viewBox:"0 0 128 96",content:''});o.a.add(c);e["default"]=c},cf1c:function(t,e,n){"use strict";n("7b72")},cf1e2:function(t,e,n){t.exports={menuText:"#bfcbd9",menuActiveText:"#6394F9",subMenuActiveText:"#f4f4f5",menuBg:"#0B1529",menuHover:"#182848",subMenuBg:"#030C17",subMenuHover:"#182848",sideBarWidth:"180px"}},d056:function(t,e,n){"use strict";n.r(e);var i=n("e017"),a=n.n(i),r=n("21a1"),o=n.n(r),c=new a.a({id:"icon-people",use:"icon-people-usage",viewBox:"0 0 128 128",content:''});o.a.add(c);e["default"]=c},d0a6:function(t,e,n){"use strict";n("8544")},d249:function(t,e,n){"use strict";n("b55e")},d7ec:function(t,e,n){"use strict";n.r(e);var i=n("e017"),a=n.n(i),r=n("21a1"),o=n.n(r),c=new a.a({id:"icon-eye-open",use:"icon-eye-open-usage",viewBox:"0 0 1024 1024",content:''});o.a.add(c);e["default"]=c},d9cd:function(t,e,n){"use strict";n.r(e);var i=n("a78e"),a=n.n(i),r={sidebar:{opened:!a.a.get("sidebarStatus")||!!+a.a.get("sidebarStatus"),withoutAnimation:!1},device:"desktop",size:a.a.get("size")||"medium"},o={TOGGLE_SIDEBAR:function(t){t.sidebar.opened=!t.sidebar.opened,t.sidebar.withoutAnimation=!1,t.sidebar.opened?a.a.set("sidebarStatus",1):a.a.set("sidebarStatus",0)},CLOSE_SIDEBAR:function(t,e){a.a.set("sidebarStatus",0),t.sidebar.opened=!1,t.sidebar.withoutAnimation=e},TOGGLE_DEVICE:function(t,e){t.device=e},SET_SIZE:function(t,e){t.size=e,a.a.set("size",e)}},c={toggleSideBar:function(t){var e=t.commit;e("TOGGLE_SIDEBAR")},closeSideBar:function(t,e){var n=t.commit,i=e.withoutAnimation;n("CLOSE_SIDEBAR",i)},toggleDevice:function(t,e){var n=t.commit;n("TOGGLE_DEVICE",e)},setSize:function(t,e){var n=t.commit;n("SET_SIZE",e)}};e["default"]={namespaced:!0,state:r,mutations:o,actions:c}},dbc7:function(t,e,n){"use strict";n.r(e);var i=n("e017"),a=n.n(i),r=n("21a1"),o=n.n(r),c=new a.a({id:"icon-exit-fullscreen",use:"icon-exit-fullscreen-usage",viewBox:"0 0 128 128",content:''});o.a.add(c);e["default"]=c},dcf8:function(t,e,n){"use strict";n.r(e);var i=n("e017"),a=n.n(i),r=n("21a1"),o=n.n(r),c=new a.a({id:"icon-nested",use:"icon-nested-usage",viewBox:"0 0 128 128",content:''});o.a.add(c);e["default"]=c},ddd5:function(t,e,n){},de6e:function(t,e,n){},de9d:function(t,e,n){},e03b:function(t,e){t.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFEAAABRCAYAAACqj0o2AAAAAXNSR0IArs4c6QAACjNJREFUeF7tnH9sFNcRx7/z9owP+84/iG1+p2eCa4vwwxJEgtJKRkoTKAlKIa5MC8qhFIlUoIJaqZFaya6i/oFUCVBRmwok3IYkCEODCClOS5VDSUrSpAkkDhAw+JIQfhjjM+ezsfHuTrVrDI7x3e2+3TVGvf0LyTPzZj477828t+8gZB7HBMixhYwBZCC6kAQZiBmILhBwwUQmEzMQXSDggolRk4n8q7n5NwQqdBbTFSjTjdh0IDQQowCixr81aM2C9OaxOk7T5v9ed4GBYxP3DGL3pjmT9azsR0lQFYAqGgTMalTcDzbCxBEheo/k/O7E11Z13ZQbUYgt4ZC/uKR4BQGrAHoUgM+1YAgqmI8wsPtq69X9pfXRHtdspzE0IhBjGysLxvh8PwdoIwgF3gU3EA53gHnrTVXdVrj1eId34/Vb9hSikXklDxT/GuD1IPIQXhJMbMDE1tb2ts1eZqZnEHs2zl2qCbEd4NvFweuMSG6fo4rG6/zbPnrTCx9ch9j6sxmB3DH+P4Ao7IXDjmwy13fd7NlQ8seTCUd2hii7CrF305yHVd23B8BMN5102VaTT6g12VtOfOaWXdcgdq+vXAhBjQwKuOWcZ3aYE8S8OGf78XfdGMMViN3rZ69gUvaAXWxZ3IhuwMbwUarEWk3O9k/2Ox3KMcTudbNXsCKMKexez+dt0zCYmUrkHKQjiN3rKheyQEQ6Ax2N7jR/buurpKMq50X5qS0dRu/aOQ+rCt4DMPrXwPS8Ez4N87N3yBUbKYit1TMCOeN8x2h0V+H06AZJMNDU3a4uKGmw3/5IQUysnbWLMAr7QFvY7hZmcH1gx6dr7JqxDbHr2ZlLmeiQ3YHSydt2JJ1Byb8z6YsDOz6ztbOx5bu5FxbBUzwqtnKSlIaqDSHAjOY2PTHLzl7bFsSu8IxaJqqz7r4t89bNeixJrNfl1p/8rdVhLEcZC4cKsji3BfDyKGuQ25Y9sxqqLbmOPnSVFtZHLR2jWXa1a1VFLQthIwttOT3qhAmoy/2rtWy0BLGlKuQvnjL2krcHqqOOY8fVr25MLI2kPyG3BDHx4/KfgMRuN8IkcDMT7eQ+vNF25Uaz4WRrdXHA7yusVITyOIPXAVSUYiwVwB5d1/YL9eZ7gYboZUM2VhMKKcJfJQjPAOZ3G+cP66sCr3z+cjpDFiFW/BOA8U1E/mGoJPSNOV+f+TNFYIAY9ok9FSrIGptdC6KNdxVS5ndUVV2T33CuOZUjnTUVVST4JYCmyDsMgNEYePX0knQ20kLsXj59ij5GMQqK9AEDAQlN61uS13D+nXQODfw9XlMWFhA7BsYl4p05l848l+oFDLadqA5NgG/MYTBVWh1zGDkVWu/UgWxPZictxMSPvv0MiOodOAKd+Yd5e88csGujs3r600TiVYC3B/ae3WRX/9ry6VOys5QPAEywq3tbnjkc2HvmL6n000OsLtsFJ1s81ncH9jWvlg0iUV1WGWg4e1xWP768LCx8tEtWH8z1gYazKbeC6SGuKGsB3bmJYNcZ7aZeln8w9Rpm16Zd+cTTZacAVNjVM+UJ0UDD2VLpTDQXeeGLWRp8uNfBaAr8rXmWJX0PhTqXP/QCEf2mf4i0eXOXJ31aX2HhgeSNd0qL158MzVd8vmOy8RH4xdzXzj0nq++W3vVlocWK4jssa09T1QX5r0eNs9Nhn9QQl5WuEkK8JDs4wHXBA+ct70Hlx0mt2bFs2jxFkFFgpB5d11fnH2xJ2ienhNi1bFqtDjjZ6tUFD957iMaMEiSkZxSAlHGkhNj5xLRakDxEAu8OvN4iXZml0mYYpfiToacI4jVpe+QAYmJpaBc7aG8YHM17I5qyskkHZkOx84nQnwBaZ0NlqOjO4KGWtVJrYuIHBkQ4uw7CqAoejh51EIAjVePwpCgHxo5LuuEmoD7w92jSXjH1dF784A6AfuooCiASbPxikUMb0uqJx7/1Cxb0e2kDhiLzzmDjF3KZ2PnYg8ZBgJPCYvpO4OcDb3652VEgEspdjz04VyNEyOnVFuK6YOOXSbuMlJkY//7UMJGDLdNA4MzGLdaa4JELjq9sWGUZXzSpnLJ8ESfTeNBYdcF/SELsqJo4T/H5pPurbwbMxvHXiIA0ASqKWwCNA5TV+f+6INcntlTBX6RMiQHkt5oBKeXMjERN8C3vMtIESEoEJF9IhsagaeojBZFLH0pVZ0Opc9HkYwDNdwWiacTISPIEpAkQInkG2t82mx6reqKwMNKR9KNVWrOdVZNqAefFZfBLYLBKxDXBty65tkaaABkRgKRbmeESxex1IxflT3EMox0LJ85TFPl9Z7IMZkAlo9i87RxkfOGkcvK5D/BWZ1EfOHrR2XmiYSj+vYktAHlwgZ1V0rSa4L9bpTMyvrConERWhF3OwDsvX1+T9/bllCf7aaezuS5+Z/wLLMSt8zj3Vsd+S6ySrkuBNAGSAdC9IjIkOrWnV51a8sFV84uidGExIc4bP5PH0Kdu47tjj1UC2wJpAoQvwuwZQGOX0Jj37mXnX/sGAo3PH38M5GaVHvpKjIzkmuD76ad2fF5ROXxGG+NuEbnLI+Mc8f3WtN/bLU1nc118pDgMIeQ/+FhKY2ONRE3ww+QgTYAuNtK33RpKgtFx7cqViaVRpP2NoGWILSH4HygpcXQaYomjuUbSsCBNgCJFH2htAEtSBL0u+J82S6fyliH2r41FtZy0Z7RlKk0gt6r2x+23q7YJkMj1PnBYR5g7NLWvtPB48gZ7sJ6tyONzg0WA/ysA7mwDU6K8VbU/bt8fn11UjiwDoIdFZJAvxFwX/MhaFvb3kjafzsqiLSxw1z0Zm2YsirMKjZ+HIn45UgDBaL4Wa5tlZS0cCMI2xNYZuRP82f4W8Ehko0XWLoqxzkvyP2lvtGPSNkRzbZw9bgsPc2vLzsCjU5br8060e//rASP42IyCsKJ43e6MMGbiph41tqDkJGz/jFcqE02IwoUT7xHmlGw47r/6t2DcqUSTjEtyECsKwuJeQ5TyfDhErFKftijvTKflu5NDrUi5EqsIhgUpHu9eZHLCpg5BZY1XFnx+fZ9NzW+Iy0EsC4ZFsi2glEUnIUjrqqxqKwuaE44ASvWJZmExILrxFVA6fquKSd4oIUF9vUvyzvdIT2HpHcuAYuyh3LAQ9+d0JuYmlXnluHNyRWS41yc1+UyIuP9aHIJe3xPv2lBy1X4bkyr35SCGjEy8r1qcZui8IT/aZWsn4nDRSK0eMyBiFEMcSA1GB6BvbUf3Zjt7YavwpPfOZmGZ6h/ta6L5f4Xp8e5thR0GSG8fuek82YAosSZKjWYRAJu/0jqisf7y9Qs9+0qR/kTaouW0YlJhxQyII9riJHGTOUqgiAb9qMI9h/Iuoi1txB4ISEFsn+T7rg++Zz3wJ5lJlYELxh81xjlF15r13r7TIzFVrcQoBdGK4f8nmQxEF952BmIGogsEXDCRycQMRBcIuGAik4kuQPwfBUpzf3HDNvAAAAAASUVORK5CYII="},e534:function(t,e,n){"use strict";n.r(e);var i=n("e017"),a=n.n(i),r=n("21a1"),o=n.n(r),c=new a.a({id:"icon-theme",use:"icon-theme-usage",viewBox:"0 0 128 128",content:''});o.a.add(c);e["default"]=c},e7c8:function(t,e,n){"use strict";n.r(e);var i=n("e017"),a=n.n(i),r=n("21a1"),o=n.n(r),c=new a.a({id:"icon-tree-table",use:"icon-tree-table-usage",viewBox:"0 0 128 128",content:''});o.a.add(c);e["default"]=c},ea55:function(t,e,n){},eb1b:function(t,e,n){"use strict";n.r(e);var i=n("e017"),a=n.n(i),r=n("21a1"),o=n.n(r),c=new a.a({id:"icon-form",use:"icon-form-usage",viewBox:"0 0 128 128",content:''});o.a.add(c);e["default"]=c},eb24:function(t,e,n){"use strict";n("f3c0")},ec9f:function(t,e,n){},ed08:function(t,e,n){"use strict";n.d(e,"c",(function(){return a})),n.d(e,"b",(function(){return r})),n.d(e,"a",(function(){return o}));n("4917"),n("4f7f"),n("5df3"),n("1c4c"),n("28a5"),n("ac6a"),n("456d"),n("f576"),n("6b54"),n("3b2b"),n("a481");var i=n("53ca");function a(t,e){if(0===arguments.length)return null;var n,a=e||"{y}-{m}-{d} {h}:{i}:{s}";"object"===Object(i["a"])(t)?n=t:("string"===typeof t&&(t=/^[0-9]+$/.test(t)?parseInt(t):t.replace(new RegExp(/-/gm),"/")),"number"===typeof t&&10===t.toString().length&&(t*=1e3),n=new Date(t));var r={y:n.getFullYear(),m:n.getMonth()+1,d:n.getDate(),h:n.getHours(),i:n.getMinutes(),s:n.getSeconds(),a:n.getDay()},o=a.replace(/{([ymdhisa])+}/g,(function(t,e){var n=r[e];return"a"===e?["日","一","二","三","四","五","六"][n]:n.toString().padStart(2,"0")}));return o}function r(t,e){t=10===(""+t).length?1e3*parseInt(t):+t;var n=new Date(t),i=Date.now(),r=(i-n)/1e3;return r<30?"刚刚":r<3600?Math.ceil(r/60)+"分钟前":r<86400?Math.ceil(r/3600)+"小时前":r<172800?"1天前":e?a(t,e):n.getMonth()+1+"月"+n.getDate()+"日"+n.getHours()+"时"+n.getMinutes()+"分"}function o(t,e,n){var i,a,r,o,c,s=function s(){var u=+new Date-o;u0?i=setTimeout(s,e-u):(i=null,n||(c=t.apply(r,a),i||(r=a=null)))};return function(){for(var a=arguments.length,u=new Array(a),l=0;l'});o.a.add(c);e["default"]=c},f9a1:function(t,e,n){"use strict";n.r(e);var i=n("e017"),a=n.n(i),r=n("21a1"),o=n.n(r),c=new a.a({id:"icon-pdf",use:"icon-pdf-usage",viewBox:"0 0 1024 1024",content:''});o.a.add(c);e["default"]=c},fc4a:function(t,e,n){}},[[0,"runtime","chunk-elementUI","chunk-libs"]]]); \ No newline at end of file diff --git a/public/mer/js/chunk-00584afe.898df037.js b/public/mer/js/chunk-00584afe.898df037.js new file mode 100644 index 00000000..44c0c2d5 --- /dev/null +++ b/public/mer/js/chunk-00584afe.898df037.js @@ -0,0 +1 @@ +(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-00584afe"],{"94ad":function(t,e,a){"use strict";a("f851")},e15a:function(t,e,a){"use strict";a.r(e);var i=function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("div",{staticClass:"divBox"},[a("el-card",{staticClass:"box-card"},[a("div",{staticClass:"clearfix",attrs:{slot:"header"},slot:"header"},[a("div",{staticClass:"container"},[a("el-form",{attrs:{inline:""}},[a("el-form-item",{staticClass:"mr10",attrs:{label:"搜索:"}},[a("el-input",{staticClass:"selWidth",attrs:{placeholder:"请输入物流公司名称或者编码"},on:{input:function(e){return t.getList(1)}},model:{value:t.tableFrom.keyword,callback:function(e){t.$set(t.tableFrom,"keyword",e)},expression:"tableFrom.keyword"}}),t._v(" "),a("el-button",{attrs:{type:"primary"},on:{click:function(e){return t.getList(1)}}},[t._v("搜索")])],1)],1)],1)]),t._v(" "),a("el-table",{directives:[{name:"loading",rawName:"v-loading",value:t.listLoading,expression:"listLoading"}],staticStyle:{width:"100%"},attrs:{data:t.tableData.data,size:"mini"}},[a("el-table-column",{attrs:{prop:"id",label:"ID","min-width":"150"}}),t._v(" "),a("el-table-column",{attrs:{prop:"name",label:"物流公司名称","min-width":"200"}}),t._v(" "),a("el-table-column",{attrs:{prop:"code",label:"编码","min-width":"200"}}),t._v(" "),a("el-table-column",{attrs:{label:"操作","min-width":"80",fixed:"right"},scopedSlots:t._u([{key:"default",fn:function(e){return[1==e.row.partner_id||1==e.row.partner_key||1==e.row.net_name?a("el-button",{attrs:{type:"text",size:"small"},on:{click:function(a){return t.handleEdit(e.row.id)}}},[t._v("月结账号编辑")]):t._e()]}}])})],1),t._v(" "),a("div",{staticClass:"block"},[a("el-pagination",{attrs:{"page-sizes":[20,40,60,80],"page-size":t.tableFrom.limit,"current-page":t.tableFrom.page,layout:"total, sizes, prev, pager, next, jumper",total:t.tableData.total},on:{"size-change":t.handleSizeChange,"current-change":t.pageChange}})],1)],1)],1)},n=[],l=a("8593"),s={name:"ExpressFreight",data:function(){return{tableData:{data:[],total:0},listLoading:!0,tableFrom:{page:1,limit:20,date:"",keyword:""},tabClickIndex:""}},mounted:function(){this.getList(1)},methods:{handleEdit:function(t){var e=this;this.$modalForm(Object(l["a"])(t)).then((function(){return e.getList("")}))},getList:function(t){var e=this;this.listLoading=!0,this.tableFrom.page=t||this.tableFrom.page,Object(l["p"])(this.tableFrom).then((function(t){e.tableData.data=t.data.list,e.tableData.total=t.data.count,e.listLoading=!1})).catch((function(t){e.listLoading=!1,e.$message.error(t.message)}))},pageChange:function(t){this.tableFrom.page=t,this.getList("")},handleSizeChange:function(t){this.tableFrom.limit=t,this.getList("")}}},o=s,r=(a("94ad"),a("2877")),c=Object(r["a"])(o,i,n,!1,null,"66122ae6",null);e["default"]=c.exports},f851:function(t,e,a){}}]); \ No newline at end of file diff --git a/public/mer/js/chunk-02ea1cc8.43354ef1.js b/public/mer/js/chunk-02ea1cc8.43354ef1.js new file mode 100644 index 00000000..dc5f9ef4 --- /dev/null +++ b/public/mer/js/chunk-02ea1cc8.43354ef1.js @@ -0,0 +1 @@ +(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-02ea1cc8"],{5944:function(t,e,n){"use strict";n.r(e);var s=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",[n("div",{staticClass:"i-layout-page-header"},[n("el-card",{staticClass:"product_tabs"},[n("div",[n("router-link",{attrs:{to:{path:t.roterPre+"/setting/sms/sms_config/index"}}},[n("el-button",{staticClass:"mr20",attrs:{icon:"el-icon-arrow-left",size:"mini"}},[t._v("返回")])],1),t._v(" "),n("span",{staticClass:"mr20",domProps:{textContent:t._s(t.$route.meta.title)}})],1)])],1),t._v(" "),n("el-card",{staticClass:"ivu-mt"},[n("el-tabs",{on:{"tab-click":t.onChangeType},model:{value:t.isChecked,callback:function(e){t.isChecked=e},expression:"isChecked"}},[n("el-tab-pane",{attrs:{label:"商品采集",name:"copy"}}),t._v(" "),n("el-tab-pane",{attrs:{label:"电子面单打印",name:"dump"}})],1),t._v(" "),n("el-row",{directives:[{name:"loading",rawName:"v-loading",value:t.spinShow,expression:"spinShow"}],staticClass:"mt50",attrs:{gutter:16}},[n("el-col",{staticClass:"ivu-text-left mb20",attrs:{span:24}},[n("el-col",{staticClass:"mr20",attrs:{xs:12,sm:6,md:4,lg:2}},[n("span",{staticClass:"ivu-text-right ivu-block"},[t._v("当前剩余条数:")])]),t._v(" "),n("el-col",{attrs:{xs:11,sm:13,md:19,lg:20}},[n("span",[t._v(t._s(t.numbers))])])],1),t._v(" "),n("el-col",{staticClass:"ivu-text-left mb20",attrs:{span:24}},[n("el-col",{staticClass:"mr20",attrs:{xs:12,sm:6,md:4,lg:2}},[n("span",{staticClass:"ivu-text-right ivu-block"},[t._v("选择套餐:")])]),t._v(" "),n("el-col",{attrs:{xs:11,sm:13,md:19,lg:20}},[n("el-row",{attrs:{gutter:20}},t._l(t.list,(function(e,s){return n("el-col",{key:s,attrs:{xxl:4,xl:8,lg:8,md:12,sm:24,xs:24}},[n("div",{staticClass:"list-goods-list-item mb15",class:{active:s===t.current},on:{click:function(n){return t.check(e,s)}}},[n("div",{staticClass:"list-goods-list-item-title",class:{active:s===t.current}},[t._v("¥ "),n("i",[t._v(t._s(e.price))])]),t._v(" "),n("div",{staticClass:"list-goods-list-item-price",class:{active:s===t.current}},[n("span",[t._v(t._s(t.all[t.isChecked])+"条数: "+t._s(e.num))])])])])})),1)],1)],1),t._v(" "),t.checkList?n("el-col",{staticClass:"ivu-text-left mb20",attrs:{span:24}},[n("el-col",{staticClass:"mr20",attrs:{xs:12,sm:6,md:4,lg:2}},[n("span",{staticClass:"ivu-text-right ivu-block"},[t._v("充值条数:")])]),t._v(" "),n("el-col",{attrs:{xs:11,sm:13,md:19,lg:20}},[n("span",[t._v(t._s(t.checkList.num))])])],1):t._e(),t._v(" "),t.checkList?n("el-col",{staticClass:"ivu-text-left mb20",attrs:{span:24}},[n("el-col",{staticClass:"mr20",attrs:{xs:12,sm:6,md:4,lg:2}},[n("span",{staticClass:"ivu-text-right ivu-block"},[t._v("支付金额:")])]),t._v(" "),n("el-col",{attrs:{xs:11,sm:13,md:19,lg:20}},[n("span",{staticClass:"list-goods-list-item-number"},[t._v("¥"+t._s(t.checkList.price))])])],1):t._e(),t._v(" "),n("el-col",{staticClass:"ivu-text-left mb20",attrs:{span:24}},[n("el-col",{staticClass:"mr20",attrs:{xs:12,sm:6,md:4,lg:2}},[n("span",{staticClass:"ivu-text-right ivu-block"},[t._v("付款方式:")])]),t._v(" "),n("el-col",{attrs:{xs:11,sm:13,md:19,lg:20}},[n("span",{staticClass:"list-goods-list-item-pay"},[t._v("微信支付"),t.code.endtime?n("i",[t._v(t._s(" ( 支付码过期时间:"+t.code.endtime+" )"))]):t._e()])])],1),t._v(" "),n("el-col",{attrs:{span:24}},[n("el-col",{staticClass:"mr20",attrs:{xs:12,sm:6,md:4,lg:3}},[t._v(" ")]),t._v(" "),n("el-col",{attrs:{xs:11,sm:13,md:19,lg:20}},[n("div",{staticClass:"list-goods-list-item-code mr20"},[n("vue-qr",{staticClass:"bicode",attrs:{text:t.codeUrl,size:310}})],1)])],1)],1)],1)],1)},r=[],c=n("c7eb"),a=(n("96cf"),n("1da1")),i=n("90e7"),o=n("83d6"),u=n("658f"),l=n.n(u),d={name:"CopyPay",components:{VueQr:l.a},data:function(){return{roterPre:o["roterPre"],all:{copy:"商品采集",dump:"电子面单打印"},isChecked:"copy",numbers:"",account:"",list:[],current:0,checkList:{},spinShow:!1,codeUrl:"",code:{}}},created:function(){this.isChecked=this.$route.query.type,this.getServeInfo(),this.getPrice()},methods:{getServeInfo:function(){var t=this;Object(i["y"])().then(function(){var e=Object(a["a"])(Object(c["a"])().mark((function e(n){var s;return Object(c["a"])().wrap((function(e){while(1)switch(e.prev=e.next){case 0:s=n.data,e.t0=t.isChecked,e.next="copy"===e.t0?4:"dump"===e.t0?6:8;break;case 4:return t.numbers=s.copy_product_num,e.abrupt("break",8);case 6:return t.numbers=s.export_dump_num,e.abrupt("break",8);case 8:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}()).catch((function(e){t.$message.error(e.message)}))},onChangeType:function(t){this.current=0,this.getPrice(),this.getServeInfo()},getPrice:function(){var t=this;this.spinShow=!0,Object(i["z"])({type:this.isChecked}).then(function(){var e=Object(a["a"])(Object(c["a"])().mark((function e(n){var s;return Object(c["a"])().wrap((function(e){while(1)switch(e.prev=e.next){case 0:setTimeout((function(){t.spinShow=!1}),800),s=n.data,t.list=s.list,t.checkList=t.list[0],t.checkList&&t.getCode(t.checkList);case 5:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}()).catch((function(e){t.spinShow=!1,t.$message.error(e.message),t.list=[]}))},check:function(t,e){var n=this;this.spinShow=!0,this.current=e,setTimeout((function(){n.getCode(t),n.checkList=t,n.spinShow=!1}),800)},getCode:function(t){var e=this,n={pay_type:1,meal_id:t.meal_id};Object(i["n"])(n).then(function(){var t=Object(a["a"])(Object(c["a"])().mark((function t(n){return Object(c["a"])().wrap((function(t){while(1)switch(t.prev=t.next){case 0:e.code=n.data,e.codeUrl=n.data.config;case 2:case"end":return t.stop()}}),t)})));return function(e){return t.apply(this,arguments)}}()).catch((function(t){e.code="",e.$message.error(t.message)}))}}},m=d,f=(n("c0a5"),n("2877")),p=Object(f["a"])(m,s,r,!1,null,"782b4eae",null);e["default"]=p.exports},"80aa":function(t,e,n){},"90e7":function(t,e,n){"use strict";n.d(e,"m",(function(){return r})),n.d(e,"u",(function(){return c})),n.d(e,"x",(function(){return a})),n.d(e,"v",(function(){return i})),n.d(e,"w",(function(){return o})),n.d(e,"c",(function(){return u})),n.d(e,"a",(function(){return l})),n.d(e,"g",(function(){return d})),n.d(e,"b",(function(){return m})),n.d(e,"f",(function(){return f})),n.d(e,"e",(function(){return p})),n.d(e,"d",(function(){return v})),n.d(e,"A",(function(){return g})),n.d(e,"B",(function(){return h})),n.d(e,"j",(function(){return _})),n.d(e,"k",(function(){return b})),n.d(e,"l",(function(){return C})),n.d(e,"y",(function(){return k})),n.d(e,"z",(function(){return x})),n.d(e,"n",(function(){return y})),n.d(e,"o",(function(){return w})),n.d(e,"i",(function(){return j})),n.d(e,"h",(function(){return O})),n.d(e,"C",(function(){return S})),n.d(e,"p",(function(){return L})),n.d(e,"r",(function(){return P})),n.d(e,"s",(function(){return $})),n.d(e,"t",(function(){return z})),n.d(e,"q",(function(){return T}));var s=n("0c6d");function r(t){return s["a"].get("system/role/lst",t)}function c(){return s["a"].get("system/role/create/form")}function a(t){return s["a"].get("system/role/update/form/".concat(t))}function i(t){return s["a"].delete("system/role/delete/".concat(t))}function o(t,e){return s["a"].post("system/role/status/".concat(t),{status:e})}function u(t){return s["a"].get("system/admin/lst",t)}function l(){return s["a"].get("/system/admin/create/form")}function d(t){return s["a"].get("system/admin/update/form/".concat(t))}function m(t){return s["a"].delete("system/admin/delete/".concat(t))}function f(t,e){return s["a"].post("system/admin/status/".concat(t),{status:e})}function p(t){return s["a"].get("system/admin/password/form/".concat(t))}function v(t){return s["a"].get("system/admin/log",t)}function g(){return s["a"].get("take/info")}function h(t){return s["a"].post("take/update",t)}function _(){return s["a"].get("margin/code")}function b(t){return s["a"].get("margin/lst",t)}function C(){return s["a"].post("financial/refund/margin")}function k(){return s["a"].get("serve/info")}function x(t){return s["a"].get("serve/meal",t)}function y(t){return s["a"].get("serve/code",t)}function w(t){return s["a"].get("serve/paylst",t)}function j(t){return s["a"].get("expr/temps",t)}function O(){return s["a"].get("serve/config")}function S(t){return s["a"].post("serve/config",t)}function L(){return s["a"].get("store/printer/create/form")}function P(t){return s["a"].get("store/printer/lst",t)}function $(t,e){return s["a"].post("store/printer/status/".concat(t),e)}function z(t){return s["a"].get("store/printer/update/".concat(t,"/form"))}function T(t){return s["a"].delete("store/printer/delete/".concat(t))}},c0a5:function(t,e,n){"use strict";n("80aa")}}]); \ No newline at end of file diff --git a/public/mer/js/chunk-031de214.6fb1e28d.js b/public/mer/js/chunk-031de214.6fb1e28d.js new file mode 100644 index 00000000..cd53bce6 --- /dev/null +++ b/public/mer/js/chunk-031de214.6fb1e28d.js @@ -0,0 +1 @@ +(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-031de214"],{"1d60":function(e,t,a){},3910:function(e,t,a){"use strict";a("901b")},"504c":function(e,t,a){var i=a("9e1e"),r=a("0d58"),l=a("6821"),n=a("52a7").f;e.exports=function(e){return function(t){var a,s=l(t),o=r(s),c=o.length,d=0,u=[];while(c>d)a=o[d++],i&&!n.call(s,a)||u.push(e?[a,s[a]]:s[a]);return u}}},7719:function(e,t,a){"use strict";var i=function(){var e=this,t=e.$createElement,a=e._self._c||t;return e.dialogVisible?a("el-dialog",{attrs:{title:"商品信息",visible:e.dialogVisible,width:"1200px"},on:{"update:visible":function(t){e.dialogVisible=t}}},[a("div",{staticClass:"divBox"},[a("div",{staticClass:"header clearfix"},[a("div",{staticClass:"container"},[a("el-form",{attrs:{size:"small",inline:"","label-width":"100px"}},[a("el-form-item",{staticClass:"width100",attrs:{label:"商品分类:"}},[a("el-select",{staticClass:"filter-item selWidth mr20",attrs:{placeholder:"请选择",clearable:""},on:{change:function(t){return e.getList()}},model:{value:e.tableFrom.mer_cate_id,callback:function(t){e.$set(e.tableFrom,"mer_cate_id",t)},expression:"tableFrom.mer_cate_id"}},e._l(e.merCateList,(function(e){return a("el-option",{key:e.value,attrs:{label:e.label,value:e.value}})})),1)],1),e._v(" "),a("el-form-item",{staticClass:"width100",attrs:{label:"商品搜索:"}},[a("el-input",{staticClass:"selWidth",attrs:{placeholder:"请输入商品名称,关键字,产品编号",clearable:""},nativeOn:{keyup:function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"enter",13,t.key,"Enter")?null:e.getList(t)}},model:{value:e.tableFrom.keyword,callback:function(t){e.$set(e.tableFrom,"keyword",t)},expression:"tableFrom.keyword"}},[a("el-button",{staticClass:"el-button-solt",attrs:{slot:"append",icon:"el-icon-search"},on:{click:e.getList},slot:"append"})],1)],1)],1)],1)]),e._v(" "),e.resellShow?a("el-alert",{attrs:{title:"注:添加为预售商品后,原普通商品会下架;如该商品已开启其它营销活动,请勿选择!",type:"warning","show-icon":""}}):e._e(),e._v(" "),a("el-table",{directives:[{name:"loading",rawName:"v-loading",value:e.listLoading,expression:"listLoading"}],staticStyle:{width:"100%","margin-top":"10px"},attrs:{data:e.tableData.data,size:"mini"}},[a("el-table-column",{attrs:{width:"55"},scopedSlots:e._u([{key:"default",fn:function(t){return[a("el-radio",{attrs:{label:t.row.product_id},nativeOn:{change:function(a){return e.getTemplateRow(t.row)}},model:{value:e.templateRadio,callback:function(t){e.templateRadio=t},expression:"templateRadio"}},[e._v(" ")])]}}],null,!1,3465899556)}),e._v(" "),a("el-table-column",{attrs:{prop:"product_id",label:"ID","min-width":"50"}}),e._v(" "),a("el-table-column",{attrs:{label:"商品图","min-width":"80"},scopedSlots:e._u([{key:"default",fn:function(e){return[a("div",{staticClass:"demo-image__preview"},[a("el-image",{staticStyle:{width:"36px",height:"36px"},attrs:{src:e.row.image,"preview-src-list":[e.row.image]}})],1)]}}],null,!1,2331550732)}),e._v(" "),a("el-table-column",{attrs:{prop:"store_name",label:"商品名称","min-width":"200"}}),e._v(" "),a("el-table-column",{attrs:{prop:"stock",label:"库存","min-width":"80"}})],1),e._v(" "),a("div",{staticClass:"block mb20"},[a("el-pagination",{attrs:{"page-sizes":[20,40,60,80],"page-size":e.tableFrom.limit,"current-page":e.tableFrom.page,layout:"total, sizes, prev, pager, next, jumper",total:e.tableData.total},on:{"size-change":e.handleSizeChange,"current-change":e.pageChange}})],1)],1)]):e._e()},r=[],l=a("c4c8"),n=a("83d6"),s={name:"GoodsList",props:{resellShow:{type:Boolean,default:!1}},data:function(){return{dialogVisible:!1,templateRadio:0,merCateList:[],roterPre:n["roterPre"],listLoading:!0,tableData:{data:[],total:0},tableFrom:{page:1,limit:20,cate_id:"",store_name:"",keyword:"",is_gift_bag:0,status:1},multipleSelection:{},checked:[]}},mounted:function(){var e=this;this.getList(),this.getCategorySelect(),window.addEventListener("unload",(function(t){return e.unloadHandler(t)}))},methods:{getTemplateRow:function(e){this.multipleSelection={src:e.image,id:e.product_id},this.dialogVisible=!1,this.$emit("getProduct",this.multipleSelection)},getCategorySelect:function(){var e=this;Object(l["r"])().then((function(t){e.merCateList=t.data})).catch((function(t){e.$message.error(t.message)}))},getList:function(){var e=this;this.listLoading=!0,Object(l["eb"])(this.tableFrom).then((function(t){e.tableData.data=t.data.list,e.tableData.total=t.data.count,e.listLoading=!1})).catch((function(t){e.listLoading=!1,e.$message.error(t.message)}))},pageChange:function(e){this.tableFrom.page=e,this.getList()},handleSizeChange:function(e){this.tableFrom.limit=e,this.getList()}}},o=s,c=(a("3910"),a("2877")),d=Object(c["a"])(o,i,r,!1,null,"5e74a40e",null);t["a"]=d.exports},8615:function(e,t,a){var i=a("5ca1"),r=a("504c")(!1);i(i.S,"Object",{values:function(e){return r(e)}})},"901b":function(e,t,a){},9891:function(e,t,a){"use strict";a("1d60")},"9de6":function(e,t,a){"use strict";a.r(t);var i=function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("div",{staticClass:"divBox"},[a("el-card",{staticClass:"box-card"},[a("div",{staticClass:"clearfix",attrs:{slot:"header"},slot:"header"},[a("el-steps",{attrs:{active:e.currentTab,"align-center":"","finish-status":"success"}},[a("el-step",{attrs:{title:"选择预售商品"}}),e._v(" "),a("el-step",{attrs:{title:"填写基础信息"}}),e._v(" "),a("el-step",{attrs:{title:"修改商品详情"}})],1)],1),e._v(" "),a("el-form",{directives:[{name:"loading",rawName:"v-loading",value:e.fullscreenLoading,expression:"fullscreenLoading"}],ref:"formValidate",staticClass:"formValidate mt20",attrs:{rules:e.ruleValidate,model:e.formValidate,"label-width":"120px"},nativeOn:{submit:function(e){e.preventDefault()}}},[a("div",{directives:[{name:"show",rawName:"v-show",value:0===e.currentTab,expression:"currentTab === 0"}],staticStyle:{overflow:"hidden"}},[a("el-row",{attrs:{gutter:24}},[a("el-col",e._b({},"el-col",e.grid2,!1),[a("el-form-item",{attrs:{label:"选择商品:",prop:"image"}},[a("div",{staticClass:"upLoadPicBox",on:{click:function(t){return e.add()}}},[e.formValidate.image?a("div",{staticClass:"pictrue"},[a("img",{attrs:{src:e.formValidate.image}})]):a("div",{staticClass:"upLoad"},[a("i",{staticClass:"el-icon-camera cameraIconfont"})])])])],1)],1)],1),e._v(" "),a("div",{directives:[{name:"show",rawName:"v-show",value:1===e.currentTab,expression:"currentTab === 1"}]},[a("el-row",{attrs:{gutter:24}},[a("el-col",e._b({},"el-col",e.grid2,!1),[a("el-form-item",{attrs:{label:"商品主图:",prop:"image"}},[a("div",{staticClass:"upLoadPicBox",on:{click:function(t){return e.modalPicTap("1")}}},[e.formValidate.image?a("div",{staticClass:"pictrue"},[a("img",{attrs:{src:e.formValidate.image}})]):a("div",{staticClass:"upLoad"},[a("i",{staticClass:"el-icon-camera cameraIconfont"})])])])],1),e._v(" "),a("el-col",{attrs:{span:24}},[a("el-form-item",{attrs:{label:"商品轮播图:",prop:"slider_image"}},[a("div",{staticClass:"acea-row"},[e._l(e.formValidate.slider_image,(function(t,i){return a("div",{key:i,staticClass:"pictrue",attrs:{draggable:"false"},on:{dragstart:function(a){return e.handleDragStart(a,t)},dragover:function(a){return a.preventDefault(),e.handleDragOver(a,t)},dragenter:function(a){return e.handleDragEnter(a,t)},dragend:function(a){return e.handleDragEnd(a,t)}}},[a("img",{attrs:{src:t}}),e._v(" "),a("i",{staticClass:"el-icon-error btndel",on:{click:function(t){return e.handleRemove(i)}}})])})),e._v(" "),e.formValidate.slider_image.length<10?a("div",{staticClass:"upLoadPicBox",on:{click:function(t){return e.modalPicTap("2")}}},[a("div",{staticClass:"upLoad"},[a("i",{staticClass:"el-icon-camera cameraIconfont"})])]):e._e()],2)])],1),e._v(" "),a("el-col",{staticClass:"sp100"},[a("el-form-item",{attrs:{label:"商品名称:",prop:"store_name"}},[a("el-input",{attrs:{placeholder:"请输入商品名称"},model:{value:e.formValidate.store_name,callback:function(t){e.$set(e.formValidate,"store_name",t)},expression:"formValidate.store_name"}})],1)],1)],1),e._v(" "),a("el-row",{attrs:{gutter:24}},[a("el-col",{staticClass:"sp100"},[a("el-form-item",{attrs:{label:"预售活动简介:",prop:"store_info"}},[a("el-input",{attrs:{type:"textarea",rows:3,placeholder:"请输入秒杀活动简介"},model:{value:e.formValidate.store_info,callback:function(t){e.$set(e.formValidate,"store_info",t)},expression:"formValidate.store_info"}})],1)],1)],1),e._v(" "),a("el-row",{attrs:{gutter:24}},[a("el-col",{attrs:{span:24}},[a("el-form-item",{attrs:{label:"预售设置:"}},[a("el-radio-group",{on:{change:e.wayChange},model:{value:e.formValidate.presell_type,callback:function(t){e.$set(e.formValidate,"presell_type",t)},expression:"formValidate.presell_type"}},[a("el-radio",{staticClass:"radio",attrs:{label:1}},[e._v("全款预售")]),e._v(" "),a("el-radio",{attrs:{label:2}},[e._v("定金预售")])],1)],1)],1)],1),e._v(" "),a("el-row",{attrs:{gutter:24}},[a("el-col",e._b({},"el-col",e.grid2,!1),[a("el-form-item",{attrs:{label:"预售活动日期:",required:""}},[a("el-date-picker",{attrs:{type:"datetimerange","range-separator":"至","start-placeholder":"开始日期","end-placeholder":"结束日期",align:"right"},on:{change:e.onchangeTime},model:{value:e.timeVal,callback:function(t){e.timeVal=t},expression:"timeVal"}})],1)],1),e._v(" "),2===e.formValidate.presell_type?a("el-col",e._b({},"el-col",e.grid2,!1),[a("el-form-item",{attrs:{label:"尾款支付日期:",required:""}},[a("el-date-picker",{attrs:{type:"datetimerange","range-separator":"至","start-placeholder":"开始日期","end-placeholder":"结束日期",align:"right"},on:{change:e.onchangeTime2},model:{value:e.timeVal2,callback:function(t){e.timeVal2=t},expression:"timeVal2"}})],1)],1):e._e(),e._v(" "),a("el-col",{attrs:{span:24}},[a("el-form-item",{attrs:{label:"发货时间:",prop:"delivery_type"}},[a("div",{staticClass:"acea-row"},[1===e.formValidate.presell_type?a("el-select",{staticClass:"selWidthd1 mr20",attrs:{placeholder:"请选择"},model:{value:e.formValidate.delivery_type,callback:function(t){e.$set(e.formValidate,"delivery_type",t)},expression:"formValidate.delivery_type"}},e._l(e.deliveryTime,(function(e){return a("el-option",{key:e.date_id,attrs:{label:e.name,value:e.date_id}})})),1):a("span",{staticStyle:{"padding-right":"10px"}},[e._v("尾款支付后")]),e._v(" "),a("el-input-number",{staticClass:"mr20",staticStyle:{width:"150px"},attrs:{min:1,placeholder:"请输入天数"},model:{value:e.formValidate.delivery_day,callback:function(t){e.$set(e.formValidate,"delivery_day",t)},expression:"formValidate.delivery_day"}}),e._v(" 天之内\n ")],1)])],1),e._v(" "),a("el-col",e._b({},"el-col",e.grid2,!1),[a("el-form-item",{attrs:{label:"限购:"}},[a("el-input-number",{attrs:{min:0,placeholder:"请输入数量"},model:{value:e.formValidate.pay_count,callback:function(t){e.$set(e.formValidate,"pay_count",t)},expression:"formValidate.pay_count"}}),e._v(" 默认“0” ,为不限制购买数量\n ")],1)],1),e._v(" "),a("el-col",e._b({},"el-col",e.grid2,!1),[a("el-form-item",{attrs:{label:"活动状态:"}},[a("el-radio-group",{model:{value:e.formValidate.is_show,callback:function(t){e.$set(e.formValidate,"is_show",t)},expression:"formValidate.is_show"}},[a("el-radio",{staticClass:"radio",attrs:{label:0}},[e._v("关闭")]),e._v(" "),a("el-radio",{attrs:{label:1}},[e._v("开启")])],1)],1)],1),e._v(" "),a("el-col",{attrs:{span:24}},[a("el-form-item",{attrs:{label:"排序:"}},[a("el-input-number",{staticStyle:{width:"200px"},attrs:{placeholder:"请输入排序序号"},model:{value:e.formValidate.sort,callback:function(t){e.$set(e.formValidate,"sort",t)},expression:"formValidate.sort"}})],1)],1),e._v(" "),a("el-col",{attrs:{span:24}},[a("el-form-item",{attrs:{label:"送货方式:",prop:"delivery_way"}},[a("div",{staticClass:"acea-row"},[a("el-checkbox-group",{model:{value:e.formValidate.delivery_way,callback:function(t){e.$set(e.formValidate,"delivery_way",t)},expression:"formValidate.delivery_way"}},e._l(e.deliveryList,(function(t){return a("el-checkbox",{key:t.value,attrs:{label:t.value}},[e._v("\n "+e._s(t.name)+"\n ")])})),1)],1)])],1),e._v(" "),2==e.formValidate.delivery_way.length||1==e.formValidate.delivery_way.length&&2==e.formValidate.delivery_way[0]?a("el-col",{attrs:{span:24}},[a("el-form-item",{attrs:{label:"是否包邮:"}},[a("el-radio-group",{model:{value:e.formValidate.delivery_free,callback:function(t){e.$set(e.formValidate,"delivery_free",t)},expression:"formValidate.delivery_free"}},[a("el-radio",{staticClass:"radio",attrs:{label:0}},[e._v("否")]),e._v(" "),a("el-radio",{attrs:{label:1}},[e._v("是")])],1)],1)],1):e._e(),e._v(" "),0==e.formValidate.delivery_free&&(2==e.formValidate.delivery_way.length||1==e.formValidate.delivery_way.length&&2==e.formValidate.delivery_way[0])?a("el-col",{attrs:{span:24}},[a("el-form-item",{attrs:{label:"运费模板:",prop:"temp_id"}},[a("div",{staticClass:"acea-row"},[a("el-select",{staticClass:"selWidthd mr20",attrs:{placeholder:"请选择"},model:{value:e.formValidate.temp_id,callback:function(t){e.$set(e.formValidate,"temp_id",t)},expression:"formValidate.temp_id"}},e._l(e.shippingList,(function(e){return a("el-option",{key:e.shipping_template_id,attrs:{label:e.name,value:e.shipping_template_id}})})),1),e._v(" "),a("el-button",{staticClass:"mr15",attrs:{size:"small"},on:{click:e.addTem}},[e._v("添加运费模板")])],1)])],1):e._e(),e._v(" "),e.labelList.length?a("el-col",{attrs:{span:24}},[a("el-form-item",{attrs:{label:"商品标签:"}},[a("el-select",{staticClass:"selWidthd",attrs:{multiple:"",placeholder:"请选择"},model:{value:e.formValidate.mer_labels,callback:function(t){e.$set(e.formValidate,"mer_labels",t)},expression:"formValidate.mer_labels"}},e._l(e.labelList,(function(e){return a("el-option",{key:e.id,attrs:{label:e.name,value:e.id}})})),1)],1)],1):e._e(),e._v(" "),a("el-col",{attrs:{span:24}},[a("el-form-item",{attrs:{label:"平台保障服务:"}},[a("div",{staticClass:"acea-row"},[a("el-select",{staticClass:"selWidthd mr20",attrs:{placeholder:"请选择",clearable:""},model:{value:e.formValidate.guarantee_template_id,callback:function(t){e.$set(e.formValidate,"guarantee_template_id",t)},expression:"formValidate.guarantee_template_id"}},e._l(e.guaranteeList,(function(e){return a("el-option",{key:e.guarantee_template_id,attrs:{label:e.template_name,value:e.guarantee_template_id}})})),1),e._v(" "),a("el-button",{staticClass:"mr15",attrs:{size:"small"},on:{click:e.addServiceTem}},[e._v("添加服务说明模板")])],1)])],1)],1),e._v(" "),a("el-row",{attrs:{gutter:24}}),e._v(" "),a("el-row",{attrs:{gutter:24}},[a("el-col",{attrs:{xl:24,lg:24,md:24,sm:24,xs:24}},[0===e.formValidate.spec_type?a("el-form-item",[a("el-table",{staticClass:"tabNumWidth",attrs:{data:e.OneattrValue,border:"",size:"mini"}},[a("el-table-column",{attrs:{align:"center",label:"图片","min-width":"80"},scopedSlots:e._u([{key:"default",fn:function(t){return[a("div",{staticClass:"upLoadPicBox",on:{click:function(t){return e.modalPicTap("1","dan","pi")}}},[e.formValidate.image?a("div",{staticClass:"pictrue tabPic"},[a("img",{attrs:{src:t.row.image}})]):a("div",{staticClass:"upLoad tabPic"},[a("i",{staticClass:"el-icon-camera cameraIconfont"})])])]}}],null,!1,1357914119)}),e._v(" "),a("el-table-column",{attrs:{align:"center",label:"市场价","min-width":"80"},scopedSlots:e._u([{key:"default",fn:function(t){return[a("span",[e._v(e._s(t.row["price"]))])]}}],null,!1,1703924291)}),e._v(" "),a("el-table-column",{attrs:{align:"center",label:"预售价","min-width":"80"},scopedSlots:e._u([{key:"default",fn:function(t){return[a("el-input",{staticClass:"priceBox",attrs:{type:"number",min:0,max:t.row["price"]},on:{blur:function(a){return e.limitPrice(t.row)}},model:{value:t.row["presell_price"],callback:function(a){e.$set(t.row,"presell_price",e._n(a))},expression:"scope.row['presell_price']"}})]}}],null,!1,1536945194)}),e._v(" "),2===e.formValidate.presell_type?a("el-table-column",{attrs:{align:"center",label:"预售定金","min-width":"80"},scopedSlots:e._u([{key:"default",fn:function(t){return[a("el-input",{staticClass:"priceBox",attrs:{type:"number",min:0,max:.2*t.row["price"]},on:{blur:function(a){return e.restrictedRange(t.row)}},model:{value:t.row["down_price"],callback:function(a){e.$set(t.row,"down_price",a)},expression:"scope.row['down_price']"}})]}}],null,!1,4113557029)}):e._e(),e._v(" "),2===e.formValidate.presell_type?a("el-table-column",{attrs:{align:"center",label:"尾款","min-width":"80"},scopedSlots:e._u([{key:"default",fn:function(t){return[a("span",[e._v(e._s(t.row["presell_price"]&&t.row["down_price"]?(t.row["presell_price"]-t.row["down_price"]).toFixed(2):t.row["presell_price"]))])]}}],null,!1,1815888757)}):e._e(),e._v(" "),a("el-table-column",{attrs:{align:"center",label:"成本价","min-width":"80"},scopedSlots:e._u([{key:"default",fn:function(t){return[a("span",[e._v(e._s(t.row["cost"]))])]}}],null,!1,4236060069)}),e._v(" "),a("el-table-column",{attrs:{align:"center",label:"库存","min-width":"80"},scopedSlots:e._u([{key:"default",fn:function(t){return[a("span",[e._v(e._s(t.row["old_stock"]))])]}}],null,!1,1655454038)}),e._v(" "),a("el-table-column",{attrs:{align:"center",label:"限量","min-width":"80"},scopedSlots:e._u([{key:"default",fn:function(t){return[a("el-input",{staticClass:"priceBox",attrs:{type:"number",max:t.row["old_stock"],min:0},on:{change:function(a){return e.limitInventory(t.row)}},model:{value:t.row["stock"],callback:function(a){e.$set(t.row,"stock",e._n(a))},expression:"scope.row['stock']"}})]}}],null,!1,3327557396)}),e._v(" "),a("el-table-column",{attrs:{align:"center",label:"商品编号","min-width":"80"},scopedSlots:e._u([{key:"default",fn:function(t){return[a("span",[e._v(e._s(t.row["bar_code"]))])]}}],null,!1,2057585133)}),e._v(" "),a("el-table-column",{attrs:{align:"center",label:"重量(KG)","min-width":"80"},scopedSlots:e._u([{key:"default",fn:function(t){return[a("span",[e._v(e._s(t.row["weight"]))])]}}],null,!1,1649766542)}),e._v(" "),a("el-table-column",{attrs:{align:"center",label:"体积(m³)","min-width":"80"},scopedSlots:e._u([{key:"default",fn:function(t){return[a("span",[e._v(e._s(t.row["volume"]))])]}}],null,!1,2118841126)})],1)],1):e._e()],1)],1),e._v(" "),a("el-row",{attrs:{gutter:24}},[1===e.formValidate.spec_type?a("el-form-item",{staticClass:"labeltop",attrs:{label:"规格列表:"}},[a("el-table",{ref:"multipleSelection",attrs:{data:e.ManyAttrValue,"tooltip-effect":"dark","row-key":function(e){return e.id}},on:{"selection-change":e.handleSelectionChange}},[a("el-table-column",{attrs:{align:"center",type:"selection","reserve-selection":!0,"min-width":"50"}}),e._v(" "),e.manyTabDate?e._l(e.manyTabDate,(function(t,i){return a("el-table-column",{key:i,attrs:{align:"center",label:e.manyTabTit[i].title,"min-width":"80"},scopedSlots:e._u([{key:"default",fn:function(t){return[a("span",{staticClass:"priceBox",domProps:{textContent:e._s(t.row[i])}})]}}],null,!0)})})):e._e(),e._v(" "),a("el-table-column",{attrs:{align:"center",label:"图片","min-width":"80"},scopedSlots:e._u([{key:"default",fn:function(t){return[a("div",{staticClass:"upLoadPicBox",on:{click:function(a){return e.modalPicTap("1","duo",t.$index)}}},[t.row.image?a("div",{staticClass:"pictrue tabPic"},[a("img",{attrs:{src:t.row.image}})]):a("div",{staticClass:"upLoad tabPic"},[a("i",{staticClass:"el-icon-camera cameraIconfont"})])])]}}],null,!1,3478746955)}),e._v(" "),a("el-table-column",{attrs:{align:"center",label:"市场价","min-width":"80"},scopedSlots:e._u([{key:"default",fn:function(t){return[a("span",[e._v(e._s(t.row["price"]))])]}}],null,!1,1703924291)}),e._v(" "),a("el-table-column",{attrs:{align:"center",label:"预售价","min-width":"80"},scopedSlots:e._u([{key:"default",fn:function(t){return[a("el-input",{staticClass:"priceBox",attrs:{type:"number",min:0,max:t.row["price"]},on:{blur:function(a){return e.limitPrice(t.row)}},model:{value:t.row["presell_price"],callback:function(a){e.$set(t.row,"presell_price",e._n(a))},expression:" scope.row['presell_price']"}})]}}],null,!1,15636458)}),e._v(" "),2===e.formValidate.presell_type?a("el-table-column",{attrs:{align:"center",label:"预售定金","min-width":"80"},scopedSlots:e._u([{key:"default",fn:function(t){return[a("el-input",{staticClass:"priceBox",attrs:{type:"number",min:0,max:.2*t.row["price"]},model:{value:t.row["down_price"],callback:function(a){e.$set(t.row,"down_price",a)},expression:"scope.row['down_price']"}})]}}],null,!1,905095597)}):e._e(),e._v(" "),2===e.formValidate.presell_type?a("el-table-column",{attrs:{align:"center",label:"尾款","min-width":"80"},scopedSlots:e._u([{key:"default",fn:function(t){return[a("span",[e._v(e._s(t.row["presell_price"]&&t.row["down_price"]?t.row["presell_price"]-t.row["down_price"]:t.row["presell_price"]))])]}}],null,!1,3261998532)}):e._e(),e._v(" "),a("el-table-column",{attrs:{align:"center",label:"成本价","min-width":"80"},scopedSlots:e._u([{key:"default",fn:function(t){return[a("span",[e._v(e._s(t.row["cost"]))])]}}],null,!1,4236060069)}),e._v(" "),a("el-table-column",{attrs:{align:"center",label:"库存","min-width":"80"},scopedSlots:e._u([{key:"default",fn:function(t){return[a("span",[e._v(e._s(t.row["old_stock"]))])]}}],null,!1,1655454038)}),e._v(" "),a("el-table-column",{attrs:{align:"center",label:"限量","min-width":"80"},scopedSlots:e._u([{key:"default",fn:function(t){return[a("el-input",{staticClass:"priceBox",attrs:{type:"number",min:0,max:t.row["old_stock"]},model:{value:t.row["stock"],callback:function(a){e.$set(t.row,"stock",e._n(a))},expression:"scope.row['stock']"}})]}}],null,!1,4025255182)}),e._v(" "),a("el-table-column",{attrs:{align:"center",label:"商品编号","min-width":"80"},scopedSlots:e._u([{key:"default",fn:function(t){return[a("span",[e._v(e._s(t.row["bar_code"]))])]}}],null,!1,2057585133)}),e._v(" "),a("el-table-column",{attrs:{align:"center",label:"重量(KG)","min-width":"80"},scopedSlots:e._u([{key:"default",fn:function(t){return[a("span",[e._v(e._s(t.row["weight"]))])]}}],null,!1,1649766542)}),e._v(" "),a("el-table-column",{attrs:{align:"center",label:"体积(m³)","min-width":"80"},scopedSlots:e._u([{key:"default",fn:function(t){return[a("span",[e._v(e._s(t.row["volume"]))])]}}],null,!1,2118841126)})],2)],1):e._e()],1)],1),e._v(" "),a("el-row",{directives:[{name:"show",rawName:"v-show",value:2===e.currentTab,expression:"currentTab === 2"}]},[a("el-col",{attrs:{span:24}},[a("el-form-item",{attrs:{label:"商品详情:"}},[a("ueditorFrom",{attrs:{content:e.formValidate.content},model:{value:e.formValidate.content,callback:function(t){e.$set(e.formValidate,"content",t)},expression:"formValidate.content"}})],1)],1)],1),e._v(" "),a("el-form-item",{staticStyle:{"margin-top":"30px"}},[a("el-button",{directives:[{name:"show",rawName:"v-show",value:e.currentTab>0,expression:"currentTab>0"}],staticClass:"submission",attrs:{type:"primary",size:"small"},on:{click:e.handleSubmitUp}},[e._v("上一步")]),e._v(" "),a("el-button",{directives:[{name:"show",rawName:"v-show",value:0==e.currentTab,expression:"currentTab == 0"}],staticClass:"submission",attrs:{type:"primary",size:"small"},on:{click:function(t){return e.handleSubmitNest1("formValidate")}}},[e._v("下一步")]),e._v(" "),a("el-button",{directives:[{name:"show",rawName:"v-show",value:1==e.currentTab,expression:"currentTab == 1"}],staticClass:"submission",attrs:{type:"primary",size:"small"},on:{click:function(t){return e.handleSubmitNest2("formValidate")}}},[e._v("下一步")]),e._v(" "),a("el-button",{directives:[{name:"show",rawName:"v-show",value:2===e.currentTab,expression:"currentTab===2"}],staticClass:"submission",attrs:{loading:e.loading,type:"primary",size:"small"},on:{click:function(t){return e.handleSubmit("formValidate")}}},[e._v("提交")]),e._v(" "),a("el-button",{directives:[{name:"show",rawName:"v-show",value:2===e.currentTab,expression:"currentTab===2"}],staticClass:"submission",attrs:{loading:e.loading,type:"primary",size:"small"},on:{click:function(t){return e.handlePreview()}}},[e._v("预览")])],1)],1)],1),e._v(" "),a("goods-list",{ref:"goodsList",attrs:{resellShow:!0},on:{getProduct:e.getProduct}}),e._v(" "),a("guarantee-service",{ref:"serviceGuarantee",on:{"get-list":e.getGuaranteeList}}),e._v(" "),e.previewVisible?a("div",[a("div",{staticClass:"bg",on:{click:function(t){t.stopPropagation(),e.previewVisible=!1}}}),e._v(" "),e.previewVisible?a("preview-box",{ref:"previewBox",attrs:{"product-type":2,"preview-key":e.previewKey}}):e._e()],1):e._e()],1)},r=[],l=a("2909"),n=(a("7f7f"),a("c7eb")),s=(a("c5f6"),a("96cf"),a("1da1")),o=(a("8615"),a("55dd"),a("ac6a"),a("6762"),a("2fdb"),a("ef0d")),c=a("6625"),d=a.n(c),u=a("7719"),m=a("ae43"),p=a("8c98"),_=a("c4c8"),f=a("83d6"),g={product_id:"",image:"",slider_image:[],store_name:"",store_info:"",start_day:"",end_day:"",start_time:"",end_time:"",is_open_recommend:1,is_open_state:1,is_show:1,presell_type:1,keyword:"",brand_id:"",cate_id:"",mer_cate_id:[],pay_count:0,integral:0,sort:0,is_good:0,temp_id:"",guarantee_template_id:"",preSale_date:"",finalPayment_date:"",delivery_type:1,delivery_day:10,delivery_way:[],mer_labels:[],delivery_free:0,attrValue:[{image:"",price:null,down_price:null,presell_price:null,cost:null,ot_price:null,old_stock:null,stock:null,bar_code:"",weight:null,volume:null}],attr:[],extension_type:0,content:"",spec_type:0,is_gift_bag:0},h=[{name:"店铺推荐",value:"is_good"}],v={name:"PresellProductAdd",components:{ueditorFrom:o["a"],goodsList:u["a"],VueUeditorWrap:d.a,guaranteeService:m["a"],previewBox:p["a"]},data:function(){return{pickerOptions:{disabledDate:function(e){return e.getTime()>Date.now()}},timeVal:"",timeVal2:"",dialogVisible:!1,product_id:"",multipleSelection:[],optionsCate:{value:"store_category_id",label:"cate_name",children:"children",emitPath:!1},roterPre:f["roterPre"],selectRule:"",checkboxGroup:[],recommend:h,tabs:[],fullscreenLoading:!1,props:{emitPath:!1},propsMer:{emitPath:!1,multiple:!0},active:0,OneattrValue:[Object.assign({},g.attrValue[0])],ManyAttrValue:[Object.assign({},g.attrValue[0])],ruleList:[],merCateList:[],categoryList:[],shippingList:[],guaranteeList:[],deliveryList:[],labelList:[],deliveryTime:[{name:"支付成功",date_id:1},{name:"预售结束",date_id:2}],spikeTimeList:[],BrandList:[],formValidate:Object.assign({},g),maxStock:"",addNum:0,singleSpecification:{},multipleSpecifications:[],formDynamics:{template_name:"",template_value:[]},manyTabTit:{},manyTabDate:{},grid2:{lg:10,md:12,sm:24,xs:24},formDynamic:{attrsName:"",attrsVal:""},isBtn:!1,manyFormValidate:[],images:[],currentTab:0,isChoice:"",grid:{xl:8,lg:8,md:12,sm:24,xs:24},loading:!1,ruleValidate:{store_name:[{required:!0,message:"请输入商品名称",trigger:"blur"}],timeVal:[{required:!0,message:"请选择预售活动日期",trigger:"blur"}],timeVal2:[{required:!0,message:"请输入尾款支付日期",trigger:"blur"}],mer_cate_id:[{required:!0,message:"请选择商户分类",trigger:"change",type:"array",min:"1"}],cate_id:[{required:!0,message:"请选择平台分类",trigger:"change"}],keyword:[{required:!0,message:"请输入商品关键字",trigger:"blur"}],pay_count:[{required:!0,message:"请输入限购量",trigger:"blur"}],store_info:[{required:!0,message:"请输入秒杀活动简介",trigger:"blur"}],temp_id:[{required:!0,message:"请选择运费模板",trigger:"change"}],delivery_type:[{required:!0,message:"请选择发货时间",trigger:"change"}],image:[{required:!0,message:"请上传商品图",trigger:"change"}],slider_image:[{required:!0,message:"请上传商品轮播图",type:"array",trigger:"change"}],delivery_way:[{required:!0,message:"请选择送货方式",trigger:"change"}]},attrInfo:{},keyNum:0,extensionStatus:0,previewVisible:!1,previewKey:"",deliveryType:[]}},computed:{attrValue:function(){var e=Object.assign({},g.attrValue[0]);return delete e.image,e},oneFormBatch:function(){var e=[Object.assign({},g.attrValue[0])];return delete e[0].bar_code,e}},watch:{"formValidate.attr":{handler:function(e){1===this.formValidate.spec_type&&this.watCh(e)},immediate:!1,deep:!0}},created:function(){this.tempRoute=Object.assign({},this.$route),this.$route.params.id&&1===this.formValidate.spec_type&&this.$watch("formValidate.attr",this.watCh)},mounted:function(){var e=this;this.formValidate.slider_image=[],this.$route.params.id?(this.setTagsViewTitle(),this.getInfo(this.$route.params.id),this.currentTab=1):this.formValidate.attr.map((function(t){e.$set(t,"inputVisible",!1)})),this.getCategorySelect(),this.getCategoryList(),this.getBrandListApi(),this.getShippingList(),this.getGuaranteeList(),this.productCon(),this.getLabelLst(),this.$store.dispatch("settings/setEdit",!0)},methods:{getLabelLst:function(){var e=this;Object(_["v"])().then((function(t){e.labelList=t.data})).catch((function(t){e.$message.error(t.message)}))},productCon:function(){var e=this;Object(_["W"])().then((function(t){e.deliveryType=t.data.delivery_way.map(String),2==e.deliveryType.length?e.deliveryList=[{value:"1",name:"到店自提"},{value:"2",name:"快递配送"}]:1==e.deliveryType.length&&"1"==e.deliveryType[0]?e.deliveryList=[{value:"1",name:"到店自提"}]:e.deliveryList=[{value:"2",name:"快递配送"}]})).catch((function(t){e.$message.error(t.message)}))},wayChange:function(e){this.formValidate.presell_type=e},restrictedRange:function(e){parseFloat(e.down_price)>.2*e.presell_price&&(e.down_price=.2*e.presell_price)},limitInventory:function(e){e.stock-e.old_stock>0&&(e.stock=e.old_stock)},limitPrice:function(e){e.presell_price-e.price>0&&(e.presell_price=e.price)},add:function(){this.$refs.goodsList.dialogVisible=!0},getProduct:function(e){this.formValidate.image=e.src,this.product_id=e.id,console.log(this.product_id)},handleSelectionChange:function(e){this.multipleSelection=e},onchangeTime:function(e){this.timeVal=e,console.log(this.moment(e[0]).format("YYYY-MM-DD HH:mm:ss")),this.formValidate.start_time=e?this.moment(e[0]).format("YYYY-MM-DD HH:mm:ss"):"",this.formValidate.end_time=e?this.moment(e[1]).format("YYYY-MM-DD HH:mm:ss"):""},onchangeTime2:function(e){this.timeVal2=e,this.formValidate.final_start_time=e?this.moment(e[0]).format("YYYY-MM-DD HH:mm:ss"):"",this.formValidate.final_end_time=e?this.moment(e[1]).format("YYYY-MM-DD HH:mm:ss"):""},setTagsViewTitle:function(){var e="编辑商品",t=Object.assign({},this.tempRoute,{title:"".concat(e,"-").concat(this.$route.params.id)});this.$store.dispatch("tagsView/updateVisitedView",t)},onChangeGroup:function(){this.checkboxGroup.includes("is_good")?this.formValidate.is_good=1:this.formValidate.is_good=0},watCh:function(e){var t=this,a={},i={};this.formValidate.attr.forEach((function(e,t){a["value"+t]={title:e.value},i["value"+t]=""})),this.ManyAttrValue.forEach((function(e,a){var i=Object.values(e.detail).sort().join("/");t.attrInfo[i]&&(t.ManyAttrValue[a]=t.attrInfo[i])})),this.attrInfo={},this.ManyAttrValue.forEach((function(e){t.attrInfo[Object.values(e.detail).sort().join("/")]=e})),this.manyTabTit=a,this.manyTabDate=i,console.log(this.manyTabTit),console.log(this.manyTabDate)},addTem:function(){var e=this;this.$modalTemplates(0,(function(){e.getShippingList()}))},addServiceTem:function(){this.$refs.serviceGuarantee.add()},getCategorySelect:function(){var e=this;Object(_["r"])().then((function(t){e.merCateList=t.data})).catch((function(t){e.$message.error(t.message)}))},getCategoryList:function(){var e=this;Object(_["q"])().then((function(t){e.categoryList=t.data})).catch((function(t){e.$message.error(t.message)}))},getBrandListApi:function(){var e=this;Object(_["p"])().then((function(t){e.BrandList=t.data})).catch((function(t){e.$message.error(t.message)}))},productGetRule:function(){var e=this;Object(_["Nb"])().then((function(t){e.ruleList=t.data}))},getShippingList:function(){var e=this;Object(_["wb"])().then((function(t){e.shippingList=t.data}))},getGuaranteeList:function(){var e=this;Object(_["B"])().then((function(t){e.guaranteeList=t.data}))},getInfo:function(e){var t=this;this.fullscreenLoading=!0,this.$route.params.id?Object(_["O"])(e).then(function(){var e=Object(s["a"])(Object(n["a"])().mark((function e(a){var i,r;return Object(n["a"])().wrap((function(e){while(1)switch(e.prev=e.next){case 0:i=a.data,t.formValidate={product_id:i.product_id,guarantee_template_id:i.product.guarantee_template_id,image:i.product.image,slider_image:i.product.slider_image,store_name:i.store_name,store_info:i.store_info,presell_type:i.presell_type?i.presell_type:1,delivery_type:i.delivery_type?i.delivery_type:1,delivery_day:i.delivery_day?i.delivery_day:10,start_time:i.start_time?i.start_time:"",end_time:i.end_time?i.end_time:"",final_start_time:i.final_start_time?i.final_start_time:"",final_end_time:i.final_end_time?i.final_end_time:"",brand_id:i.product.brand_id,cate_id:i.cate_id?i.cate_id:"",mer_cate_id:i.mer_cate_id,pay_count:i.pay_count,sort:i.product.sort,is_good:i.product.is_good,temp_id:i.product.temp_id,is_show:i.is_show,attr:i.product.attr,extension_type:i.extension_type,content:i.product.content.content,spec_type:i.product.spec_type,is_gift_bag:i.product.is_gift_bag,delivery_way:i.product.delivery_way&&i.product.delivery_way.length?i.product.delivery_way.map(String):t.deliveryType,delivery_free:i.delivery_free?i.delivery_free:0,mer_labels:i.mer_labels&&i.mer_labels.length?i.mer_labels.map(Number):[]},0===t.formValidate.spec_type?(t.OneattrValue=i.product.attrValue,t.OneattrValue.forEach((function(e,a){t.attrInfo[Object.values(e.detail).sort().join("/")]=e,t.$set(t.OneattrValue[a],"down_price",e.presellSku?e.presellSku.down_price:0),t.$set(t.OneattrValue[a],"presell_price",e.presellSku?e.presellSku.presell_price:e.price),t.$set(t.OneattrValue[a],"stock",e.presellSku?e.presellSku.stock:e.old_stock)})),t.singleSpecification=JSON.parse(JSON.stringify(i.product.attrValue)),t.formValidate.attrValue=t.OneattrValue):(r=[],t.ManyAttrValue=i.product.attrValue,t.ManyAttrValue.forEach((function(e,a){t.attrInfo[Object.values(e.detail).sort().join("/")]=e,t.$set(t.ManyAttrValue[a],"down_price",e.presellSku?e.presellSku.down_price:0),t.$set(t.ManyAttrValue[a],"presell_price",e.presellSku?e.presellSku.presell_price:e.price),t.$set(t.ManyAttrValue[a],"stock",e.presellSku?e.presellSku.stock:e.old_stock),e.presellSku&&(t.multipleSpecifications=JSON.parse(JSON.stringify(i.product.attrValue)),r.push(e))})),t.multipleSpecifications=JSON.parse(JSON.stringify(r)),t.$nextTick((function(){r.forEach((function(e){t.$refs.multipleSelection.toggleRowSelection(e,!0)}))})),t.formValidate.attrValue=t.multipleSelection),console.log(t.ManyAttrValue),t.fullscreenLoading=!1,t.timeVal=[new Date(t.formValidate.start_time),new Date(t.formValidate.end_time)],t.timeVal2=[new Date(t.formValidate.final_start_time),new Date(t.formValidate.final_end_time)],t.$store.dispatch("settings/setEdit",!0);case 8:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}()).catch((function(e){t.fullscreenLoading=!1,t.$message.error(e.message)})):Object(_["cb"])(e).then(function(){var e=Object(s["a"])(Object(n["a"])().mark((function e(a){var i;return Object(n["a"])().wrap((function(e){while(1)switch(e.prev=e.next){case 0:i=a.data,t.formValidate={product_id:i.product_id,image:i.image,slider_image:i.slider_image,store_name:i.store_name,store_info:i.store_info,presell_type:1,delivery_type:i.delivery_type?i.delivery_type:1,delivery_day:i.delivery_day?i.delivery_day:10,start_time:"",end_time:"",final_start_time:"",final_end_time:"",brand_id:i.brand_id,cate_id:i.cate_id,mer_cate_id:i.mer_cate_id,pay_count:i.pay_count?i.paycount:0,sort:i.sort,is_good:i.is_good,temp_id:i.temp_id,guarantee_template_id:i.guarantee_template_id,is_show:i.is_show,attr:i.attr,extension_type:i.extension_type,content:i.content,spec_type:i.spec_type,is_gift_bag:i.is_gift_bag,delivery_way:i.delivery_way&&i.delivery_way.length?i.delivery_way.map(String):t.deliveryType,delivery_free:i.delivery_free?i.delivery_free:0,mer_labels:i.mer_labels&&i.mer_labels.length?i.mer_labels.map(Number):[]},t.timeVal=t.timeVal2=[],0===t.formValidate.spec_type?(t.OneattrValue=i.attrValue,t.OneattrValue.forEach((function(e,a){t.$set(t.OneattrValue[a],"down_price",0),t.$set(t.OneattrValue[a],"presell_price",t.OneattrValue[a].price)})),t.singleSpecification=JSON.parse(JSON.stringify(i.attrValue)),t.formValidate.attrValue=t.OneattrValue):(t.ManyAttrValue=i.attrValue,t.multipleSpecifications=JSON.parse(JSON.stringify(i.attrValue)),t.ManyAttrValue.forEach((function(e,a){t.attrInfo[Object.values(e.detail).sort().join("/")]=e,t.$set(t.ManyAttrValue[a],"down_price",0),t.$set(t.ManyAttrValue[a],"presell_price",t.ManyAttrValue[a].price)})),t.multipleSelection=i.attrValue,t.$nextTick((function(){i.attrValue.forEach((function(e){t.$refs.multipleSelection.toggleRowSelection(e,!0)}))}))),1===t.formValidate.is_good&&t.checkboxGroup.push("is_good"),t.fullscreenLoading=!1;case 6:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}()).catch((function(e){t.fullscreenLoading=!1,t.$message.error(e.message)}))},handleRemove:function(e){this.formValidate.slider_image.splice(e,1)},modalPicTap:function(e,t,a){var i=this,r=[];this.$modalUpload((function(l){"1"!==e||t||(i.formValidate.image=l[0],i.OneattrValue[0].image=l[0]),"2"!==e||t||l.map((function(e){r.push(e.attachment_src),i.formValidate.slider_image.push(e),i.formValidate.slider_image.length>10&&(i.formValidate.slider_image.length=10)})),"1"===e&&"dan"===t&&(i.OneattrValue[0].image=l[0]),"1"===e&&"duo"===t&&(i.ManyAttrValue[a].image=l[0]),"1"===e&&"pi"===t&&(i.oneFormBatch[0].image=l[0])}),e)},handleSubmitUp:function(){this.currentTab--<0&&(this.currentTab=0)},handleSubmitNest1:function(e){this.formValidate.image?(this.currentTab++,this.$route.params.id||this.getInfo(this.product_id)):this.$message.warning("请选择商品!")},handleSubmitNest2:function(e){var t=this;1===this.formValidate.spec_type?this.formValidate.attrValue=this.multipleSelection:this.formValidate.attrValue=this.OneattrValue,console.log(this.formValidate),this.$refs[e].validate((function(e){if(e){if(!t.formValidate.store_name||!t.formValidate.store_info||!t.formValidate.image||!t.formValidate.slider_image)return void t.$message.warning("请填写完整商品信息!");if(!t.formValidate.attrValue||0===t.formValidate.attrValue.length)return void t.$message.warning("请选择商品规格!");if(!t.formValidate.delivery_day)return void t.$message.warning("请填写发货时间!");t.currentTab++}}))},handleSubmit:function(e){var t=this;this.$refs[e].validate((function(a){a?(t.$store.dispatch("settings/setEdit",!1),t.fullscreenLoading=!0,t.loading=!0,delete t.formValidate.preSale_date,delete t.formValidate.finalPayment_date,console.log(t.formValidate),t.$route.params.id?(console.log(t.ManyAttrValue),1===t.formValidate.presell_type&&(t.formValidate.final_start_time=t.formValidate.final_end_time=""),Object(_["Q"])(t.$route.params.id,t.formValidate).then(function(){var a=Object(s["a"])(Object(n["a"])().mark((function a(i){return Object(n["a"])().wrap((function(a){while(1)switch(a.prev=a.next){case 0:t.fullscreenLoading=!1,t.$message.success(i.message),t.$router.push({path:t.roterPre+"/marketing/presell/list"}),t.$refs[e].resetFields(),t.formValidate.slider_image=[],t.loading=!1;case 6:case"end":return a.stop()}}),a)})));return function(e){return a.apply(this,arguments)}}()).catch((function(e){t.fullscreenLoading=!1,t.loading=!1,t.$message.error(e.message)}))):Object(_["N"])(t.formValidate).then(function(){var a=Object(s["a"])(Object(n["a"])().mark((function a(i){return Object(n["a"])().wrap((function(a){while(1)switch(a.prev=a.next){case 0:t.fullscreenLoading=!1,t.$message.success(i.message),t.$router.push({path:t.roterPre+"/marketing/presell/list"}),t.$refs[e].resetFields(),t.formValidate.slider_image=[],t.loading=!1;case 6:case"end":return a.stop()}}),a)})));return function(e){return a.apply(this,arguments)}}()).catch((function(e){t.fullscreenLoading=!1,t.loading=!1,t.$message.error(e.message)}))):t.formValidate.store_name&&t.formValidate.store_info&&t.formValidate.image&&t.formValidate.slider_image||t.$message.warning("请填写完整商品信息!")}))},handlePreview:function(){var e=this;delete this.formValidate.preSale_date,delete this.formValidate.finalPayment_date,1===this.formValidate.presell_type&&(this.formValidate.final_start_time=this.formValidate.final_end_time=""),Object(_["S"])(this.formValidate).then(function(){var t=Object(s["a"])(Object(n["a"])().mark((function t(a){return Object(n["a"])().wrap((function(t){while(1)switch(t.prev=t.next){case 0:e.previewVisible=!0,e.previewKey=a.data.preview_key;case 2:case"end":return t.stop()}}),t)})));return function(e){return t.apply(this,arguments)}}()).catch((function(t){e.$message.error(t.message)}))},validate:function(e,t,a){!1===t&&this.$message.warning(a)},handleDragStart:function(e,t){this.dragging=t},handleDragEnd:function(e,t){this.dragging=null},handleDragOver:function(e){e.dataTransfer.dropEffect="move"},handleDragEnter:function(e,t){if(e.dataTransfer.effectAllowed="move",t!==this.dragging){var a=Object(l["a"])(this.formValidate.slider_image),i=a.indexOf(this.dragging),r=a.indexOf(t);a.splice.apply(a,[r,0].concat(Object(l["a"])(a.splice(i,1)))),this.formValidate.slider_image=a}}}},b=v,y=(a("9891"),a("2877")),w=Object(y["a"])(b,i,r,!1,null,"48d0963f",null);t["default"]=w.exports}}]); \ No newline at end of file diff --git a/public/mer/js/chunk-03944393.ff24af19.js b/public/mer/js/chunk-03944393.ff24af19.js new file mode 100644 index 00000000..74d2ed6c --- /dev/null +++ b/public/mer/js/chunk-03944393.ff24af19.js @@ -0,0 +1 @@ +(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-03944393"],{"26f0":function(t,e,i){"use strict";i("78e5")},"283f":function(t,e,i){"use strict";i.r(e);var l=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("div",{staticClass:"divBox"},[i("div",{staticClass:"header clearfix"},[i("div",{staticClass:"filter-container"},[i("div",{staticClass:"demo-input-suffix acea-row"},[i("span",{staticClass:"seachTiele"},[t._v("商品搜索:")]),t._v(" "),i("el-input",{staticClass:"selWidth",attrs:{placeholder:"请输入商品名称,关键字,产品编号",size:"small"},model:{value:t.tableFrom.keyword,callback:function(e){t.$set(t.tableFrom,"keyword",e)},expression:"tableFrom.keyword"}},[i("el-button",{staticClass:"el-button-solt",attrs:{slot:"append",icon:"el-icon-search",size:"small"},on:{click:function(e){return t.getList()}},slot:"append"})],1)],1)])]),t._v(" "),i("el-table",{directives:[{name:"loading",rawName:"v-loading",value:t.listLoading,expression:"listLoading"}],ref:"multipleSelection",staticStyle:{width:"100%"},attrs:{data:t.tableData.data,size:"mini","highlight-current-row":"","row-key":function(t){return t.id}},on:{"selection-change":t.handleSelectionChange}},[i("el-table-column",{attrs:{type:"selection",width:"55"}}),t._v(" "),i("el-table-column",{attrs:{prop:"broadcast_goods_id",label:"ID","min-width":"50"}}),t._v(" "),i("el-table-column",{attrs:{label:"商品图","min-width":"80"},scopedSlots:t._u([{key:"default",fn:function(t){return[i("div",{staticClass:"demo-image__preview"},[i("el-image",{staticStyle:{width:"36px",height:"36px"},attrs:{src:t.row.cover_img,"preview-src-list":[t.row.cover_img]}})],1)]}}])}),t._v(" "),i("el-table-column",{attrs:{prop:"name",label:"商品名称","min-width":"200"}})],1),t._v(" "),i("div",{staticClass:"block mb20"},[i("el-pagination",{attrs:{"page-sizes":[20,40,60,80],"page-size":t.tableFrom.limit,"current-page":t.tableFrom.page,layout:"total, sizes, prev, pager, next, jumper",total:t.tableData.total},on:{"size-change":t.handleSizeChange,"current-change":t.pageChange}})],1)],1)},a=[],n=(i("ac6a"),i("b7be")),o=i("83d6"),s={name:"GoodList",data:function(){return{templateRadio:0,merCateList:[],roterPre:o["roterPre"],listLoading:!0,tableData:{data:[],total:0},tableFrom:{page:1,limit:20,status_tag:1,keyword:"",mer_valid:1},multipleSelectionAll:window.form_create_helper.get(this.$route.query.field)||[],multipleSelection:[],checked:[],broadcast_room_id:""}},mounted:function(){this.getList();var t=[];this.multipleSelectionAll=t,form_create_helper.onOk(this.unloadHandler)},methods:{unloadHandler:function(){this.multipleSelectionAll.length>0?this.$route.query.field&&(form_create_helper.set(this.$route.query.field,this.multipleSelectionAll.map((function(t){return{id:t.product_id,src:t.cover_img}}))),console.log(this.multipleSelectionAll),localStorage.setItem("broadcastPro",JSON.stringify(this.multipleSelectionAll))):this.$message.warning("请先选择商品")},handleSelectionChange:function(t){var e=this;this.multipleSelection=t,this.multipleSelectionAll=t,setTimeout((function(){e.changePageCoreRecordData()}),50)},setSelectRow:function(){if(this.multipleSelectionAll&&!(this.multipleSelectionAll.length<=0)){var t=this.idKey,e=[];this.multipleSelectionAll.forEach((function(i){e.push(i[t])})),this.$refs.table.clearSelection();for(var i=0;i=0&&this.$refs.table.toggleRowSelection(this.tableData.data[i],!0)}},changePageCoreRecordData:function(){var t=this.idKey,e=this;if(this.multipleSelectionAll.length<=0)this.multipleSelectionAll=this.multipleSelection;else{var i=[];this.multipleSelectionAll.forEach((function(e){i.push(e[t])}));var l=[];this.multipleSelection.forEach((function(a){l.push(a[t]),i.indexOf(a[t])<0&&e.multipleSelectionAll.push(a)}));var a=[];this.tableData.data.forEach((function(e){l.indexOf(e[t])<0&&a.push(e[t])})),a.forEach((function(l){if(i.indexOf(l)>=0)for(var a=0;a0?i("div",{staticClass:"list sp100 image"},[i("label",{staticClass:"name"},[e._v("特殊资质:")]),e._v(" "),e._l(e.formValidate.qualifications,(function(e,a){return i("img",{key:a,staticStyle:{"max-width":"150px",height:"80px"},attrs:{src:e["dir"]}})}))],2):e._e(),e._v(" "),e.formValidate.business_addition_pics&&e.formValidate.business_addition_pics.length>0?i("div",{staticClass:"list sp100 image"},[i("label",{staticClass:"name"},[e._v("补充材料:")]),e._v(" "),e._l(e.formValidate.business_addition_pics,(function(e,a){return i("img",{key:a,staticStyle:{"max-width":"150px",height:"80px"},attrs:{src:e["dir"]}})}))],2):e._e(),e._v(" "),e.formValidate.business_addition_desc?i("div",{staticClass:"list sp"},[i("label",{staticClass:"name"},[e._v("补充说明:")]),e._v(e._s(e.formValidate.business_addition_desc))]):e._e(),e._v(" "),e.formValidate.message?i("div",{staticClass:"list sp"},[i("label",{staticClass:"name"},[e._v(e._s(-1==e.status||40==e.status?"驳回原因":11==e.status?"需验证操作":"审核结果")+":")]),e._v(" "),i("span",{class:-1==e.status||40==e.status?"color_red":""}),e._v(" "+e._s(e.formValidate.message)+"\n ")]):e._e()])])])]):i("el-form",{directives:[{name:"loading",rawName:"v-loading",value:e.fullscreenLoading,expression:"fullscreenLoading"}],ref:"formValidate",staticClass:"formValidate mt20",attrs:{rules:e.ruleValidate,model:e.formValidate,"label-width":"180px"},nativeOn:{submit:function(e){e.preventDefault()}}},[i("el-row",[e.formValidate.out_request_no?i("el-col",[i("el-form-item",{attrs:{label:"业务申请编号:"}},[i("span",[e._v(e._s(e.formValidate.out_request_no))])])],1):e._e(),e._v(" "),i("el-col",[i("el-form-item",{attrs:{label:"主体类型:",prop:"organization_type"}},[i("el-radio-group",{on:{change:e.typeChange},model:{value:e.formValidate.organization_type,callback:function(a){e.$set(e.formValidate,"organization_type",a)},expression:"formValidate.organization_type"}},[i("el-radio",{staticClass:"radio",attrs:{label:2401}},[e._v("小微商户")]),e._v(" "),i("el-radio",{attrs:{label:2500}},[e._v("个人卖家")]),e._v(" "),i("el-radio",{attrs:{label:2}},[e._v("企业")]),e._v(" "),i("el-radio",{attrs:{label:4}},[e._v("个体工商户")]),e._v(" "),i("el-radio",{attrs:{label:3}},[e._v("党政、机关及事业单")]),e._v(" "),i("el-radio",{attrs:{label:1708}},[e._v("其他组织")])],1)],1)],1),e._v(" "),2401!=e.formValidate.organization_type&&2500!=e.formValidate.organization_type?i("el-col",[i("div",{staticClass:"title"},[e._v(e._s(2==e.formValidate.organization_type||4==e.formValidate.organization_type?"营业执照信息":"登记证书信息"))]),e._v(" "),i("el-form-item",{attrs:{label:"证件扫描件:",prop:"business_license_copy"}},[e.formValidate.business_license_copy&&e.formValidate.business_license_copy["dir"]?i("div",{staticClass:"upLoadPicBox"},[i("div",{staticClass:"pictrue"},[i("img",{attrs:{src:e.formValidate.business_license_copy["dir"]},on:{click:function(a){return e.getPicture(e.formValidate.business_license_copy["dir"])}}}),e._v(" "),i("i",{staticClass:"el-icon-error btndel",on:{click:function(a){e.formValidate.business_license_copy=[]}}})])]):i("el-upload",{staticClass:"upload-demo mr10 mb15",attrs:{action:e.fileUrl,"on-success":e.handleSuccess,headers:e.myHeaders,"show-file-list":!1}},[i("div",{staticClass:"upLoadPicBox"},[i("div",{staticClass:"upLoad"},[i("i",{staticClass:"el-icon-camera cameraIconfont"})])])])],1),e._v(" "),i("el-form-item",{attrs:{label:"证件注册号:",required:""}},[i("el-input",{attrs:{min:15,max:18,placeholder:"请输入证件注册号,须为15位数字或 18位数字|大写字母"},model:{value:e.formValidate.business_license_number,callback:function(a){e.$set(e.formValidate,"business_license_number",a)},expression:"formValidate.business_license_number"}})],1),e._v(" "),i("el-form-item",{attrs:{label:"商户名称:",prop:"merchant_name"}},[i("el-input",{attrs:{placeholder:"请填写营业执照/登记证书的商家名称,2~110个字符,支持括号"},model:{value:e.formValidate.merchant_name,callback:function(a){e.$set(e.formValidate,"merchant_name",a)},expression:"formValidate.merchant_name"}})],1),e._v(" "),i("el-form-item",{attrs:{label:"经营者/法定代表人姓名:",prop:"legal_person"}},[i("el-input",{attrs:{placeholder:"请输入经营者/法定代表人姓名"},model:{value:e.formValidate.legal_person,callback:function(a){e.$set(e.formValidate,"legal_person",a)},expression:"formValidate.legal_person"}})],1),e._v(" "),i("el-form-item",{attrs:{label:"注册地址:"}},[i("el-input",{attrs:{placeholder:"请填写登记证书的注册地址"},model:{value:e.formValidate.company_address,callback:function(a){e.$set(e.formValidate,"company_address",a)},expression:"formValidate.company_address"}})],1),e._v(" "),i("el-form-item",{attrs:{label:"营业期限:"}},[i("el-date-picker",{staticStyle:{width:"250px"},attrs:{"value-format":"yyyy-MM-dd",format:"yyyy-MM-dd",size:"small",type:"date",placement:"bottom-end",placeholder:"开始时间","picker-options":e.pickerOptions3},on:{change:e.onchangeBusinessStart},model:{value:e.business_start,callback:function(a){e.business_start=a},expression:"business_start"}}),e._v(" "),e.business_long?e._e():i("el-date-picker",{staticStyle:{width:"250px"},attrs:{"value-format":"yyyy-MM-dd",format:"yyyy-MM-dd",size:"small",type:"date",placement:"bottom-end",placeholder:"结束时间","picker-options":e.pickerOptions4},on:{change:e.onchangeBusinessEnd},model:{value:e.business_end,callback:function(a){e.business_end=a},expression:"business_end"}}),e._v(" "),i("el-checkbox",{on:{change:e.changeTime3},model:{value:e.business_long,callback:function(a){e.business_long=a},expression:"business_long"}},[e._v("长期")])],1)],1):e._e(),e._v(" "),i("el-col",[i("div",{staticClass:"title"},[e._v("证件类型")]),e._v(" "),i("el-form-item",{attrs:{label:"经营者/法人证件类型:",prop:"id_doc_type"}},[i("el-select",{staticClass:"selWidth",attrs:{filterable:"",placeholder:"请选择"},model:{value:e.formValidate.id_doc_type,callback:function(a){e.$set(e.formValidate,"id_doc_type",a)},expression:"formValidate.id_doc_type"}},[i("el-option",{attrs:{label:"中国大陆居民-身份证",value:"1"}}),e._v(" "),2401!=e.formValidate.organization_type&&2500!=e.formValidate.organization_type?i("el-option",{attrs:{label:"其他国家或地区居民-护照",value:"2"}}):e._e(),e._v(" "),2401!=e.formValidate.organization_type&&2500!=e.formValidate.organization_type?i("el-option",{attrs:{label:"中国香港居民–来往内地通行证",value:"3"}}):e._e(),e._v(" "),2401!=e.formValidate.organization_type&&2500!=e.formValidate.organization_type?i("el-option",{attrs:{label:"中国澳门居民–来往内地通行证",value:"4"}}):e._e(),e._v(" "),2401!=e.formValidate.organization_type&&2500!=e.formValidate.organization_type?i("el-option",{attrs:{label:"中国台湾居民–来往大陆通行证",value:"5"}}):e._e()],1)],1)],1),e._v(" "),1==e.formValidate.id_doc_type?i("el-col",[i("div",{staticClass:"title"},[e._v("经营者/法人身份证信息")]),e._v(" "),i("el-form-item",{attrs:{label:"身份证人像面照片:",prop:"id_card_copy"}},[e.formValidate.id_card_copy&&e.formValidate.id_card_copy["dir"]?i("div",{staticClass:"upLoadPicBox"},[i("div",{staticClass:"pictrue"},[i("img",{attrs:{src:e.formValidate.id_card_copy["dir"]},on:{click:function(a){return e.getPicture(e.formValidate.id_card_copy["dir"])}}}),e._v(" "),i("i",{staticClass:"el-icon-error btndel",on:{click:function(a){e.formValidate.id_card_copy=[]}}})])]):i("el-upload",{staticClass:"upload-demo mr10 mb15",attrs:{action:e.fileUrl,"on-success":e.handleSuccess3,headers:e.myHeaders,"show-file-list":!1}},[i("div",{staticClass:"upLoadPicBox"},[i("div",{staticClass:"upLoad"},[i("i",{staticClass:"el-icon-camera cameraIconfont"})])])])],1),e._v(" "),i("el-form-item",{attrs:{label:"身份证国徽面照片:",prop:"id_card_national"}},[e.formValidate.id_card_national&&e.formValidate.id_card_national["dir"]?i("div",{staticClass:"upLoadPicBox"},[i("div",{staticClass:"pictrue"},[i("img",{attrs:{src:e.formValidate.id_card_national["dir"]},on:{click:function(a){return e.getPicture(e.formValidate.id_card_national["dir"])}}}),e._v(" "),i("i",{staticClass:"el-icon-error btndel",on:{click:function(a){e.formValidate.id_card_national=[]}}})])]):i("el-upload",{staticClass:"upload-demo mr10 mb15",attrs:{action:e.fileUrl,"on-success":e.handleSuccess4,headers:e.myHeaders,"show-file-list":!1}},[i("div",{staticClass:"upLoadPicBox"},[i("div",{staticClass:"upLoad"},[i("i",{staticClass:"el-icon-camera cameraIconfont"})])])])],1),e._v(" "),i("el-form-item",{attrs:{label:"身份证姓名:",prop:"id_card_name"}},[i("el-input",{attrs:{placeholder:"请输入经营者/法定代表人对应身份证的姓名"},model:{value:e.formValidate.id_card_name,callback:function(a){e.$set(e.formValidate,"id_card_name",a)},expression:"formValidate.id_card_name"}})],1),e._v(" "),i("el-form-item",{attrs:{label:"身份证号码:",prop:"id_card_number"}},[i("el-input",{attrs:{min:15,max:18,placeholder:"请输入经营者/法定代表人对应身份证的号码"},model:{value:e.formValidate.id_card_number,callback:function(a){e.$set(e.formValidate,"id_card_number",a)},expression:"formValidate.id_card_number"}})],1),e._v(" "),i("el-form-item",{attrs:{label:"身份证开始时间:",required:""}},[i("el-date-picker",{staticStyle:{width:"250px"},attrs:{"value-format":"yyyy-MM-dd",format:"yyyy-MM-dd",size:"small",type:"date",placement:"bottom-end",placeholder:"开始时间"},on:{change:e.onchangeIdBegin},model:{value:e.idCard_start_time,callback:function(a){e.idCard_start_time=a},expression:"idCard_start_time"}})],1),e._v(" "),i("el-form-item",{attrs:{label:"身份证有效期限:",required:""}},[e.effective_long?e._e():i("el-date-picker",{staticStyle:{width:"250px"},attrs:{"value-format":"yyyy-MM-dd",format:"yyyy-MM-dd",size:"small",type:"date",placement:"bottom-end",placeholder:"到期时间","picker-options":e.pickerOptions0},on:{change:e.onchangeEffective},model:{value:e.effective_time,callback:function(a){e.effective_time=a},expression:"effective_time"}}),e._v(" "),i("el-checkbox",{on:{change:e.changeTime1},model:{value:e.effective_long,callback:function(a){e.effective_long=a},expression:"effective_long"}},[e._v("长期")])],1),e._v(" "),2==e.formValidate.organization_type?i("el-form-item",{attrs:{label:"身份证居住地址:",prop:"id_card_address"}},[i("el-input",{attrs:{placeholder:"请输入身份证居住地址"},model:{value:e.formValidate.id_card_address,callback:function(a){e.$set(e.formValidate,"id_card_address",a)},expression:"formValidate.id_card_address"}})],1):e._e()],1):e._e(),e._v(" "),1!=e.formValidate.id_doc_type?i("el-col",[i("div",{staticClass:"title"},[e._v("经营者/法人其他类型证件信息")]),e._v(" "),i("el-form-item",{attrs:{label:"证件姓名:",prop:"id_doc_name"}},[i("el-input",{attrs:{placeholder:"请输入经营者/法人姓名"},model:{value:e.formValidate.id_doc_name,callback:function(a){e.$set(e.formValidate,"id_doc_name",a)},expression:"formValidate.id_doc_name"}})],1),e._v(" "),i("el-form-item",{attrs:{label:"证件号码:",prop:"id_doc_number"}},[i("el-input",{attrs:{placeholder:"请输入证件号码"},model:{value:e.formValidate.id_doc_number,callback:function(a){e.$set(e.formValidate,"id_doc_number",a)},expression:"formValidate.id_doc_number"}})],1),e._v(" "),i("el-form-item",{attrs:{label:"证件正面照片:",prop:"id_doc_copy"}},[e.formValidate.id_doc_copy&&e.formValidate.id_doc_copy["dir"]?i("div",{staticClass:"upLoadPicBox"},[i("div",{staticClass:"pictrue"},[i("img",{attrs:{src:e.formValidate.id_doc_copy["dir"]},on:{click:function(a){return e.getPicture(e.formValidate.id_doc_copy["dir"])}}}),e._v(" "),i("i",{staticClass:"el-icon-error btndel",on:{click:function(a){e.formValidate.id_doc_copy=[]}}})])]):i("el-upload",{staticClass:"upload-demo mr10 mb15",attrs:{action:e.fileUrl,"on-success":e.handleSuccess5,headers:e.myHeaders,"show-file-list":!1}},[i("div",{staticClass:"upLoadPicBox"},[i("div",{staticClass:"upLoad"},[i("i",{staticClass:"el-icon-camera cameraIconfont"})])])])],1),e._v(" "),2!=e.formValidate.id_doc_type?i("el-form-item",{attrs:{label:"证件反面照片:"}},[e.formValidate.id_doc_copy_back&&e.formValidate.id_doc_copy_back["dir"]?i("div",{staticClass:"upLoadPicBox"},[i("div",{staticClass:"pictrue"},[i("img",{attrs:{src:e.formValidate.id_doc_copy_back["dir"]},on:{click:function(a){return e.getPicture(e.formValidate.id_doc_copy_back["dir"])}}}),e._v(" "),i("i",{staticClass:"el-icon-error btndel",on:{click:function(a){e.formValidate.id_doc_copy_back=[]}}})])]):i("el-upload",{staticClass:"upload-demo mr10 mb15",attrs:{action:e.fileUrl,"on-success":e.handleSuccess9,headers:e.myHeaders,"show-file-list":!1}},[i("div",{staticClass:"upLoadPicBox"},[i("div",{staticClass:"upLoad"},[i("i",{staticClass:"el-icon-camera cameraIconfont"})])])])],1):e._e(),e._v(" "),i("el-form-item",{attrs:{label:"证件有效期开始时间:",required:""}},[i("el-date-picker",{staticStyle:{width:"250px"},attrs:{"value-format":"yyyy-MM-dd",format:"yyyy-MM-dd",size:"small",type:"date",placement:"bottom-end",placeholder:"到期时间"},on:{change:e.onchangeDoc},model:{value:e.cer_start_time,callback:function(a){e.cer_start_time=a},expression:"cer_start_time"}})],1),e._v(" "),i("el-form-item",{attrs:{label:"证件结束日期:"}},[e.cer_long?e._e():i("el-date-picker",{staticStyle:{width:"250px"},attrs:{"value-format":"yyyy-MM-dd",format:"yyyy-MM-dd",size:"small",type:"date",placement:"bottom-end",placeholder:"到期时间","picker-options":e.pickerOptions0},on:{change:e.onchangeCer},model:{value:e.cer_end_time,callback:function(a){e.cer_end_time=a},expression:"cer_end_time"}}),e._v(" "),i("el-checkbox",{on:{change:e.changeTime2},model:{value:e.cer_long,callback:function(a){e.cer_long=a},expression:"cer_long"}},[e._v("长期")])],1),e._v(" "),i("el-form-item",{attrs:{label:"证件居住地址:"}},[i("el-input",{attrs:{placeholder:"请输入证件居住地址"},model:{value:e.formValidate.id_doc_address,callback:function(a){e.$set(e.formValidate,"id_doc_address",a)},expression:"formValidate.id_doc_address"}})],1)],1):e._e(),e._v(" "),i("el-col",[i("div",{staticClass:"title"},[e._v("结算银行账户")]),e._v(" "),i("el-form-item",{attrs:{label:"账户类型:",required:""}},[i("el-radio-group",{model:{value:e.formValidate.bank_account_type,callback:function(a){e.$set(e.formValidate,"bank_account_type",a)},expression:"formValidate.bank_account_type"}},[2==e.formValidate.organization_type||3==e.formValidate.organization_type||1708==e.formValidate.organization_type||4==e.formValidate.organization_type?i("el-radio",{staticClass:"radio",attrs:{label:74}},[e._v("对公账户")]):e._e(),e._v(" "),2401==e.formValidate.organization_type||2500==e.formValidate.organization_type||4==e.formValidate.organization_type?i("el-radio",{staticClass:"radio",attrs:{label:75}},[e._v("对私账户")]):e._e()],1)],1),e._v(" "),i("el-form-item",{attrs:{label:"开户银行:",required:""}},[i("el-select",{staticClass:"filter-item selWidth",attrs:{placeholder:"请选择",clearable:""},model:{value:e.formValidate.account_bank,callback:function(a){e.$set(e.formValidate,"account_bank",a)},expression:"formValidate.account_bank"}},e._l(e.brankList,(function(e){return i("el-option",{key:e.label,attrs:{label:e.value,value:e.value}})})),1)],1),e._v(" "),i("el-form-item",{attrs:{label:"开户名称:",required:""}},[i("el-input",{attrs:{placeholder:"请输入开户名称"},model:{value:e.formValidate.account_name,callback:function(a){e.$set(e.formValidate,"account_name",a)},expression:"formValidate.account_name"}})],1),e._v(" "),i("el-form-item",{staticClass:"selWidth",attrs:{label:"开户银行省市编码:",prop:"bank_address_code"}},[i("el-cascader",{attrs:{options:e.provinceCodeList,clearable:"","show-all-levels":!1},model:{value:e.formValidate.bank_address_code,callback:function(a){e.$set(e.formValidate,"bank_address_code",a)},expression:"formValidate.bank_address_code"}})],1),e._v(" "),i("el-form-item",{attrs:{label:"开户银行联行号:"}},[i("el-input",{attrs:{max:64,placeholder:"请输入开户银行联行号"},model:{value:e.formValidate.bank_branch_id,callback:function(a){e.$set(e.formValidate,"bank_branch_id",a)},expression:"formValidate.bank_branch_id"}})],1),e._v(" "),i("el-form-item",{attrs:{label:"开户银行全称 (含支行):"}},[i("el-input",{attrs:{max:128,placeholder:"请输入开户银行全称"},model:{value:e.formValidate.bank_name,callback:function(a){e.$set(e.formValidate,"bank_name",a)},expression:"formValidate.bank_name"}})],1),e._v(" "),i("el-form-item",{attrs:{label:"银行帐号:",prop:"account_number"}},[i("el-input",{attrs:{maxlength:40,placeholder:"请输入银行帐号"},model:{value:e.formValidate.account_number,callback:function(a){e.$set(e.formValidate,"account_number",a)},expression:"formValidate.account_number"}})],1)],1),e._v(" "),i("el-col",[i("div",{staticClass:"title"},[e._v("超级管理员信息")]),e._v(" "),i("el-form-item",{attrs:{label:"超级管理员类型:",prop:"contact_type"}},[i("el-radio-group",{model:{value:e.formValidate.contact_type,callback:function(a){e.$set(e.formValidate,"contact_type",a)},expression:"formValidate.contact_type"}},[i("el-radio",{staticClass:"radio",attrs:{label:65}},[e._v("经营者/法人")]),e._v(" "),2401!=e.formValidate.organization_type&&2500!=e.formValidate.organization_type?i("el-radio",{staticClass:"radio",attrs:{label:66}},[e._v("经办人")]):e._e()],1)],1),e._v(" "),66==e.formValidate.contact_type?i("el-form-item",{attrs:{label:"超级管理员证件类型:"}},[i("el-select",{staticClass:"selWidth",attrs:{filterable:"",placeholder:"请选择"},model:{value:e.formValidate.contact_id_doc_type,callback:function(a){e.$set(e.formValidate,"contact_id_doc_type",a)},expression:"formValidate.contact_id_doc_type"}},[i("el-option",{attrs:{label:"中国大陆居民-身份证",value:"1"}}),e._v(" "),i("el-option",{attrs:{label:"其他国家或地区居民-护照",value:"2"}}),e._v(" "),i("el-option",{attrs:{label:"中国香港居民–来往内地通行证",value:"3"}}),e._v(" "),i("el-option",{attrs:{label:"中国澳门居民–来往内地通行证",value:"4"}}),e._v(" "),i("el-option",{attrs:{label:"中国台湾居民–来往大陆通行证",value:"5"}}),e._v(" "),i("el-option",{attrs:{label:"外国人居留证",value:"6"}}),e._v(" "),i("el-option",{attrs:{label:"港澳居民证",value:"7"}}),e._v(" "),i("el-option",{attrs:{label:"台湾居留证",value:"8"}})],1)],1):e._e(),e._v(" "),66==e.formValidate.contact_type?i("el-form-item",{attrs:{label:"证件正面照片:"}},[e.formValidate.contact_id_doc_copy&&e.formValidate.contact_id_doc_copy["dir"]?i("div",{staticClass:"upLoadPicBox"},[i("div",{staticClass:"pictrue"},[i("img",{attrs:{src:e.formValidate.contact_id_doc_copy["dir"]},on:{click:function(a){return e.getPicture(e.formValidate.contact_id_doc_copy["dir"])}}}),e._v(" "),i("i",{staticClass:"el-icon-error btndel",on:{click:function(a){e.formValidate.contact_id_doc_copy=[]}}})])]):i("el-upload",{staticClass:"upload-demo mr10 mb15",attrs:{action:e.fileUrl,"on-success":e.handleSuccess10,headers:e.myHeaders,"show-file-list":!1}},[i("div",{staticClass:"upLoadPicBox"},[i("div",{staticClass:"upLoad"},[i("i",{staticClass:"el-icon-camera cameraIconfont"})])])])],1):e._e(),e._v(" "),66==e.formValidate.contact_type&&"2"!=e.formValidate.contact_id_doc_type?i("el-form-item",{attrs:{label:"证件反面照片:"}},[e.formValidate.contact_id_doc_copy_back&&e.formValidate.contact_id_doc_copy_back["dir"]?i("div",{staticClass:"upLoadPicBox"},[i("div",{staticClass:"pictrue"},[i("img",{attrs:{src:e.formValidate.contact_id_doc_copy_back["dir"]},on:{click:function(a){return e.getPicture(e.formValidate.contact_id_doc_copy_back["dir"])}}}),e._v(" "),i("i",{staticClass:"el-icon-error btndel",on:{click:function(a){e.formValidate.contact_id_doc_copy_back=[]}}})])]):i("el-upload",{staticClass:"upload-demo mr10 mb15",attrs:{action:e.fileUrl,"on-success":e.handleSuccess11,headers:e.myHeaders,"show-file-list":!1}},[i("div",{staticClass:"upLoadPicBox"},[i("div",{staticClass:"upLoad"},[i("i",{staticClass:"el-icon-camera cameraIconfont"})])])])],1):e._e(),e._v(" "),66==e.formValidate.contact_type?i("el-form-item",{attrs:{label:"证件有效期开始时间:",required:""}},[i("el-date-picker",{staticStyle:{width:"250px"},attrs:{"value-format":"yyyy-MM-dd",format:"yyyy-MM-dd",size:"small",type:"date",placement:"bottom-end",placeholder:"开始时间"},on:{change:e.onchangeContactStart},model:{value:e.contact_start_time,callback:function(a){e.contact_start_time=a},expression:"contact_start_time"}})],1):e._e(),e._v(" "),66==e.formValidate.contact_type?i("el-form-item",{attrs:{label:"证件结束日期:",required:""}},[e.contact_long?e._e():i("el-date-picker",{staticStyle:{width:"250px"},attrs:{"value-format":"yyyy-MM-dd",format:"yyyy-MM-dd",size:"small",type:"date",placement:"bottom-end",placeholder:"到期时间","picker-options":e.pickerOptions0},on:{change:e.onchangeContactEnd},model:{value:e.contact_end_time,callback:function(a){e.contact_end_time=a},expression:"contact_end_time"}}),e._v(" "),i("el-checkbox",{on:{change:e.changeTime4},model:{value:e.contact_long,callback:function(a){e.contact_long=a},expression:"contact_long"}},[e._v("长期")])],1):e._e(),e._v(" "),66==e.formValidate.contact_type?i("el-form-item",{attrs:{label:"业务办理授权函:",prop:"business_authorization_letter"}},[e.formValidate.business_authorization_letter&&e.formValidate.business_authorization_letter["dir"]?i("div",{staticClass:"upLoadPicBox"},[i("div",{staticClass:"pictrue"},[i("img",{attrs:{src:e.formValidate.business_authorization_letter["dir"]},on:{click:function(a){return e.getPicture(e.formValidate.business_authorization_letter["dir"])}}}),e._v(" "),i("i",{staticClass:"el-icon-error btndel",on:{click:function(a){e.formValidate.business_authorization_letter=[]}}})])]):i("el-upload",{staticClass:"upload-demo mr10 mb15",attrs:{action:e.fileUrl,"on-success":e.handleSuccess12,headers:e.myHeaders,"show-file-list":!1}},[i("div",{staticClass:"upLoadPicBox"},[i("div",{staticClass:"upLoad"},[i("i",{staticClass:"el-icon-camera cameraIconfont"})])])])],1):e._e(),e._v(" "),i("el-form-item",{attrs:{label:"超级管理员姓名:",prop:"contact_name"}},[i("el-input",{attrs:{placeholder:"请输入超级管理员姓名"},model:{value:e.formValidate.contact_name,callback:function(a){e.$set(e.formValidate,"contact_name",a)},expression:"formValidate.contact_name"}})],1),e._v(" "),i("el-form-item",{attrs:{label:"超级管理员身份证件号码:",prop:"contact_id_card_number"}},[i("el-input",{attrs:{placeholder:"请输入超级管理员身份证件号码"},model:{value:e.formValidate.contact_id_card_number,callback:function(a){e.$set(e.formValidate,"contact_id_card_number",a)},expression:"formValidate.contact_id_card_number"}})],1),e._v(" "),i("el-form-item",{attrs:{label:"超级管理员手机:",prop:"mobile_phone"}},[i("el-input",{attrs:{placeholder:"请输入超级管理员手机号"},model:{value:e.formValidate.mobile_phone,callback:function(a){e.$set(e.formValidate,"mobile_phone",a)},expression:"formValidate.mobile_phone"}})],1),e._v(" "),i("el-form-item",{attrs:{label:"超级管理员邮箱:"}},[i("el-input",{attrs:{placeholder:"请输入超级管理员邮箱"},model:{value:e.formValidate.contact_email,callback:function(a){e.$set(e.formValidate,"contact_email",a)},expression:"formValidate.contact_email"}})],1)],1),e._v(" "),i("el-col",[i("div",{staticClass:"title"},[e._v("店铺信息")]),e._v(" "),i("el-form-item",{attrs:{label:"店铺名称:",prop:"store_name"}},[i("el-input",{attrs:{placeholder:"请输入店铺名称"},model:{value:e.formValidate.store_name,callback:function(a){e.$set(e.formValidate,"store_name",a)},expression:"formValidate.store_name"}})],1),e._v(" "),i("el-form-item",{attrs:{label:"店铺链接:"}},[i("el-input",{attrs:{placeholder:"请输入店铺链接"},model:{value:e.formValidate.store_url,callback:function(a){e.$set(e.formValidate,"store_url",a)},expression:"formValidate.store_url"}})],1),e._v(" "),i("el-form-item",{attrs:{label:"店铺二维码:"}},[e.formValidate.store_qr_code&&e.formValidate.store_qr_code["dir"]?i("div",{staticClass:"upLoadPicBox"},[i("div",{staticClass:"pictrue"},[i("img",{attrs:{src:e.formValidate.store_qr_code["dir"]},on:{click:function(a){return e.getPicture(e.formValidate.store_qr_code["dir"])}}}),e._v(" "),i("i",{staticClass:"el-icon-error btndel",on:{click:function(a){e.formValidate.store_qr_code=[]}}})])]):i("el-upload",{staticClass:"upload-demo mr10 mb15",attrs:{action:e.fileUrl,data:{water:1},"on-success":e.handleSuccess6,headers:e.myHeaders,"show-file-list":!1}},[i("div",{staticClass:"upLoadPicBox"},[i("div",{staticClass:"upLoad"},[i("i",{staticClass:"el-icon-camera cameraIconfont"})])])])],1),e._v(" "),i("el-form-item",{attrs:{label:"小程序AppID:"}},[i("el-input",{attrs:{placeholder:"请输入小程序AppID"},model:{value:e.formValidate.mini_program_sub_appid,callback:function(a){e.$set(e.formValidate,"mini_program_sub_appid",a)},expression:"formValidate.mini_program_sub_appid"}})],1)],1),e._v(" "),i("el-col",[i("el-form-item",{attrs:{label:"商户简称:",prop:"merchant_shortname"}},[i("el-input",{attrs:{type:"textarea",placeholder:"请输入商户简称"},model:{value:e.formValidate.merchant_shortname,callback:function(a){e.$set(e.formValidate,"merchant_shortname",a)},expression:"formValidate.merchant_shortname"}})],1)],1),e._v(" "),i("el-col",[i("el-form-item",{attrs:{label:"特殊资质:"}},[i("div",{staticClass:"acea-row"},[e.formValidate.qualifications&&e.formValidate.qualifications.length?i("div",{staticClass:"upLoadPicBox"},e._l(e.formValidate.qualifications,(function(a,t){return i("div",{key:t,staticClass:"pictrue"},[i("img",{attrs:{src:a.dir},on:{click:function(t){return e.getPicture(a.dir)}}}),e._v(" "),i("i",{staticClass:"el-icon-error btndel",on:{click:function(a){return e.handleRemove(t)}}})])})),0):e._e(),e._v(" "),e.formValidate.qualifications.length<5?i("el-upload",{staticClass:"upload-demo mr10 mb15",attrs:{action:e.fileUrl,"on-success":e.handleSuccess7,headers:e.myHeaders,"show-file-list":!1}},[i("div",{staticClass:"upLoadPicBox"},[i("div",{staticClass:"upLoad"},[i("i",{staticClass:"el-icon-camera cameraIconfont"})])])]):e._e()],1)])],1),e._v(" "),i("el-col",[i("el-form-item",{attrs:{label:"补充材料:"}},[i("div",{staticClass:"acea-row"},[e.formValidate.business_addition_pics.length?i("div",{staticClass:"upLoadPicBox"},e._l(e.formValidate.business_addition_pics,(function(a,t){return i("div",{key:t,staticClass:"pictrue"},[i("img",{attrs:{src:a.dir},on:{click:function(t){return e.getPicture(a.dir)}}}),e._v(" "),i("i",{staticClass:"el-icon-error btndel",on:{click:function(a){return e.handleRemove2(t)}}})])})),0):e._e(),e._v(" "),e.formValidate.business_addition_pics.length<5?i("el-upload",{staticClass:"upload-demo mr10 mb15",attrs:{action:e.fileUrl,"on-success":e.handleSuccess8,headers:e.myHeaders,"show-file-list":!1}},[i("div",{staticClass:"upLoadPicBox"},[i("div",{staticClass:"upLoad"},[i("i",{staticClass:"el-icon-camera cameraIconfont"})])])]):e._e()],1)])],1),e._v(" "),i("el-col",[i("el-form-item",{attrs:{label:"补充说明:",required:"2500"==e.formValidate.organization_type}},[i("el-input",{attrs:{type:"textarea",max:512,placeholder:"个人卖家主体请填写:该商户已持续从事电子商务经营活动满6个月,且期间经营收入累计超过20万元。"},model:{value:e.formValidate.business_addition_desc,callback:function(a){e.$set(e.formValidate,"business_addition_desc",a)},expression:"formValidate.business_addition_desc"}})],1)],1),e._v(" "),e.message?i("el-col",[i("el-form-item",{attrs:{label:"审核结果:"}},[i("span",[e._v(e._s(e.message))])])],1):e._e()],1),e._v(" "),i("el-form-item",{staticStyle:{"margin-top":"30px"}},[i("el-button",{staticClass:"submission",attrs:{loading:e.loading,type:"primary",size:"small"},on:{click:function(a){return e.handleSubmit("formValidate")}}},[e._v("提交")])],1)],1)],1):e._e()]),e._v(" "),e.pictureVisible?i("el-dialog",{attrs:{visible:e.pictureVisible,width:"700px"},on:{"update:visible":function(a){e.pictureVisible=a}}},[i("img",{staticClass:"pictures",attrs:{src:e.pictureUrl}})]):e._e(),e._v(" "),e.dialogVisible?i("el-dialog",{attrs:{visible:e.dialogVisible,width:"1000px"},on:{"update:visible":function(a){e.dialogVisible=a}}},[i("div",{staticClass:"guideContainer"},[i("h1",{staticClass:"title1"},[e._v("申请分账商户指南")]),e._v(" "),i("div",{staticClass:"content"},[i("p",[e._v("申请分账商户是指,平台已开通电商收付通后,子商户在此处提交相关资料进行二级商户入驻申请,微信支付验证及签约。")]),e._v(" "),i("p",[e._v("子商户申请分账商户成功后,平台与子商户关于微信入口的资金无需线下转账,用户确认收货后15天微信将自动分账。")]),e._v(" "),i("h2",[e._v("1.主体选择")]),e._v(" "),i("table",{staticClass:"guideTable"},[i("thead",[i("th",[e._v("类型")]),e._v(" "),i("th",[e._v("定义")]),e._v(" "),i("th",[e._v("所需资料")])]),e._v(" "),i("tbody",[i("tr",[i("td",[e._v("小微")]),e._v(" "),i("td",[e._v("无营业执照、免办理工商注册登记的商户")]),e._v(" "),i("td",[e._v("需提供小微经营者的个人身份证")])]),e._v(" "),i("tr",[i("td",[e._v("个人卖家")]),e._v(" "),i("td",[e._v("无营业执照,已持续从事电子商务经营活动满6个月,且期间经营收入累计超过20万元的个人商家(电商平台需核实已满足上述条件)")]),e._v(" "),i("td",[e._v("需提供个人卖家的个人身份证")])]),e._v(" "),i("tr",[i("td",[e._v("个体工商户")]),e._v(" "),i("td",[e._v("营业执照上的主体类型一般为个体户、个体工商户、个体经营")]),e._v(" "),i("td",[e._v("需提供营业执照、经营者证件")])]),e._v(" "),i("tr",[i("td",[e._v("企业")]),e._v(" "),i("td",[e._v("营业执照上的主体类型一般为有限公司、有限责任公司")]),e._v(" "),i("td",[e._v("需提供营业执照、法人证件、组织机构代码证(未三证合一提供)")])]),e._v(" "),i("tr",[i("td",[e._v("党政、机关及事业单位")]),e._v(" "),i("td",[e._v("包括国内各级、各类政府机构、事业单位等。如:公安、党团、司法、交通、旅游、工商税务、市政、医疗、教育、学校等机构")]),e._v(" "),i("td",[e._v("需提供登记证书、法人证件、组织机构代码证(未三证合一提供)")])]),e._v(" "),i("tr",[i("td",[e._v("其他组织")]),e._v(" "),i("td",[e._v("不属于企业、政府/事业单位的组织机构,如社会团体、民办非企业、基金会。要求机构已办理组织机构代码证。")]),e._v(" "),i("td",[e._v("需提供登记证书、法人证件、组织机构代码证(未三证合一提供)")])])])]),e._v(" "),i("div",{staticClass:"desc"},[i("h3",[e._v("说明:")]),e._v(" "),i("p",[e._v("(1) 正常日收款额度为200万,若交易良好则自动提升额度,若交易异常则下降额度;")]),e._v(" "),i("p",[e._v("(2) 无信用卡收款额度限制。")]),e._v(" "),i("p",[e._v("(3)其他主体类型,没有收款额度限制;")])]),e._v(" "),i("h2",[e._v("2.入驻流程")]),e._v(" "),i("p",[e._v("下图中“二级商户”指:正在申请分账商户的子商户")]),e._v(" "),i("img",{staticStyle:{"max-width":"100%"},attrs:{src:t("a67c"),alt:""}}),e._v(" "),i("h2",[e._v("3.环节说明")]),e._v(" "),i("p",[e._v("审核、签约、账户验证,为三个并行流程。")]),e._v(" "),i("p",[e._v("(1)审核:指平台和微信支付审核申请单资料,2-5个工作日完成")]),e._v(" "),i("p",[e._v("(2)账户验证:指判断指定条件的商家,需通过指定方式核实开户意愿及账户有效性;")]),e._v(" "),i("p",[e._v("(3)签约:指商家超级管理员,使用微信打开制定页面,核实签约。")]),e._v(" "),i("p",[e._v("完成上述三个环节,即完成入驻,如有任何疑问,请联系入驻平台的管理员。")])])])]):e._e()],1)},s=[],o=(t("7f7f"),t("c7eb")),c=(t("96cf"),t("1da1")),n=t("ade3"),_=t("8593"),r=t("83d6"),l=t("5f87"),d=t("bbcc"),m={name:"ApplyMents",components:{},data:function(){var e,a=this;return{start_time:"",end_time:"",business_start:"",business_end:"",pickerOptions0:{disabledDate:function(e){var a=(new Date).getTime(),t=5184e6,i=a+t;return e.getTime()Date.now()||e.getTime()>t}},pickerOptions2:{disabledDate:function(e){var t=a.start_time,i=(new Date).getTime(),s=5184e6,o=i+s;return e.getTime()Date.now()||e.getTime()>t}},pickerOptions4:{disabledDate:function(e){var t=a.business_start,i=(new Date).getTime(),s=5184e6,o=i+s;return e.getTime()')},handleClipboard:function(e,o,t){this.iconChange(t)},upIcon:function(e){for(var o=[],t=0;td)a=o[d++],l&&!r.call(n,a)||u.push(t?[a,n[a]]:n[a]);return u}}},"6ece":function(t,e,a){"use strict";a.r(e);var l=function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("div",{staticClass:"divBox"},[a("el-card",{staticClass:"box-card"},[a("div",{staticClass:"clearfix",attrs:{slot:"header"},slot:"header"},[a("div",{staticClass:"container"},[a("el-form",{attrs:{size:"small","label-width":"120px",inline:""}},[a("el-form-item",{attrs:{label:"预售活动状态:"}},[a("el-select",{staticClass:"filter-item selWidth",attrs:{placeholder:"请选择",clearable:""},on:{change:function(e){return t.getList(1)}},model:{value:t.tableFrom.type,callback:function(e){t.$set(t.tableFrom,"type",e)},expression:"tableFrom.type"}},t._l(t.preSaleStatusList,(function(t){return a("el-option",{key:t.value,attrs:{label:t.label,value:t.value}})})),1)],1),t._v(" "),a("el-form-item",{attrs:{label:"活动商品状态:"}},[a("el-select",{staticClass:"filter-item selWidth",attrs:{placeholder:"请选择",clearable:""},on:{change:t.getList},model:{value:t.tableFrom.us_status,callback:function(e){t.$set(t.tableFrom,"us_status",e)},expression:"tableFrom.us_status"}},t._l(t.productStatusList,(function(t){return a("el-option",{key:t.value,attrs:{label:t.label,value:t.value}})})),1)],1),t._v(" "),a("el-form-item",{attrs:{label:"标签:"}},[a("el-select",{staticClass:"filter-item selWidth mr20",attrs:{placeholder:"请选择",clearable:"",filterable:""},on:{change:function(e){return t.getList(1)}},model:{value:t.tableFrom.mer_labels,callback:function(e){t.$set(t.tableFrom,"mer_labels",e)},expression:"tableFrom.mer_labels"}},t._l(t.labelList,(function(t){return a("el-option",{key:t.id,attrs:{label:t.name,value:t.id}})})),1)],1),t._v(" "),a("el-form-item",{attrs:{label:"关键字搜索:"}},[a("el-input",{staticClass:"selWidth",attrs:{placeholder:"请输入预售商品名称/ID"},nativeOn:{keyup:function(e){return!e.type.indexOf("key")&&t._k(e.keyCode,"enter",13,e.key,"Enter")?null:t.getList(1)}},model:{value:t.tableFrom.keyword,callback:function(e){t.$set(t.tableFrom,"keyword",e)},expression:"tableFrom.keyword"}},[a("el-button",{staticClass:"el-button-solt",attrs:{slot:"append",icon:"el-icon-search"},on:{click:function(e){return t.getList(1)}},slot:"append"})],1)],1)],1)],1),t._v(" "),a("el-tabs",{on:{"tab-click":function(e){return t.getList(1)}},model:{value:t.tableFrom.presell_type,callback:function(e){t.$set(t.tableFrom,"presell_type",e)},expression:"tableFrom.presell_type"}},t._l(t.headeNum,(function(t,e){return a("el-tab-pane",{key:e,attrs:{name:t.presell_type.toString(),label:t.title+"("+t.count+")"}})})),1),t._v(" "),a("router-link",{attrs:{to:{path:t.roterPre+"/marketing/presell/create"}}},[a("el-button",{attrs:{size:"small",type:"primary"}},[a("i",{staticClass:"add"},[t._v("+")]),t._v(" 添加预售商品\n ")])],1)],1),t._v(" "),a("el-table",{directives:[{name:"loading",rawName:"v-loading",value:t.listLoading,expression:"listLoading"}],staticStyle:{width:"100%"},attrs:{data:t.tableData.data,size:"mini","row-class-name":t.tableRowClassName},on:{rowclick:function(e){return e.stopPropagation(),t.closeEdit(e)}}},[a("el-table-column",{attrs:{prop:"product_presell_id",label:"ID","min-width":"50"}}),t._v(" "),a("el-table-column",{attrs:{label:"商品图","min-width":"80"},scopedSlots:t._u([{key:"default",fn:function(t){return[a("div",{staticClass:"demo-image__preview"},[a("el-image",{attrs:{src:t.row.product.image,"preview-src-list":[t.row.product.image]}})],1)]}}])}),t._v(" "),a("el-table-column",{attrs:{prop:"store_name",label:"商品名称","min-width":"120"}}),t._v(" "),a("el-table-column",{attrs:{prop:"price",label:"预售价","min-width":"90"}}),t._v(" "),a("el-table-column",{attrs:{label:"预售活动状态","min-width":"90"},scopedSlots:t._u([{key:"default",fn:function(e){return[a("span",[t._v(t._s(0===e.row.presell_status?"未开始":1===e.row.presell_status?"正在进行":"已结束"))])]}}])}),t._v(" "),a("el-table-column",{attrs:{label:"预售活动日期","min-width":"160"},scopedSlots:t._u([{key:"default",fn:function(e){return[a("div",[t._v("开始日期:"+t._s(e.row.start_time&&e.row.start_time?e.row.start_time.slice(0,10):""))]),t._v(" "),a("div",[t._v("结束日期:"+t._s(e.row.end_time&&e.row.end_time?e.row.end_time.slice(0,10):""))])]}}])}),t._v(" "),"1"===t.tableFrom.presell_type?a("el-table-column",{attrs:{label:"成功/参与人次","min-width":"90",align:"center"},scopedSlots:t._u([{key:"default",fn:function(e){return[a("span",[t._v(t._s(e.row.tattend_one&&e.row.tattend_one.pay)+" / "+t._s(e.row.tattend_one&&e.row.tattend_one.all))])]}}],null,!1,2898212109)}):t._e(),t._v(" "),"2"===t.tableFrom.presell_type?a("el-table-column",{attrs:{label:"第一阶段 | 成功/参与人次","render-header":t.renderheader,"min-width":"90",align:"center"},scopedSlots:t._u([{key:"default",fn:function(e){return[a("span",[t._v(t._s(e.row.tattend_one&&e.row.tattend_one.pay)+" / "+t._s(e.row.tattend_one&&e.row.tattend_one.all))])]}}],null,!1,2898212109)}):t._e(),t._v(" "),"2"===t.tableFrom.presell_type?a("el-table-column",{attrs:{label:"第二阶段 | 成功/参与人次","render-header":t.renderheader,"min-width":"90",align:"center"},scopedSlots:t._u([{key:"default",fn:function(e){return[a("span",[t._v(t._s(e.row.tattend_two&&e.row.tattend_two.pay)+" / "+t._s(e.row.tattend_two&&e.row.tattend_two.all))])]}}],null,!1,649476621)}):t._e(),t._v(" "),a("el-table-column",{attrs:{prop:"seles",label:"已售商品数","min-width":"90"}}),t._v(" "),a("el-table-column",{attrs:{prop:"stock_count",label:"限量","min-width":"90"}}),t._v(" "),a("el-table-column",{attrs:{prop:"stock",label:"限量剩余","min-width":"90"}}),t._v(" "),a("el-table-column",{attrs:{prop:"status",label:"上/下架","min-width":"80"},scopedSlots:t._u([{key:"default",fn:function(e){return[a("el-switch",{attrs:{"active-value":1,"inactive-value":0,"active-text":"上架","inactive-text":"下架"},on:{change:function(a){return t.onchangeIsShow(e.row)}},model:{value:e.row.is_show,callback:function(a){t.$set(e.row,"is_show",a)},expression:"scope.row.is_show"}})]}}])}),t._v(" "),a("el-table-column",{attrs:{prop:"stock",label:"商品状态","min-width":"90"},scopedSlots:t._u([{key:"default",fn:function(e){return[a("span",[t._v(t._s(t._f("productStatusFilter")(e.row.us_status)))])]}}])}),t._v(" "),a("el-table-column",{attrs:{prop:"stock",label:"标签","min-width":"90"},scopedSlots:t._u([{key:"default",fn:function(e){return t._l(e.row.mer_labels,(function(e,l){return a("div",{key:l,staticClass:"label-list"},[t._v(t._s(e.name))])}))}}])}),t._v(" "),a("el-table-column",{attrs:{prop:"product.sort",align:"center",label:"排序","min-width":"80"},scopedSlots:t._u([{key:"default",fn:function(e){return[e.row.index===t.tabClickIndex?a("span",[a("el-input",{attrs:{type:"number",maxlength:"300",size:"mini",autofocus:""},on:{blur:function(a){return t.inputBlur(e)}},model:{value:e.row["product"]["sort"],callback:function(a){t.$set(e.row["product"],"sort",t._n(a))},expression:"scope.row['product']['sort']"}})],1):a("span",{on:{dblclick:function(a){return a.stopPropagation(),t.tabClick(e.row)}}},[t._v(t._s(e.row["product"]["sort"]))])]}}])}),t._v(" "),a("el-table-column",{attrs:{label:"审核状态","min-width":"130"},scopedSlots:t._u([{key:"default",fn:function(e){return[a("span",[t._v(t._s(0===e.row.product_status?"待审核":1===e.row.product_status?"审核通过":"审核失败"))]),t._v(" "),-1===e.row.product_status||-2===e.row.product_status?a("span",{staticStyle:{"font-size":"12px"}},[a("br"),t._v("\n 原因:"+t._s(e.row.refusal)+"\n ")]):t._e()]}}])}),t._v(" "),a("el-table-column",{attrs:{label:"操作","min-width":"150",fixed:"right"},scopedSlots:t._u([{key:"default",fn:function(e){return[0===e.row.presell_status?a("router-link",{attrs:{to:{path:t.roterPre+"/marketing/presell/create/"+e.row.product_presell_id}}},[a("el-button",{staticClass:"mr10",attrs:{type:"text",size:"small"}},[t._v("编辑")])],1):t._e(),t._v(" "),a("el-button",{attrs:{type:"text",size:"small"},on:{click:function(a){return t.handlePreview(e.row.product_presell_id)}}},[t._v("预览")]),t._v(" "),a("el-button",{attrs:{type:"text",size:"small"},on:{click:function(a){return t.onEditLabel(e.row)}}},[t._v("编辑标签")]),t._v(" "),a("el-button",{staticClass:"mr10",attrs:{type:"text",size:"small"},on:{click:function(a){return t.goDetail(e.row.product_presell_id)}}},[t._v("详情")]),t._v(" "),1!==e.row.product.presell_status?a("el-button",{staticClass:"mr10",attrs:{type:"text",size:"small"},on:{click:function(a){return t.handleDelete(e.row.product_presell_id,e.$index)}}},[t._v("删除")]):t._e()]}}])})],1),t._v(" "),a("div",{staticClass:"block"},[a("el-pagination",{attrs:{"page-sizes":[20,40,60,80],"page-size":t.tableFrom.limit,"current-page":t.tableFrom.page,layout:"total, sizes, prev, pager, next, jumper",total:t.tableData.total},on:{"size-change":t.handleSizeChange,"current-change":t.pageChange}})],1)],1),t._v(" "),t.dialogVisible?a("el-dialog",{attrs:{title:"预售商品详情",center:"",visible:t.dialogVisible,width:"700px"},on:{"update:visible":function(e){t.dialogVisible=e}}},[a("div",{directives:[{name:"loading",rawName:"v-loading",value:t.loading,expression:"loading"}],staticStyle:{"margin-top":"5px"}},[a("div",{staticClass:"box-container"},[a("div",{staticClass:"title"},[t._v("基本信息")]),t._v(" "),a("div",{staticClass:"acea-row"},[a("div",{staticClass:"list sp"},[a("label",{staticClass:"name"},[t._v("商品ID:")]),t._v(t._s(t.formValidate.product_id))]),t._v(" "),a("div",{staticClass:"list sp"},[a("label",{staticClass:"name"},[t._v("商品名称:")]),a("span",[t._v(t._s(t.formValidate.store_name))])]),t._v(" "),a("div",{staticClass:"list sp100 image"},[a("label",{staticClass:"name"},[t._v("商品图:")]),t._v(" "),a("img",{staticStyle:{"max-width":"150px",height:"80px"},attrs:{src:t.formValidate.image}})]),t._v(" "),a("div",{staticClass:"list sp100"},[a("label",{staticClass:"name"},[t._v("商品信息")]),t._v(" "),0===t.formValidate.spec_type?a("div",[a("el-table",{staticClass:"tabNumWidth",attrs:{data:t.OneattrValue,border:"",size:"mini"}},[a("el-table-column",{attrs:{align:"center",label:"预售价格","min-width":"80"},scopedSlots:t._u([{key:"default",fn:function(e){return[a("span",[t._v(t._s(e.row["presell_price"]))])]}}],null,!1,1547007341)}),t._v(" "),2===t.formValidate.presell_type?a("el-table-column",{attrs:{align:"center",label:"预售定金","min-width":"80"},scopedSlots:t._u([{key:"default",fn:function(e){return[a("span",[t._v(t._s(e.row["down_price"]))])]}}],null,!1,2160669390)}):t._e(),t._v(" "),a("el-table-column",{attrs:{align:"center",label:"已售商品数量","min-width":"80"},scopedSlots:t._u([{key:"default",fn:function(e){return[a("span",[t._v(t._s(e.row["sales"]))])]}}],null,!1,703426790)})],1)],1):t._e(),t._v(" "),1===t.formValidate.spec_type?a("div",{staticClass:"labeltop",attrs:{label:"规格列表:"}},[a("el-table",{attrs:{data:t.ManyAttrValue,height:"260","tooltip-effect":"dark","row-key":function(t){return t.id}}},[t.manyTabDate?t._l(t.manyTabDate,(function(e,l){return a("el-table-column",{key:l,attrs:{align:"center",label:t.manyTabTit[l].title,"min-width":"80"},scopedSlots:t._u([{key:"default",fn:function(e){return[a("span",{staticClass:"priceBox",domProps:{textContent:t._s(e.row[l])}})]}}],null,!0)})})):t._e(),t._v(" "),a("el-table-column",{attrs:{align:"center",label:"预售价格","min-width":"80"},scopedSlots:t._u([{key:"default",fn:function(e){return[a("span",[t._v(t._s(e.row["presell_price"]))])]}}],null,!1,1547007341)}),t._v(" "),2===t.formValidate.presell_type?a("el-table-column",{attrs:{align:"center",label:"预售定金","min-width":"80"},scopedSlots:t._u([{key:"default",fn:function(e){return[a("span",[t._v(t._s(e.row["down_price"]))])]}}],null,!1,2160669390)}):t._e(),t._v(" "),a("el-table-column",{attrs:{align:"center",label:"已售商品数量","min-width":"80"},scopedSlots:t._u([{key:"default",fn:function(e){return[a("span",[t._v(t._s(e.row["sales"]))])]}}],null,!1,703426790)})],2)],1):t._e()])]),t._v(" "),a("div",{staticClass:"title",staticStyle:{"margin-top":"20px"}},[t._v("预售商品活动信息")]),t._v(" "),a("div",{staticClass:"acea-row"},[a("div",{staticClass:"list sp100"},[a("label",{staticClass:"name"},[t._v("预售简介:")]),t._v(t._s(t.formValidate.store_info))]),t._v(" "),a("div",{staticClass:"list sp100"},[a("label",{staticClass:"name"},[t._v("预售活动日期:")]),t._v(t._s(t.formValidate.start_time+"-"+t.formValidate.end_time))]),t._v(" "),2===t.formValidate.presell_type?a("div",{staticClass:"list sp100"},[a("label",{staticClass:"name"},[t._v("尾款支付日期:")]),t._v(t._s(t.formValidate.final_start_time+"-"+t.formValidate.final_end_time))]):t._e(),t._v(" "),a("div",{staticClass:"list sp"},[a("label",{staticClass:"name"},[t._v("审核状态:")]),t._v(t._s(1===t.formValidate.product_status?"审核通过":0===t.formValidate.product_status?"未审核":"审核未通过"))]),t._v(" "),1===t.formValidate.presell_type?a("div",{staticClass:"list sp"},[a("label",{staticClass:"name"},[t._v("预售成功/参与人次:")]),t._v(t._s((t.formValidate.tattend_one&&t.formValidate.tattend_one.pay)+"/"+(t.formValidate.tattend_one&&t.formValidate.tattend_one.all)))]):t._e(),t._v(" "),a("div",{staticClass:"list sp"},[a("label",{staticClass:"name"},[t._v("限量:")]),t._v(t._s(t.formValidate.stock_count))]),t._v(" "),a("div",{staticClass:"list sp"},[a("label",{staticClass:"name"},[t._v("限量剩余:")]),t._v(t._s(t.formValidate.stock))]),t._v(" "),a("div",{staticClass:"list sp"},[a("label",{staticClass:"name"},[t._v("限购件数:")]),t._v(t._s(t.formValidate.pay_count)+"(0为不限制购买数量)")]),t._v(" "),2===t.formValidate.presell_type?a("div",{staticClass:"list sp"},[a("label",{staticClass:"name"},[t._v("第一阶段(定金支付)成功/参与人次:")]),t._v(t._s((t.formValidate.tattend_one&&t.formValidate.tattend_one.pay)+"/"+(t.formValidate.tattend_one&&t.formValidate.tattend_one.all)))]):t._e(),t._v(" "),2===t.formValidate.presell_type?a("div",{staticClass:"list sp"},[a("label",{staticClass:"name"},[t._v("第二阶段(尾款支付)成功/参与人次:")]),t._v(t._s((t.formValidate.tattend_two&&t.formValidate.tattend_two.pay)+"/"+(t.formValidate.tattend_two&&t.formValidate.tattend_two.all)))]):t._e(),t._v(" "),2===t.formValidate.presell_type?a("div",{staticClass:"list sp"},[a("label",{staticClass:"name"},[t._v("发货时间:")]),t._v(t._s("支付尾款后"+t.formValidate.delivery_day+"天内"))]):t._e(),t._v(" "),1===t.formValidate.presell_type?a("div",{staticClass:"list sp"},[a("label",{staticClass:"name"},[t._v("发货时间:")]),t._v(t._s(1===t.formValidate.delivery_type?"支付成功后"+t.formValidate.delivery_day+"天内":"预售结束后"+t.formValidate.delivery_day+"天内"))]):t._e(),t._v(" "),a("div",{staticClass:"list sp"},[a("label",{staticClass:"name"},[t._v("预售活动状态:")]),t._v(t._s(0===t.formValidate.presell_status?"未开始":1===t.formValidate.presell_status?"正在进行":"已结束"))]),t._v(" "),a("div",{staticClass:"list sp"},[a("label",{staticClass:"name"},[t._v("显示状态:")]),t._v(t._s(1===t.formValidate.is_show?"显示":"隐藏"))]),t._v(" "),a("div",{staticClass:"list sp"},[a("label",{staticClass:"name"},[t._v("创建时间:")]),t._v(t._s(t.formValidate.create_time))])])])])]):t._e(),t._v(" "),t.previewVisible?a("div",[a("div",{staticClass:"bg",on:{click:function(e){e.stopPropagation(),t.previewVisible=!1}}}),t._v(" "),t.previewVisible?a("preview-box",{ref:"previewBox",attrs:{"goods-id":t.goodsId,"product-type":2,"preview-key":t.previewKey}}):t._e()],1):t._e(),t._v(" "),t.dialogLabel?a("el-dialog",{attrs:{title:"选择标签",visible:t.dialogLabel,width:"800px","before-close":t.handleClose},on:{"update:visible":function(e){t.dialogLabel=e}}},[a("el-form",{ref:"labelForm",attrs:{model:t.labelForm},nativeOn:{submit:function(t){t.preventDefault()}}},[a("el-form-item",[a("el-select",{staticClass:"selWidth",attrs:{clearable:"",multiple:"",placeholder:"请选择"},model:{value:t.labelForm.mer_labels,callback:function(e){t.$set(t.labelForm,"mer_labels",e)},expression:"labelForm.mer_labels"}},t._l(t.labelList,(function(t){return a("el-option",{key:t.id,attrs:{label:t.name,value:t.id}})})),1)],1)],1),t._v(" "),a("span",{staticClass:"dialog-footer",attrs:{slot:"footer"},slot:"footer"},[a("el-button",{attrs:{type:"primary"},on:{click:function(e){return t.submitForm("labelForm")}}},[t._v("提交")])],1)],1):t._e()],1)},s=[],i=a("c7eb"),r=(a("96cf"),a("1da1")),n=(a("7f7f"),a("8615"),a("ac6a"),a("28a5"),a("55dd"),a("c4c8")),o=a("b7be"),c=a("8c98"),d=a("83d6"),u={product_id:"",image:"",slider_image:[],store_name:"",store_info:"",start_day:"",end_day:"",start_time:"",end_time:"",is_open_recommend:1,is_open_state:1,is_show:1,presell_type:1,keyword:"",brand_id:"",cate_id:"",mer_cate_id:[],unit_name:"",integral:0,sort:0,is_good:0,temp_id:"",preSale_date:"",finalPayment_date:"",delivery_type:1,delivery_day:10,create_time:"",attrValue:[{image:"",price:null,down_price:null,presell_price:null,cost:null,ot_price:null,old_stock:null,stock:null,bar_code:"",weight:null,volume:null}],attr:[],extension_type:0,content:"",spec_type:0,is_gift_bag:0,tattend_two:{},tattend_one:{}},_={name:"ProductList",components:{previewBox:c["a"]},data:function(){return{headeNum:[{count:0,presell_type:1,title:"全款预售"},{count:0,presell_type:2,title:"定金预售"}],props:{emitPath:!1},roterPre:d["roterPre"],listLoading:!0,tableData:{data:[],total:0},preSaleStatusList:[{label:"未开始",value:0},{label:"正在进行",value:1},{label:"已结束",value:2}],productStatusList:[{label:"上架显示",value:1},{label:"下架",value:0},{label:"平台关闭",value:-1}],fromList:{custom:!0,fromTxt:[{text:"全部",val:""},{text:"待审核",val:"0"},{text:"已审核",val:"1"},{text:"审核失败",val:"-1"}]},tableFrom:{page:1,limit:20,keyword:"",mer_labels:"",product_status:this.$route.query.status?this.$route.query.status:"",type:"",presell_type:this.$route.query.type?this.$route.query.type:"1",us_status:"",product_presell_id:this.$route.query.id?this.$route.query.id:""},product_presell_id:this.$route.query.id?this.$route.query.id:"",product_id:"",modals:!1,dialogVisible:!1,loading:!0,manyTabTit:{},manyTabDate:{},formValidate:Object.assign({},u),OneattrValue:[Object.assign({},u.attrValue[0])],ManyAttrValue:[Object.assign({},u.attrValue[0])],attrInfo:{},tabClickIndex:"",previewVisible:!1,goodsId:"",previewKey:"",dialogLabel:!1,labelForm:{},labelList:[]}},watch:{product_presell_id:function(t,e){this.getList("")},$route:function(t,e){this.$route.query.product_presell_id&&this.getList("")}},mounted:function(){this.getList(""),this.getLabelLst()},methods:{tableRowClassName:function(t){var e=t.row,a=t.rowIndex;e.index=a},tabClick:function(t){this.tabClickIndex=t.index},inputBlur:function(t){var e=this;(!t.row.product.sort||t.row.product.sort<0)&&(t.row.product.sort=0),Object(o["X"])(t.row.product_presell_id,{sort:t.row.product.sort}).then((function(t){e.closeEdit()})).catch((function(t){}))},closeEdit:function(){this.tabClickIndex=null},renderheader:function(t,e){var a=e.column;e.$index;return t("span",{},[t("span",{},a.label.split("|")[0]),t("br"),t("span",{},a.label.split("|")[1])])},watCh:function(t){var e=this,a={},l={};this.formValidate.attr.forEach((function(t,e){a["value"+e]={title:t.value},l["value"+e]=""})),this.ManyAttrValue.forEach((function(t,a){var l=Object.values(t.detail).sort().join("/");e.attrInfo[l]&&(e.ManyAttrValue[a]=e.attrInfo[l])})),this.attrInfo={},this.ManyAttrValue.forEach((function(t){e.attrInfo[Object.values(t.detail).sort().join("/")]=t})),this.manyTabTit=a,this.manyTabDate=l},getLabelLst:function(){var t=this;Object(n["v"])().then((function(e){t.labelList=e.data})).catch((function(e){t.$message.error(e.message)}))},handleClose:function(){this.dialogLabel=!1},onEditLabel:function(t){if(this.dialogLabel=!0,this.product_id=t.product_presell_id,t.mer_labels&&t.mer_labels.length){var e=t.mer_labels.map((function(t){return t.id}));this.labelForm={mer_labels:e}}else this.labelForm={mer_labels:[]}},submitForm:function(t){var e=this;this.$refs[t].validate((function(t){t&&Object(n["Qb"])(e.product_id,e.labelForm).then((function(t){var a=t.message;e.$message.success(a),e.getList(""),e.dialogLabel=!1}))}))},goDetail:function(t){var e=this;this.dialogVisible=!0,this.loading=!0,this.formValidate={},Object(n["O"])(t).then(function(){var t=Object(r["a"])(Object(i["a"])().mark((function t(a){var l;return Object(i["a"])().wrap((function(t){while(1)switch(t.prev=t.next){case 0:e.loading=!1,l=a.data,e.formValidate={product_id:l.product.product_id,image:l.product.image,slider_image:l.product.slider_image,store_name:l.store_name,store_info:l.store_info,presell_type:l.presell_type?l.presell_type:1,delivery_type:l.delivery_type?l.delivery_type:1,delivery_day:l.delivery_day?l.delivery_day:10,start_time:l.start_time?l.start_time:"",end_time:l.end_time?l.end_time:"",final_start_time:l.final_start_time?l.final_start_time:"",final_end_time:l.final_end_time?l.final_end_time:"",brand_id:l.product.brand_id,cate_id:l.cate_id?l.cate_id:"",mer_cate_id:l.mer_cate_id,unit_name:l.product.unit_name,sort:l.product.sort,is_good:l.product.is_good,temp_id:l.product.temp_id,is_show:l.is_show,attr:l.product.attr,extension_type:l.extension_type,content:l.content,spec_type:l.product.spec_type,is_gift_bag:l.product.is_gift_bag,tattend_two:l.tattend_two,tattend_one:l.tattend_one,create_time:l.create_time,presell_status:l.presell_status,product_status:l.product_status,pay_count:l.pay_count,stock:l.stock,stock_count:l.stock_count},0===e.formValidate.spec_type?(e.OneattrValue=l.product.attrValue,e.OneattrValue[0].down_price=e.OneattrValue[0].presellSku?e.OneattrValue[0].presellSku.down_price:0,e.OneattrValue[0].presell_price=e.OneattrValue[0].presellSku?e.OneattrValue[0].presellSku.presell_price:0,e.OneattrValue[0].sales=e.OneattrValue[0].presellSku?e.OneattrValue[0].presellSku.seles:0):(e.ManyAttrValue=[],l.product.attrValue.forEach((function(t,a){t.presellSku&&(e.$set(t,"down_price",t.presellSku.down_price),e.$set(t,"presell_price",t.presellSku.presell_price),e.$set(t,"sales",t.presellSku.seles),e.ManyAttrValue.push(t))})),e.watCh(e.formValidate.attr)),console.log(e.ManyAttrValue),e.fullscreenLoading=!1,e.formValidate.preSale_date=[l.start_time,l.end_time],e.formValidate.finalPayment_date=[l.final_start_time,l.final_end_time];case 8:case"end":return t.stop()}}),t)})));return function(e){return t.apply(this,arguments)}}()).catch((function(t){e.fullscreenLoading=!1,e.$message.error(t.message)}))},handlePreview:function(t){this.previewVisible=!0,this.goodsId=t,this.previewKey=""},getList:function(t){var e=this;this.listLoading=!0,this.tableFrom.page=t||this.tableFrom.page,Object(n["P"])(this.tableFrom).then((function(t){e.tableData.data=t.data.list,e.tableData.total=t.data.count,e.headeNum[0]["count"]=t.data.stat.all,e.headeNum[1]["count"]=t.data.stat.down,console.log(e.headeNum),e.listLoading=!1})).catch((function(t){e.listLoading=!1,e.$message.error(t.message)}))},pageChange:function(t){this.tableFrom.page=t,this.getList("")},handleSizeChange:function(t){this.tableFrom.limit=t,this.getList("")},handleDelete:function(t,e){var a=this;this.$modalSure("删除该商品吗").then((function(){Object(n["R"])(t).then((function(t){var l=t.message;a.$message.success(l),a.tableData.data.splice(e,1)})).catch((function(t){var e=t.message;a.$message.error(e)}))}))},onchangeIsShow:function(t){var e=this;Object(n["T"])(t.product_presell_id,t.is_show).then((function(t){var a=t.message;e.$message.success(a),e.getList("")})).catch((function(t){var a=t.message;e.$message.error(a)}))}}},p=_,m=(a("7205"),a("2877")),v=Object(m["a"])(p,l,s,!1,null,"e2b0485e",null);e["default"]=v.exports},7205:function(t,e,a){"use strict";a("c5bb")},8615:function(t,e,a){var l=a("5ca1"),s=a("504c")(!1);l(l.S,"Object",{values:function(t){return s(t)}})},c5bb:function(t,e,a){}}]); \ No newline at end of file diff --git a/public/mer/js/chunk-0d2c1415.5b747251.js b/public/mer/js/chunk-0d2c1415.5b747251.js new file mode 100644 index 00000000..633565b9 --- /dev/null +++ b/public/mer/js/chunk-0d2c1415.5b747251.js @@ -0,0 +1 @@ +(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-0d2c1415","chunk-2d0da983"],{4553:function(e,t,i){"use strict";i.r(t);var o=function(){var e=this,t=e.$createElement,i=e._self._c||t;return i("div",[i("div",{staticClass:"mt20 ml20"},[i("el-input",{staticStyle:{width:"300px"},attrs:{placeholder:"请输入视频链接"},model:{value:e.videoLink,callback:function(t){e.videoLink=t},expression:"videoLink"}}),e._v(" "),i("input",{ref:"refid",staticStyle:{display:"none"},attrs:{type:"file"},on:{change:e.zh_uploadFile_change}}),e._v(" "),i("el-button",{staticClass:"ml10",attrs:{type:"primary",icon:"ios-cloud-upload-outline"},on:{click:e.zh_uploadFile}},[e._v(e._s(e.videoLink?"确认添加":"上传视频"))]),e._v(" "),e.upload.videoIng?i("el-progress",{staticStyle:{"margin-top":"20px"},attrs:{"stroke-width":20,percentage:e.progress,"text-inside":!0}}):e._e(),e._v(" "),e.formValidate.video_link?i("div",{staticClass:"iview-video-style"},[i("video",{staticStyle:{width:"100%",height:"100%!important","border-radius":"10px"},attrs:{src:e.formValidate.video_link,controls:"controls"}},[e._v("\n 您的浏览器不支持 video 标签。\n ")]),e._v(" "),i("div",{staticClass:"mark"}),e._v(" "),i("i",{staticClass:"iconv el-icon-delete",on:{click:e.delVideo}})]):e._e()],1),e._v(" "),i("div",{staticClass:"mt50 ml20"},[i("el-button",{attrs:{type:"primary"},on:{click:e.uploads}},[e._v("确认")])],1)])},a=[],n=(i("7f7f"),i("c4c8")),s=(i("6bef"),{name:"Vide11o",props:{isDiy:{type:Boolean,default:!1}},data:function(){return{upload:{videoIng:!1},progress:20,videoLink:"",formValidate:{video_link:""}}},methods:{delVideo:function(){var e=this;e.$set(e.formValidate,"video_link","")},zh_uploadFile:function(){this.videoLink?this.formValidate.video_link=this.videoLink:this.$refs.refid.click()},zh_uploadFile_change:function(e){var t=this,i=e.target.files[0].name.substr(e.target.files[0].name.indexOf("."));if(".mp4"!==i)return t.$message.error("只能上传MP4文件");Object(n["db"])().then((function(i){t.$videoCloud.videoUpload({type:i.data.type,evfile:e,res:i,uploading:function(e,i){t.upload.videoIng=e,console.log(e,i)}}).then((function(e){t.formValidate.video_link=e.url||e.data.src,t.$message.success("视频上传成功"),t.progress=100,t.upload.videoIng=!1})).catch((function(e){t.$message.error(e)}))}))},uploads:function(){this.formValidate.video_link||this.videoLink?!this.videoLink||this.formValidate.video_link?this.isDiy?this.$emit("getVideo",this.formValidate.video_link):nowEditor&&(nowEditor.dialog.close(!0),nowEditor.editor.setContent("",!0)):this.$message.error("请点击确认添加按钮!"):this.$message.error("您还没有上传视频!")}}}),r=s,d=(i("8307"),i("2877")),l=Object(d["a"])(r,o,a,!1,null,"732b6bbd",null);t["default"]=l.exports},"6bef":function(e,t,i){"use strict";i.r(t);i("28a5"),i("a481");(function(){if(window.frameElement&&window.frameElement.id){var e=window.parent,t=e.$EDITORUI[window.frameElement.id.replace(/_iframe$/,"")],i=t.editor,o=e.UE,a=o.dom.domUtils,n=o.utils,s=(o.browser,o.ajax,function(e){return document.getElementById(e)});window.nowEditor={editor:i,dialog:t},n.loadFile(document,{href:i.options.themePath+i.options.theme+"/dialogbase.css?cache="+Math.random(),tag:"link",type:"text/css",rel:"stylesheet"});var r=i.getLang(t.className.split("-")[2]);r&&a.on(window,"load",(function(){var e=i.options.langPath+i.options.lang+"/images/";for(var t in r["static"]){var o=s(t);if(o){var d=o.tagName,l=r["static"][t];switch(l.src&&(l=n.extend({},l,!1),l.src=e+l.src),l.style&&(l=n.extend({},l,!1),l.style=l.style.replace(/url\s*\(/g,"url("+e)),d.toLowerCase()){case"var":o.parentNode.replaceChild(document.createTextNode(l),o);break;case"select":for(var c,u=o.options,v=0;c=u[v];)c.innerHTML=l.options[v++];for(var p in l)"options"!=p&&o.setAttribute(p,l[p]);break;default:a.setAttributes(o,l)}}}}))}})()},8307:function(e,t,i){"use strict";i("f5ee")},f5ee:function(e,t,i){}}]); \ No newline at end of file diff --git a/public/mer/js/chunk-0fa0e81e.b9a837bf.js b/public/mer/js/chunk-0fa0e81e.b9a837bf.js new file mode 100644 index 00000000..74e1b319 --- /dev/null +++ b/public/mer/js/chunk-0fa0e81e.b9a837bf.js @@ -0,0 +1 @@ +(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-0fa0e81e"],{"2e83":function(t,e,a){"use strict";a.d(e,"a",(function(){return o}));a("28a5");var i=a("8122"),l=a("e8ae"),s=a.n(l),n=a("21a6");function o(t,e,a,l,o,r){var c,u=["A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z"],d=1,m=new s.a.Workbook,h=t.length;function g(t){var e=Array.isArray(t)?t[0]:t,a=Array.isArray(t)?t[1]:{};c=m.addWorksheet(e,a)}function p(t,e){if(!Object(i["isEmpty"])(t)){t=Array.isArray(t)?t:t.split(",");for(var a=0;ai)&&c.mergeCells(w(l)+t+":"+w(l)+e)}function C(t){if(!Object(i["isEmpty"])(t))if(Array.isArray(t))for(var e=0;e0?a("el-tabs",{on:{"tab-click":function(e){return t.getList(1)}},model:{value:t.tableForm.type,callback:function(e){t.$set(t.tableForm,"type",e)},expression:"tableForm.type"}},t._l(t.headeNum,(function(t,e){return a("el-tab-pane",{key:e,attrs:{name:t.type.toString(),label:t.title}})})),1):t._e()],1),t._v(" "),a("el-table",{directives:[{name:"loading",rawName:"v-loading",value:t.listLoading,expression:"listLoading"}],staticClass:"table",staticStyle:{width:"100%"},attrs:{data:t.tableData.data,size:"mini","highlight-current-row":""}},[a("el-table-column",{attrs:{label:"序号","min-width":"90"},scopedSlots:t._u([{key:"default",fn:function(e){return[a("span",[t._v(t._s(e.$index+(t.tableForm.page-1)*t.tableForm.limit+1))])]}}])}),t._v(" "),a("el-table-column",{attrs:{prop:"time",label:"日期","min-width":"150"}}),t._v(" "),a("el-table-column",{attrs:{prop:"income",label:"账期内收入","min-width":"100"}}),t._v(" "),a("el-table-column",{attrs:{prop:"expend",label:"账期内支出","min-width":"150"}}),t._v(" "),a("el-table-column",{attrs:{prop:"charge",label:"商户应入账金额","min-width":"120"}}),t._v(" "),a("el-table-column",{attrs:{label:"操作","min-width":"200",fixed:"right"},scopedSlots:t._u([{key:"default",fn:function(e){return[a("el-button",{attrs:{type:"text",size:"small"},on:{click:function(a){return t.onDetails(e.row.time)}}},[t._v("详情")]),t._v(" "),a("el-button",{attrs:{type:"text",size:"small"},on:{click:function(a){return t.exports(e.row.time)}}},[t._v("下载账单")])]}}])})],1),t._v(" "),a("div",{staticClass:"block mb20"},[a("el-pagination",{attrs:{"page-sizes":[10,20,30,40],"page-size":t.tableForm.limit,"current-page":t.tableForm.page,layout:"total, sizes, prev, pager, next, jumper",total:t.tableData.total},on:{"size-change":t.handleSizeChange,"current-change":t.pageChange}})],1)],1),t._v(" "),a("el-dialog",{attrs:{title:1==t.tableForm.type?"日账单详情":"月账单详情",visible:t.dialogVisible,width:"830px","before-close":t.handleClose,center:""},on:{"update:visible":function(e){t.dialogVisible=e}}},[a("el-row",{staticClass:"ivu-mt mt20",attrs:{align:"middle"}},[a("el-col",{attrs:{span:4}},[a("el-menu",{staticClass:"el-menu-vertical-demo",attrs:{"default-active":"0"}},[a("el-menu-item",{attrs:{name:t.accountDetails.date}},[a("span",[t._v(t._s(t.accountDetails.date))])])],1)],1),t._v(" "),a("el-col",{attrs:{span:20}},[a("el-col",{attrs:{span:8}},[a("div",{staticClass:"grid-content"},[a("span",{staticClass:"title"},[t._v(t._s(t.accountDetails.income&&t.accountDetails.income.title))]),t._v(" "),a("span",{staticClass:"color_red"},[t._v(t._s(t.accountDetails.income&&t.accountDetails.income.number)+"元")]),t._v(" "),a("span",{staticClass:"count"},[t._v(t._s(t.accountDetails.income&&t.accountDetails.income.count))]),t._v(" "),t.accountDetails.income.data?a("div",{staticClass:"list"},t._l(t.accountDetails.income.data,(function(e,i){return a("el-row",{key:i,staticClass:"item"},[a("el-col",{staticClass:"name",attrs:{span:12}},[t._v(t._s(e["0"]))]),t._v(" "),a("el-col",{staticClass:"cost",attrs:{span:12}},[a("span",{staticClass:"cost_num"},[t._v(t._s(e["1"]))]),t._v(" "),a("span",{staticClass:"cost_count"},[t._v(t._s(e["2"]))])])],1)})),1):t._e()]),t._v(" "),a("el-divider",{attrs:{direction:"vertical"}})],1),t._v(" "),a("el-col",{attrs:{span:8}},[a("div",{staticClass:"grid-content"},[a("span",{staticClass:"title"},[t._v(t._s(t.accountDetails.expend&&t.accountDetails.expend.title))]),t._v(" "),a("span",{staticClass:"color_gray"},[t._v(t._s(t.accountDetails.expend&&t.accountDetails.expend.number)+"元")]),t._v(" "),a("span",{staticClass:"count"},[t._v(t._s(t.accountDetails.expend&&t.accountDetails.expend.count))]),t._v(" "),t.accountDetails.expend.data?a("div",{staticClass:"list"},t._l(t.accountDetails.expend.data,(function(e,i){return a("el-row",{key:i,staticClass:"item"},[a("el-col",{staticClass:"name",attrs:{span:12}},[t._v(t._s(e["0"]))]),t._v(" "),a("el-col",{staticClass:"cost",attrs:{span:12}},[a("span",{staticClass:"cost_num"},[t._v(t._s(e["1"]))]),t._v(" "),a("span",{staticClass:"cost_count"},[t._v(t._s(e["2"]))])])],1)})),1):t._e()]),t._v(" "),a("el-divider",{attrs:{direction:"vertical"}})],1),t._v(" "),a("el-col",{attrs:{span:8}},[a("div",{staticClass:"grid-content"},[a("span",{staticClass:"title"},[t._v(t._s(t.accountDetails.charge&&t.accountDetails.charge.title))]),t._v(" "),a("span",{staticClass:"color_gray"},[t._v(t._s(t.accountDetails.charge&&t.accountDetails.charge.number)+"元")])])])],1)],1),t._v(" "),a("span",{staticClass:"dialog-footer",attrs:{slot:"footer"},slot:"footer"},[a("el-button",{attrs:{type:"primary"},on:{click:function(e){t.dialogVisible=!1}}},[t._v("我知道了")])],1)],1)],1)},l=[],s=a("c7eb"),n=(a("96cf"),a("1da1")),o=a("2801"),r=a("2e83"),c=a("83d6"),u=a("0f56"),d={name:"Record",components:{cardsData:u["a"]},data:function(){return{loading:!1,roterPre:c["roterPre"],timeVal:[],listLoading:!0,tableData:{data:[],total:0},tableForm:{page:1,limit:10,date:"",type:"1"},ruleForm:{status:"0"},headeNum:[{type:1,title:"日账单"},{type:2,title:"月账单"}],dialogVisible:!1,rules:{status:[{required:!0,message:"请选择对账状态",trigger:"change"}]},reconciliationId:0,cardLists:[],accountDetails:{date:"",charge:{},expend:{},income:{}}}},computed:{},mounted:function(){this.getList(""),this.getHeaderData()},methods:{onDetails:function(t){var e=this;Object(o["f"])(this.tableForm.type,{date:t}).then((function(t){e.dialogVisible=!0,e.accountDetails=t.data})).catch((function(t){e.$message.error(t.message)}))},getHeaderData:function(){var t=this;Object(o["e"])({date:this.tableForm.date}).then((function(e){t.cardLists=e.data.stat})).catch((function(e){t.$message.error(e.message)}))},exports:function(){var t=Object(n["a"])(Object(s["a"])().mark((function t(e){var a,i;return Object(s["a"])().wrap((function(t){while(1)switch(t.prev=t.next){case 0:return a=this.tableForm.type,[],i={},t.next=5,this.downloadAccounts(a,e);case 5:return i=t.sent,Object(r["a"])(i.header,i.title,i.export,i.foot,i.filename),t.abrupt("return");case 8:case"end":return t.stop()}}),t,this)})));function e(e){return t.apply(this,arguments)}return e}(),downloadAccounts:function(t,e){return new Promise((function(a,i){Object(o["d"])(t,{date:e}).then((function(t){return a(t.data)}))}))},handleClose:function(){this.dialogVisible=!1},onchangeTime:function(t){this.timeVal=t,this.tableForm.date=this.timeVal?this.timeVal.join("-"):"",this.getList(""),this.getHeaderData()},getList:function(t){var e=this;this.listLoading=!0,this.tableForm.page=t||this.tableForm.page,Object(o["g"])(this.tableForm).then((function(t){e.tableData.data=t.data.list,e.tableData.total=t.data.count,e.listLoading=!1})).catch((function(t){e.listLoading=!1,e.$message.error(t.message)}))},pageChange:function(t){this.tableForm.page=t,this.getList("")},handleSizeChange:function(t){this.tableForm.limit=t,this.chkName="",this.getList("")}}},m=d,h=(a("fa96"),a("2877")),g=Object(h["a"])(m,i,l,!1,null,"6f36b31e",null);e["default"]=g.exports},fa96:function(t,e,a){"use strict";a("459e")}}]); \ No newline at end of file diff --git a/public/mer/js/chunk-1306dfb6.61813016.js b/public/mer/js/chunk-1306dfb6.61813016.js new file mode 100644 index 00000000..ea8c283a --- /dev/null +++ b/public/mer/js/chunk-1306dfb6.61813016.js @@ -0,0 +1 @@ +(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-1306dfb6"],{"2c13":function(e,t,a){"use strict";a("98c7")},"3c36":function(e,t,a){},"3e1a":function(e,t,a){},"407c":function(e,t,a){"use strict";a("3e1a")},7514:function(e,t,a){"use strict";var i=a("5ca1"),s=a("0a49")(5),l="find",n=!0;l in[]&&Array(1)[l]((function(){n=!1})),i(i.P+i.F*n,"Array",{find:function(e){return s(this,e,arguments.length>1?arguments[1]:void 0)}}),a("9c6c")(l)},9899:function(e,t,a){"use strict";a("3c36")},"98c7":function(e,t,a){},b9c2:function(e,t,a){"use strict";a.r(t);var i=function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("div",{staticClass:"divBox"},[a("el-card",{staticClass:"box-card"},[a("div",{staticClass:"clearfix",attrs:{slot:"header"},slot:"header"},[a("el-tabs",{on:{"tab-click":function(t){return e.getList(1)}},model:{value:e.user_type,callback:function(t){e.user_type=t},expression:"user_type"}},[a("el-tab-pane",{attrs:{label:"全部用户",name:""}}),e._v(" "),a("el-tab-pane",{attrs:{label:"微信用户",name:"wechat"}}),e._v(" "),a("el-tab-pane",{attrs:{label:"小程序用户",name:"routine"}}),e._v(" "),a("el-tab-pane",{attrs:{label:"H5用户",name:"h5"}}),e._v(" "),a("el-tab-pane",{attrs:{label:"APP",name:"app"}}),e._v(" "),a("el-tab-pane",{attrs:{label:"PC",name:"pc"}})],1),e._v(" "),a("div",{staticClass:"container"},[a("el-form",{attrs:{inline:"",size:"small","label-position":e.labelPosition,"label-width":"100px"}},[a("el-row",[a("el-col",{attrs:{xs:24,sm:24,md:24,lg:18,xl:18}},[a("el-col",e._b({},"el-col",e.grid,!1),[a("el-form-item",{attrs:{label:"用户昵称:"}},[a("el-input",{staticClass:"selWidth",attrs:{placeholder:"请输入昵称",clearable:""},model:{value:e.userFrom.nickname,callback:function(t){e.$set(e.userFrom,"nickname",t)},expression:"userFrom.nickname"}})],1)],1)],1),e._v(" "),e.collapse?[a("el-col",{attrs:{xs:24,sm:24,md:24,lg:18,xl:18}},[a("el-col",e._b({},"el-col",e.grid,!1),[a("el-form-item",{attrs:{label:"用户标签:"}},[a("el-select",{staticClass:"selWidth",attrs:{placeholder:"请选择",clearable:"",filterable:""},model:{value:e.userFrom.label_id,callback:function(t){e.$set(e.userFrom,"label_id",t)},expression:"userFrom.label_id"}},[a("el-option",{attrs:{value:""}},[e._v("全部")]),e._v(" "),e._l(e.labelLists,(function(e,t){return a("el-option",{key:t,attrs:{value:e.label_id,label:e.label_name}})}))],2)],1)],1)],1),e._v(" "),a("el-col",{attrs:{xs:24,sm:24,md:24,lg:18,xl:18}},[a("el-col",e._b({},"el-col",e.grid,!1),[a("el-form-item",{attrs:{label:"性别:"}},[a("el-radio-group",{staticClass:"selWidth",attrs:{type:"button"},model:{value:e.userFrom.sex,callback:function(t){e.$set(e.userFrom,"sex",t)},expression:"userFrom.sex"}},[a("el-radio-button",{attrs:{label:""}},[a("span",[e._v("全部")])]),e._v(" "),a("el-radio-button",{attrs:{label:"1"}},[a("span",[e._v("男")])]),e._v(" "),a("el-radio-button",{attrs:{label:"2"}},[a("span",[e._v("女")])]),e._v(" "),a("el-radio-button",{attrs:{label:"0"}},[a("span",[e._v("保密")])])],1)],1)],1),e._v(" "),a("el-col",e._b({},"el-col",e.grid,!1),[a("el-form-item",{attrs:{label:"身份:"}},[a("el-radio-group",{staticClass:"selWidth",attrs:{type:"button"},model:{value:e.userFrom.is_promoter,callback:function(t){e.$set(e.userFrom,"is_promoter",t)},expression:"userFrom.is_promoter"}},[a("el-radio-button",{attrs:{label:""}},[a("span",[e._v("全部")])]),e._v(" "),a("el-radio-button",{attrs:{label:"1"}},[a("span",[e._v("推广员")])]),e._v(" "),a("el-radio-button",{attrs:{label:"0"}},[a("span",[e._v("普通用户")])])],1)],1)],1)],1),e._v(" "),a("el-col",{attrs:{xs:24,sm:24,md:24,lg:18,xl:18}},[a("el-col",e._b({},"el-col",e.grid,!1),[a("el-form-item",{attrs:{label:"访问情况:"}},[a("el-select",{staticClass:"selWidth",attrs:{placeholder:"请选择",clearable:""},model:{value:e.userFrom.user_time_type,callback:function(t){e.$set(e.userFrom,"user_time_type",t)},expression:"userFrom.user_time_type"}},[a("el-option",{attrs:{value:"visit",label:"最后访问"}}),e._v(" "),a("el-option",{attrs:{value:"add_time",label:"首次访问"}})],1)],1)],1),e._v(" "),a("el-col",e._b({},"el-col",e.grid,!1),[a("el-form-item",{attrs:{label:"消费情况:"}},[a("el-select",{staticClass:"selWidth",attrs:{placeholder:"请选择",clearable:""},model:{value:e.userFrom.pay_count,callback:function(t){e.$set(e.userFrom,"pay_count",t)},expression:"userFrom.pay_count"}},[a("el-option",{attrs:{value:"-1",label:"0次"}}),e._v(" "),a("el-option",{attrs:{value:"0",label:"1次及以上"}}),e._v(" "),a("el-option",{attrs:{value:"1",label:"2次及以上"}}),e._v(" "),a("el-option",{attrs:{value:"2",label:"3次及以上"}}),e._v(" "),a("el-option",{attrs:{value:"3",label:"4次及以上"}}),e._v(" "),a("el-option",{attrs:{value:"4",label:"5次及以上"}})],1)],1)],1)],1),e._v(" "),a("el-col",{attrs:{xs:24,sm:24,md:24,lg:18,xl:18}},[a("el-col",e._b({},"el-col",e.grid,!1),[a("el-form-item",{staticClass:"timeBox",attrs:{label:"访问时间:"}},[a("el-date-picker",{staticClass:"selWidth",attrs:{"value-format":"yyyy/MM/dd",align:"right","unlink-panels":"",format:"yyyy/MM/dd",size:"small",type:"daterange",placement:"bottom-end",placeholder:"自定义时间","picker-options":e.pickerOptions},on:{change:e.onchangeTime},model:{value:e.timeVal,callback:function(t){e.timeVal=t},expression:"timeVal"}})],1)],1)],1)]:e._e(),e._v(" "),a("el-col",{staticClass:"text-right userFrom",attrs:{xs:24,sm:24,md:24,lg:6,xl:6}},[a("el-form-item",[a("el-button",{staticClass:"mr15",attrs:{type:"primary",icon:"ios-search",label:"default",size:"small"},on:{click:e.userSearchs}},[e._v("搜索")]),e._v(" "),a("el-button",{staticClass:"ResetSearch mr10",attrs:{size:"small",type:"reset"},on:{click:function(t){return e.reset("userFrom")}}},[e._v("重置")]),e._v(" "),a("a",{staticClass:"ivu-ml-8",on:{click:function(t){e.collapse=!e.collapse}}},[e.collapse?[e._v("\n 收起 "),a("i",{staticClass:"el-icon-arrow-up"})]:[e._v("\n 展开 "),a("i",{staticClass:"el-icon-arrow-down"})]],2)],1)],1)],2)],1)],1)],1),e._v(" "),a("div",[a("el-button",{staticClass:"mr15",staticStyle:{"margin-bottom":"20px"},attrs:{type:"primary",icon:"ios-search",label:"default",size:"small"},on:{click:e.sendCoupon}},[e._v("发送优惠券")]),e._v(" "),e.checkedIds.length>0||e.allCheck?a("el-alert",{attrs:{title:e.allCheck?"已选择 "+e.tableData.total+" 项":"已选择 "+e.checkedIds.length+" 项",type:"info","show-icon":""}}):e._e()],1),e._v(" "),a("el-table",{directives:[{name:"loading",rawName:"v-loading",value:e.listLoading,expression:"listLoading"}],staticStyle:{width:"100%"},attrs:{data:e.tableData.data,size:"small"}},[a("el-table-column",{attrs:{width:"50"},scopedSlots:e._u([{key:"header",fn:function(t){return[a("el-popover",{staticClass:"tabPop",attrs:{placement:"top-start",width:"100",trigger:"hover"}},[a("div",[a("span",{staticClass:"spBlock onHand",class:{check:"dan"===e.chkName},on:{click:function(a){return e.onHandle("dan",t.$index)}}},[e._v("选中本页")]),e._v(" "),a("span",{staticClass:"spBlock onHand",class:{check:"duo"===e.chkName},on:{click:function(t){return e.onHandle("duo")}}},[e._v("选中全部")])]),e._v(" "),a("el-checkbox",{attrs:{slot:"reference",value:"dan"===e.chkName&&e.checkedPage.indexOf(e.userFrom.page)>-1||"duo"===e.chkName},on:{change:e.changeType},slot:"reference"})],1)]}},{key:"default",fn:function(t){return[a("el-checkbox",{attrs:{value:e.checkedIds.indexOf(t.row.uid)>-1||"duo"===e.chkName&&-1===e.noChecked.indexOf(t.row.uid)},on:{change:function(a){return e.changeOne(a,t.row)}}})]}}])}),e._v(" "),a("el-table-column",{attrs:{prop:"user_merchant_id",label:"ID","min-width":"60"}}),e._v(" "),a("el-table-column",{attrs:{label:"头像","min-width":"50"},scopedSlots:e._u([{key:"default",fn:function(t){return[a("div",{staticClass:"demo-image__preview"},[a("el-image",{staticStyle:{width:"36px",height:"36px"},attrs:{src:t.row.avatar?t.row.avatar:e.moren,"preview-src-list":[t.row.avatar||e.moren]}})],1)]}}])}),e._v(" "),a("el-table-column",{attrs:{label:"昵称","min-width":"90"},scopedSlots:e._u([{key:"default",fn:function(t){var i=t.row;return[a("div",{staticClass:"acea-row"},[a("i",{directives:[{name:"show",rawName:"v-show",value:1===i.sex,expression:"row.sex===1"}],staticClass:"el-icon-male mr5",staticStyle:{"font-size":"15px","margin-top":"3px",color:"#2db7f5"}}),e._v(" "),a("i",{directives:[{name:"show",rawName:"v-show",value:2===i.sex,expression:"row.sex===2"}],staticClass:"el-icon-female mr5",staticStyle:{"font-size":"15px","margin-top":"3px",color:"#ed4014"}}),e._v(" "),a("div",{domProps:{textContent:e._s(i.nickname)}})]),e._v(" "),a("div",{directives:[{name:"show",rawName:"v-show",value:i.vip_name,expression:"row.vip_name"}],staticClass:"vipName"},[e._v(e._s(i.vip_name))])]}}])}),e._v(" "),a("el-table-column",{attrs:{prop:"is_svip",label:"付费会员","min-width":"120"},scopedSlots:e._u([{key:"default",fn:function(t){var i=t.row;return[a("span",[e._v(e._s(i.is_svip>0?"是":"否"))])]}}])}),e._v(" "),a("el-table-column",{attrs:{prop:"phone",label:"手机号","min-width":"120"}}),e._v(" "),a("el-table-column",{attrs:{label:"首次访问时间",prop:"create_time","min-width":"120"}}),e._v(" "),a("el-table-column",{attrs:{label:"用户类型","min-width":"100"},scopedSlots:e._u([{key:"default",fn:function(t){var i=t.row;return[a("span",[e._v(e._s("routine"===i.user_type?"小程序":"wechat"===i.user_type?"公众号":"app"===i.user_type?"App":"pc"===i.user_type?"PC":"H5"))])]}}])}),e._v(" "),a("el-table-column",{attrs:{label:"首次消费时间",prop:"first_pay_time","min-width":"120"}}),e._v(" "),a("el-table-column",{attrs:{label:"最近消费时间",prop:"last_pay_time","min-width":"120"}}),e._v(" "),a("el-table-column",{attrs:{label:"标签","min-width":"100"},scopedSlots:e._u([{key:"default",fn:function(t){var i=t.row;return[a("span",[e._v(" "+e._s(i.label.join("、")))])]}}])}),e._v(" "),a("el-table-column",{attrs:{label:"操作","min-width":"130",fixed:"right"},scopedSlots:e._u([{key:"default",fn:function(t){return[a("el-button",{staticClass:"mr10",attrs:{type:"text",size:"small"},on:{click:function(a){return e.onDetails(t.row)}}},[e._v("详情")]),e._v(" "),a("el-button",{staticClass:"mr10",attrs:{type:"text",size:"small"},on:{click:function(a){return e.setLabel(t.row.user_merchant_id)}}},[e._v("设置标签")])]}}])})],1),e._v(" "),a("div",{staticClass:"block"},[a("el-pagination",{attrs:{"page-sizes":[20,40,60,80],"page-size":e.userFrom.limit,"current-page":e.userFrom.page,layout:"total, sizes, prev, pager, next, jumper",total:e.tableData.total},on:{"size-change":e.handleSizeChange,"current-change":e.pageChange}})],1)],1),e._v(" "),e.visibleDetail?a("el-dialog",{attrs:{title:"用户详情",visible:e.visibleDetail,width:"1000px","before-close":e.Close},on:{"update:visible":function(t){e.visibleDetail=t}}},[e.visibleDetail?a("user-details",{ref:"userDetails",attrs:{uid:e.uid,row:e.row}}):e._e()],1):e._e(),e._v(" "),e.visibleCoupon?a("el-dialog",{attrs:{title:"优惠券列表",visible:e.visibleCoupon,width:"1000px"},on:{"update:visible":function(t){e.visibleCoupon=t}}},[e.visibleCoupon?a("coupon-List",{ref:"couponList",attrs:{couponForm:e.couponForm,checkedIds:e.checkedIds,allCheck:e.allCheck,userFrom:e.userFrom},on:{sendSuccess:e.sendSuccess}}):e._e()],1):e._e()],1)},s=[],l=(a("456d"),a("7514"),a("ac6a"),a("c24f")),n=function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("div",[e.psInfo?a("div",{staticClass:"acea-row row-middle"},[a("div",{staticClass:"avatar mr15"},[a("div",{staticClass:"block"},[a("el-avatar",{attrs:{size:50,src:e.psInfo.avatar?e.psInfo.avatar:e.moren}})],1)]),e._v(" "),a("div",{staticClass:"dashboard-workplace-header-tip"},[a("p",{staticClass:"dashboard-workplace-header-tip-title",domProps:{textContent:e._s(e.psInfo.nickname||"-")}}),e._v(" "),a("div",{staticClass:"dashboard-workplace-header-tip-desc"},[a("span",{staticClass:"dashboard-workplace-header-tip-desc-sp"},[e._v("消费次数: "+e._s(e.psInfo.pay_num)+"次")]),e._v(" "),a("span",{staticClass:"dashboard-workplace-header-tip-desc-sp"},[e._v("总消费金额: "+e._s(e.psInfo.pay_price)+"元")]),e._v(" "),e.psInfo.is_svip?a("span",{staticClass:"dashboard-workplace-header-tip-desc-sp"},[e._v("会员到期时间: "+e._s(e.psInfo.svip_endtime))]):e._e()])])]):e._e(),e._v(" "),a("el-row",{staticClass:"ivu-mt mt20",attrs:{align:"middle",gutter:10}},[a("el-col",{attrs:{span:4}},[a("el-menu",{staticClass:"el-menu-vertical-demo",attrs:{"default-active":"0"},on:{select:e.changeType}},e._l(e.list,(function(t,i){return a("el-menu-item",{key:i,attrs:{name:t.val,index:t.val}},[a("span",{attrs:{slot:"title"},slot:"title"},[e._v(e._s(t.label))])])})),1)],1),e._v(" "),a("el-col",{attrs:{span:20}},[a("el-table",{directives:[{name:"loading",rawName:"v-loading",value:e.loading,expression:"loading"}],staticClass:"tabNumWidth",attrs:{data:e.tableData.data,size:"mini"}},[e._l(e.columns,(function(e,t){return a("el-table-column",{key:t,attrs:{prop:e.key,label:e.title,width:"item.minWidth"}})})),e._v(" "),"3"===e.type?a("el-table-column",{attrs:{label:"有效期","min-width":"150"},scopedSlots:e._u([{key:"default",fn:function(t){return[a("span",[e._v(e._s(e._f("filterEmpty")(t.row?t.row.start_time+"-"+t.row.end_time:"")))])]}}],null,!1,3673940515)}):e._e()],2),e._v(" "),a("div",{staticClass:"block"},[a("el-pagination",{attrs:{"page-sizes":[6,12,18,24],"page-size":e.tableFrom.limit,"current-page":e.tableFrom.page,layout:"total, sizes, prev, pager, next, jumper",total:e.tableData.total},on:{"size-change":e.handleSizeChange,"current-change":e.pageChange}})],1)],1)],1)],1)},o=[],r=(a("c5f6"),{name:"UserDetails",props:{uid:{type:Number,default:null},row:{type:Object,default:null}},data:function(){return{moren:a("cdfe"),loading:!1,columns:[],Visible:!1,list:[{val:"0",label:"消费记录"},{val:"3",label:"持有优惠券"}],tableData:{data:[],total:0},tableFrom:{page:1,limit:6},psInfo:null,type:"0"}},mounted:function(){this.uid&&(this.getHeader(),this.getInfo("0"))},methods:{changeType:function(e){this.type=e,this.tableFrom.page=1,this.getInfo(e)},getInfo:function(e){var t=this;switch(this.loading=!0,e){case"0":Object(l["y"])(this.uid,this.tableFrom).then((function(e){t.tableData.data=e.data.list,t.tableData.total=e.data.count,t.columns=[{title:"订单ID",key:"order_id",minWidth:250},{title:"收货人",key:"real_name",minWidth:90},{title:"商品数量",key:"total_num",minWidth:80},{title:"商品总价",key:"total_price",minWidth:90},{title:"实付金额",key:"pay_price",minWidth:90},{title:"交易完成时间",key:"pay_time",minWidth:160}],t.loading=!1})).catch((function(){t.loading=!1}));break;case"3":Object(l["w"])(this.uid,this.tableFrom).then((function(e){t.tableData.data=e.data.list,t.tableData.total=e.data.count,t.columns=[{title:"优惠券名称",key:"coupon_title",minWidth:120},{title:"面值",key:"coupon_price",minWidth:120},{title:"最低消费额",key:"use_min_price",minWidth:120},{title:"兑换时间",key:"use_time",minWidth:120}],t.loading=!1})).catch((function(){t.loading=!1}));break}},pageChange:function(e){this.tableFrom.page=e,this.getInfo(this.type)},handleSizeChange:function(e){this.tableFrom.limit=e,this.getInfo(this.type)},getHeader:function(){this.psInfo=this.row}}}),c=r,u=(a("9899"),a("2877")),d=Object(u["a"])(c,n,o,!1,null,"a6de1244",null),m=d.exports,p=function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("div",{staticClass:"divBox"},[a("div",{staticClass:"header clearfix"},[a("div",{staticClass:"container"},[a("el-form",{attrs:{inline:"",size:"small"}},[a("el-form-item",{attrs:{label:"优惠劵名称:"}},[a("el-input",{staticClass:"selWidth",attrs:{placeholder:"请输入优惠券名称",size:"small"},nativeOn:{keyup:function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"enter",13,t.key,"Enter")?null:e.getList(1)}},model:{value:e.tableFrom.coupon_name,callback:function(t){e.$set(e.tableFrom,"coupon_name",t)},expression:"tableFrom.coupon_name"}},[a("el-button",{staticClass:"el-button-solt",attrs:{slot:"append",icon:"el-icon-search",size:"small"},on:{click:function(t){return e.getList(1)}},slot:"append"})],1)],1)],1)],1)]),e._v(" "),a("el-table",{directives:[{name:"loading",rawName:"v-loading",value:e.listLoading,expression:"listLoading"}],ref:"table",staticStyle:{width:"100%"},attrs:{data:e.tableData.data,size:"mini","max-height":"400","tooltip-effect":"dark"}},[a("el-table-column",{attrs:{width:"55"},scopedSlots:e._u([{key:"default",fn:function(t){return[a("el-radio",{attrs:{label:t.row.coupon_id},nativeOn:{change:function(a){return e.getTemplateRow(t.row)}},model:{value:e.templateRadio,callback:function(t){e.templateRadio=t},expression:"templateRadio"}},[e._v(" ")])]}}])}),e._v(" "),a("el-table-column",{attrs:{prop:"coupon_id",label:"ID","min-width":"50"}}),e._v(" "),a("el-table-column",{attrs:{prop:"title",label:"优惠券名称","min-width":"120"}}),e._v(" "),a("el-table-column",{attrs:{label:"优惠劵类型","min-width":"80"},scopedSlots:e._u([{key:"default",fn:function(t){var i=t.row;return[a("span",[e._v(e._s(e._f("couponTypeFilter")(i.type)))])]}}])}),e._v(" "),a("el-table-column",{attrs:{prop:"coupon_price",label:"优惠券面值","min-width":"90"}}),e._v(" "),a("el-table-column",{attrs:{label:"最低消费额","min-width":"90"},scopedSlots:e._u([{key:"default",fn:function(t){return[a("span",[e._v(e._s(0===t.row.use_min_price?"不限制":t.row.use_min_price))])]}}])}),e._v(" "),a("el-table-column",{attrs:{label:"有效期限","min-width":"250"},scopedSlots:e._u([{key:"default",fn:function(t){return[a("span",[e._v(e._s(1===t.row.coupon_type?t.row.use_start_time+" 一 "+t.row.use_end_time:t.row.coupon_time))])]}}])}),e._v(" "),a("el-table-column",{attrs:{label:"剩余数量","min-width":"90"},scopedSlots:e._u([{key:"default",fn:function(t){return[a("span",[e._v(e._s(0===t.row.is_limited?"不限量":t.row.remain_count))])]}}])}),e._v(" "),a("el-table-column",{attrs:{label:"操作","min-width":"120",fixed:"right",align:"center"},scopedSlots:e._u([{key:"default",fn:function(t){return[a("el-button",{staticClass:"mr10",attrs:{type:"text",size:"small",disabled:e.multipleSelection.coupon_id!=t.row.coupon_id},on:{click:function(a){return e.send(t.row.coupon_id)}}},[e._v("发送")])]}}])})],1),e._v(" "),a("div",{staticClass:"block mb20"},[a("el-pagination",{attrs:{"page-sizes":[5,10,20],"page-size":e.tableFrom.limit,"current-page":e.tableFrom.page,layout:"total, sizes, prev, pager, next, jumper",total:e.tableData.total},on:{"size-change":e.handleSizeChange,"current-change":e.pageChange}})],1),e._v(" "),a("div")],1)},h=[],_=a("b7be"),b=a("83d6"),v={name:"CouponList",props:{couponForm:{type:Object,required:!0},checkedIds:{type:Array,default:[]},allCheck:{type:Boolean,default:!1},userFrom:{type:Object,required:!0}},data:function(){return{roterPre:b["roterPre"],listLoading:!0,tableData:{data:[],total:0},tableFrom:{page:1,limit:5,coupon_name:""},multipleSelection:{coupon_id:""},templateRadio:0}},mounted:function(){this.tableFrom.page=1,this.getList(1)},methods:{getTemplateRow:function(e){this.multipleSelection={coupon_id:e.coupon_id}},send:function(e){var t=this;delete this.userFrom["page"],delete this.userFrom["limit"];var a=this;a.$confirm("确定要发送优惠券吗?发送优惠券后将无法恢复,请谨慎操作!","提示",{confirmButtonText:"确定",cancelButtonText:"取消",type:"warning"}).then((function(){var i={coupon_id:e,search:a.userFrom,mark:a.filter(t.couponForm),is_all:a.allCheck?1:0,uid:a.checkedIds};Object(_["G"])(i).then((function(e){a.$message.success(e.message),a.$emit("sendSuccess")})).catch((function(e){a.$message.error(e.message)}))})).catch((function(e){tthathis.$message({type:"info",message:"已取消"})}))},filter:function(e){for(var t in e)""===e[t]&&delete e[t];return e},getList:function(e){var t=this;this.listLoading=!0,this.tableFrom.page=e||this.tableFrom.page,Object(_["B"])(this.tableFrom).then((function(e){t.tableData.data=e.data.list,t.tableData.total=e.data.count,t.listLoading=!1})).catch((function(e){t.listLoading=!1,t.$message.error(e.message)}))},pageChange:function(e){this.tableFrom.page=e,this.getList("")},handleSizeChange:function(e){this.tableFrom.limit=e,this.getList("")}}},f=v,g=(a("2c13"),Object(u["a"])(f,p,h,!1,null,"6166f5c4",null)),k=g.exports,w={name:"UserList",components:{userDetails:m,couponList:k},data:function(){return{moren:a("cdfe"),pickerOptions:{shortcuts:[{text:"今天",onClick:function(e){var t=new Date,a=new Date;a.setTime(new Date((new Date).getFullYear(),(new Date).getMonth(),(new Date).getDate())),e.$emit("pick",[a,t])}},{text:"昨天",onClick:function(e){var t=new Date,a=new Date;a.setTime(a.setTime(new Date((new Date).getFullYear(),(new Date).getMonth(),(new Date).getDate()-1))),t.setTime(t.setTime(new Date((new Date).getFullYear(),(new Date).getMonth(),(new Date).getDate()))),e.$emit("pick",[a,t])}},{text:"最近7天",onClick:function(e){var t=new Date,a=new Date;a.setTime(a.getTime()-6048e5),e.$emit("pick",[a,t])}},{text:"最近30天",onClick:function(e){var t=new Date,a=new Date;a.setTime(a.getTime()-2592e6),e.$emit("pick",[a,t])}},{text:"本月",onClick:function(e){var t=new Date,a=new Date;a.setTime(a.setTime(new Date((new Date).getFullYear(),(new Date).getMonth(),1))),e.$emit("pick",[a,t])}},{text:"本年",onClick:function(e){var t=new Date,a=new Date;a.setTime(a.setTime(new Date((new Date).getFullYear(),0,1))),e.$emit("pick",[a,t])}}]},timeVal:[],collapse:!1,visibleDetail:!1,visibleCoupon:!1,maxCols:3,isShowSend:!0,visible:!1,user_type:"",tableData:{data:[],total:0},listLoading:!0,wechatIds:"",row:"",labelPosition:"right",userProps:{children:"children",label:"name",value:"name"},userFrom:{label_id:"",user_type:"",sex:"",is_promoter:"",country:"",pay_count:"",user_time_type:"",user_time:"",nickname:"",province:"",city:"",page:1,limit:20,group_id:""},couponForm:{"用户标签":"","用户类型":"","性别":"","身份":"","消费情况":"","访问情况":"","访问时间":"","昵称":""},address:[],grid:{xl:8,lg:12,md:12,sm:24,xs:24},grid2:{xl:18,lg:16,md:12,sm:24,xs:24},grid3:{xl:8,lg:12,md:12,sm:24,xs:24},addresData:[],groupList:[],labelLists:[],chkName:"",checkedPage:[],checkedIds:[],noChecked:[],allCheck:!1}},mounted:function(){this.getTagList(),this.getList("")},methods:{onHandle:function(e){this.chkName=this.chkName===e?"":e,this.changeType(!(""===this.chkName))},changeType:function(e){e?this.chkName||(this.chkName="dan"):(this.chkName="",this.allCheck=!1);var t=this.checkedPage.indexOf(this.userFrom.page);"dan"===this.chkName?this.checkedPage.push(this.userFrom.page):t>-1&&this.checkedPage.splice(t,1),this.syncCheckedId()},syncCheckedId:function(){var e=this,t=this.tableData.data.map((function(e){return e.uid}));"duo"===this.chkName?(this.checkedIds=[],this.allCheck=!0):"dan"===this.chkName?(this.allCheck=!1,t.forEach((function(t){var a=e.checkedIds.indexOf(t);-1===a&&e.checkedIds.push(t)}))):t.forEach((function(t){var a=e.checkedIds.indexOf(t);a>-1&&e.checkedIds.splice(a,1)}))},sendCoupon:function(){0==this.checkedIds.length&&0==this.allCheck?this.$message.warning("请选择用户"):this.visibleCoupon=!0},changeOne:function(e,t){if(e)if("duo"===this.chkName){var a=this.noChecked.indexOf(t.uid);a>-1&&this.noChecked.splice(a,1)}else{var i=this.checkedIds.indexOf(t.uid);-1===i&&this.checkedIds.push(t.uid)}else if("duo"===this.chkName){var s=this.noChecked.indexOf(t.uid);-1===s&&this.noChecked.push(t.uid)}else{var l=this.checkedIds.indexOf(t.uid);l>-1&&this.checkedIds.splice(l,1)}},sendSuccess:function(){this.visibleCoupon=!1},getCoupounParmas:function(){var e=""==this.userFrom.label_id?"":this.getLabelValue(),t=this.findKey(this.userFrom.user_type,{"":"","微信用户":"wechat","小程序用户":"routine","H5用户":"h5"}),a=this.findKey(this.userFrom.sex,{"男":"1","女":"2","保密":"0","":""}),i=this.findKey(this.userFrom.sex,{"0次":"-1","1次及以上":"0","2次及以上":"1","3次及以上":"2","4次及以上":"3","5次及以上":"4","":""}),s=this.findKey(this.userFrom.is_promoter,{"推广员":"1","普通用户":"0","":""}),l="visit"==this.userFrom.user_time_type?"最后访问":"add_time"==this.userFrom.user_time_type?"首次访问":"";this.couponForm={"用户标签":e,"用户类型":t,"性别":a,"消费情况":i,"身份":s,"访问情况":l,"访问时间":this.userFrom.user_time,"昵称":this.userFrom.nickname}},findKey:function(e,t){var a=arguments.length>2&&void 0!==arguments[2]?arguments[2]:function(e,t){return e===t};return Object.keys(t).find((function(i){return a(t[i],e)}))},getLabelValue:function(){for(var e="",t=0;tu)a=s[u++],i&&!r.call(n,a)||m.push(t?[a,n[a]]:n[a]);return m}}},"669c":function(t,e,a){"use strict";a("7f44")},"7f44":function(t,e,a){},8615:function(t,e,a){var i=a("5ca1"),l=a("504c")(!1);i(i.S,"Object",{values:function(t){return l(t)}})},"8f4b":function(t,e,a){"use strict";a("063b")},c437:function(t,e,a){"use strict";a.r(e);var i=function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("div",{staticClass:"divBox"},[a("el-card",{staticClass:"box-card"},[a("div",{staticClass:"clearfix",attrs:{slot:"header"},slot:"header"},[a("el-tabs",{on:{"tab-click":function(e){t.getList(1),t.getLstFilterApi()}},model:{value:t.tableFrom.type,callback:function(e){t.$set(t.tableFrom,"type",e)},expression:"tableFrom.type"}},t._l(t.headeNum,(function(t,e){return a("el-tab-pane",{key:e,attrs:{name:t.type.toString(),label:t.name+"("+t.count+")"}})})),1),t._v(" "),a("div",{staticClass:"container"},[a("el-form",{attrs:{size:"small","label-width":"120px",inline:!0}},[a("el-form-item",{attrs:{label:"平台商品分类:"}},[a("el-cascader",{staticClass:"selWidth",attrs:{options:t.categoryList,props:t.props,clearable:""},on:{change:function(e){return t.getList(1)}},model:{value:t.tableFrom.cate_id,callback:function(e){t.$set(t.tableFrom,"cate_id",e)},expression:"tableFrom.cate_id"}})],1),t._v(" "),a("el-form-item",{attrs:{label:"商户商品分类:"}},[a("el-select",{staticClass:"filter-item selWidth",attrs:{placeholder:"请选择",clearable:""},on:{change:function(e){return t.getList(1)}},model:{value:t.tableFrom.mer_cate_id,callback:function(e){t.$set(t.tableFrom,"mer_cate_id",e)},expression:"tableFrom.mer_cate_id"}},t._l(t.merCateList,(function(t){return a("el-option",{key:t.value,attrs:{label:t.label,value:t.value}})})),1)],1),t._v(" "),a("el-form-item",{attrs:{label:"是否为礼包:"}},[a("el-select",{staticClass:"selWidth",attrs:{placeholder:"请选择",clearable:""},on:{change:function(e){return t.getList(1)}},model:{value:t.tableFrom.is_gift_bag,callback:function(e){t.$set(t.tableFrom,"is_gift_bag",e)},expression:"tableFrom.is_gift_bag"}},[a("el-option",{attrs:{label:"是",value:"1"}}),t._v(" "),a("el-option",{attrs:{label:"否",value:"0"}})],1)],1),t._v(" "),a("el-form-item",{attrs:{label:"会员价设置:"}},[a("el-select",{staticClass:"selWidth",attrs:{placeholder:"请选择",clearable:""},on:{change:function(e){return t.getList(1)}},model:{value:t.tableFrom.svip_price_type,callback:function(e){t.$set(t.tableFrom,"svip_price_type",e)},expression:"tableFrom.svip_price_type"}},[a("el-option",{attrs:{label:"未设置",value:"0"}}),t._v(" "),a("el-option",{attrs:{label:"默认设置",value:"1"}}),t._v(" "),a("el-option",{attrs:{label:"自定义设置",value:"2"}})],1)],1),t._v(" "),a("el-form-item",{attrs:{label:"商品状态:"}},[a("el-select",{staticClass:"filter-item selWidth",attrs:{placeholder:"请选择",clearable:""},on:{change:t.getList},model:{value:t.tableFrom.us_status,callback:function(e){t.$set(t.tableFrom,"us_status",e)},expression:"tableFrom.us_status"}},t._l(t.productStatusList,(function(t){return a("el-option",{key:t.value,attrs:{label:t.label,value:t.value}})})),1)],1),t._v(" "),a("el-form-item",{attrs:{label:"标签:"}},[a("el-select",{staticClass:"filter-item selWidth",attrs:{placeholder:"请选择",clearable:"",filterable:""},on:{change:function(e){return t.getList(1)}},model:{value:t.tableFrom.mer_labels,callback:function(e){t.$set(t.tableFrom,"mer_labels",e)},expression:"tableFrom.mer_labels"}},t._l(t.labelList,(function(t){return a("el-option",{key:t.id,attrs:{label:t.name,value:t.id}})})),1)],1),t._v(" "),a("el-form-item",{attrs:{label:"运费模板:"}},[a("el-select",{staticClass:"filter-item selWidth",attrs:{placeholder:"请选择",clearable:"",filterable:""},on:{change:function(e){return t.getList(1)}},model:{value:t.tableFrom.temp_id,callback:function(e){t.$set(t.tableFrom,"temp_id",e)},expression:"tableFrom.temp_id"}},t._l(t.tempList,(function(t){return a("el-option",{key:t.shipping_template_id,attrs:{label:t.name,value:t.shipping_template_id}})})),1)],1),t._v(" "),a("el-form-item",{attrs:{label:"关键字搜索:"}},[a("el-input",{staticClass:"selWidth",attrs:{placeholder:"请输入商品名称,关键字"},nativeOn:{keyup:function(e){return!e.type.indexOf("key")&&t._k(e.keyCode,"enter",13,e.key,"Enter")?null:t.getList(1)}},model:{value:t.tableFrom.keyword,callback:function(e){t.$set(t.tableFrom,"keyword",e)},expression:"tableFrom.keyword"}},[a("el-button",{staticClass:"el-button-solt",attrs:{slot:"append",icon:"el-icon-search"},on:{click:function(e){return t.getList(1)}},slot:"append"})],1)],1)],1)],1),t._v(" "),a("router-link",{attrs:{to:{path:t.roterPre+"/product/list/addProduct"}}},[a("el-button",{attrs:{size:"small",type:"primary"}},[t._v("添加商品")])],1),t._v(" "),a("el-button",{attrs:{size:"small",type:"success"},on:{click:t.onCopy}},[t._v("商品采集")]),t._v(" "),a("el-button",{attrs:{size:"mini",disabled:1!=t.tableFrom.type||0==t.multipleSelection.length},on:{click:t.batchOff}},[t._v("批量下架")]),t._v(" "),a("el-button",{attrs:{size:"mini",disabled:2!=t.tableFrom.type||0==t.multipleSelection.length},on:{click:t.batchShelf}},[t._v("批量上架")]),t._v(" "),a("el-button",{attrs:{size:"mini",disabled:0==t.multipleSelection.length},on:{click:t.batchLabel}},[t._v("批量设置标签")]),t._v(" "),a("el-button",{attrs:{size:"mini",disabled:0==t.multipleSelection.length},on:{click:t.batchFreight}},[t._v("批量设置运费")]),t._v(" "),a("el-button",{attrs:{size:"mini",disabled:0==t.multipleSelection.length},on:{click:t.batchCommision}},[t._v("批量设置佣金")]),t._v(" "),1==t.open_svip?a("el-button",{attrs:{size:"mini",disabled:0==t.multipleSelection.length},on:{click:t.batchSvip}},[t._v("批量设置会员价")]):t._e()],1),t._v(" "),a("el-table",{directives:[{name:"loading",rawName:"v-loading",value:t.listLoading,expression:"listLoading"}],staticStyle:{width:"100%"},attrs:{data:t.tableData.data,size:"mini","row-class-name":t.tableRowClassName,"row-key":function(t){return t.product_id}},on:{"selection-change":t.handleSelectionChange,rowclick:function(e){return e.stopPropagation(),t.closeEdit(e)}}},[a("el-table-column",{attrs:{type:"selection","reserve-selection":!0,width:"55"}}),t._v(" "),a("el-table-column",{attrs:{type:"expand"},scopedSlots:t._u([{key:"default",fn:function(e){return[a("el-form",{staticClass:"demo-table-expand demo-table-expand1",attrs:{"label-position":"left",inline:""}},[a("el-form-item",{attrs:{label:"平台分类:"}},[a("span",[t._v(t._s(e.row.storeCategory?e.row.storeCategory.cate_name:"-"))])]),t._v(" "),a("el-form-item",{attrs:{label:"商品分类:"}},[e.row.merCateId.length?t._l(e.row.merCateId,(function(e,i){return a("span",{key:i,staticClass:"mr10"},[t._v(t._s(e.category.cate_name))])})):a("span",[t._v("-")])],2),t._v(" "),a("el-form-item",{attrs:{label:"品牌:"}},[a("span",{staticClass:"mr10"},[t._v(t._s(e.row.brand?e.row.brand.brand_name:"-"))])]),t._v(" "),a("el-form-item",{attrs:{label:"市场价格:"}},[a("span",[t._v(t._s(t._f("filterEmpty")(e.row.ot_price)))])]),t._v(" "),a("el-form-item",{attrs:{label:"成本价:"}},[a("span",[t._v(t._s(t._f("filterEmpty")(e.row.cost)))])]),t._v(" "),a("el-form-item",{attrs:{label:"收藏:"}},[a("span",[t._v(t._s(t._f("filterEmpty")(e.row.care_count)))])]),t._v(" "),"7"===t.tableFrom.type?a("el-form-item",{key:"1",attrs:{label:"未通过原因:"}},[a("span",[t._v(t._s(e.row.refusal))])]):t._e()],1)]}}])}),t._v(" "),a("el-table-column",{attrs:{prop:"product_id",label:"ID","min-width":"50"}}),t._v(" "),a("el-table-column",{attrs:{label:"商品图","min-width":"80"},scopedSlots:t._u([{key:"default",fn:function(t){return[a("div",{staticClass:"demo-image__preview"},[a("el-image",{attrs:{src:t.row.image,"preview-src-list":[t.row.image]}})],1)]}}])}),t._v(" "),a("el-table-column",{attrs:{prop:"store_name",label:"商品名称","min-width":"200"}}),t._v(" "),a("el-table-column",{attrs:{prop:"price",label:"商品售价","min-width":"90"}}),t._v(" "),a("el-table-column",{attrs:{prop:"svip_price",label:"会员价","min-width":"90"},scopedSlots:t._u([{key:"default",fn:function(e){return[a("span",[t._v(t._s(e.row.svip_price||"-"))])]}}])}),t._v(" "),a("el-table-column",{attrs:{prop:"sales",label:"销量","min-width":"90"}}),t._v(" "),a("el-table-column",{attrs:{prop:"stock",label:"库存","min-width":"70"}}),t._v(" "),a("el-table-column",{attrs:{prop:"integral_total",label:"积分抵扣","min-width":"70"}}),t._v(" "),a("el-table-column",{attrs:{prop:"integral_price_total",label:"积分抵扣金额","min-width":"90"}}),t._v(" "),a("el-table-column",{attrs:{prop:"sort",align:"center",label:"排序","min-width":"80"},scopedSlots:t._u([{key:"default",fn:function(e){return[e.row.index===t.tabClickIndex?a("span",[a("el-input",{attrs:{type:"number",maxlength:"300",size:"mini",autofocus:""},on:{blur:function(a){return t.inputBlur(e)}},model:{value:e.row["sort"],callback:function(a){t.$set(e.row,"sort",t._n(a))},expression:"scope.row['sort']"}})],1):a("span",{on:{dblclick:function(a){return a.stopPropagation(),t.tabClick(e.row)}}},[t._v(t._s(e.row["sort"]))])]}}])}),t._v(" "),Number(t.tableFrom.type)<5?a("el-table-column",{key:"1",attrs:{prop:"status",label:"上/下架","min-width":"150"},scopedSlots:t._u([{key:"default",fn:function(e){return[a("el-switch",{attrs:{"active-value":1,"inactive-value":0,"active-text":"上架","inactive-text":"下架"},on:{change:function(a){return t.onchangeIsShow(e.row)}},model:{value:e.row.is_show,callback:function(a){t.$set(e.row,"is_show",a)},expression:"scope.row.is_show"}})]}}],null,!1,132813036)}):t._e(),t._v(" "),a("el-table-column",{attrs:{prop:"stock",label:"商品状态","min-width":"90"},scopedSlots:t._u([{key:"default",fn:function(e){return[a("span",[t._v(t._s(t._f("productStatusFilter")(e.row.us_status)))])]}}])}),t._v(" "),a("el-table-column",{attrs:{prop:"stock",label:"标签","min-width":"90"},scopedSlots:t._u([{key:"default",fn:function(e){return t._l(e.row.mer_labels,(function(e,i){return a("div",{key:i,staticClass:"label-list"},[t._v(t._s(e.name))])}))}}])}),t._v(" "),a("el-table-column",{attrs:{prop:"create_time",label:"创建时间","min-width":"150"}}),t._v(" "),a("el-table-column",{attrs:{label:"操作","min-width":"150",fixed:"right"},scopedSlots:t._u([{key:"default",fn:function(e){return[5!=t.tableFrom.type?a("router-link",{attrs:{to:{path:t.roterPre+"/product/list/addProduct/"+e.row.product_id}}},[a("el-button",{staticClass:"mr10",attrs:{type:"text",size:"small"}},[t._v("编辑")])],1):t._e(),t._v(" "),5!=t.tableFrom.type?a("router-link",{attrs:{to:{path:t.roterPre+"/product/list/addProduct/"+e.row.product_id+"?type=copy"}}},[a("el-button",{staticClass:"mr10",attrs:{type:"text",size:"small"}},[t._v("复制")])],1):t._e(),t._v(" "),"5"!==t.tableFrom.type?a("el-button",{attrs:{type:"text",size:"small"},on:{click:function(a){return t.handlePreview(e.row.product_id)}}},[t._v("预览")]):t._e(),t._v(" "),5!=t.tableFrom.type?a("router-link",{attrs:{to:{path:t.roterPre+"/product/reviews/?product_id="+e.row.product_id}}},[a("el-button",{staticClass:"mr10",attrs:{type:"text",size:"small"}},[t._v("查看评价")])],1):t._e(),t._v(" "),"5"!==t.tableFrom.type&&"1"==t.is_audit?a("el-button",{attrs:{type:"text",size:"small"},on:{click:function(a){return t.onAuditFree(e.row)}}},[t._v("免审编辑")]):t._e(),t._v(" "),"5"!==t.tableFrom.type?a("el-button",{attrs:{type:"text",size:"small"},on:{click:function(a){return t.onEditLabel(e.row)}}},[t._v("编辑标签")]):t._e(),t._v(" "),"5"===t.tableFrom.type?a("el-button",{attrs:{type:"text",size:"small"},on:{click:function(a){return t.handleRestore(e.row.product_id)}}},[t._v("恢复商品")]):t._e(),t._v(" "),"1"!==t.tableFrom.type&&"3"!==t.tableFrom.type&&"4"!==t.tableFrom.type?a("el-button",{attrs:{type:"text",size:"small"},on:{click:function(a){return t.handleDelete(e.row.product_id,e.$index)}}},[t._v(t._s("5"===t.tableFrom.type?"删除":"加入回收站"))]):t._e()]}}])})],1),t._v(" "),a("div",{staticClass:"block"},[a("el-pagination",{attrs:{"page-sizes":[20,40,60,80],"page-size":t.tableFrom.limit,"current-page":t.tableFrom.page,layout:"total, sizes, prev, pager, next, jumper",total:t.tableData.total},on:{"size-change":t.handleSizeChange,"current-change":t.pageChange}})],1)],1),t._v(" "),a("tao-bao",{ref:"taoBao",attrs:{deliveryType:t.deliveryType,deliveryList:t.deliveryList},on:{getSuccess:t.getSuccess}}),t._v(" "),t.previewVisible?a("div",[a("div",{staticClass:"bg",on:{click:function(e){e.stopPropagation(),t.previewVisible=!1}}}),t._v(" "),t.previewVisible?a("preview-box",{ref:"previewBox",attrs:{"goods-id":t.goodsId,"product-type":0,"preview-key":t.previewKey}}):t._e()],1):t._e(),t._v(" "),t.dialogLabel?a("el-dialog",{attrs:{title:"选择标签",visible:t.dialogLabel,width:"800px","before-close":t.handleClose},on:{"update:visible":function(e){t.dialogLabel=e}}},[a("el-form",{ref:"labelForm",attrs:{model:t.labelForm},nativeOn:{submit:function(t){t.preventDefault()}}},[a("el-form-item",[a("el-select",{staticClass:"selWidth",attrs:{clearable:"",multiple:"",placeholder:"请选择"},model:{value:t.labelForm.mer_labels,callback:function(e){t.$set(t.labelForm,"mer_labels",e)},expression:"labelForm.mer_labels"}},t._l(t.labelList,(function(t){return a("el-option",{key:t.id,attrs:{label:t.name,value:t.id}})})),1)],1)],1),t._v(" "),a("span",{staticClass:"dialog-footer",attrs:{slot:"footer"},slot:"footer"},[a("el-button",{attrs:{type:"primary"},on:{click:function(e){return t.submitForm("labelForm")}}},[t._v("提交")])],1)],1):t._e(),t._v(" "),a("edit-attr",{ref:"editAttr"}),t._v(" "),t.dialogFreight?a("el-dialog",{attrs:{title:"选择运费模板",visible:t.dialogFreight,width:"800px","before-close":t.handleFreightClose},on:{"update:visible":function(e){t.dialogFreight=e}}},[a("el-form",{ref:"tempForm",attrs:{model:t.tempForm,rules:t.tempRule},nativeOn:{submit:function(t){t.preventDefault()}}},[a("el-form-item",{attrs:{prop:"temp_id"}},[a("el-select",{staticClass:"selWidth",attrs:{clearable:"",placeholder:"请选择"},model:{value:t.tempForm.temp_id,callback:function(e){t.$set(t.tempForm,"temp_id",e)},expression:"tempForm.temp_id"}},t._l(t.tempList,(function(t){return a("el-option",{key:t.shipping_template_id,attrs:{label:t.name,value:t.shipping_template_id}})})),1)],1)],1),t._v(" "),a("span",{staticClass:"dialog-footer",attrs:{slot:"footer"},slot:"footer"},[a("el-button",{attrs:{type:"primary"},on:{click:function(e){return t.submitTempForm("tempForm")}}},[t._v("提交")])],1)],1):t._e(),t._v(" "),t.dialogCommision?a("el-dialog",{attrs:{title:"设置佣金",visible:t.dialogCommision,width:"600px"},on:{"update:visible":function(e){t.dialogCommision=e}}},[a("el-form",{ref:"commisionForm",attrs:{model:t.commisionForm,rules:t.commisionRule},nativeOn:{submit:function(t){t.preventDefault()}}},[a("el-form-item",{attrs:{label:"一级佣金比例:",prop:"extension_one"}},[a("el-input-number",{staticClass:"priceBox",attrs:{precision:2,step:.1,min:0,max:1,"controls-position":"right"},model:{value:t.commisionForm.extension_one,callback:function(e){t.$set(t.commisionForm,"extension_one",e)},expression:"commisionForm.extension_one"}})],1),t._v(" "),a("el-form-item",{attrs:{label:"二级佣金比例:",prop:"extension_two"}},[a("el-input-number",{staticClass:"priceBox",attrs:{precision:2,step:.1,min:0,max:1,"controls-position":"right"},model:{value:t.commisionForm.extension_two,callback:function(e){t.$set(t.commisionForm,"extension_two",e)},expression:"commisionForm.extension_two"}})],1),t._v(" "),a("el-form-item",[a("span",[t._v("备注:订单交易成功后给上级返佣的比例,例:0.5 = 返订单金额的50%")])])],1),t._v(" "),a("span",{staticClass:"dialog-footer",attrs:{slot:"footer"},slot:"footer"},[a("el-button",{attrs:{type:"primary"},on:{click:function(e){return t.submitCommisionForm("commisionForm")}}},[t._v("提交")])],1)],1):t._e(),t._v(" "),t.dialogSvip?a("el-dialog",{attrs:{title:"批量设置付费会员价",visible:t.dialogSvip,width:"700px"},on:{"update:visible":function(e){t.dialogSvip=e}}},[a("el-form",{ref:"svipForm",attrs:{model:t.svipForm,"label-width":"80px"},nativeOn:{submit:function(t){t.preventDefault()}}},[a("el-form-item",{attrs:{label:"参与方式:"}},[a("el-radio-group",{model:{value:t.svipForm.svip_price_type,callback:function(e){t.$set(t.svipForm,"svip_price_type",e)},expression:"svipForm.svip_price_type"}},[a("el-radio",{staticClass:"radio",attrs:{label:0}},[t._v("不设置会员价")]),t._v(" "),a("el-radio",{staticClass:"radio",attrs:{label:1}},[t._v("默认设置会员价")])],1)],1),t._v(" "),a("el-form-item",[t._v("\n 备注:默认设置会员价是指商户在 "),a("router-link",{staticStyle:{color:"#1890ff"},attrs:{to:{path:t.roterPre+"/systemForm/Basics/svip"}}},[t._v(" [设置-付费会员设置] ")]),t._v(" 中设置的会员折扣价,选择后每个商品默认展示此处设置的会员折扣价。\n ")],1)],1),t._v(" "),a("span",{staticClass:"dialog-footer",attrs:{slot:"footer"},slot:"footer"},[a("el-button",{attrs:{type:"primary"},on:{click:function(e){return t.submitSvipForm("svipForm")}}},[t._v("提交")])],1)],1):t._e()],1)},l=[],o=(a("7f7f"),a("55dd"),a("c4c8")),r=a("83d6"),n=function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("div",{staticClass:"Box"},[t.modals?a("el-dialog",{attrs:{visible:t.modals,width:"70%",title:"商品采集","custom-class":"dialog-scustom"},on:{"update:visible":function(e){t.modals=e}}},[a("el-card",[a("div",[t._v("复制淘宝、天猫、京东、苏宁、1688;")]),t._v("\n 生成的商品默认是没有上架的,请手动上架商品!\n "),a("span",{staticStyle:{color:"rgb(237, 64, 20)"}},[t._v("商品复制次数剩余:"+t._s(t.count)+"次")]),t._v(" "),a("router-link",{attrs:{to:{path:t.roterPre+"/setting/sms/sms_pay/index?type=copy"}}},[a("el-button",{attrs:{size:"small",type:"text"}},[t._v("增加采集次数")])],1),t._v(" "),a("el-button",{staticStyle:{"margin-left":"15px"},attrs:{size:"small",type:"primary"},on:{click:t.openRecords}},[t._v("查看商品复制记录")])],1),t._v(" "),a("el-form",{ref:"formValidate",staticClass:"formValidate mt20",attrs:{model:t.formValidate,rules:t.ruleInline,"label-width":"130px","label-position":"right"},nativeOn:{submit:function(t){t.preventDefault()}}},[a("el-form-item",{attrs:{label:"链接地址:"}},[a("el-input",{staticClass:"numPut",attrs:{search:"",placeholder:"请输入链接地址"},model:{value:t.soure_link,callback:function(e){t.soure_link=e},expression:"soure_link"}}),t._v(" "),a("el-button",{attrs:{loading:t.loading,size:"small",type:"primary"},on:{click:t.add}},[t._v("确定")])],1),t._v(" "),a("div",[t.isData?a("div",[a("el-form-item",{attrs:{label:"商品名称:",prop:"store_name"}},[a("el-input",{attrs:{placeholder:"请输入商品名称"},model:{value:t.formValidate.store_name,callback:function(e){t.$set(t.formValidate,"store_name",e)},expression:"formValidate.store_name"}})],1),t._v(" "),a("el-form-item",{attrs:{label:"商品类型:",prop:"type"}},t._l(t.virtual,(function(e,i){return a("div",{key:i,staticClass:"virtual",class:t.formValidate.type==e.id?"virtual_boder":"virtual_boder2",on:{click:function(a){return t.virtualbtn(e.id,2)}}},[a("div",{staticClass:"virtual_top"},[t._v(t._s(e.tit))]),t._v(" "),a("div",{staticClass:"virtual_bottom"},[t._v("("+t._s(e.tit2)+")")]),t._v(" "),t.formValidate.type==e.id?a("div",{staticClass:"virtual_san"}):t._e(),t._v(" "),t.formValidate.type==e.id?a("div",{staticClass:"virtual_dui"},[t._v(" ✓")]):t._e()])})),0),t._v(" "),a("el-form-item",{attrs:{label:"商品简介:",prop:"store_info","label-for":"store_info"}},[a("el-input",{attrs:{type:"textarea",rows:3,placeholder:"请输入商品简介"},model:{value:t.formValidate.store_info,callback:function(e){t.$set(t.formValidate,"store_info",e)},expression:"formValidate.store_info"}})],1),t._v(" "),a("el-form-item",{attrs:{label:"平台商品分类:",prop:"cate_id"}},[a("el-cascader",{staticClass:"selWidth",attrs:{options:t.categoryList,clearable:""},model:{value:t.formValidate.cate_id,callback:function(e){t.$set(t.formValidate,"cate_id",e)},expression:"formValidate.cate_id"}})],1),t._v(" "),a("el-form-item",{attrs:{label:"商户商品分类:",prop:"mer_cate_id"}},[a("el-cascader",{staticClass:"selWidth",attrs:{options:t.merCateList,props:t.propsMer,clearable:""},model:{value:t.formValidate.mer_cate_id,callback:function(e){t.$set(t.formValidate,"mer_cate_id",e)},expression:"formValidate.mer_cate_id"}})],1),t._v(" "),a("el-form-item",{attrs:{label:"品牌选择:",prop:"brand_id"}},[a("el-select",{staticClass:"selWidth",attrs:{filterable:"",placeholder:"请选择"},model:{value:t.formValidate.brand_id,callback:function(e){t.$set(t.formValidate,"brand_id",e)},expression:"formValidate.brand_id"}},t._l(t.BrandList,(function(t){return a("el-option",{key:t.brand_id,attrs:{label:t.brand_name,value:t.brand_id}})})),1)],1),t._v(" "),a("el-form-item",t._b({attrs:{label:"商品关键字:",prop:"keyword","label-for":"keyword"}},"el-form-item",t.grid,!1),[a("el-input",{attrs:{placeholder:"请输入商品关键字"},model:{value:t.formValidate.keyword,callback:function(e){t.$set(t.formValidate,"keyword",e)},expression:"formValidate.keyword"}})],1),t._v(" "),a("el-form-item",{attrs:{label:"单位:",prop:"unit_name","label-for":"unit_name"}},[a("el-input",{attrs:{placeholder:"请输入单位"},model:{value:t.formValidate.unit_name,callback:function(e){t.$set(t.formValidate,"unit_name",e)},expression:"formValidate.unit_name"}})],1),t._v(" "),a("el-form-item",{attrs:{label:"单次最多购买件数:"}},[a("el-input-number",{attrs:{min:0,placeholder:"请输入购买件数"},model:{value:t.formValidate.once_count,callback:function(e){t.$set(t.formValidate,"once_count",e)},expression:"formValidate.once_count"}})],1),t._v(" "),a("el-form-item",{attrs:{label:"送货方式:",prop:"delivery_way"}},[a("div",{staticClass:"acea-row"},[a("el-checkbox-group",{model:{value:t.formValidate.delivery_way,callback:function(e){t.$set(t.formValidate,"delivery_way",e)},expression:"formValidate.delivery_way"}},t._l(t.deliveryList,(function(e){return a("el-checkbox",{key:e.value,attrs:{label:e.value}},[t._v("\n "+t._s(e.name)+"\n ")])})),1)],1)]),t._v(" "),2==t.formValidate.delivery_way.length||1==t.formValidate.delivery_way.length&&2==t.formValidate.delivery_way[0]?a("el-form-item",{attrs:{label:"是否包邮:"}},[a("el-radio-group",{model:{value:t.formValidate.delivery_free,callback:function(e){t.$set(t.formValidate,"delivery_free",e)},expression:"formValidate.delivery_free"}},[a("el-radio",{staticClass:"radio",attrs:{label:0}},[t._v("否")]),t._v(" "),a("el-radio",{attrs:{label:1}},[t._v("是")])],1)],1):t._e(),t._v(" "),0==t.formValidate.delivery_free&&(2==t.formValidate.delivery_way.length||1==t.formValidate.delivery_way.length&&2==t.formValidate.delivery_way[0])?a("el-form-item",t._b({attrs:{label:"运费模板:",prop:"temp_id"}},"el-form-item",t.grid,!1),[a("el-select",{attrs:{clearable:""},model:{value:t.formValidate.temp_id,callback:function(e){t.$set(t.formValidate,"temp_id",e)},expression:"formValidate.temp_id"}},t._l(t.shippingList,(function(t){return a("el-option",{key:t.shipping_template_id,attrs:{label:t.name,value:t.shipping_template_id}})})),1)],1):t._e(),t._v(" "),a("el-form-item",{attrs:{label:"商品标签:"}},[a("el-select",{staticClass:"selWidthd",attrs:{multiple:"",placeholder:"请选择"},model:{value:t.formValidate.mer_labels,callback:function(e){t.$set(t.formValidate,"mer_labels",e)},expression:"formValidate.mer_labels"}},t._l(t.labelList,(function(t){return a("el-option",{key:t.id,attrs:{label:t.name,value:t.id}})})),1)],1),t._v(" "),a("el-form-item",{attrs:{label:"平台保障服务:"}},[a("div",{staticClass:"acea-row"},[a("el-select",{staticClass:"selWidthd mr20",attrs:{placeholder:"请选择",clearable:""},model:{value:t.formValidate.guarantee_template_id,callback:function(e){t.$set(t.formValidate,"guarantee_template_id",e)},expression:"formValidate.guarantee_template_id"}},t._l(t.guaranteeList,(function(t){return a("el-option",{key:t.guarantee_template_id,attrs:{label:t.template_name,value:t.guarantee_template_id}})})),1)],1)]),t._v(" "),a("el-form-item",{attrs:{label:"商品图:"}},[a("div",{staticClass:"pictrueBox"},[t.formValidate.image?a("div",{staticClass:"pictrue"},[a("img",{directives:[{name:"lazy",rawName:"v-lazy",value:t.formValidate.image,expression:"formValidate.image"}]})]):t._e()])]),t._v(" "),a("el-form-item",{attrs:{label:"商品轮播图:"}},[a("div",{staticClass:"acea-row"},t._l(t.formValidate.slider_image,(function(e,i){return a("div",{key:i,staticClass:"lunBox mr15",attrs:{draggable:"true"},on:{dragstart:function(a){return t.handleDragStart(a,e)},dragover:function(a){return a.preventDefault(),t.handleDragOver(a,e)},dragenter:function(a){return t.handleDragEnter(a,e)},dragend:function(a){return t.handleDragEnd(a,e)}}},[a("div",{staticClass:"pictrue"},[a("img",{directives:[{name:"lazy",rawName:"v-lazy",value:e,expression:"item"}]})]),t._v(" "),a("div",{staticClass:"buttonGroup"},[a("el-button",{staticClass:"small-btn",nativeOn:{click:function(a){return t.checked(e,i)}}},[t._v("主图")]),t._v(" "),a("el-button",{staticClass:"small-btn",nativeOn:{click:function(e){return t.handleRemove(i)}}},[t._v("移除")])],1)])})),0)]),t._v(" "),1===t.formValidate.spec_type&&t.ManyAttrValue.length>1?a("el-form-item",{staticClass:"labeltop",attrs:{label:"批量设置:"}},[a("el-table",{attrs:{data:t.oneFormBatch}},[a("el-table-column",{attrs:{label:"图片","min-width":"150",align:"center"},scopedSlots:t._u([{key:"default",fn:function(e){return[a("div",{staticClass:"acea-row row-middle row-center-wrapper",on:{click:function(e){return t.modalPicTap("1","dan","pi")}}},[t.oneFormBatch[0].image?a("div",{staticClass:"pictrue pictrueTab"},[a("img",{directives:[{name:"lazy",rawName:"v-lazy",value:t.oneFormBatch[0].image,expression:"oneFormBatch[0].image"}]})]):a("div",{staticClass:"upLoad pictrueTab acea-row row-center-wrapper"},[a("i",{staticClass:"el-icon-camera cameraIconfont"})])])]}}],null,!1,3503723231)}),t._v(" "),a("el-table-column",{attrs:{label:"售价","min-width":"150",align:"center"},scopedSlots:t._u([{key:"default",fn:function(e){return[a("el-input",{staticClass:"priceBox",attrs:{type:"number",min:"0"},model:{value:t.oneFormBatch[0].price,callback:function(e){t.$set(t.oneFormBatch[0],"price",e)},expression:"oneFormBatch[0].price"}})]}}],null,!1,2340413431)}),t._v(" "),a("el-table-column",{attrs:{label:"成本价","min-width":"150",align:"center"},scopedSlots:t._u([{key:"default",fn:function(e){return[a("el-input",{staticClass:"priceBox",attrs:{type:"number",min:"0"},model:{value:t.oneFormBatch[0].cost,callback:function(e){t.$set(t.oneFormBatch[0],"cost",e)},expression:"oneFormBatch[0].cost"}})]}}],null,!1,3894142481)}),t._v(" "),a("el-table-column",{attrs:{label:"市场价","min-width":"150",align:"center"},scopedSlots:t._u([{key:"default",fn:function(e){return[a("el-input",{staticClass:"priceBox",attrs:{type:"number",min:"0"},model:{value:t.oneFormBatch[0].ot_price,callback:function(e){t.$set(t.oneFormBatch[0],"ot_price",e)},expression:"oneFormBatch[0].ot_price"}})]}}],null,!1,3434216275)}),t._v(" "),a("el-table-column",{attrs:{label:"库存","min-width":"150",align:"center"},scopedSlots:t._u([{key:"default",fn:function(e){return[a("el-input",{staticClass:"priceBox",model:{value:t.oneFormBatch[0].stock,callback:function(e){t.$set(t.oneFormBatch[0],"stock",t._n(e))},expression:"oneFormBatch[0].stock"}})]}}],null,!1,86708727)}),t._v(" "),a("el-table-column",{attrs:{label:"商品编号","min-width":"150",align:"center"},scopedSlots:t._u([{key:"default",fn:function(e){return[a("el-input",{model:{value:t.oneFormBatch[0].bar_code,callback:function(e){t.$set(t.oneFormBatch[0],"bar_code",e)},expression:"oneFormBatch[0].bar_code"}})]}}],null,!1,989028316)}),t._v(" "),a("el-table-column",{attrs:{label:"重量(KG)","min-width":"150",align:"center"},scopedSlots:t._u([{key:"default",fn:function(e){return[a("el-input",{staticClass:"priceBox",attrs:{type:"number",min:"0"},model:{value:t.oneFormBatch[0].weight,callback:function(e){t.$set(t.oneFormBatch[0],"weight",e)},expression:"oneFormBatch[0].weight"}})]}}],null,!1,3785536346)}),t._v(" "),a("el-table-column",{attrs:{label:"体积(m²)","min-width":"150",align:"center"},scopedSlots:t._u([{key:"default",fn:function(e){return[a("el-input",{staticClass:"priceBox",attrs:{type:"number",min:"0"},model:{value:t.oneFormBatch[0].volume,callback:function(e){t.$set(t.oneFormBatch[0],"volume",e)},expression:"oneFormBatch[0].volume"}})]}}],null,!1,1353389234)}),t._v(" "),a("el-table-column",{attrs:{label:"操作","min-width":"150",align:"center"},scopedSlots:t._u([{key:"default",fn:function(e){return[a("a",{staticClass:"ela-btn",attrs:{href:"javascript: void(0);"},on:{click:t.batchAdd}},[t._v("添加")]),t._v(" "),a("a",{staticClass:"ela-btn",attrs:{href:"javascript: void(0);"},on:{click:t.batchDel}},[t._v("清空")])]}}],null,!1,2952505336)})],1)],1):t._e(),t._v(" "),0===t.formValidate.spec_type?a("el-form-item",{staticClass:"labeltop",attrs:{label:"规格列表:"}},[a("el-table",{staticClass:"tabNumWidth",attrs:{data:t.OneattrValue,border:"",size:"mini"}},[a("el-table-column",{attrs:{align:"center",label:"图片","min-width":"80"},scopedSlots:t._u([{key:"default",fn:function(e){return[a("div",{staticClass:"upLoadPicBox",on:{click:function(a){return t.modalPicTap("1","dan",e.$index)}}},[e.row.image?a("div",{staticClass:"pictrue tabPic"},[a("img",{attrs:{src:e.row.image}})]):a("div",{staticClass:"upLoad tabPic"},[a("i",{staticClass:"el-icon-camera cameraIconfont"})])])]}}],null,!1,2217564926)}),t._v(" "),t._l(t.attrValue,(function(e,i){return a("el-table-column",{key:i,attrs:{label:t.formThead[i].title,align:"center","min-width":"120"},scopedSlots:t._u([{key:"default",fn:function(e){return[a("el-input",{staticClass:"priceBox",attrs:{type:"商品编号"===t.formThead[i].title?"text":"number",min:0},model:{value:e.row[i],callback:function(a){t.$set(e.row,i,a)},expression:"scope.row[iii]"}})]}}],null,!0)})})),t._v(" "),1===t.formValidate.extension_type?[a("el-table-column",{attrs:{align:"center",label:"一级返佣(元)","min-width":"120"},scopedSlots:t._u([{key:"default",fn:function(e){return[a("el-input",{staticClass:"priceBox",attrs:{type:"number",min:0},model:{value:e.row.extension_one,callback:function(a){t.$set(e.row,"extension_one",a)},expression:"scope.row.extension_one"}})]}}],null,!1,2286159726)}),t._v(" "),a("el-table-column",{attrs:{align:"center",label:"二级返佣(元)","min-width":"120"},scopedSlots:t._u([{key:"default",fn:function(e){return[a("el-input",{staticClass:"priceBox",attrs:{type:"number",min:0},model:{value:e.row.extension_two,callback:function(a){t.$set(e.row,"extension_two",a)},expression:"scope.row.extension_two"}})]}}],null,!1,4057305350)})]:t._e()],2)],1):t._e(),t._v(" "),1===t.formValidate.spec_type?a("el-form-item",{staticClass:"labeltop",attrs:{label:"规格列表:"}},[a("el-table",{staticClass:"tabNumWidth",attrs:{data:t.ManyAttrValue,border:"",size:"mini"}},[t.manyTabDate?t._l(t.manyTabDate,(function(e,i){return a("el-table-column",{key:i,attrs:{align:"center",label:t.manyTabTit[i].title,"min-width":"80"},scopedSlots:t._u([{key:"default",fn:function(e){return[a("span",{staticClass:"priceBox",domProps:{textContent:t._s(e.row[i])}})]}}],null,!0)})})):t._e(),t._v(" "),a("el-table-column",{attrs:{align:"center",label:"图片","min-width":"80"},scopedSlots:t._u([{key:"default",fn:function(e){return[a("div",{staticClass:"upLoadPicBox",attrs:{title:"750*750px"},on:{click:function(a){return t.modalPicTap("2","duo",e.$index)}}},[e.row.image?a("div",{staticClass:"pictrue tabPic"},[a("img",{attrs:{src:e.row.image}})]):a("div",{staticClass:"upLoad tabPic"},[a("i",{staticClass:"el-icon-camera cameraIconfont"})])])]}}],null,!1,477089504)}),t._v(" "),t._l(t.attrValue,(function(e,i){return a("el-table-column",{key:i,attrs:{label:t.formThead[i].title,align:"center","min-width":"120"},scopedSlots:t._u([{key:"default",fn:function(e){return[a("el-input",{staticClass:"priceBox",attrs:{type:"商品编号"===t.formThead[i].title?"text":"number"},model:{value:e.row[i],callback:function(a){t.$set(e.row,i,a)},expression:"scope.row[iii]"}})]}}],null,!0)})})),t._v(" "),1===t.formValidate.extension_type?[a("el-table-column",{attrs:{align:"center",label:"一级返佣(元)","min-width":"120"},scopedSlots:t._u([{key:"default",fn:function(e){return[a("el-input",{staticClass:"priceBox",attrs:{type:"number",min:0},model:{value:e.row.extension_one,callback:function(a){t.$set(e.row,"extension_one",a)},expression:"scope.row.extension_one"}})]}}],null,!1,2286159726)}),t._v(" "),a("el-table-column",{attrs:{align:"center",label:"二级返佣(元)","min-width":"120"},scopedSlots:t._u([{key:"default",fn:function(e){return[a("el-input",{staticClass:"priceBox",attrs:{type:"number",min:0},model:{value:e.row.extension_two,callback:function(a){t.$set(e.row,"extension_two",a)},expression:"scope.row.extension_two"}})]}}],null,!1,4057305350)})]:t._e()],2)],1):t._e(),t._v(" "),a("el-form-item",{attrs:{label:"商品详情:"}},[a("ueditorFrom",{attrs:{content:t.formValidate.content},model:{value:t.formValidate.content,callback:function(e){t.$set(t.formValidate,"content",e)},expression:"formValidate.content"}})],1),t._v(" "),a("el-form-item",[a("el-button",{staticClass:"submission",attrs:{loading:t.loading1,type:"primary"},on:{click:function(e){return t.handleSubmit("formValidate")}}},[t._v("提交")])],1)],1):t._e()])],1)],1):t._e(),t._v(" "),a("copy-record",{ref:"copyRecord"})],1)},s=[],c=a("2909"),u=a("ade3"),m=(a("28a5"),a("8615"),a("ac6a"),a("b85c")),d=a("ef0d"),p=function(){var t=this,e=t.$createElement,a=t._self._c||e;return t.showRecord?a("el-dialog",{attrs:{title:"复制记录",visible:t.showRecord,width:"900px"},on:{"update:visible":function(e){t.showRecord=e}}},[a("div",{directives:[{name:"loading",rawName:"v-loading",value:t.loading,expression:"loading"}]},[a("el-table",{directives:[{name:"loading",rawName:"v-loading",value:t.loading,expression:"loading"}],staticClass:"table",staticStyle:{width:"100%"},attrs:{data:t.tableData.data,size:"mini","highlight-current-row":""}},[a("el-table-column",{attrs:{label:"ID",prop:"mer_id","min-width":"50"}}),t._v(" "),a("el-table-column",{attrs:{label:"使用次数",prop:"num","min-width":"80"}}),t._v(" "),a("el-table-column",{attrs:{label:"复制商品平台名称",prop:"type","min-width":"120"}}),t._v(" "),a("el-table-column",{attrs:{label:"剩余次数",prop:"number","min-width":"80"}}),t._v(" "),a("el-table-column",{attrs:{label:"商品复制链接",prop:"info","min-width":"180"}}),t._v(" "),a("el-table-column",{attrs:{label:"操作时间",prop:"create_time","min-width":"120"}})],1),t._v(" "),a("div",{staticClass:"block"},[a("el-pagination",{attrs:{"page-sizes":[10,20],"page-size":t.tableFrom.limit,"current-page":t.tableFrom.page,layout:"total, sizes, prev, pager, next, jumper",total:t.tableData.total},on:{"size-change":t.handleSizeChange,"current-change":t.pageChange}})],1)],1)]):t._e()},f=[],_={name:"CopyRecord",data:function(){return{showRecord:!1,loading:!1,tableData:{data:[],total:0},tableFrom:{page:1,limit:10}}},methods:{getRecord:function(){var t=this;this.showRecord=!0,this.loading=!0,Object(o["Z"])(this.tableFrom).then((function(e){t.tableData.data=e.data.list,t.tableData.total=e.data.count,t.loading=!1})).catch((function(e){t.$message.error(e.message),t.listLoading=!1}))},pageChange:function(t){this.tableFrom.page=t,this.getRecord()},pageChangeLog:function(t){this.tableFromLog.page=t,this.getRecord()},handleSizeChange:function(t){this.tableFrom.limit=t,this.getRecord()}}},h=_,b=(a("669c"),a("2877")),g=Object(b["a"])(h,p,f,!1,null,"3500ed7a",null),v=g.exports,y=a("bbcc"),w=a("5f87"),k={store_name:"",cate_id:"",temp_id:"",type:0,guarantee_template_id:"",keyword:"",unit_name:"",store_info:"",image:"",slider_image:[],content:"",ficti:0,once_count:0,give_integral:0,is_show:0,price:0,cost:0,ot_price:0,stock:0,soure_link:"",attrs:[],items:[],delivery_way:[],mer_labels:[],delivery_free:0,spec_type:0,is_copoy:1,attrValue:[{image:"",price:0,cost:0,ot_price:0,stock:0,bar_code:"",weight:0,volume:0}]},x={price:{title:"售价"},cost:{title:"成本价"},ot_price:{title:"市场价"},stock:{title:"库存"},bar_code:{title:"商品编号"},weight:{title:"重量(KG)"},volume:{title:"体积(m³)"}},F={name:"CopyTaoBao",props:{deliveryList:{type:Array,default:[]},deliveryType:{type:Array,default:[]}},components:{ueditorFrom:d["a"],copyRecord:v},data:function(){var t=y["a"].https+"/upload/image/0/file?ueditor=1&token="+Object(w["a"])();return{roterPre:r["roterPre"],modals:!1,loading:!1,loading1:!1,BaseURL:y["a"].https||"http://localhost:8080",OneattrValue:[Object.assign({},k.attrValue[0])],ManyAttrValue:[Object.assign({},k.attrValue[0])],columnsBatch:[{title:"图片",slot:"image",align:"center",minWidth:80},{title:"售价",slot:"price",align:"center",minWidth:95},{title:"成本价",slot:"cost",align:"center",minWidth:95},{title:"市场价",slot:"ot_price",align:"center",minWidth:95},{title:"库存",slot:"stock",align:"center",minWidth:95},{title:"商品编号",slot:"bar_code",align:"center",minWidth:120},{title:"重量(KG)",slot:"weight",align:"center",minWidth:95},{title:"体积(m³)",slot:"volume",align:"center",minWidth:95}],manyTabDate:{},count:0,modal_loading:!1,images:"",soure_link:"",modalPic:!1,isChoice:"",gridPic:{xl:6,lg:8,md:12,sm:12,xs:12},gridBtn:{xl:4,lg:8,md:8,sm:8,xs:8},columns:[],virtual:[{tit:"普通商品",id:0,tit2:"物流发货"},{tit:"虚拟商品",id:1,tit2:"虚拟发货"}],categoryList:[],merCateList:[],BrandList:[],propsMer:{emitPath:!1,multiple:!0},tableFrom:{mer_cate_id:"",cate_id:"",keyword:"",type:"1",is_gift_bag:""},ruleInline:{cate_id:[{required:!0,message:"请选择商品分类",trigger:"change"}],mer_cate_id:[{required:!0,message:"请选择商户分类",trigger:"change",type:"array",min:"1"}],temp_id:[{required:!0,message:"请选择运费模板",trigger:"change",type:"number"}],brand_id:[{required:!0,message:"请选择品牌",trigger:"change"}],store_info:[{required:!0,message:"请输入商品简介",trigger:"blur"}],delivery_way:[{required:!0,message:"请选择送货方式",trigger:"change"}]},grid:{xl:8,lg:8,md:12,sm:24,xs:24},grid2:{xl:12,lg:12,md:12,sm:24,xs:24},myConfig:{autoHeightEnabled:!1,initialFrameHeight:500,initialFrameWidth:"100%",UEDITOR_HOME_URL:"/UEditor/",serverUrl:t,imageUrl:t,imageFieldName:"file",imageUrlPrefix:"",imageActionName:"upfile",imageMaxSize:2048e3,imageAllowFiles:[".png",".jpg",".jpeg",".gif",".bmp"]},formThead:Object.assign({},x),formValidate:Object.assign({},k),items:[{image:"",price:0,cost:0,ot_price:0,stock:0,bar_code:"",weight:0,volume:0}],shippingList:[],guaranteeList:[],isData:!1,artFrom:{type:"taobao",url:""},tableIndex:0,labelPosition:"right",labelWidth:"120",isMore:"",taoBaoStatus:{},attrInfo:{},labelList:[],oneFormBatch:[{image:"",price:0,cost:0,ot_price:0,stock:0,bar_code:"",weight:0,volume:0}]}},computed:{attrValue:function(){var t=Object.assign({},k.attrValue[0]);return delete t.image,t}},watch:{},created:function(){this.goodsCategory(),this.getCategorySelect(),this.getBrandListApi()},mounted:function(){this.productGetTemplate(),this.getGuaranteeList(),this.getCopyCount(),this.getLabelLst()},methods:{getLabelLst:function(){var t=this;Object(o["v"])().then((function(e){t.labelList=e.data})).catch((function(e){t.$message.error(e.message)}))},getCopyCount:function(){var t=this;Object(o["Y"])().then((function(e){t.count=e.data.count}))},openRecords:function(){this.$refs.copyRecord.getRecord()},batchDel:function(){this.oneFormBatch=[{image:"",price:0,cost:0,ot_price:0,stock:0,bar_code:"",weight:0,volume:0}]},batchAdd:function(){var t,e=Object(m["a"])(this.ManyAttrValue);try{for(e.s();!(t=e.n()).done;){var a=t.value;this.$set(a,"image",this.oneFormBatch[0].image),this.$set(a,"price",this.oneFormBatch[0].price),this.$set(a,"cost",this.oneFormBatch[0].cost),this.$set(a,"ot_price",this.oneFormBatch[0].ot_price),this.$set(a,"stock",this.oneFormBatch[0].stock),this.$set(a,"bar_code",this.oneFormBatch[0].bar_code),this.$set(a,"weight",this.oneFormBatch[0].weight),this.$set(a,"volume",this.oneFormBatch[0].volume),this.$set(a,"extension_one",this.oneFormBatch[0].extension_one),this.$set(a,"extension_two",this.oneFormBatch[0].extension_two)}}catch(i){e.e(i)}finally{e.f()}},delAttrTable:function(t){this.ManyAttrValue.splice(t,1)},productGetTemplate:function(){var t=this;Object(o["wb"])().then((function(e){t.shippingList=e.data}))},getGuaranteeList:function(){var t=this;Object(o["B"])().then((function(e){t.guaranteeList=e.data}))},handleRemove:function(t){this.formValidate.slider_image.splice(t,1)},checked:function(t,e){this.formValidate.image=t},goodsCategory:function(){var t=this;Object(o["q"])().then((function(e){t.categoryList=e.data})).catch((function(e){t.$message.error(e.message)}))},getCategorySelect:function(){var t=this;Object(o["r"])().then((function(e){t.merCateList=e.data})).catch((function(e){t.$message.error(e.message)}))},getBrandListApi:function(){var t=this;Object(o["p"])().then((function(e){t.BrandList=e.data})).catch((function(e){t.$message.error(e.message)}))},virtualbtn:function(t,e){this.formValidate.type=t,this.productCon()},watCh:function(t){var e=this,a={},i={};this.formValidate.attr.forEach((function(t,e){a["value"+e]={title:t.value},i["value"+e]=""})),this.ManyAttrValue=this.attrFormat(t),console.log(this.ManyAttrValue),this.ManyAttrValue.forEach((function(t,a){var i=Object.values(t.detail).sort().join("/");e.attrInfo[i]&&(e.ManyAttrValue[a]=e.attrInfo[i]),t.image=e.formValidate.image})),this.attrInfo={},this.ManyAttrValue.forEach((function(t){"undefined"!==t.detail&&null!==t.detail&&(e.attrInfo[Object.values(t.detail).sort().join("/")]=t)})),this.manyTabTit=a,this.manyTabDate=i,this.formThead=Object.assign({},this.formThead,a)},attrFormat:function(t){var e=[],a=[];return i(t);function i(t){if(t.length>1)t.forEach((function(i,l){0===l&&(e=t[l]["detail"]);var o=[];e.forEach((function(e){t[l+1]&&t[l+1]["detail"]&&t[l+1]["detail"].forEach((function(i){var r=(0!==l?"":t[l]["value"]+"_$_")+e+"-$-"+t[l+1]["value"]+"_$_"+i;if(o.push(r),l===t.length-2){var n={image:"",price:0,cost:0,ot_price:0,stock:0,bar_code:"",weight:0,volume:0,brokerage:0,brokerage_two:0};r.split("-$-").forEach((function(t,e){var a=t.split("_$_");n["detail"]||(n["detail"]={}),n["detail"][a[0]]=a.length>1?a[1]:""})),Object.values(n.detail).forEach((function(t,e){n["value"+e]=t})),a.push(n)}}))})),e=o.length?o:[]}));else{var i=[];t.forEach((function(t,e){t["detail"].forEach((function(e,l){i[l]=t["value"]+"_"+e,a[l]={image:"",price:0,cost:0,ot_price:0,stock:0,bar_code:"",weight:0,volume:0,brokerage:0,brokerage_two:0,detail:Object(u["a"])({},t["value"],e)},Object.values(a[l].detail).forEach((function(t,e){a[l]["value"+e]=t}))}))})),e.push(i.join("$&"))}return console.log(a),a}},add:function(){var t=this;if(this.soure_link){var e=/(http|ftp|https):\/\/[\w\-_]+(\.[\w\-_]+)+([\w\-\.,@?^=%&:/~\+#]*[\w\-\@?^=%&/~\+#])?/;if(!e.test(this.soure_link))return this.$message.warning("请输入以http开头的地址!");this.artFrom.url=this.soure_link,this.loading=!0,Object(o["s"])(this.artFrom).then((function(e){var a=e.data.info;t.columns=a.info&&a.info.header||t.columnsBatch,t.taoBaoStatus=a.info?a.info:"",t.formValidate={content:a.description||"",is_show:0,type:0,soure_link:t.soure_link,attr:a.info&&a.info.attr||[],delivery_way:a.delivery_way&&a.delivery_way.length?a.delivery_way.map(String):t.deliveryType,delivery_free:a.delivery_free?a.delivery_free:0,attrValue:a.info&&a.info.value||[{image:"",price:0,cost:0,ot_price:0,stock:0,bar_code:"",weight:0,volume:0}],spec_type:a.spec_type,image:a.image,slider_image:a.slider_image,store_info:a.store_info,store_name:a.store_name,unit_name:a.unit_name},0===t.formValidate.spec_type?t.OneattrValue=a.info&&a.info.value||[{image:t.formValidate.image,price:0,cost:0,ot_price:0,stock:0,bar_code:"",weight:0,volume:0}]:(t.ManyAttrValue=a.info&&a.info.value||[{image:"",price:0,cost:0,ot_price:0,stock:0,bar_code:"",weight:0,volume:0}],t.watCh(t.formValidate.attr)),t.formValidate.image&&(t.oneFormBatch[0].image=t.formValidate.image),t.isData=!0,t.loading=!1})).catch((function(e){t.$message.error(e.message),t.loading=!1}))}else this.$message.warning("请输入链接地址!")},handleSubmit:function(t){var e=this;this.$refs[t].validate((function(t){t?(e.modal_loading=!0,e.formValidate.cate_id=e.formValidate.cate_id instanceof Array?e.formValidate.cate_id.pop():e.formValidate.cate_id,e.formValidate.once_count=e.formValidate.once_count||0,1===e.formValidate.spec_type?e.formValidate.attrValue=e.ManyAttrValue:(e.formValidate.attrValue=e.OneattrValue,e.formValidate.attr=[]),e.formValidate.is_copoy=1,e.loading1=!0,Object(o["X"])(e.formValidate).then((function(t){e.$message.success("商品默认为不上架状态请手动上架商品!"),e.loading1=!1,setTimeout((function(){e.modal_loading=!1}),500),setTimeout((function(){e.modals=!1}),600),e.$emit("getSuccess")})).catch((function(t){e.modal_loading=!1,e.$message.error(t.message),e.loading1=!1}))):e.formValidate.cate_id||e.$message.warning("请填写商品分类!")}))},modalPicTap:function(t,e,a){this.tableIndex=a;var i=this;this.$modalUpload((function(e){console.log(i.formValidate.attr[i.tableIndex]),"1"===t&&("pi"===a?i.oneFormBatch[0].image=e[0]:i.OneattrValue[0].image=e[0]),"2"===t&&(i.ManyAttrValue[i.tableIndex].image=e[0]),i.modalPic=!1}),t)},getPic:function(t){this.callback(t),this.formValidate.attr[this.tableIndex].pic=t.att_dir,this.modalPic=!1},handleDragStart:function(t,e){this.dragging=e},handleDragEnd:function(t,e){this.dragging=null},handleDragOver:function(t){t.dataTransfer.dropEffect="move"},handleDragEnter:function(t,e){if(t.dataTransfer.effectAllowed="move",e!==this.dragging){var a=Object(c["a"])(this.formValidate.slider_image),i=a.indexOf(this.dragging),l=a.indexOf(e);a.splice.apply(a,[l,0].concat(Object(c["a"])(a.splice(i,1)))),this.formValidate.slider_image=a}},addCustomDialog:function(t){window.UE.registerUI("test-dialog",(function(t,e){var a=new window.UE.ui.Dialog({iframeUrl:"/admin/widget.images/index.html?fodder=dialog",editor:t,name:e,title:"上传图片",cssRules:"width:1200px;height:500px;padding:20px;"});this.dialog=a;var i=new window.UE.ui.Button({name:"dialog-button",title:"上传图片",cssRules:"background-image: url(../../../assets/images/icons.png);background-position: -726px -77px;",onclick:function(){a.render(),a.open()}});return i}))}}},C=F,V=(a("e96b"),Object(b["a"])(C,n,s,!1,null,"3cd1b9b0",null)),$=V.exports,B=function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("div",{staticClass:"Box"},[t.modals?a("el-dialog",{attrs:{visible:t.modals,width:"80%",title:"免审核商品信息编辑","custom-class":"dialog-scustom"},on:{"update:visible":function(e){t.modals=e}}},[a("el-form",{ref:"formValidate",staticClass:"formValidate mt20",attrs:{model:t.formValidate,rules:t.ruleInline,"label-width":"120px","label-position":"right"},nativeOn:{submit:function(t){t.preventDefault()}}},[a("div",[a("div",[a("el-form-item",{attrs:{label:"商户商品分类:",prop:"mer_cate_id"}},[a("el-cascader",{staticClass:"selWidth",attrs:{options:t.merCateList,props:t.propsMer,clearable:""},model:{value:t.formValidate.mer_cate_id,callback:function(e){t.$set(t.formValidate,"mer_cate_id",e)},expression:"formValidate.mer_cate_id"}})],1),t._v(" "),1===t.formValidate.spec_type&&t.ManyAttrValue.length>1?a("el-form-item",{staticClass:"labeltop",attrs:{label:"批量设置:"}},[a("el-table",{attrs:{data:t.oneFormBatch,size:"mini"}},[a("el-table-column",{attrs:{label:"图片","min-width":"150",align:"center"},scopedSlots:t._u([{key:"default",fn:function(e){return[a("div",{staticClass:"acea-row row-middle row-center-wrapper"},[t.oneFormBatch[0].image?a("div",{staticClass:"pictrue pictrueTab"},[a("img",{directives:[{name:"lazy",rawName:"v-lazy",value:t.oneFormBatch[0].image,expression:"oneFormBatch[0].image"}]})]):a("div",{staticClass:"upLoad pictrueTab acea-row row-center-wrapper"},[a("i",{staticClass:"el-icon-camera cameraIconfont"})])])]}}],null,!1,2622395115)}),t._v(" "),a("el-table-column",{attrs:{label:"售价","min-width":"100",align:"center"},scopedSlots:t._u([{key:"default",fn:function(e){return[a("el-input-number",{staticClass:"priceBox",attrs:{min:0,"controls-position":"right"},model:{value:t.oneFormBatch[0].price,callback:function(e){t.$set(t.oneFormBatch[0],"price",e)},expression:"oneFormBatch[0].price"}})]}}],null,!1,92719458)}),t._v(" "),a("el-table-column",{attrs:{label:"成本价","min-width":"100",align:"center"},scopedSlots:t._u([{key:"default",fn:function(e){return[a("el-input-number",{staticClass:"priceBox",attrs:{min:0,"controls-position":"right"},model:{value:t.oneFormBatch[0].cost,callback:function(e){t.$set(t.oneFormBatch[0],"cost",e)},expression:"oneFormBatch[0].cost"}})]}}],null,!1,2696007940)}),t._v(" "),a("el-table-column",{attrs:{label:"市场价","min-width":"100",align:"center"},scopedSlots:t._u([{key:"default",fn:function(e){return[a("el-input-number",{staticClass:"priceBox",attrs:{min:0,"controls-position":"right"},model:{value:t.oneFormBatch[0].ot_price,callback:function(e){t.$set(t.oneFormBatch[0],"ot_price",e)},expression:"oneFormBatch[0].ot_price"}})]}}],null,!1,912438278)}),t._v(" "),a("el-table-column",{attrs:{label:"库存","min-width":"100",align:"center"},scopedSlots:t._u([{key:"default",fn:function(e){return[a("el-input-number",{staticClass:"priceBox",attrs:{min:0,"controls-position":"right"},model:{value:t.oneFormBatch[0].stock,callback:function(e){t.$set(t.oneFormBatch[0],"stock",e)},expression:"oneFormBatch[0].stock"}})]}}],null,!1,429960335)}),t._v(" "),a("el-table-column",{attrs:{label:"商品编号","min-width":"100",align:"center"},scopedSlots:t._u([{key:"default",fn:function(e){return[a("el-input",{model:{value:t.oneFormBatch[0].bar_code,callback:function(e){t.$set(t.oneFormBatch[0],"bar_code",e)},expression:"oneFormBatch[0].bar_code"}})]}}],null,!1,989028316)}),t._v(" "),a("el-table-column",{attrs:{label:"重量(KG)","min-width":"100",align:"center"},scopedSlots:t._u([{key:"default",fn:function(e){return[a("el-input-number",{staticClass:"priceBox",attrs:{min:0,"controls-position":"right"},model:{value:t.oneFormBatch[0].weight,callback:function(e){t.$set(t.oneFormBatch[0],"weight",e)},expression:"oneFormBatch[0].weight"}})]}}],null,!1,976765487)}),t._v(" "),a("el-table-column",{attrs:{label:"体积(m²)","min-width":"100",align:"center"},scopedSlots:t._u([{key:"default",fn:function(e){return[a("el-input-number",{staticClass:"priceBox",attrs:{min:0,"controls-position":"right"},model:{value:t.oneFormBatch[0].volume,callback:function(e){t.$set(t.oneFormBatch[0],"volume",e)},expression:"oneFormBatch[0].volume"}})]}}],null,!1,1463276615)}),t._v(" "),a("el-table-column",{attrs:{label:"操作","min-width":"150",align:"center"},scopedSlots:t._u([{key:"default",fn:function(e){return[a("a",{staticClass:"ela-btn",attrs:{href:"javascript: void(0);"},on:{click:t.batchAdd}},[t._v("添加")]),t._v(" "),a("a",{staticClass:"ela-btn",attrs:{href:"javascript: void(0);"},on:{click:t.batchDel}},[t._v("清空")])]}}],null,!1,2952505336)})],1)],1):t._e(),t._v(" "),0===t.formValidate.spec_type?a("el-form-item",{staticClass:"labeltop",attrs:{label:"规格列表:"}},[a("el-table",{staticClass:"tabNumWidth",attrs:{data:t.OneattrValue,border:"",size:"mini"}},[a("el-table-column",{attrs:{align:"center",label:"图片","min-width":"80"},scopedSlots:t._u([{key:"default",fn:function(t){return[a("div",{staticClass:"upLoadPicBox"},[t.row.image?a("div",{staticClass:"pictrue tabPic"},[a("img",{attrs:{src:t.row.image}})]):a("div",{staticClass:"upLoad tabPic"},[a("i",{staticClass:"el-icon-camera cameraIconfont"})])])]}}],null,!1,2631442157)}),t._v(" "),t._l(t.attrValue,(function(e,i){return a("el-table-column",{key:i,attrs:{label:t.formThead[i].title,align:"center","min-width":"120"},scopedSlots:t._u([{key:"default",fn:function(e){return["商品编号"===t.formThead[i].title?a("el-input",{staticClass:"priceBox",attrs:{type:"text"},model:{value:e.row[i],callback:function(a){t.$set(e.row,i,a)},expression:"scope.row[iii]"}}):a("el-input-number",{staticClass:"priceBox",attrs:{min:0,"controls-position":"right"},model:{value:e.row[i],callback:function(a){t.$set(e.row,i,a)},expression:"scope.row[iii]"}})]}}],null,!0)})})),t._v(" "),1===t.formValidate.extension_type?[a("el-table-column",{attrs:{align:"center",label:"一级返佣(元)","min-width":"100"},scopedSlots:t._u([{key:"default",fn:function(e){return[a("el-input-number",{staticClass:"priceBox",attrs:{min:0,"controls-position":"right"},model:{value:e.row.extension_one,callback:function(a){t.$set(e.row,"extension_one",a)},expression:"scope.row.extension_one"}})]}}],null,!1,1308693019)}),t._v(" "),a("el-table-column",{attrs:{align:"center",label:"二级返佣(元)","min-width":"100"},scopedSlots:t._u([{key:"default",fn:function(e){return[a("el-input-number",{staticClass:"priceBox",attrs:{min:0,"controls-position":"right"},model:{value:e.row.extension_two,callback:function(a){t.$set(e.row,"extension_two",a)},expression:"scope.row.extension_two"}})]}}],null,!1,899977843)})]:t._e()],2)],1):t._e(),t._v(" "),1===t.formValidate.spec_type?a("el-form-item",{staticClass:"labeltop",attrs:{label:"规格列表:"}},[a("el-table",{staticClass:"tabNumWidth",attrs:{data:t.ManyAttrValue,border:"",size:"mini"}},[t.manyTabDate?t._l(t.manyTabDate,(function(e,i){return a("el-table-column",{key:i,attrs:{align:"center",label:t.manyTabTit[i].title,"min-width":"80"},scopedSlots:t._u([{key:"default",fn:function(e){return[a("span",{staticClass:"priceBox",domProps:{textContent:t._s(e.row[i])}})]}}],null,!0)})})):t._e(),t._v(" "),a("el-table-column",{attrs:{align:"center",label:"图片","min-width":"80"},scopedSlots:t._u([{key:"default",fn:function(t){return[a("div",{staticClass:"upLoadPicBox",attrs:{title:"750*750px"}},[t.row.image?a("div",{staticClass:"pictrue tabPic"},[a("img",{attrs:{src:t.row.image}})]):a("div",{staticClass:"upLoad tabPic"},[a("i",{staticClass:"el-icon-camera cameraIconfont"})])])]}}],null,!1,324277957)}),t._v(" "),t._l(t.attrValue,(function(e,i){return a("el-table-column",{key:i,attrs:{label:t.formThead[i].title,align:"center","min-width":"120"},scopedSlots:t._u([{key:"default",fn:function(e){return["商品编号"===t.formThead[i].title?a("el-input",{staticClass:"priceBox",attrs:{type:"text"},model:{value:e.row[i],callback:function(a){t.$set(e.row,i,a)},expression:"scope.row[iii]"}}):a("el-input-number",{staticClass:"priceBox",attrs:{min:0,"controls-position":"right"},model:{value:e.row[i],callback:function(a){t.$set(e.row,i,a)},expression:"scope.row[iii]"}})]}}],null,!0)})})),t._v(" "),1===t.formValidate.extension_type?[a("el-table-column",{attrs:{align:"center",label:"一级返佣(元)","min-width":"100"},scopedSlots:t._u([{key:"default",fn:function(e){return[a("el-input-number",{staticClass:"priceBox",attrs:{min:0,"controls-position":"right"},model:{value:e.row.extension_one,callback:function(a){t.$set(e.row,"extension_one",a)},expression:"scope.row.extension_one"}})]}}],null,!1,1308693019)}),t._v(" "),a("el-table-column",{attrs:{align:"center",label:"二级返佣(元)","min-width":"100"},scopedSlots:t._u([{key:"default",fn:function(e){return[a("el-input-number",{staticClass:"priceBox",attrs:{min:0,"controls-position":"right"},model:{value:e.row.extension_two,callback:function(a){t.$set(e.row,"extension_two",a)},expression:"scope.row.extension_two"}})]}}],null,!1,899977843)})]:t._e()],2)],1):t._e(),t._v(" "),a("el-form-item",[a("el-button",{staticClass:"submission",attrs:{loading:t.loading1,type:"primary"},on:{click:function(e){return t.handleSubmit("formValidate")}}},[t._v("提交")])],1)],1)])])],1):t._e()],1)},L=[],S={store_name:"",cate_id:"",temp_id:"",type:0,guarantee_template_id:"",keyword:"",unit_name:"",store_info:"",image:"",slider_image:[],content:"",ficti:0,once_count:0,give_integral:0,is_show:0,price:0,cost:0,ot_price:0,stock:0,attrs:[],items:[],delivery_way:[],mer_labels:[],delivery_free:0,spec_type:0,is_copoy:1,attrValue:[{image:"",price:0,cost:0,ot_price:0,stock:0,bar_code:"",weight:0,volume:0}]},O={price:{title:"售价"},cost:{title:"成本价"},ot_price:{title:"市场价"},stock:{title:"库存"},bar_code:{title:"商品编号"},weight:{title:"重量(KG)"},volume:{title:"体积(m³)"}},j={name:"editAttr",components:{},data:function(){return{product_id:"",roterPre:r["roterPre"],modals:!1,loading:!1,loading1:!1,OneattrValue:[Object.assign({},S.attrValue[0])],ManyAttrValue:[Object.assign({},S.attrValue[0])],manyTabDate:{},count:0,modal_loading:!1,images:"",modalPic:!1,isChoice:"",columns:[],merCateList:[],propsMer:{emitPath:!1,multiple:!0},ruleInline:{mer_cate_id:[{required:!0,message:"请选择商户分类",trigger:"change",type:"array",min:"1"}]},formThead:Object.assign({},O),formValidate:Object.assign({},S),items:[{image:"",price:0,cost:0,ot_price:0,stock:0,bar_code:"",weight:0,volume:0}],tableIndex:0,attrInfo:{},oneFormBatch:[{image:"",price:0,cost:0,ot_price:0,stock:0,bar_code:"",weight:0,volume:0}]}},computed:{attrValue:function(){var t=Object.assign({},S.attrValue[0]);return delete t.image,t}},watch:{"formValidate.attr":{handler:function(t){1===this.formValidate.spec_type&&this.watCh(t)},immediate:!1,deep:!0}},created:function(){this.getCategorySelect()},mounted:function(){},methods:{batchDel:function(){this.oneFormBatch=[{image:"",price:0,cost:0,ot_price:0,stock:0,bar_code:"",weight:0,volume:0}]},batchAdd:function(){var t,e=Object(m["a"])(this.ManyAttrValue);try{for(e.s();!(t=e.n()).done;){var a=t.value;this.$set(a,"image",this.oneFormBatch[0].image),this.$set(a,"price",this.oneFormBatch[0].price),this.$set(a,"cost",this.oneFormBatch[0].cost),this.$set(a,"ot_price",this.oneFormBatch[0].ot_price),this.$set(a,"stock",this.oneFormBatch[0].stock),this.$set(a,"bar_code",this.oneFormBatch[0].bar_code),this.$set(a,"weight",this.oneFormBatch[0].weight),this.$set(a,"volume",this.oneFormBatch[0].volume),this.$set(a,"extension_one",this.oneFormBatch[0].extension_one),this.$set(a,"extension_two",this.oneFormBatch[0].extension_two)}}catch(i){e.e(i)}finally{e.f()}},getCategorySelect:function(){var t=this;Object(o["r"])().then((function(e){t.merCateList=e.data})).catch((function(e){t.$message.error(e.message)}))},watCh:function(t){var e=this,a={},i={};this.formValidate.attr.forEach((function(t,e){a["value"+e]={title:t.value},i["value"+e]=""})),this.ManyAttrValue=this.attrFormat(t),console.log(this.ManyAttrValue),this.ManyAttrValue.forEach((function(t,a){var i=Object.values(t.detail).sort().join("/");e.attrInfo[i]&&(e.ManyAttrValue[a]=e.attrInfo[i]),t.image=e.formValidate.image})),this.attrInfo={},this.ManyAttrValue.forEach((function(t){"undefined"!==t.detail&&null!==t.detail&&(e.attrInfo[Object.values(t.detail).sort().join("/")]=t)})),this.manyTabTit=a,this.manyTabDate=i,this.formThead=Object.assign({},this.formThead,a)},attrFormat:function(t){var e=[],a=[];return i(t);function i(t){if(t.length>1)t.forEach((function(i,l){0===l&&(e=t[l]["detail"]);var o=[];e.forEach((function(e){t[l+1]&&t[l+1]["detail"]&&t[l+1]["detail"].forEach((function(i){var r=(0!==l?"":t[l]["value"]+"_$_")+e+"-$-"+t[l+1]["value"]+"_$_"+i;if(o.push(r),l===t.length-2){var n={image:"",price:0,cost:0,ot_price:0,stock:0,bar_code:"",weight:0,volume:0,brokerage:0,brokerage_two:0};r.split("-$-").forEach((function(t,e){var a=t.split("_$_");n["detail"]||(n["detail"]={}),n["detail"][a[0]]=a.length>1?a[1]:""})),Object.values(n.detail).forEach((function(t,e){n["value"+e]=t})),a.push(n)}}))})),e=o.length?o:[]}));else{var i=[];t.forEach((function(t,e){t["detail"].forEach((function(e,l){i[l]=t["value"]+"_"+e,a[l]={image:"",price:0,cost:0,ot_price:0,stock:0,bar_code:"",weight:0,volume:0,brokerage:0,brokerage_two:0,detail:Object(u["a"])({},t["value"],e)},Object.values(a[l].detail).forEach((function(t,e){a[l]["value"+e]=t}))}))})),e.push(i.join("$&"))}return a}},getAttrDetail:function(t){var e=this;this.product_id=t,this.loading=!0,this.modals=!0,Object(o["cb"])(t).then((function(t){var a=t.data;e.formValidate={attr:a.attr||[],attrValue:a.attrValue,mer_cate_id:a.mer_cate_id,spec_type:a.spec_type},0===e.formValidate.spec_type?e.OneattrValue=a.attrValue:(e.ManyAttrValue=a.attrValue,e.ManyAttrValue.forEach((function(t){"undefined"!==t.detail&&null!==t.detail&&(e.attrInfo[Object.values(t.detail).sort().join("/")]=t)})),e.$watch("formValidate.attr",e.watCh)),e.loading=!1})).catch((function(t){e.$message.error(t.message),e.loading=!1}))},handleSubmit:function(t){var e=this;e.$refs[t].validate((function(t){t?(1===e.formValidate.spec_type?e.formValidate.attrValue=e.ManyAttrValue:(e.formValidate.attrValue=e.OneattrValue,e.formValidate.attr=[]),e.loading1=!0,Object(o["u"])(e.product_id,e.formValidate).then((function(t){e.loading1=!1,e.$message.success(t.message),setTimeout((function(){e.modals=!1}),500)})).catch((function(t){e.$message.error(t.message),e.loading1=!1}))):e.formValidate.mer_cate_id||e.$message.warning("请选择商户商品分类!")}))}}},T=j,A=(a("da80"),Object(b["a"])(T,B,L,!1,null,"5e47370c",null)),P=A.exports,z=a("8c98"),D={name:"ProductList",components:{taoBao:$,previewBox:z["a"],editAttr:P},data:function(){return{props:{emitPath:!1},roterPre:r["roterPre"],headeNum:[],labelList:[],tempList:[],listLoading:!0,tableData:{data:[],total:0},tableFrom:{page:1,limit:20,mer_cate_id:"",cate_id:"",keyword:"",temp_id:"",type:this.$route.query.type?this.$route.query.type:"1",is_gift_bag:"",us_status:"",mer_labels:"",svip_price_type:"",product_id:this.$route.query.id?this.$route.query.id:""},categoryList:[],merCateList:[],modals:!1,tabClickIndex:"",multipleSelection:[],productStatusList:[{label:"上架显示",value:1},{label:"下架",value:0},{label:"平台关闭",value:-1}],tempRule:{temp_id:[{required:!0,message:"请选择运费模板",trigger:"change"}]},commisionRule:{extension_one:[{required:!0,message:"请输入一级佣金",trigger:"change"}],extension_two:[{required:!0,message:"请输入二级佣金",trigger:"change"}]},commisionForm:{extension_one:0,extension_two:0},svipForm:{svip_price_type:0},goodsId:"",previewKey:"",product_id:"",previewVisible:!1,dialogLabel:!1,dialogFreight:!1,dialogCommision:!1,dialogSvip:!1,is_audit:!1,deliveryType:[],deliveryList:[],labelForm:{},tempForm:{},isBatch:!1,open_svip:!1}},mounted:function(){this.getLstFilterApi(),this.getCategorySelect(),this.getCategoryList(),this.getList(1),this.getLabelLst(),this.getTempLst(),this.productCon()},methods:{tableRowClassName:function(t){var e=t.row,a=t.rowIndex;e.index=a},tabClick:function(t){this.tabClickIndex=t.index},inputBlur:function(t){var e=this;(!t.row.sort||t.row.sort<0)&&(t.row.sort=0),Object(o["gb"])(t.row.product_id,{sort:t.row.sort}).then((function(t){e.closeEdit()})).catch((function(t){}))},closeEdit:function(){this.tabClickIndex=null},handleSelectionChange:function(t){this.multipleSelection=t;var e=[];this.multipleSelection.map((function(t){e.push(t.product_id)})),this.product_ids=e},productCon:function(){var t=this;Object(o["W"])().then((function(e){t.is_audit=e.data.is_audit,t.open_svip=1==e.data.mer_svip_status&&1==e.data.svip_switch_status,t.deliveryType=e.data.delivery_way.map(String),2==t.deliveryType.length?t.deliveryList=[{value:"1",name:"到店自提"},{value:"2",name:"快递配送"}]:1==t.deliveryType.length&&"1"==t.deliveryType[0]?t.deliveryList=[{value:"1",name:"到店自提"}]:t.deliveryList=[{value:"2",name:"快递配送"}]})).catch((function(e){t.$message.error(e.message)}))},getSuccess:function(){this.getLstFilterApi(),this.getList(1)},handleClose:function(){this.dialogLabel=!1},handleFreightClose:function(){this.dialogFreight=!1},onClose:function(){this.modals=!1},onCopy:function(){this.$router.push({path:this.roterPre+"/product/list/addProduct",query:{type:1}})},getLabelLst:function(){var t=this;Object(o["v"])().then((function(e){t.labelList=e.data})).catch((function(e){t.$message.error(e.message)}))},getTempLst:function(){var t=this;Object(o["wb"])().then((function(e){t.tempList=e.data})).catch((function(e){t.$message.error(e.message)}))},onAuditFree:function(t){this.$refs.editAttr.getAttrDetail(t.product_id)},batchCommision:function(){if(0===this.multipleSelection.length)return this.$message.warning("请先选择商品");this.dialogCommision=!0},batchSvip:function(){if(0===this.multipleSelection.length)return this.$message.warning("请先选择商品");this.dialogSvip=!0},submitCommisionForm:function(t){var e=this;this.$refs[t].validate((function(t){t&&(e.commisionForm.ids=e.product_ids,Object(o["U"])(e.commisionForm).then((function(t){var a=t.message;e.$message.success(a),e.getList(""),e.dialogCommision=!1})))}))},submitSvipForm:function(t){var e=this;this.svipForm.ids=this.product_ids,Object(o["V"])(this.svipForm).then((function(t){var a=t.message;e.$message.success(a),e.getList(""),e.dialogSvip=!1}))},batchShelf:function(){var t=this;if(0===this.multipleSelection.length)return this.$message.warning("请先选择商品");var e={status:1,ids:this.product_ids};Object(o["n"])(e).then((function(e){t.$message.success(e.message),t.getLstFilterApi(),t.getList("")})).catch((function(e){t.$message.error(e.message)}))},batchOff:function(){var t=this;if(0===this.multipleSelection.length)return this.$message.warning("请先选择商品");var e={status:0,ids:this.product_ids};Object(o["n"])(e).then((function(e){t.$message.success(e.message),t.getLstFilterApi(),t.getList("")})).catch((function(e){t.$message.error(e.message)}))},batchLabel:function(){this.labelForm={mer_labels:[],ids:this.product_ids},this.isBatch=!0,this.dialogLabel=!0},batchFreight:function(){this.dialogFreight=!0},submitTempForm:function(t){var e=this;this.$refs[t].validate((function(t){t&&(e.tempForm.ids=e.product_ids,Object(o["o"])(e.tempForm).then((function(t){var a=t.message;e.$message.success(a),e.getList(""),e.dialogFreight=!1})))}))},handleRestore:function(t){var e=this;this.$modalSure("恢复商品").then((function(){Object(o["mb"])(t).then((function(t){e.$message.success(t.message),e.getLstFilterApi(),e.getList("")})).catch((function(t){e.$message.error(t.message)}))}))},handlePreview:function(t){this.previewVisible=!0,this.goodsId=t,this.previewKey=""},getCategorySelect:function(){var t=this;Object(o["r"])().then((function(e){t.merCateList=e.data})).catch((function(e){t.$message.error(e.message)}))},getCategoryList:function(){var t=this;Object(o["q"])().then((function(e){t.categoryList=e.data})).catch((function(e){t.$message.error(e.message)}))},getLstFilterApi:function(){var t=this;Object(o["M"])().then((function(e){t.headeNum=e.data})).catch((function(e){t.$message.error(e.message)}))},getList:function(t){var e=this;this.listLoading=!0,this.tableFrom.page=t||this.tableFrom.page,Object(o["eb"])(this.tableFrom).then((function(t){e.tableData.data=t.data.list,e.tableData.total=t.data.count,e.listLoading=!1})).catch((function(t){e.listLoading=!1,e.$message.error(t.message)})),this.getLstFilterApi()},pageChange:function(t){this.tableFrom.page=t,this.getList("")},handleSizeChange:function(t){this.tableFrom.limit=t,this.getList("")},handleDelete:function(t,e){var a=this;this.$modalSure("5"!==this.tableFrom.type?"加入回收站":"删除该商品").then((function(){"5"===a.tableFrom.type?Object(o["t"])(t).then((function(t){var e=t.message;a.$message.success(e),a.getList(""),a.getLstFilterApi()})).catch((function(t){var e=t.message;a.$message.error(e)})):Object(o["bb"])(t).then((function(t){var e=t.message;a.$message.success(e),a.getList(""),a.getLstFilterApi()})).catch((function(t){var e=t.message;a.$message.error(e)}))}))},onEditLabel:function(t){if(this.dialogLabel=!0,this.product_id=t.product_id,t.mer_labels&&t.mer_labels.length){var e=t.mer_labels.map((function(t){return t.product_label_id}));this.labelForm={mer_labels:e}}else this.labelForm={mer_labels:[]}},submitForm:function(t){var e=this;this.$refs[t].validate((function(t){t&&(e.isBatch?Object(o["m"])(e.labelForm).then((function(t){var a=t.message;e.$message.success(a),e.getList(""),e.dialogLabel=!1,e.isBatch=!1})):Object(o["Rb"])(e.product_id,e.labelForm).then((function(t){var a=t.message;e.$message.success(a),e.getList(""),e.dialogLabel=!1})))}))},onchangeIsShow:function(t){var e=this;Object(o["Gb"])(t.product_id,t.is_show).then((function(t){var a=t.message;e.$message.success(a),e.getList(""),e.getLstFilterApi()})).catch((function(t){var a=t.message;e.$message.error(a)}))}}},E=D,I=(a("8f4b"),Object(b["a"])(E,i,l,!1,null,"96691330",null));e["default"]=I.exports},da80:function(t,e,a){"use strict";a("e797")},e797:function(t,e,a){},e96b:function(t,e,a){"use strict";a("2e72")}}]); \ No newline at end of file diff --git a/public/mer/js/chunk-154b4748.e115ffee.js b/public/mer/js/chunk-154b4748.e115ffee.js new file mode 100644 index 00000000..3a1085ec --- /dev/null +++ b/public/mer/js/chunk-154b4748.e115ffee.js @@ -0,0 +1 @@ +(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-154b4748"],{"18e4":function(t,e,n){"use strict";n.r(e);var r=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"divBox"},[n("el-card",{staticClass:"box-card"},[n("div",{staticClass:"clearfix",attrs:{slot:"header"},slot:"header"},[n("el-row",{attrs:{gutter:24}},[n("el-col",t._b({},"el-col",t.grid,!1),[n("div",{staticClass:"grid-content bg-purple"})])],1),t._v(" "),n("el-button",{attrs:{size:"small",type:"primary"},on:{click:t.onAdd}},[t._v("添加身份管理")])],1),t._v(" "),n("el-table",{directives:[{name:"loading",rawName:"v-loading",value:t.listLoading,expression:"listLoading"}],staticStyle:{width:"100%"},attrs:{data:t.tableData.data,size:"small","highlight-current-row":""}},[n("el-table-column",{attrs:{prop:"role_id",label:"ID","min-width":"60"}}),t._v(" "),n("el-table-column",{attrs:{prop:"role_name",label:"身份名称","min-width":"150"}}),t._v(" "),n("el-table-column",{attrs:{prop:"rule_name",label:"权限名称","min-width":"250"}}),t._v(" "),n("el-table-column",{attrs:{prop:"status",label:"是否开启","min-width":"100"},scopedSlots:t._u([{key:"default",fn:function(e){return[n("el-switch",{attrs:{"active-value":1,"inactive-value":0,"active-text":"开启","inactive-text":"关闭"},on:{change:function(n){return t.onchangeIsShow(e.row)}},model:{value:e.row.status,callback:function(n){t.$set(e.row,"status",n)},expression:"scope.row.status"}})]}}])}),t._v(" "),n("el-table-column",{attrs:{prop:"create_time",label:"创建时间","min-width":"150"}}),t._v(" "),n("el-table-column",{attrs:{label:"操作","min-width":"100",fixed:"right"},scopedSlots:t._u([{key:"default",fn:function(e){return[n("el-button",{attrs:{type:"text",size:"small"},on:{click:function(n){return t.onEdit(e.row.role_id)}}},[t._v("编辑")]),t._v(" "),n("el-button",{attrs:{type:"text",size:"small"},on:{click:function(n){return t.handleDelete(e.row.role_id,e.$index)}}},[t._v("删除")])]}}])})],1),t._v(" "),n("div",{staticClass:"block"},[n("el-pagination",{attrs:{"page-sizes":[20,40,60,80],"page-size":t.tableFrom.limit,"current-page":t.tableFrom.page,layout:"total, sizes, prev, pager, next, jumper",total:t.tableData.total},on:{"size-change":t.handleSizeChange,"current-change":t.pageChange}})],1)],1)],1)},a=[],i=n("90e7"),o={name:"SystemRole",data:function(){return{grid:{xl:7,lg:7,md:12,sm:24,xs:24},tableData:{data:[],total:0},listLoading:!0,tableFrom:{page:1,limit:20,role_name:"",level:"",status:"",startTime:"",endTime:""}}},computed:{},mounted:function(){this.getList()},methods:{getList:function(){var t=this;this.listLoading=!0,Object(i["m"])(this.tableFrom).then((function(e){t.tableData.data=e.data.list,t.tableData.total=e.data.count,t.listLoading=!1})).catch((function(e){t.listLoading=!1,t.$message.error(e.message)}))},pageChange:function(t){this.tableFrom.page=t,this.getList()},handleSizeChange:function(t){this.tableFrom.limit=t,this.getList()},onchangeIsShow:function(t){var e=this;Object(i["w"])(t.role_id,t.status).then((function(t){var n=t.message;e.$message.success(n)})).catch((function(t){var n=t.message;e.$message.error(n)}))},onAdd:function(){var t=this;this.$modalForm(Object(i["u"])()).then((function(){return t.getList()}))},onEdit:function(t){var e=this;this.$modalForm(Object(i["x"])(t)).then((function(){return e.getList()}))},handleDelete:function(t,e){var n=this;this.$modalSure().then((function(){Object(i["v"])(t).then((function(t){var r=t.message;n.$message.success(r),n.tableData.data.splice(e,1)})).catch((function(t){var e=t.message;n.$message.error(e)}))}))}}},u=o,s=n("2877"),c=Object(s["a"])(u,r,a,!1,null,"1d15ee32",null);e["default"]=c.exports},"90e7":function(t,e,n){"use strict";n.d(e,"m",(function(){return a})),n.d(e,"u",(function(){return i})),n.d(e,"x",(function(){return o})),n.d(e,"v",(function(){return u})),n.d(e,"w",(function(){return s})),n.d(e,"c",(function(){return c})),n.d(e,"a",(function(){return l})),n.d(e,"g",(function(){return d})),n.d(e,"b",(function(){return f})),n.d(e,"f",(function(){return m})),n.d(e,"e",(function(){return g})),n.d(e,"d",(function(){return p})),n.d(e,"A",(function(){return h})),n.d(e,"B",(function(){return v})),n.d(e,"j",(function(){return b})),n.d(e,"k",(function(){return w})),n.d(e,"l",(function(){return _})),n.d(e,"y",(function(){return y})),n.d(e,"z",(function(){return x})),n.d(e,"n",(function(){return k})),n.d(e,"o",(function(){return L})),n.d(e,"i",(function(){return z})),n.d(e,"h",(function(){return $})),n.d(e,"C",(function(){return C})),n.d(e,"p",(function(){return D})),n.d(e,"r",(function(){return S})),n.d(e,"s",(function(){return j})),n.d(e,"t",(function(){return F})),n.d(e,"q",(function(){return O}));var r=n("0c6d");function a(t){return r["a"].get("system/role/lst",t)}function i(){return r["a"].get("system/role/create/form")}function o(t){return r["a"].get("system/role/update/form/".concat(t))}function u(t){return r["a"].delete("system/role/delete/".concat(t))}function s(t,e){return r["a"].post("system/role/status/".concat(t),{status:e})}function c(t){return r["a"].get("system/admin/lst",t)}function l(){return r["a"].get("/system/admin/create/form")}function d(t){return r["a"].get("system/admin/update/form/".concat(t))}function f(t){return r["a"].delete("system/admin/delete/".concat(t))}function m(t,e){return r["a"].post("system/admin/status/".concat(t),{status:e})}function g(t){return r["a"].get("system/admin/password/form/".concat(t))}function p(t){return r["a"].get("system/admin/log",t)}function h(){return r["a"].get("take/info")}function v(t){return r["a"].post("take/update",t)}function b(){return r["a"].get("margin/code")}function w(t){return r["a"].get("margin/lst",t)}function _(){return r["a"].post("financial/refund/margin")}function y(){return r["a"].get("serve/info")}function x(t){return r["a"].get("serve/meal",t)}function k(t){return r["a"].get("serve/code",t)}function L(t){return r["a"].get("serve/paylst",t)}function z(t){return r["a"].get("expr/temps",t)}function $(){return r["a"].get("serve/config")}function C(t){return r["a"].post("serve/config",t)}function D(){return r["a"].get("store/printer/create/form")}function S(t){return r["a"].get("store/printer/lst",t)}function j(t,e){return r["a"].post("store/printer/status/".concat(t),e)}function F(t){return r["a"].get("store/printer/update/".concat(t,"/form"))}function O(t){return r["a"].delete("store/printer/delete/".concat(t))}}}]); \ No newline at end of file diff --git a/public/mer/js/chunk-18fda1e0.c63d5538.js b/public/mer/js/chunk-18fda1e0.c63d5538.js new file mode 100644 index 00000000..bbad154b --- /dev/null +++ b/public/mer/js/chunk-18fda1e0.c63d5538.js @@ -0,0 +1 @@ +(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-18fda1e0"],{"223e":function(t,e,n){"use strict";n.r(e);var r=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"divBox"},[n("el-card",{staticClass:"box-card"},[n("div",{staticClass:"clearfix",attrs:{slot:"header"},slot:"header"},[n("div",{staticClass:"container"},[n("el-form",{attrs:{inline:""},nativeOn:{submit:function(t){t.preventDefault()}}},[n("el-form-item",{staticClass:"mr10",attrs:{label:"打印机名称:"}},[n("el-input",{staticClass:"selWidth",attrs:{placeholder:"请输入打印机名称",size:"small"},nativeOn:{keyup:function(e){return!e.type.indexOf("key")&&t._k(e.keyCode,"enter",13,e.key,"Enter")?null:t.getList(1)}},model:{value:t.tableFrom.keyword,callback:function(e){t.$set(t.tableFrom,"keyword",e)},expression:"tableFrom.keyword"}},[n("el-button",{staticClass:"el-button-solt",attrs:{slot:"append",icon:"el-icon-search",size:"small"},on:{click:function(e){return t.getList(1)}},slot:"append"})],1)],1)],1)],1),t._v(" "),n("el-button",{attrs:{size:"small",type:"primary"},on:{click:t.add}},[t._v("添加打印机")])],1),t._v(" "),n("el-table",{directives:[{name:"loading",rawName:"v-loading",value:t.listLoading,expression:"listLoading"}],staticStyle:{width:"100%"},attrs:{data:t.tableData.data,size:"mini"}},[n("el-table-column",{attrs:{prop:"printer_id",label:"ID","min-width":"150"}}),t._v(" "),n("el-table-column",{attrs:{prop:"printer_name",label:"打印机名称","min-width":"200"}}),t._v(" "),n("el-table-column",{attrs:{prop:"printer_terminal",label:"终端号","min-width":"200"}}),t._v(" "),n("el-table-column",{attrs:{label:"是否开启","min-width":"90"},scopedSlots:t._u([{key:"default",fn:function(e){return[n("el-switch",{attrs:{"active-value":1,"inactive-value":0,"active-text":"开启","inactive-text":"不开启"},nativeOn:{click:function(n){return t.onchangeIsShow(e.row)}},model:{value:e.row.status,callback:function(n){t.$set(e.row,"status",n)},expression:"scope.row.status"}})]}}])}),t._v(" "),n("el-table-column",{attrs:{label:"创建时间","min-width":"150",prop:"create_time"}}),t._v(" "),n("el-table-column",{attrs:{label:"操作","min-width":"80",fixed:"right"},scopedSlots:t._u([{key:"default",fn:function(e){return[n("el-button",{attrs:{type:"text",size:"small"},on:{click:function(n){return t.handleEdit(e.row.printer_id)}}},[t._v("编辑")]),t._v(" "),n("el-button",{attrs:{type:"text",size:"small"},on:{click:function(n){return t.handleDelete(e.row.printer_id,e.$index)}}},[t._v("删除")])]}}])})],1),t._v(" "),n("div",{staticClass:"block"},[n("el-pagination",{attrs:{"page-sizes":[20,40,60,80],"page-size":t.tableFrom.limit,"current-page":t.tableFrom.page,layout:"total, sizes, prev, pager, next, jumper",total:t.tableData.total},on:{"size-change":t.handleSizeChange,"current-change":t.pageChange}})],1)],1)],1)},a=[],i=n("90e7"),o={name:"ProductGuarantee",components:{},data:function(){return{tableData:{data:[],total:0},listLoading:!0,tableFrom:{page:1,limit:20,date:"",keyword:""},timeVal:[],props:{}}},mounted:function(){this.getList(1)},methods:{add:function(){var t=this;this.$modalForm(Object(i["p"])()).then((function(){return t.getList("")}))},getList:function(t){var e=this;this.listLoading=!0,this.tableFrom.page=t||this.tableFrom.page,Object(i["r"])(this.tableFrom).then((function(t){e.tableData.data=t.data.list,e.tableData.total=t.data.count,e.listLoading=!1})).catch((function(t){e.listLoading=!1,e.$message.error(t.message)}))},pageChange:function(t){this.tableFrom.page=t,this.getList("")},handleSizeChange:function(t){this.tableFrom.limit=t,this.getList("")},onchangeIsShow:function(t){var e=this;Object(i["s"])(t.printer_id,{status:t.status}).then((function(t){var n=t.message;e.$message.success(n),e.getList("")})).catch((function(t){var n=t.message;e.$message.error(n)}))},handleEdit:function(t){var e=this;this.$modalForm(Object(i["t"])(t)).then((function(){return e.getList("")}))},handleDelete:function(t,e){var n=this;this.$modalSure("删除打印机").then((function(){Object(i["q"])(t).then((function(t){var r=t.message;n.$message.success(r),n.tableData.data.splice(e,1)})).catch((function(t){var e=t.message;n.$message.error(e)}))}))}}},s=o,u=n("2877"),c=Object(u["a"])(s,r,a,!1,null,"e2c65e0e",null);e["default"]=c.exports},"90e7":function(t,e,n){"use strict";n.d(e,"m",(function(){return a})),n.d(e,"u",(function(){return i})),n.d(e,"x",(function(){return o})),n.d(e,"v",(function(){return s})),n.d(e,"w",(function(){return u})),n.d(e,"c",(function(){return c})),n.d(e,"a",(function(){return l})),n.d(e,"g",(function(){return d})),n.d(e,"b",(function(){return f})),n.d(e,"f",(function(){return m})),n.d(e,"e",(function(){return p})),n.d(e,"d",(function(){return g})),n.d(e,"A",(function(){return h})),n.d(e,"B",(function(){return v})),n.d(e,"j",(function(){return b})),n.d(e,"k",(function(){return y})),n.d(e,"l",(function(){return w})),n.d(e,"y",(function(){return k})),n.d(e,"z",(function(){return _})),n.d(e,"n",(function(){return x})),n.d(e,"o",(function(){return L})),n.d(e,"i",(function(){return C})),n.d(e,"h",(function(){return z})),n.d(e,"C",(function(){return F})),n.d(e,"p",(function(){return $})),n.d(e,"r",(function(){return D})),n.d(e,"s",(function(){return O})),n.d(e,"t",(function(){return j})),n.d(e,"q",(function(){return S}));var r=n("0c6d");function a(t){return r["a"].get("system/role/lst",t)}function i(){return r["a"].get("system/role/create/form")}function o(t){return r["a"].get("system/role/update/form/".concat(t))}function s(t){return r["a"].delete("system/role/delete/".concat(t))}function u(t,e){return r["a"].post("system/role/status/".concat(t),{status:e})}function c(t){return r["a"].get("system/admin/lst",t)}function l(){return r["a"].get("/system/admin/create/form")}function d(t){return r["a"].get("system/admin/update/form/".concat(t))}function f(t){return r["a"].delete("system/admin/delete/".concat(t))}function m(t,e){return r["a"].post("system/admin/status/".concat(t),{status:e})}function p(t){return r["a"].get("system/admin/password/form/".concat(t))}function g(t){return r["a"].get("system/admin/log",t)}function h(){return r["a"].get("take/info")}function v(t){return r["a"].post("take/update",t)}function b(){return r["a"].get("margin/code")}function y(t){return r["a"].get("margin/lst",t)}function w(){return r["a"].post("financial/refund/margin")}function k(){return r["a"].get("serve/info")}function _(t){return r["a"].get("serve/meal",t)}function x(t){return r["a"].get("serve/code",t)}function L(t){return r["a"].get("serve/paylst",t)}function C(t){return r["a"].get("expr/temps",t)}function z(){return r["a"].get("serve/config")}function F(t){return r["a"].post("serve/config",t)}function $(){return r["a"].get("store/printer/create/form")}function D(t){return r["a"].get("store/printer/lst",t)}function O(t,e){return r["a"].post("store/printer/status/".concat(t),e)}function j(t){return r["a"].get("store/printer/update/".concat(t,"/form"))}function S(t){return r["a"].delete("store/printer/delete/".concat(t))}}}]); \ No newline at end of file diff --git a/public/mer/js/chunk-1df22872.51627dcd.js b/public/mer/js/chunk-1df22872.51627dcd.js new file mode 100644 index 00000000..4f09fa1e --- /dev/null +++ b/public/mer/js/chunk-1df22872.51627dcd.js @@ -0,0 +1 @@ +(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-1df22872"],{"0bd9":function(t,e,a){},"7b74":function(t,e,a){"use strict";a.r(e);var i=function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("div",{staticClass:"divBox"},[a("el-card",{staticClass:"box-card"},[a("div",{staticClass:"clearfix",attrs:{slot:"header"},slot:"header"},[a("div",{staticClass:"container"},[a("el-form",{attrs:{size:"small","label-width":"84px"}},[a("el-form-item",{staticClass:"width100",attrs:{label:"模板名称:"}},[a("el-input",{staticClass:"selWidth",attrs:{placeholder:"请输入模板名称",size:"small"},nativeOn:{keyup:function(e){return!e.type.indexOf("key")&&t._k(e.keyCode,"enter",13,e.key,"Enter")?null:t.getList(e)}},model:{value:t.tableFrom.name,callback:function(e){t.$set(t.tableFrom,"name",e)},expression:"tableFrom.name"}},[a("el-button",{staticClass:"el-button-solt",attrs:{slot:"append",icon:"el-icon-search",size:"small"},on:{click:t.getList},slot:"append"})],1)],1)],1)],1),t._v(" "),a("el-button",{attrs:{size:"small",type:"primary"},on:{click:t.add}},[t._v("添加运费模板")])],1),t._v(" "),a("el-table",{directives:[{name:"loading",rawName:"v-loading",value:t.listLoading,expression:"listLoading"}],staticStyle:{width:"100%"},attrs:{data:t.tableData.data,size:"samll","highlight-current-row":""}},[a("el-table-column",{attrs:{prop:"shipping_template_id",label:"ID","min-width":"60"}}),t._v(" "),a("el-table-column",{attrs:{prop:"name",label:"模板名称","min-width":"150"}}),t._v(" "),a("el-table-column",{attrs:{label:"计费方式","min-width":"100"},scopedSlots:t._u([{key:"default",fn:function(e){var i=e.row;return[a("span",[t._v(t._s(t._f("typeFilter")(i.type)))])]}}])}),t._v(" "),a("el-table-column",{attrs:{label:"指定包邮","min-width":"100"},scopedSlots:t._u([{key:"default",fn:function(e){var i=e.row;return[a("span",[t._v(t._s(t._f("statusFilter")(i.appoint)))])]}}])}),t._v(" "),a("el-table-column",{attrs:{label:"指定区域不配送","min-width":"150"},scopedSlots:t._u([{key:"default",fn:function(e){var i=e.row;return[a("span",[t._v(t._s(t._f("statusFilter")(i.undelivery)))])]}}])}),t._v(" "),a("el-table-column",{attrs:{prop:"sort",label:"排序","min-width":"100"}}),t._v(" "),a("el-table-column",{attrs:{prop:"create_time",label:"创建时间","min-width":"150"}}),t._v(" "),a("el-table-column",{attrs:{label:"操作","min-width":"100",fixed:"right"},scopedSlots:t._u([{key:"default",fn:function(e){return[a("el-button",{attrs:{type:"text",size:"small"},on:{click:function(a){return t.onEdit(e.row.shipping_template_id)}}},[t._v("编辑")]),t._v(" "),a("el-button",{attrs:{type:"text",size:"small"},on:{click:function(a){return t.handleDelete(e.row.shipping_template_id,e.$index)}}},[t._v("删除")])]}}])})],1),t._v(" "),a("div",{staticClass:"block"},[a("el-pagination",{attrs:{"page-sizes":[20,40,60,80],"page-size":t.tableFrom.limit,"current-page":t.tableFrom.page,layout:"total, sizes, prev, pager, next, jumper",total:t.tableData.total},on:{"size-change":t.handleSizeChange,"current-change":t.pageChange}})],1)],1)],1)},l=[],n=a("8a9d"),s={name:"ShippingTemplates",filters:{statusFilter:function(t){var e={1:"自定义",2:"开启",0:"关闭"};return e[t]},typeFilter:function(t){var e={0:"按件数",1:"按重量",2:"按体积"};return e[t]}},data:function(){return{dialogVisible:!1,tableFrom:{page:1,limit:20,name:""},tableData:{data:[],total:0},listLoading:!0,componentKey:0}},mounted:function(){this.getList()},methods:{add:function(){var t=this;this.$modalTemplates(0,(function(){t.getList()}))},getList:function(){var t=this;this.listLoading=!0,Object(n["e"])(this.tableFrom).then((function(e){t.tableData.data=e.data.list,t.tableData.total=e.data.count,t.listLoading=!1})).catch((function(e){t.listLoading=!1,t.$message.error(e.message)}))},pageChange:function(t){this.tableFrom.page=t,this.getList()},handleSizeChange:function(t){this.tableFrom.limit=t,this.getList()},onEdit:function(t){var e=this;this.$modalTemplates(t,(function(){e.getList()}),this.componentKey+=1)},handleDelete:function(t,e){var a=this;this.$modalSure().then((function(){Object(n["c"])(t).then((function(t){var i=t.message;a.$message.success(i),a.tableData.data.splice(e,1)})).catch((function(t){var e=t.message;a.$message.error(e)}))}))}}},o=s,r=(a("8ad1"),a("2877")),c=Object(r["a"])(o,i,l,!1,null,"21e688d4",null);e["default"]=c.exports},"8ad1":function(t,e,a){"use strict";a("0bd9")}}]); \ No newline at end of file diff --git a/public/mer/js/chunk-2d0ab2c5.d4aff2f3.js b/public/mer/js/chunk-2d0ab2c5.d4aff2f3.js new file mode 100644 index 00000000..e78d7044 --- /dev/null +++ b/public/mer/js/chunk-2d0ab2c5.d4aff2f3.js @@ -0,0 +1 @@ +(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-2d0ab2c5"],{"13c0":function(t,e,a){"use strict";a.r(e);var n=function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("div",{staticClass:"divBox"},[a("el-card",{staticClass:"box-card"},[a("div",{staticClass:"clearfix",attrs:{slot:"header"},slot:"header"},[a("div",{staticClass:"container"},[a("el-form",{attrs:{inline:""},nativeOn:{submit:function(t){t.preventDefault()}}},[a("el-form-item",{staticClass:"mr10",attrs:{label:"服务名称:"}},[a("el-input",{staticClass:"selWidth",attrs:{placeholder:"请输入服务名称搜索",size:"small"},nativeOn:{keyup:function(e){return!e.type.indexOf("key")&&t._k(e.keyCode,"enter",13,e.key,"Enter")?null:t.getList(1)}},model:{value:t.tableFrom.keyword,callback:function(e){t.$set(t.tableFrom,"keyword",e)},expression:"tableFrom.keyword"}},[a("el-button",{staticClass:"el-button-solt",attrs:{slot:"append",icon:"el-icon-search",size:"small"},on:{click:function(e){return t.getList(1)}},slot:"append"})],1)],1)],1)],1),t._v(" "),a("el-button",{attrs:{size:"small",type:"primary"},on:{click:t.add}},[t._v("添加服务说明模板")])],1),t._v(" "),a("el-table",{directives:[{name:"loading",rawName:"v-loading",value:t.listLoading,expression:"listLoading"}],staticStyle:{width:"100%"},attrs:{data:t.tableData.data,size:"mini","row-class-name":t.tableRowClassName},on:{rowclick:function(e){return e.stopPropagation(),t.closeEdit(e)}}},[a("el-table-column",{attrs:{prop:"guarantee_template_id",label:"ID","min-width":"150"}}),t._v(" "),a("el-table-column",{attrs:{prop:"template_name",label:"服务名称","min-width":"200"}}),t._v(" "),a("el-table-column",{attrs:{prop:"guarantee_info",label:"服务条款","min-width":"200"},scopedSlots:t._u([{key:"default",fn:function(e){return t._l(e.row.template_value,(function(n,i){return e.row.template_value?a("div",{key:i},[n.value&&n.value.guarantee_name?a("span",[t._v(t._s(i+1)+". "+t._s(n.value.guarantee_name))]):t._e()]):t._e()}))}}])}),t._v(" "),a("el-table-column",{attrs:{prop:"sort",align:"center",label:"排序","min-width":"80"},scopedSlots:t._u([{key:"default",fn:function(e){return[e.row.index===t.tabClickIndex?a("span",[a("el-input",{attrs:{type:"number",maxlength:"300",size:"mini",autofocus:""},on:{blur:function(a){return t.inputBlur(e)}},model:{value:e.row["sort"],callback:function(a){t.$set(e.row,"sort",t._n(a))},expression:"scope.row['sort']"}})],1):a("span",{on:{dblclick:function(a){return a.stopPropagation(),t.tabClick(e.row)}}},[t._v(t._s(e.row["sort"]))])]}}])}),t._v(" "),a("el-table-column",{attrs:{label:"是否显示","min-width":"90"},scopedSlots:t._u([{key:"default",fn:function(e){return[a("el-switch",{attrs:{"active-value":1,"inactive-value":0,"active-text":"显示","inactive-text":"不显示"},nativeOn:{click:function(a){return t.onchangeIsShow(e.row)}},model:{value:e.row.status,callback:function(a){t.$set(e.row,"status",a)},expression:"scope.row.status"}})]}}])}),t._v(" "),a("el-table-column",{attrs:{label:"创建时间","min-width":"150",prop:"create_time"}}),t._v(" "),a("el-table-column",{attrs:{label:"操作","min-width":"80",fixed:"right"},scopedSlots:t._u([{key:"default",fn:function(e){return[a("el-button",{attrs:{type:"text",size:"small"},on:{click:function(a){return t.handleEdit(e.row.guarantee_template_id)}}},[t._v("编辑")]),t._v(" "),a("el-button",{attrs:{type:"text",size:"small"},on:{click:function(a){return t.handleDelete(e.row.guarantee_template_id,e.$index)}}},[t._v("删除")])]}}])})],1),t._v(" "),a("div",{staticClass:"block"},[a("el-pagination",{attrs:{"page-sizes":[20,40,60,80],"page-size":t.tableFrom.limit,"current-page":t.tableFrom.page,layout:"total, sizes, prev, pager, next, jumper",total:t.tableData.total},on:{"size-change":t.handleSizeChange,"current-change":t.pageChange}})],1)],1),t._v(" "),a("guarantee-service",{ref:"serviceGuarantee",on:{"get-list":t.getList}})],1)},i=[],s=(a("55dd"),a("c4c8")),l=a("ae43"),o={name:"ProductGuarantee",components:{guaranteeService:l["a"]},data:function(){return{tableData:{data:[],total:0},listLoading:!0,tableFrom:{page:1,limit:20,date:"",keyword:""},timeVal:[],props:{},tabClickIndex:""}},mounted:function(){this.getList(1)},methods:{tableRowClassName:function(t){var e=t.row,a=t.rowIndex;e.index=a},tabClick:function(t){this.tabClickIndex=t.index},inputBlur:function(t){var e=this;(!t.row.sort||t.row.sort<0)&&(t.row.sort=0),Object(s["E"])(t.row.guarantee_template_id,{sort:t.row.sort}).then((function(t){e.closeEdit()})).catch((function(t){}))},closeEdit:function(){this.tabClickIndex=null},handleCloseItems:function(t){var e=this;this.termsService.splice(this.termsService.indexOf(t),1),this.formValidate.template_value=[],this.termsService.map((function(t){e.formValidate.template_value.push(t.guarantee_id)}))},add:function(){this.$refs.serviceGuarantee.add()},onchangeIsShow:function(t){var e=this;Object(s["F"])(t.guarantee_template_id,{status:t.status}).then((function(t){var a=t.message;e.$message.success(a),e.getList("")})).catch((function(t){var a=t.message;e.$message.error(a)}))},handleEdit:function(t){this.$refs.serviceGuarantee.handleEdit(t),this.$refs.serviceGuarantee.loading=!1},getList:function(t){var e=this;this.listLoading=!0,this.tableFrom.page=t||this.tableFrom.page,Object(s["C"])(this.tableFrom).then((function(t){e.tableData.data=t.data.list,e.tableData.total=t.data.count,e.listLoading=!1})).catch((function(t){e.listLoading=!1,e.$message.error(t.message)}))},pageChange:function(t){this.tableFrom.page=t,this.getList("")},handleSizeChange:function(t){this.tableFrom.limit=t,this.getList("")},handleDelete:function(t,e){var a=this;this.$modalSure().then((function(){Object(s["z"])(t).then((function(t){var e=t.message;a.$message.success(e),a.getList("")})).catch((function(t){var e=t.message;a.$message.error(e)}))}))}}},r=o,c=a("2877"),u=Object(c["a"])(r,n,i,!1,null,"74f7d69b",null);e["default"]=u.exports}}]); \ No newline at end of file diff --git a/public/mer/js/chunk-2d0aba79.86e506e3.js b/public/mer/js/chunk-2d0aba79.86e506e3.js new file mode 100644 index 00000000..65fba0a5 --- /dev/null +++ b/public/mer/js/chunk-2d0aba79.86e506e3.js @@ -0,0 +1 @@ +(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-2d0aba79"],{"15cb":function(t,e,a){"use strict";a.r(e);var n=function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("div",{staticClass:"divBox"},[a("el-card",{staticClass:"box-card"},[a("div",{staticClass:"clearfix",attrs:{slot:"header"},slot:"header"},[a("el-button",{attrs:{size:"small",type:"primary"},on:{click:t.onAdd}},[t._v("添加用户标签")])],1),t._v(" "),a("el-table",{directives:[{name:"loading",rawName:"v-loading",value:t.listLoading,expression:"listLoading"}],staticStyle:{width:"100%"},attrs:{data:t.tableData.data,size:"small","highlight-current-row":""}},[a("el-table-column",{attrs:{label:"ID","min-width":"60"},scopedSlots:t._u([{key:"default",fn:function(e){var n=e.row;return[a("span",{domProps:{textContent:t._s(-1!==t.$route.path.indexOf("group")?n.group_id:n.label_id)}})]}}])}),t._v(" "),a("el-table-column",{attrs:{label:-1!==t.$route.path.indexOf("group")?"分组名称":"标签名称","min-width":"180"},scopedSlots:t._u([{key:"default",fn:function(e){var n=e.row;return[a("span",{domProps:{textContent:t._s(-1!==t.$route.path.indexOf("group")?n.group_name:n.label_name)}})]}}])}),t._v(" "),a("el-table-column",{attrs:{prop:"create_time",label:"创建时间","min-width":"150"}}),t._v(" "),a("el-table-column",{attrs:{label:"操作","min-width":"100",fixed:"right",align:"center"},scopedSlots:t._u([{key:"default",fn:function(e){return[a("el-button",{attrs:{type:"text",size:"small"},on:{click:function(a){t.onEdit(-1!==t.$route.path.indexOf("group")?e.row.group_id:e.row.label_id)}}},[t._v("编辑")]),t._v(" "),a("el-button",{attrs:{type:"text",size:"small"},on:{click:function(a){t.handleDelete(-1!==t.$route.path.indexOf("group")?e.row.group_id:e.row.label_id,e.$index)}}},[t._v("删除")])]}}])})],1),t._v(" "),a("div",{staticClass:"block"},[a("el-pagination",{attrs:{"page-sizes":[20,40,60,80],"page-size":t.tableFrom.limit,"current-page":t.tableFrom.page,layout:"total, sizes, prev, pager, next, jumper",total:t.tableData.total},on:{"size-change":t.handleSizeChange,"current-change":t.pageChange}})],1)],1)],1)},i=[],o=a("c24f"),l={name:"UserGroup",data:function(){return{tableFrom:{page:1,limit:20},tableData:{data:[],total:0},listLoading:!0}},mounted:function(){this.getList()},methods:{getList:function(){var t=this;this.listLoading=!0,Object(o["p"])(this.tableFrom).then((function(e){t.tableData.data=e.data.list,t.tableData.total=e.data.count,t.listLoading=!1})).catch((function(e){t.listLoading=!1,t.$message.error(e.message)}))},pageChange:function(t){this.tableFrom.page=t,this.getList()},handleSizeChange:function(t){this.tableFrom.limit=t,this.getList()},onAdd:function(){var t=this;this.$modalForm(Object(o["o"])()).then((function(){return t.getList()}))},onEdit:function(t){var e=this;this.$modalForm(Object(o["n"])(t)).then((function(){return e.getList()}))},handleDelete:function(t,e){var a=this;this.$modalSure("删除该标签").then((function(){Object(o["m"])(t).then((function(t){var n=t.message;a.$message.success(n),a.tableData.data.splice(e,1)})).catch((function(t){var e=t.message;a.$message.error(e)}))}))}}},s=l,r=a("2877"),c=Object(r["a"])(s,n,i,!1,null,"d05d8040",null);e["default"]=c.exports}}]); \ No newline at end of file diff --git a/public/mer/js/chunk-2d0aed35.1bbefe4d.js b/public/mer/js/chunk-2d0aed35.1bbefe4d.js new file mode 100644 index 00000000..adf7bead --- /dev/null +++ b/public/mer/js/chunk-2d0aed35.1bbefe4d.js @@ -0,0 +1 @@ +(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-2d0aed35"],{"0c5a":function(e,n,t){"use strict";t.r(n);var u=function(){var e=this,n=e.$createElement,t=e._self._c||n;return t("router-view")},c=[],r=t("2877"),a={},l=Object(r["a"])(a,u,c,!1,null,null,null);n["default"]=l.exports}}]); \ No newline at end of file diff --git a/public/mer/js/chunk-2d0b1e40.303ffef9.js b/public/mer/js/chunk-2d0b1e40.303ffef9.js new file mode 100644 index 00000000..ccddece7 --- /dev/null +++ b/public/mer/js/chunk-2d0b1e40.303ffef9.js @@ -0,0 +1 @@ +(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-2d0b1e40"],{"227a":function(e,t,a){"use strict";a.r(t);var n=function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("div",{staticClass:"divBox"},[a("el-card",{staticClass:"box-card"},[a("upload-from")],1)],1)},o=[],c=a("b5b8"),s={name:"Picture",components:{uploadFrom:c["default"]},data:function(){return{}},methods:{}},r=s,u=a("2877"),d=Object(u["a"])(r,n,o,!1,null,"2e674e22",null);t["default"]=d.exports}}]); \ No newline at end of file diff --git a/public/mer/js/chunk-2d0ba554.5a041a10.js b/public/mer/js/chunk-2d0ba554.5a041a10.js new file mode 100644 index 00000000..0f4a8a39 --- /dev/null +++ b/public/mer/js/chunk-2d0ba554.5a041a10.js @@ -0,0 +1 @@ +(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-2d0ba554"],{3782:function(e,n,t){"use strict";t.r(n);var u=function(){var e=this,n=e.$createElement,t=e._self._c||n;return t("router-view")},r=[],c=t("2877"),l={},a=Object(c["a"])(l,u,r,!1,null,null,null);n["default"]=a.exports}}]); \ No newline at end of file diff --git a/public/mer/js/chunk-2d0c212a.5c403140.js b/public/mer/js/chunk-2d0c212a.5c403140.js new file mode 100644 index 00000000..e8502e6e --- /dev/null +++ b/public/mer/js/chunk-2d0c212a.5c403140.js @@ -0,0 +1 @@ +(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-2d0c212a"],{"496e":function(t,e,a){"use strict";a.r(e);var n=function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("div",{staticClass:"divBox"},[a("el-card",{staticClass:"box-card"},[a("div",{staticClass:"clearfix",attrs:{slot:"header"},slot:"header"},[a("el-button",{attrs:{size:"small",type:"primary"},on:{click:t.add}},[t._v("添加商品规格")])],1),t._v(" "),a("el-table",{directives:[{name:"loading",rawName:"v-loading",value:t.listLoading,expression:"listLoading"}],staticStyle:{width:"100%"},attrs:{data:t.tableData.data,size:"small","highlight-current-row":""}},[a("el-table-column",{attrs:{prop:"attr_template_id",label:"ID","min-width":"60"}}),t._v(" "),a("el-table-column",{attrs:{prop:"template_name",label:"规格名称","min-width":"150"}}),t._v(" "),a("el-table-column",{attrs:{label:"商品规格","min-width":"150"},scopedSlots:t._u([{key:"default",fn:function(e){return t._l(e.row.template_value,(function(e,n){return a("span",{key:n,staticClass:"mr10",domProps:{textContent:t._s(e.value)}})}))}}])}),t._v(" "),a("el-table-column",{attrs:{label:"商品属性","min-width":"300"},scopedSlots:t._u([{key:"default",fn:function(e){return t._l(e.row.template_value,(function(e,n){return a("div",{key:n,domProps:{textContent:t._s(e.detail.join(","))}})}))}}])}),t._v(" "),a("el-table-column",{attrs:{label:"操作","min-width":"100",fixed:"right"},scopedSlots:t._u([{key:"default",fn:function(e){return[a("el-button",{attrs:{type:"text",size:"small"},on:{click:function(a){return t.onEdit(e.row)}}},[t._v("编辑")]),t._v(" "),a("el-button",{attrs:{type:"text",size:"small"},on:{click:function(a){return t.handleDelete(e.row.attr_template_id,e.$index)}}},[t._v("删除\n ")])]}}])})],1),t._v(" "),a("div",{staticClass:"block"},[a("el-pagination",{attrs:{"page-sizes":[20,40,60,80],"page-size":t.tableFrom.limit,"current-page":t.tableFrom.page,layout:"total, sizes, prev, pager, next, jumper",total:t.tableData.total},on:{"size-change":t.handleSizeChange,"current-change":t.pageChange}})],1)],1)],1)},i=[],l=a("c4c8"),s={name:"ProductAttr",data:function(){return{formDynamic:{template_name:"",template_value:[]},tableFrom:{page:1,limit:20},tableData:{data:[],total:0},listLoading:!0}},mounted:function(){this.getList()},methods:{add:function(){var t=this;t.formDynamic={template_name:"",template_value:[]},this.$modalAttr(Object.assign({},t.formDynamic),(function(){t.getList()}))},getList:function(){var t=this;this.listLoading=!0,Object(l["Mb"])(this.tableFrom).then((function(e){t.tableData.data=e.data.list,t.tableData.total=e.data.count,t.listLoading=!1})).catch((function(e){t.listLoading=!1,t.$message.error(e.message)}))},pageChange:function(t){this.tableFrom.page=t,this.getList()},handleSizeChange:function(t){this.tableFrom.limit=t,this.getList()},handleDelete:function(t,e){var a=this;this.$modalSure().then((function(){Object(l["k"])(t).then((function(t){var n=t.message;a.$message.success(n),a.tableData.data.splice(e,1)})).catch((function(t){var e=t.message;a.$message.error(e)}))}))},onEdit:function(t){var e=this;this.$modalAttr(JSON.parse(JSON.stringify(t)),(function(){e.getList(),this.formDynamic={template_name:"",template_value:[]}}))}}},o=s,r=a("2877"),c=Object(r["a"])(o,n,i,!1,null,null,null);e["default"]=c.exports}}]); \ No newline at end of file diff --git a/public/mer/js/chunk-2d0c481a.5f8488b2.js b/public/mer/js/chunk-2d0c481a.5f8488b2.js new file mode 100644 index 00000000..ca68d3cf --- /dev/null +++ b/public/mer/js/chunk-2d0c481a.5f8488b2.js @@ -0,0 +1 @@ +(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-2d0c481a"],{"3ab8":function(e,n,t){"use strict";t.r(n);var u=function(){var e=this,n=e.$createElement,t=e._self._c||n;return t("router-view")},c=[],r=t("2877"),a={},l=Object(r["a"])(a,u,c,!1,null,null,null);n["default"]=l.exports}}]); \ No newline at end of file diff --git a/public/mer/js/chunk-2d0c8a44.c672b1f6.js b/public/mer/js/chunk-2d0c8a44.c672b1f6.js new file mode 100644 index 00000000..3cd78dfc --- /dev/null +++ b/public/mer/js/chunk-2d0c8a44.c672b1f6.js @@ -0,0 +1 @@ +(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-2d0c8a44"],{"566c":function(t,a,e){"use strict";e.r(a);var n=function(){var t=this,a=t.$createElement,e=t._self._c||a;return e("div",{staticClass:"divBox"},[e("el-card",{staticClass:"box-card"},[t.FormData?e("form-create",{directives:[{name:"loading",rawName:"v-loading",value:t.loading,expression:"loading"}],ref:"fc",staticClass:"formBox",attrs:{option:t.option,rule:t.FormData.rule,"handle-icon":"false"},on:{submit:t.onSubmit}}):t._e()],1)],1)},o=[],s=e("c7eb"),r=(e("96cf"),e("1da1")),i=e("30ba"),c=e.n(i),u=e("b7be"),d=e("0c6d"),l=e("83d6"),f={name:"CreatCoupon",data:function(){return{option:{form:{labelWidth:"150px"},submitBtn:{loading:!1},global:{upload:{props:{onSuccess:function(t,a){200===t.status&&(a.url=t.data.src)}}}}},FormData:null,loading:!1}},components:{formCreate:c.a.$form()},mounted:function(){this.getFrom()},methods:{getFrom:function(){var t=this;this.loading=!0,Object(u["J"])().then(function(){var a=Object(r["a"])(Object(s["a"])().mark((function a(e){return Object(s["a"])().wrap((function(a){while(1)switch(a.prev=a.next){case 0:t.FormData=e.data,t.loading=!1,t.$store.dispatch("settings/setEdit",!0);case 3:case"end":return a.stop()}}),a)})));return function(t){return a.apply(this,arguments)}}()).catch((function(a){t.$message.error(a.message),t.loading=!1}))},onSubmit:function(t){var a=this;this.$refs.fc.$f.btn.loading(!0),d["a"][this.FormData.method.toLowerCase()](this.FormData.api,t).then((function(t){a.$refs.fc.$f.btn.loading(!1),a.$message.success(t.message||"提交成功"),a.$store.dispatch("settings/setEdit",!1),a.$router.push({path:"".concat(l["roterPre"],"/marketing/studio/list")})})).catch((function(t){a.$refs.fc.$f.btn.loading(!1),a.$message.error(t.message||"提交失败")}))}}},m=f,p=e("2877"),h=Object(p["a"])(m,n,o,!1,null,"c1581826",null);a["default"]=h.exports}}]); \ No newline at end of file diff --git a/public/mer/js/chunk-2d0d095b.21412df0.js b/public/mer/js/chunk-2d0d095b.21412df0.js new file mode 100644 index 00000000..d425b828 --- /dev/null +++ b/public/mer/js/chunk-2d0d095b.21412df0.js @@ -0,0 +1 @@ +(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-2d0d095b"],{6935:function(a,t,e){"use strict";e.r(t);var n=function(){var a=this,t=a.$createElement,e=a._self._c||t;return e("div",{staticClass:"divBox"},[e("el-card",{staticClass:"box-card"},[a.FormData?e("form-create",{directives:[{name:"loading",rawName:"v-loading",value:a.loading,expression:"loading"}],ref:"fc",staticClass:"formBox",attrs:{option:a.option,rule:a.FormData.rule,"handle-icon":"false"},on:{submit:a.onSubmit}}):a._e()],1)],1)},o=[],r=e("c7eb"),s=(e("96cf"),e("1da1")),i=e("30ba"),c=e.n(i),u=e("b7be"),l=e("0c6d"),d={name:"IntegralConfig",data:function(){return{option:{form:{labelWidth:"150px"},global:{upload:{props:{onSuccess:function(a,t){200===a.status&&(t.url=a.data.src)}}}}},FormData:null,loading:!1}},components:{formCreate:c.a.$form()},mounted:function(){this.getFrom()},methods:{getFrom:function(){var a=this;this.loading=!0,Object(u["R"])("integral").then(function(){var t=Object(s["a"])(Object(r["a"])().mark((function t(e){return Object(r["a"])().wrap((function(t){while(1)switch(t.prev=t.next){case 0:a.FormData=e.data,a.loading=!1;case 2:case"end":return t.stop()}}),t)})));return function(a){return t.apply(this,arguments)}}()).catch((function(t){a.$message.error(t.message),a.loading=!1}))},onSubmit:function(a){var t=this;l["a"][this.FormData.method.toLowerCase()](this.FormData.api,a).then((function(a){t.$message.success(a.message||"提交成功")})).catch((function(a){t.$message.error(a.message||"提交失败")}))}}},m=d,f=e("2877"),p=Object(f["a"])(m,n,o,!1,null,"2c447d1a",null);t["default"]=p.exports}}]); \ No newline at end of file diff --git a/public/mer/js/chunk-2d0d3300.05afc9fd.js b/public/mer/js/chunk-2d0d3300.05afc9fd.js new file mode 100644 index 00000000..d9be54a5 --- /dev/null +++ b/public/mer/js/chunk-2d0d3300.05afc9fd.js @@ -0,0 +1 @@ +(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-2d0d3300"],{"5c62":function(t,e,a){"use strict";a.r(e);var i=function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("div",{staticClass:"divBox"},[a("el-card",{staticClass:"box-card"},[a("div",{staticClass:"clearfix",attrs:{slot:"header"},slot:"header"},[a("el-button",{attrs:{size:"small",type:"primary"},on:{click:t.onAdd}},[t._v("添加专场")])],1),t._v(" "),a("el-table",{directives:[{name:"loading",rawName:"v-loading",value:t.loading,expression:"loading"}],staticStyle:{width:"100%"},attrs:{data:t.tableData.data,size:"small"}},[t._l(t.columns,(function(e,i){return a("el-table-column",{key:i,attrs:{prop:e.key,label:e.title,"min-width":e.minWidth},scopedSlots:t._u([{key:"default",fn:function(i){return[["img","image","pic"].indexOf(e.key)>-1||e.key.indexOf("pic")>-1||e.key.indexOf("img")>-1||e.key.indexOf("image")>-1||e.key.indexOf("banner")>-1?a("div",{staticClass:"demo-image__preview"},[Array.isArray(i.row[e.key])?a("div",t._l(i.row[e.key],(function(t,e){return a("span",{key:e},[a("el-image",{staticStyle:{width:"36px",height:"36px","margin-right":"5px"},attrs:{src:t}})],1)})),0):a("div",[a("el-image",{staticStyle:{width:"36px",height:"36px"},attrs:{src:i.row[e.key]}})],1)]):"type"==e.key?a("span",[t._v("\n "+t._s(1==i.row[e.key]?"小图":2==i.row[e.key]?"中图":"大图")+"\n ")]):a("span",[t._v(t._s(i.row[e.key]))])]}}],null,!0)})})),t._v(" "),a("el-table-column",{attrs:{prop:"status",label:"是否显示","min-width":"100"},scopedSlots:t._u([{key:"default",fn:function(e){return[a("el-switch",{attrs:{"active-value":1,"inactive-value":0,"active-text":"显示","inactive-text":"隐藏"},on:{change:function(a){return t.onchangeIsShow(e.row)}},model:{value:e.row.status,callback:function(a){t.$set(e.row,"status",a)},expression:"scope.row.status"}})]}}])}),t._v(" "),a("el-table-column",{attrs:{label:"操作","min-width":"100",fixed:"right"},scopedSlots:t._u([{key:"default",fn:function(e){return[a("el-button",{attrs:{type:"text",size:"small"},on:{click:function(a){return t.onEdit(e.row.group_data_id)}}},[t._v("编辑")]),t._v(" "),a("el-button",{attrs:{type:"text",size:"small"},on:{click:function(a){return t.handleDelete(e.row.group_data_id,e.$index)}}},[t._v("删除")])]}}])})],2),t._v(" "),a("div",{staticClass:"block"},[a("el-pagination",{attrs:{"page-sizes":[20,40,60,80],"page-size":t.tableData.limit,"current-page":t.tableData.page,layout:"total, sizes, prev, pager, next, jumper",total:t.tableData.total},on:{"size-change":t.handleSizeChange,"current-change":t.pageChange}})],1)],1)],1)},n=[],s=(a("7f7f"),a("ac6a"),a("8593")),o={name:"Data",data:function(){return{tableData:{page:1,limit:20,data:[],total:0},loading:!1,groupId:null,groupDetail:null}},computed:{columns:function(){if(!this.groupDetail)return[];var t=[{title:"ID",key:"group_data_id",minWidth:60}];return this.groupDetail.fields.forEach((function(e){t.push({title:e.name,key:e.field,minWidth:80})})),t.push({title:"添加时间",key:"create_time",minWidth:200}),t}},watch:{"$route.params.id":function(t){this.groupId=t},groupId:function(t){this.getGroupDetail(t)}},mounted:function(){this.groupId=this.$route.params.id},methods:{getGroupDetail:function(t){var e=this;Object(s["t"])(t).then((function(t){e.groupDetail=t.data,e.tableData.page=1,e.getList()}))},getList:function(){var t=this;this.loading=!0,Object(s["s"])(this.$route.params.id,this.tableData.page,this.tableData.limit).then((function(e){t.tableData.data=e.data.list,t.tableData.total=e.data.count,t.loading=!1})).catch((function(e){t.loading=!1,t.$message.error(e.message)}))},pageChange:function(t){this.tableData.page=t,this.getList()},handleSizeChange:function(t){this.tableData.limit=t,this.getList()},onAdd:function(){var t=this;this.$modalForm(Object(s["m"])(this.$route.params.id)).then((function(){return t.getList()}))},onEdit:function(t){var e=this;this.$modalForm(Object(s["J"])(this.$route.params.id,t)).then((function(){return e.getList()}))},onchangeIsShow:function(t){var e=this;Object(s["r"])(t.group_data_id,t.status).then((function(t){var a=t.message;e.$message.success(a)})).catch((function(t){var a=t.message;e.$message.error(a)}))},handleDelete:function(t,e){var a=this;this.$modalSure("删除该专场").then((function(){Object(s["o"])(t).then((function(t){var i=t.message;a.$message.success(i),a.tableData.data.splice(e,1)})).catch((function(t){var e=t.message;a.$message.error(e)}))}))}}},r=o,l=a("2877"),c=Object(l["a"])(r,i,n,!1,null,"174ef35a",null);e["default"]=c.exports}}]); \ No newline at end of file diff --git a/public/mer/js/chunk-2d0e276e.c29634d9.js b/public/mer/js/chunk-2d0e276e.c29634d9.js new file mode 100644 index 00000000..b744e30a --- /dev/null +++ b/public/mer/js/chunk-2d0e276e.c29634d9.js @@ -0,0 +1 @@ +(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-2d0e276e"],{"7f8a":function(a,t,e){"use strict";e.r(t);var n=function(){var a=this,t=a.$createElement,e=a._self._c||t;return e("div",{staticClass:"divBox"},[e("el-card",{staticClass:"box-card"},[a.FormData?e("form-create",{directives:[{name:"loading",rawName:"v-loading",value:a.loading,expression:"loading"}],ref:"fc",staticClass:"formBox",attrs:{option:a.option,rule:a.FormData.rule,"handle-icon":"false"},on:{submit:a.onSubmit}}):a._e()],1)],1)},o=[],s=e("c7eb"),r=(e("96cf"),e("1da1")),c=e("30ba"),i=e.n(c),u=e("2801"),l=e("0c6d"),m=(e("83d6"),{name:"payType",data:function(){return{option:{form:{labelWidth:"150px"},global:{upload:{props:{onSuccess:function(a,t){200===a.status&&(t.url=a.data.src)}}}}},FormData:null,loading:!1}},components:{formCreate:i.a.$form()},mounted:function(){this.getFrom()},methods:{getFrom:function(){var a=this;this.loading=!0,Object(u["j"])().then(function(){var t=Object(r["a"])(Object(s["a"])().mark((function t(e){return Object(s["a"])().wrap((function(t){while(1)switch(t.prev=t.next){case 0:a.FormData=e.data,a.loading=!1;case 2:case"end":return t.stop()}}),t)})));return function(a){return t.apply(this,arguments)}}()).catch((function(t){a.$message.error(t.message),a.loading=!1}))},onSubmit:function(a){var t=this;l["a"][this.FormData.method.toLowerCase()](this.FormData.api,a).then((function(a){t.$message.success(a.message||"提交成功")})).catch((function(a){t.$message.error(a.message||"提交失败")}))}}}),d=m,f=e("2877"),p=Object(f["a"])(d,n,o,!1,null,"c11bae1c",null);t["default"]=p.exports}}]); \ No newline at end of file diff --git a/public/mer/js/chunk-2d0e5b8e.4311eddb.js b/public/mer/js/chunk-2d0e5b8e.4311eddb.js new file mode 100644 index 00000000..0b6d2521 --- /dev/null +++ b/public/mer/js/chunk-2d0e5b8e.4311eddb.js @@ -0,0 +1 @@ +(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-2d0e5b8e"],{9661:function(e,n,t){"use strict";t.r(n);var u=function(){var e=this,n=e.$createElement,t=e._self._c||n;return t("router-view")},r=[],c=t("2877"),l={},o=Object(c["a"])(l,u,r,!1,null,null,null);n["default"]=o.exports}}]); \ No newline at end of file diff --git a/public/mer/js/chunk-2d0e6675.21001b74.js b/public/mer/js/chunk-2d0e6675.21001b74.js new file mode 100644 index 00000000..b7c73e22 --- /dev/null +++ b/public/mer/js/chunk-2d0e6675.21001b74.js @@ -0,0 +1 @@ +(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-2d0e6675"],{9932:function(e,n,t){"use strict";t.r(n);var u=function(){var e=this,n=e.$createElement,t=e._self._c||n;return t("router-view")},r=[],c=t("2877"),l={},o=Object(c["a"])(l,u,r,!1,null,null,null);n["default"]=o.exports}}]); \ No newline at end of file diff --git a/public/mer/js/chunk-2d207706.4b731c6b.js b/public/mer/js/chunk-2d207706.4b731c6b.js new file mode 100644 index 00000000..01a744c9 --- /dev/null +++ b/public/mer/js/chunk-2d207706.4b731c6b.js @@ -0,0 +1 @@ +(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-2d207706"],{a111:function(t,e,a){"use strict";a.r(e);var i=function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("div",{staticClass:"divBox"},[a("el-card",{staticClass:"box-card"},[a("div",{staticClass:"clearfix",attrs:{slot:"header"},slot:"header"},[a("el-button",{attrs:{size:"small",type:"primary"},on:{click:t.onAdd}},[t._v("添加数据")])],1),t._v(" "),a("el-table",{directives:[{name:"loading",rawName:"v-loading",value:t.loading,expression:"loading"}],staticStyle:{width:"100%"},attrs:{data:t.tableData.data,size:"small"}},[t._l(t.columns,(function(e,i){return a("el-table-column",{key:i,attrs:{prop:e.key,label:e.title,"min-width":e.minWidth},scopedSlots:t._u([{key:"default",fn:function(i){return[["img","image","pic"].indexOf(e.key)>-1||e.key.indexOf("pic")>-1||e.key.indexOf("img")>-1||e.key.indexOf("image")>-1||e.key.indexOf("banner")>-1?a("div",{staticClass:"demo-image__preview"},[Array.isArray(i.row[e.key])?a("div",t._l(i.row[e.key],(function(t,e){return a("span",{key:e},[a("el-image",{staticStyle:{width:"36px",height:"36px","margin-right":"5px"},attrs:{src:t}})],1)})),0):a("div",[a("el-image",{staticStyle:{width:"36px",height:"36px"},attrs:{src:i.row[e.key]}})],1)]):a("span",[t._v(t._s(i.row[e.key]))])]}}],null,!0)})})),t._v(" "),a("el-table-column",{attrs:{prop:"status",label:"是否显示","min-width":"100"},scopedSlots:t._u([{key:"default",fn:function(e){return[a("el-switch",{attrs:{"active-value":1,"inactive-value":0,"active-text":"显示","inactive-text":"隐藏"},on:{change:function(a){return t.onchangeIsShow(e.row)}},model:{value:e.row.status,callback:function(a){t.$set(e.row,"status",a)},expression:"scope.row.status"}})]}}])}),t._v(" "),a("el-table-column",{attrs:{label:"操作","min-width":"100",fixed:"right"},scopedSlots:t._u([{key:"default",fn:function(e){return[a("el-button",{attrs:{type:"text",size:"small"},on:{click:function(a){return t.onEdit(e.row.group_data_id)}}},[t._v("编辑")]),t._v(" "),a("el-button",{attrs:{type:"text",size:"small"},on:{click:function(a){return t.handleDelete(e.row.group_data_id,e.$index)}}},[t._v("删除")])]}}])})],2),t._v(" "),a("div",{staticClass:"block"},[a("el-pagination",{attrs:{"page-sizes":[20,40,60,80],"page-size":t.tableData.limit,"current-page":t.tableData.page,layout:"total, sizes, prev, pager, next, jumper",total:t.tableData.total},on:{"size-change":t.handleSizeChange,"current-change":t.pageChange}})],1)],1)],1)},n=[],s=(a("7f7f"),a("ac6a"),a("8593")),o={name:"Data",data:function(){return{tableData:{page:1,limit:20,data:[],total:0},loading:!1,groupId:null,groupDetail:null}},computed:{columns:function(){if(!this.groupDetail)return[];var t=[{title:"ID",key:"group_data_id",minWidth:60}];return this.groupDetail.fields.forEach((function(e){t.push({title:e.name,key:e.field,minWidth:80})})),t.push({title:"添加时间",key:"create_time",minWidth:200}),t}},watch:{"$route.params.id":function(t){this.groupId=t},groupId:function(t){this.getGroupDetail(t)}},mounted:function(){this.groupId=this.$route.params.id},methods:{getGroupDetail:function(t){var e=this;Object(s["t"])(t).then((function(t){e.groupDetail=t.data,e.tableData.page=1,e.getList()}))},getList:function(){var t=this;this.loading=!0,Object(s["s"])(this.$route.params.id,this.tableData.page,this.tableData.limit).then((function(e){t.tableData.data=e.data.list,t.tableData.total=e.data.count,t.loading=!1})).catch((function(e){t.loading=!1,t.$message.error(e.message)}))},pageChange:function(t){this.tableData.page=t,this.getList()},handleSizeChange:function(t){this.tableData.limit=t,this.getList()},onAdd:function(){var t=this;this.$modalForm(Object(s["m"])(this.$route.params.id)).then((function(){return t.getList()}))},onEdit:function(t){var e=this;this.$modalForm(Object(s["J"])(this.$route.params.id,t)).then((function(){return e.getList()}))},onchangeIsShow:function(t){},handleDelete:function(t,e){var a=this;this.$modalSure("删除该数据").then((function(){Object(s["o"])(t).then((function(t){var i=t.message;a.$message.success(i),a.tableData.data.splice(e,1)})).catch((function(t){var e=t.message;a.$message.error(e)}))}))}}},l=o,r=a("2877"),u=Object(r["a"])(l,i,n,!1,null,"393d859a",null);e["default"]=u.exports}}]); \ No newline at end of file diff --git a/public/mer/js/chunk-2d209391.50c64e39.js b/public/mer/js/chunk-2d209391.50c64e39.js new file mode 100644 index 00000000..9fb38a88 --- /dev/null +++ b/public/mer/js/chunk-2d209391.50c64e39.js @@ -0,0 +1 @@ +(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-2d209391"],{a7af:function(t,e,a){"use strict";a.r(e);var n=function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("div",{staticClass:"divBox"},[a("el-card",{staticClass:"box-card"},[a("div",{staticClass:"clearfix",attrs:{slot:"header"},slot:"header"},[a("el-button",{attrs:{size:"small",type:"primary"},on:{click:t.onAdd}},[t._v("添加商品标签")])],1),t._v(" "),a("el-table",{directives:[{name:"loading",rawName:"v-loading",value:t.listLoading,expression:"listLoading"}],staticStyle:{width:"100%"},attrs:{data:t.tableData.data,size:"small"}},[a("el-table-column",{attrs:{prop:"label_name",label:"标签名称","min-width":"60"}}),t._v(" "),a("el-table-column",{attrs:{prop:"info",label:"标签说明","min-width":"150"}}),t._v(" "),a("el-table-column",{attrs:{prop:"sort",label:"排序","min-width":"50"}}),t._v(" "),a("el-table-column",{attrs:{prop:"status",label:"是否显示","min-width":"100"},scopedSlots:t._u([{key:"default",fn:function(e){return[a("el-switch",{attrs:{"active-value":1,"inactive-value":0,"active-text":"显示","inactive-text":"隐藏"},on:{change:function(a){return t.onchangeIsShow(e.row)}},model:{value:e.row.status,callback:function(a){t.$set(e.row,"status",a)},expression:"scope.row.status"}})]}}])}),t._v(" "),a("el-table-column",{attrs:{prop:"create_time",label:"创建时间","min-width":"150"}}),t._v(" "),a("el-table-column",{attrs:{label:"操作","min-width":"100",fixed:"right"},scopedSlots:t._u([{key:"default",fn:function(e){return[a("el-button",{attrs:{type:"text",size:"small"},on:{click:function(a){return t.onEdit(e.row.product_label_id)}}},[t._v("编辑")]),t._v(" "),a("el-button",{attrs:{type:"text",size:"small"},on:{click:function(a){return t.handleDelete(e.row.product_label_id,e.$index)}}},[t._v("删除")])]}}])})],1),t._v(" "),a("div",{staticClass:"block"},[a("el-pagination",{attrs:{"page-sizes":[20,40,60,80],"page-size":t.tableFrom.limit,"current-page":t.tableFrom.page,layout:"total, sizes, prev, pager, next, jumper",total:t.tableData.total},on:{"size-change":t.handleSizeChange,"current-change":t.pageChange}})],1)],1)],1)},i=[],s=a("c4c8"),l={name:"LabelList",data:function(){return{tableFrom:{page:1,limit:20},tableData:{data:[],total:0},listLoading:!0}},mounted:function(){this.getList("")},methods:{add:function(){},getList:function(t){var e=this;this.listLoading=!0,this.tableFrom.page=t||this.tableFrom.page,Object(s["J"])(this.tableFrom).then((function(t){e.tableData.data=t.data.list,e.tableData.total=t.data.count,e.listLoading=!1})).catch((function(t){e.listLoading=!1,e.$message.error(t.message)}))},pageChange:function(t){this.tableFrom.page=t,this.getList("")},handleSizeChange:function(t){this.tableFrom.limit=t,this.getList("")},onAdd:function(){var t=this;this.$modalForm(Object(s["H"])()).then((function(){return t.getList("")}))},onEdit:function(t){var e=this;this.$modalForm(Object(s["L"])(t)).then((function(){return e.getList("")}))},handleDelete:function(t,e){var a=this;this.$modalSure("删除该标签").then((function(){Object(s["I"])(t).then((function(t){var e=t.message;a.$message.success(e),a.getList("")})).catch((function(t){var e=t.message;a.$message.error(e)}))}))},onchangeIsShow:function(t){var e=this;Object(s["K"])(t.product_label_id,t.status).then((function(t){var a=t.message;e.$message.success(a),e.getList("")})).catch((function(t){var a=t.message;e.$message.error(a)}))}}},o=l,r=a("2877"),c=Object(r["a"])(o,n,i,!1,null,null,null);e["default"]=c.exports}}]); \ No newline at end of file diff --git a/public/mer/js/chunk-2d213182.2ca9be60.js b/public/mer/js/chunk-2d213182.2ca9be60.js new file mode 100644 index 00000000..f9cfd18d --- /dev/null +++ b/public/mer/js/chunk-2d213182.2ca9be60.js @@ -0,0 +1 @@ +(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-2d213182"],{aae1:function(e,n,t){"use strict";t.r(n);var u=function(){var e=this,n=e.$createElement,t=e._self._c||n;return t("router-view")},r=[],a=t("2877"),c={},l=Object(a["a"])(c,u,r,!1,null,null,null);n["default"]=l.exports}}]); \ No newline at end of file diff --git a/public/mer/js/chunk-2d213ed3.2b57b666.js b/public/mer/js/chunk-2d213ed3.2b57b666.js new file mode 100644 index 00000000..965e6414 --- /dev/null +++ b/public/mer/js/chunk-2d213ed3.2b57b666.js @@ -0,0 +1 @@ +(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-2d213ed3"],{af80:function(e,n,t){"use strict";t.r(n);var u=function(){var e=this,n=e.$createElement,t=e._self._c||n;return t("router-view")},r=[],c=t("2877"),l={},a=Object(c["a"])(l,u,r,!1,null,null,null);n["default"]=a.exports}}]); \ No newline at end of file diff --git a/public/mer/js/chunk-2d21d8a3.f94570a6.js b/public/mer/js/chunk-2d21d8a3.f94570a6.js new file mode 100644 index 00000000..5745b7e3 --- /dev/null +++ b/public/mer/js/chunk-2d21d8a3.f94570a6.js @@ -0,0 +1 @@ +(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-2d21d8a3"],{d276:function(t,a,e){"use strict";e.r(a);var i=function(){var t=this,a=t.$createElement,e=t._self._c||a;return e("div",{staticClass:"divBox"},[e("el-card",{staticClass:"box-card"},[e("div",{staticClass:"clearfix",attrs:{slot:"header"},slot:"header"},[e("el-button",{attrs:{size:"small",type:"primary"},on:{click:t.onAdd}},[t._v("添加组合数据")])],1),t._v(" "),e("el-table",{directives:[{name:"loading",rawName:"v-loading",value:t.loading,expression:"loading"}],staticStyle:{width:"100%"},attrs:{data:t.tableData.data,size:"small"}},[e("el-table-column",{attrs:{prop:"group_id",label:"ID","min-width":"60"}}),t._v(" "),e("el-table-column",{attrs:{prop:"group_name",label:"数据组名称","min-width":"130"}}),t._v(" "),e("el-table-column",{attrs:{prop:"group_key",label:"数据组key","min-width":"130"}}),t._v(" "),e("el-table-column",{attrs:{prop:"group_info",label:"数据组说明","min-width":"130"}}),t._v(" "),e("el-table-column",{attrs:{prop:"create_time",label:"创建时间","min-width":"150"}}),t._v(" "),e("el-table-column",{attrs:{label:"操作","min-width":"100",fixed:"right"},scopedSlots:t._u([{key:"default",fn:function(a){return[e("el-button",{attrs:{type:"text",size:"small"},on:{click:function(e){return t.goList(a.row.group_id,a.$index)}}},[t._v("数据列表")]),t._v(" "),e("el-button",{attrs:{type:"text",size:"small"},on:{click:function(e){return t.onEdit(a.row.group_id)}}},[t._v("编辑")])]}}])})],1),t._v(" "),e("div",{staticClass:"block"},[e("el-pagination",{attrs:{"page-sizes":[20,40,60,80],"page-size":t.tableData.limit,"current-page":t.tableData.page,layout:"total, sizes, prev, pager, next, jumper",total:t.tableData.total},on:{"size-change":t.handleSizeChange,"current-change":t.pageChange}})],1)],1)],1)},n=[],l=e("8593"),o={name:"List",data:function(){return{tableData:{page:1,limit:20,data:[],total:0},loading:!1}},mounted:function(){this.getList()},methods:{getList:function(){var t=this;this.loading=!0,Object(l["u"])(this.tableData.page,this.tableData.limit).then((function(a){t.tableData.data=a.data.list,t.tableData.total=a.data.count,t.loading=!1})).catch((function(a){t.loading=!1,t.$message.error(a.message)}))},pageChange:function(t){this.tableData.page=t,this.getList()},handleSizeChange:function(t){this.tableData.limit=t,this.getList()},onAdd:function(){var t=this;this.$modalForm(Object(l["n"])()).then((function(){return t.getLst()}))},onEdit:function(t){var a=this;this.$modalForm(Object(l["K"])(t)).then((function(){return a.getLst()}))},goList:function(t){this.$router.push("/group/data/".concat(t))}}},s=o,r=e("2877"),c=Object(r["a"])(s,i,n,!1,null,"57d51cbc",null);a["default"]=c.exports}}]); \ No newline at end of file diff --git a/public/mer/js/chunk-2d229240.228bfdae.js b/public/mer/js/chunk-2d229240.228bfdae.js new file mode 100644 index 00000000..3ec30a4f --- /dev/null +++ b/public/mer/js/chunk-2d229240.228bfdae.js @@ -0,0 +1 @@ +(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-2d229240"],{dbd0:function(t,e,a){"use strict";a.r(e);var o=function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("div",{staticClass:"divBox"},[a("el-card",{staticClass:"box-card"},[t.FormData?a("form-create",{directives:[{name:"loading",rawName:"v-loading",value:t.loading,expression:"loading"}],ref:"fc",staticClass:"formBox",attrs:{option:t.option,rule:t.FormData.rule,"handle-icon":"false",cmovies:t.movies},on:{submit:t.onSubmit}}):t._e()],1)],1)},n=[],s=a("c7eb"),r=(a("96cf"),a("1da1")),i=a("30ba"),c=a.n(i),u=a("b7be"),l=a("0c6d"),m=a("83d6"),d={name:"CreatCoupon",data:function(){return{option:{form:{labelWidth:"150px"},global:{upload:{props:{onSuccess:function(t,e){200===t.status&&(e.url=t.data.src)}}}}},FormData:null,loading:!1,movies:1}},components:{formCreate:c.a.$form()},mounted:function(){this.getFrom()},methods:{getFrom:function(){var t=this;this.loading=!0,sessionStorage.setItem("singleChoice",1),Object(u["K"])().then(function(){var e=Object(r["a"])(Object(s["a"])().mark((function e(a){return Object(s["a"])().wrap((function(e){while(1)switch(e.prev=e.next){case 0:t.FormData=a.data,t.loading=!1;case 2:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}()).catch((function(e){t.$message.error(e.message),t.loading=!1}))},onSubmit:function(t){var e=this;l["a"][this.FormData.method.toLowerCase()](this.FormData.api,t).then((function(t){e.$message.success(t.message||"提交成功"),e.$router.push({path:"".concat(m["roterPre"],"/marketing/broadcast/list")})})).catch((function(t){e.$message.error(t.message||"提交失败")}))}}},f=d,p=a("2877"),h=Object(p["a"])(f,o,n,!1,null,null,null);e["default"]=h.exports}}]); \ No newline at end of file diff --git a/public/mer/js/chunk-2d230c26.bf8dc9a7.js b/public/mer/js/chunk-2d230c26.bf8dc9a7.js new file mode 100644 index 00000000..134c12bd --- /dev/null +++ b/public/mer/js/chunk-2d230c26.bf8dc9a7.js @@ -0,0 +1 @@ +(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-2d230c26"],{ee3c:function(t,e,a){"use strict";a.r(e);var n=function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("div",{staticClass:"divBox"},[a("el-card",{staticClass:"box-card"},[t.FormData?a("form-create",{directives:[{name:"loading",rawName:"v-loading",value:t.loading,expression:"loading"}],ref:"fc",staticClass:"formBox",attrs:{option:t.option,rule:t.FormData.rule,"handle-icon":"false"},on:{submit:t.onSubmit}}):t._e()],1)],1)},o=[],r=a("c7eb"),s=(a("96cf"),a("1da1")),c=a("30ba"),i=a.n(c),u=a("b7be"),l=a("0c6d"),m=a("83d6"),d={name:"CreatCoupon",data:function(){return{option:{form:{labelWidth:"150px"},global:{upload:{props:{onSuccess:function(t,e){200===t.status&&(e.url=t.data.src)}}}}},FormData:null,loading:!1}},components:{formCreate:i.a.$form()},mounted:function(){this.getFrom(),sessionStorage.setItem("singleChoice",0)},methods:{getFrom:function(){var t=this;this.loading=!0,this.$route.params.id?Object(u["y"])(this.$route.params.id).then(function(){var e=Object(s["a"])(Object(r["a"])().mark((function e(a){return Object(r["a"])().wrap((function(e){while(1)switch(e.prev=e.next){case 0:t.FormData=a.data,t.loading=!1;case 2:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}()).catch((function(e){t.$message.error(e.message),t.loading=!1})):Object(u["C"])().then(function(){var e=Object(s["a"])(Object(r["a"])().mark((function e(a){return Object(r["a"])().wrap((function(e){while(1)switch(e.prev=e.next){case 0:t.FormData=a.data,t.loading=!1;case 2:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}()).catch((function(e){t.$message.error(e.message),t.loading=!1}))},onSubmit:function(t){var e=this;l["a"][this.FormData.method.toLowerCase()](this.FormData.api,t).then((function(t){e.$message.success(t.message||"提交成功"),e.$router.push({path:"".concat(m["roterPre"],"/marketing/coupon/list")})})).catch((function(t){e.$message.error(t.message||"提交失败")}))}}},p=d,f=a("2877"),h=Object(f["a"])(p,n,o,!1,null,"66ea4727",null);e["default"]=h.exports}}]); \ No newline at end of file diff --git a/public/mer/js/chunk-2dfb1ff5.91680270.js b/public/mer/js/chunk-2dfb1ff5.91680270.js new file mode 100644 index 00000000..2cb8d926 --- /dev/null +++ b/public/mer/js/chunk-2dfb1ff5.91680270.js @@ -0,0 +1 @@ +(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-2dfb1ff5"],{"138a":function(e,a,t){},"3ae5":function(e,a,t){"use strict";t.r(a);var r=function(){var e=this,a=e.$createElement,r=e._self._c||a;return r("div",{staticClass:"information"},[e.tabList.length>0?r("el-tabs",{model:{value:e.infoType,callback:function(a){e.infoType=a},expression:"infoType"}},e._l(e.tabList,(function(e,a){return r("el-tab-pane",{key:a,attrs:{name:e.value,label:e.title}})})),1):e._e(),e._v(" "),e.merModel?r("div",{staticClass:"business-msg",staticStyle:{"min-height":"600px"}},["1"==e.infoType?r("div",{staticClass:"user-msg"},[r("div",{staticClass:"basic-information"},[r("span",{staticClass:"basic-label"},[e._v("商户名称:")]),e._v("\n "+e._s(e.merData.mer_name)+"\n ")]),e._v(" "),r("div",{staticClass:"basic-information"},[r("span",{staticClass:"basic-label"},[e._v("商户负责人手机号:")]),e._v("\n "+e._s(e.merData.mer_phone)+"\n ")]),e._v(" "),e.merData.merchantCategory.category_name?r("div",{staticClass:"basic-information"},[r("span",{staticClass:"basic-label"},[e._v("商户分类:")]),e._v("\n "+e._s(e.merData.merchantCategory.category_name||"")+"\n ")]):e._e(),e._v(" "),e.merData.merchantCategory.category_name?r("div",{staticClass:"basic-information"},[r("span",{staticClass:"basic-label"},[e._v(" 商户类别:")]),e._v("\n "+e._s(e.merData.is_trader?"自营":"非自营")+"\n ")]):e._e(),e._v(" "),r("div",{staticClass:"basic-information"},[r("span",{staticClass:"basic-label"},[e._v(" 商户负责人姓名:")]),e._v("\n "+e._s(e.merData.real_name)+"\n ")]),e._v(" "),r("div",{staticClass:"basic-information"},[r("span",{staticClass:"basic-label"},[e._v(" 商户入驻时间:")]),e._v("\n "+e._s(e.merData.create_time)+"\n ")]),e._v(" "),e.merData.sub_mchid?r("div",{staticClass:"basic-information"},[r("span",{staticClass:"basic-label"},[e._v(" 商户入驻时间:")]),e._v("\n "+e._s(e.merData.create_time)+"\n ")]):e._e(),e._v(" "),e.merData.sub_mchid&&e.merData.merchantType?r("div",{staticClass:"basic-information"},[r("span",{staticClass:"basic-label"},[e._v(" 店铺类型:")]),e._v("\n "+e._s(e.merData.merchantType.type_name)+"\n ")]):e._e(),e._v(" "),r("div",{staticClass:"basic-information"},[r("div",[r("span",{staticClass:"basic-label"},[e._v("是否开启商户:")]),e._v(" "),1==e.merData.is_margin&&0==e.merData.mer_state?r("el-tooltip",{staticClass:"item",attrs:{effect:"dark",content:"请先支付店铺保证金!",placement:"top-start"}},[r("el-switch",{attrs:{disabled:"","active-text":"开启","inactive-text":"关闭","active-value":1,"inactive-value":0},model:{value:e.merData.mer_state,callback:function(a){e.$set(e.merData,"mer_state",a)},expression:"merData.mer_state"}})],1):r("el-switch",{attrs:{"active-text":"开启","inactive-text":"关闭","active-value":1,"inactive-value":0},model:{value:e.merData.mer_state,callback:function(a){e.$set(e.merData,"mer_state",a)},expression:"merData.mer_state"}}),e._v(" "),r("span",{staticClass:"trip"},[e._v("开启,店铺即可展示在移动端")])],1)]),e._v(" "),r("div",{staticClass:"basic-information"},[0!=e.merData.is_margin?r("div",[1==e.merData.is_margin?r("div",[r("span",{staticClass:"basic-label"},[e._v("店铺保证金:")]),e._v(" "),r("span",{staticClass:"font_red"},[e._v(e._s(e.merData.margin)+"元")]),e._v(" "),r("div",{staticClass:"margin_count",on:{mouseenter:function(a){return e.getCode()}}},[r("el-button",{staticClass:"mr10 pay_btn",attrs:{type:"text",size:"small"}},[e._v("去支付保证金")]),e._v(" "),r("div",{staticClass:"erweima"},[r("div",{staticClass:"pay_title"},[e._v("支付保证金")]),e._v(" "),r("div",[r("vue-qr",{staticClass:"bicode",attrs:{text:e.qrCode,size:310}}),e._v(" "),r("div",{staticClass:"pay_type"},[e._v("请使用微信扫码支付")]),e._v(" "),r("div",{staticClass:"pay_price"},[e._v("¥"+e._s(e.merData.margin)+"元")]),e._v(" "),r("div",{staticClass:"pay_time"},[e._v("支付码过期时间: "+e._s(e.qrEndTime))])],1)])],1)]):e._e(),e._v(" "),1!=e.merData.is_margin?r("div",{staticClass:"margin_main"},[r("span",{staticClass:"basic-label"},[e._v("店铺保证金:")]),e._v(" "),r("span",{staticClass:"margin_price"},[e._v(e._s(e.merData.margin)+"元")]),e._v(" "),r("div",{staticClass:"margin_count"},[r("el-button",{staticClass:"mr10",attrs:{type:"text",size:"small"},on:{click:e.viewRecords}},[e._v("查看保证金记录")])],1),e._v(" "),r("div",{staticClass:"margin_modal"},[r("div",[-10==e.merData.is_margin?r("img",{attrs:{src:t("e4ef")}}):e._e(),e._v(" "),-1==e.merData.is_margin?r("img",{attrs:{src:t("7a01")}}):e._e(),e._v(" "),10==e.merData.is_margin?r("img",{attrs:{src:t("4751")}}):e._e(),e._v(" "),10==e.merData.is_margin?r("div",{staticClass:"alic"},[r("span",{staticClass:"text_g"},[e._v("已支付保证金¥"+e._s(e.merData.margin)+"元")]),e._v(" "),r("el-button",{attrs:{type:"primary",size:"small"},on:{click:e.applyReturn}},[e._v("申请退回保证金")])],1):e._e(),e._v(" "),-1==e.merData.is_margin?r("div",{staticClass:"alic"},[r("span",{staticClass:"text_b b01"},[e._v(" 审核中")]),e._v(" "),r("div",{staticClass:"margin_refused"},[e._v("您申请退回保证金,正在审核中…")])]):e._e(),e._v(" "),-10==e.merData.is_margin?r("div",{staticClass:"alic"},[r("span",{staticClass:"text_b b02"},[e._v("审核未通过")]),e._v(" "),r("div",{staticClass:"margin_refused"},[e._v("未通过原因:"),r("span",[e._v(e._s(e.merData.refundMarginOrder.refusal))])]),e._v(" "),r("el-button",{attrs:{type:"primary",size:"small"},on:{click:e.applyReturn}},[e._v("再次申请")])],1):e._e()])])]):e._e()]):e._e()])]):e._e(),e._v(" "),"2"==e.infoType?r("div",{staticClass:"business-msg"},[r("div",{staticClass:"form-data"},[r("el-form",{ref:"ruleForm",staticClass:"demo-ruleForm",attrs:{model:e.merData,rules:e.rules,"label-width":"150px"}},[r("el-form-item",{staticClass:"form-item",attrs:{label:"店铺背景图:",prop:"mer_banner"}},[r("div",{staticClass:"upLoadPicBox",on:{click:function(a){return e.modalPicTap("1")}}},[e.merData.mer_banner?r("div",{staticClass:"pictrue"},[r("img",{attrs:{src:e.merData.mer_banner}})]):r("div",{staticClass:"upLoad"},[r("i",{staticClass:"el-icon-camera cameraIconfont"})]),e._v(" "),r("div",{staticClass:"trip"},[e._v("建议尺寸:710*200px")])])]),e._v(" "),r("el-form-item",{staticClass:"form-item",attrs:{label:"店铺头像:",prop:"mer_avatar"}},[r("div",{staticClass:"upLoadPicBox",on:{click:function(a){return e.modalPicTap("2")}}},[e.merData.mer_avatar?r("div",{staticClass:"pictrue"},[r("img",{attrs:{src:e.merData.mer_avatar}})]):r("div",{staticClass:"upLoad"},[r("i",{staticClass:"el-icon-camera cameraIconfont"})]),e._v(" "),r("div",{staticClass:"trip"},[e._v("建议尺寸:120*120px")])])]),e._v(" "),r("el-form-item",{staticClass:"form-item",attrs:{label:"店铺街背景图:"}},[r("div",{staticClass:"upLoadPicBox",on:{click:function(a){return e.modalPicTap("3")}}},[e.merData.mini_banner?r("div",{staticClass:"pictrue"},[r("img",{attrs:{src:e.merData.mini_banner}})]):r("div",{staticClass:"upLoad"},[r("i",{staticClass:"el-icon-camera cameraIconfont"})]),e._v(" "),r("div",{staticClass:"trip"},[e._v("建议尺寸:710*134px或710*460px(请根据平台要求选择尺寸,此图如未上传默认展示店铺背景图)")])])]),e._v(" "),r("el-form-item",{staticClass:"form-item",attrs:{label:"店铺资质:",prop:1==e.merData.sys_bases_status?"uploadedqualifications":""}},[r("div",{staticClass:"upLoadPicBox_qualification"},[e._l(e.uploadedQualifications,(function(a,t){return r("div",{key:t,staticClass:"uploadpicBox_list"},[r("div",{staticClass:"uploadpicBox_list_image"},[r("el-image",{ref:"elImage",refInFor:!0,attrs:{src:a.url,"preview-src-list":[a.url]}})],1),e._v(" "),r("div",{staticClass:"uploadpicBox_list_method"},[r("i",{staticClass:"el-icon-delete",on:{click:function(a){return e.deldetQualificationsList(t)}}}),e._v(" "),r("i",{staticClass:"el-icon-view",on:{click:function(r){return e.viewImage(a,t)}}})])])})),e._v(" "),r("el-upload",{attrs:{action:e.fileUrl,"show-file-list":!1,"list-type":"picture-card",multiple:"",headers:e.myHeaders,"on-success":e.setQualificationsList,"before-upload":e.beforeUploadQualification}},[r("i",{staticClass:"el-icon-plus"})])],2)]),e._v(" "),r("el-form-item",{attrs:{label:"配送方式:",prop:"delivery_way"}},[r("el-checkbox-group",{model:{value:e.merData.delivery_way,callback:function(a){e.$set(e.merData,"delivery_way",a)},expression:"merData.delivery_way"}},e._l(e.deliveryList,(function(a){return r("el-checkbox",{key:a.value,attrs:{label:a.value}},[e._v("\n "+e._s(a.name)+"\n ")])})),1),e._v(" "),r("span",{staticClass:"trip"},[e._v("只选择一种配送方式时,会自动修改店铺所有商品的配送方式")])],1),e._v(" "),1==e.merData.delivery_way.length&&"1"==e.merData.delivery_way[0]||2==e.merData.delivery_way.length?r("el-row",{attrs:{gutter:24}},[r("el-col",{attrs:{span:24}},[r("el-form-item",{attrs:{label:"提货点名称:",prop:"mer_take_name"}},[r("el-input",{attrs:{maxlength:"30",placeholder:"请输入提货点名称"},model:{value:e.merData.mer_take_name,callback:function(a){e.$set(e.merData,"mer_take_name",a)},expression:"merData.mer_take_name"}})],1)],1),e._v(" "),r("el-col",{attrs:{span:24}},[r("el-form-item",{attrs:{label:"提货点电话:",prop:"mer_take_phone"}},[r("el-input",{attrs:{placeholder:"请输入提货点电话"},model:{value:e.merData.mer_take_phone,callback:function(a){e.$set(e.merData,"mer_take_phone",a)},expression:"merData.mer_take_phone"}})],1)],1)],1):e._e(),e._v(" "),1==e.merData.delivery_way.length&&"1"==e.merData.delivery_way[0]||2==e.merData.delivery_way.length?r("el-row",[r("el-col",{attrs:{span:24}},[r("el-form-item",{attrs:{label:"详细地址:",prop:"mer_take_address"}},[r("el-input",{attrs:{placeholder:"请输入详细地址"},model:{value:e.merData.mer_take_address,callback:function(a){e.$set(e.merData,"mer_take_address",a)},expression:"merData.mer_take_address"}})],1)],1),e._v(" "),r("el-col",{attrs:{span:24}},[r("el-form-item",{attrs:{label:"经纬度:",prop:"mer_take_location"}},[r("el-input",{attrs:{"enter-button":"查找位置",placeholder:"请查找位置",readonly:""},model:{value:e.merData.mer_take_location,callback:function(a){e.$set(e.merData,"mer_take_location",a)},expression:"merData.mer_take_location"}},[r("el-button",{attrs:{slot:"append",type:"primary"},on:{click:e.onSearchs},slot:"append"},[e._v("查找位置")])],1),e._v(" "),r("div",{attrs:{slot:"content"},slot:"content"},[e._v("请点击查找位置选择位置")])],1)],1)],1):e._e(),e._v(" "),1==e.merData.delivery_way.length&&"1"==e.merData.delivery_way[0]||2==e.merData.delivery_way.length?r("el-row",[r("el-col",{attrs:{span:24}},[r("el-form-item",{attrs:{label:"提货点营业日期:",prop:"mer_take_day"}},[r("el-select",{attrs:{filterable:"",multiple:"",placeholder:"请选择营业时间"},model:{value:e.merData.mer_take_day,callback:function(a){e.$set(e.merData,"mer_take_day",a)},expression:"merData.mer_take_day"}},e._l(e.date,(function(e){return r("el-option",{key:e.date_id,attrs:{label:e.date_name,value:e.date_id}})})),1)],1)],1),e._v(" "),r("el-col",{attrs:{span:24}},[r("el-form-item",{attrs:{label:"提货点营业时间:",required:""}},[r("el-time-picker",{attrs:{placeholder:"开始时间","value-format":"HH:mm"},on:{change:e.onchangeTime1},model:{value:e.value1,callback:function(a){e.value1=a},expression:"value1"}}),e._v(" "),r("el-time-picker",{attrs:{placeholder:"结束时间","value-format":"HH:mm"},on:{change:e.onchangeTime2},model:{value:e.value2,callback:function(a){e.value2=a},expression:"value2"}})],1)],1)],1):e._e(),e._v(" "),r("el-row",[r("el-col",{attrs:{span:24}},[r("el-form-item",{attrs:{label:"商户简介:",prop:"mer_info"}},[r("el-input",{attrs:{type:"textarea",placeholder:"文字简介,200字以内"},model:{value:e.merData.mer_info,callback:function(a){e.$set(e.merData,"mer_info",a)},expression:"merData.mer_info"}})],1)],1),e._v(" "),r("el-col",{attrs:{span:24}},[r("el-form-item",{attrs:{label:"商户关键字:",prop:"mer_keyword"}},[r("div",{staticClass:"tip-form"},[r("el-input",{staticStyle:{"min-width":"200px"},attrs:{placeholder:"用户在搜索该关键字时,可搜索到本店铺"},model:{value:e.merData.mer_keyword,callback:function(a){e.$set(e.merData,"mer_keyword",a)},expression:"merData.mer_keyword"}})],1)]),e._v(" "),r("el-form-item",{attrs:{label:"客服电话:"}},[r("el-input",{attrs:{type:"number"},model:{value:e.merData.service_phone,callback:function(a){e.$set(e.merData,"service_phone",a)},expression:"merData.service_phone"}})],1)],1)],1),e._v(" "),r("el-row",[r("el-col",{attrs:{span:24}},[r("el-form-item",{attrs:{label:"商户地址:",prop:"mer_address"}},[r("el-input",{attrs:{"enter-button":"查找位置",placeholder:"请输入商户地址(地址中请包含城市名称,否则会影响搜索精度)"},model:{value:e.merData.mer_address,callback:function(a){e.$set(e.merData,"mer_address",a)},expression:"merData.mer_address"}},[r("el-button",{attrs:{slot:"append",type:"primary"},on:{click:e.onSearch},slot:"append"},[e._v("查找位置")])],1)],1)],1)],1),e._v(" "),r("div",{staticStyle:{width:"460px","margin-left":"150px"}},[e.mapKey?r("Maps",{ref:"mapChild",staticClass:"map-sty",attrs:{"map-key":e.mapKey,lat:Number(e.merData.lat||34.34127),lon:Number(e.merData.long||108.93984),address:e.merData.mer_address},on:{getCoordinates:e.getCoordinates}}):e._e()],1),e._v(" "),r("el-form-item")],1)],1)]):e._e(),e._v(" "),"3"==e.infoType?r("div",{staticClass:"user-msg"},[r("div",{staticClass:"basic-information"},[r("span",{staticClass:"basic-label"},[e._v(" 商户手续费:")]),e._v("\n "+e._s(Number(e.merData.commission_rate)>0?parseFloat(e.merData.commission_rate).toFixed(2):parseFloat(100*e.merData.merchantCategory.commission_rate).toFixed(2))+"%\n ")]),e._v(" "),r("div",{staticClass:"basic-information"},[r("span",{staticClass:"basic-label"},[e._v(" 添加商品:")]),e._v("\n "+e._s(e.merData.is_audit?"需平台审核":"平台免审核")+"\n ")]),e._v(" "),r("div",{staticClass:"basic-information"},[r("span",{staticClass:"basic-label"},[e._v(" 开启直播间:")]),e._v("\n "+e._s(e.merData.is_bro_room?"需平台审核":"平台免审核")+"\n ")]),e._v(" "),r("div",{staticClass:"basic-information"},[r("span",{staticClass:"basic-label"},[e._v(" 添加直播商品:")]),e._v("\n "+e._s(e.merData.is_bro_goods?"需平台审核":"平台免审核")+"\n ")]),e._v(" "),r("div",{staticClass:"basic-information"},[r("span",{staticClass:"basic-label"},[e._v(" 平台首页推荐商户:")]),e._v("\n "+e._s(e.merData.is_best?"是":"否")+"\n ")])]):e._e(),e._v(" "),3!=e.infoType?r("div",{staticClass:"submit-button"},[r("el-button",{attrs:{type:"primary",loading:e.submitLoading},on:{click:function(a){return e.submitForm("ruleForm")}}},[e._v("提交")])],1):e._e()]):e._e(),e._v(" "),e.modalMap?r("el-dialog",{staticClass:"mapBox",attrs:{visible:e.modalMap,title:"选择位置","close-on-click-modal":"","custom-class":"dialog-scustom"},on:{"update:visible":function(a){e.modalMap=a}},model:{value:e.modalMap,callback:function(a){e.modalMap=a},expression:"modalMap"}},[r("iframe",{attrs:{id:"mapPage",width:"100%",height:"500px",frameborder:"0",src:e.keyUrl}})]):e._e(),e._v(" "),e.modalRecord?r("el-dialog",{staticClass:"mapBox",attrs:{visible:e.modalRecord,title:"扣费记录",width:"700px","close-on-click-modal":"","custom-class":"dialog-scustom"},on:{"update:visible":function(a){e.modalRecord=a}}},[r("el-table",{attrs:{data:e.tableData.data,loading:e.loading}},[r("el-table-column",{attrs:{label:"序号","min-width":"60"},scopedSlots:e._u([{key:"default",fn:function(a){return[r("span",[e._v(e._s(a.$index+(e.tableFrom.page-1)*e.tableFrom.limit+1))])]}}],null,!1,2611860760)}),e._v(" "),r("el-table-column",{attrs:{label:"扣费原因","min-width":"200"},scopedSlots:e._u([{key:"default",fn:function(a){return[r("span",[e._v(e._s(a.row.title))])]}}],null,!1,1808518502)}),e._v(" "),r("el-table-column",{attrs:{prop:"number",label:"扣费金额","min-width":"100"}}),e._v(" "),r("el-table-column",{attrs:{prop:"create_time",label:"操作时间","min-width":"200"}})],1),e._v(" "),r("div",{staticClass:"acea-row row-right page"},[r("el-pagination",{attrs:{"page-sizes":[20,40,60,80],"page-size":e.tableFrom.limit,"current-page":e.tableFrom.page,layout:"total, sizes, prev, pager, next, jumper",total:e.tableData.total},on:{"size-change":e.handleSizeChange,"current-change":e.pageChange}})],1)],1):e._e()],1)},i=[],s=t("c7eb"),n=(t("96cf"),t("1da1")),o=(t("28a5"),t("456d"),t("ac6a"),t("90e7")),l=t("c24f"),c=function(){var e=this,a=e.$createElement;e._self._c;return e._m(0)},m=[function(){var e=this,a=e.$createElement,t=e._self._c||a;return t("div",[t("div",{staticStyle:{width:"100%",height:"450px"},attrs:{id:"container"}})])}];t("c5f6");function d(e){return new Promise((function(a,t){window.init=function(){a(window.qq)};var r=document.createElement("script");r.type="text/javascript",r.src="https://map.qq.com/api/js?v=2.exp&callback=init&key=".concat(e),r.onerror=t,document.head.appendChild(r)}))}var u={props:{lat:{type:Number,default:34.34127},lon:{type:Number,default:108.93984},mapKey:{tyep:String},address:{tyep:String}},data:function(){return{geocoder:void 0,marker:null,resultDatail:{}}},created:function(){this.initMap()},methods:{initMap:function(){var e=this;d(this.mapKey).then((function(a){var t,r=new a.maps.LatLng(e.lat,e.lon);t=new a.maps.Map(document.getElementById("container"),{zoom:15}),e.geocoder=new a.maps.Geocoder({complete:function(r){t.setCenter(r.detail.location),e.marker=new a.maps.Marker({map:t,position:r.detail.location}),e.resultDatail=r.detail,e.$emit("getCoordinates",r.detail)},error:function(a){e.$message.error("请重新输入地址,地址中请包括省市区信息")}}),console.log(e.address),e.geocoder.getAddress(r),a.maps.event.addListener(t,"click",(function(t){e.marker.setMap(null),e.marker.position={lat:t.latLng.getLat(),lng:t.latLng.getLng()};var r=new a.maps.LatLng(t.latLng.getLat(),t.latLng.getLng());e.geocoder.getAddress(r)}))}))},searchKeyword:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"西安";this.marker.setMap(null),this.geocoder.getLocation(e)}}},_=u,p=t("2877"),v=Object(p["a"])(_,c,m,!1,null,"5cf0b76b",null),f=v.exports,g=t("5f87"),b=t("bbcc"),h=t("83d6"),y=t("658f"),k=t.n(y),D={name:"Information",components:{Maps:f,VueQr:k.a},data:function(){var e=function(e,a,t){if(!a)return t(new Error("请填写手机号"));/^1[3456789]\d{9}$/.test(a)?t():t(new Error("手机号格式不正确!"))};return{merModel:!1,modalMap:!1,modalRecord:!1,loading:!1,roterPre:h["roterPre"],qrCode:"",qrEndTime:"",tableFrom:{page:1,limit:20},tableData:{total:0,data:[]},value1:"",value2:"",merData:{delivery_way:[],mer_take_name:"",mer_take_phone:"",mer_take_address:"",mer_take_time:["",""],mer_take_day:[],mer_take_location:"",id:0,mer_take_status:0},myHeaders:{"X-Token":Object(g["a"])()},uploadedQualifications:[],mapKey:"",address:"",key:"",date:[{date_name:"周一",date_id:1},{date_name:"周二",date_id:2},{date_name:"周三",date_id:3},{date_name:"周四",date_id:4},{date_name:"周五",date_id:5},{date_name:"周六",date_id:6},{date_name:"周日",date_id:7}],submitLoading:!1,deliveryList:[{value:"1",name:"到店自提"},{value:"2",name:"快递配送"}],rules:{mer_banner:[{required:!0,message:"请上传店铺banner"}],mer_avatar:[{required:!0,message:"请上传店铺头像"}],mer_info:[{required:!0,message:"请输入商户简介",trigger:"blur"},{min:3,max:200,message:"长度在 3 到 200 个字符",trigger:"blur"}],mer_keyword:[{required:!1,message:"请输入商户关键字",trigger:"blur"}],mer_address:[{required:!0,message:"请输入商户地址",trigger:"blur"}],uploadedqualifications:[{required:!0,message:"请上传商户资质",trigger:"blur"}],delivery_way:[{required:!0,message:"请选择送货方式",trigger:"change"}],mer_take_name:[{required:!0,message:"请输入提货点名称",trigger:"blur"}],mer_take_day:[{required:!0,type:"array",message:"请选择提货点营业日期",trigger:"change"}],mer_take_time:[{required:!0,message:"请选择提货点营业时间",trigger:"change"}],mer_take_phone:[{required:!0,validator:e,trigger:"blur"}],mer_take_address:[{required:!0,message:"请输入详细地址",trigger:"blur"}],mer_take_location:[{required:!0,message:"请选择经纬度",trigger:"blur"}]},keyUrl:"",infoType:"1",tabList:[{value:"1",title:"基本信息"},{value:"2",title:"店铺信息"},{value:"3",title:"功能信息"}]}},computed:{fileUrl:function(){return b["a"].https+"/upload/certificate"}},watch:{uploadedQualifications:function(e){e.length?this.merData.uploadedqualifications=1:this.merData.uploadedqualifications=""}},created:function(){this.getMapInfo()},mounted:function(){window.addEventListener("message",(function(e){var a=e.data;a&&"locationPicker"===a.module&&window.parent.selectAdderss(a)}),!1),window.selectAdderss=this.selectAdderss,this.getInfo()},methods:{onchangeTime1:function(e){this.value1=e,this.merData.mer_take_time[0]=e},onchangeTime2:function(e){this.value2=e,this.merData.mer_take_time[1]=e},selectAdderss:function(e){this.merData.mer_take_location=e.latlng.lat+","+e.latlng.lng,this.modalMap=!1},onSearchs:function(){this.key&&""!=this.key?this.modalMap=!0:this.$message.error("平台未配置腾讯地图KEY")},getCoordinates:function(e){this.merData.lat=e.location.lat||34.34127,this.merData.long=e.location.lng||108.93984},getInfo:function(){var e=this,a=this;a.merModel=!1,Object(l["i"])().then((function(t){a.merData=t.data,a.$set(a.merData,"uploadedqualifications",""),a.$set(a.merData,"delivery_way",t.data.delivery_way&&t.data.delivery_way.length?t.data.delivery_way.map(String):[]),a.key=t.data.tx_map_key;var r=t.data.tx_map_key;a.keyUrl="https://apis.map.qq.com/tools/locpicker?type=1&key=".concat(r,"&referer=myapp");var i=t.data||null;a.value1=i.mer_take_time[0]||"",a.value2=i.mer_take_time[1]||"",a.merData.mer_take_time=i.mer_take_time||["",""],a.merData.mer_take_day=i.mer_take_day||[],a.merData.mer_take_phone=i.mer_take_phone,a.merData.mer_take_name=i.mer_take_name,a.merData.mer_take_address=i.mer_take_address,a.merData.is_margin=i.is_margin,a.merData.margin=i.margin,a.merData.mer_take_location=i.mer_take_location&&i.mer_take_location.length?i.mer_take_location[0]+","+i.mer_take_location[1]:"",a.merData.mer_take_status=i.mer_take_status||0,a.merData.refundMarginOrder=i.refundMarginOrder,e.merModel=!0,t.data.mer_certificate instanceof Array?t.data.mer_certificate.forEach((function(e){a.uploadedQualifications.push({url:e})})):a.uploadedQualifications=[],1==a.merData.is_margin&&e.getCode()}))},submitForm:function(e){var a=this;if(2==this.infoType)this.$refs[e].validate((function(e){if(!e)return a.$message.error("请完善信息后再进行提交"),a.submitLoading=!1,!1;var t=Object.keys(a.rules),r={};[].concat(t,["mer_state","long","lat","mini_banner","service_phone"]).map((function(e){r[e]=a.merData[e]})),r.type=a.infoType,r.mer_certificate=a.uploadedQualifications.map((function(e){return e.response?e.response.data.src:e.url}));var i=a.merData.mer_take_location?[a.merData.mer_take_location.split(",")[0],a.merData.mer_take_location.split(",")[1]]:[];r.mer_take_location=i,a.submitLoading=!0,Object(l["u"])(r).then((function(e){console.log(e),a.submitLoading=!1,a.$message.success("提交成功")})).catch((function(e){a.submitLoading=!1,a.$message.error(e.data.message)}))}));else{var t={mer_state:this.merData.mer_state,type:this.infoType};Object(l["u"])(t).then((function(e){console.log(e),a.submitLoading=!1,a.$message.success("提交成功")})).catch((function(e){a.submitLoading=!1,a.$message.error(e.data.message)}))}},getCode:function(){var e=this;Object(o["j"])().then((function(a){e.qrCode=a.data.config,e.qrEndTime=a.data.endtime})).catch((function(e){that.$message.error(e.message)}))},viewRecords:function(){this.modalRecord=!0,this.getRecordList()},getRecordList:function(){var e=this;e.loading=!0,Object(o["k"])(e.tableFrom).then(function(){var a=Object(n["a"])(Object(s["a"])().mark((function a(t){return Object(s["a"])().wrap((function(a){while(1)switch(a.prev=a.next){case 0:e.tableData.data=t.data.list,e.tableData.total=t.data.count,e.loading=!1;case 3:case"end":return a.stop()}}),a)})));return function(e){return a.apply(this,arguments)}}()).catch((function(a){e.loading=!1,e.$message.error(a.message)}))},pageChange:function(e){this.tableFrom.page=e,this.getList()},handleSizeChange:function(e){this.tableFrom.limit=e,this.getList()},applyReturn:function(){var e=this;e.$confirm("申请退回保证金则视为关闭店铺,请谨慎操作!您是否确定继续操作?","提示",{confirmButtonText:"确定",cancelButtonText:"取消",type:"warning"}).then((function(){Object(o["l"])().then((function(a){console.log(a),e.$message.success(a.message),e.getInfo()})).catch((function(a){e.$message.error(a.message)}))}))},onSearch:function(){console.log(this.$refs),this.$refs.mapChild.searchKeyword(this.merData.mer_address)},getMapInfo:function(){var e=this,a=this;Object(o["A"])().then((function(a){console.log(a),e.mapKey=a.data.tx_map_key})).catch((function(e){a.$message.error(e.message)}))},modalPicTap:function(e,a,t){var r=this;this.$modalUpload((function(t){"1"!==e||a||(r.merData.mer_banner=t[0]),"2"!==e||a||(r.merData.mer_avatar=t[0]),"3"!==e||a||(r.merData.mini_banner=t[0])}),e)},deldetQualificationsList:function(e){this.uploadedQualifications.splice(e,1)},beforeUploadQualification:function(){return!(this.uploadedQualifications.length>=5)||(this.$message.error("上传文件最大数量为5张, 上传失败!"),!1)},setQualificationsList:function(e){200===e.status?this.uploadedQualifications.push({url:e.data.src}):this.$message.error(e.message)},viewImage:function(e,a){this.$refs.elImage[a].clickHandler()}}},C=D,w=(t("e827"),Object(p["a"])(C,r,i,!1,null,"2fbc562a",null));a["default"]=w.exports},4751:function(e,a,t){e.exports=t.p+"mer/img/margin03.d9148792.png"},"7a01":function(e,a,t){e.exports=t.p+"mer/img/margin02.3431ab5b.png"},"90e7":function(e,a,t){"use strict";t.d(a,"m",(function(){return i})),t.d(a,"u",(function(){return s})),t.d(a,"x",(function(){return n})),t.d(a,"v",(function(){return o})),t.d(a,"w",(function(){return l})),t.d(a,"c",(function(){return c})),t.d(a,"a",(function(){return m})),t.d(a,"g",(function(){return d})),t.d(a,"b",(function(){return u})),t.d(a,"f",(function(){return _})),t.d(a,"e",(function(){return p})),t.d(a,"d",(function(){return v})),t.d(a,"A",(function(){return f})),t.d(a,"B",(function(){return g})),t.d(a,"j",(function(){return b})),t.d(a,"k",(function(){return h})),t.d(a,"l",(function(){return y})),t.d(a,"y",(function(){return k})),t.d(a,"z",(function(){return D})),t.d(a,"n",(function(){return C})),t.d(a,"o",(function(){return w})),t.d(a,"i",(function(){return x})),t.d(a,"h",(function(){return L})),t.d(a,"C",(function(){return $})),t.d(a,"p",(function(){return q})),t.d(a,"r",(function(){return T})),t.d(a,"s",(function(){return M})),t.d(a,"t",(function(){return j})),t.d(a,"q",(function(){return F}));var r=t("0c6d");function i(e){return r["a"].get("system/role/lst",e)}function s(){return r["a"].get("system/role/create/form")}function n(e){return r["a"].get("system/role/update/form/".concat(e))}function o(e){return r["a"].delete("system/role/delete/".concat(e))}function l(e,a){return r["a"].post("system/role/status/".concat(e),{status:a})}function c(e){return r["a"].get("system/admin/lst",e)}function m(){return r["a"].get("/system/admin/create/form")}function d(e){return r["a"].get("system/admin/update/form/".concat(e))}function u(e){return r["a"].delete("system/admin/delete/".concat(e))}function _(e,a){return r["a"].post("system/admin/status/".concat(e),{status:a})}function p(e){return r["a"].get("system/admin/password/form/".concat(e))}function v(e){return r["a"].get("system/admin/log",e)}function f(){return r["a"].get("take/info")}function g(e){return r["a"].post("take/update",e)}function b(){return r["a"].get("margin/code")}function h(e){return r["a"].get("margin/lst",e)}function y(){return r["a"].post("financial/refund/margin")}function k(){return r["a"].get("serve/info")}function D(e){return r["a"].get("serve/meal",e)}function C(e){return r["a"].get("serve/code",e)}function w(e){return r["a"].get("serve/paylst",e)}function x(e){return r["a"].get("expr/temps",e)}function L(){return r["a"].get("serve/config")}function $(e){return r["a"].post("serve/config",e)}function q(){return r["a"].get("store/printer/create/form")}function T(e){return r["a"].get("store/printer/lst",e)}function M(e,a){return r["a"].post("store/printer/status/".concat(e),a)}function j(e){return r["a"].get("store/printer/update/".concat(e,"/form"))}function F(e){return r["a"].delete("store/printer/delete/".concat(e))}},e4ef:function(e,a,t){e.exports=t.p+"mer/img/margin01.1defbb63.png"},e827:function(e,a,t){"use strict";t("138a")}}]); \ No newline at end of file diff --git a/public/mer/js/chunk-2f105f7b.de54abc7.js b/public/mer/js/chunk-2f105f7b.de54abc7.js new file mode 100644 index 00000000..585ecc4a --- /dev/null +++ b/public/mer/js/chunk-2f105f7b.de54abc7.js @@ -0,0 +1 @@ +(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-2f105f7b"],{bff0:function(t,e,a){"use strict";a.r(e);var i=function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("div",{staticClass:"divBox"},[a("el-card",{staticClass:"box-card"},[a("div",{staticClass:"clearfix",attrs:{slot:"header"},slot:"header"},[a("el-form",{attrs:{inline:"",size:"small"}},[a("el-form-item",[a("el-input",{staticClass:"selWidth",attrs:{placeholder:"请输入用户名称"},nativeOn:{keyup:function(e){return!e.type.indexOf("key")&&t._k(e.keyCode,"enter",13,e.key,"Enter")?null:t.getList(1)}},model:{value:t.tableFrom.nickname,callback:function(e){t.$set(t.tableFrom,"nickname",e)},expression:"tableFrom.nickname"}},[a("el-button",{staticClass:"el-button-solt",attrs:{slot:"append",icon:"el-icon-search"},on:{click:function(e){return t.getList(1)}},slot:"append"})],1)],1),t._v(" "),a("el-form-item",[a("span",{staticStyle:{"font-size":"12px",color:"#C0C4CC"}},[t._v("注:将用户添加为客服时,请确保用户先关注本店铺")])])],1)],1),t._v(" "),a("el-table",{directives:[{name:"loading",rawName:"v-loading",value:t.loading,expression:"loading"}],staticStyle:{width:"100%"},attrs:{data:t.tableData.data,size:"small"}},[a("el-table-column",{attrs:{label:"","min-width":"65"},scopedSlots:t._u([{key:"default",fn:function(e){return[a("el-radio",{attrs:{label:e.row.uid},nativeOn:{change:function(a){return t.getTemplateRow(e.$index,e.row)}},model:{value:t.templateRadio,callback:function(e){t.templateRadio=e},expression:"templateRadio"}},[t._v(" ")])]}}])}),t._v(" "),a("el-table-column",{attrs:{prop:"uid",label:"ID","min-width":"60"}}),t._v(" "),a("el-table-column",{attrs:{prop:"nickname",label:"微信用户名称","min-width":"130"}}),t._v(" "),a("el-table-column",{attrs:{label:"客服头像","min-width":"80"},scopedSlots:t._u([{key:"default",fn:function(e){return[a("div",{staticClass:"demo-image__preview"},[a("el-image",{staticClass:"tabImage",attrs:{src:e.row.avatar?e.row.avatar:t.moren,"preview-src-list":[e.row.avatar||t.moren]}})],1)]}}])}),t._v(" "),a("el-table-column",{attrs:{label:"用户类型","min-width":"130"},scopedSlots:t._u([{key:"default",fn:function(e){return[a("span",[t._v(t._s(t._f("statusFilter")(e.row.user_type)))])]}}])})],1),t._v(" "),a("div",{staticClass:"block"},[a("el-pagination",{attrs:{"page-sizes":[20,40,60,80],"page-size":t.tableFrom.limit,"current-page":t.tableFrom.page,layout:"total, sizes, prev, pager, next, jumper",total:t.tableData.total},on:{"size-change":t.handleSizeChange,"current-change":t.pageChange}})],1)],1)],1)},l=[],n=a("8593"),s={name:"UserList",filters:{saxFilter:function(t){var e={0:"未知",1:"男",2:"女"};return e[t]},statusFilter:function(t){var e={wechat:"微信用户",routine:"小程序用户",h5:"H5用户",app:"APP用户",pc:"PC用户"};return e[t]}},data:function(){return{moren:a("cdfe"),templateRadio:0,loading:!1,tableData:{data:[],total:0},tableFrom:{page:1,limit:20,nickname:""}}},mounted:function(){this.getList(1)},methods:{getTemplateRow:function(t,e){form_create_helper.set(this.$route.query.field,{src:e.avatar||this.moren,id:e.uid}),form_create_helper.close(this.$route.query.field)},getList:function(t){var e=this;this.loading=!0,this.tableFrom.page=t||this.tableFrom.page,Object(n["L"])(this.tableFrom).then((function(t){e.tableData.data=t.data.list,e.tableData.total=t.data.count,e.loading=!1})).catch((function(t){e.$message.error(t.message),e.loading=!1}))},pageChange:function(t){this.tableFrom.page=t,this.getList("")},handleSizeChange:function(t){this.tableFrom.limit=t,this.getList("")}}},r=s,o=a("2877"),c=Object(o["a"])(r,i,l,!1,null,"41147e5e",null);e["default"]=c.exports},cdfe:function(t,e,a){t.exports=a.p+"mer/img/f.5aa43cd3.png"}}]); \ No newline at end of file diff --git a/public/mer/js/chunk-32c5a54a.e9ffa7d8.js b/public/mer/js/chunk-32c5a54a.e9ffa7d8.js new file mode 100644 index 00000000..2fd2cc5f --- /dev/null +++ b/public/mer/js/chunk-32c5a54a.e9ffa7d8.js @@ -0,0 +1 @@ +(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-32c5a54a"],{4393:function(e,t,s){"use strict";s("80c1")},"80c1":function(e,t,s){},f58d:function(e,t,s){"use strict";s.r(t);var a=function(){var e=this,t=e.$createElement,s=e._self._c||t;return s("div",{staticClass:"divBox"},[s("el-card",{staticClass:"box-card"},[s("div",{staticClass:"clearfix",attrs:{slot:"header"},slot:"header"},[s("div",{staticClass:"container"},[s("el-form",{attrs:{size:"small","label-width":"120px",inline:!0}},[s("el-form-item",{staticClass:"mr10",attrs:{label:"使用状态:"}},[s("el-select",{staticClass:"selWidth",attrs:{placeholder:"请选择状态"},on:{change:e.getIssueList},model:{value:e.tableFromIssue.status,callback:function(t){e.$set(e.tableFromIssue,"status",t)},expression:"tableFromIssue.status"}},[s("el-option",{attrs:{label:"全部",value:""}}),e._v(" "),s("el-option",{attrs:{label:"已使用",value:"1"}}),e._v(" "),s("el-option",{attrs:{label:"未使用",value:"0"}}),e._v(" "),s("el-option",{attrs:{label:"已过期",value:"2"}})],1)],1),e._v(" "),s("el-form-item",{staticClass:"mr10",attrs:{label:"领取人:"}},[s("el-input",{staticClass:"selWidth",attrs:{placeholder:"请输入领取人"},nativeOn:{keyup:function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"enter",13,t.key,"Enter")?null:e.getIssueList(t)}},model:{value:e.tableFromIssue.username,callback:function(t){e.$set(e.tableFromIssue,"username",t)},expression:"tableFromIssue.username"}},[s("el-button",{staticClass:"el-button-solt",attrs:{slot:"append",icon:"el-icon-search"},on:{click:e.getIssueList},slot:"append"})],1)],1),e._v(" "),s("el-form-item",{staticClass:"mr10",attrs:{label:"优惠劵:"}},[s("el-input",{staticClass:"selWidth",attrs:{placeholder:"请输入优惠劵ID"},nativeOn:{keyup:function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"enter",13,t.key,"Enter")?null:e.getIssueList(t)}},model:{value:e.tableFromIssue.coupon_id,callback:function(t){e.$set(e.tableFromIssue,"coupon_id",t)},expression:"tableFromIssue.coupon_id"}},[s("el-button",{staticClass:"el-button-solt",attrs:{slot:"append",icon:"el-icon-search"},on:{click:e.getIssueList},slot:"append"})],1)],1),e._v(" "),s("el-form-item",{staticClass:"mr10",attrs:{label:"获取方式"}},[s("el-select",{staticClass:"selWidth",attrs:{placeholder:"请选择状态"},on:{change:e.getIssueList},model:{value:e.tableFromIssue.type,callback:function(t){e.$set(e.tableFromIssue,"type",t)},expression:"tableFromIssue.type"}},[s("el-option",{attrs:{label:"全部",value:""}}),e._v(" "),s("el-option",{attrs:{label:"自己领取",value:"receive"}}),e._v(" "),s("el-option",{attrs:{label:"后台发送",value:"send"}}),e._v(" "),s("el-option",{attrs:{label:"新人",value:"new"}}),e._v(" "),s("el-option",{attrs:{label:"买赠送",value:"buy"}})],1)],1)],1)],1)]),e._v(" "),s("el-table",{directives:[{name:"loading",rawName:"v-loading",value:e.Loading,expression:"Loading"}],staticStyle:{width:"100%"},attrs:{data:e.issueData.data,size:"mini"}},[s("el-table-column",{attrs:{prop:"coupon_id",label:"ID","min-width":"80"}}),e._v(" "),s("el-table-column",{attrs:{prop:"coupon_title",label:"优惠券名称","min-width":"150"}}),e._v(" "),s("el-table-column",{attrs:{label:"领取人","min-width":"200"},scopedSlots:e._u([{key:"default",fn:function(t){return[t.row.user?s("span",[e._v(e._s(e._f("filterEmpty")(t.row.user.nickname)))]):s("span",[e._v("未知")])]}}])}),e._v(" "),s("el-table-column",{attrs:{prop:"coupon_price",label:"面值","min-width":"100"}}),e._v(" "),s("el-table-column",{attrs:{prop:"use_min_price",label:"最低消费额","min-width":"120"}}),e._v(" "),s("el-table-column",{attrs:{prop:"start_time",label:"开始使用时间","min-width":"150"}}),e._v(" "),s("el-table-column",{attrs:{prop:"end_time",label:"结束使用时间","min-width":"150"}}),e._v(" "),s("el-table-column",{attrs:{label:"获取方式","min-width":"150"},scopedSlots:e._u([{key:"default",fn:function(t){return[s("span",[e._v(e._s(e._f("failFilter")(t.row.type)))])]}}])}),e._v(" "),s("el-table-column",{attrs:{label:"状态","min-width":"100"},scopedSlots:e._u([{key:"default",fn:function(t){return[s("span",[e._v(e._s(e._f("statusFilter")(t.row.status)))])]}}])})],1),e._v(" "),s("div",{staticClass:"block"},[s("el-pagination",{attrs:{"page-sizes":[10,20,30,40],"page-size":e.tableFromIssue.limit,"current-page":e.tableFromIssue.page,layout:"total, sizes, prev, pager, next, jumper",total:e.issueData.total},on:{"size-change":e.handleSizeChangeIssue,"current-change":e.pageChangeIssue}})],1)],1)],1)},l=[],n=s("b7be"),i=s("83d6"),o={name:"CouponUser",filters:{failFilter:function(e){var t={receive:"自己领取",send:"后台发送",give:"满赠",new:"新人",buy:"买赠送"};return t[e]},statusFilter:function(e){var t={0:"未使用",1:"已使用",2:"已过期"};return t[e]}},data:function(){return{Loading:!1,roterPre:i["roterPre"],tableFromIssue:{page:1,limit:10,coupon_id:"",status:"",username:"",type:""},issueData:{data:[],total:0}}},mounted:function(){this.getIssueList()},methods:{getIssueList:function(){var e=this;this.Loading=!0,Object(n["U"])(this.tableFromIssue).then((function(t){e.issueData.data=t.data.list,e.issueData.total=t.data.count,e.Loading=!1})).catch((function(t){e.Loading=!1,e.$message.error(t.message)}))},pageChangeIssue:function(e){this.tableFromIssue.page=e,this.getIssueList()},handleSizeChangeIssue:function(e){this.tableFromIssue.limit=e,this.getIssueList()}}},r=o,u=(s("4393"),s("2877")),c=Object(u["a"])(r,a,l,!1,null,"350942fa",null);t["default"]=c.exports}}]); \ No newline at end of file diff --git a/public/mer/js/chunk-344a4872.9c147eac.js b/public/mer/js/chunk-344a4872.9c147eac.js new file mode 100644 index 00000000..36ac3ec8 --- /dev/null +++ b/public/mer/js/chunk-344a4872.9c147eac.js @@ -0,0 +1 @@ +(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-344a4872"],{5621:function(t,e,n){"use strict";n("5a90")},"5a90":function(t,e,n){},a7a4:function(t,e,n){"use strict";n.d(e,"a",(function(){return r})),n.d(e,"k",(function(){return a})),n.d(e,"b",(function(){return o})),n.d(e,"e",(function(){return c})),n.d(e,"d",(function(){return s})),n.d(e,"f",(function(){return u})),n.d(e,"g",(function(){return l})),n.d(e,"j",(function(){return d})),n.d(e,"h",(function(){return f})),n.d(e,"c",(function(){return m})),n.d(e,"i",(function(){return g})),n.d(e,"l",(function(){return p})),n.d(e,"o",(function(){return v})),n.d(e,"m",(function(){return h})),n.d(e,"n",(function(){return y})),n.d(e,"p",(function(){return w}));var i=n("0c6d");function r(t){return i["a"].get("config/".concat(t))}function a(){return i["a"].get("delivery/station/business")}function o(t){return i["a"].post("delivery/station/create",t)}function c(t){return i["a"].get("delivery/station/lst",t)}function s(t){return i["a"].get("delivery/station/detail/".concat(t))}function u(t){return i["a"].get("delivery/station/mark/".concat(t,"/form"))}function l(t,e){return i["a"].post("delivery/station/status/".concat(t),e)}function d(){return i["a"].get("config")}function f(t,e){return i["a"].post("delivery/station/update/".concat(t),e)}function m(t){return i["a"].delete("delivery/station/delete/".concat(t))}function g(){return i["a"].get("delivery/station/getCity")}function p(t){return i["a"].post("service/reply/create",t)}function v(t,e){return i["a"].get("service/reply/list",{page:t,limit:e})}function h(t){return i["a"].delete("service/reply/delete/".concat(t))}function y(t,e){return i["a"].post("service/reply/update/".concat(t),e)}function w(t,e){return i["a"].post("service/reply/status/".concat(t),{status:e})}},f478:function(t,e,n){"use strict";n.d(e,"f",(function(){return r})),n.d(e,"e",(function(){return a})),n.d(e,"d",(function(){return o})),n.d(e,"c",(function(){return c})),n.d(e,"b",(function(){return s})),n.d(e,"l",(function(){return u})),n.d(e,"k",(function(){return l})),n.d(e,"h",(function(){return d})),n.d(e,"g",(function(){return f})),n.d(e,"i",(function(){return m})),n.d(e,"j",(function(){return g})),n.d(e,"a",(function(){return p}));var i=n("0c6d");function r(t){return i["a"].get("diy/product/lst",t)}function a(t,e){return i["a"].post("diy/create/".concat(t),e)}function o(t){return i["a"].get("diy/lst",t)}function c(t){return i["a"].get("diy/detail/".concat(t))}function s(t,e){return i["a"].delete("diy/delete/".concat(t),e)}function u(t){return i["a"].post("diy/status/".concat(t))}function l(t){return i["a"].get("diy/recovery/".concat(t))}function d(t){return i["a"].get("diy/link/lst",t)}function f(t){return i["a"].get("diy/get_routine_code/".concat(t))}function m(){return i["a"].get("diy/categroy/options")}function g(t,e){return i["a"].get("diy/link/getLinks/".concat(t),e)}function p(t){return i["a"].get("diy/copy/".concat(t))}},f672:function(t,e,n){"use strict";n.r(e);var i=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"divBox"},[n("el-row",{staticClass:"ivu-mt box-wrapper"},[n("el-col",{staticClass:"right-wrapper",attrs:{span:24}},[0==t.cardShow?n("el-card",[0==t.cardShow?n("el-row",[t.isDiy?n("el-col",{staticStyle:{width:"310px",height:"550px","margin-right":"30px",position:"relative"}},[n("iframe",{ref:"iframe",staticClass:"iframe-box",attrs:{src:t.imgUrl,frameborder:"0"}}),t._v(" "),n("div",{staticClass:"mask"})]):t._e(),t._v(" "),n("el-col",{class:t.isDiy?"table":"",attrs:{span:24}},[n("div",{staticClass:"acea-row row-between-wrapper"},[n("el-row",{attrs:{type:"flex"}},[n("el-col",t._b({},"el-col",t.grid,!1),[n("div",{staticClass:"button acea-row row-middle"},[n("el-button",{staticStyle:{"font-size":"12px"},attrs:{type:"primary"},on:{click:t.add}},[n("i",{staticClass:"el-icon-plus",staticStyle:{"margin-right":"4px"}}),t._v("添加")])],1)])],1)],1),t._v(" "),n("el-table",{directives:[{name:"loading",rawName:"v-loading",value:t.loading,expression:"loading"}],ref:"table",staticClass:"tables",attrs:{data:t.list,size:"mini",border:""}},[n("el-table-column",{attrs:{prop:"id",label:"页面ID","min-width":"80"}}),t._v(" "),n("el-table-column",{attrs:{prop:"name",label:"模板名称","min-width":"100"}}),t._v(" "),n("el-table-column",{attrs:{prop:"add_time",label:"添加时间","min-width":"100"}}),t._v(" "),n("el-table-column",{attrs:{prop:"update_time",label:"更新时间","min-width":"100"}}),t._v(" "),n("el-table-column",{attrs:{label:"操作","min-width":"150"},scopedSlots:t._u([{key:"default",fn:function(e){return[(e.row.status||e.row.is_diy)&&0==e.row.is_default?n("el-button",{attrs:{type:"text",size:"small"},on:{click:function(n){return t.edit(e.row)}}},[t._v("编辑")]):t._e(),t._v(" "),1!=e.row.id&&e.row.is_diy&&0==e.row.is_default?n("el-button",{attrs:{type:"text",size:"small"},on:{click:function(n){return t.del(e.row.id,e.$index)}}},[t._v("删除")]):t._e(),t._v(" "),1!=e.row.status?n("el-button",{attrs:{type:"text",size:"small"},on:{click:function(n){return t.setStatus(e.row,e.$index)}}},[t._v("设为首页")]):t._e(),t._v(" "),e.row.is_diy?t._e():n("div",{staticStyle:{display:"inline-block"}},[n("el-button",{attrs:{type:"text",size:"small"},on:{click:function(n){return t.recovery(e.row,e.$index)}}},[t._v("恢复初始设置")]),t._v(" "),n("el-button",{attrs:{type:"text",size:"small"},on:{click:function(n){return t.del(e.row,e.$index)}}},[t._v("删除")])],1),t._v(" "),e.row.status||e.row.is_diy?n("el-button",{attrs:{type:"text",size:"small"},on:{click:function(n){return t.onDiyCopy(e.row)}}},[t._v("复制")]):t._e()]}}],null,!1,1878188763)})],1),t._v(" "),n("div",{staticClass:"block"},[n("el-pagination",{attrs:{"page-sizes":[20,40,60,80],"page-size":t.diyFrom.limit,"current-page":t.diyFrom.page,layout:"total, sizes, prev, pager, next, jumper",total:t.total},on:{"size-change":t.handleSizeChange,"current-change":t.pageChange}})],1)],1)],1):t._e()],1):t._e()],1)],1),t._v(" "),n("el-dialog",{attrs:{visible:t.modal,title:"预览"},on:{"update:visible":function(e){t.modal=e}}},[n("div",[n("div",{directives:[{name:"viewer",rawName:"v-viewer"}],staticClass:"acea-row row-around code"},[n("div",{staticClass:"acea-row row-column-around row-between-wrapper"},[n("div",{ref:"qrCodeUrl",staticClass:"QRpic"}),t._v(" "),n("span",{staticClass:"mt10"},[t._v("公众号二维码")])]),t._v(" "),n("div",{staticClass:"acea-row row-column-around row-between-wrapper"},[n("div",{staticClass:"QRpic"},[n("img",{directives:[{name:"lazy",rawName:"v-lazy",value:t.qrcodeImg,expression:"qrcodeImg"}]})]),t._v(" "),n("span",{staticClass:"mt10"},[t._v("小程序二维码")])])])])])],1)},r=[],a=n("c7eb"),o=(n("96cf"),n("1da1")),c=n("5530"),s=n("bbcc"),u=n("83d6"),l=(n("b311"),n("f478")),d=n("a7a4"),f=n("2f62"),m=n("d044"),g=n.n(m),p={name:"devise_list",computed:Object(c["a"])({},Object(f["d"])("layout",["menuCollapse"])),components:{},data:function(){return{grid:{sm:10,md:12,lg:19},loading:!1,theme3:"light",roterPre:u["roterPre"],list:[],imgUrl:"",modal:!1,BaseURL:s["a"].httpUrl||"http://localhost:8080",cardShow:0,loadingExist:!1,isDiy:1,qrcodeImg:"",diyFrom:{page:1,limit:20},total:0,mer_id:""}},created:function(){this.getMerId(),this.getList()},mounted:function(){},methods:{getChildData:function(t){this.loadingExist=t},getMerId:function(){var t=this,e=window.localStorage;this.imgUrl=e.getItem("imgUrl"),Object(d["j"])().then((function(n){t.mer_id=n.data.mer_id;var i=1e3*(new Date).getTime(),r="".concat(t.BaseURL,"/pages/store/home/index?id=").concat(t.mer_id,"&inner_frame=1&time=").concat(i);e.setItem("imgUrl",r),t.imgUrl=r})).catch((function(e){t.$message.error(e.message)}))},onCopy:function(){this.$message.success("复制预览链接成功")},onError:function(){this.$mssage.error("复制预览链接失败")},creatQrCode:function(t,e){this.$refs.qrCodeUrl.innerHTML="";var n="";if(e)n="".concat(this.BaseURL,"/pages/index/index?inner_frame=1");else{var i=1e3*(new Date).getTime();n="".concat(this.BaseURL,"/pages/index/index?inner_frame=1&time=").concat(i)}new g.a(this.$refs.qrCodeUrl,{text:n,width:160,height:160,colorDark:"#000000",colorLight:"#ffffff",correctLevel:g.a.CorrectLevel.H})},routineCode:function(t){var e=this;Object(l["g"])(t).then((function(t){e.qrcodeImg=t.data.image})).catch((function(t){e.$message.error(t)}))},preview:function(t){this.modal=!0,this.creatQrCode(t.id,t.status),this.routineCode(t.id)},getList:function(){var t=this;this.loading=!0,Object(l["d"])(this.diyFrom).then((function(e){t.loading=!1;var n=e.data;t.list=n.list,t.total=n.count}))},pageChange:function(t){this.diyFrom.page=t,this.getList()},handleSizeChange:function(t){this.diyFrom.limit=t,this.getList()},edit:function(t){this.$router.push({path:"".concat(u["roterPre"],"/devise/diy/index"),query:{id:t.id,name:t.template_name||"moren"}})},add:function(){this.$router.push({path:"".concat(u["roterPre"],"/devise/diy/index"),query:{id:0,name:"首页",types:1}})},del:function(t,e){var n=this;this.$modalSure("删除模板吗").then((function(){Object(l["b"])(t).then((function(t){var e=t.message;n.$message.success(e),n.getList()})).catch((function(t){var e=t.message;n.$message.error(e)}))}))},setStatus:function(){var t=Object(o["a"])(Object(a["a"])().mark((function t(e){var n;return Object(a["a"])().wrap((function(t){while(1)switch(t.prev=t.next){case 0:n=this,n.$modalSure("把该模板设为首页").then((function(){Object(l["l"])(e.id).then((function(t){n.$message.success(t.message),n.getList()})).catch((function(t){n.$message.error(t.message)}))}));case 2:case"end":return t.stop()}}),t,this)})));function e(e){return t.apply(this,arguments)}return e}(),recovery:function(t){var e=this;Object(l["k"])(t.id).then((function(t){e.$message.success(t.message),e.getList()}))},onDiyCopy:function(t){var e=this;Object(l["a"])(t.id).then((function(){e.getList()})).catch((function(t){e.$message.error(t.message)}))}}},v=p,h=(n("5621"),n("2877")),y=Object(h["a"])(v,i,r,!1,null,"ecb0437a",null);e["default"]=y.exports}}]); \ No newline at end of file diff --git a/public/mer/js/chunk-35013ff2.ce5da46b.js b/public/mer/js/chunk-35013ff2.ce5da46b.js new file mode 100644 index 00000000..5f93f406 --- /dev/null +++ b/public/mer/js/chunk-35013ff2.ce5da46b.js @@ -0,0 +1 @@ +(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-35013ff2"],{"0f4c":function(t,e,a){},"174b":function(t,e,a){},"29e1":function(t,e,a){"use strict";a("174b")},c3e9:function(t,e,a){"use strict";a.r(e);var l=function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("div",{staticClass:"divBox"},[a("el-card",{staticClass:"box-card"},[a("div",{staticClass:"clearfix",attrs:{slot:"header"},slot:"header"},[a("div",{staticClass:"container"},[a("el-form",{attrs:{size:"small","label-width":"120px",inline:""}},[a("el-form-item",{staticClass:"width100",staticStyle:{display:"block"},attrs:{label:"时间选择:"}},[a("el-radio-group",{staticClass:"mr20",attrs:{type:"button",size:"small"},on:{change:function(e){return t.selectChange(t.tableFrom.date)}},model:{value:t.tableFrom.date,callback:function(e){t.$set(t.tableFrom,"date",e)},expression:"tableFrom.date"}},t._l(t.fromList.fromTxt,(function(e,l){return a("el-radio-button",{key:l,attrs:{label:e.val}},[t._v(t._s(e.text))])})),1),t._v(" "),a("el-date-picker",{staticStyle:{width:"250px"},attrs:{"value-format":"yyyy/MM/dd",format:"yyyy/MM/dd",size:"small",type:"daterange",placement:"bottom-end",placeholder:"自定义时间"},on:{change:t.onchangeTime},model:{value:t.timeVal,callback:function(e){t.timeVal=e},expression:"timeVal"}})],1),t._v(" "),a("el-form-item",{attrs:{label:"商品搜索:"}},[a("el-input",{staticClass:"selWidth",attrs:{placeholder:"请输入商品名称/ID"},nativeOn:{keyup:function(e){return!e.type.indexOf("key")&&t._k(e.keyCode,"enter",13,e.key,"Enter")?null:t.getList(1)}},model:{value:t.tableFrom.keyword,callback:function(e){t.$set(t.tableFrom,"keyword",e)},expression:"tableFrom.keyword"}},[a("el-button",{staticClass:"el-button-solt",attrs:{slot:"append",icon:"el-icon-search"},on:{click:function(e){return t.getList(1)}},slot:"append"})],1)],1),t._v(" "),a("el-form-item",{attrs:{label:"拼团状态:"}},[a("el-select",{staticClass:"filter-item selWidth mr20",attrs:{placeholder:"请选择",clearable:""},on:{change:function(e){return t.getList(1)}},model:{value:t.tableFrom.status,callback:function(e){t.$set(t.tableFrom,"status",e)},expression:"tableFrom.status"}},t._l(t.activityStatusList,(function(t){return a("el-option",{key:t.value,attrs:{label:t.label,value:t.value}})})),1)],1),t._v(" "),a("el-form-item",{attrs:{label:"开团团长搜索:"}},[a("el-input",{staticClass:"selWidth",attrs:{placeholder:"请输入开团团长昵称/ID"},nativeOn:{keyup:function(e){return!e.type.indexOf("key")&&t._k(e.keyCode,"enter",13,e.key,"Enter")?null:t.getList(1)}},model:{value:t.tableFrom.user_name,callback:function(e){t.$set(t.tableFrom,"user_name",e)},expression:"tableFrom.user_name"}},[a("el-button",{staticClass:"el-button-solt",attrs:{slot:"append",icon:"el-icon-search"},on:{click:function(e){return t.getList(1)}},slot:"append"})],1)],1)],1)],1),t._v(" "),a("cards-data",{attrs:{"card-lists":t.cardLists}})],1),t._v(" "),a("el-table",{directives:[{name:"loading",rawName:"v-loading",value:t.listLoading,expression:"listLoading"}],staticStyle:{width:"100%"},attrs:{data:t.tableData.data,size:"mini"}},[a("el-table-column",{attrs:{prop:"group_buying_id",label:"ID","min-width":"50"}}),t._v(" "),a("el-table-column",{attrs:{label:"开团团长","min-width":"90"},scopedSlots:t._u([{key:"default",fn:function(e){return[a("span",[t._v(t._s(e.row.initiator&&e.row.initiator.nickname))])]}}])}),t._v(" "),a("el-table-column",{attrs:{label:"拼团商品图片","min-width":"80"},scopedSlots:t._u([{key:"default",fn:function(t){return[a("div",{staticClass:"demo-image__preview"},[a("el-image",{attrs:{src:t.row.productGroup.product.image,"preview-src-list":[t.row.productGroup.product.image]}})],1)]}}])}),t._v(" "),a("el-table-column",{attrs:{label:"拼团商品","min-width":"200"},scopedSlots:t._u([{key:"default",fn:function(e){return[a("span",[t._v(t._s(e.row.productGroup.product.store_name))])]}}])}),t._v(" "),a("el-table-column",{attrs:{label:"拼团时间","min-width":"160"},scopedSlots:t._u([{key:"default",fn:function(e){return[a("div",[t._v("发起时间:"+t._s(e.row.create_time))]),t._v(" "),a("div",[t._v("结束时间:"+t._s(e.row.stop_time))])]}}])}),t._v(" "),a("el-table-column",{attrs:{prop:"buying_count_num",label:"几人团","min-width":"90"}}),t._v(" "),a("el-table-column",{attrs:{prop:"yet_buying_num",label:"参与人次","min-width":"90"}}),t._v(" "),a("el-table-column",{attrs:{label:"状态","min-width":"90"},scopedSlots:t._u([{key:"default",fn:function(e){return[a("span",[t._v(t._s(-1===e.row.status?"未完成":0===e.row.status?"进行中":"已完成"))])]}}])}),t._v(" "),a("el-table-column",{attrs:{label:"操作","min-width":"150",fixed:"right"},scopedSlots:t._u([{key:"default",fn:function(e){return[a("el-button",{staticClass:"mr10",attrs:{type:"text",size:"small"},on:{click:function(a){return t.goDetail(e.row.group_buying_id)}}},[t._v("查看详情")])]}}])})],1),t._v(" "),a("div",{staticClass:"block"},[a("el-pagination",{attrs:{"page-sizes":[20,40,60,80],"page-size":t.tableFrom.limit,"current-page":t.tableFrom.page,layout:"total, sizes, prev, pager, next, jumper",total:t.tableData.total},on:{"size-change":t.handleSizeChange,"current-change":t.pageChange}})],1)],1),t._v(" "),a("details-data",{ref:"detailsData",attrs:{"is-show":t.isShowDetail}})],1)},i=[],s=a("b7be"),n=a("83d6"),o=function(){var t=this,e=t.$createElement,l=t._self._c||e;return t.dialogVisible?l("el-dialog",{attrs:{title:"查看详情",visible:t.dialogVisible,width:"700px"},on:{"update:visible":function(e){t.dialogVisible=e}}},[l("el-table",{directives:[{name:"loading",rawName:"v-loading",value:t.listLoading,expression:"listLoading"}],staticStyle:{width:"100%"},attrs:{data:t.tableData.data,size:"mini"}},[l("el-table-column",{attrs:{prop:"uid",label:"ID","min-width":"80"}}),t._v(" "),l("el-table-column",{attrs:{prop:"nickname",label:"用户名称","min-width":"120"},scopedSlots:t._u([{key:"default",fn:function(e){return[1==e.row.is_initiator?l("span",{staticClass:"initiator"},[t._v("团长")]):t._e(),l("span",[t._v(t._s(e.row.nickname))])]}}],null,!1,1665894273)}),t._v(" "),l("el-table-column",{attrs:{label:"用户头像","min-width":"100"},scopedSlots:t._u([{key:"default",fn:function(t){return[t.row.avatar?l("div",{staticClass:"demo-image__preview"},[l("el-image",{staticStyle:{width:"36px",height:"36px"},attrs:{src:t.row.avatar,"preview-src-list":[t.row.avatar]}})],1):l("img",{staticStyle:{width:"36px",height:"36px","vertical-align":"top"},attrs:{src:a("cdfe"),alt:""}})]}}],null,!1,3128291785)}),t._v(" "),l("el-table-column",{attrs:{label:"订单编号","min-width":"100"},scopedSlots:t._u([{key:"default",fn:function(e){return[l("span",[t._v(" "+t._s(e.row.orderInfo&&e.row.orderInfo.order_sn))])]}}],null,!1,2124253839)}),t._v(" "),l("el-table-column",{attrs:{label:"金额","min-width":"90"},scopedSlots:t._u([{key:"default",fn:function(e){return[l("span",[t._v(" "+t._s(e.row.orderInfo&&e.row.orderInfo.pay_price))])]}}],null,!1,2324806425)}),t._v(" "),l("el-table-column",{attrs:{label:"订单状态","min-width":"90"},scopedSlots:t._u([{key:"default",fn:function(e){return[e.row.orderInfo&&-1==e.row.orderInfo.status?l("span",{staticClass:"refuned"},[t._v(" 已退款")]):l("span",{staticClass:"unrefuned"},[t._v("未退款")])]}}],null,!1,726021529)})],1),t._v(" "),l("div",{staticClass:"block mb20"},[l("el-pagination",{attrs:{"page-sizes":[20,40,60,80],"page-size":t.tableFrom.limit,"current-page":t.tableFrom.page,layout:"total, sizes, prev, pager, next, jumper",total:t.tableData.total},on:{"size-change":t.handleSizeChange,"current-change":t.pageChange}})],1)],1):t._e()},r=[],c={name:"Info",props:{isShow:{type:Boolean,default:!0}},data:function(){return{id:"",loading:!1,dialogVisible:!1,tableData:{data:[],total:0},tableFrom:{page:1,limit:20}}},computed:{},methods:{getList:function(t){var e=this;this.id=t,this.listLoading=!0,Object(s["r"])(this.id,this.tableFrom).then((function(t){e.tableData.data=t.data.list,e.tableData.total=t.data.count,e.listLoading=!1})).catch((function(t){e.listLoading=!1,e.$message.error(t.message)}))},pageChange:function(t){this.tableFrom.page=t,this.getList(this.id)},handleSizeChange:function(t){this.tableFrom.limit=t,this.getList(this.id)}}},u=c,d=(a("29e1"),a("2877")),m=Object(d["a"])(u,o,r,!1,null,"4c42cb92",null),p=m.exports,b=a("0f56"),f={name:"ProductList",components:{detailsData:p,cardsData:b["a"]},data:function(){return{props:{emitPath:!1},roterPre:n["roterPre"],listLoading:!0,cardLists:[],tableData:{data:[],total:0},activityStatusList:[{label:"未完成",value:-1},{label:"进行中",value:0},{label:"已完成",value:10}],fromList:{title:"选择时间",custom:!0,fromTxt:[{text:"全部",val:""},{text:"今天",val:"today"},{text:"昨天",val:"yesterday"},{text:"最近7天",val:"lately7"},{text:"最近30天",val:"lately30"},{text:"本月",val:"month"},{text:"本年",val:"year"}]},tableFrom:{page:1,limit:20,keyword:"",date:"",status:"",user_name:""},modals:!1,dialogVisible:!1,loading:!1,manyTabTit:{},manyTabDate:{},attrInfo:{},timeVal:"",isShowDetail:!1}},mounted:function(){this.getList("")},methods:{goDetail:function(t){this.$refs.detailsData.dialogVisible=!0,this.isShowDetail=!0,this.$refs.detailsData.getList(t)},selectChange:function(t){this.tableFrom.date=t,this.tableFrom.page=1,this.timeVal=[],this.getList("")},onchangeTime:function(t){this.timeVal=t,this.tableFrom.date=t?this.timeVal.join("-"):"",this.tableFrom.page=1,this.getList("")},getList:function(t){var e=this;this.listLoading=!0,this.tableFrom.page=t||this.tableFrom.page,Object(s["o"])(this.tableFrom).then((function(t){e.tableData.data=t.data.list,e.tableData.total=t.data.count,e.listLoading=!1})).catch((function(t){e.listLoading=!1,e.$message.error(t.message)}))},pageChange:function(t){this.tableFrom.page=t,this.getList("")},handleSizeChange:function(t){this.tableFrom.limit=t,this.getList("")}}},h=f,g=(a("fa7b"),Object(d["a"])(h,l,i,!1,null,"188919f6",null));e["default"]=g.exports},cdfe:function(t,e,a){t.exports=a.p+"mer/img/f.5aa43cd3.png"},fa7b:function(t,e,a){"use strict";a("0f4c")}}]); \ No newline at end of file diff --git a/public/mer/js/chunk-39a0bfcb.2d93639d.js b/public/mer/js/chunk-39a0bfcb.2d93639d.js new file mode 100644 index 00000000..c19ce122 --- /dev/null +++ b/public/mer/js/chunk-39a0bfcb.2d93639d.js @@ -0,0 +1 @@ +(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-39a0bfcb"],{"1f87":function(t,e,a){"use strict";a("5290")},"4c4c":function(t,e,a){"use strict";a.r(e);var l=function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("div",{staticClass:"divBox"},[a("el-card",{staticClass:"box-card"},[a("div",{staticClass:"clearfix",attrs:{slot:"header"},slot:"header"},[a("div",{staticClass:"container"},[a("el-form",{attrs:{size:"small","label-width":"100px"}},[a("span",{staticClass:"seachTiele"},[t._v("时间选择:")]),t._v(" "),a("el-radio-group",{staticClass:"mr20",attrs:{type:"button",size:"small",clearable:""},on:{change:function(e){return t.selectChange(t.tableFrom.date)}},model:{value:t.tableFrom.date,callback:function(e){t.$set(t.tableFrom,"date",e)},expression:"tableFrom.date"}},t._l(t.fromList.fromTxt,(function(e,l){return a("el-radio-button",{key:l,attrs:{label:e.val}},[t._v(t._s(e.text))])})),1),t._v(" "),a("el-date-picker",{staticStyle:{width:"250px"},attrs:{"value-format":"yyyy/MM/dd",format:"yyyy/MM/dd",size:"small",type:"daterange",placement:"bottom-end",placeholder:"自定义时间",clearable:""},on:{change:t.onchangeTime},model:{value:t.timeVal,callback:function(e){t.timeVal=e},expression:"timeVal"}}),t._v(" "),a("div",{staticClass:"mt20"},[a("span",{staticClass:"seachTiele"},[t._v("评价分类:")]),t._v(" "),a("el-select",{staticClass:"filter-item selWidth mr20",attrs:{placeholder:"请选择",clearable:""},on:{change:function(e){return t.getList(1)}},model:{value:t.tableFrom.is_reply,callback:function(e){t.$set(t.tableFrom,"is_reply",e)},expression:"tableFrom.is_reply"}},t._l(t.evaluationStatusList,(function(t){return a("el-option",{key:t.value,attrs:{label:t.label,value:t.value}})})),1),t._v(" "),a("span",{staticClass:"seachTiele"},[t._v("商品信息:")]),t._v(" "),a("el-input",{staticClass:"selWidth mr20",attrs:{placeholder:"请输入商品ID或者商品信息",clearable:""},nativeOn:{keyup:function(e){return!e.type.indexOf("key")&&t._k(e.keyCode,"enter",13,e.key,"Enter")?null:t.getList(1)}},model:{value:t.tableFrom.keyword,callback:function(e){t.$set(t.tableFrom,"keyword",e)},expression:"tableFrom.keyword"}}),t._v(" "),a("span",{staticClass:"seachTiele"},[t._v("用户名称:")]),t._v(" "),a("el-input",{staticClass:"selWidth mr20",attrs:{placeholder:"请输入用户名称"},nativeOn:{keyup:function(e){return!e.type.indexOf("key")&&t._k(e.keyCode,"enter",13,e.key,"Enter")?null:t.getList(1)}},model:{value:t.tableFrom.nickname,callback:function(e){t.$set(t.tableFrom,"nickname",e)},expression:"tableFrom.nickname"}}),t._v(" "),a("el-button",{attrs:{size:"small",type:"primary",icon:"el-icon-search"},on:{click:function(e){return t.getList(1)}}},[t._v("搜索")])],1)],1)],1)]),t._v(" "),a("el-table",{directives:[{name:"loading",rawName:"v-loading",value:t.listLoading,expression:"listLoading"}],staticStyle:{width:"100%"},attrs:{data:t.tableData.data,size:"mini","row-class-name":t.tableRowClassName},on:{rowclick:function(e){return e.stopPropagation(),t.closeEdit(e)}}},[a("el-table-column",{attrs:{prop:"product_id",label:"商品ID","min-width":"50"}}),t._v(" "),a("el-table-column",{attrs:{label:"商品信息","min-width":"180"},scopedSlots:t._u([{key:"default",fn:function(e){return[a("div",{staticClass:"tabBox acea-row row-middle"},[a("div",{staticClass:"demo-image__preview"},[a("el-image",{attrs:{src:e.row.image,"preview-src-list":[e.row.image]}})],1),t._v(" "),a("span",{staticClass:"tabBox_tit"},[t._v(t._s(e.row.store_name))])])]}}])}),t._v(" "),a("el-table-column",{attrs:{prop:"nickname",label:"用户名称","min-width":"80"}}),t._v(" "),a("el-table-column",{attrs:{prop:"product_score",label:"产品评分","min-width":"50"}}),t._v(" "),a("el-table-column",{attrs:{prop:"service_score",label:"服务评分","min-width":"50"}}),t._v(" "),a("el-table-column",{attrs:{prop:"postage_score",label:"物流评分","min-width":"50"}}),t._v(" "),a("el-table-column",{attrs:{prop:"comment",label:"评价内容","min-width":"150"},scopedSlots:t._u([{key:"default",fn:function(e){return[a("div",{staticClass:"mb5 content_font"},[t._v(t._s(e.row.comment))]),t._v(" "),a("div",{staticClass:"demo-image__preview"},t._l(e.row.pics,(function(t,e){return a("el-image",{key:e,staticClass:"mr5",attrs:{src:t,"preview-src-list":[t]}})})),1)]}}])}),t._v(" "),a("el-table-column",{attrs:{prop:"merchant_reply_content",label:"回复内容","min-width":"100"}}),t._v(" "),a("el-table-column",{attrs:{prop:"create_time",label:"评价时间","min-width":"100"}}),t._v(" "),a("el-table-column",{attrs:{prop:"sort",label:"排序","min-width":"100"},scopedSlots:t._u([{key:"default",fn:function(e){return[e.row.index===t.tabClickIndex?a("span",[a("el-input",{attrs:{type:"number",maxlength:"300",size:"mini",autofocus:""},on:{blur:function(a){return t.inputBlur(e)}},model:{value:e.row["sort"],callback:function(a){t.$set(e.row,"sort",t._n(a))},expression:"scope.row['sort']"}})],1):a("span",{on:{dblclick:function(a){return a.stopPropagation(),t.tabClick(e.row)}}},[t._v(t._s(e.row["sort"]))])]}}])}),t._v(" "),a("el-table-column",{attrs:{label:"操作","min-width":"80",fixed:"right"},scopedSlots:t._u([{key:"default",fn:function(e){return[a("el-button",{attrs:{type:"text",size:"small"},on:{click:function(a){return t.handleReply(e.row.reply_id)}}},[t._v("回复")])]}}])})],1),t._v(" "),a("div",{staticClass:"block"},[a("el-pagination",{attrs:{"page-sizes":[20,40,60,80],"page-size":t.tableFrom.limit,"current-page":t.tableFrom.page,layout:"total, sizes, prev, pager, next, jumper",total:t.tableData.total},on:{"size-change":t.handleSizeChange,"current-change":t.pageChange}})],1)],1)],1)},i=[],n=(a("55dd"),a("c4c8")),s={data:function(){return{tableData:{data:[],total:0},listLoading:!0,tableFrom:{is_reply:"",nickname:"",keyword:"",order_sn:"",product_id:this.$route.query.product_id?this.$route.query.product_id:"",status:"",date:"",page:1,limit:20},timeVal:[],fromList:{title:"选择时间",custom:!0,fromTxt:[{text:"全部",val:""},{text:"今天",val:"today"},{text:"昨天",val:"yesterday"},{text:"最近7天",val:"lately7"},{text:"最近30天",val:"lately30"},{text:"本月",val:"month"},{text:"本年",val:"year"}]},selectionList:[],tabClickIndex:"",ids:"",tableFromLog:{page:1,limit:10},tableDataLog:{data:[],total:0},LogLoading:!1,dialogVisible:!1,evaluationStatusList:[{value:"",label:"全部"},{value:1,label:"已回复"},{value:0,label:"未回复"}],orderDatalist:null}},mounted:function(){this.getList(1)},methods:{handleReply:function(t){var e=this;this.$modalForm(Object(n["ob"])(t)).then((function(){return e.getList(1)}))},handleSelectionChange:function(t){this.selectionList=t;var e=[];this.selectionList.map((function(t){e.push(t.id)})),this.ids=e.join(",")},selectChange:function(t){this.tableFrom.date=t,this.timeVal=[],this.getList(1)},onchangeTime:function(t){this.timeVal=t,this.tableFrom.date=t?this.timeVal.join("-"):"",this.getList(1)},tableRowClassName:function(t){var e=t.row,a=t.rowIndex;e.index=a},tabClick:function(t){this.tabClickIndex=t.index},inputBlur:function(t){var e=this;(!t.row.sort||t.row.sort<0)&&(t.row.sort=0),Object(n["pb"])(t.row.reply_id,{sort:t.row.sort}).then((function(t){e.closeEdit()})).catch((function(t){}))},closeEdit:function(){this.tabClickIndex=null},getList:function(t){var e=this;this.listLoading=!0,this.tableFrom.page=t||this.tableFrom.page,Object(n["nb"])(this.tableFrom).then((function(t){e.tableData.data=t.data.list,e.tableData.total=t.data.count,e.listLoading=!1})).catch((function(t){e.listLoading=!1,e.$message.error(t.message)}))},pageChange:function(t){this.tableFrom.page=t,this.getList("")},handleSizeChange:function(t){this.tableFrom.limit=t,this.getList("")}}},o=s,r=(a("1f87"),a("2877")),c=Object(r["a"])(o,l,i,!1,null,"95fdc4c8",null);e["default"]=c.exports},5290:function(t,e,a){}}]); \ No newline at end of file diff --git a/public/mer/js/chunk-3e2c114c.579c6fc1.js b/public/mer/js/chunk-3e2c114c.579c6fc1.js new file mode 100644 index 00000000..547bab4b --- /dev/null +++ b/public/mer/js/chunk-3e2c114c.579c6fc1.js @@ -0,0 +1 @@ +(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-3e2c114c"],{"147a":function(t,e,n){"use strict";n("8b6e")},5296:function(t,e,n){"use strict";n("6620")},6620:function(t,e,n){},"8b6e":function(t,e,n){},"90e7":function(t,e,n){"use strict";n.d(e,"m",(function(){return r})),n.d(e,"u",(function(){return o})),n.d(e,"x",(function(){return i})),n.d(e,"v",(function(){return s})),n.d(e,"w",(function(){return c})),n.d(e,"c",(function(){return u})),n.d(e,"a",(function(){return l})),n.d(e,"g",(function(){return d})),n.d(e,"b",(function(){return p})),n.d(e,"f",(function(){return m})),n.d(e,"e",(function(){return f})),n.d(e,"d",(function(){return h})),n.d(e,"A",(function(){return b})),n.d(e,"B",(function(){return g})),n.d(e,"j",(function(){return v})),n.d(e,"k",(function(){return _})),n.d(e,"l",(function(){return y})),n.d(e,"y",(function(){return w})),n.d(e,"z",(function(){return C})),n.d(e,"n",(function(){return F})),n.d(e,"o",(function(){return k})),n.d(e,"i",(function(){return x})),n.d(e,"h",(function(){return O})),n.d(e,"C",(function(){return S})),n.d(e,"p",(function(){return j})),n.d(e,"r",(function(){return L})),n.d(e,"s",(function(){return z})),n.d(e,"t",(function(){return P})),n.d(e,"q",(function(){return $}));var a=n("0c6d");function r(t){return a["a"].get("system/role/lst",t)}function o(){return a["a"].get("system/role/create/form")}function i(t){return a["a"].get("system/role/update/form/".concat(t))}function s(t){return a["a"].delete("system/role/delete/".concat(t))}function c(t,e){return a["a"].post("system/role/status/".concat(t),{status:e})}function u(t){return a["a"].get("system/admin/lst",t)}function l(){return a["a"].get("/system/admin/create/form")}function d(t){return a["a"].get("system/admin/update/form/".concat(t))}function p(t){return a["a"].delete("system/admin/delete/".concat(t))}function m(t,e){return a["a"].post("system/admin/status/".concat(t),{status:e})}function f(t){return a["a"].get("system/admin/password/form/".concat(t))}function h(t){return a["a"].get("system/admin/log",t)}function b(){return a["a"].get("take/info")}function g(t){return a["a"].post("take/update",t)}function v(){return a["a"].get("margin/code")}function _(t){return a["a"].get("margin/lst",t)}function y(){return a["a"].post("financial/refund/margin")}function w(){return a["a"].get("serve/info")}function C(t){return a["a"].get("serve/meal",t)}function F(t){return a["a"].get("serve/code",t)}function k(t){return a["a"].get("serve/paylst",t)}function x(t){return a["a"].get("expr/temps",t)}function O(){return a["a"].get("serve/config")}function S(t){return a["a"].post("serve/config",t)}function j(){return a["a"].get("store/printer/create/form")}function L(t){return a["a"].get("store/printer/lst",t)}function z(t,e){return a["a"].post("store/printer/status/".concat(t),e)}function P(t){return a["a"].get("store/printer/update/".concat(t,"/form"))}function $(t){return a["a"].delete("store/printer/delete/".concat(t))}},c7de:function(t,e,n){t.exports=n.p+"mer/img/ren.c7bc0d99.png"},f28d:function(t,e,n){"use strict";n.r(e);var a=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",[n("div",{staticClass:"divBox"},[t.isShowList?n("el-card",{staticClass:"box-card"},[n("div",{staticClass:"clearfix",attrs:{slot:"header"},slot:"header"},[t.accountInfo.info?n("div",{staticClass:"acea-row header-count row-middle"},[n("div",{staticClass:"header-extra"},[n("div",{staticClass:"mb-5"},[n("span",[t._v("采集次数")])]),t._v(" "),n("div",[n("div",[t._v(t._s(t.copy.num||0))]),t._v(" "),n("el-button",{staticClass:"mt3",attrs:{size:"small",type:"primary",disabled:2!=t.copy.open},on:{click:function(e){return t.mealPay("copy")}}},[t._v("套餐购买")])],1)]),t._v(" "),n("div",{staticClass:"header-extra"},[n("div",{staticClass:"mb-5"},[n("span",[t._v("面单打印次数")])]),t._v(" "),n("div",[n("div",[t._v(t._s(t.dump.num||0))]),t._v(" "),n("el-button",{staticClass:"mt3",attrs:{size:"small",type:"primary",disabled:1!=t.dump.open},on:{click:function(e){return t.mealPay("dump")}}},[t._v("套餐购买")])],1)])]):n("div",{staticClass:"demo-basic--circle acea-row row-middle"},[n("span",{staticStyle:{color:"red"}},[t._v("平台未登录一号通!")])])])]):t._e()],1),t._v(" "),n("el-card",{staticClass:"ivu-mt"},[t.isShowList?n("table-list",{ref:"tableLists",attrs:{copy:t.copy,dump:t.dump,"account-info":t.accountInfo}}):t._e()],1)],1)},r=[],o=n("c7eb"),i=(n("96cf"),n("1da1")),s=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"divBox"},[n("el-card",{attrs:{bordered:!1,"dis-hover":""}},[n("el-tabs",{on:{"tab-click":t.onChangeType},model:{value:t.tableFrom.type,callback:function(e){t.$set(t.tableFrom,"type",e)},expression:"tableFrom.type"}},[n("el-tab-pane",{attrs:{label:"商品采集",name:"copy"}}),t._v(" "),n("el-tab-pane",{attrs:{label:"电子面单打印",name:"mer_dump"}})],1),t._v(" "),n("el-row",[n("el-col",{staticClass:"record_count",attrs:{span:24}},[n("el-button",{attrs:{type:"primary",plain:""},on:{click:t.getPurchase}},[t._v("购买记录")])],1)],1),t._v(" "),n("div",[n("el-table",{staticClass:"table",attrs:{data:t.tableList,loading:t.loading,size:"mini"}},[n("el-table-column",{key:"7",attrs:{label:"序号","min-width":"50"},scopedSlots:t._u([{key:"default",fn:function(e){return[n("span",[t._v(t._s(e.$index+(t.tableFrom.page-1)*t.tableFrom.limit+1))])]}}])}),t._v(" "),"mer_dump"==t.tableFrom.type?n("el-table-column",{key:"1",attrs:{prop:"info.order_sn",label:"订单号","min-width":"200"}}):t._e(),t._v(" "),"mer_dump"==t.tableFrom.type?n("el-table-column",{key:"2",attrs:{prop:"info.from_name",label:"发货人","min-width":"90"}}):t._e(),t._v(" "),"mer_dump"==t.tableFrom.type?n("el-table-column",{attrs:{label:"收货人","min-width":"90"},scopedSlots:t._u([{key:"default",fn:function(e){return[n("span",[t._v(t._s(e.row.info&&e.row.info.to_name?e.row.info.to_name:""))])]}}],null,!1,396801068)}):t._e(),t._v(" "),"mer_dump"==t.tableFrom.type?n("el-table-column",{key:"3",attrs:{prop:"info.delivery_id",label:"快递单号","min-width":"90"}}):t._e(),t._v(" "),"mer_dump"==t.tableFrom.type?n("el-table-column",{key:"4",attrs:{prop:"info.delivery_name",label:"快递公司编码","min-width":"90"}}):t._e(),t._v(" "),"copy"==t.tableFrom.type?n("el-table-column",{key:"6",attrs:{prop:"info",label:"复制URL","min-width":"200"}}):t._e(),t._v(" "),n("el-table-column",{key:"8",attrs:{prop:"create_time",label:"copy"!=t.tableFrom.type?"打印时间":"添加时间","min-width":"90"}})],1),t._v(" "),n("div",{staticClass:"block"},[n("el-pagination",{attrs:{"page-sizes":[20,40,60,80],"page-size":t.tableFrom.limit,"current-page":t.tableFrom.page,layout:"total, sizes, prev, pager, next, jumper",total:t.total},on:{"size-change":t.handleSizeChange,"current-change":t.pageChange}})],1)],1)],1),t._v(" "),t.dialogVisible?n("el-dialog",{attrs:{title:"copy"==t.tableFrom.type?"商品采集购买记录":"电子面单购买记录",visible:t.dialogVisible,width:"700px"},on:{"update:visible":function(e){t.dialogVisible=e}}},[n("el-table",{staticClass:"mt25",attrs:{data:t.tableData,loading:t.loading}},[n("el-table-column",{attrs:{label:"序号","min-width":"50"},scopedSlots:t._u([{key:"default",fn:function(e){return[n("span",[t._v(t._s(e.$index+(t.purchaseForm.page-1)*t.purchaseForm.limit+1))])]}}],null,!1,2493257592)}),t._v(" "),n("el-table-column",{attrs:{prop:"order_sn",label:"订单号","min-width":"120"}}),t._v(" "),n("el-table-column",{attrs:{label:"购买记录","min-width":"90"},scopedSlots:t._u([{key:"default",fn:function(e){return[e.row.order_info?n("span",[t._v(t._s(e.row.order_info.price)+"元 / "+t._s(e.row.order_info.num)+"次")]):t._e()]}}],null,!1,3496719446)}),t._v(" "),n("el-table-column",{attrs:{prop:"create_time",label:"购买时间","min-width":"90"}})],1),t._v(" "),n("div",{staticClass:"block"},[n("el-pagination",{attrs:{"page-sizes":[20,40,60,80],"page-size":t.purchaseForm.limit,"current-page":t.purchaseForm.page,layout:"total, sizes, prev, pager, next, jumper",total:t.total},on:{"size-change":t.handleSizeChangeOther,"current-change":t.pageChangeOther}})],1)],1):t._e()],1)},c=[],u=n("c4c8"),l=n("90e7"),d={name:"TableList",props:{copy:{type:Object,default:null},dump:{type:Object,default:null},accountInfo:{type:Object,default:null}},data:function(){return{isChecked:"copy",tableFrom:{page:1,limit:20,type:"copy"},total:0,loading:!1,tableList:[],modals:!1,dialogVisible:!1,tableData:[],purchaseForm:{page:1,limit:10}}},watch:{},created:function(){this.getRecordList()},mounted:function(){},methods:{onChangeType:function(){this.getRecordList()},getRecordList:function(){var t=this;this.loading=!0,Object(u["Z"])(this.tableFrom).then(function(){var e=Object(i["a"])(Object(o["a"])().mark((function e(n){var a;return Object(o["a"])().wrap((function(e){while(1)switch(e.prev=e.next){case 0:a=n.data,t.tableList=a.list,t.total=n.data.count,t.loading=!1;case 4:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}()).catch((function(e){t.loading=!1,t.$message.error(e.message)}))},handleSizeChange:function(t){this.tableFrom.limit=t,this.getRecordList("")},handleSizeChangeOther:function(t){this.purchaseForm.limit=t,this.getPurchase()},pageChange:function(t){this.tableFrom.page=t,this.getRecordList()},pageChangeOther:function(t){this.purchaseForm.page=t,this.getPurchase()},getPurchase:function(){var t=this;this.dialogVisible=!0,this.purchaseForm.type="copy"==this.tableFrom.type?1:2,Object(l["o"])(this.purchaseForm).then(function(){var e=Object(i["a"])(Object(o["a"])().mark((function e(n){var a;return Object(o["a"])().wrap((function(e){while(1)switch(e.prev=e.next){case 0:a=n.data,t.tableData=a.list,t.total=n.data.count,t.loading=!1;case 4:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}()).catch((function(e){t.loading=!1,t.$message.error(e.message)}))}}},p=d,m=(n("5296"),n("2877")),f=Object(m["a"])(p,s,c,!1,null,"220c2673",null),h=f.exports,b=n("83d6"),g={name:"SmsConfig",components:{tableList:h},data:function(){return{roterPre:b["roterPre"],imgUrl:n("c7de"),spinShow:!1,isShowList:!1,smsAccount:"",accountInfo:{},dump:{},copy:{}}},created:function(){this.getServeInfo()},methods:{onOpen:function(t){this.$refs.tableLists.onOpenIndex(t)},mealPay:function(t){this.$router.push({path:this.roterPre+"/setting/sms/sms_pay/index",query:{type:t}})},getServeInfo:function(){var t=this;this.spinShow=!0,Object(l["y"])().then(function(){var e=Object(i["a"])(Object(o["a"])().mark((function e(n){var a;return Object(o["a"])().wrap((function(e){while(1)switch(e.prev=e.next){case 0:a=n.data,t.isShowList=!0,t.dump={num:a.export_dump_num,open:a.crmeb_serve_dump},t.copy={num:a.copy_product_num,open:a.copy_product_status},t.spinShow=!1,t.smsAccount=a.account,t.accountInfo=a;case 7:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}()).catch((function(e){t.$message.error(e.message),t.isShowLogn=!0,t.isShowList=!1,t.spinShow=!1}))}}},v=g,_=(n("147a"),Object(m["a"])(v,a,r,!1,null,"cbe0a1ca",null));e["default"]=_.exports}}]); \ No newline at end of file diff --git a/public/mer/js/chunk-3ec8e821.8ce0b92e.js b/public/mer/js/chunk-3ec8e821.8ce0b92e.js new file mode 100644 index 00000000..950c502b --- /dev/null +++ b/public/mer/js/chunk-3ec8e821.8ce0b92e.js @@ -0,0 +1 @@ +(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-3ec8e821"],{"0928":function(e,t,a){"use strict";a.r(t);var i=function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("div",{staticClass:"divBox"},[a("el-card",{staticClass:"box-card"},[a("div",{staticClass:"clearfix",attrs:{slot:"header"},slot:"header"},[a("el-steps",{attrs:{active:e.currentTab,"align-center":"","finish-status":"success"}},[a("el-step",{attrs:{title:"选择拼团商品"}}),e._v(" "),a("el-step",{attrs:{title:"填写基础信息"}}),e._v(" "),a("el-step",{attrs:{title:"修改商品详情"}})],1)],1),e._v(" "),a("el-form",{directives:[{name:"loading",rawName:"v-loading",value:e.fullscreenLoading,expression:"fullscreenLoading"}],ref:"formValidate",staticClass:"formValidate mt20",attrs:{rules:e.ruleValidate,model:e.formValidate,"label-width":"160px"},nativeOn:{submit:function(e){e.preventDefault()}}},[a("div",{directives:[{name:"show",rawName:"v-show",value:0===e.currentTab,expression:"currentTab === 0"}],staticStyle:{overflow:"hidden"}},[a("el-row",{attrs:{gutter:24}},[a("el-col",e._b({},"el-col",e.grid2,!1),[a("el-form-item",{attrs:{label:"选择商品:",prop:"image"}},[a("div",{staticClass:"upLoadPicBox",on:{click:function(t){return e.add()}}},[e.formValidate.image?a("div",{staticClass:"pictrue"},[a("img",{attrs:{src:e.formValidate.image}})]):a("div",{staticClass:"upLoad"},[a("i",{staticClass:"el-icon-camera cameraIconfont"})])])])],1)],1)],1),e._v(" "),a("div",{directives:[{name:"show",rawName:"v-show",value:1===e.currentTab,expression:"currentTab === 1"}]},[a("el-row",{attrs:{gutter:24}},[a("el-col",e._b({},"el-col",e.grid2,!1),[a("el-form-item",{attrs:{label:"商品主图:",prop:"image"}},[a("div",{staticClass:"upLoadPicBox",on:{click:function(t){return e.modalPicTap("1")}}},[e.formValidate.image?a("div",{staticClass:"pictrue"},[a("img",{attrs:{src:e.formValidate.image}})]):a("div",{staticClass:"upLoad"},[a("i",{staticClass:"el-icon-camera cameraIconfont"})])])])],1),e._v(" "),a("el-col",{attrs:{span:24}},[a("el-form-item",{attrs:{label:"商品轮播图:",prop:"slider_image"}},[a("div",{staticClass:"acea-row"},[e._l(e.formValidate.slider_image,(function(t,i){return a("div",{key:i,staticClass:"pictrue",attrs:{draggable:"false"},on:{dragstart:function(a){return e.handleDragStart(a,t)},dragover:function(a){return a.preventDefault(),e.handleDragOver(a,t)},dragenter:function(a){return e.handleDragEnter(a,t)},dragend:function(a){return e.handleDragEnd(a,t)}}},[a("img",{attrs:{src:t}}),e._v(" "),a("i",{staticClass:"el-icon-error btndel",on:{click:function(t){return e.handleRemove(i)}}})])})),e._v(" "),e.formValidate.slider_image.length<10?a("div",{staticClass:"upLoadPicBox",on:{click:function(t){return e.modalPicTap("2")}}},[a("div",{staticClass:"upLoad"},[a("i",{staticClass:"el-icon-camera cameraIconfont"})])]):e._e()],2)])],1),e._v(" "),a("el-col",{staticClass:"sp100"},[a("el-form-item",{attrs:{label:"拼团名称:",prop:"store_name"}},[a("el-input",{attrs:{placeholder:"请输入商品名称"},model:{value:e.formValidate.store_name,callback:function(t){e.$set(e.formValidate,"store_name",t)},expression:"formValidate.store_name"}})],1)],1)],1),e._v(" "),a("el-row",{attrs:{gutter:24}},[a("el-col",{staticClass:"sp100"},[a("el-form-item",{attrs:{label:"拼团简介:",prop:"store_info"}},[a("el-input",{attrs:{type:"textarea",rows:3,placeholder:"请输入秒杀活动简介"},model:{value:e.formValidate.store_info,callback:function(t){e.$set(e.formValidate,"store_info",t)},expression:"formValidate.store_info"}})],1)],1)],1),e._v(" "),a("el-row",{attrs:{gutter:24}},[a("el-col",{attrs:{span:24}},[a("el-form-item",{attrs:{label:"拼团时间:",required:""}},[a("el-date-picker",{attrs:{type:"datetimerange","range-separator":"至","start-placeholder":"开始日期","end-placeholder":"结束日期",align:"right"},on:{change:e.onchangeTime},model:{value:e.timeVal,callback:function(t){e.timeVal=t},expression:"timeVal"}}),e._v(" "),a("span",{staticClass:"item_desc"},[e._v("设置活动开启结束时间,用户可以在设置时间内发起参与拼团")])],1)],1),e._v(" "),a("el-col",{attrs:{span:24}},[a("el-form-item",{attrs:{label:"送货方式:",prop:"delivery_way"}},[a("div",{staticClass:"acea-row"},[a("el-checkbox-group",{model:{value:e.formValidate.delivery_way,callback:function(t){e.$set(e.formValidate,"delivery_way",t)},expression:"formValidate.delivery_way"}},e._l(e.deliveryList,(function(t){return a("el-checkbox",{key:t.value,attrs:{label:t.value}},[e._v("\n "+e._s(t.name)+"\n ")])})),1)],1)])],1),e._v(" "),2==e.formValidate.delivery_way.length||1==e.formValidate.delivery_way.length&&2==e.formValidate.delivery_way[0]?a("el-col",{attrs:{span:24}},[a("el-form-item",{attrs:{label:"是否包邮:"}},[a("el-radio-group",{model:{value:e.formValidate.delivery_free,callback:function(t){e.$set(e.formValidate,"delivery_free",t)},expression:"formValidate.delivery_free"}},[a("el-radio",{staticClass:"radio",attrs:{label:0}},[e._v("否")]),e._v(" "),a("el-radio",{attrs:{label:1}},[e._v("是")])],1)],1)],1):e._e(),e._v(" "),0==e.formValidate.delivery_free&&(2==e.formValidate.delivery_way.length||1==e.formValidate.delivery_way.length&&2==e.formValidate.delivery_way[0])?a("el-col",{attrs:{span:24}},[a("el-form-item",{attrs:{label:"运费模板:",prop:"temp_id"}},[a("div",{staticClass:"acea-row"},[a("el-select",{staticClass:"selWidthd mr20",attrs:{placeholder:"请选择"},model:{value:e.formValidate.temp_id,callback:function(t){e.$set(e.formValidate,"temp_id",t)},expression:"formValidate.temp_id"}},e._l(e.shippingList,(function(e){return a("el-option",{key:e.shipping_template_id,attrs:{label:e.name,value:e.shipping_template_id}})})),1),e._v(" "),a("el-button",{staticClass:"mr15",attrs:{size:"small"},on:{click:e.addTem}},[e._v("添加运费模板")])],1)])],1):e._e(),e._v(" "),a("el-col",{attrs:{span:24}},[a("el-form-item",{attrs:{label:"平台保障服务:"}},[a("div",{staticClass:"acea-row"},[a("el-select",{staticClass:"selWidthd mr20",attrs:{placeholder:"请选择",clearable:""},model:{value:e.formValidate.guarantee_template_id,callback:function(t){e.$set(e.formValidate,"guarantee_template_id",t)},expression:"formValidate.guarantee_template_id"}},e._l(e.guaranteeList,(function(e){return a("el-option",{key:e.guarantee_template_id,attrs:{label:e.template_name,value:e.guarantee_template_id}})})),1),e._v(" "),a("el-button",{staticClass:"mr15",attrs:{size:"small"},on:{click:e.addServiceTem}},[e._v("添加服务说明模板")])],1)])],1),e._v(" "),a("el-col",{attrs:{span:24}},[a("el-form-item",{attrs:{label:"拼团时效(单位:小时):",prop:"time"}},[a("el-input-number",{attrs:{min:1,placeholder:"请输入时效"},model:{value:e.formValidate.time,callback:function(t){e.$set(e.formValidate,"time",t)},expression:"formValidate.time"}}),e._v(" "),a("span",{staticClass:"item_desc"},[e._v("用户发起拼团后开始计时,需在设置时间内邀请到规定好友人数参团,超过时效时间,则系统判定拼团失败,自动发起退款")])],1)],1),e._v(" "),a("el-col",{attrs:{span:24}},[a("el-form-item",{attrs:{label:"拼团人数:",prop:"buying_count_num"}},[a("el-input-number",{attrs:{min:2,placeholder:"请输入人数"},on:{change:e.calFictiCount},model:{value:e.formValidate.buying_count_num,callback:function(t){e.$set(e.formValidate,"buying_count_num",t)},expression:"formValidate.buying_count_num"}}),e._v(" "),a("span",{staticClass:"item_desc"},[e._v("单次拼团需要参与的用户数")])],1)],1),e._v(" "),a("el-col",{attrs:{span:24}},[a("el-form-item",{attrs:{label:"活动期间限购件数:",prop:"pay_count"}},[a("el-input-number",{attrs:{min:1,placeholder:"请输入数量"},model:{value:e.formValidate.pay_count,callback:function(t){e.$set(e.formValidate,"pay_count",t)},expression:"formValidate.pay_count"}}),e._v(" "),a("span",{staticClass:"item_desc"},[e._v("该商品活动期间内,用户可购买的最大数量。例如设置为4,表示本地活动有效期内,每个用户最多可购买4件")])],1)],1),e._v(" "),a("el-col",{attrs:{span:24}},[a("el-form-item",{attrs:{label:"单次限购件数:",prop:"once_pay_count"}},[a("el-input-number",{attrs:{min:1,max:e.formValidate.pay_count,placeholder:"请输入数量"},model:{value:e.formValidate.once_pay_count,callback:function(t){e.$set(e.formValidate,"once_pay_count",t)},expression:"formValidate.once_pay_count"}}),e._v(" "),a("span",{staticClass:"item_desc"},[e._v("用户参与拼团时,一次购买最大数量限制。例如设置为2,表示每次参与拼团时,用户一次购买数量最大可选择2个")])],1)],1),e._v(" "),a("el-col",{attrs:{span:24}},[a("el-form-item",{attrs:{label:"单位:",prop:"unit_name"}},[a("el-input",{staticStyle:{width:"250px"},attrs:{placeholder:"请输入单位"},model:{value:e.formValidate.unit_name,callback:function(t){e.$set(e.formValidate,"unit_name",t)},expression:"formValidate.unit_name"}})],1)],1)],1),e._v(" "),1==e.combinationData.ficti_status?a("el-row",{attrs:{gutter:24}},[a("el-col",{attrs:{span:6}},[a("el-form-item",{attrs:{label:"虚拟成团:"}},[a("el-switch",{attrs:{"active-text":"开启","inactive-text":"关闭"},model:{value:e.formValidate.ficti_status,callback:function(t){e.$set(e.formValidate,"ficti_status",t)},expression:"formValidate.ficti_status"}})],1)],1),e._v(" "),1==e.formValidate.ficti_status?a("el-col",{attrs:{span:16}},[a("el-form-item",{attrs:{label:"虚拟成团补齐人数:",prop:"ficti_num"}},[a("el-input-number",{attrs:{min:0,max:e.max_ficti_num,placeholder:"请输入数量"},model:{value:e.formValidate.ficti_num,callback:function(t){e.$set(e.formValidate,"ficti_num",t)},expression:"formValidate.ficti_num"}}),e._v(" "),a("span",{staticClass:"item_desc"},[e._v("拼团时效到时,系统自动补齐的最大拼团人数")])],1)],1):e._e()],1):e._e(),e._v(" "),a("el-row",{attrs:{gutter:24}},[a("el-col",{attrs:{span:24}},[a("el-form-item",{attrs:{label:"排序:",prop:"sort"}},[a("el-input-number",{attrs:{min:0,placeholder:"请输入排序数值"},model:{value:e.formValidate.sort,callback:function(t){e.$set(e.formValidate,"sort",t)},expression:"formValidate.sort"}})],1)],1),e._v(" "),a("el-col",{attrs:{span:24}},[a("el-form-item",{attrs:{label:"显示状态"}},[a("el-radio-group",{model:{value:e.formValidate.is_show,callback:function(t){e.$set(e.formValidate,"is_show",t)},expression:"formValidate.is_show"}},[a("el-radio",{staticClass:"radio",attrs:{label:0}},[e._v("关闭")]),e._v(" "),a("el-radio",{attrs:{label:1}},[e._v("开启")])],1)],1)],1)],1),e._v(" "),a("el-row",{attrs:{gutter:24}},[a("el-col",{attrs:{xl:24,lg:24,md:24,sm:24,xs:24}},[0===e.formValidate.spec_type?a("el-form-item",[a("el-table",{staticClass:"tabNumWidth",attrs:{data:e.OneattrValue,border:"",size:"mini"}},[a("el-table-column",{attrs:{align:"center",label:"图片","min-width":"80"},scopedSlots:e._u([{key:"default",fn:function(t){return[a("div",{staticClass:"upLoadPicBox",on:{click:function(t){return e.modalPicTap("1","dan","pi")}}},[e.formValidate.image?a("div",{staticClass:"pictrue tabPic"},[a("img",{attrs:{src:t.row.image}})]):a("div",{staticClass:"upLoad tabPic"},[a("i",{staticClass:"el-icon-camera cameraIconfont"})])])]}}],null,!1,1357914119)}),e._v(" "),a("el-table-column",{attrs:{align:"center",label:"市场价","min-width":"80"},scopedSlots:e._u([{key:"default",fn:function(t){return[a("span",[e._v(e._s(t.row["price"]))])]}}],null,!1,1703924291)}),e._v(" "),a("el-table-column",{attrs:{align:"center",label:"拼团价","min-width":"80"},scopedSlots:e._u([{key:"default",fn:function(t){return[a("el-input",{staticClass:"priceBox",attrs:{type:"number",min:0,max:t.row["price"]},on:{blur:function(a){return e.limitPrice(t.row)}},model:{value:t.row["active_price"],callback:function(a){e.$set(t.row,"active_price",e._n(a))},expression:"scope.row['active_price']"}})]}}],null,!1,1431579223)}),e._v(" "),a("el-table-column",{attrs:{align:"center",label:"成本价","min-width":"80"},scopedSlots:e._u([{key:"default",fn:function(t){return[a("span",[e._v(e._s(t.row["cost"]))])]}}],null,!1,4236060069)}),e._v(" "),a("el-table-column",{attrs:{align:"center",label:"库存","min-width":"80"},scopedSlots:e._u([{key:"default",fn:function(t){return[a("span",[e._v(e._s(t.row["old_stock"]))])]}}],null,!1,1655454038)}),e._v(" "),a("el-table-column",{attrs:{align:"center",label:"限量","min-width":"80"},scopedSlots:e._u([{key:"default",fn:function(t){return[a("el-input",{staticClass:"priceBox",attrs:{type:"number",max:t.row["old_stock"],min:0},on:{change:function(a){return e.limitInventory(t.row)}},model:{value:t.row["stock"],callback:function(a){e.$set(t.row,"stock",e._n(a))},expression:"scope.row['stock']"}})]}}],null,!1,3327557396)}),e._v(" "),a("el-table-column",{attrs:{align:"center",label:"商品编号","min-width":"80"},scopedSlots:e._u([{key:"default",fn:function(t){return[a("span",[e._v(e._s(t.row["bar_code"]))])]}}],null,!1,2057585133)}),e._v(" "),a("el-table-column",{attrs:{align:"center",label:"重量(KG)","min-width":"80"},scopedSlots:e._u([{key:"default",fn:function(t){return[a("span",[e._v(e._s(t.row["weight"]))])]}}],null,!1,1649766542)}),e._v(" "),a("el-table-column",{attrs:{align:"center",label:"体积(m³)","min-width":"80"},scopedSlots:e._u([{key:"default",fn:function(t){return[a("span",[e._v(e._s(t.row["volume"]))])]}}],null,!1,2118841126)})],1)],1):e._e()],1)],1),e._v(" "),a("el-row",{attrs:{gutter:24}},[1===e.formValidate.spec_type?a("el-form-item",{staticClass:"labeltop",attrs:{label:"规格列表:"}},[a("el-table",{ref:"multipleSelection",attrs:{data:e.ManyAttrValue,"tooltip-effect":"dark","row-key":function(e){return e.id}},on:{"selection-change":e.handleSelectionChange}},[a("el-table-column",{attrs:{align:"center",type:"selection","reserve-selection":!0,"min-width":"50"}}),e._v(" "),e.manyTabDate?e._l(e.manyTabDate,(function(t,i){return a("el-table-column",{key:i,attrs:{align:"center",label:e.manyTabTit[i].title,"min-width":"80"},scopedSlots:e._u([{key:"default",fn:function(t){return[a("span",{staticClass:"priceBox",domProps:{textContent:e._s(t.row[i])}})]}}],null,!0)})})):e._e(),e._v(" "),a("el-table-column",{attrs:{align:"center",label:"图片","min-width":"80"},scopedSlots:e._u([{key:"default",fn:function(t){return[a("div",{staticClass:"upLoadPicBox",on:{click:function(a){return e.modalPicTap("1","duo",t.$index)}}},[t.row.image?a("div",{staticClass:"pictrue tabPic"},[a("img",{attrs:{src:t.row.image}})]):a("div",{staticClass:"upLoad tabPic"},[a("i",{staticClass:"el-icon-camera cameraIconfont"})])])]}}],null,!1,3478746955)}),e._v(" "),a("el-table-column",{attrs:{align:"center",label:"市场价","min-width":"80"},scopedSlots:e._u([{key:"default",fn:function(t){return[a("span",[e._v(e._s(t.row["price"]))])]}}],null,!1,1703924291)}),e._v(" "),a("el-table-column",{attrs:{align:"center",label:"拼团价","min-width":"80"},scopedSlots:e._u([{key:"default",fn:function(t){return[a("el-input",{staticClass:"priceBox",attrs:{type:"number",min:0,max:t.row["price"]},on:{blur:function(a){return e.limitPrice(t.row)}},model:{value:t.row["active_price"],callback:function(a){e.$set(t.row,"active_price",e._n(a))},expression:" scope.row['active_price']"}})]}}],null,!1,3314660055)}),e._v(" "),a("el-table-column",{attrs:{align:"center",label:"成本价","min-width":"80"},scopedSlots:e._u([{key:"default",fn:function(t){return[a("span",[e._v(e._s(t.row["cost"]))])]}}],null,!1,4236060069)}),e._v(" "),a("el-table-column",{attrs:{align:"center",label:"库存","min-width":"80"},scopedSlots:e._u([{key:"default",fn:function(t){return[a("span",[e._v(e._s(t.row["old_stock"]))])]}}],null,!1,1655454038)}),e._v(" "),a("el-table-column",{attrs:{align:"center",label:"限量","min-width":"80"},scopedSlots:e._u([{key:"default",fn:function(t){return[a("el-input",{staticClass:"priceBox",attrs:{type:"number",min:0,max:t.row["old_stock"]},model:{value:t.row["stock"],callback:function(a){e.$set(t.row,"stock",e._n(a))},expression:"scope.row['stock']"}})]}}],null,!1,4025255182)}),e._v(" "),a("el-table-column",{attrs:{align:"center",label:"商品编号","min-width":"80"},scopedSlots:e._u([{key:"default",fn:function(t){return[a("span",[e._v(e._s(t.row["bar_code"]))])]}}],null,!1,2057585133)}),e._v(" "),a("el-table-column",{attrs:{align:"center",label:"重量(KG)","min-width":"80"},scopedSlots:e._u([{key:"default",fn:function(t){return[a("span",[e._v(e._s(t.row["weight"]))])]}}],null,!1,1649766542)}),e._v(" "),a("el-table-column",{attrs:{align:"center",label:"体积(m³)","min-width":"80"},scopedSlots:e._u([{key:"default",fn:function(t){return[a("span",[e._v(e._s(t.row["volume"]))])]}}],null,!1,2118841126)})],2)],1):e._e()],1)],1),e._v(" "),a("el-row",{directives:[{name:"show",rawName:"v-show",value:2===e.currentTab,expression:"currentTab === 2"}]},[a("el-col",{attrs:{span:24}},[a("el-form-item",{attrs:{label:"商品详情:"}},[a("ueditorFrom",{attrs:{content:e.formValidate.content},model:{value:e.formValidate.content,callback:function(t){e.$set(e.formValidate,"content",t)},expression:"formValidate.content"}})],1)],1)],1),e._v(" "),a("el-form-item",{staticStyle:{"margin-top":"30px"}},[a("el-button",{directives:[{name:"show",rawName:"v-show",value:e.currentTab>0,expression:"currentTab>0"}],staticClass:"submission",attrs:{type:"primary",size:"small"},on:{click:e.handleSubmitUp}},[e._v("上一步")]),e._v(" "),a("el-button",{directives:[{name:"show",rawName:"v-show",value:0==e.currentTab,expression:"currentTab == 0"}],staticClass:"submission",attrs:{type:"primary",size:"small"},on:{click:function(t){return e.handleSubmitNest1("formValidate")}}},[e._v("下一步")]),e._v(" "),a("el-button",{directives:[{name:"show",rawName:"v-show",value:1==e.currentTab,expression:"currentTab == 1"}],staticClass:"submission",attrs:{type:"primary",size:"small"},on:{click:function(t){return e.handleSubmitNest2("formValidate")}}},[e._v("下一步")]),e._v(" "),a("el-button",{directives:[{name:"show",rawName:"v-show",value:2===e.currentTab,expression:"currentTab===2"}],staticClass:"submission",attrs:{loading:e.loading,type:"primary",size:"small"},on:{click:function(t){return e.handleSubmit("formValidate")}}},[e._v("提交")]),e._v(" "),a("el-button",{directives:[{name:"show",rawName:"v-show",value:2===e.currentTab,expression:"currentTab===2"}],staticClass:"submission",attrs:{loading:e.loading,type:"primary",size:"small"},on:{click:e.handlePreview}},[e._v("预览")])],1)],1)],1),e._v(" "),a("goods-list",{ref:"goodsList",on:{getProduct:e.getProduct}}),e._v(" "),a("guarantee-service",{ref:"serviceGuarantee",on:{"get-list":e.getGuaranteeList}}),e._v(" "),e.previewVisible?a("div",[a("div",{staticClass:"bg",on:{click:function(t){t.stopPropagation(),e.previewVisible=!1}}}),e._v(" "),e.previewVisible?a("preview-box",{ref:"previewBox",attrs:{"product-type":4,"preview-key":e.previewKey}}):e._e()],1):e._e()],1)},r=[],n=a("2909"),l=(a("7f7f"),a("c7eb")),s=(a("c5f6"),a("96cf"),a("1da1")),o=(a("8615"),a("55dd"),a("ac6a"),a("ef0d")),c=a("6625"),u=a.n(c),m=a("7719"),d=a("ae43"),f=a("8c98"),p=a("c4c8"),_=a("b7be"),g=a("83d6"),h={product_id:"",image:"",slider_image:[],store_name:"",store_info:"",start_time:"",end_time:"",time:1,is_show:1,keyword:"",brand_id:"",cate_id:"",mer_cate_id:[],pay_count:1,unit_name:"",sort:0,is_good:0,temp_id:"",guarantee_template_id:"",buying_count_num:2,ficti_status:!0,ficti_num:1,once_pay_count:1,delivery_way:[],mer_labels:[],delivery_free:0,attrValue:[{image:"",price:null,active_price:null,cost:null,ot_price:null,old_stock:null,stock:null,bar_code:"",weight:null,volume:null}],attr:[],extension_type:0,content:"",spec_type:0,is_gift_bag:0},b=[{name:"店铺推荐",value:"is_good"}],v={name:"CombinationProductAdd",components:{ueditorFrom:o["a"],goodsList:m["a"],VueUeditorWrap:u.a,guaranteeService:d["a"],previewBox:f["a"]},data:function(){return{pickerOptions:{disabledDate:function(e){return e.getTime()>Date.now()}},timeVal:"",max_ficti_num:0,dialogVisible:!1,product_id:"",multipleSelection:[],optionsCate:{value:"store_category_id",label:"cate_name",children:"children",emitPath:!1},roterPre:g["roterPre"],selectRule:"",checkboxGroup:[],recommend:b,tabs:[],fullscreenLoading:!1,props:{emitPath:!1},propsMer:{emitPath:!1,multiple:!0},active:0,OneattrValue:[Object.assign({},h.attrValue[0])],ManyAttrValue:[Object.assign({},h.attrValue[0])],ruleList:[],merCateList:[],categoryList:[],shippingList:[],guaranteeList:[],deliveryList:[],labelList:[],BrandList:[],formValidate:Object.assign({},h),maxStock:"",addNum:0,singleSpecification:{},multipleSpecifications:[],formDynamics:{template_name:"",template_value:[]},manyTabTit:{},manyTabDate:{},grid2:{lg:10,md:12,sm:24,xs:24},formDynamic:{attrsName:"",attrsVal:""},isBtn:!1,manyFormValidate:[],images:[],currentTab:0,isChoice:"",combinationData:{ficti_status:0,group_buying_rate:""},grid:{xl:8,lg:8,md:12,sm:24,xs:24},loading:!1,ruleValidate:{store_name:[{required:!0,message:"请输入商品名称",trigger:"blur"}],timeVal:[{required:!0,message:"请选择拼团活动日期",trigger:"blur"}],time:[{required:!0,message:"请输入拼团时效",trigger:"blur"}],buying_count_num:[{required:!0,message:"请输入拼团人数",trigger:"blur"}],pay_count:[{required:!0,message:"请输入限购量",trigger:"blur"}],sort:[{required:!0,message:"请输入排序数值",trigger:"blur"}],once_pay_count:[{required:!0,message:"请输入单人单次限购数量",trigger:"blur"}],unit_name:[{required:!0,message:"请输入单位",trigger:"blur"}],store_info:[{required:!0,message:"请输入拼团活动简介",trigger:"blur"}],temp_id:[{required:!0,message:"请选择运费模板",trigger:"change"}],ficti_num:[{required:!0,message:"请输入虚拟成团补齐人数",trigger:"blur"}],image:[{required:!0,message:"请上传商品图",trigger:"change"}],slider_image:[{required:!0,message:"请上传商品轮播图",type:"array",trigger:"change"}],delivery_way:[{required:!0,message:"请选择送货方式",trigger:"change"}]},attrInfo:{},keyNum:0,extensionStatus:0,isNew:!1,previewVisible:!1,previewKey:"",deliveryType:[]}},computed:{attrValue:function(){var e=Object.assign({},h.attrValue[0]);return delete e.image,e},oneFormBatch:function(){var e=[Object.assign({},h.attrValue[0])];return delete e[0].bar_code,e}},watch:{"formValidate.attr":{handler:function(e){1===this.formValidate.spec_type&&this.watCh(e)},immediate:!1,deep:!0},"formValidate.buying_count_num":{handler:function(e,t){e&&1==this.formValidate.ficti_status&&(this.max_ficti_num=Math.round((1-this.combinationData.group_buying_rate/100)*this.formValidate.buying_count_num),this.isNew&&this.formValidate.ficti_num>this.max_ficti_num&&(this.formValidate.ficti_num=this.max_ficti_num))},immediate:!1,deep:!0}},created:function(){this.tempRoute=Object.assign({},this.$route),this.$route.params.id&&1===this.formValidate.spec_type&&this.$watch("formValidate.attr",this.watCh)},mounted:function(){var e=this;this.formValidate.slider_image=[],this.getCombinationData(),this.$route.params.id?(this.setTagsViewTitle(),this.getInfo(this.$route.params.id),this.currentTab=1):this.formValidate.attr.map((function(t){e.$set(t,"inputVisible",!1)})),this.getCategorySelect(),this.getCategoryList(),this.getBrandListApi(),this.getShippingList(),this.getGuaranteeList(),this.productCon(),this.getLabelLst(),this.$store.dispatch("settings/setEdit",!0)},methods:{getLabelLst:function(){var e=this;Object(p["v"])().then((function(t){e.labelList=t.data})).catch((function(t){e.$message.error(t.message)}))},productCon:function(){var e=this;Object(p["W"])().then((function(t){e.deliveryType=t.data.delivery_way.map(String),2==e.deliveryType.length?e.deliveryList=[{value:"1",name:"到店自提"},{value:"2",name:"快递配送"}]:1==e.deliveryType.length&&"1"==e.deliveryType[0]?e.deliveryList=[{value:"1",name:"到店自提"}]:e.deliveryList=[{value:"2",name:"快递配送"}]})).catch((function(t){e.$message.error(t.message)}))},getCombinationData:function(){var e=this;Object(_["q"])().then((function(t){e.combinationData=t.data})).catch((function(t){e.$message.error(t.message)}))},calFictiCount:function(){this.max_ficti_num=Math.round((1-this.combinationData.group_buying_rate/100)*this.formValidate.buying_count_num),this.isNew=!0,this.formValidate.ficti_num>this.max_ficti_num&&(this.formValidate.ficti_num=this.max_ficti_num)},limitInventory:function(e){e.stock-e.old_stock>0&&(e.stock=e.old_stock)},limitPrice:function(e){e.active_price-e.price>0&&(e.active_price=e.price)},add:function(){this.$refs.goodsList.dialogVisible=!0},getProduct:function(e){this.formValidate.image=e.src,this.product_id=e.id,console.log(this.product_id)},handleSelectionChange:function(e){this.multipleSelection=e},onchangeTime:function(e){this.timeVal=e,console.log(this.moment(e[0]).format("YYYY-MM-DD HH:mm:ss")),this.formValidate.start_time=e?this.moment(e[0]).format("YYYY-MM-DD HH:mm:ss"):"",this.formValidate.end_time=e?this.moment(e[1]).format("YYYY-MM-DD HH:mm:ss"):""},setTagsViewTitle:function(){var e="编辑商品",t=Object.assign({},this.tempRoute,{title:"".concat(e,"-").concat(this.$route.params.id)});this.$store.dispatch("tagsView/updateVisitedView",t)},watCh:function(e){var t=this,a={},i={};this.formValidate.attr.forEach((function(e,t){a["value"+t]={title:e.value},i["value"+t]=""})),this.ManyAttrValue.forEach((function(e,a){var i=Object.values(e.detail).sort().join("/");t.attrInfo[i]&&(t.ManyAttrValue[a]=t.attrInfo[i])})),this.attrInfo={},this.ManyAttrValue.forEach((function(e){t.attrInfo[Object.values(e.detail).sort().join("/")]=e})),this.manyTabTit=a,this.manyTabDate=i,console.log(this.manyTabTit),console.log(this.manyTabDate)},addTem:function(){var e=this;this.$modalTemplates(0,(function(){e.getShippingList()}))},addServiceTem:function(){this.$refs.serviceGuarantee.add()},getCategorySelect:function(){var e=this;Object(p["r"])().then((function(t){e.merCateList=t.data})).catch((function(t){e.$message.error(t.message)}))},getCategoryList:function(){var e=this;Object(p["q"])().then((function(t){e.categoryList=t.data})).catch((function(t){e.$message.error(t.message)}))},getBrandListApi:function(){var e=this;Object(p["p"])().then((function(t){e.BrandList=t.data})).catch((function(t){e.$message.error(t.message)}))},productGetRule:function(){var e=this;Object(p["Nb"])().then((function(t){e.ruleList=t.data}))},getShippingList:function(){var e=this;Object(p["wb"])().then((function(t){e.shippingList=t.data}))},getGuaranteeList:function(){var e=this;Object(p["B"])().then((function(t){e.guaranteeList=t.data}))},getInfo:function(e){var t=this;this.fullscreenLoading=!0,this.$route.params.id?Object(_["t"])(e).then(function(){var e=Object(s["a"])(Object(l["a"])().mark((function e(a){var i,r;return Object(l["a"])().wrap((function(e){while(1)switch(e.prev=e.next){case 0:i=a.data,t.formValidate={product_id:i.product_group_id,image:i.product.image,slider_image:i.product.slider_image,store_name:i.product.store_name,store_info:i.product.store_info,unit_name:i.product.unit_name,time:i.time,buying_count_num:i.buying_count_num,guarantee_template_id:i.product.guarantee_template_id,ficti_status:!!i.ficti_status,start_time:i.start_time?i.start_time:"",end_time:i.end_time?i.end_time:"",brand_id:i.product.brand_id,cate_id:i.cate_id?i.cate_id:"",mer_cate_id:i.mer_cate_id,pay_count:i.pay_count,once_pay_count:i.once_pay_count,sort:i.product.sort,is_good:i.product.is_good,temp_id:i.product.temp_id,is_show:i.is_show,attr:i.product.attr,extension_type:i.extension_type,content:i.product.content.content,spec_type:i.product.spec_type,is_gift_bag:i.product.is_gift_bag,ficti_num:i.ficti_num,delivery_way:i.product.delivery_way&&i.product.delivery_way.length?i.product.delivery_way.map(String):t.deliveryType,delivery_free:i.product.delivery_free?i.product.delivery_free:0,mer_labels:i.mer_labels&&i.mer_labels.length?i.mer_labels.map(Number):[]},1===t.combinationData.ficti_status&&(t.max_ficti_num=Math.round((1-t.combinationData.group_buying_rate/100)*i.buying_count_num)),0===t.formValidate.spec_type?(t.OneattrValue=i.product.attrValue,t.OneattrValue.forEach((function(e,a){t.attrInfo[Object.values(e.detail).sort().join("/")]=e,t.$set(t.OneattrValue[a],"active_price",e._sku?e._sku.active_price:e.price),t.$set(t.OneattrValue[a],"stock",e._sku?e._sku.stock:e.old_stock)})),t.singleSpecification=JSON.parse(JSON.stringify(i.product.attrValue)),t.formValidate.attrValue=t.OneattrValue):(r=[],t.ManyAttrValue=i.product.attrValue,t.ManyAttrValue.forEach((function(e,a){t.attrInfo[Object.values(e.detail).sort().join("/")]=e,t.$set(t.ManyAttrValue[a],"active_price",e._sku?e._sku.active_price:e.price),t.$set(t.ManyAttrValue[a],"stock",e._sku?e._sku.stock:e.old_stock),e._sku&&(t.multipleSpecifications=JSON.parse(JSON.stringify(i.product.attrValue)),r.push(e))})),t.multipleSpecifications=JSON.parse(JSON.stringify(r)),t.$nextTick((function(){r.forEach((function(e){t.$refs.multipleSelection.toggleRowSelection(e,!0)}))})),t.formValidate.attrValue=t.multipleSelection),console.log(t.ManyAttrValue),t.fullscreenLoading=!1,t.timeVal=[new Date(t.formValidate.start_time),new Date(t.formValidate.end_time)],t.$store.dispatch("settings/setEdit",!0);case 8:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}()).catch((function(e){t.fullscreenLoading=!1,t.$message.error(e.message)})):Object(p["cb"])(e).then(function(){var e=Object(s["a"])(Object(l["a"])().mark((function e(a){var i;return Object(l["a"])().wrap((function(e){while(1)switch(e.prev=e.next){case 0:i=a.data,t.formValidate={product_id:i.product_id,image:i.image,slider_image:i.slider_image,store_name:i.store_name,store_info:i.store_info,unit_name:i.unit_name,time:1,buying_count_num:2,ficti_status:!0,start_time:"",end_time:"",brand_id:i.brand_id,cate_id:i.cate_id,mer_cate_id:i.mer_cate_id,pay_count:1,once_pay_count:1,sort:i.sort?i.sort:0,is_good:i.is_good,temp_id:i.temp_id,is_show:i.is_show,attr:i.attr,extension_type:i.extension_type,content:i.content,spec_type:i.spec_type,is_gift_bag:i.is_gift_bag,ficti_num:1===t.combinationData.ficti_status?Math.round(1-t.combinationData.group_buying_rate/100):"",delivery_way:i.delivery_way&&i.delivery_way.length?i.delivery_way.map(String):t.deliveryType,delivery_free:i.delivery_free?i.delivery_free:0,mer_labels:i.mer_labels&&i.mer_labels.length?i.mer_labels.map(Number):[]},1===t.combinationData.ficti_status&&(t.max_ficti_num=Math.round(1*(1-t.combinationData.group_buying_rate/100))),t.timeVal=[],0===t.formValidate.spec_type?(t.OneattrValue=i.attrValue,t.OneattrValue.forEach((function(e,a){t.$set(t.OneattrValue[a],"active_price",t.OneattrValue[a].price)})),t.singleSpecification=JSON.parse(JSON.stringify(i.attrValue)),t.formValidate.attrValue=t.OneattrValue):(t.ManyAttrValue=i.attrValue,t.multipleSpecifications=JSON.parse(JSON.stringify(i.attrValue)),t.ManyAttrValue.forEach((function(e,a){t.attrInfo[Object.values(e.detail).sort().join("/")]=e,t.$set(t.ManyAttrValue[a],"active_price",t.ManyAttrValue[a].price)})),t.multipleSelection=i.attrValue,t.$nextTick((function(){i.attrValue.forEach((function(e){t.$refs.multipleSelection.toggleRowSelection(e,!0)}))}))),1===t.formValidate.is_good&&t.checkboxGroup.push("is_good"),t.fullscreenLoading=!1;case 7:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}()).catch((function(e){t.fullscreenLoading=!1,t.$message.error(e.message)}))},handleRemove:function(e){this.formValidate.slider_image.splice(e,1)},modalPicTap:function(e,t,a){var i=this,r=[];this.$modalUpload((function(n){"1"!==e||t||(i.formValidate.image=n[0],i.OneattrValue[0].image=n[0]),"2"!==e||t||n.map((function(e){r.push(e.attachment_src),i.formValidate.slider_image.push(e),i.formValidate.slider_image.length>10&&(i.formValidate.slider_image.length=10)})),"1"===e&&"dan"===t&&(i.OneattrValue[0].image=n[0]),"1"===e&&"duo"===t&&(i.ManyAttrValue[a].image=n[0]),"1"===e&&"pi"===t&&(i.oneFormBatch[0].image=n[0])}),e)},handleSubmitUp:function(){this.currentTab--<0&&(this.currentTab=0)},handleSubmitNest1:function(e){this.formValidate.image?(this.currentTab++,this.$route.params.id||this.getInfo(this.product_id)):this.$message.warning("请选择商品!")},handleSubmitNest2:function(e){var t=this;1===this.formValidate.spec_type?this.formValidate.attrValue=this.multipleSelection:this.formValidate.attrValue=this.OneattrValue,console.log(this.formValidate),this.$refs[e].validate((function(e){if(e){if(!t.formValidate.store_name||!t.formValidate.store_info||!t.formValidate.image||!t.formValidate.slider_image)return void t.$message.warning("请填写完整拼团商品信息!");if(!t.formValidate.start_time||!t.formValidate.end_time)return void t.$message.warning("请选择拼团时间!");if(!t.formValidate.attrValue||0===t.formValidate.attrValue.length)return void t.$message.warning("请选择商品规格!");t.currentTab++}}))},handleSubmit:function(e){var t=this;this.$refs[e].validate((function(a){a?(t.$store.dispatch("settings/setEdit",!1),t.fullscreenLoading=!0,t.loading=!0,console.log(t.formValidate),t.$route.params.id?(console.log(t.ManyAttrValue),Object(_["w"])(t.$route.params.id,t.formValidate).then(function(){var a=Object(s["a"])(Object(l["a"])().mark((function a(i){return Object(l["a"])().wrap((function(a){while(1)switch(a.prev=a.next){case 0:t.fullscreenLoading=!1,t.$message.success(i.message),t.$router.push({path:t.roterPre+"/marketing/combination/combination_goods"}),t.$refs[e].resetFields(),t.formValidate.slider_image=[],t.loading=!1;case 6:case"end":return a.stop()}}),a)})));return function(e){return a.apply(this,arguments)}}()).catch((function(e){t.fullscreenLoading=!1,t.loading=!1,t.$message.error(e.message)}))):Object(_["p"])(t.formValidate).then(function(){var a=Object(s["a"])(Object(l["a"])().mark((function a(i){return Object(l["a"])().wrap((function(a){while(1)switch(a.prev=a.next){case 0:t.fullscreenLoading=!1,t.$message.success(i.message),t.$router.push({path:t.roterPre+"/marketing/combination/combination_goods"}),t.$refs[e].resetFields(),t.formValidate.slider_image=[],t.loading=!1;case 6:case"end":return a.stop()}}),a)})));return function(e){return a.apply(this,arguments)}}()).catch((function(e){t.fullscreenLoading=!1,t.loading=!1,t.$message.error(e.message)}))):t.formValidate.store_name&&t.formValidate.store_info&&t.formValidate.image&&t.formValidate.slider_image||t.$message.warning("请填写完整商品信息!")}))},handlePreview:function(){var e=this;Object(p["x"])(this.formValidate).then(function(){var t=Object(s["a"])(Object(l["a"])().mark((function t(a){return Object(l["a"])().wrap((function(t){while(1)switch(t.prev=t.next){case 0:e.previewVisible=!0,e.previewKey=a.data.preview_key;case 2:case"end":return t.stop()}}),t)})));return function(e){return t.apply(this,arguments)}}()).catch((function(t){e.$message.error(t.message)}))},validate:function(e,t,a){!1===t&&this.$message.warning(a)},handleDragStart:function(e,t){this.dragging=t},handleDragEnd:function(e,t){this.dragging=null},handleDragOver:function(e){e.dataTransfer.dropEffect="move"},handleDragEnter:function(e,t){if(e.dataTransfer.effectAllowed="move",t!==this.dragging){var a=Object(n["a"])(this.formValidate.slider_image),i=a.indexOf(this.dragging),r=a.indexOf(t);a.splice.apply(a,[r,0].concat(Object(n["a"])(a.splice(i,1)))),this.formValidate.slider_image=a}}}},y=v,w=(a("d562"),a("2877")),V=Object(w["a"])(y,i,r,!1,null,"1cc142ff",null);t["default"]=V.exports},3910:function(e,t,a){"use strict";a("901b")},"504c":function(e,t,a){var i=a("9e1e"),r=a("0d58"),n=a("6821"),l=a("52a7").f;e.exports=function(e){return function(t){var a,s=n(t),o=r(s),c=o.length,u=0,m=[];while(c>u)a=o[u++],i&&!l.call(s,a)||m.push(e?[a,s[a]]:s[a]);return m}}},6494:function(e,t,a){},7719:function(e,t,a){"use strict";var i=function(){var e=this,t=e.$createElement,a=e._self._c||t;return e.dialogVisible?a("el-dialog",{attrs:{title:"商品信息",visible:e.dialogVisible,width:"1200px"},on:{"update:visible":function(t){e.dialogVisible=t}}},[a("div",{staticClass:"divBox"},[a("div",{staticClass:"header clearfix"},[a("div",{staticClass:"container"},[a("el-form",{attrs:{size:"small",inline:"","label-width":"100px"}},[a("el-form-item",{staticClass:"width100",attrs:{label:"商品分类:"}},[a("el-select",{staticClass:"filter-item selWidth mr20",attrs:{placeholder:"请选择",clearable:""},on:{change:function(t){return e.getList()}},model:{value:e.tableFrom.mer_cate_id,callback:function(t){e.$set(e.tableFrom,"mer_cate_id",t)},expression:"tableFrom.mer_cate_id"}},e._l(e.merCateList,(function(e){return a("el-option",{key:e.value,attrs:{label:e.label,value:e.value}})})),1)],1),e._v(" "),a("el-form-item",{staticClass:"width100",attrs:{label:"商品搜索:"}},[a("el-input",{staticClass:"selWidth",attrs:{placeholder:"请输入商品名称,关键字,产品编号",clearable:""},nativeOn:{keyup:function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"enter",13,t.key,"Enter")?null:e.getList(t)}},model:{value:e.tableFrom.keyword,callback:function(t){e.$set(e.tableFrom,"keyword",t)},expression:"tableFrom.keyword"}},[a("el-button",{staticClass:"el-button-solt",attrs:{slot:"append",icon:"el-icon-search"},on:{click:e.getList},slot:"append"})],1)],1)],1)],1)]),e._v(" "),e.resellShow?a("el-alert",{attrs:{title:"注:添加为预售商品后,原普通商品会下架;如该商品已开启其它营销活动,请勿选择!",type:"warning","show-icon":""}}):e._e(),e._v(" "),a("el-table",{directives:[{name:"loading",rawName:"v-loading",value:e.listLoading,expression:"listLoading"}],staticStyle:{width:"100%","margin-top":"10px"},attrs:{data:e.tableData.data,size:"mini"}},[a("el-table-column",{attrs:{width:"55"},scopedSlots:e._u([{key:"default",fn:function(t){return[a("el-radio",{attrs:{label:t.row.product_id},nativeOn:{change:function(a){return e.getTemplateRow(t.row)}},model:{value:e.templateRadio,callback:function(t){e.templateRadio=t},expression:"templateRadio"}},[e._v(" ")])]}}],null,!1,3465899556)}),e._v(" "),a("el-table-column",{attrs:{prop:"product_id",label:"ID","min-width":"50"}}),e._v(" "),a("el-table-column",{attrs:{label:"商品图","min-width":"80"},scopedSlots:e._u([{key:"default",fn:function(e){return[a("div",{staticClass:"demo-image__preview"},[a("el-image",{staticStyle:{width:"36px",height:"36px"},attrs:{src:e.row.image,"preview-src-list":[e.row.image]}})],1)]}}],null,!1,2331550732)}),e._v(" "),a("el-table-column",{attrs:{prop:"store_name",label:"商品名称","min-width":"200"}}),e._v(" "),a("el-table-column",{attrs:{prop:"stock",label:"库存","min-width":"80"}})],1),e._v(" "),a("div",{staticClass:"block mb20"},[a("el-pagination",{attrs:{"page-sizes":[20,40,60,80],"page-size":e.tableFrom.limit,"current-page":e.tableFrom.page,layout:"total, sizes, prev, pager, next, jumper",total:e.tableData.total},on:{"size-change":e.handleSizeChange,"current-change":e.pageChange}})],1)],1)]):e._e()},r=[],n=a("c4c8"),l=a("83d6"),s={name:"GoodsList",props:{resellShow:{type:Boolean,default:!1}},data:function(){return{dialogVisible:!1,templateRadio:0,merCateList:[],roterPre:l["roterPre"],listLoading:!0,tableData:{data:[],total:0},tableFrom:{page:1,limit:20,cate_id:"",store_name:"",keyword:"",is_gift_bag:0,status:1},multipleSelection:{},checked:[]}},mounted:function(){var e=this;this.getList(),this.getCategorySelect(),window.addEventListener("unload",(function(t){return e.unloadHandler(t)}))},methods:{getTemplateRow:function(e){this.multipleSelection={src:e.image,id:e.product_id},this.dialogVisible=!1,this.$emit("getProduct",this.multipleSelection)},getCategorySelect:function(){var e=this;Object(n["r"])().then((function(t){e.merCateList=t.data})).catch((function(t){e.$message.error(t.message)}))},getList:function(){var e=this;this.listLoading=!0,Object(n["eb"])(this.tableFrom).then((function(t){e.tableData.data=t.data.list,e.tableData.total=t.data.count,e.listLoading=!1})).catch((function(t){e.listLoading=!1,e.$message.error(t.message)}))},pageChange:function(e){this.tableFrom.page=e,this.getList()},handleSizeChange:function(e){this.tableFrom.limit=e,this.getList()}}},o=s,c=(a("3910"),a("2877")),u=Object(c["a"])(o,i,r,!1,null,"5e74a40e",null);t["a"]=u.exports},8615:function(e,t,a){var i=a("5ca1"),r=a("504c")(!1);i(i.S,"Object",{values:function(e){return r(e)}})},"901b":function(e,t,a){},d562:function(e,t,a){"use strict";a("6494")}}]); \ No newline at end of file diff --git a/public/mer/js/chunk-406e1b8e.9ad6abde.js b/public/mer/js/chunk-406e1b8e.9ad6abde.js new file mode 100644 index 00000000..5a7f82d6 --- /dev/null +++ b/public/mer/js/chunk-406e1b8e.9ad6abde.js @@ -0,0 +1 @@ +(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-406e1b8e"],{"0b69":function(t,e,a){"use strict";a("26bb")},"0e41":function(t,e,a){"use strict";a.r(e);var i=function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("div",{staticClass:"divBox"},[a("el-card",{staticClass:"box-card"},[a("div",{staticClass:"clearfix",attrs:{slot:"header"},slot:"header"},[a("div",{staticClass:"container"},[a("el-form",{attrs:{size:"small","label-width":"120px"}},[a("el-form-item",{staticClass:"width100",attrs:{label:"时间选择:"}},[a("el-radio-group",{staticClass:"mr20",attrs:{type:"button",size:"small"},on:{change:function(e){return t.selectChange(t.tableFrom.date)}},model:{value:t.tableFrom.date,callback:function(e){t.$set(t.tableFrom,"date",e)},expression:"tableFrom.date"}},t._l(t.fromList.fromTxt,(function(e,i){return a("el-radio-button",{key:i,attrs:{label:e.val}},[t._v(t._s(e.text))])})),1),t._v(" "),a("el-date-picker",{staticStyle:{width:"250px"},attrs:{"value-format":"yyyy/MM/dd",format:"yyyy/MM/dd",size:"small",type:"daterange",placement:"bottom-end",placeholder:"自定义时间"},on:{change:t.onchangeTime},model:{value:t.timeVal,callback:function(e){t.timeVal=e},expression:"timeVal"}})],1),t._v(" "),a("el-form-item",{attrs:{label:"商品搜索:"}},[a("el-input",{staticClass:"selWidth",attrs:{placeholder:"请输入商品名称/ID"},nativeOn:{keyup:function(e){return!e.type.indexOf("key")&&t._k(e.keyCode,"enter",13,e.key,"Enter")?null:t.getList(1)}},model:{value:t.tableFrom.keyword,callback:function(e){t.$set(t.tableFrom,"keyword",e)},expression:"tableFrom.keyword"}},[a("el-button",{staticClass:"el-button-solt",attrs:{slot:"append",icon:"el-icon-search"},on:{click:function(e){return t.getList(1)}},slot:"append"})],1)],1),t._v(" "),a("el-form-item",{attrs:{label:"发起人搜索:"}},[a("el-input",{staticClass:"selWidth",attrs:{placeholder:"请输入发起人昵称"},nativeOn:{keyup:function(e){return!e.type.indexOf("key")&&t._k(e.keyCode,"enter",13,e.key,"Enter")?null:t.getList(1)}},model:{value:t.tableFrom.user_name,callback:function(e){t.$set(t.tableFrom,"user_name",e)},expression:"tableFrom.user_name"}},[a("el-button",{staticClass:"el-button-solt",attrs:{slot:"append",icon:"el-icon-search"},on:{click:function(e){return t.getList(1)}},slot:"append"})],1)],1)],1)],1)]),t._v(" "),a("el-table",{directives:[{name:"loading",rawName:"v-loading",value:t.listLoading,expression:"listLoading"}],staticStyle:{width:"100%"},attrs:{data:t.tableData.data,size:"mini"}},[a("el-table-column",{attrs:{prop:"product_assist_set_id",label:"ID","min-width":"50"}}),t._v(" "),a("el-table-column",{attrs:{label:"助力商品图片","min-width":"80"},scopedSlots:t._u([{key:"default",fn:function(e){return[a("div",{staticClass:"demo-image__preview"},[e.row.product?a("el-image",{attrs:{src:e.row.product.image,"preview-src-list":[e.row.product.image]}}):t._e()],1)]}}])}),t._v(" "),a("el-table-column",{attrs:{label:"商品名称","min-width":"120"},scopedSlots:t._u([{key:"default",fn:function(e){return[a("span",[t._v(t._s(e.row.assist.store_name))])]}}])}),t._v(" "),a("el-table-column",{attrs:{label:"助力价格","min-width":"90"},scopedSlots:t._u([{key:"default",fn:function(e){return[a("span",[t._v(t._s(e.row.assist&&e.row.assist.assistSku[0].assist_price||""))])]}}])}),t._v(" "),a("el-table-column",{attrs:{prop:"assist_count",label:"助力人数","min-width":"90"}}),t._v(" "),a("el-table-column",{attrs:{label:"发起人","min-width":"90"},scopedSlots:t._u([{key:"default",fn:function(e){return[a("span",[t._v(t._s(e.row.user&&e.row.user.nickname||""))])]}}])}),t._v(" "),a("el-table-column",{attrs:{prop:"create_time",label:"发起时间","min-width":"130"}}),t._v(" "),a("el-table-column",{attrs:{prop:"yet_assist_count",label:"已参与人数","min-width":"130"}}),t._v(" "),a("el-table-column",{attrs:{label:"活动时间","min-width":"160"},scopedSlots:t._u([{key:"default",fn:function(e){return[a("div",[t._v("开始日期:"+t._s(e.row.assist&&e.row.assist.start_time?e.row.assist.start_time.slice(0,10):""))]),t._v(" "),a("div",[t._v("结束日期:"+t._s(e.row.assist.end_time&&e.row.assist.end_time?e.row.assist.end_time.slice(0,10):""))])]}}])}),t._v(" "),a("el-table-column",{attrs:{label:"操作","min-width":"150",fixed:"right"},scopedSlots:t._u([{key:"default",fn:function(e){return[a("el-button",{staticClass:"mr10",attrs:{type:"text",size:"small"},on:{click:function(a){return t.goDetail(e.row.product_assist_set_id)}}},[t._v("查看详情")])]}}])})],1),t._v(" "),a("div",{staticClass:"block"},[a("el-pagination",{attrs:{"page-sizes":[20,40,60,80],"page-size":t.tableFrom.limit,"current-page":t.tableFrom.page,layout:"total, sizes, prev, pager, next, jumper",total:t.tableData.total},on:{"size-change":t.handleSizeChange,"current-change":t.pageChange}})],1)],1),t._v(" "),a("details-data",{ref:"detailsData",attrs:{"is-show":t.isShowDetail}})],1)},l=[],s=a("c4c8"),n=a("83d6"),o=function(){var t=this,e=t.$createElement,a=t._self._c||e;return t.dialogVisible?a("el-dialog",{attrs:{title:"查看详情",visible:t.dialogVisible,width:"700px"},on:{"update:visible":function(e){t.dialogVisible=e}}},[a("el-table",{directives:[{name:"loading",rawName:"v-loading",value:t.listLoading,expression:"listLoading"}],staticStyle:{width:"100%"},attrs:{data:t.tableData.data,size:"mini"}},[a("el-table-column",{attrs:{prop:"uid",label:"ID","min-width":"80"}}),t._v(" "),a("el-table-column",{attrs:{prop:"nickname",label:"用户名称","min-width":"120"}}),t._v(" "),a("el-table-column",{attrs:{label:"用户头像","min-width":"100"},scopedSlots:t._u([{key:"default",fn:function(t){return[a("div",{staticClass:"demo-image__preview"},[a("el-image",{staticStyle:{width:"36px",height:"36px"},attrs:{src:t.row.avatar_img,"preview-src-list":[t.row.avatar_img]}})],1)]}}],null,!1,3385799628)}),t._v(" "),a("el-table-column",{attrs:{prop:"create_time",label:"参与时间","min-width":"200"}})],1),t._v(" "),a("div",{staticClass:"block mb20"},[a("el-pagination",{attrs:{"page-sizes":[20,40,60,80],"page-size":t.tableFrom.limit,"current-page":t.tableFrom.page,layout:"total, sizes, prev, pager, next, jumper",total:t.tableData.total},on:{"size-change":t.handleSizeChange,"current-change":t.pageChange}})],1)],1):t._e()},r=[],c={name:"Info",props:{isShow:{type:Boolean,default:!0}},data:function(){return{id:"",loading:!1,dialogVisible:!1,tableData:{data:[],total:0},tableFrom:{page:1,limit:20}}},computed:{},methods:{getList:function(t){var e=this;this.id=t,this.listLoading=!0,Object(s["c"])(this.id,this.tableFrom).then((function(t){e.tableData.data=t.data.list,e.tableData.total=t.data.count,e.listLoading=!1})).catch((function(t){e.listLoading=!1,e.$message.error(t.message)}))},pageChange:function(t){this.tableFrom.page=t,this.getList(this.id)},handleSizeChange:function(t){this.tableFrom.limit=t,this.getList(this.id)}}},d=c,u=(a("0b69"),a("2877")),m=Object(u["a"])(d,o,r,!1,null,"56894922",null),b=m.exports,p={name:"ProductList",components:{detailsData:b},data:function(){return{props:{emitPath:!1},roterPre:n["roterPre"],listLoading:!0,tableData:{data:[],total:0},assistStatusList:[{label:"未开始",value:0},{label:"正在进行",value:1},{label:"已结束",value:2}],fromList:{title:"选择时间",custom:!0,fromTxt:[{text:"全部",val:""},{text:"今天",val:"today"},{text:"昨天",val:"yesterday"},{text:"最近7天",val:"lately7"},{text:"最近30天",val:"lately30"},{text:"本月",val:"month"},{text:"本年",val:"year"}]},tableFrom:{page:1,limit:20,keyword:"",date:"",type:"",user_name:""},modals:!1,dialogVisible:!1,loading:!1,manyTabTit:{},manyTabDate:{},attrInfo:{},timeVal:"",isShowDetail:!1}},mounted:function(){this.getList("")},methods:{watCh:function(){},goDetail:function(t){this.$refs.detailsData.dialogVisible=!0,this.isShowDetail=!0,this.$refs.detailsData.getList(t)},selectChange:function(t){this.tableFrom.date=t,this.tableFrom.page=1,this.timeVal=[],this.getList("")},onchangeTime:function(t){this.timeVal=t,this.tableFrom.date=t?this.timeVal.join("-"):"",this.tableFrom.page=1,this.getList("")},getList:function(t){var e=this;this.listLoading=!0,this.tableFrom.page=t||this.tableFrom.page,Object(s["d"])(this.tableFrom).then((function(t){e.tableData.data=t.data.list,e.tableData.total=t.data.count,e.listLoading=!1})).catch((function(t){e.listLoading=!1,e.$message.error(t.message)}))},pageChange:function(t){this.tableFrom.page=t,this.getList("")},handleSizeChange:function(t){this.tableFrom.limit=t,this.getList("")}}},h=p,g=(a("6e9f"),Object(u["a"])(h,i,l,!1,null,"4bf39339",null));e["default"]=g.exports},"26bb":function(t,e,a){},"6e9f":function(t,e,a){"use strict";a("b8b9")},b8b9:function(t,e,a){}}]); \ No newline at end of file diff --git a/public/mer/js/chunk-40dcbfe7.4a6b4314.js b/public/mer/js/chunk-40dcbfe7.4a6b4314.js new file mode 100644 index 00000000..577f9352 --- /dev/null +++ b/public/mer/js/chunk-40dcbfe7.4a6b4314.js @@ -0,0 +1 @@ +(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-40dcbfe7"],{"2f15":function(t,e,a){},d2e8:function(t,e,a){"use strict";a.r(e);var l=function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("div",{staticClass:"divBox"},[a("el-card",{staticClass:"box-card"},[a("div",{staticClass:"clearfix",attrs:{slot:"header"},slot:"header"},[a("div",{staticClass:"container"},[a("el-form",{attrs:{size:"small","label-width":"100px",inline:""}},[a("el-form-item",{attrs:{label:"时间选择:"}},[a("el-radio-group",{staticClass:"mr20",attrs:{type:"button",size:"small"},on:{change:function(e){return t.selectChange(t.tableFrom.date)}},model:{value:t.tableFrom.date,callback:function(e){t.$set(t.tableFrom,"date",e)},expression:"tableFrom.date"}},t._l(t.fromList.fromTxt,(function(e,l){return a("el-radio-button",{key:l,attrs:{label:e.val}},[t._v(t._s(e.text))])})),1),t._v(" "),a("el-date-picker",{staticStyle:{width:"250px"},attrs:{"value-format":"yyyy/MM/dd",format:"yyyy/MM/dd",size:"small",type:"daterange",placement:"bottom-end",placeholder:"自定义时间"},on:{change:t.onchangeTime},model:{value:t.timeVal,callback:function(e){t.timeVal=e},expression:"timeVal"}})],1),t._v(" "),a("el-form-item",{attrs:{label:"消息名称:"}},[a("el-input",{staticClass:"selWidth",attrs:{placeholder:"请输入消息名称",size:"small"},nativeOn:{keyup:function(e){return!e.type.indexOf("key")&&t._k(e.keyCode,"enter",13,e.key,"Enter")?null:t.getLists(1)}},model:{value:t.tableFrom.keyword,callback:function(e){t.$set(t.tableFrom,"keyword",e)},expression:"tableFrom.keyword"}},[a("el-button",{staticClass:"el-button-solt",attrs:{slot:"append",icon:"el-icon-search",size:"small"},on:{click:function(e){return t.getLists(1)}},slot:"append"})],1)],1)],1)],1)]),t._v(" "),a("el-table",{directives:[{name:"loading",rawName:"v-loading",value:t.listLoading,expression:"listLoading"}],staticStyle:{width:"100%"},attrs:{data:t.tableData.data,size:"small","row-key":t.getRowKeys,"expand-row-keys":t.expands},on:{"expand-change":t.handleRead}},[a("el-table-column",{attrs:{label:"序号","min-width":"50"},scopedSlots:t._u([{key:"default",fn:function(e){return[a("span",[t._v(t._s(e.$index+(t.tableFrom.page-1)*t.tableFrom.limit+1))])]}}])}),t._v(" "),a("el-table-column",{attrs:{label:"消息名称","min-width":"150"},scopedSlots:t._u([{key:"default",fn:function(e){return[a("span",{staticClass:"circle",class:0===e.row.is_read?"red":"gray"}),t._v(" "),a("span",{class:0===e.row.is_read?"unread":"read"},[t._v(t._s(e.row.notice_title))])]}}])}),t._v(" "),a("el-table-column",{attrs:{label:"日期","min-width":"180"},scopedSlots:t._u([{key:"default",fn:function(e){return[a("span",{class:0===e.row.is_read?"unread":"read"},[t._v(t._s(e.row.create_time))])]}}])}),t._v(" "),a("el-table-column",{attrs:{type:"expand"},scopedSlots:t._u([{key:"default",fn:function(e){return[a("el-form",{staticClass:"demo-table-expand",attrs:{"label-position":"left",inline:""}},[a("el-form-item",[a("span",{staticStyle:{color:"#333"}},[t._v(t._s(e.row.notice_content?e.row.notice_content:""))])])],1)]}}])})],1),t._v(" "),a("div",{staticClass:"block"},[a("el-pagination",{attrs:{"page-sizes":[20,40,60,80],"page-size":t.tableFrom.limit,"current-page":t.tableFrom.page,layout:"total, sizes, prev, pager, next, jumper",total:t.tableData.total},on:{"size-change":t.handleSizeChange,"current-change":t.pageChange}})],1)],1)],1)},i=[],s=(a("ac6a"),a("8593")),n=a("83d6"),o={name:"SystemLog",data:function(){return{props:{emitPath:!1},listLoading:!0,tableData:{data:[],total:0},dialogVisible:!1,categoryList:[],merCateList:[],merSelect:[],fullscreenLoading:!1,roterPre:n["roterPre"],timeVal:[],fromList:{title:"选择时间",custom:!0,fromTxt:[{text:"全部",val:""},{text:"今天",val:"today"},{text:"昨天",val:"yesterday"},{text:"最近7天",val:"lately7"},{text:"最近30天",val:"lately30"},{text:"本月",val:"month"},{text:"本年",val:"year"}]},tableFrom:{page:1,limit:20,date:"",keyword:""},expands:[],idx:0}},mounted:function(){this.getList("")},methods:{getRowKeys:function(t){return t.notice_log_id},selectChange:function(t){this.timeVal=[],this.tableFrom.date=t,this.getLists(1)},onchangeTime:function(t){this.timeVal=t,this.tableFrom.date=t?this.timeVal.join("-"):"",this.getLists(1)},getList:function(t){var e=this,a=this;a.listLoading=!0,a.tableFrom.page=t||a.tableFrom.page,Object(s["G"])(a.tableFrom).then((function(t){a.tableData.data=t.data.list,a.tableData.total=t.data.count,a.listLoading=!1,a.$route.params.id&&(a.handleRead({notice_log_id:a.$route.params.id,is_read:0}),a.tableData.data.forEach((function(t,e){t.notice_log_id==a.$route.params.id&&(a.idx=e,console.log(a.idx),a.expands.push(a.tableData.data[a.idx].notice_log_id))})))})).catch((function(t){e.listLoading=!1,e.$message.error(t.message)}))},getLists:function(t){var e=this,a=this;a.listLoading=!0,a.tableFrom.page=t||a.tableFrom.page,Object(s["G"])(a.tableFrom).then((function(t){a.tableData.data=t.data.list,a.tableData.total=t.data.count,a.listLoading=!1})).catch((function(t){e.listLoading=!1,e.$message.error(t.message)}))},pageChange:function(t){this.tableFrom.page=t,this.getLists("")},handleSizeChange:function(t){this.tableFrom.limit=t,this.getLists(1)},handleRead:function(t){var e=this;0===t.is_read&&Object(s["H"])(t.notice_log_id).then((function(a){e.listLoading=!1,t.is_read=1,e.$route.params.id&&1===e.tableFrom.page&&(e.tableData.data[e.idx].is_read=1)})).catch((function(t){e.listLoading=!1,e.$message.error(t.message)}))}}},r=o,d=(a("de80"),a("2877")),c=Object(d["a"])(r,l,i,!1,null,"2a64c8fe",null);e["default"]=c.exports},de80:function(t,e,a){"use strict";a("2f15")}}]); \ No newline at end of file diff --git a/public/mer/js/chunk-412170ef.0ed401c5.js b/public/mer/js/chunk-412170ef.0ed401c5.js new file mode 100644 index 00000000..986620b7 --- /dev/null +++ b/public/mer/js/chunk-412170ef.0ed401c5.js @@ -0,0 +1 @@ +(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-412170ef"],{"26cd":function(t,e,a){"use strict";a.r(e);var i=function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("div",{staticClass:"divBox"},[a("el-card",{staticClass:"box-card mb20"},[a("div",{staticClass:"clearfix",attrs:{slot:"header"},slot:"header"},[a("router-link",{attrs:{to:{path:t.roterPre+"/accounts/reconciliation"}}},[a("el-button",{staticClass:"mr20 mb20",attrs:{size:"mini",icon:"el-icon-back"}},[t._v("返回")])],1)],1),t._v(" "),a("el-table",{directives:[{name:"loading",rawName:"v-loading",value:t.listLoading,expression:"listLoading"}],staticClass:"table",staticStyle:{width:"100%"},attrs:{data:t.tableData.data,size:"mini","highlight-current-row":""}},[a("el-table-column",{attrs:{type:"expand"},scopedSlots:t._u([{key:"default",fn:function(e){return[a("el-form",{staticClass:"demo-table-expand demo-table-expands",attrs:{"label-position":"left",inline:""}},[a("el-form-item",{attrs:{label:"收货人:"}},[a("span",[t._v(t._s(t._f("filterEmpty")(e.row.real_name)))])]),t._v(" "),a("el-form-item",{attrs:{label:"电话:"}},[a("span",[t._v(t._s(t._f("filterEmpty")(e.row.user_phone)))])]),t._v(" "),a("el-form-item",{attrs:{label:"地址:"}},[a("span",[t._v(t._s(t._f("filterEmpty")(e.row.user_address)))])]),t._v(" "),a("el-form-item",{attrs:{label:"商品总数:"}},[a("span",[t._v(t._s(t._f("filterEmpty")(e.row.total_num)))])]),t._v(" "),a("el-form-item",{attrs:{label:"支付状态:"}},[a("span",[t._v(t._s(t._f("payTypeFilter")(e.row.pay_type)))])]),t._v(" "),a("el-form-item",{attrs:{label:"支付时间:"}},[a("span",[t._v(t._s(t._f("filterEmpty")(e.row.pay_time)))])]),t._v(" "),a("el-form-item",{attrs:{label:"对账备注:"}},[a("span",[t._v(t._s(t._f("filterEmpty")(e.row.admin_mark)))])])],1)]}}])}),t._v(" "),a("el-table-column",{attrs:{prop:"order_id",label:"ID",width:"60"}}),t._v(" "),a("el-table-column",{attrs:{label:"是否对账","min-width":"100"},scopedSlots:t._u([{key:"default",fn:function(e){return[a("span",[t._v(t._s(t._f("reconciliationFilter")(e.row.reconciliation_id)))])]}}])}),t._v(" "),a("el-table-column",{attrs:{prop:"order_sn",label:"订单编号","min-width":"190"}}),t._v(" "),a("el-table-column",{attrs:{label:"商品信息","min-width":"330"},scopedSlots:t._u([{key:"default",fn:function(e){return t._l(e.row.orderProduct,(function(e,i){return a("div",{key:i,staticClass:"tabBox acea-row row-middle"},[a("div",{staticClass:"demo-image__preview"},[a("el-image",{attrs:{src:e.cart_info.product.image,"preview-src-list":[e.cart_info.product.image]}})],1),t._v(" "),a("span",{staticClass:"tabBox_tit"},[t._v(t._s(e.cart_info.product.store_name+" | ")+t._s(e.cart_info.productAttr.sku))]),t._v(" "),a("span",{staticClass:"tabBox_pice"},[t._v(t._s("¥"+e.cart_info.productAttr.price+" x "+e.product_num))])])}))}}])}),t._v(" "),a("el-table-column",{attrs:{label:"商品总价","min-width":"150"},scopedSlots:t._u([{key:"default",fn:function(e){return[a("span",[t._v(t._s(t.getTotal(e.row.orderProduct)))])]}}])}),t._v(" "),a("el-table-column",{attrs:{label:"佣金金额","min-width":"100"},scopedSlots:t._u([{key:"default",fn:function(e){return[a("span",[t._v(t._s(Number(e.row.extension_one)+Number(e.row.extension_two)))])]}}])}),t._v(" "),a("el-table-column",{attrs:{prop:"pay_price",label:"实际支付","min-width":"100"}}),t._v(" "),a("el-table-column",{attrs:{prop:"total_postage",label:"邮费","min-width":"100"}}),t._v(" "),a("el-table-column",{attrs:{prop:"order_rate",label:"手续费","min-width":"100"}}),t._v(" "),a("el-table-column",{attrs:{prop:"create_time",label:"下单时间","min-width":"150"}})],1),t._v(" "),a("div",{staticClass:"block mb20"},[a("el-pagination",{attrs:{"page-sizes":[10,20,30,40],"page-size":t.tableFrom.limit,"current-page":t.tableFrom.page,layout:"total, sizes, prev, pager, next, jumper",total:t.tableData.total},on:{"size-change":t.handleSizeChange,"current-change":t.pageChange}})],1)],1),t._v(" "),a("el-card",{staticClass:"box-card"},[a("el-table",{directives:[{name:"loading",rawName:"v-loading",value:t.listLoading,expression:"listLoading"}],staticClass:"table",staticStyle:{width:"100%"},attrs:{data:t.tableDataRefund.data,size:"mini","highlight-current-row":""}},[a("el-table-column",{attrs:{type:"expand"},scopedSlots:t._u([{key:"default",fn:function(e){return[a("el-form",{staticClass:"demo-table-expand demo-table-expandss",attrs:{"label-position":"left",inline:""}},[a("el-form-item",{attrs:{label:"订单号:"}},[a("span",[t._v(t._s(e.row.order.order_sn))])]),t._v(" "),a("el-form-item",{attrs:{label:"退款商品总价:"}},[a("span",[t._v(t._s(t.getTotalRefund(e.row.refundProduct)))])]),t._v(" "),a("el-form-item",{attrs:{label:"退款商品总数:"}},[a("span",[t._v(t._s(e.row.refund_num))])]),t._v(" "),a("el-form-item",{attrs:{label:"申请退款时间:"}},[a("span",[t._v(t._s(t._f("filterEmpty")(e.row.create_time)))])]),t._v(" "),a("el-form-item",{attrs:{label:"对账备注:"}},[a("span",[t._v(t._s(t._f("filterEmpty")(e.row.admin_mark)))])])],1)]}}])}),t._v(" "),a("el-table-column",{attrs:{prop:"refund_order_id",label:"ID",width:"60"}}),t._v(" "),a("el-table-column",{attrs:{label:"退款单号","min-width":"170"},scopedSlots:t._u([{key:"default",fn:function(e){return[a("span",{staticStyle:{display:"block"},domProps:{textContent:t._s(e.row.refund_order_sn)}}),t._v(" "),a("span",{directives:[{name:"show",rawName:"v-show",value:e.row.is_del>0,expression:"scope.row.is_del > 0"}],staticStyle:{color:"#ED4014",display:"block"}},[t._v("用户已删除")])]}}])}),t._v(" "),a("el-table-column",{attrs:{label:"是否对账","min-width":"100"},scopedSlots:t._u([{key:"default",fn:function(e){return[a("span",[t._v(t._s(t._f("reconciliationFilter")(e.row.reconciliation_id)))])]}}])}),t._v(" "),a("el-table-column",{attrs:{prop:"user.nickname",label:"用户信息","min-width":"130"}}),t._v(" "),a("el-table-column",{attrs:{prop:"refund_price",label:"退款金额","min-width":"130"}}),t._v(" "),a("el-table-column",{attrs:{prop:"nickname",label:"商品信息","min-width":"330"},scopedSlots:t._u([{key:"default",fn:function(e){return t._l(e.row.refundProduct,(function(e,i){return a("div",{key:i,staticClass:"tabBox acea-row row-middle"},[a("div",{staticClass:"demo-image__preview"},[a("el-image",{attrs:{src:e.product.cart_info.product.image,"preview-src-list":[e.product.cart_info.product.image]}})],1),t._v(" "),a("span",{staticClass:"tabBox_tit"},[t._v(t._s(e.product.cart_info.product.store_name+" | ")+t._s(e.product.cart_info.productAttr.sku))]),t._v(" "),a("span",{staticClass:"tabBox_pice"},[t._v(t._s("¥"+e.product.cart_info.productAttr.price+" x "+e.product.product_num))])])}))}}])}),t._v(" "),a("el-table-column",{attrs:{prop:"serviceScore",label:"订单状态","min-width":"250"},scopedSlots:t._u([{key:"default",fn:function(e){return[a("span",{staticStyle:{display:"block"}},[t._v(t._s(t._f("orderRefundFilter")(e.row.status)))]),t._v(" "),a("span",{staticStyle:{display:"block"}},[t._v("退款原因:"+t._s(e.row.refund_message))]),t._v(" "),a("span",{staticStyle:{display:"block"}},[t._v("状态变更时间:"+t._s(e.row.status_time))])]}}])})],1),t._v(" "),a("div",{staticClass:"block"},[a("el-pagination",{attrs:{"page-sizes":[20,40,60,80],"page-size":t.tableFrom.limit,"current-page":t.tableFrom.page,layout:"total, sizes, prev, pager, next, jumper",total:t.tableDataRefund.total},on:{"size-change":t.handleSizeChangeRefund,"current-change":t.pageChangeRefund}})],1)],1)],1)},s=[],r=a("2801"),n=a("83d6"),l={name:"Record",data:function(){return{roterPre:n["roterPre"],chkName:"",chkNameRefund:"",isIndeterminate:!0,resource:[],visible:!1,timeVal:[],pickerOptions:{shortcuts:[{text:"最近一周",onClick:function(t){var e=new Date,a=new Date;a.setTime(a.getTime()-6048e5),t.$emit("pick",[a,e])}},{text:"最近一个月",onClick:function(t){var e=new Date,a=new Date;a.setTime(a.getTime()-2592e6),t.$emit("pick",[a,e])}},{text:"最近三个月",onClick:function(t){var e=new Date,a=new Date;a.setTime(a.getTime()-7776e6),t.$emit("pick",[a,e])}}]},listLoading:!0,tableData:{data:[],total:0},tableDataRefund:{data:[],total:0},tableFrom:{page:1,limit:10},ids:[],idsRefund:[]}},mounted:function(){this.getList(),this.getRefundList(),0===this.$route.params.type&&this.setTagsViewTitle()},created:function(){this.tempRoute=Object.assign({},this.$route)},methods:{isDisabled:function(t){return 3===t.status},onchangeTime:function(t){this.timeVal=t,this.tableFrom.data=this.timeVal?this.timeVal.join("-"):"",this.getList(),this.getRefundList()},getTotalRefund:function(t){for(var e=0,a=0;ai)&&c.mergeCells(C(a)+e+":"+C(a)+t)}function w(e){if(!Object(i["isEmpty"])(e))if(Array.isArray(e))for(var t=0;t0?r("el-tabs",{on:{"tab-click":function(t){e.getList(1),e.getCardList(),e.getHeaderList()}},model:{value:e.tableFrom.order_type,callback:function(t){e.$set(e.tableFrom,"order_type",t)},expression:"tableFrom.order_type"}},e._l(e.headeNum,(function(e,t){return r("el-tab-pane",{key:t,attrs:{name:e.order_type.toString(),label:e.title+"("+e.count+")"}})})),1):e._e(),e._v(" "),r("cards-data",{attrs:{"card-lists":e.cardLists}})],1),e._v(" "),r("el-table",{directives:[{name:"loading",rawName:"v-loading",value:e.listLoading,expression:"listLoading"}],staticClass:"table",staticStyle:{width:"100%"},attrs:{data:e.tableData.data,size:"mini","highlight-current-row":"","cell-class-name":e.addTdClass}},[r("el-table-column",{attrs:{type:"expand"},scopedSlots:e._u([{key:"default",fn:function(t){return[r("el-form",{staticClass:"demo-table-expand",attrs:{"label-position":"left",inline:""}},[r("el-form-item",{attrs:{label:"商品总价:"}},[r("span",[e._v(e._s(e._f("filterEmpty")(t.row.total_price)))])]),e._v(" "),r("el-form-item",{attrs:{label:"下单时间:"}},[r("span",[e._v(e._s(t.row.create_time))])]),e._v(" "),r("el-form-item",{attrs:{label:"用户备注:"}},[r("span",{staticStyle:{display:"inline-block",width:"200px"}},[e._v(e._s(e._f("filterEmpty")(t.row.mark)))])]),e._v(" "),r("el-form-item",{attrs:{label:"商家备注:"}},[r("span",[e._v(e._s(e._f("filterEmpty")(t.row.remark)))])])],1)]}}])}),e._v(" "),r("el-table-column",{attrs:{width:"50"},scopedSlots:e._u([{key:"header",fn:function(t){return[r("el-popover",{staticClass:"tabPop",attrs:{placement:"top-start",width:"100",trigger:"hover"}},[r("div",[r("span",{staticClass:"spBlock onHand",class:{check:"dan"===e.chkName},on:{click:function(r){return e.onHandle("dan",t.$index)}}},[e._v("选中本页")]),e._v(" "),r("span",{staticClass:"spBlock onHand",class:{check:"duo"===e.chkName},on:{click:function(t){return e.onHandle("duo")}}},[e._v("选中全部")])]),e._v(" "),r("el-checkbox",{attrs:{slot:"reference",value:"dan"===e.chkName&&e.checkedPage.indexOf(e.tableFrom.page)>-1||"duo"===e.chkName},on:{change:e.changeType},slot:"reference"})],1)]}},{key:"default",fn:function(t){return[r("el-checkbox",{attrs:{value:e.checkedIds.indexOf(t.row.order_id)>-1||"duo"===e.chkName&&-1===e.noChecked.indexOf(t.row.order_id)},on:{change:function(r){return e.changeOne(r,t.row)}}})]}}])}),e._v(" "),r("el-table-column",{attrs:{label:"订单编号","min-width":"170"},scopedSlots:e._u([{key:"default",fn:function(t){return[r("span",{staticStyle:{display:"block"},domProps:{textContent:e._s(t.row.order_sn)}}),e._v(" "),r("span",{directives:[{name:"show",rawName:"v-show",value:t.row.is_del>0,expression:"scope.row.is_del > 0"}],staticStyle:{color:"#ED4014",display:"block"}},[e._v("用户已删除")])]}}])}),e._v(" "),r("el-table-column",{attrs:{label:"订单类型","min-width":"100"},scopedSlots:e._u([{key:"default",fn:function(t){return[r("span",[e._v(e._s(1==t.row.is_virtual?"虚拟订单":0==t.row.order_type?"普通订单":"核销订单"))])]}}])}),e._v(" "),r("el-table-column",{attrs:{label:"活动类型","min-width":"100"},scopedSlots:e._u([{key:"default",fn:function(t){return[4!=t.row.activity_type?r("span",[e._v(e._s(1===t.row.activity_type?"秒杀":2===t.row.activity_type?"预售":3===t.row.activity_type?"助力":"--"))]):r("span",[e._v("拼团订单 "),t.row.groupUser&&t.row.groupUser.groupBuying?r("span",[e._v("-"+e._s(e._f("activityOrderStatus")(t.row.groupUser.groupBuying.status)))]):e._e()])]}}])}),e._v(" "),r("el-table-column",{attrs:{prop:"real_name",label:"收货人/订购人","min-width":"130"}}),e._v(" "),r("el-table-column",{attrs:{label:"商品信息","min-width":"330"},scopedSlots:e._u([{key:"default",fn:function(t){return e._l(t.row.orderProduct,(function(i,a){return r("div",{key:a,staticClass:"tabBox acea-row row-middle"},[r("div",{staticClass:"demo-image__preview"},[r("el-image",{attrs:{src:i.cart_info.product.image,"preview-src-list":[i.cart_info.product.image]}})],1),e._v(" "),r("span",{staticClass:"tabBox_tit"},[e._v(e._s(i.cart_info.product.store_name+" | ")+e._s(i.cart_info.productAttr.sku))]),e._v(" "),r("span",{staticClass:"tabBox_pice"},[2===t.row.activity_type&&i.cart_info.productPresellAttr?r("span",[e._v(e._s("¥"+i.cart_info.productPresellAttr.presell_price+" x "+i.product_num))]):3===t.row.activity_type&&i.cart_info.productAssistAttr?r("span",[e._v(e._s("¥"+i.cart_info.productAssistAttr.assist_price+" x "+i.product_num))]):r("span",[e._v(e._s("¥"+i.cart_info.productAttr.price+" x "+i.product_num))]),e._v(" "),i.refund_num=0?r("em",{staticStyle:{color:"red","font-style":"normal"}},[e._v("(-"+e._s(i.product_num-i.refund_num)+")")]):e._e()])])}))}}])}),e._v(" "),r("el-table-column",{attrs:{label:"实际支付","min-width":"100"},scopedSlots:e._u([{key:"default",fn:function(t){return[r("span",[e._v(e._s(t.row.pay_price))]),e._v(" "),t.row.finalOrder?r("p",[e._v("尾款:"+e._s(t.row.finalOrder.pay_price))]):e._e()]}}])}),e._v(" "),r("el-table-column",{attrs:{label:"订单佣金","min-width":"100"},scopedSlots:e._u([{key:"default",fn:function(t){return[r("span",[e._v(e._s((parseFloat(t.row.extension_one)+parseFloat(t.row.extension_two)+parseFloat(t.row.refund_extension_one)+parseFloat(t.row.refund_extension_two)).toFixed(2)))]),e._v(" "),t.row.refund_extension_one>0||t.row.refund_extension_two>0?r("em",{staticStyle:{color:"red","font-style":"normal"}},[e._v("(-"+e._s((parseFloat(t.row.refund_extension_one)+parseFloat(t.row.refund_extension_two)).toFixed(2))+")")]):e._e()]}}])}),e._v(" "),r("el-table-column",{attrs:{label:"支付类型","min-width":"80"},scopedSlots:e._u([{key:"default",fn:function(t){return[1===t.row.paid?r("span",[e._v(e._s(e._f("orderPayType")(t.row.pay_type)))]):r("span",[e._v("--")])]}}])}),e._v(" "),r("el-table-column",{attrs:{label:"支付状态","min-width":"80"},scopedSlots:e._u([{key:"default",fn:function(t){return[r("span",[e._v(e._s(0===t.row.paid?"未支付":"已支付"))])]}}])}),e._v(" "),r("el-table-column",{attrs:{label:"订单状态","min-width":"100"},scopedSlots:e._u([{key:"default",fn:function(t){return[0===t.row.is_del?r("span",[0===t.row.paid?r("span",[e._v("待付款")]):r("span",[0===t.row.order_type||2===t.row.order_type?r("span",[e._v(e._s(e._f("orderStatusFilter")(t.row.status)))]):r("span",[e._v(e._s(e._f("takeOrderStatusFilter")(t.row.status)))])])]):r("span",[e._v("已删除")])]}}])}),e._v(" "),r("el-table-column",{attrs:{prop:"create_time",label:"下单时间","min-width":"130"}}),e._v(" "),r("el-table-column",{attrs:{label:"推广人","min-width":"100"},scopedSlots:e._u([{key:"default",fn:function(t){return[r("span",[e._v(e._s(t.row.spread&&t.row.spread.nickname||"无"))])]}}])}),e._v(" "),r("el-table-column",{attrs:{label:"上级推广人","min-width":"100"},scopedSlots:e._u([{key:"default",fn:function(t){return[r("span",[e._v(e._s(t.row.TopSpread&&t.row.TopSpread.nickname||"无"))])]}}])}),e._v(" "),r("el-table-column",{key:"8",attrs:{label:"操作","min-width":"150",fixed:"right",align:"left"},scopedSlots:e._u([{key:"default",fn:function(t){return[e.orderFilter(t.row)?r("el-button",{attrs:{type:"text",size:"small"},on:{click:function(r){return e.onRefundDetail(t.row.order_sn)}}},[e._v("查看退款单")]):e._e(),e._v(" "),0===t.row.paid&&0===t.row.is_del&&2!=t.row.activity_type?r("el-button",{staticClass:"mr10",attrs:{type:"text",size:"small"},on:{click:function(r){return e.edit(t.row.order_id)}}},[e._v("编辑")]):e._e(),e._v(" "),0!=t.row.order_type&&2!=t.row.order_type||0!==t.row.status||1!==t.row.paid?e._e():r("el-button",{staticClass:"mr10",attrs:{type:"text",size:"small"},on:{click:function(r){return e.send(t.row,t.row.order_id)}}},[e._v("发送货")]),e._v(" "),r("el-button",{staticClass:"mr10",attrs:{type:"text",size:"small"},on:{click:function(r){return e.onOrderDetails(t.row.order_id)}}},[e._v("订单详情")]),e._v(" "),0!==t.row.is_del?r("el-button",{staticClass:"mr10",attrs:{type:"text",size:"small"},nativeOn:{click:function(r){return e.handleDelete(t.row,t.$index)}}},[e._v("删除")]):e._e(),e._v(" "),1==t.row.order_type&&0===t.row.status&&1===t.row.paid?r("el-button",{staticClass:"mr10",attrs:{type:"text",size:"small"},nativeOn:{click:function(r){return e.orderCancellation(t.row.verify_code)}}},[e._v("去核销")]):e._e()]}}])})],1),e._v(" "),r("div",{staticClass:"block"},[r("el-pagination",{attrs:{"page-sizes":[20,40,60,80],"page-size":e.tableFrom.limit,"current-page":e.tableFrom.page,layout:"total, sizes, prev, pager, next, jumper",total:e.tableData.total},on:{"size-change":e.handleSizeChange,"current-change":e.pageChange}})],1)],1),e._v(" "),r("el-dialog",{attrs:{title:"操作记录",visible:e.dialogVisible,width:"700px"},on:{"update:visible":function(t){e.dialogVisible=t}}},[r("el-table",{directives:[{name:"loading",rawName:"v-loading",value:e.LogLoading,expression:"LogLoading"}],staticStyle:{width:"100%"},attrs:{border:"",data:e.tableDataLog.data}},[r("el-table-column",{attrs:{prop:"order_id",align:"center",label:"订单ID","min-width":"80"}}),e._v(" "),r("el-table-column",{attrs:{prop:"change_message",label:"操作记录",align:"center","min-width":"280"}}),e._v(" "),r("el-table-column",{attrs:{prop:"change_time",label:"操作时间",align:"center","min-width":"280"}})],1),e._v(" "),r("div",{staticClass:"block"},[r("el-pagination",{attrs:{"page-sizes":[20,40,60,80],"page-size":e.tableFromLog.limit,"current-page":e.tableFromLog.page,layout:"total, sizes, prev, pager, next, jumper",total:e.tableDataLog.total},on:{"size-change":e.handleSizeChangeLog,"current-change":e.pageChangeLog}})],1)],1),e._v(" "),r("el-dialog",{attrs:{title:"修改订单",visible:e.editVisible,width:"700px"},on:{"update:visible":function(t){e.editVisible=t}}},[r("el-form",{ref:"formValidate",attrs:{model:e.formValidate,"label-width":"120px"},nativeOn:{submit:function(e){e.preventDefault()}}},[r("el-form-item",{attrs:{label:"订单总价:"}},[r("el-input-number",{attrs:{min:0,placeholder:"请输入订单总价"},on:{change:e.changePrice},model:{value:e.formValidate.total_price,callback:function(t){e.$set(e.formValidate,"total_price",t)},expression:"formValidate.total_price"}})],1),e._v(" "),r("el-form-item",{attrs:{label:"实际支付邮费:"}},[r("el-input-number",{attrs:{min:0,placeholder:"请输入订单油费"},on:{change:e.changePrice},model:{value:e.formValidate.pay_postage,callback:function(t){e.$set(e.formValidate,"pay_postage",t)},expression:"formValidate.pay_postage"}})],1),e._v(" "),r("el-form-item",{attrs:{label:"优惠金额"}},[r("span",[e._v(e._s(e.formValidate.coupon_price))])]),e._v(" "),r("el-form-item",{attrs:{label:"实际支付金额:"}},[r("span",[e._v(e._s(e.formValidate.pay_price))])])],1),e._v(" "),r("span",{staticClass:"dialog-footer",attrs:{slot:"footer"},slot:"footer"},[r("el-button",{attrs:{type:"primary"},on:{click:e.editConfirm}},[e._v("确定")])],1)],1),e._v(" "),r("el-dialog",{attrs:{title:e.isBatch?"批量发货":"订单发送货",visible:e.sendVisible,width:"800px","before-close":e.handleClose},on:{"update:visible":function(t){e.sendVisible=t}}},[r("el-form",{ref:"shipment",attrs:{model:e.shipment,rules:e.rules,"label-width":"120px"},nativeOn:{submit:function(e){e.preventDefault()}}},[e.isResend&&3!=e.noLogistics&&2!=e.tableFrom.order_type?r("el-form-item",{attrs:{label:1==e.shipment.delivery_type||4==e.shipment.delivery_type?"原快递公司:":"送货人姓名:"}},[r("span",[e._v(e._s(e.original.delivery_name))])]):e._e(),e._v(" "),e.isResend&&3!=e.noLogistics&&2!=e.tableFrom.order_type?r("el-form-item",{attrs:{label:1==e.shipment.delivery_type||4==e.shipment.delivery_type?"原快递单号:":"送货人手机号:"}},[r("span",[e._v(e._s(e.original.delivery_id))])]):e._e(),e._v(" "),r("el-form-item",{attrs:{label:"选择类型:",prop:"delivery_type"}},[r("el-radio-group",{on:{change:e.changeSend},model:{value:e.shipment.delivery_type,callback:function(t){e.$set(e.shipment,"delivery_type",t)},expression:"shipment.delivery_type"}},[e.isBatch||2==e.tableFrom.order_type||1==e.orderType?e._e():r("el-radio",{attrs:{label:1}},[e._v("手动发货")]),e._v(" "),r("el-radio",{staticClass:"radio",attrs:{label:3}},[e._v(" "+e._s(1==e.orderType?"虚拟发货":"无需物流"))]),e._v(" "),1==e.isDump&&2!=e.tableFrom.order_type&&1!=e.orderType?r("el-radio",{staticClass:"radio",attrs:{label:4}},[e._v("电子面单打印")]):e._e(),e._v(" "),2!=e.tableFrom.order_type&&1!=e.orderType?r("el-radio",{attrs:{label:2}},[e._v("自己配送")]):e._e(),e._v(" "),2==e.tableFrom.order_type||1==e.orderType||e.isBatch?e._e():r("el-radio",{attrs:{label:5}},[e._v("同城配送")])],1)],1),e._v(" "),5==e.shipment.delivery_type&&2!=e.tableFrom.order_type&&1!=e.orderType?r("el-form-item",{attrs:{label:"选择发货点:",prop:"station_id"}},[r("el-select",{staticClass:"filter-item selWidth mr20",attrs:{placeholder:"请选择配送发货点"},model:{value:e.shipment.station_id,callback:function(t){e.$set(e.shipment,"station_id",t)},expression:"shipment.station_id"}},e._l(e.storeList,(function(e,t){return r("el-option",{key:e.value+t,attrs:{label:e.label,value:e.value}})})),1)],1):e._e(),e._v(" "),1!=e.shipment.delivery_type&&4!=e.shipment.delivery_type||2==e.tableFrom.order_type||1==e.orderType?e._e():r("el-form-item",{attrs:{label:"快递公司:",prop:"delivery_name"}},[r("el-select",{staticClass:"filter-item selWidth mr20",attrs:{filterable:"",placeholder:"请选择快递公司"},on:{change:function(t){return e.getTempsLst(e.shipment.delivery_name)}},model:{value:e.shipment.delivery_name,callback:function(t){e.$set(e.shipment,"delivery_name",t)},expression:"shipment.delivery_name"}},e._l(e.deliveryList,(function(e){return r("el-option",{key:e.value,attrs:{label:e.label,value:e.value}})})),1)],1),e._v(" "),5==e.shipment.delivery_type&&2!=e.tableFrom.order_type&&1!=e.orderType?r("el-form-item",{attrs:{label:"包裹重量(kg):",prop:"cargo_weight"}},[r("el-input-number",{attrs:{placeholder:"请输入包裹重量"},model:{value:e.shipment.cargo_weight,callback:function(t){e.$set(e.shipment,"cargo_weight",t)},expression:"shipment.cargo_weight"}})],1):e._e(),e._v(" "),5==e.shipment.delivery_type&&2!=e.tableFrom.order_type&&1!=e.orderType?r("el-form-item",{attrs:{label:"配送备注:"}},[r("el-input",{attrs:{type:"textarea",placeholder:"请输入配送单备注"},model:{value:e.shipment.mark,callback:function(t){e.$set(e.shipment,"mark",t)},expression:"shipment.mark"}})],1):e._e(),e._v(" "),1==e.shipment.delivery_type&&2!=e.tableFrom.order_type&&1!=e.orderType?r("el-form-item",{attrs:{label:"快递单号:",prop:"delivery_id"}},[r("el-input",{attrs:{placeholder:"请输入快递单号"},model:{value:e.shipment.delivery_id,callback:function(t){e.$set(e.shipment,"delivery_id",t)},expression:"shipment.delivery_id"}})],1):e._e(),e._v(" "),4==e.shipment.delivery_type&&2!=e.tableFrom.order_type&&1!=e.orderType?r("el-form-item",{attrs:{label:"电子面单:",prop:"temp_id"}},[r("el-select",{staticClass:"filter-item selWidth mr20",attrs:{placeholder:"请选择电子面单"},model:{value:e.shipment.temp_id,callback:function(t){e.$set(e.shipment,"temp_id",t)},expression:"shipment.temp_id"}},e._l(e.eleTempsLst,(function(e,t){return r("el-option",{key:e.temp_id+t,attrs:{label:e.title,value:e.temp_id}})})),1),e._v(" "),r("el-button",{attrs:{type:"text"},on:{click:function(t){return e.getPicture()}}},[e._v("预览")])],1):e._e(),e._v(" "),4==e.shipment.delivery_type&&2!=e.tableFrom.order_type&&1!=e.orderType?r("el-form-item",{attrs:{label:"寄件人姓名:",prop:"from_name"}},[r("el-input",{attrs:{placeholder:"请输入寄件人姓名"},model:{value:e.shipment.from_name,callback:function(t){e.$set(e.shipment,"from_name",t)},expression:"shipment.from_name"}})],1):e._e(),e._v(" "),4==e.shipment.delivery_type&&2!=e.tableFrom.order_type&&1!=e.orderType?r("el-form-item",{attrs:{label:"寄件人电话:",prop:"from_tel"}},[r("el-input",{attrs:{placeholder:"请输入寄件人电话"},model:{value:e.shipment.from_tel,callback:function(t){e.$set(e.shipment,"from_tel",t)},expression:"shipment.from_tel"}})],1):e._e(),e._v(" "),2==e.shipment.delivery_type&&2!=e.tableFrom.order_type&&1!=e.orderType?r("el-form-item",{attrs:{label:"送货人姓名:",prop:"to_name"}},[r("el-input",{attrs:{maxlength:"10",placeholder:"请输入送货人姓名"},model:{value:e.shipment.to_name,callback:function(t){e.$set(e.shipment,"to_name",t)},expression:"shipment.to_name"}})],1):e._e(),e._v(" "),2==e.shipment.delivery_type&&2!=e.tableFrom.order_type&&2!=e.orderType?r("el-form-item",{attrs:{label:"送货人手机号:",prop:"to_phone"}},[r("el-input",{attrs:{placeholder:"请输入送货人手机号"},model:{value:e.shipment.to_phone,callback:function(t){e.$set(e.shipment,"to_phone",t)},expression:"shipment.to_phone"}})],1):e._e(),e._v(" "),4==e.shipment.delivery_type&&2!=e.tableFrom.order_type&&1!=e.orderType?r("el-form-item",{attrs:{label:"寄件人地址:",prop:"from_addr"}},[r("el-input",{attrs:{type:"textarea",placeholder:"请输入寄件人地址"},model:{value:e.shipment.from_addr,callback:function(t){e.$set(e.shipment,"from_addr",t)},expression:"shipment.from_addr"}})],1):e._e(),e._v(" "),4!=e.shipment.type&&2!=e.activityType&&(e.productList.length>1||e.productNum>1)?r("el-form-item",{attrs:{label:"分单发货:"}},[r("el-switch",{attrs:{"active-value":1,"inactive-value":0,"active-text":"开启","inactive-text":"关闭"},model:{value:e.shipment.is_split,callback:function(t){e.$set(e.shipment,"is_split",t)},expression:"shipment.is_split"}}),e._v(" "),r("p",{staticClass:"area-desc"},[e._v("可选择表格中的商品单独发货,发货后会生成新的订单且不能撤回,请谨慎操作!")])],1):e._e(),e._v(" "),1==e.shipment.is_split&&2!=e.tableFrom.order_type&&(e.productList.length>1||e.productNum>1)?r("el-form-item",{attrs:{label:""}},[r("el-table",{ref:"multipleSelection",attrs:{data:e.productList,"tooltip-effect":"dark",size:"mini","row-key":function(e){return e.product_id}},on:{"selection-change":e.handleSelectionChange}},[r("el-table-column",{attrs:{align:"center",type:"selection","reserve-selection":!0,"min-width":"50"}}),e._v(" "),r("el-table-column",{attrs:{align:"center",label:"商品信息","min-width":"200"},scopedSlots:e._u([{key:"default",fn:function(t){return[r("div",{staticClass:"acea-row",staticStyle:{"align-items":"center"}},[r("div",{staticClass:"demo-image__preview"},[r("el-image",{attrs:{src:t.row.cart_info.product.image,"preview-src-list":[t.row.cart_info.product.image]}})],1),e._v(" "),r("span",{staticClass:"priceBox",staticStyle:{width:"150px"}},[e._v(e._s(t.row.cart_info.product.store_name))])])]}}],null,!1,1334329387)}),e._v(" "),r("el-table-column",{attrs:{align:"center",label:"规格","min-width":"80"},scopedSlots:e._u([{key:"default",fn:function(t){return[r("span",{staticClass:"priceBox"},[e._v(e._s(t.row.cart_info.productAttr.sku))])]}}],null,!1,2489556760)}),e._v(" "),r("el-table-column",{attrs:{align:"center",label:"商品售价","min-width":"80"},scopedSlots:e._u([{key:"default",fn:function(t){return[r("span",{staticClass:"priceBox"},[e._v(e._s(t.row.cart_info.productAttr.price))])]}}],null,!1,3535341656)}),e._v(" "),r("el-table-column",{attrs:{align:"center",label:"总数","min-width":"80"},scopedSlots:e._u([{key:"default",fn:function(t){return[r("span",{staticClass:"priceBox"},[e._v(e._s(t.row.stock_num))])]}}],null,!1,13674865)}),e._v(" "),r("el-table-column",{attrs:{label:"待发数量",align:"center","min-width":"120"},scopedSlots:e._u([{key:"default",fn:function(t){return[r("el-input",{staticClass:"priceBox",attrs:{type:"number",min:0,max:t.row.refund_num},on:{blur:function(r){return e.limitCount(t.row)}},model:{value:t.row["product_num_input"],callback:function(r){e.$set(t.row,"product_num_input",r)},expression:"scope.row['product_num_input']"}})]}}],null,!1,4294881726)})],1)],1):e._e(),e._v(" "),r("el-form-item",{attrs:{label:"备注:",prop:"remark"}},[r("el-input",{attrs:{type:"textarea",placeholder:"请输入备注"},model:{value:e.shipment.remark,callback:function(t){e.$set(e.shipment,"remark",t)},expression:"shipment.remark"}})],1)],1),e._v(" "),r("span",{staticClass:"dialog-footer",attrs:{slot:"footer"},slot:"footer"},[r("el-button",{on:{click:e.handleClose}},[e._v("取 消")]),e._v(" "),r("el-button",{attrs:{type:"primary"},on:{click:function(t){return e.submitForm("shipment")}}},[e._v("提交")])],1)],1),e._v(" "),e.pictureVisible?r("el-dialog",{attrs:{visible:e.pictureVisible,width:"500px"},on:{"update:visible":function(t){e.pictureVisible=t}}},[r("img",{staticClass:"pictures",attrs:{src:e.pictureUrl}})]):e._e(),e._v(" "),r("order-detail",{ref:"orderDetail",attrs:{orderId:e.orderId,drawer:e.drawer},on:{closeDrawer:e.closeDrawer,changeDrawer:e.changeDrawer,reSend:e.reSend,send:e.send,getList:e.getList}}),e._v(" "),r("file-list",{ref:"exportList"}),e._v(" "),r("delivery-record",{ref:"deliveryList"}),e._v(" "),r("order-cancellate",{ref:"orderCancellate",on:{getList:e.getList}})],1)},a=[],n=(r("7f7f"),r("c5f6"),r("c7eb")),s=(r("6b54"),r("96cf"),r("1da1")),o=(r("ac6a"),r("28a5"),r("f8b7")),l=r("2e83"),c=r("90e7"),d=function(){var e=this,t=e.$createElement,i=e._self._c||t;return i("div",[i("el-drawer",{attrs:{"with-header":!1,visible:e.drawer,size:"1000px",direction:e.direction,"before-close":e.handleClose},on:{"update:visible":function(t){e.drawer=t}}},[i("div",{directives:[{name:"loading",rawName:"v-loading",value:e.loading,expression:"loading"}]},[i("div",{staticClass:"head"},[i("div",{staticClass:"full"},[i("img",{staticClass:"order_icon",attrs:{src:e.orderImg,alt:""}}),e._v(" "),i("div",{staticClass:"text"},[i("div",{staticClass:"title"},[e._v(e._s(0==e.orderDetailList.order_type?"普通订单":"核销订单"))]),e._v(" "),i("div",[i("span",{staticClass:"mr20"},[e._v("订单编号:"+e._s(e.orderDetailList.order_sn))])])]),e._v(" "),i("div",[0!=e.orderDetailList.order_type&&0==e.orderDetailList.status?i("el-button",{attrs:{type:"primary",size:"small"},on:{click:e.orderCancellation}},[e._v("订单核销")]):e._e(),e._v(" "),0!=e.orderDetailList.order_type&&2!=e.orderDetailList.order_type||0!==e.orderDetailList.status||1!==e.orderDetailList.paid?e._e():i("el-button",{attrs:{type:"primary",size:"small"},on:{click:e.send}},[e._v("发送货")]),e._v(" "),0==e.orderDetailList.order_type&&1==e.orderDetailList.paid?i("el-button",{attrs:{type:"success",size:"small"},on:{click:e.printOrder}},[e._v("小票打印")]):e._e(),e._v(" "),i("el-dropdown",{on:{command:e.handleCommand}},[i("el-button",{attrs:{icon:"el-icon-more",size:"small"}}),e._v(" "),i("el-dropdown-menu",{attrs:{slot:"dropdown"},slot:"dropdown"},[i("el-dropdown-item",{attrs:{command:"mark"}},[e._v("订单备注")]),e._v(" "),0==e.orderDetailList.order_type&&1===e.orderDetailList.status&&1===e.orderDetailList.paid?i("el-dropdown-item",{attrs:{command:"modify"}},[e._v("修改发货信息")]):e._e()],1)],1)],1)]),e._v(" "),i("ul",{staticClass:"list"},[i("li",{staticClass:"item"},[i("div",{staticClass:"title"},[e._v("订单状态")]),e._v(" "),i("div",[0!==e.orderDetailList.order_type||e.orderDetailList.pay_time?e._e():i("div",{staticClass:"value1"},[e._v("待付款")]),e._v(" "),0===e.orderDetailList.order_type&&e.orderDetailList.pay_time?i("div",{staticClass:"value1"},[i("span",[e._v(e._s(e._f("orderStatusFilter")(e.orderDetailList.status)))])]):e._e(),e._v(" "),1===e.orderDetailList.order_type&&e.orderDetailList.pay_time?i("div",{staticClass:"value1"},[i("span",[e._v(e._s(e._f("cancelOrderStatusFilter")(e.orderDetailList.status)))])]):e._e()])]),e._v(" "),i("li",{staticClass:"item"},[i("div",{staticClass:"title"},[e._v("实际支付")]),e._v(" "),i("div",[e._v("¥ "+e._s(e.orderDetailList.pay_price))])]),e._v(" "),i("li",{staticClass:"item"},[i("div",{staticClass:"title"},[e._v("支付方式")]),e._v(" "),i("div",[e._v(e._s(e._f("payTypeFilter")(e.orderDetailList.pay_type)))])]),e._v(" "),i("li",{staticClass:"item"},[i("div",{staticClass:"title"},[e._v("支付时间")]),e._v(" "),i("div",[e._v(e._s(e.orderDetailList.create_time))])])])]),e._v(" "),i("el-tabs",{attrs:{type:"border-card"},on:{"tab-click":e.tabClick},model:{value:e.activeName,callback:function(t){e.activeName=t},expression:"activeName"}},[i("el-tab-pane",{attrs:{label:"订单信息",name:"detail"}},[e.orderDetailList.user?i("div",{staticClass:"section"},[i("div",{staticClass:"title"},[e._v("用户信息")]),e._v(" "),i("ul",{staticClass:"list"},[i("li",{staticClass:"item"},[i("div",[e._v("用户昵称:")]),e._v(" "),i("div",{staticClass:"value"},[e._v("\n "+e._s(e.orderDetailList.user.real_name?e.orderDetailList.user.real_name:e.orderDetailList.user.nickname)+"\n ")])]),e._v(" "),i("li",{staticClass:"item"},[i("div",[e._v("用户ID:")]),e._v(" "),i("div",{staticClass:"value"},[e._v(e._s(e.orderDetailList.user.uid?e.orderDetailList.user.uid:"-"))])]),e._v(" "),i("li",{staticClass:"item"},[i("div",[e._v("绑定电话:")]),e._v(" "),i("div",{staticClass:"value"},[e._v(e._s(e.orderDetailList.user.phone?e.orderDetailList.user.phone:"-"))])])])]):e._e(),e._v(" "),i("div",{staticClass:"section"},[i("div",{staticClass:"title"},[e._v("收货信息")]),e._v(" "),i("ul",{staticClass:"list"},[i("li",{staticClass:"item"},[i("div",[e._v("收货人:")]),e._v(" "),i("div",{staticClass:"value"},[e._v(e._s(e.orderDetailList.real_name?e.orderDetailList.real_name:"-"))])]),e._v(" "),i("li",{staticClass:"item"},[i("div",[e._v("收货电话:")]),e._v(" "),i("div",{staticClass:"value"},[e._v(e._s(e.orderDetailList.user_phone?e.orderDetailList.user_phone:"-"))])]),e._v(" "),i("li",{staticClass:"item"},[i("div",[e._v("收货地址:")]),e._v(" "),i("div",{staticClass:"value"},[e._v(e._s(e.orderDetailList.user_address?e.orderDetailList.user_address:"-"))])])])]),e._v(" "),e.orderDetailList.order_extend?i("div",{staticClass:"section"},[i("div",{staticClass:"title"},[e._v("自定义留言")]),e._v(" "),i("ul",{staticClass:"list"},e._l(e.orderDetailList.order_extend,(function(t,r){return i("li",{key:r,staticClass:"item"},[i("div",[e._v(e._s(r)+":")]),e._v(" "),Array.isArray(t)?e._l(t,(function(e,t){return i("img",{key:t,staticStyle:{width:"40px",height:"40px","margin-right":"12px"},attrs:{src:e}})})):[i("div",{staticClass:"value"},[e._v(e._s(t))])]],2)})),0)]):e._e(),e._v(" "),i("div",{staticClass:"section"},[i("div",{staticClass:"title"},[e._v("订单信息")]),e._v(" "),i("ul",{staticClass:"list"},[i("li",{staticClass:"item"},[i("div",[e._v("创建时间:")]),e._v(" "),i("div",{staticClass:"value"},[e._v(e._s(e.orderDetailList.create_time?e.orderDetailList.create_time:"-"))])]),e._v(" "),i("li",{staticClass:"item"},[i("div",[e._v("商品总数:")]),e._v(" "),i("div",{staticClass:"value"},[e._v(e._s(e.orderDetailList.total_num?e.orderDetailList.total_num:"-"))])]),e._v(" "),i("li",{staticClass:"item"},[i("div",[e._v("实际支付:")]),e._v(" "),i("div",{staticClass:"value"},[e._v(e._s(e.orderDetailList.finalOrder?parseFloat(e.orderDetailList.finalOrder.pay_price)+parseFloat(e.orderDetailList.pay_price):e.orderDetailList.pay_price))])]),e._v(" "),i("li",{staticClass:"item"},[i("div",[e._v("优惠券金额:")]),e._v(" "),i("div",{staticClass:"value"},[e._v(e._s(e.orderDetailList.coupon_price?e.orderDetailList.coupon_price:"-"))])]),e._v(" "),e.orderDetailList.integral?i("li",{staticClass:"item"},[i("div",[e._v("积分抵扣:")]),e._v(" "),e.orderDetailList.integral&&0!=e.orderDetailList.integral?i("div",{staticClass:"value"},[e._v("使用了"+e._s(e.orderDetailList.integral)+"个积分,抵扣了"+e._s(e.orderDetailList.integral_price)+"元")]):e._e()]):e._e(),e._v(" "),i("li",{staticClass:"item"},[i("div",[e._v("订单总价:")]),e._v(" "),i("div",{staticClass:"value"},[e._v(e._s(e.orderDetailList.total_price?e.orderDetailList.total_price:"-"))])]),e._v(" "),e.orderDetailList.svip_discount?i("li",{staticClass:"item"},[i("div",[e._v("会员商品优惠:")]),e._v(" "),i("div",{staticClass:"value"},[e._v(e._s(e.orderDetailList.svip_discount))])]):e._e(),e._v(" "),i("li",{staticClass:"item"},[i("div",[e._v("支付运费:")]),e._v(" "),i("div",{staticClass:"value"},[e._v(e._s(e.orderDetailList.pay_postage))])]),e._v(" "),e.orderDetailList.TopSpread?i("li",{staticClass:"item"},[i("div",[e._v("推广人:")]),e._v(" "),i("div",{staticClass:"value"},[e._v(e._s(e.orderDetailList.TopSpread.nickname))])]):e._e(),e._v(" "),e.orderDetailList.activity_type?e._e():i("li",{staticClass:"item"},[i("div",[e._v("一级佣金:")]),e._v(" "),i("div",{staticClass:"value"},[e._v("\n "+e._s(parseFloat(e.orderDetailList.extension_one)+parseFloat(e.orderDetailList.refund_extension_one))+"\n "),e.orderDetailList.refund_extension_one>0?i("em",{staticStyle:{color:"red","font-style":"normal"}},[e._v("(-"+e._s(e.orderDetailList.refund_extension_one)+")")]):e._e()])]),e._v(" "),e.orderDetailList.activity_type?e._e():i("li",{staticClass:"item"},[i("div",[e._v("二级佣金:")]),e._v(" "),i("div",{staticClass:"value"},[e._v("\n "+e._s(parseFloat(e.orderDetailList.extension_two)+parseFloat(e.orderDetailList.refund_extension_two))+"\n "),e.orderDetailList.refund_extension_two>0?i("em",{staticStyle:{color:"red","font-style":"normal"}},[e._v("(-"+e._s(e.orderDetailList.refund_extension_two)+")")]):e._e()])])])]),e._v(" "),e.orderDetailList.mark?i("div",{staticClass:"section"},[i("div",{staticClass:"title"},[e._v("买家留言")]),e._v(" "),i("ul",{staticClass:"list"},[i("li",{staticClass:"item"},[i("div",[e._v(e._s(e.orderDetailList.mark?e.orderDetailList.mark:"-"))])])])]):e._e(),e._v(" "),e.orderDetailList.remark?i("div",{staticClass:"section"},[i("div",{staticClass:"title"},[e._v("商家备注")]),e._v(" "),i("ul",{staticClass:"list"},[i("li",{staticClass:"item"},[i("div",[e._v(e._s(e.orderDetailList.remark?e.orderDetailList.remark:"-"))])])])]):e._e(),e._v(" "),"1"===e.orderDetailList.delivery_type?i("div",{staticClass:"section"},[i("div",{staticClass:"title"},[e._v("物流信息")]),e._v(" "),i("ul",{staticClass:"list"},[i("li",{staticClass:"item"},[i("div",[e._v("快递公司:")]),e._v(" "),i("div",{staticClass:"value"},[e._v(e._s(e.orderDetailList.delivery_name?e.orderDetailList.delivery_name:"-"))])]),e._v(" "),i("li",{staticClass:"item"},[i("div",[e._v("快递单号:")]),e._v(" "),i("div",{staticClass:"value"},[e._v(e._s(e.orderDetailList.delivery_id?e.orderDetailList.delivery_id:"-"))]),e._v(" "),i("el-button",{staticStyle:{"margin-left":"5px"},attrs:{type:"primary",size:"mini"},on:{click:e.openLogistics}},[e._v("物流查询")])],1)])]):e._e()]),e._v(" "),i("el-tab-pane",{attrs:{label:"商品信息",name:"goods"}},[i("el-table",{attrs:{data:e.orderDetailList.orderProduct}},[i("el-table-column",{attrs:{label:"商品信息","min-width":"300"},scopedSlots:e._u([{key:"default",fn:function(t){return[i("div",{staticClass:"tab"},[i("div",{staticClass:"demo-image__preview"},[i("el-image",{attrs:{src:t.row.cart_info.product.image,"preview-src-list":[t.row.cart_info.product.image]}})],1),e._v(" "),i("div",[i("div",{staticClass:"line1"},[e._v(e._s(t.row.cart_info.product.store_name))]),e._v(" "),i("div",{staticClass:"line1 gary"},[e._v("\n 规格:"+e._s(t.row.cart_info.productAttr.sku?t.row.cart_info.productAttr.sku:"默认")+"\n ")])])])]}}])}),e._v(" "),i("el-table-column",{attrs:{label:"售价","min-width":"90"},scopedSlots:e._u([{key:"default",fn:function(t){return[i("div",{staticClass:"tab"},[i("div",{staticClass:"line1"},[e._v("\n "+e._s(t.row.cart_info.productAttr.price?t.row.cart_info.productAttr.price:"-")+"\n ")])])]}}])}),e._v(" "),i("el-table-column",{attrs:{label:"实付金额","min-width":"90"},scopedSlots:e._u([{key:"default",fn:function(t){return[i("div",{staticClass:"tab"},[i("div",{staticClass:"line1"},[e._v("\n "+e._s(t.row.product_price?t.row.product_price:"-")+"\n ")])])]}}])}),e._v(" "),i("el-table-column",{attrs:{label:"购买数量","min-width":"90"},scopedSlots:e._u([{key:"default",fn:function(t){return[i("div",{staticClass:"tab"},[i("div",{staticClass:"line1"},[e._v("\n "+e._s(t.row.product_num)+"\n ")])])]}}])})],1)],1),e._v(" "),i("el-tab-pane",{attrs:{label:"订单记录",name:"orderList"}},[i("div",[i("el-form",{attrs:{size:"small","label-width":"80px"}},[i("div",{staticClass:"acea-row"},[i("el-form-item",{attrs:{label:"操作端:"}},[i("el-select",{staticStyle:{width:"140px","margin-right":"20px"},attrs:{placeholder:"请选择",clearable:"",filterable:""},on:{change:function(t){return e.onOrderLog(e.orderId)}},model:{value:e.tableFromLog.user_type,callback:function(t){e.$set(e.tableFromLog,"user_type",t)},expression:"tableFromLog.user_type"}},[i("el-option",{attrs:{label:"系统",value:"0"}}),e._v(" "),i("el-option",{attrs:{label:"用户",value:"1"}}),e._v(" "),i("el-option",{attrs:{label:"平台",value:"2"}}),e._v(" "),i("el-option",{attrs:{label:"商户",value:"3"}}),e._v(" "),i("el-option",{attrs:{label:"商家客服",value:"4"}})],1)],1),e._v(" "),i("el-form-item",{attrs:{label:"操作时间:"}},[i("el-date-picker",{staticStyle:{width:"380px","margin-right":"20px"},attrs:{type:"datetimerange",placeholder:"选择日期","value-format":"yyyy/MM/dd HH:mm:ss",clearable:""},on:{change:e.onchangeTime},model:{value:e.timeVal,callback:function(t){e.timeVal=t},expression:"timeVal"}})],1)],1)])],1),e._v(" "),i("el-table",{attrs:{data:e.tableDataLog.data}},[i("el-table-column",{attrs:{prop:"order_id",label:"订单编号","min-width":"200"},scopedSlots:e._u([{key:"default",fn:function(t){return[i("span",[e._v(e._s(t.row.order_sn))])]}}])}),e._v(" "),i("el-table-column",{attrs:{label:"操作记录","min-width":"200"},scopedSlots:e._u([{key:"default",fn:function(t){return[i("span",[e._v(e._s(t.row.change_message))])]}}])}),e._v(" "),i("el-table-column",{attrs:{label:"操作角色","min-width":"150"},scopedSlots:e._u([{key:"default",fn:function(t){return[i("div",{staticClass:"tab"},[i("div",[e._v(e._s(e.operationType(t.row.user_type)))])])]}}])}),e._v(" "),i("el-table-column",{attrs:{label:"操作人","min-width":"150"},scopedSlots:e._u([{key:"default",fn:function(t){return[i("div",{staticClass:"tab"},[i("div",[e._v(e._s(t.row.nickname))])])]}}])}),e._v(" "),i("el-table-column",{attrs:{label:"操作时间","min-width":"150"},scopedSlots:e._u([{key:"default",fn:function(t){return[i("div",{staticClass:"tab"},[i("div",{staticClass:"line1"},[e._v(e._s(t.row.change_time))])])]}}])})],1),e._v(" "),i("div",{staticClass:"block"},[i("el-pagination",{attrs:{"page-sizes":[20,40,60,80],"page-size":e.tableFromLog.limit,"current-page":e.tableFromLog.page,layout:"total, sizes, prev, pager, next, jumper",total:e.tableDataLog.total},on:{"size-change":e.handleSizeChangeLog,"current-change":e.pageChangeLog}})],1)],1),e._v(" "),e.childOrder.length>0?i("el-tab-pane",{attrs:{label:"关联订单",name:"subOrder"}},[i("el-table",{attrs:{data:e.childOrder}},[i("el-table-column",{attrs:{label:"订单编号",prop:"order_sn","min-width":"150"},scopedSlots:e._u([{key:"default",fn:function(t){return[i("div",[e._v(e._s(t.row.order_sn))])]}}],null,!1,1717655037)}),e._v(" "),i("el-table-column",{attrs:{label:"商品信息","min-width":"200"},scopedSlots:e._u([{key:"default",fn:function(t){return e._l(t.row.orderProduct,(function(t,r){return i("div",{key:r,staticClass:"tabBox acea-row row-middle"},[i("div",{staticClass:"demo-image__preview"},[i("el-image",{attrs:{src:t.cart_info.product.image,"preview-src-list":[t.cart_info.product.image]}})],1),e._v(" "),i("span",{staticClass:"tabBox_tit"},[e._v(e._s(t.cart_info.product.store_name+" | ")+e._s(t.cart_info.productAttr.sku))]),e._v(" "),i("span",{staticClass:"tabBox_pice"},[e._v("\n "+e._s("¥"+t.cart_info.productAttr.price+" x "+t.product_num)+"\n "),t.refund_num0?i("em",{staticStyle:{color:"red","font-style":"normal"}},[e._v("(-"+e._s(t.product_num-t.refund_num)+")")]):e._e()])])}))}}],null,!1,1370655139)}),e._v(" "),i("el-table-column",{attrs:{label:"实际支付","min-width":"80",align:"center"},scopedSlots:e._u([{key:"default",fn:function(t){return[i("span",[e._v(e._s(t.row.pay_price))])]}}],null,!1,3949474396)}),e._v(" "),i("el-table-column",{attrs:{label:"订单生成时间",prop:"create_time","min-width":"120"}}),e._v(" "),i("el-table-column",{attrs:{label:"操作","min-width":"50",fixed:"right",align:"center"},scopedSlots:e._u([{key:"default",fn:function(t){return[i("el-button",{attrs:{type:"text",size:"small"},on:{click:function(r){return e.getChildOrderDetail(t.row.order_id)}}},[e._v("详情")])]}}],null,!1,2524739887)})],1)],1):e._e()],1)],1)]),e._v(" "),e.dialogLogistics?i("el-dialog",{attrs:{title:"物流查询",visible:e.dialogLogistics,width:"350px"},on:{"update:visible":function(t){e.dialogLogistics=t}}},[i("div",{staticClass:"logistics acea-row row-top"},[i("div",{staticClass:"logistics_img"},[i("img",{attrs:{src:r("bd9b")}})]),e._v(" "),i("div",{staticClass:"logistics_cent"},[i("span",[e._v("物流公司:"+e._s(e.orderDetailList.delivery_name))]),e._v(" "),i("span",[e._v("物流单号:"+e._s(e.orderDetailList.delivery_id))])])]),e._v(" "),i("div",{staticClass:"acea-row row-column-around trees-coadd"},[i("div",{staticClass:"scollhide"},[i("el-timeline",e._l(e.result,(function(t,r){return i("el-timeline-item",{key:r},[i("p",{staticClass:"time",domProps:{textContent:e._s(t.time)}}),e._v(" "),i("p",{staticClass:"content",domProps:{textContent:e._s(t.status)}})])})),1)],1)])]):e._e(),e._v(" "),i("order-cancellate",{ref:"orderCancellate",on:{getList:e.getList}})],1)},u=[],m=function(){var e=this,t=e.$createElement,r=e._self._c||t;return r("div",[e.dialogVisible?r("el-dialog",{attrs:{title:"订单核销",visible:e.dialogVisible,width:"900px"},on:{"update:visible":function(t){e.dialogVisible=t}}},[r("div",{staticClass:"container"},[r("el-form",{attrs:{"label-width":"80px",size:"small"}},[e.isColum?e._e():r("el-form-item",{attrs:{label:"核销码:"}},[r("el-input",{staticClass:"selWidth",attrs:{placeholder:"请输入核销码查询订单号和商品",size:"small"},nativeOn:{keyup:function(t){return!t.type.indexOf("key")&&e._k(t.keyCode,"enter",13,t.key,"Enter")?null:e.searchOrder(t)}},model:{value:e.code,callback:function(t){e.code=t},expression:"code"}}),e._v(" "),r("el-button",{attrs:{size:"small",type:"primary"},on:{click:e.searchOrder}},[e._v("搜索")])],1),e._v(" "),r("el-form-item",{attrs:{label:"订单号:"}},[r("span",[e._v(e._s(e.orderData.order_sn))])])],1),e._v(" "),r("div",{staticStyle:{"margin-top":"20px"}},[r("el-table",{ref:"multipleSelection",attrs:{data:e.productList,"tooltip-effect":"dark",size:"mini","row-key":function(e){return e.product_id},"header-cell-style":{background:"#F0F5FF"}},on:{"selection-change":e.handleSelectionChange}},[r("el-table-column",{attrs:{align:"center",type:"selection","reserve-selection":!0,"min-width":"50"}}),e._v(" "),r("el-table-column",{attrs:{align:"center",label:"商品信息","min-width":"200"},scopedSlots:e._u([{key:"default",fn:function(t){return[r("div",{staticClass:"acea-row",staticStyle:{"align-items":"center"}},[r("div",{staticClass:"demo-image__preview"},[r("el-image",{attrs:{src:t.row.cart_info.product.image,"preview-src-list":[t.row.cart_info.product.image]}})],1),e._v(" "),r("span",{staticClass:"priceBox",staticStyle:{width:"150px"}},[e._v(e._s(t.row.cart_info.product.store_name))])])]}}],null,!1,1334329387)}),e._v(" "),r("el-table-column",{attrs:{align:"center",label:"规格","min-width":"80"},scopedSlots:e._u([{key:"default",fn:function(t){return[r("span",{staticClass:"priceBox"},[e._v(e._s(t.row.cart_info.productAttr.sku))])]}}],null,!1,2489556760)}),e._v(" "),r("el-table-column",{attrs:{align:"center",label:"订单金额","min-width":"80"},scopedSlots:e._u([{key:"default",fn:function(t){return[r("span",{staticClass:"priceBox"},[e._v(e._s(t.row.cart_info.productAttr.price))])]}}],null,!1,3535341656)}),e._v(" "),r("el-table-column",{attrs:{align:"center",label:"状态","min-width":"80"},scopedSlots:e._u([{key:"default",fn:function(t){return[r("span",{staticClass:"priceBox"},[e._v("待核销")])]}}],null,!1,3635758024)}),e._v(" "),r("el-table-column",{attrs:{align:"center",prop:"product_num",label:"总数","min-width":"80"}}),e._v(" "),r("el-table-column",{attrs:{label:"待核销数量",align:"center","min-width":"120"},scopedSlots:e._u([{key:"default",fn:function(t){return[r("el-input",{staticClass:"priceBox",attrs:{type:"number",min:0,max:t.row.max_num},on:{change:function(r){return e.limitNum(t.row)}},model:{value:t.row["refund_num"],callback:function(r){e.$set(t.row,"refund_num",r)},expression:"scope.row['refund_num']"}})]}}],null,!1,4190016114)})],1)],1)],1),e._v(" "),r("span",{staticClass:"dialog-footer",attrs:{slot:"footer"},slot:"footer"},[r("el-button",{attrs:{size:"small"},on:{click:function(t){e.dialogVisible=!1}}},[e._v("取消")]),e._v(" "),r("el-button",{attrs:{type:"primary",size:"small"},on:{click:e.handleCancellation}},[e._v("核销")])],1)]):e._e()],1)},p=[],_={name:"OrderCancellate",data:function(){return{dialogVisible:!1,loading:!1,code:"",order_id:"",orderData:"",multipleSelection:[],ids:[],isColum:!1,productList:[]}},methods:{searchOrder:function(){if(!this.code)return this.$message.warning("输入核销码!");this.productDetails(this.code)},handleCancellation:function(){var e=this;if(!this.code)return this.$message.warning("输入核销码!");if(!this.multipleSelection.length)return this.$message.warning("请选择核销商品!");var t=[];this.multipleSelection.map((function(e){t.push({id:e.order_product_id,num:e.refund_num})})),Object(o["u"])(this.order_id,{verify_code:this.code,data:t}).then((function(t){e.$message.success(t.message),e.dialogVisible=!1,e.$emit("getList","")})).catch((function(t){var r=t.message;e.$message.error(r)}))},productDetails:function(e){var t=this;this.code=e,this.loading=!0,Object(o["A"])(e).then((function(e){t.orderData=e.data,t.order_id=e.data.order_id,t.productList=e.data.orderProduct,t.productList.forEach((function(e,t){e.max_num=e.refund_num})),t.loading=!1})).catch((function(e){var r=e.message;t.loading=!1,t.$message.error(r)}))},handleSelectionChange:function(e){this.multipleSelection=e},limitNum:function(e){e.refund_num>e.max_num?e.refund_num=e.max_num:e.refund_num<1&&(e.refund_num=1)}}},f=_,v=(r("53b5"),r("2877")),h=Object(v["a"])(f,m,p,!1,null,"5efee90a",null),g=h.exports,b={components:{orderCancellate:g},props:{drawer:{type:Boolean,default:!1}},data:function(){return{loading:!0,orderId:"",direction:"rtl",activeName:"detail",goodsList:[],timeVal:[],orderConfirm:!1,sendGoods:!1,dialogLogistics:!1,confirmReceiptForm:{id:""},tableDataLog:{data:[],total:0},contentList:[],nicknameList:[],result:[],orderDetailList:{user:{real_name:""},groupOrder:{group_order_sn:""}},orderImg:r("ea8b"),tableFromLog:{user_type:"",date:[],page:1,limit:10},childOrder:[]}},filters:{},methods:{onchangeTime:function(e){this.timeVal=e,this.tableFromLog.date=e?this.timeVal.join("-"):"",this.onOrderLog(this.orderId)},handleClose:function(){this.activeName="detail",this.$emit("closeDrawer"),this.sendGoods=!1,this.orderRemark=!1},openLogistics:function(){this.getOrderData(),this.dialogLogistics=!0},orderCancellation:function(){var e=this;e.$refs.orderCancellate.dialogVisible=!0,e.$refs.orderCancellate.productDetails(e.orderDetailList.verify_code),e.$refs.orderCancellate.isColum=!0},send:function(){this.$emit("send",this.orderDetailList,this.orderId)},printOrder:function(){var e=this;Object(o["H"])(this.orderId).then((function(t){e.$message.success(t.message)})).catch((function(t){e.$message.error(t.message)}))},onOrderMark:function(){var e=this;this.$modalForm(Object(o["I"])(this.orderId)).then((function(){return e.getInfo(e.orderId)}))},handleCommand:function(e){"mark"==e?this.onOrderMark():this.reSend(this.orderId)},reSend:function(e){this.$emit("reSend",e)},getList:function(){this.$emit("getList","")},getChildOrder:function(){var e=this;this.loading=!0,Object(o["p"])(this.orderId).then((function(t){e.activeName="detail",e.childOrder=t.data,setTimeout((function(){e.loading=!1}),500)})).catch((function(t){e.$message.error(t.message)}))},getOrderData:function(){var e=this;Object(o["s"])(this.orderId).then(function(){var t=Object(s["a"])(Object(n["a"])().mark((function t(r){return Object(n["a"])().wrap((function(t){while(1)switch(t.prev=t.next){case 0:e.result=r.data;case 1:case"end":return t.stop()}}),t)})));return function(e){return t.apply(this,arguments)}}()).catch((function(t){e.$message.error(t.message)}))},toSendGoods:function(){this.sendGoods=!0},getDelivery:function(){var e=this;Object(o["C"])(this.orderId).then((function(t){e.$message.success(t.message),e.sendGoods=!1})).catch((function(t){e.$message.error(t.message)}))},getChildOrderDetail:function(e){this.getInfo(e)},getInfo:function(e){var t=this;this.loading=!0,this.orderId=e,Object(o["D"])(e).then((function(e){t.drawer=!0,t.orderDetailList=e.data,t.getChildOrder()})).catch((function(e){t.$message.error(e.message)}))},tabClick:function(e){"orderList"===e.name&&this.onOrderLog(this.orderId)},onOrderLog:function(e){var t=this;Object(o["G"])(e,this.tableFromLog).then((function(e){t.tableDataLog.data=e.data.list,t.tableDataLog.total=e.data.count}))},pageChangeLog:function(e){this.tableFromLog.page=e,this.onOrderLog(this.orderId)},handleSizeChangeLog:function(e){this.tableFromLog.limit=e,this.onOrderLog(this.orderId)},operationType:function(e){return 0==e?"系统":1==e?"用户":2==e?"平台":3==e?"商户":4==e?"商家客服":"未知"}}},y=b,w=(r("42bc"),Object(v["a"])(y,d,u,!1,null,"2f11caa9",null)),C=w.exports,k=r("30dc"),L=function(){var e=this,t=e.$createElement,r=e._self._c||t;return r("div",[e.fileVisible?r("el-dialog",{attrs:{title:"批量发货记录",visible:e.fileVisible,width:"900px"},on:{"update:visible":function(t){e.fileVisible=t}}},[r("div",{staticClass:"container"},[r("el-form",{attrs:{size:"small",inline:"","label-width":"100px"}},[r("el-form-item",{staticClass:"width100",attrs:{label:"操作时间"}},[r("el-date-picker",{staticStyle:{width:"250px"},attrs:{"value-format":"yyyy/MM/dd",format:"yyyy/MM/dd",size:"small",type:"daterange",placement:"bottom-end",placeholder:"自定义时间"},on:{change:e.onchangeTime},model:{value:e.timeVal,callback:function(t){e.timeVal=t},expression:"timeVal"}})],1),e._v(" "),r("el-form-item",{attrs:{label:"发货类型:"}},[r("el-select",{staticClass:"filter-item selWidth mr20",attrs:{placeholder:"请选择",clearable:""},on:{change:function(t){e.getList(1)}},model:{value:e.tableFrom.type,callback:function(t){e.$set(e.tableFrom,"type",t)},expression:"tableFrom.type"}},e._l(e.deliveryTypeList,(function(e){return r("el-option",{key:e.value,attrs:{label:e.label,value:e.value}})})),1)],1),e._v(" "),r("el-form-item",{attrs:{label:"状态:"}},[r("el-select",{staticClass:"filter-item selWidth mr20",attrs:{placeholder:"请选择",clearable:""},on:{change:function(t){e.getList(1)}},model:{value:e.tableFrom.status,callback:function(t){e.$set(e.tableFrom,"status",t)},expression:"tableFrom.status"}},e._l(e.deliveryStatusList,(function(e){return r("el-option",{key:e.value,attrs:{label:e.label,value:e.value}})})),1)],1)],1)],1),e._v(" "),r("div",{directives:[{name:"loading",rawName:"v-loading",value:e.loading,expression:"loading"}]},[r("el-table",{directives:[{name:"loading",rawName:"v-loading",value:e.loading,expression:"loading"}],staticClass:"table",staticStyle:{width:"100%"},attrs:{data:e.tableData.data,size:"mini","highlight-current-row":""}},[r("el-table-column",{attrs:{label:"序号","min-width":"90"},scopedSlots:e._u([{key:"default",fn:function(t){return[r("span",[e._v(e._s(t.$index+(e.tableFrom.page-1)*e.tableFrom.limit+1))])]}}],null,!1,2611860760)}),e._v(" "),r("el-table-column",{attrs:{label:"发货类型","min-width":"90"},scopedSlots:e._u([{key:"default",fn:function(t){return[r("span",[e._v(e._s(e._f("deliveryType")(t.row.type)))])]}}],null,!1,3190513475)}),e._v(" "),r("el-table-column",{attrs:{label:"操作时间",prop:"create_time","min-width":"180"}}),e._v(" "),r("el-table-column",{attrs:{label:"发货单数",prop:"count","min-width":"180"}}),e._v(" "),r("el-table-column",{attrs:{label:"成功发货单数",prop:"success","min-width":"180"}}),e._v(" "),r("el-table-column",{attrs:{label:"状态","min-width":"80"},scopedSlots:e._u([{key:"default",fn:function(t){return[r("span",[e._v(e._s(e._f("deliveryStatusFilter")(t.row.status)))])]}}],null,!1,1539921219)}),e._v(" "),r("el-table-column",{key:"8",attrs:{label:"操作","min-width":"150",fixed:"right",align:"center"},scopedSlots:e._u([{key:"default",fn:function(t){return[-1!=t.row.status?r("el-button",{staticClass:"mr10",attrs:{type:"text",size:"small"},on:{click:function(r){return e.detail(t.row.import_id)}}},[e._v("查看")]):e._e(),e._v(" "),-1!=t.row.status?r("el-button",{staticClass:"mr10",attrs:{type:"text",size:"small"},on:{click:function(r){return e.downLoad(t.row.import_id)}}},[e._v("生成文件")]):e._e(),e._v(" "),-1==t.row.status?r("el-button",{staticClass:"mr10",attrs:{type:"text",size:"small"},on:{click:function(r){return e.detail(t.row.import_id)}}},[e._v("查看原因")]):e._e()]}}],null,!1,2576915168)})],1),e._v(" "),r("div",{staticClass:"block"},[r("el-pagination",{attrs:{"page-sizes":[10,20,30],"page-size":e.tableFrom.limit,"current-page":e.tableFrom.page,layout:"total, sizes, prev, pager, next, jumper",total:e.tableData.total},on:{"size-change":e.handleSizeChange,"current-change":e.pageChange}})],1)],1)]):e._e(),e._v(" "),e.dialogVisible?r("el-dialog",{attrs:{title:"",visible:e.dialogVisible,width:"900px"},on:{"update:visible":function(t){e.dialogVisible=t}}},[r("div",{directives:[{name:"loading",rawName:"v-loading",value:e.loading,expression:"loading"}]},[r("el-table",{directives:[{name:"loading",rawName:"v-loading",value:e.loading,expression:"loading"}],staticClass:"table",staticStyle:{width:"100%"},attrs:{data:e.recordData.data,size:"mini","highlight-current-row":""}},[r("el-table-column",{attrs:{label:"序号","min-width":"90"},scopedSlots:e._u([{key:"default",fn:function(t){return[r("span",[e._v(e._s(t.$index+(e.recordFrom.page-1)*e.recordFrom.limit+1))])]}}],null,!1,748015416)}),e._v(" "),r("el-table-column",{attrs:{label:"订单号",prop:"order_sn","min-width":"200"}}),e._v(" "),r("el-table-column",{attrs:{label:"物流公司",prop:"delivery_name","min-width":"80"}}),e._v(" "),r("el-table-column",{attrs:{label:"物流单号",prop:"delivery_id","min-width":"180"}}),e._v(" "),r("el-table-column",{attrs:{label:"发货状态",prop:"status","min-width":"80"}}),e._v(" "),r("el-table-column",{attrs:{label:"异常原因",prop:"mark","min-width":"120"}})],1),e._v(" "),r("div",{staticClass:"block"},[r("el-pagination",{attrs:{"page-sizes":[10,20,30],"page-size":e.recordFrom.limit,"current-page":e.recordFrom.page,layout:"total, sizes, prev, pager, next, jumper",total:e.recordData.total},on:{"size-change":e.handleSizeChange1,"current-change":e.pageChange1}})],1)],1)]):e._e()],1)},x=[],D={name:"DeliveryList",data:function(){return{fileVisible:!1,dialogVisible:!1,loading:!1,timeVal:[],deliveryStatusList:[{label:"全部",value:""},{label:"全部完成",value:1},{label:"部分完成",value:10},{label:"处理中",value:0},{label:"处理失败",value:-1}],deliveryTypeList:[{label:"全部",value:""},{label:"发货",value:1},{label:"送货",value:2},{label:"无需物流",value:3},{label:"电子面单",value:4}],tableData:{data:[],total:0},recordData:{data:[],total:0},recordFrom:{page:1,limit:20},tableFrom:{page:1,limit:10,date:"",status:""},recordId:""}},methods:{getList:function(e){var t=this;this.loading=!0,this.tableFrom.page=e||this.tableFrom.page,Object(o["i"])(this.tableFrom).then((function(e){t.fileVisible=!0,t.tableData.data=e.data.list,t.tableData.total=e.data.count,t.loading=!1})).catch((function(e){t.$message.error(e.message),t.listLoading=!1}))},downLoad:function(e){var t=this;Object(o["h"])(e).then((function(e){var r=t.$createElement;t.$msgbox({title:"提示",message:r("p",null,[r("span",null,'文件正在生成中,请稍后点击"'),r("span",{style:"color: teal"},"导出记录"),r("span",null,'"查看~ ')]),confirmButtonText:"我知道了"}).then((function(e){}))})).catch((function(e){t.$message.error(e.message)}))},detail:function(e){var t=this;this.recordId=e,Object(o["g"])(e,this.recordFrom).then((function(e){t.dialogVisible=!0,t.recordData.data=e.data.list,t.recordData.total=e.data.count})).catch((function(e){t.$message.error(e.message)}))},onchangeTime:function(e){this.timeVal=e,this.tableFrom.date=e?this.timeVal.join("-"):"",this.getList(1)},pageChange:function(e){this.tableFrom.page=e,this.getList("")},handleSizeChange:function(e){this.tableFrom.limit=e,this.getList("")},pageChange1:function(e){this.recordFrom.page=e,this.getList(""),this.detail(this.recordId)},handleSizeChange1:function(e){this.recordFrom.limit=e,this.getList(""),this.detail(this.recordId)}}},F=D,A=(r("1aca"),Object(v["a"])(F,L,x,!1,null,"96d4296a",null)),S=A.exports,O=r("0f56"),V=r("5f87"),z=r("bbcc"),B=r("83d6"),T={components:{orderDetail:C,cardsData:O["a"],fileList:k["a"],deliveryRecord:S,orderCancellate:g},data:function(){return{fileUrl:z["a"].https+"/store/import/delivery",myHeaders:{"X-Token":Object(V["a"])()},orderId:0,tableData:{data:[],total:0},listLoading:!0,roterPre:B["roterPre"],tableFrom:{order_sn:this.$route.query.order_sn?this.$route.query.order_sn:"",group_order_sn:"",order_type:"-1",keywords:"",store_name:"",status:"",date:"",page:1,limit:20,type:"1",username:"",order_id:this.$route.query.id?this.$route.query.id:"",activity_type:""},activityList:[{value:0,label:"普通订单"},{value:1,label:"秒杀订单"},{value:2,label:"预售订单"},{value:3,label:"助力订单"},{value:4,label:"拼团订单"}],orderChartType:{},timeVal:[],fromList:{title:"选择时间",custom:!0,fromTxt:[{text:"全部",val:""},{text:"今天",val:"today"},{text:"昨天",val:"yesterday"},{text:"最近7天",val:"lately7"},{text:"最近30天",val:"lately30"},{text:"本月",val:"month"},{text:"本年",val:"year"}]},ids:"",tableFromLog:{page:1,limit:10},tableDataLog:{data:[],total:0},LogLoading:!1,dialogVisible:!1,fileVisible:!1,editVisible:!1,sendVisible:!1,pictureVisible:!1,drawer:!1,cardLists:[],orderDatalist:null,headeNum:[],editId:"",formValidate:{total_price:"",pay_postage:"",pay_price:"",coupon_price:""},deliveryList:[],eleTempsLst:[],productList:[],productNum:0,storeList:[],multipleSelection:[],shipment:{delivery_type:1,station_id:"",is_split:"0",split:[]},original:{delivery_name:"",delivery_id:""},isResend:!1,chkName:"",checkedPage:[],checkedIds:[],noChecked:[],allCheck:!1,isBatch:!1,delivery_name:"",isDump:!1,noLogistics:!1,orderType:0,activityType:0,rules:{delivery_type:[{required:!0,message:"请选择发送货方式",trigger:"change"}],station_id:[{required:!0,message:"请选择发货点",trigger:"change"}],delivery_name:[{required:!0,message:"请选择快递公司",trigger:"change"}],to_name:[{required:!0,message:"请输入送货人姓名",trigger:"blur"}],delivery_id:[{required:!0,message:"请输入快递单号",trigger:"blur"}],cargo_weight:[{required:!0,message:"请输入包裹重量",trigger:"blur"}],to_phone:[{required:!0,message:"请输入送货人手机号",trigger:"blur"},{pattern:/^1[3456789]\d{9}$/,message:"请输入正确的手机号",trigger:"blur"}],temp_id:[{required:!0,message:"请选择电子面单",trigger:"change"}],from_name:[{required:!0,message:"请输入寄件人姓名",trigger:"blur"}],from_tel:[{required:!0,message:"请输入寄件人电话",trigger:"blur"},{pattern:/^1(3|4|5|6|7|8|9)\d{9}$/,message:"请输入正确的联系方式",trigger:"blur"}],from_addr:[{required:!0,message:"请输入寄件人地址",trigger:"blur"}]}}},mounted:function(){this.$route.query.hasOwnProperty("order_sn")?this.tableFrom.order_sn=this.$route.query.order_sn:this.tableFrom.order_sn="",this.isOpenDump(),this.headerList(),this.getCardList(),this.getExpressLst(),this.getList(1),this.getHeaderList(),this.getStoreList()},methods:{limitCount:function(e){e.stock>e.product_num&&(e.stock=e.product_num)},changeDrawer:function(e){this.drawer=e},closeDrawer:function(){this.drawer=!1},handleSelectionChange:function(e){this.multipleSelection=e;var t=[];this.multipleSelection.map((function(e){t.push({id:e.order_product_id,num:e.product_num})})),this.ids=t},isOpenDump:function(){var e=this;Object(c["y"])().then((function(t){e.isDump=t.data.crmeb_serve_dump,1==t.data.crmeb_serve_dump&&e.getEleTempData()})).catch((function(t){e.$message.error(t.message)}))},getExpressLst:function(){var e=this;Object(o["o"])().then((function(t){e.deliveryList=t.data})).catch((function(t){e.$message.error(t.message)}))},getTempsLst:function(e){var t=this;Object(o["n"])({com:e}).then((function(e){t.eleTempsLst=e.data.data}))},getEleTempData:function(){var e=this;Object(o["r"])().then((function(t){var r=t.data,i=e.shipment.delivery_type;e.shipment={from_name:r.mer_from_name,from_addr:r.mer_from_addr,from_tel:r.mer_from_tel,delivery_type:i,delivery_name:r.mer_from_com,temp_id:r.mer_config_temp_id},""!=r.mer_from_com&&e.getTempsLst(r.mer_from_com)})).catch((function(t){e.$message.error(t.message)}))},getStoreList:function(){var e=this;Object(o["q"])().then((function(t){e.storeList=t.data})).catch((function(t){e.$message.error(t.message)}))},changeSend:function(e){this.$refs["shipment"].clearValidate(),3==e&&(this.shipment.is_split="0",delete this.shipment.split)},getPicture:function(e){var t=this;this.shipment.temp_id?this.eleTempsLst.forEach((function(e,r){e["temp_id"]==t.shipment.temp_id&&(t.pictureVisible=!0,t.pictureUrl=e["pic"])})):this.$message.error("选择电子面单后才可以预览")},batchSend:function(){if(0==this.checkedIds.length)return this.$message.warning("请先选择订单");this.isBatch=!0,this.sendVisible=!0,this.shipment.delivery_type=2,this.shipment.order_id=this.checkedIds},handleClose:function(){this.sendVisible=!1,this.$refs["shipment"].resetFields()},onHandle:function(e){this.chkName=this.chkName===e?"":e,this.changeType(!(""===this.chkName))},changeType:function(e){e?this.chkName||(this.chkName="dan"):(this.chkName="",this.allCheck=!1);var t=this.checkedPage.indexOf(this.tableFrom.page);"dan"===this.chkName?this.checkedPage.push(this.tableFrom.page):t>-1&&this.checkedPage.splice(t,1),this.syncCheckedId()},syncCheckedId:function(){var e=this,t=this.tableData.data.map((function(e){return e.order_id}));"duo"===this.chkName?(this.checkedIds=[],this.allCheck=!0):"dan"===this.chkName?(this.allCheck=!1,t.forEach((function(t){var r=e.checkedIds.indexOf(t);-1===r&&e.checkedIds.push(t)}))):t.forEach((function(t){var r=e.checkedIds.indexOf(t);r>-1&&e.checkedIds.splice(r,1)}))},changeOne:function(e,t){if(e)if("duo"===this.chkName){var r=this.noChecked.indexOf(t.order_id);r>-1&&this.noChecked.splice(r,1)}else{var i=this.checkedIds.indexOf(t.order_id);-1===i&&this.checkedIds.push(t.order_id)}else if("duo"===this.chkName){var a=this.noChecked.indexOf(t.order_id);-1===a&&this.noChecked.push(t.order_id)}else{var n=this.checkedIds.indexOf(t.order_id);n>-1&&this.checkedIds.splice(n,1)}},getHeaderList:function(){var e=this;Object(o["E"])().then((function(t){e.headeNum=t.data})).catch((function(t){e.$message.error(t.message)}))},orderFilter:function(e){var t=!1;return e.orderProduct.forEach((function(e){e.refund_num0&&1==e.row.paid))return" ";for(var t=0;t=0&&e.row.orderProduct[t].refund_num768?"containerSamll":"containerBig"]},[t.fullWidth>768?i("swiper",{staticClass:"swiperPross",attrs:{options:t.swiperOption}},[t._l(t.swiperList,(function(t,e){return i("swiper-slide",{key:e,staticClass:"swiperPic"},[i("img",{attrs:{src:t.pic}})])})),t._v(" "),i("div",{staticClass:"swiper-pagination",attrs:{slot:"pagination"},slot:"pagination"})],2):t._e(),t._v(" "),i("div",{staticClass:"index_from page-account-container"},[t._m(0),t._v(" "),i("div",{staticClass:"page-account-top"},[i("div",{staticClass:"page-account-top-logo"},[i("img",{attrs:{src:t.loginLogo,alt:"logo"}})])]),t._v(" "),i("el-form",{ref:"loginForm",staticClass:"login-form",attrs:{model:t.loginForm,rules:t.loginRules,autocomplete:"on","label-position":"left"},on:{keyup:function(e){return!e.type.indexOf("key")&&t._k(e.keyCode,"enter",13,e.key,"Enter")?null:t.handleLogin(e)}}},[i("el-form-item",{attrs:{prop:"account"}},[i("el-input",{ref:"account",attrs:{placeholder:"用户名","prefix-icon":"el-icon-user",name:"username",type:"text",tabindex:"1",autocomplete:"on"},model:{value:t.loginForm.account,callback:function(e){t.$set(t.loginForm,"account",e)},expression:"loginForm.account"}})],1),t._v(" "),i("el-form-item",{attrs:{prop:"password"}},[i("el-input",{key:t.passwordType,ref:"password",attrs:{type:t.passwordType,placeholder:"密码",name:"password",tabindex:"2","auto-complete":"on","prefix-icon":"el-icon-lock"},model:{value:t.loginForm.password,callback:function(e){t.$set(t.loginForm,"password",e)},expression:"loginForm.password"}}),t._v(" "),i("span",{staticClass:"show-pwd",on:{click:t.showPwd}},[i("svg-icon",{attrs:{"icon-class":"password"===t.passwordType?"eye":"eye-open"}})],1)],1),t._v(" "),i("el-button",{staticStyle:{width:"100%","margin-top":"10px"},attrs:{loading:t.loading,type:"primary"},nativeOn:{click:function(e){return e.preventDefault(),t.handleLogin(e)}}},[t._v("登录")])],1)],1)],1),t._v(" "),i("div",{staticClass:"record_number"},[-1==t.copyright.status?[i("span",{staticClass:"cell"},[t._v("Copyright "+t._s(t.copyright.year))]),t._v(" "),i("a",{staticClass:"cell",attrs:{href:"http://"+t.copyright.url,target:"_blank"}},[t._v(t._s(t.copyright.version))])]:[t._v(t._s(t.copyright.Copyright))]],2),t._v(" "),i("Verify",{ref:"verify",attrs:{captchaType:"blockPuzzle",imgSize:{width:"330px",height:"155px"}},on:{success:t.success}})],1)},o=[function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"labelPic"},[n("img",{attrs:{src:i("9a9b")}})])}],s=(i("ac6a"),i("456d"),i("c24f")),a=i("8593"),r=i("6618");!function(){function t(t,e,i){return t.getAttribute(e)||i}function e(t){return document.getElementsByTagName(t)}function i(){var i=e("script"),n=i.length,o=i[n-1];return{l:n,z:t(o,"zIndex",-2),o:t(o,"opacity",.8),c:t(o,"color","255,255,255"),n:t(o,"count",240)}}function n(){s=r.width=window.innerWidth||document.documentElement.clientWidth||document.body.clientWidth,a=r.height=window.innerHeight||document.documentElement.clientHeight||document.body.clientHeight}function o(){if(d+=1,d<5)u(o);else{d=0,h.clearRect(0,0,s,a);var t,e,i,n,r,l,f=[p].concat(g);g.forEach((function(o){for(o.x+=o.xa,o.y+=o.ya,o.xa*=o.x>s||o.x<0?-1:1,o.ya*=o.y>a||o.y<0?-1:1,h.fillRect(o.x-.5,o.y-.5,2,2),h.fillStyle="#FFFFFF",e=0;e=t.max/2&&(o.x-=.03*n,o.y-=.03*r),i=(t.max-l)/t.max,h.beginPath(),h.lineWidth=i/2,h.strokeStyle="rgba("+c.c+","+(i+.2)+")",h.moveTo(o.x,o.y),h.lineTo(t.x,t.y),h.stroke()));f.splice(f.indexOf(o),1)})),u(o)}}var s,a,r=document.createElement("canvas"),c=i(),l="c_n"+c.l,h=r.getContext("2d"),d=0,u=window.requestAnimationFrame||window.webkitRequestAnimationFrame||window.mozRequestAnimationFrame||window.oRequestAnimationFrame||window.msRequestAnimationFrame||function(t){window.setTimeout(t,1e3/45)},f=Math.random,p={x:null,y:null,max:2e4};r.id=l,r.style.cssText="position:fixed;top:0;left:0;z-index:"+c.z+";opacity:"+c.o,e("body")[0].appendChild(r),n(),window.onresize=n,window.onmousemove=function(t){t=t||window.event,p.x=t.clientX,p.y=t.clientY},window.onmouseout=function(){p.x=null,p.y=null};for(var g=[],m=0;c.n>m;m++){var v=f()*s,y=f()*a,b=2*f()-1,w=2*f()-1;g.push({x:v,y:y,xa:b,ya:w,max:6e3})}setTimeout((function(){o()}),100)}();var c=i("a78e"),l=i.n(c),h=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("div",{directives:[{name:"show",rawName:"v-show",value:t.showBox,expression:"showBox"}],class:"pop"==t.mode?"verify-mask":""},[i("div",{class:"pop"==t.mode?"verifybox":"",style:{"max-width":parseInt(t.imgSize.width)+30+"px"}},["pop"==t.mode?i("div",{staticClass:"verifybox-top"},[t._v("\n 请完成安全验证\n "),i("span",{staticClass:"verifybox-close",on:{click:t.closeBox}},[i("i",{staticClass:"iconfont icon-close"})])]):t._e(),t._v(" "),i("div",{staticClass:"verifybox-bottom",style:{padding:"pop"==t.mode?"15px":"0"}},[t.componentType?i(t.componentType,{ref:"instance",tag:"components",attrs:{"captcha-type":t.captchaType,type:t.verifyType,figure:t.figure,arith:t.arith,mode:t.mode,"v-space":t.vSpace,explain:t.explain,"img-size":t.imgSize,"block-size":t.blockSize,"bar-size":t.barSize,"default-img":t.defaultImg}}):t._e()],1)])])},d=[],u=(i("6b54"),i("c5f6"),function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("div",{staticStyle:{position:"relative"}},["2"===t.type?i("div",{staticClass:"verify-img-out",style:{height:parseInt(t.setSize.imgHeight)+t.vSpace+"px"}},[i("div",{staticClass:"verify-img-panel",style:{width:t.setSize.imgWidth,height:t.setSize.imgHeight}},[i("img",{staticStyle:{width:"100%",height:"100%",display:"block"},attrs:{src:t.backImgBase?"data:image/png;base64,"+t.backImgBase:t.defaultImg,alt:""}}),t._v(" "),i("div",{directives:[{name:"show",rawName:"v-show",value:t.showRefresh,expression:"showRefresh"}],staticClass:"verify-refresh",on:{click:t.refresh}},[i("i",{staticClass:"iconfont icon-refresh"})]),t._v(" "),i("transition",{attrs:{name:"tips"}},[t.tipWords?i("span",{staticClass:"verify-tips",class:t.passFlag?"suc-bg":"err-bg"},[t._v(t._s(t.tipWords))]):t._e()])],1)]):t._e(),t._v(" "),i("div",{staticClass:"verify-bar-area",style:{width:t.setSize.imgWidth,height:t.barSize.height,"line-height":t.barSize.height}},[i("span",{staticClass:"verify-msg",domProps:{textContent:t._s(t.text)}}),t._v(" "),i("div",{staticClass:"verify-left-bar",style:{width:void 0!==t.leftBarWidth?t.leftBarWidth:t.barSize.height,height:t.barSize.height,"border-color":t.leftBarBorderColor,transaction:t.transitionWidth}},[i("span",{staticClass:"verify-msg",domProps:{textContent:t._s(t.finishText)}}),t._v(" "),i("div",{staticClass:"verify-move-block",style:{width:t.barSize.height,height:t.barSize.height,"background-color":t.moveBlockBackgroundColor,left:t.moveBlockLeft,transition:t.transitionLeft},on:{touchstart:t.start,mousedown:t.start}},[i("i",{class:["verify-icon iconfont",t.iconClass],style:{color:t.iconColor}}),t._v(" "),"2"===t.type?i("div",{staticClass:"verify-sub-block",style:{width:Math.floor(47*parseInt(t.setSize.imgWidth)/310)+"px",height:t.setSize.imgHeight,top:"-"+(parseInt(t.setSize.imgHeight)+t.vSpace)+"px","background-size":t.setSize.imgWidth+" "+t.setSize.imgHeight}},[i("img",{staticStyle:{width:"100%",height:"100%",display:"block"},attrs:{src:"data:image/png;base64,"+t.blockBackImgBase,alt:""}})]):t._e()])])])])}),f=[];i("a481");function p(t){return t}function g(t){var e,i,n,o,s=t.$el.parentNode.offsetWidth||window.offsetWidth,a=t.$el.parentNode.offsetHeight||window.offsetHeight;return e=-1!=t.imgSize.width.indexOf("%")?parseInt(this.imgSize.width)/100*s+"px":this.imgSize.width,i=-1!=t.imgSize.height.indexOf("%")?parseInt(this.imgSize.height)/100*a+"px":this.imgSize.height,n=-1!=t.barSize.width.indexOf("%")?parseInt(this.barSize.width)/100*s+"px":this.barSize.width,o=-1!=t.barSize.height.indexOf("%")?parseInt(this.barSize.height)/100*a+"px":this.barSize.height,{imgWidth:e,imgHeight:i,barWidth:n,barHeight:o}}var m={name:"VerifySlide",props:{captchaType:{type:String,default:"blockPuzzle"},type:{type:String,default:"1"},mode:{type:String,default:"fixed"},vSpace:{type:Number,default:5},explain:{type:String,default:"向右滑动完成验证"},imgSize:{type:Object,default:function(){return{width:"310px",height:"155px"}}},blockSize:{type:Object,default:function(){return{width:"50px",height:"50px"}}},barSize:{type:Object,default:function(){return{width:"310px",height:"40px"}}},defaultImg:{type:String,default:""}},data:function(){return{secretKey:"",passFlag:"",backImgBase:"",blockBackImgBase:"",backToken:"",startMoveTime:"",endMovetime:"",tipsBackColor:"",tipWords:"",text:"",finishText:"",setSize:{imgHeight:0,imgWidth:0,barHeight:0,barWidth:0},top:0,left:0,moveBlockLeft:void 0,leftBarWidth:void 0,moveBlockBackgroundColor:void 0,leftBarBorderColor:"#ddd",iconColor:void 0,iconClass:"icon-right",status:!1,isEnd:!1,showRefresh:!0,transitionLeft:"",transitionWidth:""}},computed:{barArea:function(){return this.$el.querySelector(".verify-bar-area")},resetSize:function(){return g}},watch:{type:{immediate:!0,handler:function(){this.init()}}},mounted:function(){this.$el.onselectstart=function(){return!1},console.log(this.defaultImg)},methods:{init:function(){var t=this;this.text=this.explain,this.getPictrue(),this.$nextTick((function(){var e=t.resetSize(t);for(var i in e)t.$set(t.setSize,i,e[i]);t.$parent.$emit("ready",t)}));var e=this;window.removeEventListener("touchmove",(function(t){e.move(t)})),window.removeEventListener("mousemove",(function(t){e.move(t)})),window.removeEventListener("touchend",(function(){e.end()})),window.removeEventListener("mouseup",(function(){e.end()})),window.addEventListener("touchmove",(function(t){e.move(t)})),window.addEventListener("mousemove",(function(t){e.move(t)})),window.addEventListener("touchend",(function(){e.end()})),window.addEventListener("mouseup",(function(){e.end()}))},start:function(t){if(t=t||window.event,t.touches)e=t.touches[0].pageX;else var e=t.clientX;this.startLeft=Math.floor(e-this.barArea.getBoundingClientRect().left),this.startMoveTime=+new Date,0==this.isEnd&&(this.text="",this.moveBlockBackgroundColor="#337ab7",this.leftBarBorderColor="#337AB7",this.iconColor="#fff",t.stopPropagation(),this.status=!0)},move:function(t){if(t=t||window.event,this.status&&0==this.isEnd){if(t.touches)e=t.touches[0].pageX;else var e=t.clientX;var i=this.barArea.getBoundingClientRect().left,n=e-i;n>=this.barArea.offsetWidth-parseInt(parseInt(this.blockSize.width)/2)-2&&(n=this.barArea.offsetWidth-parseInt(parseInt(this.blockSize.width)/2)-2),n<=0&&(n=parseInt(parseInt(this.blockSize.width)/2)),this.moveBlockLeft=n-this.startLeft+"px",this.leftBarWidth=n-this.startLeft+"px"}},end:function(){var t=this;this.endMovetime=+new Date;var e=this;if(this.status&&0==this.isEnd){var i=parseInt((this.moveBlockLeft||"").replace("px",""));i=310*i/parseInt(this.setSize.imgWidth);var n={captchaType:this.captchaType,pointJson:this.secretKey?p(JSON.stringify({x:i,y:5}),this.secretKey):JSON.stringify({x:i,y:5}),token:this.backToken};Object(a["c"])(n).then((function(e){t.moveBlockBackgroundColor="#5cb85c",t.leftBarBorderColor="#5cb85c",t.iconColor="#fff",t.iconClass="icon-check",t.showRefresh=!1,t.isEnd=!0,"pop"==t.mode&&setTimeout((function(){t.$parent.clickShow=!1,t.refresh()}),1500),t.passFlag=!0,t.tipWords="".concat(((t.endMovetime-t.startMoveTime)/1e3).toFixed(2),"s验证成功");var n=t.secretKey?p(t.backToken+"---"+JSON.stringify({x:i,y:5}),t.secretKey):t.backToken+"---"+JSON.stringify({x:i,y:5});setTimeout((function(){t.tipWords="",t.$parent.closeBox(),t.$parent.$emit("success",{captchaVerification:n})}),1e3)})).catch((function(i){t.moveBlockBackgroundColor="#d9534f",t.leftBarBorderColor="#d9534f",t.iconColor="#fff",t.iconClass="icon-close",t.passFlag=!1,setTimeout((function(){e.refresh()}),1e3),t.$parent.$emit("error",t),t.tipWords="验证失败",setTimeout((function(){t.tipWords=""}),1e3)})),this.status=!1}},refresh:function(){var t=this;this.showRefresh=!0,this.finishText="",this.transitionLeft="left .3s",this.moveBlockLeft=0,this.leftBarWidth=void 0,this.transitionWidth="width .3s",this.leftBarBorderColor="#ddd",this.moveBlockBackgroundColor="#fff",this.iconColor="#000",this.iconClass="icon-right",this.isEnd=!1,this.getPictrue(),setTimeout((function(){t.transitionWidth="",t.transitionLeft="",t.text=t.explain}),300)},getPictrue:function(){var t=this;console.log("sssss");var e={captchaType:this.captchaType,clientUid:localStorage.getItem("slider"),ts:Date.now()};console.log(e),Object(a["b"])(e).then((function(e){t.backImgBase=e.data.originalImageBase64,t.blockBackImgBase=e.data.jigsawImageBase64,t.backToken=e.data.token,t.secretKey=e.data.secretKey})).catch((function(e){t.tipWords=e.msg,t.backImgBase=null,t.blockBackImgBase=null}))}}},v=m,y=i("2877"),b=Object(y["a"])(v,u,f,!1,null,null,null),w=b.exports,k=function(){var t=this,e=t.$createElement,i=t._self._c||e;return i("div",{staticStyle:{position:"relative"}},[i("div",{staticClass:"verify-img-out"},[i("div",{staticClass:"verify-img-panel",style:{width:t.setSize.imgWidth,height:t.setSize.imgHeight,"background-size":t.setSize.imgWidth+" "+t.setSize.imgHeight,"margin-bottom":t.vSpace+"px"}},[i("div",{directives:[{name:"show",rawName:"v-show",value:t.showRefresh,expression:"showRefresh"}],staticClass:"verify-refresh",staticStyle:{"z-index":"3"},on:{click:t.refresh}},[i("i",{staticClass:"iconfont icon-refresh"})]),t._v(" "),i("img",{ref:"canvas",staticStyle:{width:"100%",height:"100%",display:"block"},attrs:{src:t.pointBackImgBase?"data:image/png;base64,"+t.pointBackImgBase:t.defaultImg,alt:""},on:{click:function(e){t.bindingClick&&t.canvasClick(e)}}}),t._v(" "),t._l(t.tempPoints,(function(e,n){return i("div",{key:n,staticClass:"point-area",style:{"background-color":"#1abd6c",color:"#fff","z-index":9999,width:"20px",height:"20px","text-align":"center","line-height":"20px","border-radius":"50%",position:"absolute",top:parseInt(e.y-10)+"px",left:parseInt(e.x-10)+"px"}},[t._v("\n "+t._s(n+1)+"\n ")])}))],2)]),t._v(" "),i("div",{staticClass:"verify-bar-area",style:{width:t.setSize.imgWidth,color:this.barAreaColor,"border-color":this.barAreaBorderColor,"line-height":this.barSize.height}},[i("span",{staticClass:"verify-msg"},[t._v(t._s(t.text))])])])},x=[],S={name:"VerifyPoints",props:{mode:{type:String,default:"fixed"},captchaType:{type:String,default:"blockPuzzle"},vSpace:{type:Number,default:5},imgSize:{type:Object,default:function(){return{width:"310px",height:"155px"}}},barSize:{type:Object,default:function(){return{width:"310px",height:"40px"}}},defaultImg:{type:String,default:""}},data:function(){return{secretKey:"",checkNum:3,fontPos:[],checkPosArr:[],num:1,pointBackImgBase:"",poinTextList:[],backToken:"",setSize:{imgHeight:0,imgWidth:0,barHeight:0,barWidth:0},tempPoints:[],text:"",barAreaColor:void 0,barAreaBorderColor:void 0,showRefresh:!0,bindingClick:!0}},computed:{resetSize:function(){return g}},watch:{type:{immediate:!0,handler:function(){this.init()}}},mounted:function(){this.$el.onselectstart=function(){return!1}},methods:{init:function(){var t=this;this.fontPos.splice(0,this.fontPos.length),this.checkPosArr.splice(0,this.checkPosArr.length),this.num=1,this.getPictrue(),this.$nextTick((function(){t.setSize=t.resetSize(t),t.$parent.$emit("ready",t)}))},canvasClick:function(t){var e=this;this.checkPosArr.push(this.getMousePos(this.$refs.canvas,t)),this.num==this.checkNum&&(this.num=this.createPoint(this.getMousePos(this.$refs.canvas,t)),this.checkPosArr=this.pointTransfrom(this.checkPosArr,this.setSize),setTimeout((function(){var t=e.secretKey?p(e.backToken+"---"+JSON.stringify(e.checkPosArr),e.secretKey):e.backToken+"---"+JSON.stringify(e.checkPosArr),i={captchaType:e.captchaType,pointJson:e.secretKey?p(JSON.stringify(e.checkPosArr),e.secretKey):JSON.stringify(e.checkPosArr),token:e.backToken};Object(a["c"])(i).then((function(i){"0000"==i.repCode?(e.barAreaColor="#4cae4c",e.barAreaBorderColor="#5cb85c",e.text="验证成功",e.bindingClick=!1,"pop"==e.mode&&setTimeout((function(){e.$parent.clickShow=!1,e.refresh()}),1500),e.$parent.$emit("success",{captchaVerification:t})):(e.$parent.$emit("error",e),e.barAreaColor="#d9534f",e.barAreaBorderColor="#d9534f",e.text="验证失败",setTimeout((function(){e.refresh()}),700))}))}),400)),this.num="A"&&e<="Z"},showPwd:function(){var t=this;"password"===this.passwordType?this.passwordType="":this.passwordType="password",this.$nextTick((function(){t.$refs.password.focus()}))},handleLogin:function(){var t=this;this.loginForm.captchaVerification="",this.$refs["loginForm"].validate((function(e){if(!e)return!1;t.loading=!0,Object(a["d"])({account:t.loginForm.account}).then((function(e){e.data.status?t.getVerify():t.loginIn()})).catch((function(e){t.$message.error(e.message)}))}))},loginIn:function(){var t=this;this.$store.dispatch("user/login",this.loginForm).then((function(e){console.log(e),t.$router.push({path:"/"}),t.loading=!1,t.$root.closeNotice(),t.$root.notice=Object(r["a"])(e.token)})).catch((function(e){t.loginForm.code="",t.$message.error(e.message),t.loading=!1}))},getOtherQuery:function(t){return Object.keys(t).reduce((function(e,i){return"redirect"!==i&&(e[i]=t[i]),e}),{})},handleResize:function(t){this.fullWidth=document.body.clientWidth,this.fullWidth<768?document.getElementsByTagName("canvas")[0].removeAttribute("class","index_bg"):document.getElementsByTagName("canvas")[0].className="index_bg"},getVersion:function(){var t=this;Object(s["l"])().then((function(e){t.copyright=e.data}))},success:function(t){this.isShow=!1,this.loginForm.captchaType="blockPuzzle",this.loginForm.captchaVerification=t.captchaVerification,this.loginIn()}}},W=P,O=(i("29d7"),i("b2f3"),Object(y["a"])(W,n,o,!1,null,"7b864943",null));e["default"]=O.exports},b2f3:function(t,e,i){"use strict";i("d778")},d778:function(t,e,i){},fceb:function(t,e,i){}}]); \ No newline at end of file diff --git a/public/mer/js/chunk-4f7a44e8.9f4809f9.js b/public/mer/js/chunk-4f7a44e8.9f4809f9.js new file mode 100644 index 00000000..2ac6cc3a --- /dev/null +++ b/public/mer/js/chunk-4f7a44e8.9f4809f9.js @@ -0,0 +1 @@ +(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-4f7a44e8"],{"146d":function(t,e,a){"use strict";a.r(e);var n=function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("div",{staticClass:"divBox"},[a("el-card",{staticClass:"box-card"},[a("div",{staticClass:"clearfix",attrs:{slot:"header"},slot:"header"},[a("div",{staticClass:"container"},[a("el-form",{attrs:{size:"small",inline:"","label-width":"100px"}},[a("el-form-item",{staticClass:"width100",staticStyle:{display:"block"},attrs:{label:"时间选择:"}},[a("el-radio-group",{staticClass:"mr20",attrs:{type:"button",size:"small"},on:{change:function(e){return t.selectChange(t.tableFrom.date)}},model:{value:t.tableFrom.date,callback:function(e){t.$set(t.tableFrom,"date",e)},expression:"tableFrom.date"}},t._l(t.fromList.fromTxt,(function(e,n){return a("el-radio-button",{key:n,attrs:{label:e.val}},[t._v(t._s(e.text))])})),1),t._v(" "),a("el-date-picker",{staticStyle:{width:"250px"},attrs:{"value-format":"yyyy/MM/dd",format:"yyyy/MM/dd",size:"small",type:"daterange",placement:"bottom-end",placeholder:"自定义时间"},on:{change:t.onchangeTime},model:{value:t.timeVal,callback:function(e){t.timeVal=e},expression:"timeVal"}})],1),t._v(" "),a("el-form-item",{attrs:{label:"审核状态:"}},[a("el-radio-group",{attrs:{type:"button"},on:{change:function(e){return t.getList(1)}},model:{value:t.tableFrom.status,callback:function(e){t.$set(t.tableFrom,"status",e)},expression:"tableFrom.status"}},[a("el-radio-button",{attrs:{label:""}},[t._v("全部 ")]),t._v(" "),a("el-radio-button",{attrs:{label:"0"}},[t._v("待审核")]),t._v(" "),a("el-radio-button",{attrs:{label:"1"}},[t._v("已审核")]),t._v(" "),a("el-radio-button",{attrs:{label:"-1"}},[t._v("审核失败")])],1)],1),t._v(" "),a("el-form-item",{attrs:{label:"到账状态:"}},[a("el-select",{staticClass:"filter-item selWidth mr20",attrs:{placeholder:"请选择",clearable:""},on:{change:function(e){t.getList(1)}},model:{value:t.tableFrom.financial_status,callback:function(e){t.$set(t.tableFrom,"financial_status",e)},expression:"tableFrom.financial_status"}},t._l(t.arrivalStatusList,(function(t){return a("el-option",{key:t.value,attrs:{label:t.label,value:t.value}})})),1)],1),t._v(" "),a("br"),t._v(" "),a("el-form-item",{attrs:{label:"收款方式:"}},[a("el-radio-group",{attrs:{type:"button"},on:{change:function(e){return t.getList(1)}},model:{value:t.tableFrom.financial_type,callback:function(e){t.$set(t.tableFrom,"financial_type",e)},expression:"tableFrom.financial_type"}},[a("el-radio-button",{attrs:{label:""}},[t._v("全部 ")]),t._v(" "),a("el-radio-button",{attrs:{label:"1"}},[t._v("银行卡")]),t._v(" "),a("el-radio-button",{attrs:{label:"3"}},[t._v("支付宝")]),t._v(" "),a("el-radio-button",{attrs:{label:"2"}},[t._v("微信")])],1)],1),t._v(" "),a("el-form-item",{staticClass:"width100",attrs:{label:"关键字:"}},[a("el-input",{staticClass:"selWidth",attrs:{placeholder:"请输入管理员姓名",size:"small"},nativeOn:{keyup:function(e){return!e.type.indexOf("key")&&t._k(e.keyCode,"enter",13,e.key,"Enter")?null:t.getList(1)}},model:{value:t.tableFrom.keyword,callback:function(e){t.$set(t.tableFrom,"keyword",e)},expression:"tableFrom.keyword"}},[a("el-button",{staticClass:"el-button-solt",attrs:{slot:"append",icon:"el-icon-search",size:"small"},on:{click:function(e){return t.getList(1)}},slot:"append"})],1),t._v(" "),a("el-button",{attrs:{size:"small",type:"primary",icon:"el-icon-top"},on:{click:t.exports}},[t._v("导出列表")])],1),t._v(" "),a("el-button",{staticStyle:{display:"block"},attrs:{size:"small",type:"primary"},on:{click:t.applyTransfer}},[t._v("\n 申请转账\n ")])],1)],1),t._v(" "),a("cards-data",{attrs:{"card-lists":t.cardLists}})],1),t._v(" "),a("el-table",{directives:[{name:"loading",rawName:"v-loading",value:t.listLoading,expression:"listLoading"}],staticClass:"table",staticStyle:{width:"100%"},attrs:{"tooltip-effect":"dark",data:t.tableData.data,size:"small"}},[a("el-table-column",{attrs:{label:"序号","min-width":"90"},scopedSlots:t._u([{key:"default",fn:function(e){return[a("span",[t._v(t._s(e.$index+(t.tableFrom.page-1)*t.tableFrom.limit+1))])]}}])}),t._v(" "),a("el-table-column",{attrs:{prop:"create_time",label:"申请时间","min-width":"170"}}),t._v(" "),a("el-table-column",{attrs:{prop:"extract_money",label:"转账金额(元)","min-width":"120"}}),t._v(" "),a("el-table-column",{attrs:{prop:"mer_admin_id",label:"管理员姓名","min-width":"90"}}),t._v(" "),a("el-table-column",{attrs:{label:"收款方式","min-width":"100"},scopedSlots:t._u([{key:"default",fn:function(e){return[e.row.financial_type?a("span",[t._v(t._s(1==e.row.financial_type?"银行":2==e.row.financial_type?"微信":"支付宝"))]):a("span",[t._v("--")])]}}])}),t._v(" "),a("el-table-column",{attrs:{label:"审核状态","min-width":"120"},scopedSlots:t._u([{key:"default",fn:function(e){return[a("span",[t._v(t._s(0==e.row.status?"待审核":1==e.row.status?"审核通过":"审核未通过"))]),t._v(" "),-1===e.row.status?a("span",{staticStyle:{"font-size":"12px"}},[a("br"),t._v("\n 原因:"+t._s(e.row.refusal)+"\n ")]):t._e()]}}])}),t._v(" "),a("el-table-column",{attrs:{label:"到账状态","min-width":"120"},scopedSlots:t._u([{key:"default",fn:function(e){return[a("span",[t._v(t._s(1==e.row.financial_status?"已到账":"未到账"))])]}}])}),t._v(" "),a("el-table-column",{attrs:{prop:"mer_money",label:"余额(元)","min-width":"120"}}),t._v(" "),a("el-table-column",{attrs:{label:"操作","min-width":"180",fixed:"right",align:"center"},scopedSlots:t._u([{key:"default",fn:function(e){return[a("el-button",{attrs:{type:"text",size:"small"},on:{click:function(a){return t.transferDetail(e.row.financial_id)}}},[t._v("转账信息")]),t._v(" "),a("el-button",{attrs:{type:"text",size:"small"},on:{click:function(a){return t.transferMark(e.row.financial_id)}}},[t._v("备注")])]}}])})],1),t._v(" "),a("div",{staticClass:"block"},[a("el-pagination",{attrs:{"page-sizes":[20,40,60,80],"page-size":t.tableFrom.limit,"current-page":t.tableFrom.page,layout:"total, sizes, prev, pager, next, jumper",total:t.tableData.total},on:{"size-change":t.handleSizeChange,"current-change":t.pageChange}})],1)],1),t._v(" "),t.dialogVisible?a("el-dialog",{attrs:{title:"转账信息:",visible:t.dialogVisible,width:"700px"},on:{"update:visible":function(e){t.dialogVisible=e}}},[a("div",{staticClass:"box-container"},[a("div",{staticClass:"acea-row"},[a("div",{staticClass:"list sp100"},[a("label",{staticClass:"name"},[t._v("商户余额:")]),t._v(t._s(t.transferData.mer_money))]),t._v(" "),a("div",{staticClass:"list sp100"},[a("label",{staticClass:"name"},[t._v("商户收款方式:")]),t._v(t._s(1==t.transferData.financial_type?"银行卡":2==t.transferData.financial_type?"微信":"支付宝"))]),t._v(" "),1==t.transferData.financial_type?a("div",{staticClass:"list sp100"},[a("label",{staticClass:"name"},[t._v("开户银行:")]),t._v(t._s(t.transferData.financial_account.bank))]):t._e(),t._v(" "),1==t.transferData.financial_type?a("div",{staticClass:"list sp100"},[a("label",{staticClass:"name"},[t._v("银行账号:")]),t._v(t._s(t.transferData.financial_account.bank_code))]):t._e(),t._v(" "),1==t.transferData.financial_type?a("div",{staticClass:"list sp100"},[a("label",{staticClass:"name"},[t._v("开户户名:")]),t._v(t._s(t.transferData.financial_account.name))]):t._e(),t._v(" "),1!=t.transferData.financial_type?a("div",{staticClass:"list sp100"},[a("label",{staticClass:"name"},[t._v("真实姓名:")]),t._v(t._s(t.transferData.financial_account.name))]):t._e(),t._v(" "),2==t.transferData.financial_type?a("div",{staticClass:"list sp100"},[a("label",{staticClass:"name"},[t._v("微信号:")]),t._v(t._s(t.transferData.financial_account.wechat))]):t._e(),t._v(" "),2==t.transferData.financial_type?a("div",{staticClass:"list sp100 image"},[a("label",{staticClass:"name"},[t._v("微信收款二维码:")]),a("img",{staticStyle:{"max-width":"150px",height:"80px"},attrs:{src:t.transferData.financial_account.wechat_code}})]):t._e(),t._v(" "),3==t.transferData.financial_type?a("div",{staticClass:"list sp100"},[a("label",{staticClass:"name"},[t._v("支付宝账号:")]),t._v(t._s(t.transferData.financial_account.alipay))]):t._e(),t._v(" "),3==t.transferData.financial_type?a("div",{staticClass:"list sp100 image"},[a("label",{staticClass:"name"},[t._v("支付宝收款二维码:")]),a("img",{staticStyle:{"max-width":"150px",height:"80px"},attrs:{src:t.transferData.financial_account.alipay_code}})]):t._e(),t._v(" "),a("div",{staticClass:"list sp100"},[a("label",{staticClass:"name"},[t._v("本次申请转账金额:")]),a("span",{staticClass:"font-red"},[t._v(t._s(t.transferData.extract_money))])]),t._v(" "),a("div",{staticClass:"list sp100"},[a("label",{staticClass:"name"},[t._v("审核状态:")]),t._v(t._s(0==t.transferData.status?"待审核":1==t.transferData.status?"已审核":"审核失败"))]),t._v(" "),1==t.transferData.status?a("div",{staticClass:"list sp100"},[a("label",{staticClass:"name"},[t._v("审核时间:")]),t._v(t._s(t.transferData.status_time))]):t._e(),t._v(" "),1==t.transferData.status&&t.transferData.update_time?a("div",{staticClass:"list sp100"},[a("label",{staticClass:"name"},[t._v("转账凭证:")]),t._v(" "),t.transferData.image.length>0?a("div",{staticClass:"acea-row"},t._l(t.transferData.image,(function(e,n){return a("div",{key:n,staticClass:"pictrue"},[a("img",{attrs:{src:e},on:{click:function(a){return t.getPicture(e)}}})])})),0):t._e()]):t._e(),t._v(" "),1==t.transferData.status&&t.transferData.update_time?a("div",{staticClass:"list sp100"},[a("label",{staticClass:"name"},[t._v("转账时间:")]),t._v(t._s(t.transferData.update_time))]):t._e(),t._v(" "),-1==t.transferData.status?a("div",{staticClass:"list sp100"},[a("label",{staticClass:"name"},[t._v("审核未通过原因:")]),t._v(t._s(t.transferData.refusal))]):t._e()])])]):t._e(),t._v(" "),t.pictureVisible?a("el-dialog",{attrs:{visible:t.pictureVisible,width:"700px"},on:{"update:visible":function(e){t.pictureVisible=e}}},[a("img",{staticClass:"pictures",attrs:{src:t.pictureUrl}})]):t._e(),t._v(" "),a("file-list",{ref:"exportList"})],1)},r=[],i=a("c7eb"),s=(a("96cf"),a("1da1")),l=a("2801"),o=a("0f56"),c=a("2e83"),u=a("30dc"),f={components:{cardsData:o["a"],fileList:u["a"]},name:"transferAccount",data:function(){return{tableData:{data:[],total:0},arrivalStatusList:[{label:"已到账",value:1},{label:"未到账",value:0}],listLoading:!0,tableFrom:{date:"",page:1,limit:20,keyword:"",financial_type:"",status:"",financial_status:""},timeVal:[],fromList:{title:"选择时间",custom:!0,fromTxt:[{text:"全部",val:""},{text:"今天",val:"today"},{text:"昨天",val:"yesterday"},{text:"最近7天",val:"lately7"},{text:"最近30天",val:"lately30"},{text:"本月",val:"month"},{text:"本年",val:"year"}]},selectionList:[],loading:!1,dialogVisible:!1,pictureVisible:!1,pictureUrl:"",transferData:{},cardLists:[]}},mounted:function(){this.getList(1)},methods:{transferDetail:function(t){var e=this;Object(l["p"])(t).then((function(t){e.dialogVisible=!0,e.transferData=t.data})).catch((function(t){e.$message.error(t.message)}))},getPicture:function(t){this.pictureVisible=!0,this.pictureUrl=t},transferMark:function(t){var e=this;this.$modalForm(Object(l["r"])(t)).then((function(){return e.getList(1)}))},applyTransfer:function(){var t=this;this.$modalForm(Object(l["a"])()).then((function(){return t.getList(1)}))},selectChange:function(t){this.tableFrom.date=t,this.timeVal=[],this.getList(1)},onchangeTime:function(t){this.timeVal=t,this.tableFrom.date=t?this.timeVal.join("-"):"",this.getList(1)},exports:function(){var t=Object(s["a"])(Object(i["a"])().mark((function t(e){var a,n,r,s,l;return Object(i["a"])().wrap((function(t){while(1)switch(t.prev=t.next){case 0:a=JSON.parse(JSON.stringify(this.tableFrom)),n=[],a.page=1,r=1,s={},l=0;case 5:if(!(ln)&&c.mergeCells(x(r)+t+":"+x(r)+e)}function C(t){if(!Object(n["isEmpty"])(t))if(Array.isArray(t))for(var e=0;e0,expression:"scope.row.is_del > 0"}],staticStyle:{color:"#ED4014",display:"block"}},[t._v("用户已删除")])]}}])}),t._v(" "),r("el-table-column",{attrs:{label:"订单类型","min-width":"170"},scopedSlots:t._u([{key:"default",fn:function(e){return[r("span",[t._v(t._s(0==e.row.order_type?"普通订单":"核销订单"))])]}}])}),t._v(" "),r("el-table-column",{attrs:{prop:"real_name",label:"收货人","min-width":"130"}}),t._v(" "),r("el-table-column",{attrs:{label:"商品信息","min-width":"330"},scopedSlots:t._u([{key:"default",fn:function(e){return t._l(e.row.orderProduct,(function(e,n){return r("div",{key:n,staticClass:"tabBox acea-row row-middle"},[r("div",{staticClass:"demo-image__preview"},[r("el-image",{attrs:{src:e.cart_info.product.image,"preview-src-list":[e.cart_info.product.image]}})],1),t._v(" "),r("span",{staticClass:"tabBox_tit"},[t._v(t._s(e.cart_info.product.store_name+" | ")+t._s(e.cart_info.productAttr.sku))]),t._v(" "),r("span",{staticClass:"tabBox_pice"},[t._v(t._s("¥"+e.cart_info.productAttr.price+" x "+e.product_num))])])}))}}])}),t._v(" "),r("el-table-column",{attrs:{prop:"pay_price",label:"实际支付","min-width":"100"}}),t._v(" "),r("el-table-column",{attrs:{prop:"pay_price",label:"核销员","min-width":"100"},scopedSlots:t._u([{key:"default",fn:function(e){return[e.row.paid?r("span",[t._v(t._s(e.row.verifyService?e.row.verifyService.nickname:"管理员核销"))]):t._e()]}}])}),t._v(" "),r("el-table-column",{attrs:{prop:"serviceScore",label:"核销状态","min-width":"80"},scopedSlots:t._u([{key:"default",fn:function(e){return[r("span",[t._v(t._s(-1==e.row.status?"已退款":"已核销"))])]}}])}),t._v(" "),r("el-table-column",{attrs:{prop:"verify_time",label:"核销时间","min-width":"150"}})],1),t._v(" "),r("div",{staticClass:"block"},[r("el-pagination",{attrs:{"page-sizes":[20,40,60,80],"page-size":t.tableFrom.limit,"current-page":t.tableFrom.page,layout:"total, sizes, prev, pager, next, jumper",total:t.tableData.total},on:{"size-change":t.handleSizeChange,"current-change":t.pageChange}})],1)],1),t._v(" "),r("file-list",{ref:"exportList"})],1)},a=[],o=r("f8b7"),i=r("30dc"),s=r("0f56"),c={components:{cardsData:s["a"],fileList:i["a"]},data:function(){return{orderId:0,tableData:{data:[],total:0},listLoading:!0,tableFrom:{order_sn:"",status:"",date:"",page:1,limit:20,type:"4",order_type:"1",username:"",keywords:""},orderChartType:{},timeVal:[],fromList:{title:"选择时间",custom:!0,fromTxt:[{text:"全部",val:""},{text:"今天",val:"today"},{text:"昨天",val:"yesterday"},{text:"最近7天",val:"lately7"},{text:"最近30天",val:"lately30"},{text:"本月",val:"month"},{text:"本年",val:"year"}]},selectionList:[],ids:"",tableFromLog:{page:1,limit:10},tableDataLog:{data:[],total:0},LogLoading:!1,dialogVisible:!1,fileVisible:!1,cardLists:[],orderDatalist:null,headeNum:[{type:1,name:"全部",count:10},{type:2,name:"普通订单",count:3},{type:3,name:"直播订单",count:1},{type:4,name:"核销订单",count:2},{type:5,name:"拼团订单",count:0},{type:6,name:"秒杀订单",count:6},{type:7,name:"砍价订单",count:5}]}},mounted:function(){this.headerList(),this.getCardList(),this.getList(1)},methods:{exportOrder:function(){var t=this;Object(o["m"])({status:this.tableFrom.status,date:this.tableFrom.date,take_order:1}).then((function(e){var r=t.$createElement;t.$msgbox({title:"提示",message:r("p",null,[r("span",null,'文件正在生成中,请稍后点击"'),r("span",{style:"color: teal"},"导出记录"),r("span",null,'"查看~ ')]),confirmButtonText:"我知道了"}).then((function(t){}))})).catch((function(e){t.$message.error(e.message)}))},getExportFileList:function(){this.fileVisible=!0,this.$refs.exportList.exportFileList("order")},pageChangeLog:function(t){this.tableFromLog.page=t,this.getList("")},handleSizeChangeLog:function(t){this.tableFromLog.limit=t,this.getList("")},handleSelectionChange:function(t){this.selectionList=t;var e=[];this.selectionList.map((function(t){e.push(t.id)})),this.ids=e.join(",")},selectChange:function(t){this.timeVal=[],this.tableFrom.date=t,this.getCardList(),this.getList(1)},onchangeTime:function(t){this.timeVal=t,this.tableFrom.date=t?this.timeVal.join("-"):"",this.getCardList(),this.getList(1)},getList:function(t){var e=this;this.listLoading=!0,this.tableFrom.page=t||this.tableFrom.page,Object(o["W"])(this.tableFrom).then((function(t){e.tableData.data=t.data.list,e.tableData.total=t.data.count,e.listLoading=!1})).catch((function(t){e.$message.error(t.message),e.listLoading=!1}))},getCardList:function(){var t=this;Object(o["U"])(this.tableFrom).then((function(e){t.cardLists=e.data})).catch((function(e){t.$message.error(e.message)}))},pageChange:function(t){this.tableFrom.page=t,this.getList("")},handleSizeChange:function(t){this.tableFrom.limit=t,this.getList("")},headerList:function(){var t=this;Object(o["V"])().then((function(e){t.orderChartType=e.data})).catch((function(e){t.$message.error(e.message)}))}}},l=c,u=(r("a451"),r("2877")),d=Object(u["a"])(l,n,a,!1,null,"64ca3edd",null);e["default"]=d.exports},f8b7:function(t,e,r){"use strict";r.d(e,"F",(function(){return a})),r.d(e,"c",(function(){return o})),r.d(e,"b",(function(){return i})),r.d(e,"J",(function(){return s})),r.d(e,"C",(function(){return c})),r.d(e,"D",(function(){return l})),r.d(e,"p",(function(){return u})),r.d(e,"G",(function(){return d})),r.d(e,"I",(function(){return f})),r.d(e,"B",(function(){return p})),r.d(e,"H",(function(){return m})),r.d(e,"Q",(function(){return g})),r.d(e,"O",(function(){return h})),r.d(e,"T",(function(){return b})),r.d(e,"S",(function(){return v})),r.d(e,"R",(function(){return _})),r.d(e,"N",(function(){return y})),r.d(e,"d",(function(){return L})),r.d(e,"s",(function(){return x})),r.d(e,"P",(function(){return w})),r.d(e,"m",(function(){return k})),r.d(e,"l",(function(){return C})),r.d(e,"k",(function(){return F})),r.d(e,"j",(function(){return S})),r.d(e,"A",(function(){return z})),r.d(e,"u",(function(){return V})),r.d(e,"E",(function(){return E})),r.d(e,"V",(function(){return O})),r.d(e,"W",(function(){return $})),r.d(e,"U",(function(){return D})),r.d(e,"y",(function(){return j})),r.d(e,"x",(function(){return T})),r.d(e,"v",(function(){return B})),r.d(e,"w",(function(){return M})),r.d(e,"z",(function(){return N})),r.d(e,"i",(function(){return W})),r.d(e,"g",(function(){return A})),r.d(e,"h",(function(){return J})),r.d(e,"M",(function(){return P})),r.d(e,"o",(function(){return I})),r.d(e,"n",(function(){return U})),r.d(e,"a",(function(){return q})),r.d(e,"r",(function(){return G})),r.d(e,"t",(function(){return H})),r.d(e,"q",(function(){return K})),r.d(e,"f",(function(){return Q})),r.d(e,"e",(function(){return R})),r.d(e,"L",(function(){return X})),r.d(e,"K",(function(){return Y}));var n=r("0c6d");function a(t){return n["a"].get("store/order/lst",t)}function o(){return n["a"].get("store/order/chart")}function i(t){return n["a"].get("store/order/title",t)}function s(t,e){return n["a"].post("store/order/update/".concat(t),e)}function c(t,e){return n["a"].post("store/order/delivery/".concat(t),e)}function l(t){return n["a"].get("store/order/detail/".concat(t))}function u(t){return n["a"].get("store/order/children/".concat(t))}function d(t,e){return n["a"].get("store/order/log/".concat(t),e)}function f(t){return n["a"].get("store/order/remark/".concat(t,"/form"))}function p(t){return n["a"].post("store/order/delete/".concat(t))}function m(t){return n["a"].get("store/order/printer/".concat(t))}function g(t){return n["a"].get("store/refundorder/lst",t)}function h(t){return n["a"].get("store/refundorder/detail/".concat(t))}function b(t){return n["a"].get("store/refundorder/status/".concat(t,"/form"))}function v(t){return n["a"].get("store/refundorder/mark/".concat(t,"/form"))}function _(t){return n["a"].get("store/refundorder/log/".concat(t))}function y(t){return n["a"].get("store/refundorder/delete/".concat(t))}function L(t){return n["a"].post("store/refundorder/refund/".concat(t))}function x(t){return n["a"].get("store/order/express/".concat(t))}function w(t){return n["a"].get("store/refundorder/express/".concat(t))}function k(t){return n["a"].get("store/order/excel",t)}function C(t){return n["a"].get("store/order/delivery_export",t)}function F(t){return n["a"].get("excel/lst",t)}function S(t){return n["a"].get("excel/download/".concat(t))}function z(t){return n["a"].get("store/order/verify/".concat(t))}function V(t,e){return n["a"].post("store/order/verify/".concat(t),e)}function E(){return n["a"].get("store/order/filtter")}function O(){return n["a"].get("store/order/takechart")}function $(t){return n["a"].get("store/order/takelst",t)}function D(t){return n["a"].get("store/order/take_title",t)}function j(t){return n["a"].get("store/receipt/lst",t)}function T(t){return n["a"].get("store/receipt/set_recipt",t)}function B(t){return n["a"].post("store/receipt/save_recipt",t)}function M(t){return n["a"].get("store/receipt/detail/".concat(t))}function N(t,e){return n["a"].post("store/receipt/update/".concat(t),e)}function W(t){return n["a"].get("store/import/lst",t)}function A(t,e){return n["a"].get("store/import/detail/".concat(t),e)}function J(t){return n["a"].get("store/import/excel/".concat(t))}function P(t){return n["a"].get("store/refundorder/excel",t)}function I(){return n["a"].get("expr/options")}function U(t){return n["a"].get("expr/temps",t)}function q(t){return n["a"].post("store/order/delivery_batch",t)}function G(){return n["a"].get("serve/config")}function H(){return n["a"].get("delivery/station/select")}function K(){return n["a"].get("delivery/station/options")}function Q(t){return n["a"].get("delivery/order/lst",t)}function R(t){return n["a"].get("delivery/order/cancel/".concat(t,"/form"))}function X(t){return n["a"].get("delivery/station/payLst",t)}function Y(t){return n["a"].get("delivery/station/code",t)}}}]); \ No newline at end of file diff --git a/public/mer/js/chunk-546dc2ee.5589e620.js b/public/mer/js/chunk-546dc2ee.5589e620.js new file mode 100644 index 00000000..6e575e42 --- /dev/null +++ b/public/mer/js/chunk-546dc2ee.5589e620.js @@ -0,0 +1,8 @@ +(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-546dc2ee"],{"74bf":function(t,e,a){"use strict";a("e6e3")},"85ba":function(t,e,a){},9920:function(t,e,a){},a247:function(t,e,a){"use strict";a("9920")},b311:function(t,e,a){ +/*! + * clipboard.js v2.0.4 + * https://zenorocha.github.io/clipboard.js + * + * Licensed MIT © Zeno Rocha + */ +(function(e,a){t.exports=a()})(0,(function(){return function(t){var e={};function a(s){if(e[s])return e[s].exports;var o=e[s]={i:s,l:!1,exports:{}};return t[s].call(o.exports,o,o.exports,a),o.l=!0,o.exports}return a.m=t,a.c=e,a.d=function(t,e,s){a.o(t,e)||Object.defineProperty(t,e,{enumerable:!0,get:s})},a.r=function(t){"undefined"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},a.t=function(t,e){if(1&e&&(t=a(t)),8&e)return t;if(4&e&&"object"===typeof t&&t&&t.__esModule)return t;var s=Object.create(null);if(a.r(s),Object.defineProperty(s,"default",{enumerable:!0,value:t}),2&e&&"string"!=typeof t)for(var o in t)a.d(s,o,function(e){return t[e]}.bind(null,o));return s},a.n=function(t){var e=t&&t.__esModule?function(){return t["default"]}:function(){return t};return a.d(e,"a",e),e},a.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},a.p="",a(a.s=0)}([function(t,e,a){"use strict";var s="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"===typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},o=function(){function t(t,e){for(var a=0;a0&&void 0!==arguments[0]?arguments[0]:{};this.action="function"===typeof t.action?t.action:this.defaultAction,this.target="function"===typeof t.target?t.target:this.defaultTarget,this.text="function"===typeof t.text?t.text:this.defaultText,this.container="object"===s(t.container)?t.container:document.body}},{key:"listenClick",value:function(t){var e=this;this.listener=(0,u.default)(t,"click",(function(t){return e.onClick(t)}))}},{key:"onClick",value:function(t){var e=t.delegateTarget||t.currentTarget;this.clipboardAction&&(this.clipboardAction=null),this.clipboardAction=new n.default({action:this.action(e),target:this.target(e),text:this.text(e),container:this.container,trigger:e,emitter:this})}},{key:"defaultAction",value:function(t){return h("action",t)}},{key:"defaultTarget",value:function(t){var e=h("target",t);if(e)return document.querySelector(e)}},{key:"defaultText",value:function(t){return h("text",t)}},{key:"destroy",value:function(){this.listener.destroy(),this.clipboardAction&&(this.clipboardAction.destroy(),this.clipboardAction=null)}}],[{key:"isSupported",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:["copy","cut"],e="string"===typeof t?[t]:t,a=!!document.queryCommandSupported;return e.forEach((function(t){a=a&&!!document.queryCommandSupported(t)})),a}}]),e}(l.default);function h(t,e){var a="data-clipboard-"+t;if(e.hasAttribute(a))return e.getAttribute(a)}t.exports=v},function(t,e,a){"use strict";var s="function"===typeof Symbol&&"symbol"===typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"===typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},o=function(){function t(t,e){for(var a=0;a0&&void 0!==arguments[0]?arguments[0]:{};this.action=t.action,this.container=t.container,this.emitter=t.emitter,this.target=t.target,this.text=t.text,this.trigger=t.trigger,this.selectedText=""}},{key:"initSelection",value:function(){this.text?this.selectFake():this.target&&this.selectTarget()}},{key:"selectFake",value:function(){var t=this,e="rtl"==document.documentElement.getAttribute("dir");this.removeFake(),this.fakeHandlerCallback=function(){return t.removeFake()},this.fakeHandler=this.container.addEventListener("click",this.fakeHandlerCallback)||!0,this.fakeElem=document.createElement("textarea"),this.fakeElem.style.fontSize="12pt",this.fakeElem.style.border="0",this.fakeElem.style.padding="0",this.fakeElem.style.margin="0",this.fakeElem.style.position="absolute",this.fakeElem.style[e?"right":"left"]="-9999px";var a=window.pageYOffset||document.documentElement.scrollTop;this.fakeElem.style.top=a+"px",this.fakeElem.setAttribute("readonly",""),this.fakeElem.value=this.text,this.container.appendChild(this.fakeElem),this.selectedText=(0,n.default)(this.fakeElem),this.copyText()}},{key:"removeFake",value:function(){this.fakeHandler&&(this.container.removeEventListener("click",this.fakeHandlerCallback),this.fakeHandler=null,this.fakeHandlerCallback=null),this.fakeElem&&(this.container.removeChild(this.fakeElem),this.fakeElem=null)}},{key:"selectTarget",value:function(){this.selectedText=(0,n.default)(this.target),this.copyText()}},{key:"copyText",value:function(){var t=void 0;try{t=document.execCommand(this.action)}catch(e){t=!1}this.handleResult(t)}},{key:"handleResult",value:function(t){this.emitter.emit(t?"success":"error",{action:this.action,text:this.selectedText,trigger:this.trigger,clearSelection:this.clearSelection.bind(this)})}},{key:"clearSelection",value:function(){this.trigger&&this.trigger.focus(),window.getSelection().removeAllRanges()}},{key:"destroy",value:function(){this.removeFake()}},{key:"action",set:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"copy";if(this._action=t,"copy"!==this._action&&"cut"!==this._action)throw new Error('Invalid "action" value, use either "copy" or "cut"')},get:function(){return this._action}},{key:"target",set:function(t){if(void 0!==t){if(!t||"object"!==("undefined"===typeof t?"undefined":s(t))||1!==t.nodeType)throw new Error('Invalid "target" value, use a valid Element');if("copy"===this.action&&t.hasAttribute("disabled"))throw new Error('Invalid "target" attribute. Please use "readonly" instead of "disabled" attribute');if("cut"===this.action&&(t.hasAttribute("readonly")||t.hasAttribute("disabled")))throw new Error('Invalid "target" attribute. You can\'t cut text from elements with "readonly" or "disabled" attributes');this._target=t}},get:function(){return this._target}}]),t}();t.exports=c},function(t,e){function a(t){var e;if("SELECT"===t.nodeName)t.focus(),e=t.value;else if("INPUT"===t.nodeName||"TEXTAREA"===t.nodeName){var a=t.hasAttribute("readonly");a||t.setAttribute("readonly",""),t.select(),t.setSelectionRange(0,t.value.length),a||t.removeAttribute("readonly"),e=t.value}else{t.hasAttribute("contenteditable")&&t.focus();var s=window.getSelection(),o=document.createRange();o.selectNodeContents(t),s.removeAllRanges(),s.addRange(o),e=s.toString()}return e}t.exports=a},function(t,e){function a(){}a.prototype={on:function(t,e,a){var s=this.e||(this.e={});return(s[t]||(s[t]=[])).push({fn:e,ctx:a}),this},once:function(t,e,a){var s=this;function o(){s.off(t,o),e.apply(a,arguments)}return o._=e,this.on(t,o,a)},emit:function(t){var e=[].slice.call(arguments,1),a=((this.e||(this.e={}))[t]||[]).slice(),s=0,o=a.length;for(s;sDate.now()}},value1:"",value2:"",decline:1,mainData:{yesterday:{},today:{},lastWeekRate:{}},today:{},lastWeekRate:{},yesterday:{},roterPre:b["roterPre"]}},components:{CountTo:p.a},mounted:function(){this.getMainData()},methods:{handleSetLineChartData:function(t){this.$emit("handleSetLineChartData",t)},getMainData:function(){var t=this;m().then((function(a){200===a.status&&(t.mainData=a.data)})).catch((function(a){t.$message.error(a.message)}))}}},k=x,D=(e("8b9d"),e("2877")),w=Object(D["a"])(k,c,d,!1,null,"27299f7a",null),S=w.exports,T=function(){var t=this,a=t.$createElement,e=t._self._c||a;return e("div",{class:t.className,style:{height:t.height,width:t.width}})},$=[],E=(e("c5f6"),e("313e")),R=e.n(E),L=e("ed08"),P={data:function(){return{$_sidebarElm:null,$_resizeHandler:null}},mounted:function(){var t=this;this.$_resizeHandler=Object(L["a"])((function(){t.chart&&t.chart.resize()}),100),this.$_initResizeEvent(),this.$_initSidebarResizeEvent()},beforeDestroy:function(){this.$_destroyResizeEvent(),this.$_destroySidebarResizeEvent()},activated:function(){this.$_initResizeEvent(),this.$_initSidebarResizeEvent()},deactivated:function(){this.$_destroyResizeEvent(),this.$_destroySidebarResizeEvent()},methods:{$_initResizeEvent:function(){window.addEventListener("resize",this.$_resizeHandler)},$_destroyResizeEvent:function(){window.removeEventListener("resize",this.$_resizeHandler)},$_sidebarResizeHandler:function(t){"width"===t.propertyName&&this.$_resizeHandler()},$_initSidebarResizeEvent:function(){this.$_sidebarElm=document.getElementsByClassName("sidebar-container")[0],this.$_sidebarElm&&this.$_sidebarElm.addEventListener("transitionend",this.$_sidebarResizeHandler)},$_destroySidebarResizeEvent:function(){this.$_sidebarElm&&this.$_sidebarElm.removeEventListener("transitionend",this.$_sidebarResizeHandler)}}};e("817d");var z={mixins:[P],props:{className:{type:String,default:"chart"},width:{type:String,default:"100%"},height:{type:String,default:"350px"},autoResize:{type:Boolean,default:!0},chartData:{type:Object,required:!0},date:{type:String,default:"lately7"}},data:function(){return{chart:null,horizontalAxis:[],PaymentAmount:[],orderNumber:[],user:[]}},watch:{chartData:{deep:!0,handler:function(t){this.setOptions(t)}},date:{deep:!0,handler:function(t){this.date=t;this.date}}},mounted:function(){var t=this;this.$nextTick((function(){t.initChart()}))},beforeDestroy:function(){this.chart&&(this.chart.dispose(),this.chart=null)},methods:{initChart:function(){this.chart=R.a.init(this.$el,"macarons")},getOrderData:function(t){var a=this,e=this;h(t).then((function(t){if(200===t.status){e.horizontalAxis.splice(0,e.horizontalAxis.length),e.PaymentAmount.splice(0,e.PaymentAmount.length),e.orderNumber.splice(0,e.orderNumber.length),e.user.splice(0,e.user.length),t.data.map((function(t){e.horizontalAxis.push(t.day),e.PaymentAmount.push(t.pay_price),e.orderNumber.push(t.total),e.user.push(t.user)}));var s=e.horizontalAxis,i=e.PaymentAmount;console.log(i);var n=e.orderNumber,r=e.user;e.chart.setOption({xAxis:{data:s,axisLine:{lineStyle:{color:"#606266"}},boundaryGap:!1,axisTick:{show:!1},axisLabel:{interval:0}},grid:{left:50,right:50,bottom:20,top:70,containLabel:!0},tooltip:{trigger:"axis",axisPointer:{type:"cross"},padding:[5,10]},yAxis:[{name:"订单/支付人数",max:parseFloat(a.arrayMax(n))+5,type:"value",axisLabel:{formatter:"{value}"}},{name:"支付金额",type:"value",max:parseFloat(a.arrayMax(i))+50,min:a.arrayMin(i),splitLine:{show:!1}}],legend:{data:["订单数","支付人数","支付金额"],left:10},series:[{name:"订单数",markPoint:{data:[{type:"max",name:"峰值"}]},itemStyle:{normal:{color:"#5b8ff9",lineStyle:{color:"#5b8ff9",width:2}}},smooth:!1,type:"line",data:n,animationDuration:2800,animationEasing:"cubicInOut"},{name:"支付人数",smooth:!1,type:"line",markPoint:{data:[{type:"max",name:"峰值"}]},itemStyle:{normal:{color:"#5d7092",lineStyle:{color:"#5d7092",width:2},areaStyle:{color:"rgba(255,255,255,.4)"}}},data:r,animationDuration:2800,animationEasing:"quadraticOut"},{name:"支付金额",yAxisIndex:1,smooth:!1,type:"line",markPoint:{data:[{type:"max",name:"峰值"}]},itemStyle:{normal:{color:"#5ad8a6",lineStyle:{color:"#5ad8a6",width:2},areaStyle:{color:"rgba(255,255,255,.4)"}}},data:i,animationDuration:2800,animationEasing:"quadraticOut"}]})}})).catch((function(t){a.$message.error(t.message)}))},setOptions:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};t.expectedData,t.actualData,t.payer},arrayMin:function(t){for(var a=t[0],e=1,s=t.length;ea&&(a=t[e]);return a}}},O=z,A=Object(D["a"])(O,T,$,!1,null,null,null),N=A.exports,W=function(){var t=this,a=t.$createElement,e=t._self._c||a;return e("div",{class:t.className,style:{height:t.height,width:t.width}})},j=[];e("817d");var F=3e3,B={mixins:[P],props:{className:{type:String,default:"chart"},width:{type:String,default:"100%"},height:{type:String,default:"300px"}},data:function(){return{chart:null}},mounted:function(){var t=this;this.$nextTick((function(){t.initChart()}))},beforeDestroy:function(){this.chart&&(this.chart.dispose(),this.chart=null)},methods:{initChart:function(){this.chart=R.a.init(this.$el,"macarons"),this.chart.setOption({tooltip:{trigger:"axis",axisPointer:{type:"shadow"}},radar:{radius:"66%",center:["50%","42%"],splitNumber:8,splitArea:{areaStyle:{color:"rgba(127,95,132,.3)",opacity:1,shadowBlur:45,shadowColor:"rgba(0,0,0,.5)",shadowOffsetX:0,shadowOffsetY:15}},indicator:[{name:"Sales",max:1e4},{name:"Administration",max:2e4},{name:"Information Technology",max:2e4},{name:"Customer Support",max:2e4},{name:"Development",max:2e4},{name:"Marketing",max:2e4}]},legend:{left:"center",bottom:"10",data:["Allocated Budget","Expected Spending","Actual Spending"]},series:[{type:"radar",symbolSize:0,areaStyle:{normal:{shadowBlur:13,shadowColor:"rgba(0,0,0,.2)",shadowOffsetX:0,shadowOffsetY:10,opacity:1}},data:[{value:[5e3,7e3,12e3,11e3,15e3,14e3],name:"Allocated Budget"},{value:[4e3,9e3,15e3,15e3,13e3,11e3],name:"Expected Spending"},{value:[5500,11e3,12e3,15e3,12e3,12e3],name:"Actual Spending"}],animationDuration:F}]})}}},M=B,U=Object(D["a"])(M,W,j,!1,null,null,null),H=U.exports,I=function(){var t=this,a=t.$createElement,e=t._self._c||a;return e("div",{class:t.className,style:{height:t.height,width:t.width}})},V=[];e("9fad");var q={mixins:[P],props:{className:{type:String,default:"chart"},width:{type:String,default:"100%"},height:{type:String,default:"300px"},amount:{type:Boolean,default:!0},date:{type:String,default:"lately7"}},data:function(){return{chart:null,newData:"",oldData:"",Comment:[]}},watch:{amount:{deep:!0,handler:function(t){this.amount=t,this.getTurnoverRatio()}},date:{deep:!0,handler:function(t){this.date=t}}},mounted:function(){this.$nextTick((function(){}))},beforeDestroy:function(){this.chart&&(this.chart.dispose(),this.chart=null)},methods:{getTurnoverRatio:function(){var t=this;f({date:this.date}).then((function(a){200===a.status&&(t.orderCustomer=a.data,t.newData=t.amount?a.data.newTotalPrice:a.data.newUser,t.oldData=t.amount?a.data.oldTotalPrice:a.data.oldUser,t.chart=R.a.init(t.$el,"shine"),t.chart.setOption({tooltip:{trigger:"item",formatter:"{a}
{b} : {c} ({d}%)"},legend:{orient:"vertical",bottom:0,left:"5%",data:["新用户","老用户"]},series:[{name:t.amount?"金额":"客户数",type:"pie",radius:["40%","70%"],avoidLabelOverlap:!1,label:{show:!1,position:"center"},emphasis:{label:{show:!0,fontSize:"20",fontWeight:"bold"}},labelLine:{show:!1},data:[{value:t.newData,name:"新用户",itemStyle:{color:"#6394F9"}},{value:t.oldData,name:"老用户",itemStyle:{color:"#EFAE23"}}],animationEasing:"cubicInOut",animationDuration:2600}]}))})).catch((function(a){t.$message.error(a.message)}))}}},J=q,G=Object(D["a"])(J,I,V,!1,null,null,null),X=G.exports,Y=function(){var t=this,a=t.$createElement,e=t._self._c||a;return e("div",{class:t.className,style:{height:t.height,width:t.width}})},K=[];e("817d");var Q=6e3,Z={mixins:[P],props:{className:{type:String,default:"chart"},width:{type:String,default:"100%"},height:{type:String,default:"300px"}},data:function(){return{chart:null}},mounted:function(){var t=this;this.$nextTick((function(){t.initChart()}))},beforeDestroy:function(){this.chart&&(this.chart.dispose(),this.chart=null)},methods:{initChart:function(){this.chart=R.a.init(this.$el,"macarons"),this.chart.setOption({tooltip:{trigger:"axis",axisPointer:{type:"shadow"}},grid:{top:10,left:"2%",right:"2%",bottom:"3%",containLabel:!0},xAxis:[{type:"category",data:["Mon","Tue","Wed","Thu","Fri","Sat","Sun"],axisTick:{alignWithLabel:!0}}],yAxis:[{type:"value",axisTick:{show:!1}}],series:[{name:"pageA",type:"bar",stack:"vistors",barWidth:"60%",data:[79,52,200,334,390,330,220],animationDuration:Q},{name:"pageB",type:"bar",stack:"vistors",barWidth:"60%",data:[80,52,200,334,390,330,220],animationDuration:Q},{name:"pageC",type:"bar",stack:"vistors",barWidth:"60%",data:[30,52,200,334,390,330,220],animationDuration:Q}]})}}},tt=Z,at=Object(D["a"])(tt,Y,K,!1,null,null,null),et=at.exports,st=function(){var t=this,a=t.$createElement,e=t._self._c||a;return e("section",{staticClass:"todoapp"},[e("header",{staticClass:"header"},[e("input",{staticClass:"new-todo",attrs:{autocomplete:"off",placeholder:"Todo List"},on:{keyup:function(a){return!a.type.indexOf("key")&&t._k(a.keyCode,"enter",13,a.key,"Enter")?null:t.addTodo(a)}}})]),t._v(" "),e("section",{directives:[{name:"show",rawName:"v-show",value:t.todos.length,expression:"todos.length"}],staticClass:"main"},[e("input",{staticClass:"toggle-all",attrs:{id:"toggle-all",type:"checkbox"},domProps:{checked:t.allChecked},on:{change:function(a){return t.toggleAll({done:!t.allChecked})}}}),t._v(" "),e("label",{attrs:{for:"toggle-all"}}),t._v(" "),e("ul",{staticClass:"todo-list"},t._l(t.filteredTodos,(function(a,s){return e("todo",{key:s,attrs:{todo:a},on:{toggleTodo:t.toggleTodo,editTodo:t.editTodo,deleteTodo:t.deleteTodo}})})),1)]),t._v(" "),e("footer",{directives:[{name:"show",rawName:"v-show",value:t.todos.length,expression:"todos.length"}],staticClass:"footer"},[e("span",{staticClass:"todo-count"},[e("strong",[t._v(t._s(t.remaining))]),t._v("\n "+t._s(t._f("pluralize")(t.remaining,"item"))+" left\n ")]),t._v(" "),e("ul",{staticClass:"filters"},t._l(t.filters,(function(a,s){return e("li",{key:s},[e("a",{class:{selected:t.visibility===s},on:{click:function(a){a.preventDefault(),t.visibility=s}}},[t._v(t._s(t._f("capitalize")(s)))])])})),0)])])},it=[],nt=(e("ac6a"),function(){var t=this,a=t.$createElement,e=t._self._c||a;return e("li",{staticClass:"todo",class:{completed:t.todo.done,editing:t.editing}},[e("div",{staticClass:"view"},[e("input",{staticClass:"toggle",attrs:{type:"checkbox"},domProps:{checked:t.todo.done},on:{change:function(a){return t.toggleTodo(t.todo)}}}),t._v(" "),e("label",{domProps:{textContent:t._s(t.todo.text)},on:{dblclick:function(a){t.editing=!0}}}),t._v(" "),e("button",{staticClass:"destroy",on:{click:function(a){return t.deleteTodo(t.todo)}}})]),t._v(" "),e("input",{directives:[{name:"show",rawName:"v-show",value:t.editing,expression:"editing"},{name:"focus",rawName:"v-focus",value:t.editing,expression:"editing"}],staticClass:"edit",domProps:{value:t.todo.text},on:{keyup:[function(a){return!a.type.indexOf("key")&&t._k(a.keyCode,"enter",13,a.key,"Enter")?null:t.doneEdit(a)},function(a){return!a.type.indexOf("key")&&t._k(a.keyCode,"esc",27,a.key,["Esc","Escape"])?null:t.cancelEdit(a)}],blur:t.doneEdit}})])}),rt=[],ot={name:"Todo",directives:{focus:function(t,a,e){var s=a.value,i=e.context;s&&i.$nextTick((function(){t.focus()}))}},props:{todo:{type:Object,default:function(){return{}}}},data:function(){return{editing:!1}},methods:{deleteTodo:function(t){this.$emit("deleteTodo",t)},editTodo:function(t){var a=t.todo,e=t.value;this.$emit("editTodo",{todo:a,value:e})},toggleTodo:function(t){this.$emit("toggleTodo",t)},doneEdit:function(t){var a=t.target.value.trim(),e=this.todo;a?this.editing&&(this.editTodo({todo:e,value:a}),this.editing=!1):this.deleteTodo({todo:e})},cancelEdit:function(t){t.target.value=this.todo.text,this.editing=!1}}},lt=ot,ct=Object(D["a"])(lt,nt,rt,!1,null,null,null),dt=ct.exports,ut="todos",pt={all:function(t){return t},active:function(t){return t.filter((function(t){return!t.done}))},completed:function(t){return t.filter((function(t){return t.done}))}},vt=[{text:"star this repository",done:!1},{text:"fork this repository",done:!1},{text:"follow author",done:!1},{text:"vue-element-admin",done:!0},{text:"vue",done:!0},{text:"element-ui",done:!0},{text:"axios",done:!0},{text:"webpack",done:!0}],mt={components:{Todo:dt},filters:{pluralize:function(t,a){return 1===t?a:a+"s"},capitalize:function(t){return t.charAt(0).toUpperCase()+t.slice(1)}},data:function(){return{visibility:"all",filters:pt,todos:vt}},computed:{allChecked:function(){return this.todos.every((function(t){return t.done}))},filteredTodos:function(){return pt[this.visibility](this.todos)},remaining:function(){return this.todos.filter((function(t){return!t.done})).length}},methods:{setLocalStorage:function(){window.localStorage.setItem(ut,JSON.stringify(this.todos))},addTodo:function(t){var a=t.target.value;a.trim()&&(this.todos.push({text:a,done:!1}),this.setLocalStorage()),t.target.value=""},toggleTodo:function(t){t.done=!t.done,this.setLocalStorage()},deleteTodo:function(t){this.todos.splice(this.todos.indexOf(t),1),this.setLocalStorage()},editTodo:function(t){var a=t.todo,e=t.value;a.text=e,this.setLocalStorage()},clearCompleted:function(){this.todos=this.todos.filter((function(t){return!t.done})),this.setLocalStorage()},toggleAll:function(t){var a=this,e=t.done;this.todos.forEach((function(t){t.done=e,a.setLocalStorage()}))}}},ht=mt,gt=(e("2c59"),Object(D["a"])(ht,st,it,!1,null,null,null)),ft=gt.exports,_t=function(){var t=this,a=t.$createElement,e=t._self._c||a;return e("el-card",{staticClass:"box-card-component",staticStyle:{"margin-left":"8px"}},[e("div",{staticClass:"box-card-header",attrs:{slot:"header"},slot:"header"},[e("img",{attrs:{src:"https://wpimg.wallstcn.com/e7d23d71-cf19-4b90-a1cc-f56af8c0903d.png"}})]),t._v(" "),e("div",{staticStyle:{position:"relative"}},[e("pan-thumb",{staticClass:"panThumb",attrs:{image:t.avatar}}),t._v(" "),e("mallki",{attrs:{"class-name":"mallki-text",text:"vue-element-admin"}}),t._v(" "),e("div",{staticClass:"progress-item",staticStyle:{"padding-top":"35px"}},[e("span",[t._v("Vue")]),t._v(" "),e("el-progress",{attrs:{percentage:70}})],1),t._v(" "),e("div",{staticClass:"progress-item"},[e("span",[t._v("JavaScript")]),t._v(" "),e("el-progress",{attrs:{percentage:18}})],1),t._v(" "),e("div",{staticClass:"progress-item"},[e("span",[t._v("Css")]),t._v(" "),e("el-progress",{attrs:{percentage:12}})],1),t._v(" "),e("div",{staticClass:"progress-item"},[e("span",[t._v("ESLint")]),t._v(" "),e("el-progress",{attrs:{percentage:100,status:"success"}})],1)],1)])},Ct=[],yt={filters:{statusFilter:function(t){var a={success:"success",pending:"danger"};return a[t]}},data:function(){return{statisticsData:{article_count:1024,pageviews_count:1024}}},computed:Object(n["a"])({},Object(r["b"])(["name","avatar","roles"]))},bt=yt,xt=(e("5711"),e("ceee"),Object(D["a"])(bt,_t,Ct,!1,null,"5acc1735",null)),kt=xt.exports,Dt=e("c24f"),wt={newVisitis:{expectedData:[100,120,161,134,105,160,165],actualData:[120,82,91,154,162,140,145],payer:[100,120,98,130,150,140,180]},messages:{expectedData:[200,192,120,144,160,130,140],actualData:[180,160,151,106,145,150,130],payer:[150,90,98,130,150,140,180]},purchases:{expectedData:[80,100,121,104,105,90,100],actualData:[120,90,100,138,142,130,130],payer:[150,90,98,130,150,140,180]},shoppings:{expectedData:[130,140,141,142,145,150,160],actualData:[120,82,91,154,162,140,130],payer:[150,90,98,130,150,140,180]},followers:{expectedData:[150,90,98,130,150,140,180],actualData:[120,82,91,154,162,140,130],payer:[130,140,141,142,145,150,160]}},St={name:"DashboardAdmin",components:{PanelGroup:S,LineChart:N,RaddarChart:H,PieChart:X,BarChart:et,TodoList:ft,BoxCard:kt},data:function(){return{value1:"",value2:"",time1:"lately30",time2:"lately30",time3:"lately30",rankingTime1:"year",rankingTime2:"year",rankingTime3:"year",lineChartData:wt.newVisitis,isAmount:!0,timeList:[{value:"lately7",label:"近7天"},{value:"lately30",label:"近30天"},{value:"month",label:"本月"},{value:"year",label:"本年"}],timeList1:[{value:"lately7",label:"近7天"},{value:"lately30",label:"近30天"},{value:"month",label:"本月"},{value:"year",label:"本年"}],commodityPaymentList:[],visitorRankingList:[],productPlusList:[],orderCustomer:{}}},activated:function(){this.getUserMessage()},mounted:function(){this.getUserMessage(),this.getCurrentData(),this.getCustomerData(this.time1),this.getCustomerRatioData(),this.getRankingData(this.rankingTime1),this.getVisitorRankingData(this.rankingTime2),this.getProductPlusData(this.rankingTime3)},methods:{chooseAmount:function(){this.isAmount||(this.isAmount=!0)},chooseCustomers:function(){this.isAmount&&(this.isAmount=!1)},handleSetLineChartData:function(t){this.lineChartData=wt[t]},getCurrentData:function(){this.$refs.lineChart.getOrderData({date:this.time3})},getCustomerData:function(t){var a=this,e={date:t};g(e).then((function(t){200===t.status&&(a.orderCustomer=t.data)})).catch((function(t){a.$message.error(t.message)}))},getCustomerRatioData:function(){this.$refs.pieChart.getTurnoverRatio()},getRankingData:function(t){var a=this,e={date:t};_(e).then((function(t){200===t.status&&(a.commodityPaymentList.length=0,t.data.map((function(t){a.commodityPaymentList.push({name:t.cart_info.product.store_name,picSrc:t.cart_info.product.image,count:t.total})})))})).catch((function(t){a.$message.error(t.message)}))},getVisitorRankingData:function(t){var a=this,e={date:t};C(e).then((function(t){200===t.status&&(a.visitorRankingList=t.data)})).catch((function(t){a.$message.error(t.message)}))},getProductPlusData:function(t){var a=this,e={date:t};y(e).then((function(t){200===t.status&&(a.productPlusList=t.data)})).catch((function(t){a.$message.error(t.message)}))},getUserMessage:function(){var t=this;Object(Dt["i"])().then((function(a){var e=a.data;console.log(e),e.mer_avatar&&e.mer_banner&&e.mer_info&&e.mer_address||t.$alert("您好,请前往左侧菜单【设置】-【商户信息】完善商户基础信息",{confirmButtonText:"确定",callback:function(a){t.$router.push({name:"ModifyStoreInfo"})}})}))}}},Tt=St,$t=(e("a633"),Object(D["a"])(Tt,o,l,!1,null,"d29d6e6c",null)),Et=$t.exports,Rt={name:"Dashboard",components:{adminDashboard:Et},data:function(){return{currentRole:"adminDashboard"}},computed:Object(n["a"])({},Object(r["b"])(["roles"])),created:function(){}},Lt=Rt,Pt=Object(D["a"])(Lt,s,i,!1,null,null,null);a["default"]=Pt.exports},a633:function(t,a,e){"use strict";e("b29e")},a8de:function(t,a,e){},b29e:function(t,a,e){},b546:function(t,a,e){},ceee:function(t,a,e){"use strict";e("b546")},da13:function(t,a,e){}}]); \ No newline at end of file diff --git a/public/mer/js/chunk-5ed4f497.4aa6070a.js b/public/mer/js/chunk-5ed4f497.4aa6070a.js new file mode 100644 index 00000000..057201c1 --- /dev/null +++ b/public/mer/js/chunk-5ed4f497.4aa6070a.js @@ -0,0 +1 @@ +(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-5ed4f497"],{"111b":function(e,t,a){"use strict";a.r(t);var s=function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("div",{staticClass:"divBox"},[a("el-card",{staticClass:"box-card"},[a("div",{staticClass:"clearfix",attrs:{slot:"header"},slot:"header"},[a("el-tabs",{on:{"tab-click":function(t){return e.getList(1)}},model:{value:e.user_type,callback:function(t){e.user_type=t},expression:"user_type"}},[a("el-tab-pane",{attrs:{label:"全部用户",name:""}}),e._v(" "),a("el-tab-pane",{attrs:{label:"微信用户",name:"wechat"}}),e._v(" "),a("el-tab-pane",{attrs:{label:"小程序用户",name:"routine"}}),e._v(" "),a("el-tab-pane",{attrs:{label:"H5用户",name:"h5"}}),e._v(" "),a("el-tab-pane",{attrs:{label:"APP用户",name:"app"}}),e._v(" "),a("el-tab-pane",{attrs:{label:"PC用户",name:"pc"}})],1),e._v(" "),a("div",{staticClass:"container"},[a("el-form",{attrs:{size:"small","label-width":"100px",inline:!0}},[a("el-form-item",{staticStyle:{display:"block"},attrs:{label:"搜索时间:"}},[a("el-radio-group",{staticClass:"mr20",attrs:{type:"button",size:"small"},on:{change:function(t){return e.selectChange(e.userFrom.date)}},model:{value:e.userFrom.date,callback:function(t){e.$set(e.userFrom,"date",t)},expression:"userFrom.date"}},e._l(e.fromList.fromTxt,(function(t,s){return a("el-radio-button",{key:s,attrs:{label:t.val}},[e._v(e._s(t.text))])})),1),e._v(" "),a("el-date-picker",{staticStyle:{width:"250px"},attrs:{"value-format":"yyyy/MM/dd",format:"yyyy/MM/dd",size:"small",type:"daterange",placement:"bottom-end",placeholder:"自定义时间"},on:{change:e.onchangeTime},model:{value:e.timeVal,callback:function(t){e.timeVal=t},expression:"timeVal"}})],1),e._v(" "),a("el-form-item",{attrs:{label:"搜索词:"}},[a("el-input",{attrs:{placeholder:"请输入搜索词",clearable:""},model:{value:e.userFrom.keyword,callback:function(t){e.$set(e.userFrom,"keyword",t)},expression:"userFrom.keyword"}},[a("el-button",{staticClass:"el-button-solt",attrs:{slot:"append",icon:"el-icon-search",size:"small"},on:{click:function(t){return e.getList(1)}},slot:"append"})],1)],1),e._v(" "),a("el-form-item",{attrs:{label:"用户昵称:"}},[a("el-input",{attrs:{placeholder:"请输入昵称",clearable:""},model:{value:e.userFrom.nickname,callback:function(t){e.$set(e.userFrom,"nickname",t)},expression:"userFrom.nickname"}},[a("el-button",{staticClass:"el-button-solt",attrs:{slot:"append",icon:"el-icon-search",size:"small"},on:{click:function(t){return e.getList(1)}},slot:"append"})],1)],1)],1)],1)],1),e._v(" "),a("el-table",{directives:[{name:"loading",rawName:"v-loading",value:e.listLoading,expression:"listLoading"}],staticStyle:{width:"100%"},attrs:{data:e.tableData.data,size:"small"}},[a("el-table-column",{attrs:{prop:"uid",label:"用户ID","min-width":"60"},scopedSlots:e._u([{key:"default",fn:function(t){return[a("span",[e._v(e._s(0!=t.row.uid?t.row.uid:"未知"))])]}}])}),e._v(" "),a("el-table-column",{attrs:{label:"头像","min-width":"50"},scopedSlots:e._u([{key:"default",fn:function(t){return[a("div",{staticClass:"demo-image__preview"},[a("el-image",{staticStyle:{width:"36px",height:"36px"},attrs:{src:t.row.user?t.row.user.avatar:e.moren,"preview-src-list":[t.row.user&&t.row.user.avatar||e.moren]}})],1)]}}])}),e._v(" "),a("el-table-column",{attrs:{label:"昵称","min-width":"90"},scopedSlots:e._u([{key:"default",fn:function(t){var s=t.row;return[a("div",{staticClass:"acea-row"},[a("div",[e._v(e._s(s.user&&s.user.nickname?s.user.nickname:"未知"))])])]}}])}),e._v(" "),a("el-table-column",{attrs:{label:"用户类型","min-width":"100"},scopedSlots:e._u([{key:"default",fn:function(t){var s=t.row;return[s.user?a("span",[e._v(e._s("wechat"==s.user.user_type?"公众号":"routine"==s.user.user_type?"小程序":s.user.user_type))]):a("span",[e._v("未知")])]}}])}),e._v(" "),a("el-table-column",{attrs:{label:"搜索词",prop:"content","min-width":"120"}}),e._v(" "),a("el-table-column",{attrs:{label:"搜索时间",prop:"create_time","min-width":"120"}})],1),e._v(" "),a("div",{staticClass:"block"},[a("el-pagination",{attrs:{"page-sizes":[20,40,60,80],"page-size":e.userFrom.limit,"current-page":e.userFrom.page,layout:"total, sizes, prev, pager, next, jumper",total:e.tableData.total},on:{"size-change":e.handleSizeChange,"current-change":e.pageChange}})],1)],1)],1)},l=[],r=a("c24f"),i={name:"UserList",components:{},data:function(){return{moren:a("cdfe"),fromList:{title:"选择时间",custom:!0,fromTxt:[{text:"全部",val:""},{text:"今天",val:"today"},{text:"昨天",val:"yesterday"},{text:"最近7天",val:"lately7"},{text:"最近30天",val:"lately30"},{text:"本月",val:"month"},{text:"本年",val:"year"}]},timeVal:[],maxCols:3,isShowSend:!0,visible:!1,user_type:"",tableData:{data:[],total:0},listLoading:!0,row:"",userFrom:{date:"",nickname:"",keyword:"",page:1,limit:20},grid:{xl:8,lg:12,md:12,sm:24,xs:24},grid2:{xl:18,lg:16,md:12,sm:24,xs:24},grid3:{xl:8,lg:12,md:12,sm:24,xs:24}}},mounted:function(){this.getList("")},methods:{selectChange:function(e){this.timeVal=[],this.userFrom.page=1,this.userFrom.date=e,this.getList("")},onchangeTime:function(e){this.timeVal=e,this.userFrom.page=1,this.userFrom.date=e?this.timeVal.join("-"):"",this.getList("")},getList:function(e){var t=this;this.listLoading=!0,this.userFrom.page=e||this.userFrom.page,this.userFrom.user_type=this.user_type,"0"===this.userFrom.user_type&&(this.userFrom.user_type=""),Object(r["z"])(this.userFrom).then((function(e){t.tableData.data=e.data.list,t.tableData.total=e.data.count,t.listLoading=!1})).catch((function(e){t.listLoading=!1,t.$message.error(e.message)}))},pageChange:function(e){this.userFrom.page=e,this.getList("")},handleSizeChange:function(e){this.userFrom.limit=e,this.getList("")},handleClick:function(){this.getList("")}}},n=i,o=(a("8dd5"),a("2877")),u=Object(o["a"])(n,s,l,!1,null,"3e1954f2",null);t["default"]=u.exports},"1e32":function(e,t,a){},"8dd5":function(e,t,a){"use strict";a("1e32")},cdfe:function(e,t,a){e.exports=a.p+"mer/img/f.5aa43cd3.png"}}]); \ No newline at end of file diff --git a/public/mer/js/chunk-6231f720.be2df439.js b/public/mer/js/chunk-6231f720.be2df439.js new file mode 100644 index 00000000..f999fb90 --- /dev/null +++ b/public/mer/js/chunk-6231f720.be2df439.js @@ -0,0 +1 @@ +(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-6231f720"],{"693d":function(t,e,n){},"6ee8":function(t,e,n){"use strict";n.r(e);var r=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"divBox"},[n("el-card",{staticClass:"box-card FromData"},[t.FromData?n("form-create",{attrs:{option:t.option,rule:t.FromData.rule},on:{submit:t.onSubmit}}):t._e()],1)],1)},a=[],i=(n("ac6a"),n("c7eb")),o=(n("96cf"),n("1da1")),c=n("5530"),u=n("2f62"),s=n("30ba"),f=n.n(s),d=n("a7a4"),l=n("0c6d"),p={name:"Basics",components:{formCreate:f.a.$form()},data:function(){return{option:{form:{labelWidth:"150px"},global:{upload:{props:{onSuccess:function(t,e){200===t.status&&(e.url=t.data.src)}}}}},FromData:null,titles:""}},mounted:function(){this.setTagsViewTitle(),this.getFrom()},created:function(){this.tempRoute=Object.assign({},this.$route)},computed:Object(c["a"])({},Object(u["b"])(["menuList"])),methods:{getFrom:function(){var t=this;console.log(this.$route.params.key),Object(d["a"])(this.$route.params.key).then(function(){var e=Object(o["a"])(Object(i["a"])().mark((function e(n){return Object(i["a"])().wrap((function(e){while(1)switch(e.prev=e.next){case 0:t.FromData=n.data;case 1:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}()).catch((function(e){t.$message.error(e.message)}))},onSubmit:function(t){var e=this;l["a"][this.FromData.method.toLowerCase()](this.FromData.api,t).then((function(t){e.$message.success(t.message||"提交成功")})).catch((function(t){e.$message.error(t.message||"提交失败")}))},setTagsViewTitle:function(){this.deepTraversal(this.menuList,"children");var t=Object.assign({},this.tempRoute,{title:this.titles});this.$store.dispatch("tagsView/updateVisitedView",t)},deepTraversal:function(t,e){var n=this;function r(t){t.forEach((function(t){-1===t.route.indexOf("Basics")||t.route!==n.$route.path?t[e]&&t[e].length&&r(t[e]):n.titles=t.menu_name}))}r(t)}}},m=p,h=(n("efe7"),n("2877")),g=Object(h["a"])(m,r,a,!1,null,"42170f99",null);e["default"]=g.exports},a7a4:function(t,e,n){"use strict";n.d(e,"a",(function(){return a})),n.d(e,"k",(function(){return i})),n.d(e,"b",(function(){return o})),n.d(e,"e",(function(){return c})),n.d(e,"d",(function(){return u})),n.d(e,"f",(function(){return s})),n.d(e,"g",(function(){return f})),n.d(e,"j",(function(){return d})),n.d(e,"h",(function(){return l})),n.d(e,"c",(function(){return p})),n.d(e,"i",(function(){return m})),n.d(e,"l",(function(){return h})),n.d(e,"o",(function(){return g})),n.d(e,"m",(function(){return v})),n.d(e,"n",(function(){return b})),n.d(e,"p",(function(){return y}));var r=n("0c6d");function a(t){return r["a"].get("config/".concat(t))}function i(){return r["a"].get("delivery/station/business")}function o(t){return r["a"].post("delivery/station/create",t)}function c(t){return r["a"].get("delivery/station/lst",t)}function u(t){return r["a"].get("delivery/station/detail/".concat(t))}function s(t){return r["a"].get("delivery/station/mark/".concat(t,"/form"))}function f(t,e){return r["a"].post("delivery/station/status/".concat(t),e)}function d(){return r["a"].get("config")}function l(t,e){return r["a"].post("delivery/station/update/".concat(t),e)}function p(t){return r["a"].delete("delivery/station/delete/".concat(t))}function m(){return r["a"].get("delivery/station/getCity")}function h(t){return r["a"].post("service/reply/create",t)}function g(t,e){return r["a"].get("service/reply/list",{page:t,limit:e})}function v(t){return r["a"].delete("service/reply/delete/".concat(t))}function b(t,e){return r["a"].post("service/reply/update/".concat(t),e)}function y(t,e){return r["a"].post("service/reply/status/".concat(t),{status:e})}},efe7:function(t,e,n){"use strict";n("693d")}}]); \ No newline at end of file diff --git a/public/mer/js/chunk-634734f0.0fb76724.js b/public/mer/js/chunk-634734f0.0fb76724.js new file mode 100644 index 00000000..b705de55 --- /dev/null +++ b/public/mer/js/chunk-634734f0.0fb76724.js @@ -0,0 +1 @@ +(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-634734f0"],{3910:function(e,t,a){"use strict";a("901b")},"443d":function(e,t,a){"use strict";a("817c")},"504c":function(e,t,a){var i=a("9e1e"),r=a("0d58"),l=a("6821"),s=a("52a7").f;e.exports=function(e){return function(t){var a,n=l(t),o=r(n),c=o.length,d=0,m=[];while(c>d)a=o[d++],i&&!s.call(n,a)||m.push(e?[a,n[a]]:n[a]);return m}}},"64a3":function(e,t,a){"use strict";a.r(t);var i=function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("div",{staticClass:"divBox"},[a("el-card",{staticClass:"box-card"},[a("div",{staticClass:"clearfix",attrs:{slot:"header"},slot:"header"},[a("el-steps",{attrs:{active:e.currentTab,"align-center":"","finish-status":"success"}},[a("el-step",{attrs:{title:"选择秒杀商品"}}),e._v(" "),a("el-step",{attrs:{title:"填写基础信息"}}),e._v(" "),a("el-step",{attrs:{title:"修改商品详情"}})],1)],1),e._v(" "),a("el-form",{directives:[{name:"loading",rawName:"v-loading",value:e.fullscreenLoading,expression:"fullscreenLoading"}],ref:"formValidate",staticClass:"formValidate mt20",attrs:{rules:e.ruleValidate,model:e.formValidate,"label-width":"120px"},nativeOn:{submit:function(e){e.preventDefault()}}},[a("div",{directives:[{name:"show",rawName:"v-show",value:0===e.currentTab,expression:"currentTab === 0"}],staticStyle:{overflow:"hidden"}},[a("el-row",{attrs:{gutter:24}},[a("el-col",e._b({},"el-col",e.grid2,!1),[a("el-form-item",{attrs:{label:"选择商品:",prop:"spike_image"}},[a("div",{staticClass:"upLoadPicBox",on:{click:function(t){return e.add()}}},[e.formValidate.spike_image?a("div",{staticClass:"pictrue"},[a("img",{attrs:{src:e.formValidate.spike_image}})]):a("div",{staticClass:"upLoad"},[a("i",{staticClass:"el-icon-camera cameraIconfont"})])])])],1)],1)],1),e._v(" "),a("div",{directives:[{name:"show",rawName:"v-show",value:1===e.currentTab,expression:"currentTab === 1"}]},[a("el-row",{attrs:{gutter:24}},[a("el-col",e._b({},"el-col",e.grid2,!1),[a("el-form-item",{attrs:{label:"商品主图:",prop:"image"}},[a("div",{staticClass:"upLoadPicBox",on:{click:function(t){return e.modalPicTap("1")}}},[e.formValidate.image?a("div",{staticClass:"pictrue"},[a("img",{attrs:{src:e.formValidate.image}})]):a("div",{staticClass:"upLoad"},[a("i",{staticClass:"el-icon-camera cameraIconfont"})])])])],1),e._v(" "),a("el-col",{attrs:{span:24}},[a("el-form-item",{attrs:{label:"商品轮播图:",prop:"slider_image"}},[a("div",{staticClass:"acea-row"},[e._l(e.formValidate.slider_image,(function(t,i){return a("div",{key:i,staticClass:"pictrue",attrs:{draggable:"false"},on:{dragstart:function(a){return e.handleDragStart(a,t)},dragover:function(a){return a.preventDefault(),e.handleDragOver(a,t)},dragenter:function(a){return e.handleDragEnter(a,t)},dragend:function(a){return e.handleDragEnd(a,t)}}},[a("img",{attrs:{src:t}}),e._v(" "),a("i",{staticClass:"el-icon-error btndel",on:{click:function(t){return e.handleRemove(i)}}})])})),e._v(" "),e.formValidate.slider_image.length<10?a("div",{staticClass:"upLoadPicBox",on:{click:function(t){return e.modalPicTap("2")}}},[a("div",{staticClass:"upLoad"},[a("i",{staticClass:"el-icon-camera cameraIconfont"})])]):e._e()],2)])],1),e._v(" "),a("el-col",{staticClass:"sp100"},[a("el-form-item",{attrs:{label:"商品名称:",prop:"store_name"}},[a("el-input",{attrs:{placeholder:"请输入商品名称"},model:{value:e.formValidate.store_name,callback:function(t){e.$set(e.formValidate,"store_name",t)},expression:"formValidate.store_name"}})],1)],1)],1),e._v(" "),a("el-row",{attrs:{gutter:24}},[a("el-col",e._b({},"el-col",e.grid2,!1),[a("el-form-item",{attrs:{label:"秒杀商品关键字:"}},[a("el-input",{attrs:{placeholder:"请输入商品关键字"},model:{value:e.formValidate.keyword,callback:function(t){e.$set(e.formValidate,"keyword",t)},expression:"formValidate.keyword"}})],1)],1)],1),e._v(" "),a("el-row",{attrs:{gutter:24}},[a("el-col",{staticClass:"sp100"},[a("el-form-item",{attrs:{label:"秒杀活动简介:",prop:"store_info"}},[a("el-input",{attrs:{type:"textarea",rows:3,placeholder:"请输入秒杀活动简介"},model:{value:e.formValidate.store_info,callback:function(t){e.$set(e.formValidate,"store_info",t)},expression:"formValidate.store_info"}})],1)],1)],1),e._v(" "),a("el-row",{attrs:{gutter:24}},[a("el-col",e._b({},"el-col",e.grid2,!1),[a("el-form-item",{attrs:{label:"秒杀活动日期:"}},[a("i",{staticClass:"required"},[e._v("*")]),e._v(" "),a("el-date-picker",{attrs:{"value-format":"yyyy-MM-dd",format:"yyyy-MM-dd",size:"small",type:"daterange",placement:"bottom-end",placeholder:"请选择活动时间"},on:{change:e.onchangeTime},model:{value:e.timeVal,callback:function(t){e.timeVal=t},expression:"timeVal"}})],1)],1),e._v(" "),a("el-col",e._b({},"el-col",e.grid2,!1),[a("el-form-item",{attrs:{label:"活动日期内最多购买次数:",prop:"all_pay_count","label-width":"210px"}},[a("el-input-number",{model:{value:e.formValidate.all_pay_count,callback:function(t){e.$set(e.formValidate,"all_pay_count",t)},expression:"formValidate.all_pay_count"}})],1)],1),e._v(" "),a("el-col",e._b({},"el-col",e.grid2,!1),[a("el-form-item",{attrs:{label:"秒杀活动时间:"}},[a("i",{staticClass:"required"},[e._v("*")]),e._v(" "),a("div",{staticClass:"acea-row"},[a("el-select",{staticClass:"selWidthd mr20",attrs:{placeholder:"请选择"},on:{change:e.onchangeTime2},model:{value:e.timeVal2,callback:function(t){e.timeVal2=t},expression:"timeVal2"}},e._l(e.spikeTimeList,(function(e){return a("el-option",{key:e.seckill_time_id,attrs:{label:e.name,value:e.name}})})),1)],1)])],1),e._v(" "),a("el-col",e._b({},"el-col",e.grid2,!1),[a("el-form-item",{attrs:{label:"秒杀时间段内最多购买次数:",prop:"once_pay_count","label-width":"210px"}},[a("el-input-number",{model:{value:e.formValidate.once_pay_count,callback:function(t){e.$set(e.formValidate,"once_pay_count",t)},expression:"formValidate.once_pay_count"}})],1)],1),e._v(" "),a("el-col",e._b({},"el-col",e.grid2,!1),[a("el-form-item",{attrs:{label:"单位:",prop:"unit_name"}},[a("el-input",{staticStyle:{width:"250px"},attrs:{placeholder:"请输入单位"},model:{value:e.formValidate.unit_name,callback:function(t){e.$set(e.formValidate,"unit_name",t)},expression:"formValidate.unit_name"}})],1)],1),e._v(" "),a("el-col",e._b({},"el-col",e.grid2,!1),[a("el-form-item",{attrs:{label:"排序:","label-width":"210px"}},[a("el-input-number",{staticStyle:{width:"200px"},attrs:{placeholder:"请输入排序序号"},model:{value:e.formValidate.sort,callback:function(t){e.$set(e.formValidate,"sort",t)},expression:"formValidate.sort"}})],1)],1),e._v(" "),a("el-col",{attrs:{span:24}},[a("el-form-item",{attrs:{label:"送货方式:",prop:"delivery_way"}},[a("div",{staticClass:"acea-row"},[a("el-checkbox-group",{model:{value:e.formValidate.delivery_way,callback:function(t){e.$set(e.formValidate,"delivery_way",t)},expression:"formValidate.delivery_way"}},e._l(e.deliveryList,(function(t){return a("el-checkbox",{key:t.value,attrs:{label:t.value}},[e._v("\n "+e._s(t.name)+"\n ")])})),1)],1)])],1),e._v(" "),2==e.formValidate.delivery_way.length||1==e.formValidate.delivery_way.length&&2==e.formValidate.delivery_way[0]?a("el-col",{attrs:{span:24}},[a("el-form-item",{attrs:{label:"是否包邮:"}},[a("el-radio-group",{model:{value:e.formValidate.delivery_free,callback:function(t){e.$set(e.formValidate,"delivery_free",t)},expression:"formValidate.delivery_free"}},[a("el-radio",{staticClass:"radio",attrs:{label:0}},[e._v("否")]),e._v(" "),a("el-radio",{attrs:{label:1}},[e._v("是")])],1)],1)],1):e._e(),e._v(" "),0==e.formValidate.delivery_free&&(2==e.formValidate.delivery_way.length||1==e.formValidate.delivery_way.length&&2==e.formValidate.delivery_way[0])?a("el-col",{attrs:{span:24}},[a("el-form-item",{attrs:{label:"运费模板:",prop:"temp_id"}},[a("div",{staticClass:"acea-row"},[a("el-select",{staticClass:"selWidthd mr20",attrs:{placeholder:"请选择"},model:{value:e.formValidate.temp_id,callback:function(t){e.$set(e.formValidate,"temp_id",t)},expression:"formValidate.temp_id"}},e._l(e.shippingList,(function(e){return a("el-option",{key:e.shipping_template_id,attrs:{label:e.name,value:e.shipping_template_id}})})),1),e._v(" "),a("el-button",{staticClass:"mr15",attrs:{size:"small"},on:{click:e.addTem}},[e._v("添加运费模板")])],1)])],1):e._e(),e._v(" "),e.labelList.length?a("el-col",{attrs:{span:24}},[a("el-form-item",{attrs:{label:"商品标签:"}},[a("el-select",{staticClass:"selWidthd",attrs:{multiple:"",placeholder:"请选择"},model:{value:e.formValidate.mer_labels,callback:function(t){e.$set(e.formValidate,"mer_labels",t)},expression:"formValidate.mer_labels"}},e._l(e.labelList,(function(e){return a("el-option",{key:e.id,attrs:{label:e.name,value:e.id}})})),1)],1)],1):e._e(),e._v(" "),a("el-col",{attrs:{span:24}},[a("el-form-item",{attrs:{label:"平台保障服务:"}},[a("div",{staticClass:"acea-row"},[a("el-select",{staticClass:"selWidthd mr20",attrs:{placeholder:"请选择",clearable:""},model:{value:e.formValidate.guarantee_template_id,callback:function(t){e.$set(e.formValidate,"guarantee_template_id",t)},expression:"formValidate.guarantee_template_id"}},e._l(e.guaranteeList,(function(e){return a("el-option",{key:e.guarantee_template_id,attrs:{label:e.template_name,value:e.guarantee_template_id}})})),1),e._v(" "),a("el-button",{staticClass:"mr15",attrs:{size:"small"},on:{click:e.addServiceTem}},[e._v("添加服务说明模板")])],1)])],1)],1),e._v(" "),a("el-row",{attrs:{gutter:24}},[a("el-col",{attrs:{span:24}},[a("el-form-item",{attrs:{label:"活动状态:"}},[a("el-radio-group",{model:{value:e.formValidate.is_show,callback:function(t){e.$set(e.formValidate,"is_show",t)},expression:"formValidate.is_show"}},[a("el-radio",{staticClass:"radio",attrs:{label:0}},[e._v("关闭")]),e._v(" "),a("el-radio",{attrs:{label:1}},[e._v("开启")])],1)],1)],1)],1),e._v(" "),a("el-row",{attrs:{gutter:24}},[a("el-col",{attrs:{xl:24,lg:24,md:24,sm:24,xs:24}},[0===e.formValidate.spec_type?a("el-form-item",[a("el-table",{staticClass:"tabNumWidth",attrs:{data:e.OneattrValue,border:"",size:"mini"}},[a("el-table-column",{attrs:{align:"center",label:"图片","min-width":"80"},scopedSlots:e._u([{key:"default",fn:function(t){return[a("div",{staticClass:"upLoadPicBox",on:{click:function(t){return e.modalPicTap("1","dan","pi")}}},[e.formValidate.image?a("div",{staticClass:"pictrue tabPic"},[a("img",{attrs:{src:t.row.image}})]):a("div",{staticClass:"upLoad tabPic"},[a("i",{staticClass:"el-icon-camera cameraIconfont"})])])]}}],null,!1,1357914119)}),e._v(" "),e._l(e.attrValue,(function(t,i){return a("el-table-column",{key:i,attrs:{label:e.formThead[i].title,align:"center","min-width":"120"},scopedSlots:e._u([{key:"default",fn:function(t){return["限量"==e.formThead[i].title?a("el-input",{staticClass:"priceBox",attrs:{type:"number",min:0},on:{change:function(a){return e.judgInventory(t.row)}},model:{value:t.row[i],callback:function(a){e.$set(t.row,i,a)},expression:"scope.row[iii]"}}):"秒杀价"==e.formThead[i].title?a("el-input",{staticClass:"priceBox",attrs:{type:"商品编号"===e.formThead[i].title?"text":"number",min:0},model:{value:t.row[i],callback:function(a){e.$set(t.row,i,a)},expression:"scope.row[iii]"}}):a("span",[e._v(e._s(t.row[i]))])]}}],null,!0)})}))],2)],1):e._e()],1)],1),e._v(" "),a("el-row",{attrs:{gutter:24}},[1===e.formValidate.spec_type&&e.formValidate.attr.length>0?a("el-form-item",{staticClass:"labeltop",attrs:{label:"规格列表:"}},[a("el-table",{ref:"multipleSelection",attrs:{data:e.ManyAttrValue,"tooltip-effect":"dark","row-key":function(e){return e.id}},on:{"selection-change":e.handleSelectionChange}},[a("el-table-column",{attrs:{align:"center",type:"selection","reserve-selection":!0,"min-width":"50"}}),e._v(" "),e.manyTabDate?e._l(e.manyTabDate,(function(t,i){return a("el-table-column",{key:i,attrs:{align:"center",label:e.manyTabTit[i].title,"min-width":"80"},scopedSlots:e._u([{key:"default",fn:function(t){return[a("span",{staticClass:"priceBox",domProps:{textContent:e._s(t.row[i])}})]}}],null,!0)})})):e._e(),e._v(" "),a("el-table-column",{attrs:{align:"center",label:"图片","min-width":"80"},scopedSlots:e._u([{key:"default",fn:function(t){return[a("div",{staticClass:"upLoadPicBox",on:{click:function(a){return e.modalPicTap("1","duo",t.$index)}}},[t.row.image?a("div",{staticClass:"pictrue tabPic"},[a("img",{attrs:{src:t.row.image}})]):a("div",{staticClass:"upLoad tabPic"},[a("i",{staticClass:"el-icon-camera cameraIconfont"})])])]}}],null,!1,3478746955)}),e._v(" "),e._l(e.attrValue,(function(t,i){return a("el-table-column",{key:i,attrs:{label:e.formThead[i].title,align:"center","min-width":"120"},scopedSlots:e._u([{key:"default",fn:function(t){return["限量"==e.formThead[i].title?a("el-input",{staticClass:"priceBox",attrs:{type:"number",min:0},on:{change:function(a){return e.judgInventory(t.row,t.$index)}},model:{value:t.row[i],callback:function(a){e.$set(t.row,i,a)},expression:"scope.row[iii]"}}):"秒杀价"==e.formThead[i].title?a("el-input",{staticClass:"priceBox",attrs:{type:"商品编号"===e.formThead[i].title?"text":"number"},model:{value:t.row[i],callback:function(a){e.$set(t.row,i,a)},expression:"scope.row[iii]"}}):a("span",[e._v(e._s(t.row[i]))])]}}],null,!0)})}))],2)],1):e._e()],1),e._v(" "),a("el-row",{attrs:{gutter:24}},[a("el-col",e._b({},"el-col",e.grid2,!1),[a("el-form-item",{attrs:{label:"商户商品分类:",prop:"mer_cate_id"}},[a("el-cascader",{staticClass:"selWidth",attrs:{options:e.merCateList,props:e.propsMer,clearable:""},model:{value:e.formValidate.mer_cate_id,callback:function(t){e.$set(e.formValidate,"mer_cate_id",t)},expression:"formValidate.mer_cate_id"}})],1)],1),e._v(" "),a("el-col",e._b({},"el-col",e.grid2,!1),[a("el-form-item",{attrs:{label:"平台商品分类:",prop:"cate_id"}},[a("el-cascader",{staticClass:"selWidth",attrs:{options:e.categoryList,props:e.props,clearable:""},model:{value:e.formValidate.cate_id,callback:function(t){e.$set(e.formValidate,"cate_id",t)},expression:"formValidate.cate_id"}})],1)],1)],1)],1),e._v(" "),a("el-row",{directives:[{name:"show",rawName:"v-show",value:2===e.currentTab,expression:"currentTab === 2"}]},[a("el-col",{attrs:{span:24}},[a("el-form-item",{attrs:{label:"商品详情:"}},[a("ueditorFrom",{attrs:{content:e.formValidate.content},model:{value:e.formValidate.content,callback:function(t){e.$set(e.formValidate,"content",t)},expression:"formValidate.content"}})],1)],1)],1),e._v(" "),a("el-form-item",{staticStyle:{"margin-top":"30px"}},[a("el-button",{directives:[{name:"show",rawName:"v-show",value:e.currentTab>0,expression:"currentTab>0"}],staticClass:"submission",attrs:{type:"primary",size:"small"},on:{click:e.handleSubmitUp}},[e._v("上一步")]),e._v(" "),a("el-button",{directives:[{name:"show",rawName:"v-show",value:0==e.currentTab,expression:"currentTab == 0"}],staticClass:"submission",attrs:{type:"primary",size:"small"},on:{click:function(t){return e.handleSubmitNest1("formValidate")}}},[e._v("下一步")]),e._v(" "),a("el-button",{directives:[{name:"show",rawName:"v-show",value:1==e.currentTab,expression:"currentTab == 1"}],staticClass:"submission",attrs:{type:"primary",size:"small"},on:{click:function(t){return e.handleSubmitNest2("formValidate")}}},[e._v("下一步")]),e._v(" "),a("el-button",{directives:[{name:"show",rawName:"v-show",value:2===e.currentTab,expression:"currentTab===2"}],staticClass:"submission",attrs:{loading:e.loading,type:"primary",size:"small"},on:{click:function(t){return e.handleSubmit("formValidate")}}},[e._v("提交")]),e._v(" "),a("el-button",{directives:[{name:"show",rawName:"v-show",value:2===e.currentTab,expression:"currentTab===2"}],staticClass:"submission",attrs:{loading:e.loading,type:"primary",size:"small"},on:{click:function(t){return e.handlePreview("formValidate")}}},[e._v("预览")])],1)],1)],1),e._v(" "),a("goods-list",{ref:"goodsList",on:{getProduct:e.getProduct}}),e._v(" "),a("guarantee-service",{ref:"serviceGuarantee",on:{"get-list":e.getGuaranteeList}}),e._v(" "),e.previewVisible?a("div",[a("div",{staticClass:"bg",on:{click:function(t){t.stopPropagation(),e.previewVisible=!1}}}),e._v(" "),e.previewVisible?a("preview-box",{ref:"previewBox",attrs:{"product-type":1,"preview-key":e.previewKey}}):e._e()],1):e._e()],1)},r=[],l=a("2909"),s=(a("7f7f"),a("c7eb")),n=(a("c5f6"),a("96cf"),a("1da1")),o=a("b85c"),c=(a("8615"),a("55dd"),a("ac6a"),a("28a5"),a("ef0d")),d=a("7719"),m=a("ae43"),u=a("8c98"),f=a("c4c8"),p=a("83d6"),g=a("bbcc"),_=a("5f87"),h={old_product_id:"",image:"",spike_image:"",slider_image:[],store_name:"",store_info:"",start_day:"",end_day:"",start_time:"",end_time:"",all_pay_count:1,once_pay_count:1,is_open_recommend:1,is_open_state:1,is_show:1,keyword:"",cate_id:"",mer_cate_id:[],unit_name:"",integral:0,sort:0,is_good:0,temp_id:"",guarantee_template_id:"",delivery_way:[],mer_labels:[],delivery_free:0,attrValue:[{image:"",price:null,cost:null,ot_price:null,old_stock:null,stock:null,bar_code:"",weight:null,volume:null}],attr:[],extension_type:0,content:"",spec_type:0,is_gift_bag:0},v={price:{title:"秒杀价"},cost:{title:"成本价"},ot_price:{title:"市场价"},old_stock:{title:"库存"},stock:{title:"限量"},bar_code:{title:"商品编号"},weight:{title:"重量(KG)"},volume:{title:"体积(m³)"}},b=[{name:"店铺推荐",value:"is_good"}],y={name:"SeckillProductAdd",components:{ueditorFrom:c["a"],goodsList:d["a"],guaranteeService:m["a"],previewBox:u["a"]},data:function(){var e=g["a"].https+"/upload/image/0/file?ueditor=1&token="+Object(_["a"])();return{myConfig:{autoHeightEnabled:!1,initialFrameHeight:500,initialFrameWidth:"100%",UEDITOR_HOME_URL:"/UEditor/",serverUrl:e,imageUrl:e,imageFieldName:"file",imageUrlPrefix:"",imageActionName:"upfile",imageMaxSize:2048e3,imageAllowFiles:[".png",".jpg",".jpeg",".gif",".bmp"]},pickerOptions:{disabledDate:function(e){return e.getTime()>Date.now()}},dialogVisible:!1,product_id:"",multipleSelection:[],optionsCate:{value:"store_category_id",label:"cate_name",children:"children",emitPath:!1},roterPre:p["roterPre"],selectRule:"",checkboxGroup:[],recommend:b,tabs:[],fullscreenLoading:!1,props:{emitPath:!1},propsMer:{emitPath:!1,multiple:!0},active:0,OneattrValue:[Object.assign({},h.attrValue[0])],ManyAttrValue:[Object.assign({},h.attrValue[0])],merCateList:[],categoryList:[],shippingList:[],guaranteeList:[],spikeTimeList:[],deliveryList:[],labelList:[],formThead:Object.assign({},v),formValidate:Object.assign({},h),timeVal:"",timeVal2:"",maxStock:"",addNum:0,singleSpecification:{},multipleSpecifications:[],formDynamics:{template_name:"",template_value:[]},manyTabTit:{},manyTabDate:{},grid2:{lg:10,md:12,sm:24,xs:24},formDynamic:{attrsName:"",attrsVal:""},isBtn:!1,manyFormValidate:[],images:[],currentTab:0,isChoice:"",grid:{xl:8,lg:8,md:12,sm:24,xs:24},loading:!1,ruleValidate:{store_name:[{required:!0,message:"请输入商品名称",trigger:"blur"}],activity_date:[{required:!0,message:"请输入秒杀活动日期",trigger:"blur"}],activity_time:[{required:!0,message:"请输入秒杀活动日期",trigger:"blur"}],all_pay_count:[{required:!0,message:"请输入购买次数",trigger:"blur"},{pattern:/^\+?[1-9][0-9]*$/,message:"最小为1"}],once_pay_count:[{required:!0,message:"请输入购买次数",trigger:"blur"},{pattern:/^\+?[1-9][0-9]*$/,message:"最小为1"}],mer_cate_id:[{required:!0,message:"请选择商户分类",trigger:"change",type:"array",min:"1"}],cate_id:[{required:!0,message:"请选择平台分类",trigger:"change"}],keyword:[{required:!0,message:"请输入商品关键字",trigger:"blur"}],unit_name:[{required:!0,message:"请输入单位",trigger:"blur"}],store_info:[{required:!0,message:"请输入秒杀活动简介",trigger:"blur"}],temp_id:[{required:!0,message:"请选择运费模板",trigger:"change"}],image:[{required:!0,message:"请上传商品图",trigger:"change"}],spike_image:[{required:!0,message:"请选择商品",trigger:"change"}],slider_image:[{required:!0,message:"请上传商品轮播图",type:"array",trigger:"change"}],delivery_way:[{required:!0,message:"请选择送货方式",trigger:"change"}]},attrInfo:{},previewVisible:!1,previewKey:"",deliveryType:[]}},computed:{attrValue:function(){var e=Object.assign({},h.attrValue[0]);return delete e.image,e},oneFormBatch:function(){var e=[Object.assign({},h.attrValue[0])];return delete e[0].bar_code,e}},watch:{"formValidate.attr":{handler:function(e){1===this.formValidate.spec_type&&this.watCh(e)},immediate:!1,deep:!0}},created:function(){this.tempRoute=Object.assign({},this.$route),this.$route.params.id&&1===this.formValidate.spec_type&&this.$watch("formValidate.attr",this.watCh)},mounted:function(){var e=this;this.formValidate.slider_image=[],this.$route.params.id&&(this.setTagsViewTitle(),this.getInfo(this.$route.params.id)),this.formValidate.attr.map((function(t){e.$set(t,"inputVisible",!1)})),this.getCategorySelect(),this.getCategoryList(),this.getShippingList(),this.getGuaranteeList(),this.getSpikeTimeList(),this.$store.dispatch("settings/setEdit",!0),this.productCon(),this.getLabelLst()},methods:{getLabelLst:function(){var e=this;Object(f["v"])().then((function(t){e.labelList=t.data})).catch((function(t){e.$message.error(t.message)}))},productCon:function(){var e=this;Object(f["W"])().then((function(t){e.deliveryType=t.data.delivery_way.map(String),2==e.deliveryType.length?e.deliveryList=[{value:"1",name:"到店自提"},{value:"2",name:"快递配送"}]:1==e.deliveryType.length&&"1"==e.deliveryType[0]?e.deliveryList=[{value:"1",name:"到店自提"}]:e.deliveryList=[{value:"2",name:"快递配送"}]})).catch((function(t){e.$message.error(t.message)}))},add:function(){this.$refs.goodsList.dialogVisible=!0},getProduct:function(e){this.formValidate.spike_image=e.src,this.product_id=e.id,console.log(this.product_id)},handleSelectionChange:function(e){this.multipleSelection=e},onchangeTime:function(e){this.timeVal=e,this.formValidate.start_day=e?e[0]:"",this.formValidate.end_day=e?e[1]:""},onchangeTime2:function(e){this.timeVal2=e,this.formValidate.start_time=e?e.split("-")[0]:"",this.formValidate.end_time=e?e.split("-")[1]:""},setTagsViewTitle:function(){var e="编辑商品",t=Object.assign({},this.tempRoute,{title:"".concat(e,"-").concat(this.$route.params.id)});this.$store.dispatch("tagsView/updateVisitedView",t)},watCh:function(e){var t=this,a={},i={};this.formValidate.attr.forEach((function(e,t){a["value"+t]={title:e.value},i["value"+t]=""})),this.ManyAttrValue.forEach((function(e,a){var i=Object.values(e.detail).sort().join("/");t.attrInfo[i]&&(t.ManyAttrValue[a]=t.attrInfo[i])})),this.attrInfo={},this.ManyAttrValue.forEach((function(e){t.attrInfo[Object.values(e.detail).sort().join("/")]=e})),this.manyTabTit=a,this.manyTabDate=i,this.formThead=Object.assign({},this.formThead,a),console.log(this.formThead)},judgInventory:function(e,t){var a=e.stock;"undefined"===typeof t?this.singleSpecification[0]["old_stock"]10&&(i.formValidate.slider_image.length=10)})),"1"===e&&"dan"===t&&(i.OneattrValue[0].image=l[0]),"1"===e&&"duo"===t&&(i.ManyAttrValue[a].image=l[0]),"1"===e&&"pi"===t&&(i.oneFormBatch[0].image=l[0])}),e)},handleSubmitUp:function(){this.currentTab--<0&&(this.currentTab=0)},handleSubmitNest1:function(e){this.formValidate.spike_image?(this.currentTab++,this.$route.params.id||this.getInfo(this.product_id)):this.$message.warning("请选择商品!")},handleSubmitNest2:function(e){var t=this;1===this.formValidate.spec_type?this.formValidate.attrValue=this.multipleSelection:(this.formValidate.attrValue=this.OneattrValue,this.formValidate.attr=[]),this.$refs[e].validate((function(e){if(e){if(!t.formValidate.store_name||!t.formValidate.cate_id||!t.formValidate.unit_name||!t.formValidate.store_info||!t.formValidate.image||!t.formValidate.slider_image||!t.formValidate.start_day||!t.formValidate.end_day||!t.formValidate.start_time||!t.formValidate.end_time)return void t.$message.warning("请填写完整商品信息!");if(t.formValidate.all_pay_count0?Math.floor:Math.ceil)(t)}})},a641:function(t,e,a){},b3bc:function(t,e,a){"use strict";a("a641")}}]); \ No newline at end of file diff --git a/public/mer/js/chunk-67e1db22.26fdbdd5.js b/public/mer/js/chunk-67e1db22.26fdbdd5.js new file mode 100644 index 00000000..ea308174 --- /dev/null +++ b/public/mer/js/chunk-67e1db22.26fdbdd5.js @@ -0,0 +1 @@ +(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-67e1db22"],{"017b":function(t,e,r){"use strict";r.r(e);var n=function(){var t=this,e=t.$createElement,r=t._self._c||e;return r("div",{staticClass:"divBox"},[r("el-card",{staticClass:"box-card"},[r("div",{staticClass:"clearfix",attrs:{slot:"header"},slot:"header"},[r("div",{staticClass:"container"},[r("el-form",{attrs:{size:"small",inline:"","label-width":"100px"}},[r("span",{staticClass:"seachTiele"},[t._v("时间选择:")]),t._v(" "),r("el-radio-group",{staticClass:"mr20",attrs:{type:"button",size:"small"},on:{change:function(e){return t.selectChange(t.tableFrom.date)}},model:{value:t.tableFrom.date,callback:function(e){t.$set(t.tableFrom,"date",e)},expression:"tableFrom.date"}},t._l(t.fromList.fromTxt,(function(e,n){return r("el-radio-button",{key:n,attrs:{label:e.val}},[t._v(t._s(e.text))])})),1),t._v(" "),r("el-date-picker",{staticStyle:{width:"250px"},attrs:{"value-format":"yyyy/MM/dd",format:"yyyy/MM/dd",size:"small",type:"daterange",placement:"bottom-end",placeholder:"自定义时间"},on:{change:t.onchangeTime},model:{value:t.timeVal,callback:function(e){t.timeVal=e},expression:"timeVal"}}),t._v(" "),r("div",{staticClass:"mt20"},[r("span",{staticClass:"seachTiele"},[t._v("关键字:")]),t._v(" "),r("el-input",{staticClass:"selWidth mr20",attrs:{placeholder:"请输入订单号/用户昵称"},model:{value:t.tableFrom.keyword,callback:function(e){t.$set(t.tableFrom,"keyword",e)},expression:"tableFrom.keyword"}}),t._v(" "),r("el-button",{attrs:{size:"small",type:"primary",icon:"el-icon-search"},on:{click:t.getList}},[t._v("搜索")]),t._v(" "),r("el-button",{attrs:{size:"small",type:"primary",icon:"el-icon-top"},on:{click:t.exports}},[t._v("列表导出")])],1)],1)],1)]),t._v(" "),r("cards-data",{attrs:{"card-lists":t.cardLists}}),t._v(" "),r("el-table",{directives:[{name:"loading",rawName:"v-loading",value:t.listLoading,expression:"listLoading"}],staticStyle:{width:"100%"},attrs:{data:t.tableData.data,size:"mini"}},[r("el-table-column",{attrs:{label:"订单号","min-width":"100"},scopedSlots:t._u([{key:"default",fn:function(e){return["mer_accoubts"!=e.row.financial_type?r("span",[t._v(t._s(e.row.order_sn))]):r("span",[t._v(t._s(e.row.financial_record_sn))])]}}])}),t._v(" "),r("el-table-column",{attrs:{prop:"financial_record_sn",label:"交易流水号","min-width":"100"}}),t._v(" "),r("el-table-column",{attrs:{prop:"create_time",label:"交易时间","min-width":"100",sortable:""}}),t._v(" "),r("el-table-column",{attrs:{prop:"user_info",label:"对方信息","min-width":"80"}}),t._v(" "),r("el-table-column",{attrs:{label:"交易类型","min-width":"100"},scopedSlots:t._u([{key:"default",fn:function(e){return[r("span",[t._v(t._s(t._f("transactionTypeFilter")(e.row.financial_type)))])]}}])}),t._v(" "),r("el-table-column",{attrs:{label:"收支金额(元)","min-width":"100"},scopedSlots:t._u([{key:"default",fn:function(e){return[r("span",[t._v(t._s(1===e.row.financial_pm?e.row.number:-e.row.number))])]}}])}),t._v(" "),r("el-table-column",{attrs:{label:"操作","min-width":"150",fixed:"right"},scopedSlots:t._u([{key:"default",fn:function(e){return["mer_accoubts"==e.row.financial_type?r("router-link",{attrs:{to:{path:t.roterPre+"/accounts/reconciliation?reconciliation_id="+e.row.order_id}}},[r("el-button",{staticClass:"mr10",attrs:{type:"text",size:"small"}},[t._v("详情")])],1):"order"==e.row.financial_type||"brokerage_one"==e.row.financial_type||"brokerage_two"==e.row.financial_type?r("router-link",{attrs:{to:{path:t.roterPre+"/order/list?order_sn="+e.row.order_sn}}},[r("el-button",{staticClass:"mr10",attrs:{type:"text",size:"small"}},[t._v("详情")])],1):r("router-link",{attrs:{to:{path:t.roterPre+"/order/refund?refund_order_sn="+e.row.order_sn}}},[r("el-button",{staticClass:"mr10",attrs:{type:"text",size:"small"}},[t._v("详情")])],1)]}}])})],1),t._v(" "),r("div",{staticClass:"block"},[r("el-pagination",{attrs:{"page-sizes":[20,40,60,80],"page-size":t.tableFrom.limit,"current-page":t.tableFrom.page,layout:"total, sizes, prev, pager, next, jumper",total:t.tableData.total},on:{"size-change":t.handleSizeChange,"current-change":t.pageChange}})],1)],1),t._v(" "),r("file-list",{ref:"exportList"})],1)},o=[],a=r("c7eb"),i=(r("96cf"),r("1da1")),l=r("2801"),c=r("30dc"),s=r("83d6"),u=r("0f56"),d=r("2e83"),f={components:{fileList:c["a"],cardsData:u["a"]},data:function(){return{tableData:{data:[],total:0},roterPre:s["roterPre"],listLoading:!0,tableFrom:{keyword:"",date:"",page:1,limit:20},timeVal:[],fromList:{title:"选择时间",custom:!0,fromTxt:[{text:"全部",val:""},{text:"今天",val:"today"},{text:"昨天",val:"yesterday"},{text:"最近7天",val:"lately7"},{text:"最近30天",val:"lately30"},{text:"本月",val:"month"},{text:"本年",val:"year"}]},selectionList:[],ids:"",tableFromLog:{page:1,limit:10},tableDataLog:{data:[],total:0},LogLoading:!1,dialogVisible:!1,evaluationStatusList:[{value:1,label:"已回复"},{value:0,label:"未回复"}],cardLists:[],orderDatalist:null}},mounted:function(){this.getList(),this.getStatisticalData()},methods:{selectChange:function(t){this.tableFrom.date=t,this.timeVal=[],this.getList(),this.getStatisticalData()},onchangeTime:function(t){this.timeVal=t,this.tableFrom.date=t?this.timeVal.join("-"):"",this.getList(),this.getStatisticalData()},getStatisticalData:function(){var t=this;Object(l["h"])({date:this.tableFrom.date}).then((function(e){t.cardLists=e.data})).catch((function(e){t.$message.error(e.message)}))},exports:function(){var t=Object(i["a"])(Object(a["a"])().mark((function t(e){var r,n,o,i,l;return Object(a["a"])().wrap((function(t){while(1)switch(t.prev=t.next){case 0:r=JSON.parse(JSON.stringify(this.tableFrom)),n=[],r.page=1,o=1,i={},l=0;case 5:if(!(ln)&&s.mergeCells(x(o)+t+":"+x(o)+e)}function w(t){if(!Object(n["isEmpty"])(t))if(Array.isArray(t))for(var e=0;en)&&c.mergeCells(C(a)+t+":"+C(a)+e)}function w(t){if(!Object(n["isEmpty"])(t))if(Array.isArray(t))for(var e=0;e0?this.$route.query.field&&form_create_helper.set(this.$route.query.field,this.multipleSelectionAll.map((function(e){return{id:e.product_id,src:e.image}}))):this.$message.warning("请先选择商品"):this.singleSelection&&this.singleSelection.src&&this.singleSelection.id?this.$route.query.field&&form_create_helper.set(this.$route.query.field,this.singleSelection):this.$message.warning("请先选择商品")},handleSelectionChange:function(e){var t=this;this.multipleSelection=e,setTimeout((function(){t.changePageCoreRecordData()}),50)},setSelectRow:function(){if(this.multipleSelectionAll&&!(this.multipleSelectionAll.length<=0)){var e=this.idKey,t=[];this.multipleSelectionAll.forEach((function(i){t.push(i[e])})),this.$refs.table.clearSelection();for(var i=0;i=0&&this.$refs.table.toggleRowSelection(this.tableData.data[i],!0)}},changePageCoreRecordData:function(){var e=this.idKey,t=this;if(this.multipleSelectionAll.length<=0)this.multipleSelectionAll=this.multipleSelection;else{var i=[];this.multipleSelectionAll.forEach((function(t){i.push(t[e])}));var l=[];this.multipleSelection.forEach((function(a){l.push(a[e]),i.indexOf(a[e])<0&&t.multipleSelectionAll.push(a)}));var a=[];this.tableData.data.forEach((function(t){l.indexOf(t[e])<0&&a.push(t[e])})),a.forEach((function(l){if(i.indexOf(l)>=0)for(var a=0;a0&&(t.active_price=t.price)},changeRatePrice:function(){var t,e=Object(n["a"])(this.manyFormValidate);try{for(e.s();!(t=e.n()).done;){var a=t.value;this.$set(a,"active_price",this.rate_price);for(var i=this.multipleSelection,s=0;s1||this.specsMainData.length>0))this.$message.warning("最多添加一个商品");else{for(var a=JSON.parse(JSON.stringify(t)),i=0;i=0&&this.$refs.table.toggleRowSelection(this.tableData.data[a],!0)}},ok:function(){if(this.images.length>0)if("image"===this.$route.query.fodder){var t=form_create_helper.get("image");form_create_helper.set("image",t.concat(this.images)),form_create_helper.close("image")}else this.isdiy?this.$emit("getProductId",this.diyVal):this.$emit("getProductId",this.images);else this.$message.warning("请先选择商品")},treeSearchs:function(t){this.cateIds=t,this.tableFrom.page=1,this.getList("")},userSearchs:function(){this.tableFrom.page=1,this.getList("")},clear:function(){this.productRow.id="",this.currentid=""}}},c=o,u=(a("ea29"),a("2877")),d=Object(u["a"])(c,i,s,!1,null,"4442b510",null);e["a"]=d.exports},d292:function(t,e,a){},ea29:function(t,e,a){"use strict";a("d292")}}]); \ No newline at end of file diff --git a/public/mer/js/chunk-7c7c6444.5091961a.js b/public/mer/js/chunk-7c7c6444.5091961a.js new file mode 100644 index 00000000..21cdb381 --- /dev/null +++ b/public/mer/js/chunk-7c7c6444.5091961a.js @@ -0,0 +1 @@ +(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-7c7c6444"],{2865:function(e,t,a){"use strict";a.r(t);var i=function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("div",{staticClass:"divBox"},[a("el-card",{staticClass:"box-card"},[a("div",{staticClass:"clearfix"},[e.headTab.length>0?a("el-tabs",{model:{value:e.currentTab,callback:function(t){e.currentTab=t},expression:"currentTab"}},e._l(e.headTab,(function(e,t){return a("el-tab-pane",{key:t,attrs:{name:e.name,label:e.title}})})),1):e._e()],1),e._v(" "),a("el-form",{directives:[{name:"loading",rawName:"v-loading",value:e.fullscreenLoading,expression:"fullscreenLoading"}],key:e.currentTab,ref:"formValidate",staticClass:"formValidate mt20",attrs:{rules:e.ruleValidate,model:e.formValidate,"label-width":"130px"},nativeOn:{submit:function(e){e.preventDefault()}}},["1"==e.currentTab?a("el-row",{attrs:{gutter:24}},[a("el-col",{attrs:{span:24}},[a("el-form-item",{attrs:{label:"商品类型:",required:""}},e._l(e.virtual,(function(t,i){return a("div",{key:i,staticClass:"virtual",class:e.formValidate.type==t.id?"virtual_boder":"virtual_boder2",on:{click:function(a){return e.virtualbtn(t.id,2)}}},[a("div",{staticClass:"virtual_top"},[e._v(e._s(t.tit))]),e._v(" "),a("div",{staticClass:"virtual_bottom"},[e._v("("+e._s(t.tit2)+")")]),e._v(" "),e.formValidate.type==t.id?a("div",{staticClass:"virtual_san"}):e._e(),e._v(" "),e.formValidate.type==t.id?a("div",{staticClass:"virtual_dui"},[e._v("\n ✓\n ")]):e._e()])})),0)],1),e._v(" "),a("el-col",{attrs:{span:24}},[a("el-form-item",{attrs:{label:"商品名称:",prop:"store_name"}},[a("el-input",{staticClass:"selWidth",attrs:{placeholder:"请输入商品名称"},model:{value:e.formValidate.store_name,callback:function(t){e.$set(e.formValidate,"store_name",t)},expression:"formValidate.store_name"}})],1)],1),e._v(" "),a("el-col",{attrs:{span:24}},[a("el-form-item",{attrs:{label:"平台商品分类:",prop:"cate_id"}},[a("el-cascader",{staticClass:"selWidth",attrs:{options:e.categoryList,props:e.props,filterable:"",clearable:""},on:{change:e.getSpecsLst},model:{value:e.formValidate.cate_id,callback:function(t){e.$set(e.formValidate,"cate_id",t)},expression:"formValidate.cate_id"}})],1)],1),e._v(" "),a("el-col",{attrs:{span:24}},[a("el-form-item",{attrs:{label:"商户商品分类:",prop:"mer_cate_id"}},[a("el-cascader",{staticClass:"selWidth",attrs:{options:e.merCateList,props:e.propsMer,filterable:"",clearable:""},model:{value:e.formValidate.mer_cate_id,callback:function(t){e.$set(e.formValidate,"mer_cate_id",t)},expression:"formValidate.mer_cate_id"}})],1)],1),e._v(" "),e.labelList.length?a("el-col",{attrs:{span:24}},[a("el-form-item",{attrs:{label:"商品标签:"}},[a("el-select",{staticClass:"selWidth",attrs:{multiple:"",placeholder:"请选择"},model:{value:e.formValidate.mer_labels,callback:function(t){e.$set(e.formValidate,"mer_labels",t)},expression:"formValidate.mer_labels"}},e._l(e.labelList,(function(e){return a("el-option",{key:e.id,attrs:{label:e.name,value:e.id}})})),1)],1)],1):e._e(),e._v(" "),a("el-col",e._b({},"el-col",e.grid2,!1),[a("el-form-item",{attrs:{label:"品牌选择:"}},[a("el-select",{staticClass:"selWidth",attrs:{filterable:"",placeholder:"请选择"},model:{value:e.formValidate.brand_id,callback:function(t){e.$set(e.formValidate,"brand_id",t)},expression:"formValidate.brand_id"}},e._l(e.BrandList,(function(e){return a("el-option",{key:e.brand_id,attrs:{label:e.brand_name,value:e.brand_id}})})),1)],1)],1),e._v(" "),a("el-col",{attrs:{span:24}},[a("el-form-item",{attrs:{label:"商品封面图:",prop:"image"}},[a("div",{staticClass:"upLoadPicBox",attrs:{title:"750*750px"},on:{click:function(t){return e.modalPicTap("1")}}},[e.formValidate.image?a("div",{staticClass:"pictrue"},[a("img",{attrs:{src:e.formValidate.image}})]):a("div",{staticClass:"upLoad"},[a("i",{staticClass:"el-icon-camera cameraIconfont"})])])])],1),e._v(" "),a("el-col",{attrs:{span:24}},[a("el-form-item",{attrs:{label:"商品轮播图:",prop:"slider_image"}},[a("div",{staticClass:"acea-row"},[e._l(e.formValidate.slider_image,(function(t,i){return a("div",{key:i,staticClass:"pictrue",attrs:{draggable:"false"},on:{dragstart:function(a){return e.handleDragStart(a,t)},dragover:function(a){return a.preventDefault(),e.handleDragOver(a,t)},dragenter:function(a){return e.handleDragEnter(a,t)},dragend:function(a){return e.handleDragEnd(a,t)}}},[a("img",{attrs:{src:t}}),e._v(" "),a("i",{staticClass:"el-icon-error btndel",on:{click:function(t){return e.handleRemove(i)}}})])})),e._v(" "),e.formValidate.slider_image.length<10?a("div",{staticClass:"uploadCont",attrs:{title:"750*750px"}},[a("div",{staticClass:"upLoadPicBox",on:{click:function(t){return e.modalPicTap("2")}}},[a("div",{staticClass:"upLoad"},[a("i",{staticClass:"el-icon-camera cameraIconfont"})])])]):e._e()],2)])],1),e._v(" "),a("el-col",{attrs:{span:24}},[a("el-form-item",{attrs:{label:"主图视频:",prop:"video_link"}},[a("el-input",{staticClass:"perW50",attrs:{placeholder:"请输入视频链接"},model:{value:e.videoLink,callback:function(t){e.videoLink=t},expression:"videoLink"}}),e._v(" "),a("input",{ref:"refid",staticStyle:{display:"none"},attrs:{type:"file"},on:{change:e.zh_uploadFile_change}}),e._v(" "),a("el-button",{staticClass:"uploadVideo",attrs:{type:"primary",icon:"ios-cloud-upload-outline"},on:{click:e.zh_uploadFile}},[e._v("\n "+e._s(e.videoLink?"确认添加":"上传视频")+"\n ")]),e._v(" "),a("el-col",{attrs:{span:12}},[e.upload.videoIng?a("el-progress",{staticStyle:{"margin-top":"10px"},attrs:{percentage:e.progress,"text-inside":!0,"stroke-width":20}}):e._e()],1),e._v(" "),a("el-col",{attrs:{span:24}},[e.formValidate.video_link?a("div",{staticClass:"iview-video-style"},[a("video",{staticStyle:{width:"100%",height:"100%!important","border-radius":"10px"},attrs:{src:e.formValidate.video_link,controls:"controls"}},[e._v("\n 您的浏览器不支持 video 标签。\n ")]),e._v(" "),a("div",{staticClass:"mark"}),e._v(" "),a("i",{staticClass:"el-icon-delete iconv",on:{click:e.delVideo}})]):e._e()])],1)],1),e._v(" "),a("el-col",{attrs:{span:24}},[a("el-form-item",{attrs:{label:"单位:",prop:"unit_name"}},[a("el-input",{staticClass:"selWidth",attrs:{placeholder:"请输入单位"},model:{value:e.formValidate.unit_name,callback:function(t){e.$set(e.formValidate,"unit_name",t)},expression:"formValidate.unit_name"}})],1)],1),e._v(" "),a("el-col",{attrs:{span:24}},[a("el-form-item",{attrs:{label:"商品关键字:"}},[a("el-input",{staticClass:"selWidth",attrs:{placeholder:"请输入商品关键字"},model:{value:e.formValidate.keyword,callback:function(t){e.$set(e.formValidate,"keyword",t)},expression:"formValidate.keyword"}})],1)],1),e._v(" "),a("el-col",{attrs:{span:24}},[a("el-form-item",{attrs:{label:"商品简介:",prop:"store_info"}},[a("el-input",{staticClass:"selWidth",attrs:{type:"textarea",rows:3,placeholder:"请输入商品简介"},model:{value:e.formValidate.store_info,callback:function(t){e.$set(e.formValidate,"store_info",t)},expression:"formValidate.store_info"}})],1)],1),e._v(" "),a("el-col",{attrs:{span:24}},[a("el-form-item",{staticClass:"proCoupon",attrs:{label:"优惠券(赠送券):"}},[a("div",{staticClass:"acea-row"},[e._l(e.formValidate.couponData,(function(t,i){return a("el-tag",{key:i,staticClass:"mr10",attrs:{closable:"","disable-transitions":!1},on:{close:function(a){return e.handleCloseCoupon(t)}}},[e._v(e._s(t.title)+"\n ")])})),e._v(" "),a("el-button",{staticClass:"mr15",attrs:{size:"mini"},on:{click:e.addCoupon}},[e._v("选择优惠券")])],2)])],1)],1):e._e(),e._v(" "),"2"==e.currentTab?a("el-row",[a("el-col",{attrs:{span:24}},[e.extensionStatus>0?a("el-form-item",{attrs:{label:"佣金设置:",props:"extension_type"}},[a("el-radio-group",{on:{change:function(t){return e.onChangetype(e.formValidate.extension_type)}},model:{value:e.formValidate.extension_type,callback:function(t){e.$set(e.formValidate,"extension_type",t)},expression:"formValidate.extension_type"}},[a("el-radio",{staticClass:"radio",attrs:{label:1}},[e._v("单独设置")]),e._v(" "),a("el-radio",{attrs:{label:0}},[e._v("默认设置")])],1)],1):e._e()],1),e._v(" "),a("el-col",{attrs:{span:24}},[e.open_svip?a("el-form-item",{attrs:{label:"付费会员价设置:",props:"svip_price_type"}},[a("el-radio-group",{on:{change:function(t){return e.onChangeSpecs(e.formValidate.svip_price_type)}},model:{value:e.formValidate.svip_price_type,callback:function(t){e.$set(e.formValidate,"svip_price_type",t)},expression:"formValidate.svip_price_type"}},[a("el-radio",{staticClass:"radio",attrs:{label:0}},[e._v("不设置会员价")]),e._v(" "),a("el-radio",{staticClass:"radio",attrs:{label:1}},[e._v("默认设置会员价")]),e._v(" "),a("el-radio",{attrs:{label:2}},[e._v("自定义设置会员价")])],1)],1):e._e()],1),e._v(" "),a("el-col",{attrs:{span:24}},[a("el-form-item",{attrs:{label:"商品规格:",props:"spec_type"}},[a("el-radio-group",{on:{change:function(t){return e.onChangeSpec(e.formValidate.spec_type)}},model:{value:e.formValidate.spec_type,callback:function(t){e.$set(e.formValidate,"spec_type",t)},expression:"formValidate.spec_type"}},[a("el-radio",{staticClass:"radio",attrs:{label:0}},[e._v("单规格")]),e._v(" "),a("el-radio",{attrs:{label:1}},[e._v("多规格")])],1)],1)],1),e._v(" "),1===e.formValidate.spec_type?a("el-col",{staticClass:"noForm",attrs:{span:24}},[a("el-form-item",{attrs:{label:"选择规格:"}},[a("div",{staticClass:"acea-row"},[a("el-select",{model:{value:e.selectRule,callback:function(t){e.selectRule=t},expression:"selectRule"}},e._l(e.ruleList,(function(e){return a("el-option",{key:e.attr_template_id,attrs:{label:e.template_name,value:e.attr_template_id}})})),1),e._v(" "),a("el-button",{staticClass:"ml15",attrs:{type:"primary",size:"small"},on:{click:e.confirm}},[e._v("确认")]),e._v(" "),a("el-button",{staticClass:"ml15",attrs:{size:"small"},on:{click:e.addRule}},[e._v("添加规格模板")])],1)]),e._v(" "),e.formValidate.attr.length>0?a("el-form-item",e._l(e.formValidate.attr,(function(t,i){return a("div",{key:i},[a("div",{staticClass:"acea-row row-middle"},[a("span",{staticClass:"mr5"},[e._v(e._s(t.value))]),e._v(" "),a("i",{staticClass:"el-icon-circle-close",on:{click:function(t){return e.handleRemoveAttr(i)}}})]),e._v(" "),a("div",{staticClass:"rulesBox"},[e._l(t.detail,(function(i,r){return a("el-tag",{key:r,staticClass:"mb5 mr10",attrs:{closable:"",size:"medium","disable-transitions":!1},on:{close:function(a){return e.handleClose(t.detail,r)}}},[e._v(e._s(i)+"\n ")])})),e._v(" "),t.inputVisible?a("el-input",{ref:"saveTagInput",refInFor:!0,staticClass:"input-new-tag",attrs:{size:"small"},on:{blur:function(a){return e.createAttr(t.detail.attrsVal,i)}},nativeOn:{keyup:function(a){return!a.type.indexOf("key")&&e._k(a.keyCode,"enter",13,a.key,"Enter")?null:e.createAttr(t.detail.attrsVal,i)}},model:{value:t.detail.attrsVal,callback:function(a){e.$set(t.detail,"attrsVal",a)},expression:"item.detail.attrsVal"}}):a("el-button",{staticClass:"button-new-tag",attrs:{size:"small"},on:{click:function(a){return e.showInput(t)}}},[e._v("+ 添加")])],2)])})),0):e._e(),e._v(" "),e.isBtn?a("el-col",[a("el-col",{attrs:{xl:6,lg:9,md:9,sm:24,xs:24}},[a("el-form-item",{attrs:{label:"规格:"}},[a("el-input",{attrs:{placeholder:"请输入规格"},model:{value:e.formDynamic.attrsName,callback:function(t){e.$set(e.formDynamic,"attrsName",t)},expression:"formDynamic.attrsName"}})],1)],1),e._v(" "),a("el-col",{attrs:{xl:6,lg:9,md:9,sm:24,xs:24}},[a("el-form-item",{attrs:{label:"规格值:"}},[a("el-input",{attrs:{placeholder:"请输入规格值"},model:{value:e.formDynamic.attrsVal,callback:function(t){e.$set(e.formDynamic,"attrsVal",t)},expression:"formDynamic.attrsVal"}})],1)],1),e._v(" "),a("el-col",{attrs:{xl:12,lg:6,md:6,sm:24,xs:24}},[a("el-form-item",{staticClass:"noLeft"},[a("el-button",{staticClass:"mr15",attrs:{type:"primary"},on:{click:e.createAttrName}},[e._v("确定")]),e._v(" "),a("el-button",{on:{click:e.offAttrName}},[e._v("取消")])],1)],1)],1):e._e(),e._v(" "),e.isBtn?e._e():a("el-form-item",[a("el-button",{staticClass:"mr15",attrs:{type:"primary",icon:"md-add"},on:{click:e.addBtn}},[e._v("添加新规格")])],1)],1):e._e(),e._v(" "),1===e.formValidate.spec_type&&e.formValidate.attr.length>0?a("el-col",{staticClass:"noForm",attrs:{span:24}},[a("el-form-item",{staticClass:"labeltop",attrs:{label:"批量设置:"}},[a("el-table",{staticClass:"tabNumWidth",attrs:{data:e.oneFormBatch,border:"",size:"mini"}},[a("el-table-column",{attrs:{align:"center",label:"图片","min-width":"80"},scopedSlots:e._u([{key:"default",fn:function(t){return[a("div",{staticClass:"upLoadPicBox",attrs:{title:"750*750px"},on:{click:function(t){return e.modalPicTap("1","pi")}}},[t.row.image?a("div",{staticClass:"pictrue tabPic"},[a("img",{attrs:{src:t.row.image}})]):a("div",{staticClass:"upLoad tabPic"},[a("i",{staticClass:"el-icon-camera cameraIconfont"})])])]}}],null,!1,772438934)}),e._v(" "),e._l(e.attrValue,(function(t,i){return a("el-table-column",{key:i,attrs:{label:e.formThead[i].title,align:"center","min-width":"120"},scopedSlots:e._u([{key:"default",fn:function(t){return[0!=e.formValidate.svip_price_type?a("div",["付费会员价"===e.formThead[i].title?a("el-input",{staticClass:"priceBox",attrs:{disabled:1==e.formValidate.svip_price_type,"controls-position":"right"},model:{value:t.row[i],callback:function(a){e.$set(t.row,i,a)},expression:"scope.row[iii]"}}):e._e(),e._v(" "),"商品编号"===e.formThead[i].title?a("el-input",{staticClass:"priceBox",attrs:{type:"text"},model:{value:t.row[i],callback:function(a){e.$set(t.row,i,a)},expression:"scope.row[iii]"}}):e._e(),e._v(" "),"付费会员价"!==e.formThead[i].title&&"商品编号"!==e.formThead[i].title?a("el-input",{staticClass:"priceBox",attrs:{type:"number",min:"0","controls-position":"right"},on:{blur:function(a){return e.memberPrice(e.formThead[i],t.row)}},model:{value:t.row[i],callback:function(a){e.$set(t.row,i,a)},expression:"scope.row[iii]"}}):e._e()],1):a("div",["商品编号"===e.formThead[i].title?a("el-input",{staticClass:"priceBox",attrs:{type:"text"},model:{value:t.row[i],callback:function(a){e.$set(t.row,i,a)},expression:"scope.row[iii]"}}):a("el-input",{staticClass:"priceBox",attrs:{type:"number",min:"0","controls-position":"right"},model:{value:t.row[i],callback:function(a){e.$set(t.row,i,a)},expression:"scope.row[iii]"}})],1)]}}],null,!0)})})),e._v(" "),1===e.formValidate.extension_type?[a("el-table-column",{attrs:{align:"center",label:"一级返佣(元)","min-width":"120"},scopedSlots:e._u([{key:"default",fn:function(t){return[a("el-input-number",{staticClass:"priceBox",attrs:{min:0,"controls-position":"right"},model:{value:t.row.extension_one,callback:function(a){e.$set(t.row,"extension_one",a)},expression:"scope.row.extension_one"}})]}}],null,!1,1308693019)}),e._v(" "),a("el-table-column",{attrs:{align:"center",label:"二级返佣(元)","min-width":"120"},scopedSlots:e._u([{key:"default",fn:function(t){return[a("el-input-number",{staticClass:"priceBox",attrs:{min:0,"controls-position":"right"},model:{value:t.row.extension_two,callback:function(a){e.$set(t.row,"extension_two",a)},expression:"scope.row.extension_two"}})]}}],null,!1,899977843)})]:e._e(),e._v(" "),a("el-table-column",{attrs:{align:"center",label:"操作","min-width":"80"}},[[a("el-button",{staticClass:"submission",attrs:{type:"text"},on:{click:e.batchAdd}},[e._v("批量添加")])]],2)],2)],1)],1):e._e(),e._v(" "),a("el-col",{attrs:{xl:24,lg:24,md:24,sm:24,xs:24}},[0===e.formValidate.spec_type?a("el-form-item",[a("el-table",{staticClass:"tabNumWidth",attrs:{data:e.OneattrValue,border:"",size:"mini"}},[a("el-table-column",{attrs:{align:"center",label:"图片","min-width":"80"},scopedSlots:e._u([{key:"default",fn:function(t){return[a("div",{staticClass:"upLoadPicBox",on:{click:function(t){return e.modalPicTap("1","dan","pi")}}},[e.formValidate.image?a("div",{staticClass:"pictrue tabPic"},[a("img",{attrs:{src:t.row.image}})]):a("div",{staticClass:"upLoad tabPic"},[a("i",{staticClass:"el-icon-camera cameraIconfont"})])])]}}],null,!1,1357914119)}),e._v(" "),e._l(e.attrValue,(function(t,i){return a("el-table-column",{key:i,attrs:{label:e.formThead[i].title,align:"center","min-width":"120"},scopedSlots:e._u([{key:"default",fn:function(t){return[0!=e.formValidate.svip_price_type?a("div",["付费会员价"===e.formThead[i].title?a("el-input-number",{staticClass:"priceBox",attrs:{min:0,disabled:1==e.formValidate.svip_price_type,"controls-position":"right"},model:{value:t.row[i],callback:function(a){e.$set(t.row,i,a)},expression:"scope.row[iii]"}}):e._e(),e._v(" "),"商品编号"===e.formThead[i].title?a("el-input",{staticClass:"priceBox",attrs:{type:"text"},model:{value:t.row[i],callback:function(a){e.$set(t.row,i,a)},expression:"scope.row[iii]"}}):e._e(),e._v(" "),"付费会员价"!==e.formThead[i].title&&"商品编号"!==e.formThead[i].title?a("el-input-number",{staticClass:"priceBox",attrs:{min:0,"controls-position":"right"},model:{value:t.row[i],callback:function(a){e.$set(t.row,i,a)},expression:"scope.row[iii]"}}):e._e()],1):a("div",["商品编号"===e.formThead[i].title?a("el-input",{staticClass:"priceBox",attrs:{type:"text"},model:{value:t.row[i],callback:function(a){e.$set(t.row,i,a)},expression:"scope.row[iii]"}}):a("el-input-number",{staticClass:"priceBox",attrs:{min:0,"controls-position":"right"},model:{value:t.row[i],callback:function(a){e.$set(t.row,i,a)},expression:"scope.row[iii]"}})],1)]}}],null,!0)})})),e._v(" "),1===e.formValidate.extension_type?[a("el-table-column",{attrs:{align:"center",label:"一级返佣(元)","min-width":"120"},scopedSlots:e._u([{key:"default",fn:function(t){return[a("el-input-number",{staticClass:"priceBox",attrs:{min:0,"controls-position":"right"},model:{value:t.row.extension_one,callback:function(a){e.$set(t.row,"extension_one",a)},expression:"scope.row.extension_one"}})]}}],null,!1,1308693019)}),e._v(" "),a("el-table-column",{attrs:{align:"center",label:"二级返佣(元)","min-width":"120"},scopedSlots:e._u([{key:"default",fn:function(t){return[a("el-input-number",{staticClass:"priceBox",attrs:{min:0,"controls-position":"right"},model:{value:t.row.extension_two,callback:function(a){e.$set(t.row,"extension_two",a)},expression:"scope.row.extension_two"}})]}}],null,!1,899977843)})]:e._e()],2)],1):e._e(),e._v(" "),1===e.formValidate.spec_type&&e.formValidate.attr.length>0?a("el-form-item",{staticClass:"labeltop",attrs:{label:"规格列表:"}},[a("el-table",{staticClass:"tabNumWidth",attrs:{data:e.ManyAttrValue,border:"",size:"mini"}},[e.manyTabDate?e._l(e.manyTabDate,(function(t,i){return a("el-table-column",{key:i,attrs:{align:"center",label:e.manyTabTit[i].title,"min-width":"80"},scopedSlots:e._u([{key:"default",fn:function(t){return[a("span",{staticClass:"priceBox",domProps:{textContent:e._s(t.row[i])}})]}}],null,!0)})})):e._e(),e._v(" "),a("el-table-column",{attrs:{align:"center",label:"图片","min-width":"80"},scopedSlots:e._u([{key:"default",fn:function(t){return[a("div",{staticClass:"upLoadPicBox",attrs:{title:"750*750px"},on:{click:function(a){return e.modalPicTap("1","duo",t.$index)}}},[t.row.image?a("div",{staticClass:"pictrue tabPic"},[a("img",{attrs:{src:t.row.image}})]):a("div",{staticClass:"upLoad tabPic"},[a("i",{staticClass:"el-icon-camera cameraIconfont"})])])]}}],null,!1,1344940579)}),e._v(" "),e._l(e.attrValue,(function(t,i){return a("el-table-column",{key:i,attrs:{label:e.formThead[i].title,align:"center","min-width":"120"},scopedSlots:e._u([{key:"default",fn:function(t){return[0!=e.formValidate.svip_price_type?a("div",["付费会员价"===e.formThead[i].title?a("el-input-number",{staticClass:"priceBox",attrs:{min:0,disabled:1==e.formValidate.svip_price_type,"controls-position":"right"},model:{value:t.row[i],callback:function(a){e.$set(t.row,i,a)},expression:"scope.row[iii]"}}):e._e(),e._v(" "),"商品编号"===e.formThead[i].title?a("el-input",{staticClass:"priceBox",attrs:{type:"text"},model:{value:t.row[i],callback:function(a){e.$set(t.row,i,a)},expression:"scope.row[iii]"}}):e._e(),e._v(" "),"付费会员价"!==e.formThead[i].title&&"商品编号"!==e.formThead[i].title?a("el-input-number",{staticClass:"priceBox",attrs:{min:0,"controls-position":"right"},model:{value:t.row[i],callback:function(a){e.$set(t.row,i,a)},expression:"scope.row[iii]"}}):e._e()],1):a("div",["商品编号"===e.formThead[i].title?a("el-input",{staticClass:"priceBox",attrs:{type:"text"},model:{value:t.row[i],callback:function(a){e.$set(t.row,i,a)},expression:"scope.row[iii]"}}):a("el-input-number",{staticClass:"priceBox",attrs:{min:0,"controls-position":"right"},model:{value:t.row[i],callback:function(a){e.$set(t.row,i,a)},expression:"scope.row[iii]"}})],1)]}}],null,!0)})})),e._v(" "),1===e.formValidate.extension_type?[a("el-table-column",{key:"1",attrs:{align:"center",label:"一级返佣(元)","min-width":"120"},scopedSlots:e._u([{key:"default",fn:function(t){return[a("el-input-number",{staticClass:"priceBox",attrs:{min:0,"controls-position":"right"},model:{value:t.row.extension_one,callback:function(a){e.$set(t.row,"extension_one",a)},expression:"scope.row.extension_one"}})]}}],null,!1,1308693019)}),e._v(" "),a("el-table-column",{key:"2",attrs:{align:"center",label:"二级返佣(元)","min-width":"120"},scopedSlots:e._u([{key:"default",fn:function(t){return[a("el-input-number",{staticClass:"priceBox",attrs:{min:0,"controls-position":"right"},model:{value:t.row.extension_two,callback:function(a){e.$set(t.row,"extension_two",a)},expression:"scope.row.extension_two"}})]}}],null,!1,899977843)})]:e._e(),e._v(" "),a("el-table-column",{key:"3",attrs:{align:"center",label:"操作","min-width":"80"},scopedSlots:e._u([{key:"default",fn:function(t){return[a("el-button",{staticClass:"submission",attrs:{type:"text"},on:{click:function(a){return e.delAttrTable(t.$index)}}},[e._v("删除")])]}}],null,!1,2803824461)})],2)],1):e._e()],1)],1):e._e(),e._v(" "),"3"==e.currentTab?a("el-row",[a("el-col",{attrs:{span:24}},[a("el-form-item",{attrs:{label:"商品详情:"}},[a("vue-ueditor-wrap",{attrs:{config:e.myConfig},on:{beforeInit:e.addCustomDialog},model:{value:e.formValidate.content,callback:function(t){e.$set(e.formValidate,"content",t)},expression:"formValidate.content"}})],1)],1)],1):e._e(),e._v(" "),"4"==e.currentTab?a("el-row",[a("el-col",{attrs:{span:24}},[a("el-form-item",{attrs:{label:"商品推荐:"}},[a("el-checkbox-group",{attrs:{size:"small"},on:{change:e.onChangeGroup},model:{value:e.checkboxGroup,callback:function(t){e.checkboxGroup=t},expression:"checkboxGroup"}},e._l(e.recommend,(function(t,i){return a("el-checkbox",{key:i,attrs:{label:t.value}},[e._v("\n "+e._s(t.name)+"\n ")])})),1)],1)],1),e._v(" "),a("el-col",{attrs:{span:24}},[e.deductionStatus>0?a("el-form-item",{attrs:{label:"积分抵扣比例:"}},[a("el-radio-group",{on:{change:function(t){return e.changeIntergral(e.deduction_set)}},model:{value:e.deduction_set,callback:function(t){e.deduction_set=t},expression:"deduction_set"}},[a("el-radio",{staticClass:"radio",attrs:{label:1}},[e._v("单独设置")]),e._v(" "),a("el-radio",{attrs:{label:-1}},[e._v("默认设置")])],1),e._v(" "),1==e.deduction_set?a("div",[a("el-input-number",{attrs:{min:0,"controls-position":"right",placeholder:"请输入抵扣比例"},model:{value:e.formValidate.integral_rate,callback:function(t){e.$set(e.formValidate,"integral_rate",t)},expression:"formValidate.integral_rate"}}),e._v("\n %\n ")],1):e._e()],1):e._e()],1),e._v(" "),a("el-col",{attrs:{span:24}},[a("el-form-item",{attrs:{label:"是否开启礼包:"}},[a("el-radio-group",{attrs:{disabled:!!e.$route.params.id},model:{value:e.formValidate.is_gift_bag,callback:function(t){e.$set(e.formValidate,"is_gift_bag",t)},expression:"formValidate.is_gift_bag"}},[a("el-radio",{staticClass:"radio",attrs:{label:0}},[e._v("否")]),e._v(" "),a("el-radio",{attrs:{label:1}},[e._v("是")])],1)],1)],1),e._v(" "),a("el-col",{attrs:{span:24}},[a("el-form-item",{attrs:{label:"备注:"}},[a("div",[e._v("1. 选择开启礼包后,不可修改")]),e._v(" "),a("div",[e._v("\n 2.\n 用户购买该分销礼包商品后,可自动成为分销员(即已成为分销员的用户在移动端看不到该分销礼包商品)\n ")]),e._v(" "),a("div",[e._v("\n 3.\n 该商品设置为分销礼包后会展示在平台后台的【分销】-【分销礼包】(即不会展示在平台后台-【商品列表】)\n ")])])],1)],1):e._e(),e._v(" "),"5"==e.currentTab?a("el-row",[e.deliveryList.length>0?a("el-col",{attrs:{span:24}},[a("el-form-item",{attrs:{label:"送货方式:",prop:"delivery_way"}},[a("div",{staticClass:"acea-row"},[a("el-checkbox-group",{model:{value:e.formValidate.delivery_way,callback:function(t){e.$set(e.formValidate,"delivery_way",t)},expression:"formValidate.delivery_way"}},e._l(e.deliveryList,(function(t){return a("el-checkbox",{key:t.value,attrs:{label:t.value}},[e._v("\n "+e._s(t.name)+"\n ")])})),1)],1)])],1):e._e(),e._v(" "),(2==e.formValidate.delivery_way.length||1==e.formValidate.delivery_way.length&&2==e.formValidate.delivery_way[0])&&0==e.formValidate.type?a("el-col",{attrs:{span:24}},[a("el-form-item",{attrs:{label:"是否包邮:"}},[a("el-radio-group",{model:{value:e.formValidate.delivery_free,callback:function(t){e.$set(e.formValidate,"delivery_free",t)},expression:"formValidate.delivery_free"}},[a("el-radio",{staticClass:"radio",attrs:{label:0}},[e._v("否")]),e._v(" "),a("el-radio",{attrs:{label:1}},[e._v("是")])],1)],1)],1):e._e(),e._v(" "),0==e.formValidate.delivery_free&&(2==e.formValidate.delivery_way.length||1==e.formValidate.delivery_way.length&&2==e.formValidate.delivery_way[0])&&0==e.formValidate.type?a("el-col",{attrs:{span:24}},[a("el-form-item",{attrs:{label:"运费模板:",prop:"temp_id"}},[a("div",{staticClass:"acea-row"},[a("el-select",{staticClass:"selWidth",attrs:{placeholder:"请选择"},model:{value:e.formValidate.temp_id,callback:function(t){e.$set(e.formValidate,"temp_id",t)},expression:"formValidate.temp_id"}},e._l(e.shippingList,(function(e){return a("el-option",{key:e.shipping_template_id,attrs:{label:e.name,value:e.shipping_template_id}})})),1),e._v(" "),a("el-button",{staticClass:"ml15",attrs:{size:"small"},on:{click:e.addTem}},[e._v("添加运费模板")])],1)])],1):e._e(),e._v(" "),a("el-col",{attrs:{span:24}},[a("el-col",[a("el-form-item",{attrs:{label:"最少购买件数:"}},[a("el-input-number",{attrs:{min:0,"controls-position":"right",placeholder:"请输入购买件数"},model:{value:e.formValidate.once_min_count,callback:function(t){e.$set(e.formValidate,"once_min_count",t)},expression:"formValidate.once_min_count"}}),e._v("\n   默认为0,则不限制购买件数\n ")],1)],1)],1),e._v(" "),a("el-col",{attrs:{span:24}},[a("el-form-item",{attrs:{label:"限购类型:"}},[a("el-radio-group",{model:{value:e.formValidate.pay_limit,callback:function(t){e.$set(e.formValidate,"pay_limit",t)},expression:"formValidate.pay_limit"}},[a("el-radio",{staticClass:"radio",attrs:{label:0}},[e._v("不限购")]),e._v(" "),a("el-radio",{attrs:{label:1}},[e._v("单次限购")]),e._v(" "),a("el-radio",{attrs:{label:2}},[e._v("长期限购")])],1)],1)],1),e._v(" "),0!=e.formValidate.pay_limit?a("el-col",{attrs:{span:24}},[a("el-col",[a("el-form-item",{attrs:{label:"限购数量",prop:"once_max_count"}},[a("el-input-number",{attrs:{min:e.formValidate.once_min_count,"controls-position":"right",placeholder:"请输入购买件数"},model:{value:e.formValidate.once_max_count,callback:function(t){e.$set(e.formValidate,"once_max_count",t)},expression:"formValidate.once_max_count"}}),e._v("\n   单次限购是限制每次下单最多购买的数量,长期限购是限制一个用户总共可以购买的数量\n ")],1)],1)],1):e._e(),e._v(" "),a("el-col",{attrs:{span:24}},[a("el-col",e._b({},"el-col",e.grid,!1),[a("el-form-item",{attrs:{label:"排序:"}},[a("el-input-number",{attrs:{"controls-position":"right",placeholder:"请输入排序"},model:{value:e.formValidate.sort,callback:function(t){e.$set(e.formValidate,"sort",t)},expression:"formValidate.sort"}})],1)],1)],1),e._v(" "),a("el-col",{attrs:{span:24}},[a("el-form-item",{attrs:{label:"平台保障服务:"}},[a("div",{staticClass:"acea-row"},[a("el-select",{staticClass:"selWidth",attrs:{placeholder:"请选择",clearable:""},model:{value:e.formValidate.guarantee_template_id,callback:function(t){e.$set(e.formValidate,"guarantee_template_id",t)},expression:"formValidate.guarantee_template_id"}},e._l(e.guaranteeList,(function(e){return a("el-option",{key:e.guarantee_template_id,attrs:{label:e.template_name,value:e.guarantee_template_id}})})),1),e._v(" "),a("el-button",{staticClass:"ml15",attrs:{size:"small"},on:{click:e.addServiceTem}},[e._v("添加服务说明模板")])],1)])],1),e._v(" "),a("el-col",{attrs:{span:24}},[a("el-form-item",{attrs:{label:"平台商品参数:"}},[a("el-cascader",{staticClass:"selWidth",attrs:{options:e.sysSpecsSelect,props:e.propsMer,filterable:"",clearable:""},on:{change:e.getSpecsList},model:{value:e.formValidate.param_temp_id,callback:function(t){e.$set(e.formValidate,"param_temp_id",t)},expression:"formValidate.param_temp_id"}})],1)],1),e._v(" "),a("el-col",{attrs:{span:16}},[a("el-form-item",[a("el-table",{ref:"tableParameter",attrs:{border:"",data:e.formValidate.params,"row-key":"parameter_value_id","header-row-class-name":"head-table"}},[a("el-table-column",{attrs:{align:"center",label:"参数名称","min-width":"120"},scopedSlots:e._u([{key:"default",fn:function(t){return[a("el-input",{staticClass:"priceBox",attrs:{disabled:0==t.row.mer_id,placeholder:"请输入参数名称"},model:{value:t.row.name,callback:function(a){e.$set(t.row,"name",a)},expression:"scope.row.name"}})]}}],null,!1,2809106159)}),e._v(" "),a("el-table-column",{attrs:{align:"center",label:"参数值","min-width":"120"},scopedSlots:e._u([{key:"default",fn:function(t){return[a("el-input",{staticClass:"priceBox",attrs:{min:0,placeholder:"请输入参数值"},model:{value:t.row.value,callback:function(a){e.$set(t.row,"value",a)},expression:"scope.row.value"}})]}}],null,!1,3804019920)}),e._v(" "),a("el-table-column",{attrs:{align:"center",label:"操作","min-width":"60"},scopedSlots:e._u([{key:"default",fn:function(t){return[0!=t.row.mer_id?a("el-button",{staticClass:"submission",attrs:{type:"text"},nativeOn:{click:function(a){return a.preventDefault(),e.delSpecs(t.$index)}}},[e._v("删除")]):e._e()]}}],null,!1,1785171797)})],1),e._v(" "),a("el-button",{staticClass:"mt20",attrs:{type:"defalut",size:"small"},on:{click:e.addSpecs}},[e._v("添加参数")]),e._v(" "),a("el-select",{staticClass:"selWidth",attrs:{multiple:"",placeholder:"添加自定义参数模板"},on:{change:e.getSpecsList},model:{value:e.customSpecs,callback:function(t){e.customSpecs=t},expression:"customSpecs"}},e._l(e.merSpecsSelect,(function(e){return a("el-option",{key:e.value,attrs:{label:e.label,value:e.value}})})),1)],1)],1),e._v(" "),1==e.formValidate.type?a("el-col",{attrs:{span:24}},[a("el-form-item",{attrs:{label:"自定义留言:"}},[a("el-radio-group",{on:{change:e.customMessBtn},model:{value:e.customBtn,callback:function(t){e.customBtn=t},expression:"customBtn"}},[a("el-radio",{attrs:{label:0}},[e._v("关闭")]),e._v(" "),a("el-radio",{attrs:{label:1}},[e._v("开启")])],1),e._v(" "),e.customBtn?a("div",{staticClass:"addCustom_content"},e._l(e.formValidate.extend,(function(t,i){return a("div",{key:i,staticClass:"custom_box",attrs:{type:"flex"}},[a("el-input",{staticStyle:{width:"100px","margin-right":"10px"},attrs:{placeholder:"留言标题"+(i+1)},model:{value:t.title,callback:function(a){e.$set(t,"title","string"===typeof a?a.trim():a)},expression:"item.title"}}),e._v(" "),a("el-select",{staticStyle:{width:"200px","margin-left":"6px","margin-right":"10px"},model:{value:t.key,callback:function(a){e.$set(t,"key",a)},expression:"item.key"}},e._l(e.CustomList,(function(t){return a("el-option",{key:t.value,attrs:{value:t.value,label:t.label}},[e._v(e._s(t.label)+"\n ")])})),1),e._v(" "),a("el-checkbox",{model:{value:t.require,callback:function(a){e.$set(t,"require",a)},expression:"item.require"}},[e._v("必填")]),e._v(" "),e.formValidate.extend.length-1?a("div",{staticClass:"addfont",on:{click:function(t){return e.delcustom(i)}}},[e._v("\n 删除\n ")]):e._e()],1)})),0):e._e(),e._v(" "),a("div",{directives:[{name:"show",rawName:"v-show",value:e.customBtn,expression:"customBtn"}],staticClass:"addCustomBox"},[a("div",{staticClass:"btn",on:{click:e.addcustom}},[e._v("+ 添加表单")]),e._v(" "),a("div",{staticClass:"remark"},[a("div",[e._v("备注:")]),e._v(" "),a("div",[a("div",{staticClass:"titTip"},[e._v("\n 1.用户下单时需填写的信息,最多可设置10条\n ")]),e._v(" "),a("div",{staticClass:"titTip"},[e._v("\n 2.虚拟物品不可加入购物车,用户可直接购买\n ")])])])])],1)],1):e._e()],1):e._e(),e._v(" "),a("el-form-item",{staticStyle:{"margin-top":"30px"}},[a("el-button",{directives:[{name:"show",rawName:"v-show",value:e.currentTab>1,expression:"currentTab > 1"}],staticClass:"submission",attrs:{type:"primary",size:"small"},on:{click:e.handleSubmitUp}},[e._v("上一步\n ")]),e._v(" "),a("el-button",{directives:[{name:"show",rawName:"v-show",value:e.currentTab<5,expression:"currentTab < 5"}],staticClass:"submission",attrs:{type:"primary",size:"small"},on:{click:function(t){return e.handleSubmitNest("formValidate")}}},[e._v("下一步\n ")]),e._v(" "),a("el-button",{directives:[{name:"show",rawName:"v-show",value:"5"==e.currentTab||e.$route.params.id,expression:"currentTab == '5' || $route.params.id"}],staticClass:"submission",attrs:{loading:e.loading,type:"primary",size:"small"},on:{click:function(t){return e.handleSubmit("formValidate")}}},[e._v("提交\n ")]),e._v(" "),a("el-button",{staticClass:"submission",attrs:{loading:e.loading,type:"primary",size:"small"},on:{click:function(t){return e.handlePreview("formValidate")}}},[e._v("预览\n ")])],1)],1)],1),e._v(" "),a("guarantee-service",{ref:"serviceGuarantee",on:{"get-list":e.getGuaranteeList}}),e._v(" "),e.previewVisible?a("div",[a("div",{staticClass:"bg",on:{click:function(t){t.stopPropagation(),e.previewVisible=!1}}}),e._v(" "),e.previewVisible?a("preview-box",{ref:"previewBox",attrs:{"preview-key":e.previewKey}}):e._e()],1):e._e(),e._v(" "),a("tao-bao",{ref:"taoBao",on:{"info-data":e.infoData}})],1)},r=[],l=a("c7eb"),n=(a("96cf"),a("1da1")),o=(a("a481"),a("c5f6"),a("b85c")),s=(a("7f7f"),a("ade3")),c=(a("28a5"),a("8615"),a("55dd"),a("ac6a"),a("6762"),a("2fdb"),a("6b54"),a("2909")),d=a("ef0d"),u=a("6625"),m=a.n(u),p=a("aa47"),f=a("c4c8"),h=a("83d6"),_=a("ae43"),g=a("8c98"),v=a("bbcc"),b=a("5f87"),y=function(){var e=this,t=e.$createElement,a=e._self._c||t;return a("div",{staticClass:"Box"},[e.modals?a("el-dialog",{attrs:{visible:e.modals,width:"70%",title:"商品采集","custom-class":"dialog-scustom"},on:{"update:visible":function(t){e.modals=t}}},[a("el-card",[a("div",[e._v("复制淘宝、天猫、京东、苏宁、1688;")]),e._v("\n 生成的商品默认是没有上架的,请手动上架商品!\n "),a("span",{staticStyle:{color:"rgb(237, 64, 20)"}},[e._v("商品复制次数剩余:"+e._s(e.count)+"次")]),e._v(" "),a("router-link",{attrs:{to:{path:e.roterPre+"/setting/sms/sms_pay/index?type=copy"}}},[a("el-button",{attrs:{size:"small",type:"text"}},[e._v("增加采集次数")])],1),e._v(" "),a("el-button",{staticStyle:{"margin-left":"15px"},attrs:{size:"small",type:"primary"},on:{click:e.openRecords}},[e._v("查看商品复制记录")])],1),e._v(" "),a("el-form",{ref:"formValidate",staticClass:"formValidate mt20",attrs:{model:e.formValidate,rules:e.ruleInline,"label-width":"130px","label-position":"right"},nativeOn:{submit:function(e){e.preventDefault()}}},[a("el-form-item",{attrs:{label:"链接地址:"}},[a("el-input",{staticClass:"numPut",attrs:{search:"",placeholder:"请输入链接地址"},model:{value:e.soure_link,callback:function(t){e.soure_link=t},expression:"soure_link"}}),e._v(" "),a("el-button",{attrs:{loading:e.loading,size:"small",type:"primary"},on:{click:e.add}},[e._v("确定")])],1)],1)],1):e._e(),e._v(" "),a("copy-record",{ref:"copyRecord"})],1)},w=[],V=function(){var e=this,t=e.$createElement,a=e._self._c||t;return e.showRecord?a("el-dialog",{attrs:{title:"复制记录",visible:e.showRecord,width:"900px"},on:{"update:visible":function(t){e.showRecord=t}}},[a("div",{directives:[{name:"loading",rawName:"v-loading",value:e.loading,expression:"loading"}]},[a("el-table",{directives:[{name:"loading",rawName:"v-loading",value:e.loading,expression:"loading"}],staticClass:"table",staticStyle:{width:"100%"},attrs:{data:e.tableData.data,size:"mini","highlight-current-row":""}},[a("el-table-column",{attrs:{label:"ID",prop:"mer_id","min-width":"50"}}),e._v(" "),a("el-table-column",{attrs:{label:"使用次数",prop:"num","min-width":"80"}}),e._v(" "),a("el-table-column",{attrs:{label:"复制商品平台名称",prop:"type","min-width":"120"}}),e._v(" "),a("el-table-column",{attrs:{label:"剩余次数",prop:"number","min-width":"80"}}),e._v(" "),a("el-table-column",{attrs:{label:"商品复制链接",prop:"info","min-width":"180"}}),e._v(" "),a("el-table-column",{attrs:{label:"操作时间",prop:"create_time","min-width":"120"}})],1),e._v(" "),a("div",{staticClass:"block"},[a("el-pagination",{attrs:{"page-sizes":[10,20],"page-size":e.tableFrom.limit,"current-page":e.tableFrom.page,layout:"total, sizes, prev, pager, next, jumper",total:e.tableData.total},on:{"size-change":e.handleSizeChange,"current-change":e.pageChange}})],1)],1)]):e._e()},x=[],k={name:"CopyRecord",data:function(){return{showRecord:!1,loading:!1,tableData:{data:[],total:0},tableFrom:{page:1,limit:10}}},methods:{getRecord:function(){var e=this;this.showRecord=!0,this.loading=!0,Object(f["Z"])(this.tableFrom).then((function(t){e.tableData.data=t.data.list,e.tableData.total=t.data.count,e.loading=!1})).catch((function(t){e.$message.error(t.message),e.listLoading=!1}))},pageChange:function(e){this.tableFrom.page=e,this.getRecord()},pageChangeLog:function(e){this.tableFromLog.page=e,this.getRecord()},handleSizeChange:function(e){this.tableFrom.limit=e,this.getRecord()}}},C=k,$=(a("f099"),a("2877")),B=Object($["a"])(C,V,x,!1,null,"6d70337e",null),O=B.exports,L={store_name:"",cate_id:"",temp_id:"",type:0,guarantee_template_id:"",keyword:"",unit_name:"",store_info:"",image:"",slider_image:[],content:"",ficti:0,once_count:0,give_integral:0,is_show:0,price:0,cost:0,ot_price:0,stock:0,soure_link:"",attrs:[],items:[],delivery_way:[],mer_labels:[],delivery_free:0,spec_type:0,is_copoy:1,attrValue:[{image:"",price:0,cost:0,ot_price:0,stock:0,bar_code:"",weight:0,volume:0}]},T={price:{title:"售价"},cost:{title:"成本价"},ot_price:{title:"市场价"},stock:{title:"库存"},bar_code:{title:"商品编号"},weight:{title:"重量(KG)"},volume:{title:"体积(m³)"}},S={name:"CopyTaoBao",components:{ueditorFrom:d["a"],copyRecord:O},data:function(){var e=v["a"].https+"/upload/image/0/file?ueditor=1&token="+Object(b["a"])();return{roterPre:h["roterPre"],modals:!1,loading:!1,loading1:!1,BaseURL:v["a"].https||"http://localhost:8080",OneattrValue:[Object.assign({},L.attrValue[0])],ManyAttrValue:[Object.assign({},L.attrValue[0])],columnsBatch:[{title:"图片",slot:"image",align:"center",minWidth:80},{title:"售价",slot:"price",align:"center",minWidth:95},{title:"成本价",slot:"cost",align:"center",minWidth:95},{title:"市场价",slot:"ot_price",align:"center",minWidth:95},{title:"库存",slot:"stock",align:"center",minWidth:95},{title:"商品编号",slot:"bar_code",align:"center",minWidth:120},{title:"重量(KG)",slot:"weight",align:"center",minWidth:95},{title:"体积(m³)",slot:"volume",align:"center",minWidth:95}],manyTabDate:{},count:0,modal_loading:!1,images:"",soure_link:"",modalPic:!1,isChoice:"",gridPic:{xl:6,lg:8,md:12,sm:12,xs:12},gridBtn:{xl:4,lg:8,md:8,sm:8,xs:8},columns:[],virtual:[{tit:"普通商品",id:0,tit2:"物流发货"},{tit:"虚拟商品",id:1,tit2:"虚拟发货"}],categoryList:[],merCateList:[],BrandList:[],propsMer:{emitPath:!1,multiple:!0},tableFrom:{mer_cate_id:"",cate_id:"",keyword:"",type:"1",is_gift_bag:""},ruleInline:{cate_id:[{required:!0,message:"请选择商品分类",trigger:"change"}],mer_cate_id:[{required:!0,message:"请选择商户分类",trigger:"change",type:"array",min:"1"}],temp_id:[{required:!0,message:"请选择运费模板",trigger:"change",type:"number"}],brand_id:[{required:!0,message:"请选择品牌",trigger:"change"}],store_info:[{required:!0,message:"请输入商品简介",trigger:"blur"}],delivery_way:[{required:!0,message:"请选择送货方式",trigger:"change"}]},grid:{xl:8,lg:8,md:12,sm:24,xs:24},grid2:{xl:12,lg:12,md:12,sm:24,xs:24},myConfig:{autoHeightEnabled:!1,initialFrameHeight:500,initialFrameWidth:"100%",UEDITOR_HOME_URL:"/UEditor/",serverUrl:e,imageUrl:e,imageFieldName:"file",imageUrlPrefix:"",imageActionName:"upfile",imageMaxSize:2048e3,imageAllowFiles:[".png",".jpg",".jpeg",".gif",".bmp"]},formThead:Object.assign({},T),formValidate:Object.assign({},L),items:[{image:"",price:0,cost:0,ot_price:0,stock:0,bar_code:"",weight:0,volume:0}],shippingList:[],guaranteeList:[],isData:!1,artFrom:{type:"taobao",url:""},tableIndex:0,labelPosition:"right",labelWidth:"120",isMore:"",taoBaoStatus:{},attrInfo:{},labelList:[],oneFormBatch:[{image:"",price:0,cost:0,ot_price:0,stock:0,bar_code:"",weight:0,volume:0}]}},computed:{attrValue:function(){var e=Object.assign({},L.attrValue[0]);return delete e.image,e}},watch:{},created:function(){},mounted:function(){this.getCopyCount()},methods:{getLabelLst:function(){var e=this;Object(f["v"])().then((function(t){e.labelList=t.data})).catch((function(t){e.$message.error(t.message)}))},getCopyCount:function(){var e=this;Object(f["Y"])().then((function(t){e.count=t.data.count}))},openRecords:function(){this.$refs.copyRecord.getRecord()},batchDel:function(){this.oneFormBatch=[{image:"",price:0,cost:0,ot_price:0,stock:0,bar_code:"",weight:0,volume:0}]},batchAdd:function(){var e,t=Object(o["a"])(this.ManyAttrValue);try{for(t.s();!(e=t.n()).done;){var a=e.value;this.$set(a,"image",this.oneFormBatch[0].image),this.$set(a,"price",this.oneFormBatch[0].price),this.$set(a,"cost",this.oneFormBatch[0].cost),this.$set(a,"ot_price",this.oneFormBatch[0].ot_price),this.$set(a,"stock",this.oneFormBatch[0].stock),this.$set(a,"bar_code",this.oneFormBatch[0].bar_code),this.$set(a,"weight",this.oneFormBatch[0].weight),this.$set(a,"volume",this.oneFormBatch[0].volume),this.$set(a,"extension_one",this.oneFormBatch[0].extension_one),this.$set(a,"extension_two",this.oneFormBatch[0].extension_two)}}catch(i){t.e(i)}finally{t.f()}},delAttrTable:function(e){this.ManyAttrValue.splice(e,1)},productGetTemplate:function(){var e=this;Object(f["wb"])().then((function(t){e.shippingList=t.data}))},getGuaranteeList:function(){var e=this;Object(f["B"])().then((function(t){e.guaranteeList=t.data}))},handleRemove:function(e){this.formValidate.slider_image.splice(e,1)},checked:function(e,t){this.formValidate.image=e},goodsCategory:function(){var e=this;Object(f["q"])().then((function(t){e.categoryList=t.data})).catch((function(t){e.$message.error(t.message)}))},getCategorySelect:function(){var e=this;Object(f["r"])().then((function(t){e.merCateList=t.data})).catch((function(t){e.$message.error(t.message)}))},getBrandListApi:function(){var e=this;Object(f["p"])().then((function(t){e.BrandList=t.data})).catch((function(t){e.$message.error(t.message)}))},virtualbtn:function(e,t){this.formValidate.type=e,this.productCon()},watCh:function(e){var t=this,a={},i={};this.formValidate.attr.forEach((function(e,t){a["value"+t]={title:e.value},i["value"+t]=""})),this.ManyAttrValue=this.attrFormat(e),console.log(this.ManyAttrValue),this.ManyAttrValue.forEach((function(e,a){var i=Object.values(e.detail).sort().join("/");t.attrInfo[i]&&(t.ManyAttrValue[a]=t.attrInfo[i]),e.image=t.formValidate.image})),this.attrInfo={},this.ManyAttrValue.forEach((function(e){"undefined"!==e.detail&&null!==e.detail&&(t.attrInfo[Object.values(e.detail).sort().join("/")]=e)})),this.manyTabTit=a,this.manyTabDate=i,this.formThead=Object.assign({},this.formThead,a)},attrFormat:function(e){var t=[],a=[];return i(e);function i(e){if(e.length>1)e.forEach((function(i,r){0===r&&(t=e[r]["detail"]);var l=[];t.forEach((function(t){e[r+1]&&e[r+1]["detail"]&&e[r+1]["detail"].forEach((function(i){var n=(0!==r?"":e[r]["value"]+"_$_")+t+"-$-"+e[r+1]["value"]+"_$_"+i;if(l.push(n),r===e.length-2){var o={image:"",price:0,cost:0,ot_price:0,stock:0,bar_code:"",weight:0,volume:0,brokerage:0,brokerage_two:0};n.split("-$-").forEach((function(e,t){var a=e.split("_$_");o["detail"]||(o["detail"]={}),o["detail"][a[0]]=a.length>1?a[1]:""})),Object.values(o.detail).forEach((function(e,t){o["value"+t]=e})),a.push(o)}}))})),t=l.length?l:[]}));else{var i=[];e.forEach((function(e,t){e["detail"].forEach((function(t,r){i[r]=e["value"]+"_"+t,a[r]={image:"",price:0,cost:0,ot_price:0,stock:0,bar_code:"",weight:0,volume:0,brokerage:0,brokerage_two:0,detail:Object(s["a"])({},e["value"],t)},Object.values(a[r].detail).forEach((function(e,t){a[r]["value"+t]=e}))}))})),t.push(i.join("$&"))}return console.log(a),a}},add:function(){var e=this;if(this.soure_link){var t=/(http|ftp|https):\/\/[\w\-_]+(\.[\w\-_]+)+([\w\-\.,@?^=%&:/~\+#]*[\w\-\@?^=%&/~\+#])?/;if(!t.test(this.soure_link))return this.$message.warning("请输入以http开头的地址!");this.artFrom.url=this.soure_link,this.loading=!0,Object(f["s"])(this.artFrom).then((function(t){var a=t.data;e.modals=!1,e.$emit("info-data",a)})).catch((function(t){e.$message.error(t.message),e.loading=!1}))}else this.$message.warning("请输入链接地址!")},handleSubmit:function(e){var t=this;this.$refs[e].validate((function(e){e?(t.modal_loading=!0,t.formValidate.cate_id=t.formValidate.cate_id instanceof Array?t.formValidate.cate_id.pop():t.formValidate.cate_id,t.formValidate.once_count=t.formValidate.once_count||0,1==t.formValidate.spec_type?t.formValidate.attrValue=t.ManyAttrValue:(t.formValidate.attrValue=t.OneattrValue,t.formValidate.attr=[]),t.formValidate.is_copoy=1,t.loading1=!0,Object(f["X"])(t.formValidate).then((function(e){t.$message.success("商品默认为不上架状态请手动上架商品!"),t.loading1=!1,setTimeout((function(){t.modal_loading=!1}),500),setTimeout((function(){t.modals=!1}),600),t.$emit("getSuccess")})).catch((function(e){t.modal_loading=!1,t.$message.error(e.message),t.loading1=!1}))):t.formValidate.cate_id||t.$message.warning("请填写商品分类!")}))},modalPicTap:function(e,t,a){this.tableIndex=a;var i=this;this.$modalUpload((function(t){console.log(i.formValidate.attr[i.tableIndex]),"1"===e&&("pi"===a?i.oneFormBatch[0].image=t[0]:i.OneattrValue[0].image=t[0]),"2"===e&&(i.ManyAttrValue[i.tableIndex].image=t[0]),i.modalPic=!1}),e)},getPic:function(e){this.callback(e),this.formValidate.attr[this.tableIndex].pic=e.att_dir,this.modalPic=!1},handleDragStart:function(e,t){this.dragging=t},handleDragEnd:function(e,t){this.dragging=null},handleDragOver:function(e){e.dataTransfer.dropEffect="move"},handleDragEnter:function(e,t){if(e.dataTransfer.effectAllowed="move",t!==this.dragging){var a=Object(c["a"])(this.formValidate.slider_image),i=a.indexOf(this.dragging),r=a.indexOf(t);a.splice.apply(a,[r,0].concat(Object(c["a"])(a.splice(i,1)))),this.formValidate.slider_image=a}},addCustomDialog:function(e){window.UE.registerUI("test-dialog",(function(e,t){var a=new window.UE.ui.Dialog({iframeUrl:"/admin/widget.images/index.html?fodder=dialog",editor:e,name:t,title:"上传图片",cssRules:"width:1200px;height:500px;padding:20px;"});this.dialog=a;var i=new window.UE.ui.Button({name:"dialog-button",title:"上传图片",cssRules:"background-image: url(../../../assets/images/icons.png);background-position: -726px -77px;",onclick:function(){a.render(),a.open()}});return i}))}}},j=S,F=(a("c722"),Object($["a"])(j,y,w,!1,null,"5245ffd2",null)),D=F.exports,A={image:"",slider_image:[],store_name:"",store_info:"",keyword:"",brand_id:"",cate_id:"",mer_cate_id:[],param_temp_id:[],unit_name:"",sort:0,once_max_count:0,is_good:0,temp_id:"",video_link:"",guarantee_template_id:"",delivery_way:[],mer_labels:[],delivery_free:0,pay_limit:0,once_min_count:0,svip_price_type:0,params:[],attrValue:[{image:"",price:null,cost:null,ot_price:null,svip_price:null,stock:null,bar_code:"",weight:null,volume:null}],attr:[],extension_type:0,integral_rate:-1,content:"",spec_type:0,give_coupon_ids:[],is_gift_bag:0,couponData:[],extend:[],type:0},E={price:{title:"售价"},cost:{title:"成本价"},ot_price:{title:"市场价"},svip_price:{title:"付费会员价"},stock:{title:"库存"},bar_code:{title:"商品编号"},weight:{title:"重量(KG)"},volume:{title:"体积(m³)"}},P=[{name:"店铺推荐",value:"is_good"}],R={name:"ProductProductAdd",components:{ueditorFrom:d["a"],VueUeditorWrap:m.a,guaranteeService:_["a"],previewBox:g["a"],taoBao:D,copyRecord:O},data:function(){var e=v["a"].https+"/upload/image/0/file?ueditor=1&token="+Object(b["a"])();return{myConfig:{autoHeightEnabled:!1,initialFrameHeight:500,initialFrameWidth:"100%",enableAutoSave:!1,UEDITOR_HOME_URL:"/UEditor/",serverUrl:e,imageUrl:e,imageFieldName:"file",imageUrlPrefix:"",imageActionName:"upfile",imageMaxSize:2048e3,imageAllowFiles:[".png",".jpg",".jpeg",".gif",".bmp"]},optionsCate:{value:"store_category_id",label:"cate_name",children:"children",emitPath:!1},roterPre:h["roterPre"],selectRule:"",checkboxGroup:[],recommend:P,tabs:[],fullscreenLoading:!1,props:{emitPath:!1},propsMer:{emitPath:!0},active:0,deduction_set:-1,OneattrValue:[Object.assign({},A.attrValue[0])],ManyAttrValue:[Object.assign({},A.attrValue[0])],ruleList:[],merCateList:[],categoryList:[],shippingList:[],guaranteeList:[],BrandList:[],deliveryList:[],labelList:[],formThead:Object.assign({},E),formValidate:Object.assign({},A),picValidate:!0,formDynamics:{template_name:"",template_value:[]},manyTabTit:{},manyTabDate:{},grid2:{xl:10,lg:12,md:12,sm:24,xs:24},formDynamic:{attrsName:"",attrsVal:""},isBtn:!1,manyFormValidate:[],images:[],currentTab:"1",isChoice:"",upload:{videoIng:!1},progress:10,videoLink:"",grid:{xl:8,lg:8,md:12,sm:24,xs:24},loading:!1,ruleValidate:{give_coupon_ids:[{required:!0,message:"请选择优惠券",trigger:"change",type:"array"}],store_name:[{required:!0,message:"请输入商品名称",trigger:"blur"}],mer_cate_id:[{required:!0,message:"请选择商户商品分类",trigger:"change"}],cate_id:[{required:!0,message:"请选择平台分类",trigger:"change"}],keyword:[{required:!0,message:"请输入商品关键字",trigger:"blur"}],unit_name:[{required:!0,message:"请输入单位",trigger:"blur"}],store_info:[{required:!0,message:"请输入商品简介",trigger:"blur"}],temp_id:[{required:!0,message:"请选择运费模板",trigger:"change"}],once_max_count:[{required:!0,message:"请输入限购数量",trigger:"change"}],image:[{required:!0,message:"请上传商品图",trigger:"change"}],slider_image:[{required:!0,message:"请上传商品轮播图",type:"array",trigger:"change"}],spec_type:[{required:!0,message:"请选择商品规格",trigger:"change"}],delivery_way:[{required:!0,message:"请选择送货方式",trigger:"change"}]},attrInfo:{},keyNum:0,extensionStatus:0,deductionStatus:0,previewVisible:!1,previewKey:"",deliveryType:[],virtual:[{tit:"普通商品",id:0,tit2:"物流发货"},{tit:"虚拟商品",id:1,tit2:"虚拟发货"}],customBtn:0,CustomList:[{value:"text",label:"文本框"},{value:"number",label:"数字"},{value:"email",label:"邮件"},{value:"date",label:"日期"},{value:"time",label:"时间"},{value:"idCard",label:"身份证"},{value:"mobile",label:"手机号"},{value:"image",label:"图片"}],customess:{content:[]},headTab:[{title:"商品信息",name:"1"},{title:"规格设置",name:"2"},{title:"商品详情",name:"3"},{title:"营销设置",name:"4"},{title:"其他设置",name:"5"}],type:0,modals:!1,attrVal:{price:null,cost:null,ot_price:null,stock:null,bar_code:"",weight:null,volume:null},open_svip:!1,svip_rate:0,customSpecs:[],merSpecsSelect:[],sysSpecsSelect:[]}},computed:{attrValue:function(){var e=Object.assign({},this.attrVal);return e},oneFormBatch:function(){var e=[Object.assign({},A.attrValue[0])];return this.OneattrValue[0]&&this.OneattrValue[0]["image"]&&(e[0]["image"]=this.OneattrValue[0]["image"]),delete e[0].bar_code,e}},watch:{"formValidate.attr":{handler:function(e){1===this.formValidate.spec_type&&this.watCh(e)},immediate:!1,deep:!0},currentTab:function(e){var t=this;5==e&&this.$nextTick((function(e){t.setSort()}))}},created:function(){this.tempRoute=Object.assign({},this.$route),this.$route.params.id&&1===this.formValidate.spec_type&&this.$watch("formValidate.attr",this.watCh)},mounted:function(){var e=this;this.formValidate.slider_image=[],this.$route.params.id?(this.setTagsViewTitle(),this.getInfo()):(this.getSpecsLst(this.formValidate.cate_id),-1==this.deduction_set&&(this.formValidate.integral_rate=-1)),this.formValidate.attr.map((function(t){e.$set(t,"inputVisible",!1)})),1==this.$route.query.type?(this.type=this.$route.query.type,this.$refs.taoBao.modals=!0):this.type=0,this.getCategorySelect(),this.getCategoryList(),this.getBrandListApi(),this.getShippingList(),this.getGuaranteeList(),this.productCon(),this.productGetRule(),this.getLabelLst(),this.$store.dispatch("settings/setEdit",!0)},destroyed:function(){window.removeEventListener("popstate",this.goBack,!1)},methods:{setSort:function(){var e=this,t=this.$refs.tableParameter.$el.querySelectorAll(".el-table__body-wrapper > table > tbody")[0];this.sortable=p["default"].create(t,{ghostClass:"sortable-ghost",setData:function(e){e.setData("Text","")},onEnd:function(t){e.elChangeExForArray(t.oldIndex,t.newIndex,e.formValidate.params)}})},elChangeExForArray:function(e,t,a){var i=a[e];return a[e]=a[t],a[t]=i,a},goBack:function(){sessionStorage.clear(),window.history.back()},handleCloseCoupon:function(e){var t=this;this.formValidate.couponData.splice(this.formValidate.couponData.indexOf(e),1),this.formValidate.give_coupon_ids=[],this.formValidate.couponData.map((function(e){t.formValidate.give_coupon_ids.push(e.coupon_id)}))},getSpecsLst:function(e){var t=this,a=e||this.formValidate.cate_id;Object(f["zb"])({cate_id:a}).then((function(e){t.merSpecsSelect=e.data.mer,t.sysSpecsSelect=e.data.sys})).catch((function(e){t.$message.error(e.message)}))},productCon:function(){var e=this;Object(f["W"])().then((function(t){e.extensionStatus=t.data.extension_status,e.deductionStatus=t.data.integral_status,e.deliveryType=t.data.delivery_way.map(String),e.open_svip=1==t.data.mer_svip_status&&1==t.data.svip_switch_status,e.svip_rate=t.data.svip_store_rate;var a=0==e.formValidate.type?"快递配送":"虚拟发货";e.$route.params.id||(e.formValidate.delivery_way=e.deliveryType),2==e.deliveryType.length?e.deliveryList=[{value:"1",name:"到店自提"},{value:"2",name:a}]:1==e.deliveryType.length&&"1"==e.deliveryType[0]?e.deliveryList=[{value:"1",name:"到店自提"}]:e.deliveryList=[{value:"2",name:a}]})).catch((function(t){e.$message.error(t.message)}))},getLabelLst:function(){var e=this;Object(f["v"])().then((function(t){e.labelList=t.data})).catch((function(t){e.$message.error(t.message)}))},addCoupon:function(){var e=this;this.$modalCoupon(this.formValidate.couponData,"wu",e.formValidate.give_coupon_ids,this.keyNum+=1,(function(t){e.formValidate.give_coupon_ids=[],e.formValidate.couponData=t,t.map((function(t){e.formValidate.give_coupon_ids.push(t.coupon_id)}))}))},delSpecs:function(e){this.formValidate.params.splice(e,1)},addSpecs:function(){this.formValidate.params.push({name:"",value:"",sort:0})},getSpecsList:function(){var e=this,t=Object(c["a"])(this.customSpecs),a=[this.formValidate.param_temp_id].concat(),i=[].concat(Object(c["a"])(t),Object(c["a"])(a));console.log(i),console.log(this.customSpecs),i.length<=0?(this.formValidate.merParams=[],this.formValidate.sysParams=[]):Object(f["ib"])({template_ids:i.toString()}).then((function(t){e.formValidate.params=t.data})).catch((function(t){e.$message.error(t.message)}))},setTagsViewTitle:function(){var e="编辑商品",t=Object.assign({},this.tempRoute,{title:"".concat(e,"-").concat(this.$route.params.id)});this.$store.dispatch("tagsView/updateVisitedView",t)},onChangeGroup:function(){this.checkboxGroup.includes("is_good")?this.formValidate.is_good=1:this.formValidate.is_good=0},watCh:function(e){var t=this,a={},i={};this.formValidate.attr.forEach((function(e,t){a["value"+t]={title:e.value},i["value"+t]=""})),this.ManyAttrValue=this.attrFormat(e),this.ManyAttrValue.forEach((function(e,a){var i=Object.values(e.detail).sort().join("/");t.attrInfo[i]&&(t.ManyAttrValue[a]=t.attrInfo[i])})),this.attrInfo={},this.ManyAttrValue.forEach((function(e){"undefined"!==e.detail&&null!==e.detail&&(t.attrInfo[Object.values(e.detail).sort().join("/")]=e)})),this.manyTabTit=a,this.manyTabDate=i,this.formThead=Object.assign({},this.formThead,a)},attrFormat:function(e){var t=[],a=[];return i(e);function i(e){if(e.length>1)e.forEach((function(i,r){0===r&&(t=e[r]["detail"]);var l=[];t.forEach((function(t){e[r+1]&&e[r+1]["detail"]&&e[r+1]["detail"].forEach((function(i){var n=(0!==r?"":e[r]["value"]+"_$_")+t+"-$-"+e[r+1]["value"]+"_$_"+i;if(l.push(n),r===e.length-2){var o={image:"",price:0,cost:0,ot_price:0,stock:0,bar_code:"",weight:0,volume:0,brokerage:0,brokerage_two:0};n.split("-$-").forEach((function(e,t){var a=e.split("_$_");o["detail"]||(o["detail"]={}),o["detail"][a[0]]=a.length>1?a[1]:""})),Object.values(o.detail).forEach((function(e,t){o["value"+t]=e})),a.push(o)}}))})),t=l.length?l:[]}));else{var i=[];e.forEach((function(e,t){e["detail"].forEach((function(t,r){i[r]=e["value"]+"_"+t,a[r]={image:"",price:0,cost:0,ot_price:0,stock:0,bar_code:"",weight:0,volume:0,brokerage:0,brokerage_two:0,detail:Object(s["a"])({},e["value"],t)},Object.values(a[r].detail).forEach((function(e,t){a[r]["value"+t]=e}))}))})),t.push(i.join("$&"))}return a}},addTem:function(){var e=this;this.$modalTemplates(0,(function(){e.getShippingList()}))},addServiceTem:function(){this.$refs.serviceGuarantee.add()},delVideo:function(){var e=this;e.$set(e.formValidate,"video_link","")},zh_uploadFile:function(){this.videoLink?this.formValidate.video_link=this.videoLink:this.$refs.refid.click()},zh_uploadFile_change:function(e){var t=this;t.progress=10;var a=e.target.files[0].name.substr(e.target.files[0].name.indexOf("."));if(".mp4"!==a)return t.$message.error("只能上传MP4文件");Object(f["db"])().then((function(a){t.$videoCloud.videoUpload({type:a.data.type,evfile:e,res:a,uploading:function(e,a){t.upload.videoIng=e}}).then((function(e){t.formValidate.video_link=e.url||e.data.src,t.$message.success("视频上传成功"),t.progress=100})).catch((function(e){t.upload.videoIng=!1,t.$message.error(e.message)}))}))},addRule:function(){var e=this;this.$modalAttr(this.formDynamics,(function(){e.productGetRule()}))},onChangeSpec:function(e){1===e&&this.productGetRule()},changeIntergral:function(e){this.formValidate.integral_rate=-1==e?-1:this.formValidate.integral_rate},confirm:function(){var e=this;if(!this.selectRule)return this.$message.warning("请选择属性");this.ruleList.forEach((function(t){t.attr_template_id===e.selectRule&&(e.formValidate.attr=t.template_value)}))},getCategorySelect:function(){var e=this;Object(f["r"])().then((function(t){e.merCateList=t.data})).catch((function(t){e.$message.error(t.message)}))},getCategoryList:function(){var e=this;Object(f["q"])().then((function(t){e.categoryList=t.data})).catch((function(t){e.$message.error(t.message)}))},getBrandListApi:function(){var e=this;Object(f["p"])().then((function(t){e.BrandList=t.data})).catch((function(t){e.$message.error(t.message)}))},productGetRule:function(){var e=this;Object(f["Nb"])().then((function(t){e.ruleList=t.data}))},getShippingList:function(){var e=this;Object(f["wb"])().then((function(t){e.shippingList=t.data}))},getGuaranteeList:function(){var e=this;Object(f["B"])().then((function(t){e.guaranteeList=t.data}))},showInput:function(e){this.$set(e,"inputVisible",!0)},virtualbtn:function(e,t){if(this.$route.params.id)return this.$message.warning("商品类型不能切换!");this.formValidate.type=e,this.productCon()},customMessBtn:function(e){e||(this.formValidate.extend=[])},addcustom:function(){this.formValidate.extend.length>9?this.$message.warning("最多添加10条"):this.formValidate.extend.push({title:"",key:"text",value:"",require:!1})},delcustom:function(e){this.formValidate.extend.splice(e,1)},onChangetype:function(e){var t=this;1===e?(this.OneattrValue.map((function(e){t.$set(e,"extension_one",null),t.$set(e,"extension_two",null)})),this.ManyAttrValue.map((function(e){t.$set(e,"extension_one",null),t.$set(e,"extension_two",null)}))):(this.OneattrValue.map((function(e){delete e.extension_one,delete e.extension_two,t.$set(e,"extension_one",null),t.$set(e,"extension_two",null)})),this.ManyAttrValue.map((function(e){delete e.extension_one,delete e.extension_two})))},onChangeSpecs:function(e){if(1==e||2==e){this.attrVal={price:null,cost:null,ot_price:null,svip_price:null,stock:null,bar_code:"",weight:null,volume:null},this.OneattrValue[0]["svip_price"]=this.OneattrValue[0]["price"]?this.accMul(this.OneattrValue[0]["price"],this.svip_rate):0;var t,a=0,i=Object(o["a"])(this.ManyAttrValue);try{for(i.s();!(t=i.n()).done;){var r=t.value;a=r.price?this.accMul(r.price,this.svip_rate):0,this.$set(r,"svip_price",a)}}catch(l){i.e(l)}finally{i.f()}}else this.attrVal={price:null,cost:null,ot_price:null,stock:null,bar_code:"",weight:null,volume:null}},memberPrice:function(e,t){"售价"==e.title&&(t.svip_price=this.accMul(t.price,this.svip_rate))},accMul:function(e,t){var a=0,i=e.toString(),r=t.toString();try{a+=i.split(".")[1].length}catch(l){}try{a+=r.split(".")[1].length}catch(l){}return Number(i.replace(".",""))*Number(r.replace(".",""))/Math.pow(10,a)},delAttrTable:function(e){this.ManyAttrValue.splice(e,1)},batchAdd:function(){var e,t=Object(o["a"])(this.ManyAttrValue);try{for(t.s();!(e=t.n()).done;){var a=e.value;console.log(this.oneFormBatch[0]),""!=this.oneFormBatch[0].image&&this.$set(a,"image",this.oneFormBatch[0].image),null!=this.oneFormBatch[0].price&&this.$set(a,"price",this.oneFormBatch[0].price),null!=this.oneFormBatch[0].cost&&this.$set(a,"cost",this.oneFormBatch[0].cost),null!=this.oneFormBatch[0].ot_price&&this.$set(a,"ot_price",this.oneFormBatch[0].ot_price),null!=this.oneFormBatch[0].svip_price&&this.$set(a,"svip_price",this.oneFormBatch[0].svip_price),null!=this.oneFormBatch[0].stock&&this.$set(a,"stock",this.oneFormBatch[0].stock),null!=this.oneFormBatch[0].bar_code&&this.$set(a,"bar_code",this.oneFormBatch[0].bar_code),null!=this.oneFormBatch[0].weight&&this.$set(a,"weight",this.oneFormBatch[0].weight),null!=this.oneFormBatch[0].volume&&this.$set(a,"volume",this.oneFormBatch[0].volume),null!=this.oneFormBatch[0].extension_one&&this.$set(a,"extension_one",this.oneFormBatch[0].extension_one),null!=this.oneFormBatch[0].extension_two&&this.$set(a,"extension_two",this.oneFormBatch[0].extension_two)}}catch(i){t.e(i)}finally{t.f()}},addBtn:function(){this.clearAttr(),this.isBtn=!0},offAttrName:function(){this.isBtn=!1},clearAttr:function(){this.formDynamic.attrsName="",this.formDynamic.attrsVal=""},handleRemoveAttr:function(e){this.formValidate.attr.splice(e,1),this.manyFormValidate.splice(e,1)},handleClose:function(e,t){e.splice(t,1)},createAttrName:function(){if(this.formDynamic.attrsName&&this.formDynamic.attrsVal){var e={value:this.formDynamic.attrsName,detail:[this.formDynamic.attrsVal]};this.formValidate.attr.push(e);var t={};this.formValidate.attr=this.formValidate.attr.reduce((function(e,a){return!t[a.value]&&(t[a.value]=e.push(a)),e}),[]),this.clearAttr(),this.isBtn=!1}else this.$message.warning("请添加完整的规格!")},createAttr:function(e,t){if(e){this.formValidate.attr[t].detail.push(e);var a={};this.formValidate.attr[t].detail=this.formValidate.attr[t].detail.reduce((function(e,t){return!a[t]&&(a[t]=e.push(t)),e}),[]),this.formValidate.attr[t].inputVisible=!1}else this.$message.warning("请添加属性")},getInfo:function(){var e=this;this.fullscreenLoading=!0,Object(f["cb"])(this.$route.params.id).then(function(){var t=Object(n["a"])(Object(l["a"])().mark((function t(a){var i;return Object(l["a"])().wrap((function(t){while(1)switch(t.prev=t.next){case 0:i=a.data,e.infoData(i),e.getSpecsLst(i.cate_id);case 3:case"end":return t.stop()}}),t)})));return function(e){return t.apply(this,arguments)}}()).catch((function(t){e.fullscreenLoading=!1,e.$message.error(t.message)}))},infoData:function(e){var t=this;this.deduction_set=-1==e.integral_rate?-1:1,this.formValidate={image:e.image,attrValue:e.attrValue,slider_image:e.slider_image,store_name:e.store_name,store_info:e.store_info,keyword:e.keyword,params:e.params,param_temp_id:e.param_temp_id,brand_id:e.brand_id,cate_id:e.cate_id,mer_cate_id:e.mer_cate_id,unit_name:e.unit_name,sort:e.sort,once_max_count:e.once_max_count||1,once_min_count:e.once_min_count||0,is_good:e.is_good,temp_id:e.temp_id,guarantee_template_id:e.guarantee_template_id?e.guarantee_template_id:"",attr:e.attr,pay_limit:e.pay_limit||0,extension_type:e.extension_type,content:e.content,spec_type:Number(e.spec_type),give_coupon_ids:e.give_coupon_ids,is_gift_bag:e.is_gift_bag,couponData:e.coupon,video_link:e.video_link?e.video_link:"",integral_rate:e.integral_rate,delivery_way:e.delivery_way&&e.delivery_way.length?e.delivery_way.map(String):this.deliveryType,delivery_free:e.delivery_free?e.delivery_free:0,mer_labels:e.mer_labels&&e.mer_labels.length?e.mer_labels.map(Number):[],type:e.type||0,extend:e.extend||[],svip_price_type:e.svip_price_type||0},0!=e.svip_price_type&&(this.attrVal={price:null,cost:null,ot_price:null,svip_price:null,stock:null,bar_code:"",weight:null,volume:null}),0!=this.formValidate.extend.length&&(this.customBtn=1),0===this.formValidate.spec_type?this.OneattrValue=e.attrValue:(this.ManyAttrValue=e.attrValue,this.ManyAttrValue.forEach((function(e){"undefined"!==e.detail&&null!==e.detail&&(t.attrInfo[Object.values(e.detail).sort().join("/")]=e)}))),1===this.formValidate.is_good&&this.checkboxGroup.push("is_good"),this.fullscreenLoading=!1},onClose:function(e){this.modals=!1,this.infoData(e)},handleRemove:function(e){this.formValidate.slider_image.splice(e,1)},modalPicTap:function(e,t,a){var i=this,r=[];this.$modalUpload((function(l){"1"!==e||t||(i.formValidate.image=l[0],i.OneattrValue[0].image=l[0]),"2"!==e||t||l.map((function(e){r.push(e.attachment_src),i.formValidate.slider_image.push(e),i.formValidate.slider_image.length>10&&(i.formValidate.slider_image.length=10)})),"1"===e&&"dan"===t&&(i.OneattrValue[0].image=l[0]),"1"===e&&"duo"===t&&(i.ManyAttrValue[a].image=l[0]),"1"===e&&"pi"===t&&(i.oneFormBatch[0].image=l[0])}),e)},handleSubmitUp:function(){this.currentTab=(Number(this.currentTab)-1).toString()},handleSubmitNest:function(e){var t=this;this.$refs[e].validate((function(e){e&&(t.currentTab=(Number(t.currentTab)+1).toString())}))},handleSubmit:function(e){var t=this;this.$store.dispatch("settings/setEdit",!1),this.onChangeGroup(),1===this.formValidate.spec_type?this.formValidate.attrValue=this.ManyAttrValue:(this.formValidate.attrValue=this.OneattrValue,this.formValidate.attr=[]),this.$refs[e].validate((function(a){if(a){t.fullscreenLoading=!0,t.loading=!0;var i=t.$route.params.id&&!t.$route.query.type;i?Object(f["lb"])(t.$route.params.id,t.formValidate).then(function(){var a=Object(n["a"])(Object(l["a"])().mark((function a(i){return Object(l["a"])().wrap((function(a){while(1)switch(a.prev=a.next){case 0:t.fullscreenLoading=!1,t.$message.success(i.message),t.$router.push({path:t.roterPre+"/product/list"}),t.$refs[e].resetFields(),t.formValidate.slider_image=[],t.loading=!1;case 6:case"end":return a.stop()}}),a)})));return function(e){return a.apply(this,arguments)}}()).catch((function(e){t.fullscreenLoading=!1,t.loading=!1,t.$message.error(e.message)})):Object(f["ab"])(t.formValidate).then(function(){var e=Object(n["a"])(Object(l["a"])().mark((function e(a){return Object(l["a"])().wrap((function(e){while(1)switch(e.prev=e.next){case 0:t.fullscreenLoading=!1,t.$message.success(a.message),t.$router.push({path:t.roterPre+"/product/list"}),t.loading=!1;case 4:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}()).catch((function(e){t.fullscreenLoading=!1,t.loading=!1,t.$message.error(e.message)}))}else{if(!t.formValidate.store_name.trim())return t.$message.warning("基本信息-商品名称不能为空");if(!t.formValidate.unit_name)return t.$message.warning("基本信息-单位不能为空");if(!t.formValidate.cate_id)return t.$message.warning("基本信息-平台商品分类不能为空");if(!t.formValidate.mer_cate_id)return t.$message.warning("基本信息-商户商品分类不能为空");if(!t.formValidate.image)return t.$message.warning("基本信息-商品封面图不能为空");if(t.formValidate.slider_image.length<0)return t.$message.warning("基本信息-商品轮播图不能为空")}}))},handlePreview:function(e){var t=this;this.onChangeGroup(),1===this.formValidate.spec_type?this.formValidate.attrValue=this.ManyAttrValue:(this.formValidate.attrValue=this.OneattrValue,this.formValidate.attr=[]),Object(f["fb"])(this.formValidate).then(function(){var e=Object(n["a"])(Object(l["a"])().mark((function e(a){return Object(l["a"])().wrap((function(e){while(1)switch(e.prev=e.next){case 0:t.previewVisible=!0,t.previewKey=a.data.preview_key;case 2:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}()).catch((function(e){t.$message.error(e.message)}))},validate:function(e,t,a){!1===t&&this.$message.warning(a)},specPicValidate:function(e){for(var t=0;td)a=s[d++],i&&!n.call(o,a)||u.push(e?[a,o[a]]:o[a]);return u}}},8615:function(e,t,a){var i=a("5ca1"),r=a("504c")(!1);i(i.S,"Object",{values:function(e){return r(e)}})},9559:function(e,t,a){},b78c:function(e,t,a){},c33c:function(e,t,a){},c722:function(e,t,a){"use strict";a("b78c")},f099:function(e,t,a){"use strict";a("c33c")}}]); \ No newline at end of file diff --git a/public/mer/js/chunk-80a8cf62.cf20c554.js b/public/mer/js/chunk-80a8cf62.cf20c554.js new file mode 100644 index 00000000..fac4ff54 --- /dev/null +++ b/public/mer/js/chunk-80a8cf62.cf20c554.js @@ -0,0 +1 @@ +(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-80a8cf62"],{"37c8":function(t,e,a){"use strict";a("ecdb")},"41ff":function(t,e,a){"use strict";a.r(e);var l=function(){var t=this,e=t.$createElement,a=t._self._c||e;return a("div",{staticClass:"divBox"},[a("el-card",{staticClass:"box-card"},[a("div",{staticClass:"clearfix",attrs:{slot:"header"},slot:"header"},[a("div",{staticClass:"container"},[a("div",{staticClass:"demo-input-suffix acea-row"},[a("el-form",{attrs:{inline:"",size:"small","label-width":"100px"}},[a("el-form-item",{staticClass:"width100",attrs:{label:"时间选择:"}},[a("el-date-picker",{staticClass:"selWidth",attrs:{"value-format":"yyyy/MM/dd",format:"yyyy/MM/dd",size:"small",type:"daterange",placement:"bottom-end",placeholder:"自定义时间"},on:{change:t.onchangeTime},model:{value:t.timeVal,callback:function(e){t.timeVal=e},expression:"timeVal"}})],1),t._v(" "),a("el-form-item",{attrs:{label:"会员类别:"}},[a("el-select",{staticClass:"selWidth",attrs:{clearable:"",placeholder:"请选择"},on:{change:function(e){return t.getList()}},model:{value:t.tableFrom.svip_type,callback:function(e){t.$set(t.tableFrom,"svip_type",e)},expression:"tableFrom.svip_type"}},[a("el-option",{attrs:{label:"试用期",value:"1"}}),t._v(" "),a("el-option",{attrs:{label:"有限期",value:"2"}}),t._v(" "),a("el-option",{attrs:{label:"用久期",value:"3"}})],1)],1),t._v(" "),a("el-form-item",{attrs:{label:"支付方式:"}},[a("el-select",{staticClass:"selWidth",attrs:{clearable:"",placeholder:"请选择"},on:{change:function(e){return t.getList()}},model:{value:t.tableFrom.pay_type,callback:function(e){t.$set(t.tableFrom,"pay_type",e)},expression:"tableFrom.pay_type"}},[a("el-option",{attrs:{label:"微信",value:"weixin"}}),t._v(" "),a("el-option",{attrs:{label:"支付宝",value:"alipay"}}),t._v(" "),a("el-option",{attrs:{label:"小程序",value:"routine"}})],1)],1),t._v(" "),a("el-form-item",{attrs:{label:"会员卡名称:"}},[a("el-input",{staticClass:"selWidth",attrs:{placeholder:"请输入会员卡名称"},nativeOn:{keyup:function(e){return!e.type.indexOf("key")&&t._k(e.keyCode,"enter",13,e.key,"Enter")?null:t.getList()}},model:{value:t.tableFrom.title,callback:function(e){t.$set(t.tableFrom,"title",e)},expression:"tableFrom.title"}})],1),t._v(" "),a("el-form-item",{attrs:{label:"搜索:"}},[a("el-input",{staticClass:"selWidth",attrs:{placeholder:"请输入用户名称搜索"},nativeOn:{keyup:function(e){return!e.type.indexOf("key")&&t._k(e.keyCode,"enter",13,e.key,"Enter")?null:t.getList(1)}},model:{value:t.tableFrom.keyword,callback:function(e){t.$set(t.tableFrom,"keyword",e)},expression:"tableFrom.keyword"}})],1),t._v(" "),a("el-button",{attrs:{size:"small",type:"primary"},on:{click:t.getList}},[t._v("搜索")])],1)],1)])]),t._v(" "),a("el-table",{directives:[{name:"loading",rawName:"v-loading",value:t.listLoading,expression:"listLoading"}],staticStyle:{width:"100%"},attrs:{data:t.tableData.data,size:"small"}},[a("el-table-column",{attrs:{prop:"order_sn",label:"订单号","min-width":"60"}}),t._v(" "),a("el-table-column",{attrs:{prop:"user.nickname",label:"用户名","min-width":"60"}}),t._v(" "),a("el-table-column",{attrs:{prop:"user.phone",label:"手机号码","min-width":"60"}}),t._v(" "),a("el-table-column",{attrs:{prop:"title",label:"会员卡名称","min-width":"60"}}),t._v(" "),a("el-table-column",{attrs:{prop:"pay_price",label:"支付金额(元)","min-width":"60"}}),t._v(" "),a("el-table-column",{attrs:{prop:"price",label:"支付方式","min-width":"60"},scopedSlots:t._u([{key:"default",fn:function(t){return[a("span")]}}])}),t._v(" "),a("el-table-column",{attrs:{prop:"create_time",label:"购买时间","min-width":"60"}}),t._v(" "),a("el-table-column",{attrs:{prop:"user.svip_endtime",label:"到期时间","min-width":"60"}})],1),t._v(" "),a("div",{staticClass:"block"},[a("el-pagination",{attrs:{"page-sizes":[20,40,60,80],"page-size":t.tableFrom.limit,"current-page":t.tableFrom.page,layout:"total, sizes, prev, pager, next, jumper",total:t.tableData.total},on:{"size-change":t.handleSizeChange,"current-change":t.pageChange}})],1)],1)],1)},i=[],s=a("c24f"),n={name:"LabelList",data:function(){return{listLoading:!0,timeVal:[],tableData:{data:[],total:0},tableFrom:{page:1,limit:20}}},mounted:function(){this.getList("")},methods:{onchangeTime:function(t){this.timeVal=t,this.tableFrom.date=t?this.timeVal.join("-"):"",this.tableFrom.page=1,this.getList(1)},getList:function(t){var e=this;this.listLoading=!0,this.tableFrom.page=t||this.tableFrom.page,Object(s["t"])(this.tableFrom).then((function(t){e.tableData.data=t.data.list,e.tableData.total=t.data.count,e.listLoading=!1})).catch((function(t){e.listLoading=!1,e.$message.error(t.message)}))},pageChange:function(t){this.tableFrom.page=t,this.getList("")},handleSizeChange:function(t){this.tableFrom.limit=t,this.getList("")}}},o=n,r=(a("37c8"),a("2877")),c=Object(r["a"])(o,l,i,!1,null,"5a5d12a8",null);e["default"]=c.exports},ecdb:function(t,e,a){}}]); \ No newline at end of file diff --git a/public/mer/js/chunk-82bee4a8.64ede4da.js b/public/mer/js/chunk-82bee4a8.64ede4da.js new file mode 100644 index 00000000..a0cc87ce --- /dev/null +++ b/public/mer/js/chunk-82bee4a8.64ede4da.js @@ -0,0 +1 @@ +(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-82bee4a8","chunk-0d2c1415","chunk-2d0da983"],{"00da":function(t,i,e){"use strict";e.r(i);var n=function(){var t=this,i=t.$createElement,e=t._self._c||i;return e("div",{staticClass:"mobile-config pro"},[t._l(t.rCom,(function(i,n){return e("div",{key:n},[e(i.components.name,{key:n,ref:"childData",refInFor:!0,tag:"component",attrs:{configObj:t.configObj,configNme:i.configNme,index:t.activeIndex,num:i.num},on:{getConfig:t.getConfig}})],1)})),t._v(" "),e("rightBtn",{attrs:{activeIndex:t.activeIndex,configObj:t.configObj}})],2)},a=[],o=e("5530"),s=e("fd0b"),c=(e("2f62"),e("befa")),l={name:"c_home_topic",cname:"专场",componentsName:"home_topic",props:{activeIndex:{type:null},num:{type:null},index:{type:null}},components:Object(o["a"])(Object(o["a"])({},s["a"]),{},{rightBtn:c["a"]}),data:function(){return{configObj:{},rCom:[{components:s["a"].c_set_up,configNme:"setUp"}],space:[{components:s["a"].c_menu_list,configNme:"menuConfig"}],space2:[],oneStyle:[{components:s["a"].c_txt_tab,configNme:"bgStyle"},{components:s["a"].c_txt_tab,configNme:"conStyle"},{components:s["a"].c_is_show,configNme:"colorShow"},{components:s["a"].c_bg_color,configNme:"bgColor"},{components:s["a"].c_slider,configNme:"prConfig"},{components:s["a"].c_slider,configNme:"mbConfig"}],twoStyle:[{components:s["a"].c_txt_tab,configNme:"bgStyle"},{components:s["a"].c_txt_tab,configNme:"conStyle"},{components:s["a"].c_is_show,configNme:"colorShow"},{components:s["a"].c_txt_tab,configNme:"pointerStyle"},{components:s["a"].c_txt_tab,configNme:"txtStyle"},{components:s["a"].c_bg_color,configNme:"bgColor"},{components:s["a"].c_bg_color,configNme:"pointerColor"},{components:s["a"].c_slider,configNme:"prConfig"},{components:s["a"].c_slider,configNme:"mbConfig"}],type:0,setUp:0,count:1}},watch:{num:function(t){var i=JSON.parse(JSON.stringify(this.$store.state.mobildConfig.defaultArray[t]));this.configObj=i},configObj:{handler:function(t,i){this.$store.commit("mobildConfig/UPDATEARR",{num:this.num,val:t})},deep:!0},"configObj.menuConfig.list":{handler:function(t,i){this.count=t.length},deep:!0},"configObj.setUp.tabVal":{handler:function(t,i){this.setUp=t;var e=[this.rCom[0]];if(0==t){var n=[{components:s["a"].c_menu_list,configNme:"menuConfig"}];this.rCom=e.concat(n)}else this.count>1?this.rCom=e.concat(this.twoStyle):this.rCom=e.concat(this.oneStyle)},deep:!0}},mounted:function(){var t=this;this.$nextTick((function(){var i=JSON.parse(JSON.stringify(t.$store.state.mobildConfig.defaultArray[t.num]));t.configObj=i}))},methods:{getConfig:function(t){}}},r=l,f=e("2877"),d=Object(f["a"])(r,n,a,!1,null,"1984c226",null);i["default"]=d.exports},"033f":function(t,i,e){},"04bc":function(t,i,e){"use strict";e("0eb7")},"051f":function(t,i,e){"use strict";e.r(i);var n=function(){var t=this,i=t.$createElement,e=t._self._c||i;return e("div",{staticClass:"box"},[2!==this.$route.query.type?e("div",{staticClass:"c_row-item"},[e("el-col",{staticClass:"label",attrs:{span:4}},[t._v("\n 模板名称\n ")]),t._v(" "),e("el-col",{staticClass:"slider-box",attrs:{span:19}},[e("el-input",{attrs:{placeholder:"选填不超过15个字",maxlength:"15"},on:{change:t.changName},model:{value:t.name,callback:function(i){t.name=i},expression:"name"}})],1)],1):t._e(),t._v(" "),e("div",{staticClass:"c_row-item"},[e("el-col",{staticClass:"label",attrs:{span:4}},[t._v("\n 页面标题\n ")]),t._v(" "),e("el-col",{staticClass:"slider-box",attrs:{span:19}},[e("el-input",{attrs:{placeholder:"选填不超过30个字",maxlength:"30"},on:{change:t.changVal},model:{value:t.value,callback:function(i){t.value=i},expression:"value"}})],1)],1),t._v(" "),e("div",[e("el-dialog",{attrs:{visible:t.modalPic,width:"950px",title:"上传背景图"},on:{"update:visible":function(i){t.modalPic=i}}},[t.modalPic?e("uploadPictures",{attrs:{isChoice:t.isChoice,gridBtn:t.gridBtn,gridPic:t.gridPic},on:{getPic:t.getPic}}):t._e()],1)],1)])},a=[],o=(e("2f62"),e("b5b8")),s={name:"pageTitle",components:{uploadPictures:o["default"]},data:function(){return{value:"",name:"",isShow:!0,picList:["icondantu","iconpingpu","iconlashen"],bgColor:!1,bgPic:!1,tabVal:"0",colorPicker:"#f5f5f5",modalPic:!1,isChoice:"单选",gridBtn:{xl:4,lg:8,md:8,sm:8,xs:8},gridPic:{xl:6,lg:8,md:12,sm:12,xs:12},bgPicUrl:""}},created:function(){var t=this.$store.state.mobildConfig;this.value=t.pageTitle,this.name=t.pageName,this.isShow=!!t.pageShow,this.bgColor=!!t.pageColor,this.bgPic=!!t.pagePic,this.colorPicker=t.pageColorPicker,this.tabVal=t.pageTabVal,this.bgPicUrl=t.pagePicUrl},methods:{modalPicTap:function(){var t=this;this.$modalUpload((function(i){t.bgPicUrl=i[0],t.$store.commit("mobildConfig/UPPICURL",t.bgPicUrl)}))},bindDelete:function(){this.bgPicUrl=""},getPic:function(t){var i=this;this.$nextTick((function(){i.bgPicUrl=t.att_dir,i.modalPic=!1,i.$store.commit("mobildConfig/UPPICURL",t.att_dir)}))},colorPickerTap:function(t){this.$store.commit("mobildConfig/UPPICKER",t)},radioTap:function(t){this.$store.commit("mobildConfig/UPRADIO",t)},changVal:function(t){this.$store.commit("mobildConfig/UPTITLE",t)},changName:function(t){this.$store.commit("mobildConfig/UPNAME",t)},changeState:function(t){this.$store.commit("mobildConfig/UPSHOW",t)},bgColorTap:function(t){this.$store.commit("mobildConfig/UPCOLOR",t)},bgPicTap:function(t){this.$store.commit("mobildConfig/UPPIC",t)}}},c=s,l=(e("5025"),e("2877")),r=Object(l["a"])(c,n,a,!1,null,"6a6281b6",null);i["default"]=r.exports},"0a0b":function(t,i,e){},"0a90":function(t,i,e){"use strict";e("2c2b")},"0d02":function(t,i,e){},"0d27":function(t,i,e){},"0eb7":function(t,i,e){},1224:function(t,i,e){"use strict";e("df2b")},"144d":function(t,i,e){"use strict";e.r(i);var n=function(){var t=this,i=t.$createElement,e=t._self._c||i;return e("div",{staticClass:"hot_imgs"},[t.configData.title?e("div",{staticClass:"title"},[t._v("\n "+t._s(t.configData.title)+"\n ")]):t._e(),t._v(" "),e("div",{staticClass:"list-box"},[e("draggable",{staticClass:"dragArea list-group",attrs:{list:t.configData.list,group:"peoples",handle:".move-icon"}},t._l(t.configData.list,(function(i,n){return e("div",{key:n,staticClass:"item"},[e("div",{staticClass:"info"},t._l(i.info,(function(a,o){return e("div",{key:o,staticClass:"info-item"},[e("span",[t._v(t._s(a.title))]),t._v(" "),e("div",{staticClass:"input-box",on:{click:function(e){return t.getLink(n,o,i.info)}}},[t.configData.isCube?e("el-input",{attrs:{readonly:o==i.info.length-1,placeholder:a.tips,maxlength:a.max},on:{blur:t.onBlur},model:{value:a.value,callback:function(i){t.$set(a,"value",i)},expression:"infos.value"}},[o==i.info.length-1?e("el-button",{attrs:{slot:"append",icon:"el-icon-arrow-right"},slot:"append"}):t._e()],1):e("el-input",{attrs:{readonly:o==i.info.length-1,placeholder:a.tips,maxlength:a.max},model:{value:a.value,callback:function(i){t.$set(a,"value",i)},expression:"infos.value"}},[o==i.info.length-1?e("el-button",{attrs:{slot:"append",icon:"el-icon-arrow-right"},slot:"append"}):t._e()],1)],1)])})),0)])})),0),t._v(" "),e("div",[e("el-dialog",{attrs:{visible:t.modalPic,width:"950px",title:"上传图片"},on:{"update:visible":function(i){t.modalPic=i}}},[t.modalPic?e("uploadPictures",{attrs:{isChoice:t.isChoice,gridBtn:t.gridBtn,gridPic:t.gridPic},on:{getPic:t.getPic}}):t._e()],1)],1)],1),t._v(" "),t.configData.list?[t.configData.list.length0?e("div",{staticClass:"list-wrapper itemA"},t._l(t.list,(function(i,n){return e("div",{staticClass:"item",class:t.conStyle?"":"itemOn",attrs:{index:n}},[e("div",{staticClass:"img-box"},[i.image?e("img",{attrs:{src:i.image,alt:""}}):e("div",{staticClass:"empty-box"},[e("span",{staticClass:"iconfont-diy icontupian"})])]),t._v(" "),e("div",{staticClass:"info"},[e("div",{staticClass:"hd"},[t.titleShow?e("div",{staticClass:"title line2"},[t._v(t._s(i.store_name))]):t._e(),t._v(" "),e("div",{staticClass:"text"},[e("div",{staticClass:"label",style:{background:t.labelColor}},[t._v("官方旗舰店")]),t._v(" "),i.couponId&&i.couponId.length&&t.couponShow?e("div",{staticClass:"coupon",style:"border:1px solid "+t.labelColor+";color:"+t.labelColor},[t._v("领券")]):t._e(),t._v(" "),e("div",{staticClass:"ship"},[t._v("包邮")])])]),t._v(" "),e("div",{staticClass:"price",style:{color:t.fontColor}},[t.priceShow?e("div",{staticClass:"num"},[t._v("\n ¥"),e("span",[t._v(t._s(i.price))])]):t._e(),t._v(" "),t.opriceShow?e("div",{staticClass:"old-price"},[t._v("¥"+t._s(i.ot_price))]):t._e()])])])})),0):e("div",{staticClass:"list-wrapper itemA"},[e("div",{staticClass:"item",class:t.conStyle?"":"itemOn"},[t._m(0),t._v(" "),e("div",{staticClass:"info"},[e("div",{staticClass:"hd"},[t.titleShow?e("div",{staticClass:"title line2"},[t._v("商品名称")]):t._e()]),t._v(" "),e("div",{staticClass:"text"},[e("div",{staticClass:"label",style:{background:t.labelColor}},[t._v("官方旗舰店")]),t._v(" "),t.couponShow?e("div",{staticClass:"coupon",style:"border:1px solid "+t.labelColor+";color:"+t.labelColor},[t._v("领券")]):t._e(),t._v(" "),e("div",{staticClass:"ship"},[t._v("包邮")])]),t._v(" "),e("div",{staticClass:"price",style:{color:t.fontColor}},[t.priceShow?e("div",{staticClass:"num"},[t._v("\n ¥"),e("span",[t._v("199")])]):t._e(),t._v(" "),t.opriceShow?e("div",{staticClass:"old-price"},[t._v("¥399")]):t._e()])])]),t._v(" "),e("div",{staticClass:"item",class:t.conStyle?"":"itemOn"},[t._m(1),t._v(" "),e("div",{staticClass:"info"},[e("div",{staticClass:"hd"},[t.titleShow?e("div",{staticClass:"title line2"},[t._v("商品名称")]):t._e()]),t._v(" "),e("div",{staticClass:"text"},[e("div",{staticClass:"label",style:{background:t.labelColor}},[t._v("官方旗舰店")]),t._v(" "),t.couponShow?e("div",{staticClass:"coupon",style:"border:1px solid "+t.labelColor+";color:"+t.labelColor},[t._v("领券")]):t._e(),t._v(" "),e("div",{staticClass:"ship"},[t._v("包邮")])]),t._v(" "),e("div",{staticClass:"price",style:{color:t.fontColor}},[t.priceShow?e("div",{staticClass:"num"},[t._v("\n ¥"),e("span",[t._v("199")])]):t._e(),t._v(" "),t.opriceShow?e("div",{staticClass:"old-price"},[t._v("¥399")]):t._e()])])])])]:t._e(),t._v(" "),1==t.itemStyle?[t.list.length>0?e("div",{staticClass:"list-wrapper itemC"},t._l(t.list,(function(i,n){return e("div",{staticClass:"item",class:t.conStyle?"":"itemOn",attrs:{index:n}},[e("div",{staticClass:"img-box"},[i.image?e("img",{attrs:{src:i.image,alt:""}}):e("div",{staticClass:"empty-box"},[e("span",{staticClass:"iconfont-diy icontupian"})])]),t._v(" "),e("div",{staticClass:"info"},[e("div",{staticClass:"hd"},[t.titleShow?e("div",{staticClass:"title line2"},[t._v(t._s(i.store_name))]):t._e()]),t._v(" "),e("div",{staticClass:"price",style:{color:t.fontColor}},[t.priceShow?e("div",{staticClass:"num"},[t._v("\n ¥"),e("span",[t._v(t._s(i.price))])]):t._e()]),t._v(" "),e("div",{staticClass:"text"},[0==n?e("div",{staticClass:"label",style:{background:t.labelColor}},[t._v("官方旗舰店")]):t._e(),t._v(" "),i.couponId&&i.couponId.length&&t.couponShow?e("div",{staticClass:"coupon",class:t.priceShow?"":"on",style:"border:1px solid "+t.labelColor+";color:"+t.labelColor},[t._v("领券")]):t._e()])])])})),0):e("div",{staticClass:"list-wrapper"},[e("div",{staticClass:"item",class:t.conStyle?"":"itemOn"},[t._m(2),t._v(" "),e("div",{staticClass:"info"},[e("div",{staticClass:"hd"},[t.titleShow?e("div",{staticClass:"title line2"},[t._v("商品名称")]):t._e()]),t._v(" "),e("div",{staticClass:"price",style:{color:t.fontColor}},[t.priceShow?e("div",{staticClass:"num"},[t._v("\n ¥"),e("span",[t._v("66.66")])]):t._e()]),t._v(" "),e("div",{staticClass:"text"},[0==t.index?e("div",{staticClass:"label",style:{background:t.labelColor}},[t._v("官方旗舰店")]):t._e(),t._v(" "),t.couponShow?e("div",{staticClass:"coupon",style:"border:1px solid "+t.labelColor+";color:"+t.labelColor},[t._v("领券")]):t._e()])])]),t._v(" "),e("div",{staticClass:"item",class:t.conStyle?"":"itemOn"},[t._m(3),t._v(" "),e("div",{staticClass:"info"},[e("div",{staticClass:"hd"},[t.titleShow?e("div",{staticClass:"title line2"},[t._v("商品名称")]):t._e()]),t._v(" "),e("div",{staticClass:"price",style:{color:t.fontColor}},[t.priceShow?e("div",{staticClass:"num"},[t._v("\n ¥"),e("span",[t._v("66.66")])]):t._e()]),t._v(" "),e("div",{staticClass:"text"},[0==t.index?e("div",{staticClass:"label",style:{background:t.labelColor}},[t._v("官方旗舰店")]):t._e(),t._v(" "),t.couponShow?e("div",{staticClass:"coupon",style:"border:1px solid "+t.labelColor+";color:"+t.labelColor},[t._v("领券")]):t._e()])])])])]:t._e(),t._v(" "),2==t.itemStyle?[t.list.length>0?e("div",{staticClass:"list-wrapper itemB"},t._l(t.list,(function(i,n){return e("div",{staticClass:"item",class:t.conStyle?"":"itemOn",attrs:{index:n}},[e("div",{staticClass:"img-box"},[i.image?e("img",{attrs:{src:i.image,alt:""}}):e("div",{staticClass:"empty-box"},[e("span",{staticClass:"iconfont-diy icontupian"})])]),t._v(" "),e("div",{staticClass:"info"},[e("div",{staticClass:"hd"},[t.titleShow?e("div",{staticClass:"title line2"},[t._v(t._s(i.store_name))]):t._e()]),t._v(" "),e("div",{staticClass:"price",style:{color:t.fontColor}},[t.priceShow?e("div",{staticClass:"num"},[t._v("\n ¥"),e("span",[t._v(t._s(i.price))])]):t._e(),t._v(" "),t.opriceShow?e("div",{staticClass:"old-price"},[t._v("¥"+t._s(i.ot_price))]):t._e()])])])})),0):e("div",{staticClass:"list-wrapper itemB"},[e("div",{staticClass:"item",class:t.conStyle?"":"itemOn"},[t._m(4),t._v(" "),e("div",{staticClass:"info"},[e("div",{staticClass:"hd"},[t.titleShow?e("div",{staticClass:"title line2"},[t._v("商品名称")]):t._e()]),t._v(" "),e("div",{staticClass:"price",style:{color:t.fontColor}},[t.priceShow?e("div",{staticClass:"num"},[t._v("\n ¥"),e("span",[t._v("66.66")])]):t._e(),t._v(" "),t.opriceShow?e("div",{staticClass:"old-price"},[t._v("¥99.99")]):t._e()])])]),t._v(" "),e("div",{staticClass:"item",class:t.conStyle?"":"itemOn"},[t._m(5),t._v(" "),e("div",{staticClass:"info"},[e("div",{staticClass:"hd"},[t.titleShow?e("div",{staticClass:"title line2"},[t._v("商品名称")]):t._e()]),t._v(" "),e("div",{staticClass:"price",style:{color:t.fontColor}},[t.priceShow?e("div",{staticClass:"num"},[t._v("\n ¥"),e("span",[t._v("66.66")])]):t._e(),t._v(" "),t.opriceShow?e("div",{staticClass:"old-price"},[t._v("¥99.99")]):t._e()])])])])]:t._e(),t._v(" "),3==t.itemStyle?[t.list.length>0?e("div",{staticClass:"listBig"},t._l(t.list,(function(i,n){return e("div",{key:n,staticClass:"itemBig",class:t.conStyle?"":"itemOn"},[e("div",{staticClass:"img-box"},[i.image?e("img",{attrs:{src:i.image,alt:""}}):e("div",{staticClass:"empty-box"},[e("span",{staticClass:"iconfont-diy icontupian"})])]),t._v(" "),e("div",{staticClass:"name line2"},[t.titleShow?e("span",[t._v(t._s(i.store_name))]):t._e()]),t._v(" "),e("div",{staticClass:"price",style:{color:t.fontColor}},[t.priceShow?e("span",[t._v("¥"),e("span",{staticClass:"num"},[t._v(t._s(i.price))])]):t._e(),t.opriceShow?e("span",{staticClass:"old-price"},[t._v("¥"+t._s(i.ot_price))]):t._e()])])})),0):e("div",{staticClass:"listBig"},[e("div",{staticClass:"itemBig",class:t.conStyle?"":"itemOn"},[t._m(6),t._v(" "),e("div",{staticClass:"name line2"},[t.titleShow?e("span",[t._v("商品名称")]):t._e()]),t._v(" "),e("div",{staticClass:"price",style:{color:t.fontColor}},[t.priceShow?e("span",[t._v("¥"),e("span",{staticClass:"num"},[t._v("66.66")])]):t._e(),t.opriceShow?e("span",{staticClass:"old-price"},[t._v("¥99.99")]):t._e()])]),t._v(" "),e("div",{staticClass:"itemBig",class:t.conStyle?"":"itemOn"},[t._m(7),t._v(" "),e("div",{staticClass:"name line2"},[t.titleShow?e("span",[t._v("商品名称")]):t._e()]),t._v(" "),e("div",{staticClass:"price",style:{color:t.fontColor}},[t.priceShow?e("span",[t._v("¥"),e("span",{staticClass:"num"},[t._v("66.66")])]):t._e(),t.opriceShow?e("span",{staticClass:"old-price"},[t._v("¥99.99")]):t._e()])]),t._v(" "),e("div",{staticClass:"itemBig",class:t.conStyle?"":"itemOn"},[t._m(8),t._v(" "),e("div",{staticClass:"name line2"},[t.titleShow?e("span",[t._v("商品名称")]):t._e()]),t._v(" "),e("div",{staticClass:"price",style:{color:t.fontColor}},[t.priceShow?e("span",[t._v("¥"),e("span",{staticClass:"num"},[t._v("66.66")])]):t._e(),t.opriceShow?e("span",{staticClass:"old-price"},[t._v("¥99.99")]):t._e()])])])]:t._e()],2)])])},a=[function(){var t=this,i=t.$createElement,e=t._self._c||i;return e("div",{staticClass:"img-box"},[e("div",{staticClass:"empty-box"},[e("span",{staticClass:"iconfont-diy icontupian"})])])},function(){var t=this,i=t.$createElement,e=t._self._c||i;return e("div",{staticClass:"img-box"},[e("div",{staticClass:"empty-box"},[e("span",{staticClass:"iconfont-diy icontupian"})])])},function(){var t=this,i=t.$createElement,e=t._self._c||i;return e("div",{staticClass:"img-box"},[e("div",{staticClass:"empty-box"},[e("span",{staticClass:"iconfont-diy icontupian"})])])},function(){var t=this,i=t.$createElement,e=t._self._c||i;return e("div",{staticClass:"img-box"},[e("div",{staticClass:"empty-box"},[e("span",{staticClass:"iconfont-diy icontupian"})])])},function(){var t=this,i=t.$createElement,e=t._self._c||i;return e("div",{staticClass:"img-box"},[e("div",{staticClass:"empty-box"},[e("span",{staticClass:"iconfont-diy icontupian"})])])},function(){var t=this,i=t.$createElement,e=t._self._c||i;return e("div",{staticClass:"img-box"},[e("div",{staticClass:"empty-box"},[e("span",{staticClass:"iconfont-diy icontupian"})])])},function(){var t=this,i=t.$createElement,e=t._self._c||i;return e("div",{staticClass:"img-box"},[e("div",{staticClass:"empty-box"},[e("span",{staticClass:"iconfont-diy icontupian"})])])},function(){var t=this,i=t.$createElement,e=t._self._c||i;return e("div",{staticClass:"img-box"},[e("div",{staticClass:"empty-box"},[e("span",{staticClass:"iconfont-diy icontupian"})])])},function(){var t=this,i=t.$createElement,e=t._self._c||i;return e("div",{staticClass:"img-box"},[e("div",{staticClass:"empty-box"},[e("span",{staticClass:"iconfont-diy icontupian"})])])}],o=e("5530"),s=e("2f62"),c={name:"home_goods_list",cname:"商品列表",configName:"c_home_goods_list",icon:"iconshangpinliebiao2",type:0,defaultName:"goodList",props:{index:{type:null},num:{type:null}},computed:Object(o["a"])({},Object(s["d"])("mobildConfig",["defaultArray"])),watch:{pageData:{handler:function(t,i){this.setConfig(t)},deep:!0},num:{handler:function(t,i){var e=this.$store.state.mobildConfig.defaultArray[t];this.setConfig(e)},deep:!0},defaultArray:{handler:function(t,i){var e=this.$store.state.mobildConfig.defaultArray[this.num];this.setConfig(e)},deep:!0}},data:function(){return{defaultConfig:{name:"goodList",timestamp:this.num,setUp:{tabVal:"0"},tabConfig:{title:"选择模板",tabVal:0,type:1,tabList:[{name:"自动选择",icon:"iconzidongxuanze"},{name:"手动选择",icon:"iconshoudongxuanze"}]},titleShow:{title:"是否显示名称",val:!0},opriceShow:{title:"是否显示原价",val:!0},priceShow:{title:"是否显示价格",val:!0},couponShow:{title:"是否显示优惠券",val:!0},selectConfig:{title:"商品分类",activeValue:[],list:[{value:"",label:""},{value:"",label:""}]},goodsSort:{title:"商品排序",name:"goodsSort",type:0,list:[{val:"综合",icon:"iconComm_whole"},{val:"销量",icon:"iconComm_number"},{val:"价格",icon:"iconComm_Price"}]},numConfig:{val:6},themeColor:{title:"背景颜色",name:"themeColor",default:[{item:"#fff"}],color:[{item:"#fff"}]},fontColor:{title:"价格颜色",name:"fontColor",default:[{item:"#e93323"}],color:[{item:"#e93323"}]},labelColor:{title:"活动标签",name:"labelColor",default:[{item:"#e93323"}],color:[{item:"#e93323"}]},itemStyle:{title:"显示类型",name:"itemSstyle",type:0,list:[{val:"单列",icon:"iconzuoyoutuwen"},{val:"两列",icon:"iconlianglie"},{val:"三列",icon:"iconsanlie"},{val:"大图",icon:"icondanlie"}]},bgStyle:{title:"背景样式",name:"bgStyle",type:0,list:[{val:"直角",icon:"iconPic_square"},{val:"圆角",icon:"iconPic_fillet"}]},conStyle:{title:"内容样式",name:"conStyle",type:1,list:[{val:"直角",icon:"iconPic_square"},{val:"圆角",icon:"iconPic_fillet"}]},mbConfig:{title:"页面间距",val:0,min:0},productList:{title:"商品列表",list:[]},goodsList:{max:20,list:[]}},navlist:[],imgStyle:"",txtColor:"",slider:"",tabCur:0,list:[],activeColor:"",fontColor:"",labelColor:"",pageData:{},itemStyle:0,titleShow:!0,opriceShow:!0,priceShow:!0,couponShow:!0,bgStyle:0,conStyle:1}},mounted:function(){var t=this;this.$nextTick((function(){t.pageData=t.$store.state.mobildConfig.defaultArray[t.num],t.setConfig(t.pageData)}))},methods:{setConfig:function(t){t&&t.mbConfig&&(this.itemStyle=t.itemStyle.type||0,this.activeColor=t.themeColor.color[0].item,this.fontColor=t.fontColor.color[0].item,this.labelColor=t.labelColor.color[0].item,this.slider=t.mbConfig.val,this.titleShow=t.titleShow.val,this.opriceShow=t.opriceShow.val,this.priceShow=t.priceShow.val,this.couponShow=t.couponShow.val,this.bgStyle=t.bgStyle.type,this.conStyle=t.conStyle.type,t.tabConfig.tabVal?this.list=t.goodsList.list||[]:this.list=t.productList.list||[])}}},l=c,r=(e("c2c4"),e("2877")),f=Object(r["a"])(l,n,a,!1,null,"7f3ae610",null);i["default"]=f.exports},"1c62":function(t,i,e){"use strict";e("0d27")},"1c84":function(t,i,e){},"1c8d":function(t,i,e){"use strict";e.r(i);var n=function(){var t=this,i=t.$createElement,e=t._self._c||i;return e("div",{staticClass:"mobile-page",style:{marginTop:t.mTOP+"px"}},[t.bgColor.length>0&&t.isShow?e("div",{staticClass:"bg",style:{background:"linear-gradient(180deg,"+t.bgColor[0].item+" 0%,"+t.bgColor[1].item+" 100%)"}}):t._e(),t._v(" "),e("div",{staticClass:"banner",class:t.bgColor.length>0&&t.isShow?"on":"",style:{paddingLeft:t.edge+"px",paddingRight:t.edge+"px"}},[t.imgSrc?e("img",{class:{doc:t.imgStyle},attrs:{src:t.imgSrc,alt:""}}):e("div",{staticClass:"empty-box",class:{on:t.imgStyle}},[e("span",{staticClass:"iconfont-diy icontupian"})])]),t._v(" "),e("div",[0==t.docStyle?e("div",{staticClass:"dot",style:{paddingLeft:t.edge+10+"px",paddingRight:t.edge+10+"px",justifyContent:1===t.dotPosition?"center":2===t.dotPosition?"flex-end":"flex-start"}},[e("div",{staticClass:"dot-item",staticStyle:{background:"#fff"}}),t._v(" "),e("div",{staticClass:"dot-item"}),t._v(" "),e("div",{staticClass:"dot-item"})]):t._e(),t._v(" "),1==t.docStyle?e("div",{staticClass:"dot line-dot",style:{paddingLeft:t.edge+10+"px",paddingRight:t.edge+10+"px",justifyContent:1===t.dotPosition?"center":2===t.dotPosition?"flex-end":"flex-start"}},[e("div",{staticClass:"line_dot-item",staticStyle:{background:"#fff"}}),t._v(" "),e("div",{staticClass:"line_dot-item"}),t._v(" "),e("div",{staticClass:"line_dot-item"})]):t._e(),t._v(" "),2==t.docStyle?e("div",{staticClass:"dot number",style:{paddingLeft:t.edge+10+"px",paddingRight:t.edge+10+"px",justifyContent:1===t.dotPosition?"center":2===t.dotPosition?"flex-end":"flex-start"}}):t._e()])])},a=[],o=e("5530"),s=e("2f62"),c={name:"banner",cname:"轮播图",icon:"iconlunbotu",defaultName:"swiperBg",configName:"c_banner",type:0,props:{index:{type:null},num:{type:null}},computed:Object(o["a"])({},Object(s["d"])("mobildConfig",["defaultArray"])),watch:{pageData:{handler:function(t,i){this.setConfig(t)},deep:!0},num:{handler:function(t,i){var e=this.$store.state.mobildConfig.defaultArray[t];this.setConfig(e)},deep:!0},defaultArray:{handler:function(t,i){var e=this.$store.state.mobildConfig.defaultArray[this.num];this.setConfig(e)},deep:!0}},data:function(){return{defaultConfig:{name:"swiperBg",timestamp:this.num,setUp:{tabVal:"0"},swiperConfig:{title:"最多可添加10张图片,建议宽度750px;鼠标拖拽左侧圆点可调整图片 顺序",maxList:10,list:[{img:"",info:[{title:"标题",value:"今日推荐",tips:"选填,不超过4个字",max:4},{title:"链接",value:"",tips:"请输入链接",max:100}]}]},isShow:{title:"是否显示背景色",val:!0},bgColor:{title:"背景颜色(渐变)",default:[{item:"#FFFFFF"},{item:"#FFFFFF"}],color:[{item:"#FFFFFF"},{item:"#FFFFFF"}]},lrConfig:{title:"左右边距",val:10,min:0},mbConfig:{title:"页面间距",val:0,min:0},docConfig:{cname:"swiper",title:"指示器样式",type:0,list:[{val:"圆形",icon:"iconDot"},{val:"直线",icon:"iconSquarepoint"},{val:"无指示器",icon:"iconjinyong"}]},txtStyle:{title:"指示器位置",type:0,list:[{val:"居左",icon:"icondoc_left"},{val:"居中",icon:"icondoc_center"},{val:"居右",icon:"icondoc_right"}]},imgConfig:{cname:"docStyle",title:"轮播图样式",type:0,list:[{val:"圆角",icon:"iconPic_fillet"},{val:"直角",icon:"iconPic_square"}]}},pageData:{},bgColor:[],mTOP:0,edge:0,imgStyle:0,imgSrc:"",docStyle:0,dotPosition:0,isShow:!0}},mounted:function(){var t=this;this.$nextTick((function(){t.pageData=t.$store.state.mobildConfig.defaultArray[t.num],t.setConfig(t.pageData)}))},methods:{setConfig:function(t){t&&t.mbConfig&&(this.isShow=t.isShow.val,this.bgColor=t.bgColor.color,this.mTOP=t.mbConfig.val,this.edge=t.lrConfig.val,this.imgStyle=t.imgConfig.type,this.imgSrc=t.swiperConfig.list.length?t.swiperConfig.list[0].img:"",this.docStyle=t.docConfig.type,this.dotPosition=t.txtStyle.type)}}},l=c,r=(e("26e2"),e("2877")),f=Object(r["a"])(l,n,a,!1,null,"651c0c53",null);i["default"]=f.exports},"1d95":function(t,i,e){"use strict";e("8107")},2174:function(t,i,e){"use strict";e.r(i);var n=function(){var t=this,i=t.$createElement,e=t._self._c||i;return e("div",{staticClass:"mobile-page"},[e("div",{staticClass:"home_bargain",class:0===t.bgStyle?"bargainOn":"",style:{marginTop:t.mTop+"px"}},[e("div",{staticClass:"bargin_count",class:0===t.bgStyle?"bargainOn":"",style:{background:""+t.themeColor}},[e("div",{staticClass:"title-bar",class:0===t.bgStyle?"bargainOn":""},[t._m(0),t._v(" "),t._m(1)]),t._v(" "),2!=t.isOne?e("div",{staticClass:"list-wrapper",class:"colum"+t.isOne},t._l(t.list,(function(i,n){return e("div",{key:n,staticClass:"item",class:t.conStyle?"":"bargainOn"},[e("div",{staticClass:"img-box"},[i.img?e("img",{attrs:{src:i.img,alt:""}}):e("div",{staticClass:"empty-box",class:t.conStyle?"":"bargainOn"},[e("span",{staticClass:"iconfont-diy icontupian"})]),t._v(" "),t.joinShow?e("div",{staticClass:"box-num"},[t._v(t._s(i.num)+"人参与")]):t._e()]),t._v(" "),t.titleShow||t.priceShow||t.bntShow||t.barginShow?e("div",{staticClass:"con-box",class:t.conStyle?"":"bargainOn"},[e("div",{staticClass:"con-desc"},[t.titleShow?e("div",{staticClass:"title line1"},[t._v(t._s(i.store_name))]):t._e(),t._v(" "),e("div",{staticClass:"price"},[t.barginShow?e("span",{staticClass:"price-name",style:"color:"+t.priceColor},[t._v("助力价")]):t._e(),t._v(" "),t.priceShow?e("p",{style:"color:"+t.priceColor},[t._v("¥"),e("span",{staticClass:"price-label"},[t._v(t._s(i.price))])]):t._e()])]),t._v(" "),t.bntShow&&t.bgColor.length>0?e("div",{staticClass:"btn",class:t.conStyle?"":"bargainOn",style:{background:"linear-gradient(180deg,"+t.bgColor[0].item+" 0%,"+t.bgColor[1].item+" 100%)"}},[t._v("发起助力")]):t._e()]):t._e()])})),0):e("div",{staticClass:"list-wrapper colum2",class:0===t.bgStyle?"bargainOn":""},t._l(t.list,(function(i,n){return n<3?e("div",{staticClass:"item",class:t.conStyle?"":"bargainOn",attrs:{index:n}},[t.titleShow||t.priceShow||t.bntShow?e("div",{staticClass:"info"},[t.titleShow?e("div",{staticClass:"title line1"},[t._v(t._s(i.store_name))]):t._e(),t._v(" "),t.priceShow?e("div",{staticClass:"price line1",style:"color:"+t.priceColor},[t._v("¥"+t._s(i.price))]):t._e(),t._v(" "),t.bntShow?e("span",{staticClass:"box-btn"},[t._v("去助力"),e("span",{staticClass:"iconfont-diy iconjinru"})]):t._e()]):t._e(),t._v(" "),e("div",{staticClass:"img-box"},[i.img?e("img",{attrs:{src:i.img,alt:""}}):t._e(),t._v(" "),e("div",{staticClass:"empty-box",class:t.conStyle?"":"bargainOn"},[e("span",{staticClass:"iconfont-diy icontupian"})])])]):t._e()})),0)])])])},a=[function(){var t=this,i=t.$createElement,n=t._self._c||i;return n("div",{staticClass:"title-left"},[n("img",{attrs:{src:e("5b5b"),alt:""}}),t._v(" "),n("div",{staticClass:"avatar-wrapper"},[n("img",{attrs:{src:e("4843"),alt:""}}),t._v(" "),n("img",{attrs:{src:e("9456"),alt:""}})]),t._v(" "),n("p",{staticClass:"num"},[t._v("1234人助力成功")])])},function(){var t=this,i=t.$createElement,e=t._self._c||i;return e("div",{staticClass:"right"},[t._v("更多 "),e("span",{staticClass:"iconfont-diy iconjinru"})])}],o=e("5530"),s=e("2f62"),c={name:"home_bargain",cname:"助力",icon:"iconzhuli",configName:"c_home_bargain",type:1,defaultName:"bargain",props:{index:{type:null},num:{type:null}},computed:Object(o["a"])({},Object(s["d"])("mobildConfig",["defaultArray"])),watch:{pageData:{handler:function(t,i){this.setConfig(t)},deep:!0},num:{handler:function(t,i){var e=this.$store.state.mobildConfig.defaultArray[t];this.setConfig(e)},deep:!0},defaultArray:{handler:function(t,i){var e=this.$store.state.mobildConfig.defaultArray[this.num];this.setConfig(e)},deep:!0}},data:function(){return{defaultConfig:{name:"bargain",timestamp:this.num,setUp:{tabVal:"0"},priceShow:{title:"是否显示价格",val:!0},bntShow:{title:"是否显示按钮",val:!0},titleShow:{title:"是否显示名称",val:!0},barginShow:{title:"是否显示助力标签",val:!0},joinShow:{title:"是否显示参与标签",val:!0},tabConfig:{title:"展示样式",tabVal:0,type:1,tabList:[{name:"单行展示",icon:"icondanhang"},{name:"多行展示",icon:"iconduohang"},{name:"板块模式",icon:"iconyangshi9"}]},bgColor:{title:"按钮背景色",name:"bgColor",default:[{item:"#FF0000"},{item:"#FF5400"}],color:[{item:"#FF0000"},{item:"#FF5400"}]},themeColor:{title:"背景颜色",name:"themeColor",default:[{item:"#fff"}],color:[{item:"#fff"}]},priceColor:{title:"主题颜色",name:"themeColor",default:[{item:"#E93323"}],color:[{item:"#E93323"}]},bgStyle:{title:"背景样式",name:"bgStyle",type:1,list:[{val:"直角",icon:"iconPic_square"},{val:"圆角",icon:"iconPic_fillet"}]},conStyle:{title:"内容样式",name:"conStyle",type:1,list:[{val:"直角",icon:"iconPic_square"},{val:"圆角",icon:"iconPic_fillet"}]},mbCongfig:{title:"页面间距",val:0,min:0}},bgColor:[],themeColor:"",priceColor:"",mTop:"",list:[{img:"",store_name:"双耳戴头式无线...",price:"234",num:1245},{img:"",store_name:"双耳戴头式无线...",price:"234",num:1245},{img:"",store_name:"双耳戴头式无线...",price:"234",num:1245},{img:"",store_name:"双耳戴头式无线...",price:"234",num:1245},{img:"",store_name:"双耳戴头式无线...",price:"234",num:1245},{img:"",store_name:"双耳戴头式无线...",price:"234",num:1245}],priceShow:!0,bntShow:!0,titleShow:!0,barginShow:!0,joinShow:!0,pageData:{},bgStyle:1,isOne:0,conStyle:1}},mounted:function(){var t=this;this.$nextTick((function(){t.pageData=t.$store.state.mobildConfig.defaultArray[t.num],t.setConfig(t.pageData)}))},methods:{setConfig:function(t){t&&t.mbCongfig&&(this.isOne=t.tabConfig.tabVal,this.bgColor=t.bgColor.color,this.themeColor=t.themeColor&&t.themeColor.color[0].item,this.priceColor=t.priceColor&&t.priceColor.color[0].item,this.mTop=t.mbCongfig.val,this.priceShow=t.priceShow.val,this.titleShow=t.titleShow.val,this.barginShow=t.barginShow.val,this.joinShow=t.joinShow.val,this.conStyle=t.conStyle.type,this.bgStyle=t.bgStyle.type,this.bntShow=t.bntShow.val)}}},l=c,r=(e("3b8d"),e("2877")),f=Object(r["a"])(l,n,a,!1,null,"97b6085c",null);i["default"]=f.exports},"244d":function(t,i,e){"use strict";e.r(i);var n=function(){var t=this,i=t.$createElement,e=t._self._c||i;return e("div",{staticStyle:{padding:"0 10px 10px"}},[e("div",{staticClass:"mobile-page",class:0===t.bgStyle?"":"pageOn",style:[{background:t.bg},{marginTop:t.cSlider+"px"}]},[t._m(0),t._v(" "),0==t.listStyle?e("div",{staticClass:"live-wrapper-a live-wrapper-c"},t._l(t.live,(function(i,n){return e("div",{key:n,staticClass:"live-item-a"},[e("div",{staticClass:"img-box"},[t._m(1,!0),t._v(" "),1==i.type?e("div",{staticClass:"label bgblue"},[t._m(2,!0),t._v(" "),e("span",{staticClass:"msg"},[t._v("7/29 10:00")])]):t._e(),t._v(" "),0==i.type?e("div",{staticClass:"label bggary"},[e("span",{staticClass:"iconfont-diy iconyijieshu",staticStyle:{"margin-right":"5px"}}),t._v("回放\n ")]):t._e(),t._v(" "),2==i.type?e("div",{staticClass:"label bgred"},[e("span",{staticClass:"iconfont-diy iconzhibozhong",staticStyle:{"margin-right":"5px"}}),t._v("直播中\n ")]):t._e()])])})),0):t._e(),t._v(" "),1==t.listStyle?e("div",{staticClass:"live-wrapper-a"},t._l(t.live,(function(i,n){return e("div",{key:n,staticClass:"live-item-a"},[e("div",{staticClass:"img-box"},[t._m(3,!0),t._v(" "),1==i.type?e("div",{staticClass:"label bgblue"},[t._m(4,!0),t._v(" "),e("span",{staticClass:"msg"},[t._v("7/29 10:00")])]):t._e(),t._v(" "),0==i.type?e("div",{staticClass:"label bggary"},[e("span",{staticClass:"iconfont-diy iconyijieshu",staticStyle:{"margin-right":"5px"}}),t._v("回放\n ")]):t._e(),t._v(" "),2==i.type?e("div",{staticClass:"label bgred"},[e("span",{staticClass:"iconfont-diy iconzhibozhong",staticStyle:{"margin-right":"5px"}}),t._v("直播中\n ")]):t._e()]),t._v(" "),e("div",{staticClass:"info"},[e("div",{staticClass:"title"},[t._v("直播标题直播标题直播标 题直播标题")]),t._v(" "),t._m(5,!0),t._v(" "),e("div",{staticClass:"goods-wrapper"},[i.goods.length>0?t._l(i.goods,(function(i,n){return e("div",{key:n,staticClass:"goods-item"},[e("img",{attrs:{src:i.img,alt:""}}),t._v(" "),e("span",[t._v("¥"+t._s(i.price))])])})):[e("div",{staticClass:"empty-goods"},[t._v("\n 暂无商品\n ")])]],2)])])})),0):t._e(),t._v(" "),2==t.listStyle?e("div",{staticClass:"live-wrapper-b"},t._l(t.live,(function(i,n){return e("div",{key:n,staticClass:"live-item-b"},[e("div",{staticClass:"img-box"},[t._m(6,!0),t._v(" "),1==i.type?e("div",{staticClass:"label bgblue"},[t._m(7,!0),t._v(" "),e("span",{staticClass:"msg"},[t._v("7/29 10:00")])]):t._e(),t._v(" "),0==i.type?e("div",{staticClass:"label bggary"},[e("span",{staticClass:"iconfont-diy iconyijieshu",staticStyle:{"margin-right":"5px"}}),t._v("回放\n ")]):t._e(),t._v(" "),2==i.type?e("div",{staticClass:"label bgred"},[e("span",{staticClass:"iconfont-diy iconzhibozhong",staticStyle:{"margin-right":"5px"}}),t._v("直播中\n ")]):t._e()]),t._v(" "),t._m(8,!0)])})),0):t._e()])])},a=[function(){var t=this,i=t.$createElement,n=t._self._c||i;return n("div",{staticClass:"title-box"},[n("span",[n("img",{staticClass:"icon",attrs:{src:e("c845"),alt:""}})]),t._v(" "),n("span",[t._v("进入频道"),n("span",{staticClass:"iconfont-diy iconjinru"})])])},function(){var t=this,i=t.$createElement,e=t._self._c||i;return e("div",{staticClass:"empty-box on"},[e("span",{staticClass:"iconfont-diy icontupian"})])},function(){var t=this,i=t.$createElement,e=t._self._c||i;return e("span",{staticClass:"txt"},[e("span",{staticClass:"iconfont-diy iconweikaishi",staticStyle:{"margin-right":"5px"}}),t._v("预告")])},function(){var t=this,i=t.$createElement,e=t._self._c||i;return e("div",{staticClass:"empty-box on"},[e("span",{staticClass:"iconfont-diy icontupian"})])},function(){var t=this,i=t.$createElement,e=t._self._c||i;return e("span",{staticClass:"txt"},[e("span",{staticClass:"iconfont-diy iconweikaishi",staticStyle:{"margin-right":"5px"}}),t._v("预告")])},function(){var t=this,i=t.$createElement,e=t._self._c||i;return e("div",{staticClass:"people"},[e("span",[t._v("樱桃小丸子")])])},function(){var t=this,i=t.$createElement,e=t._self._c||i;return e("div",{staticClass:"empty-box on"},[e("span",{staticClass:"iconfont-diy icontupian"})])},function(){var t=this,i=t.$createElement,e=t._self._c||i;return e("span",{staticClass:"txt"},[e("span",{staticClass:"iconfont-diy iconweikaishi",staticStyle:{"margin-right":"5px"}}),t._v("预告")])},function(){var t=this,i=t.$createElement,e=t._self._c||i;return e("div",{staticClass:"info"},[e("div",{staticClass:"title"},[t._v("直播标题直播标题直播标 题直播标题")]),t._v(" "),e("div",{staticClass:"people"},[e("span",[t._v("樱桃小丸子")])])])}],o=e("5530"),s=e("2f62"),c={name:"wechat_live",cname:"小程序直播",configName:"c_wechat_live",type:1,defaultName:"liveBroadcast",icon:"iconxiaochengxuzhibo3",props:{index:{type:null,default:-1},num:{type:null}},computed:Object(o["a"])({},Object(s["d"])("mobildConfig",["defaultArray"])),watch:{pageData:{handler:function(t,i){this.setConfig(t)},deep:!0},num:{handler:function(t,i){var e=this.$store.state.mobildConfig.defaultArray[t];this.setConfig(e)},deep:!0},defaultArray:{handler:function(t,i){var e=this.$store.state.mobildConfig.defaultArray[this.num];this.setConfig(e)},deep:!0}},data:function(){return{defaultConfig:{name:"liveBroadcast",timestamp:this.num,bg:{title:"背景色",name:"bg",default:[{item:"#fff"}],color:[{item:"#fff"}]},listStyle:{title:"列表样式",name:"listStyle",type:0,list:[{val:"单行",icon:"icondanhang"},{val:"多行",icon:"iconduohang"},{val:"双排",icon:"iconlianglie"}]},bgStyle:{title:"背景样式",name:"bgStyle",type:0,list:[{val:"直角",icon:"iconPic_square"},{val:"圆角",icon:"iconPic_fillet"}]},mbConfig:{title:"页面间距",val:0,min:0}},live:[{title:"直播中",name:"playBg",type:2,color:"",icon:"iconzhibozhong",goods:[]},{title:"回放",name:"endBg",type:0,color:"",icon:"iconyijieshu",goods:[{img:"http://admin.crmeb.net/uploads/attach/2020/05/20200515/4f17d0727e277eb86ecc6296e96c2c09.png",price:"199"},{img:"http://admin.crmeb.net/uploads/attach/2020/05/20200515/4f17d0727e277eb86ecc6296e96c2c09.png",price:"199"},{img:"http://admin.crmeb.net/uploads/attach/2020/05/20200515/4f17d0727e277eb86ecc6296e96c2c09.png",price:"199"}]},{title:"预告",name:"notBg",type:1,color:"",icon:"iconweikaishi",goods:[{img:"http://admin.crmeb.net/uploads/attach/2020/05/20200515/4f17d0727e277eb86ecc6296e96c2c09.png",price:"199"},{img:"http://admin.crmeb.net/uploads/attach/2020/05/20200515/4f17d0727e277eb86ecc6296e96c2c09.png",price:"199"}]},{title:"直播中",name:"playBg",type:2,color:"",icon:"iconzhibozhong",goods:[{img:"http://admin.crmeb.net/uploads/attach/2020/05/20200515/4f17d0727e277eb86ecc6296e96c2c09.png",price:"199"},{img:"http://admin.crmeb.net/uploads/attach/2020/05/20200515/4f17d0727e277eb86ecc6296e96c2c09.png",price:"199"}]}],cSlider:"",confObj:{},pageData:{},listStyle:0,bgStyle:0,bg:""}},mounted:function(){var t=this;this.$nextTick((function(){t.pageData=t.$store.state.mobildConfig.defaultArray[t.num],t.setConfig(t.pageData)}))},methods:{setConfig:function(t){t&&t.mbConfig&&(this.cSlider=t.mbConfig.val,this.listStyle=t.listStyle.type,this.bgStyle=t.bgStyle.type,this.bg=t.bg.color[0].item)}}},l=c,r=(e("e70e"),e("2877")),f=Object(r["a"])(l,n,a,!1,null,"7a95016c",null);i["default"]=f.exports},"26e2":function(t,i,e){"use strict";e("992d")},2756:function(t,i,e){"use strict";e.r(i);var n=function(){var t=this,i=t.$createElement,e=t._self._c||i;return e("div",{staticStyle:{"margin-bottom":"20px"}},[t.configData.tabList?e("div",{staticClass:"title-tips"},[e("span",[t._v(t._s(t.configData.title))]),t._v(t._s(t.configData.tabList[t.configData.tabVal].name)+"\n ")]):t._e(),t._v(" "),e("div",{staticClass:"radio-box",class:{on:1==t.configData.type}},[e("el-radio-group",{attrs:{type:"button",size:"large"},on:{change:function(i){return t.radioChange(i)}},model:{value:t.configData.tabVal,callback:function(i){t.$set(t.configData,"tabVal",i)},expression:"configData.tabVal"}},t._l(t.configData.tabList,(function(i,n){return e("el-radio",{key:n,attrs:{label:n}},[i.icon?e("span",{staticClass:"iconfont-diy",class:i.icon}):e("span",[t._v(t._s(i.name))])])})),1)],1)])},a=[],o={name:"c_tab",props:{configObj:{type:Object},configNme:{type:String}},data:function(){return{formData:{type:0},defaults:{},configData:{}}},watch:{configObj:{handler:function(t,i){this.defaults=t,this.configData=t[this.configNme]},deep:!0}},mounted:function(){var t=this;this.$nextTick((function(){t.defaults=t.configObj,t.configData=t.configObj[t.configNme]}))},methods:{radioChange:function(t){this.defaults.picStyle&&(this.defaults.picStyle.tabVal="0"),this.$emit("getConfig",t)}}},s=o,c=(e("1224"),e("2877")),l=Object(c["a"])(s,n,a,!1,null,"4e7cb8ae",null);i["default"]=l.exports},"27c5":function(t,i,e){"use strict";e.r(i);var n=function(){var t=this,i=t.$createElement,e=t._self._c||i;return e("div",{staticClass:"mobile-config pro"},[t._l(t.rCom,(function(i,n){return e("div",{key:n},[e(i.components.name,{key:n,ref:"childData",refInFor:!0,tag:"component",attrs:{configObj:t.configObj,configNme:i.configNme,index:t.activeIndex,num:i.num},on:{getConfig:t.getConfig}})],1)})),t._v(" "),e("rightBtn",{attrs:{activeIndex:t.activeIndex,configObj:t.configObj}})],2)},a=[],o=e("5530"),s=e("fd0b"),c=(e("2f62"),e("befa")),l={name:"c_home_menu",cname:"导航组",componentsName:"home_menu",props:{activeIndex:{type:null},num:{type:null},index:{type:null}},components:Object(o["a"])(Object(o["a"])({},s["a"]),{},{rightBtn:c["a"]}),data:function(){return{configObj:{},rCom:[{components:s["a"].c_set_up,configNme:"setUp"}],space:[{components:s["a"].c_menu_list,configNme:"menuConfig"}],space2:[],oneStyle:[{components:s["a"].c_tab,configNme:"tabConfig"},{components:s["a"].c_txt_tab,configNme:"menuStyle"},{components:s["a"].c_bg_color,configNme:"bgColor"},{components:s["a"].c_bg_color,configNme:"titleColor"},{components:s["a"].c_txt_tab,configNme:"bgStyle"},{components:s["a"].c_slider,configNme:"prConfig"},{components:s["a"].c_slider,configNme:"mbConfig"}],twoStyle:[{components:s["a"].c_tab,configNme:"tabConfig"},{components:s["a"].c_txt_tab,configNme:"menuStyle"},{components:s["a"].c_txt_tab,configNme:"rowsNum"},{components:s["a"].c_txt_tab,configNme:"number"},{components:s["a"].c_bg_color,configNme:"bgColor"},{components:s["a"].c_bg_color,configNme:"titleColor"},{components:s["a"].c_txt_tab,configNme:"bgStyle"},{components:s["a"].c_slider,configNme:"prConfig"},{components:s["a"].c_slider,configNme:"mbConfig"}],type:0,setUp:0}},watch:{num:function(t){var i=JSON.parse(JSON.stringify(this.$store.state.mobildConfig.defaultArray[t]));this.configObj=i},configObj:{handler:function(t,i){this.$store.commit("mobildConfig/UPDATEARR",{num:this.num,val:t})},deep:!0},"configObj.setUp.tabVal":{handler:function(t,i){this.setUp=t;var e=[this.rCom[0]];if(0==t){var n=[{components:s["a"].c_menu_list,configNme:"menuConfig"}];this.rCom=e.concat(n)}else this.type?this.rCom=e.concat(this.twoStyle):this.rCom=e.concat(this.oneStyle)},deep:!0},"configObj.tabConfig.tabVal":{handler:function(t,i){this.type=t;var e=[this.rCom[0]];0!=this.setUp&&(this.rCom=0==t?e.concat(this.oneStyle):e.concat(this.twoStyle))},deep:!0}},mounted:function(){var t=this;this.$nextTick((function(){var i=JSON.parse(JSON.stringify(t.$store.state.mobildConfig.defaultArray[t.num]));t.configObj=i}))},methods:{getConfig:function(t){}}},r=l,f=e("2877"),d=Object(f["a"])(r,n,a,!1,null,"a1cd64de",null);i["default"]=d.exports},"27ef":function(t,i,e){"use strict";e.r(i);var n=function(){var t=this,i=t.$createElement,e=t._self._c||i;return e("div",{staticClass:"hot_imgs"},[e("div",{staticClass:"title"},[t._v("\n 最多可添加4个板块片建议尺寸140 * 140px;鼠标拖拽左侧圆点可\n 调整板块顺序\n ")]),t._v(" "),e("div",{staticClass:"list-box"},[e("draggable",{staticClass:"dragArea list-group",attrs:{list:t.defaults.menu,group:"people",handle:".move-icon"}},t._l(t.defaults.menu,(function(i,n){return e("div",{key:n,staticClass:"item"},[e("div",{staticClass:"move-icon"},[e("Icon",{attrs:{type:"ios-keypad-outline",size:"22"}})],1),t._v(" "),e("div",{staticClass:"img-box",on:{click:function(i){return t.modalPicTap("单选",n)}}},[i.img?e("img",{attrs:{src:i.img,alt:""}}):e("div",{staticClass:"upload-box"},[e("Icon",{attrs:{type:"ios-camera-outline",size:"36"}})],1),t._v(" "),e("div",[e("el-dialog",{attrs:{visible:t.modalPic,width:"950px",title:"上传图片"},on:{"update:visible":function(i){t.modalPic=i}}},[t.modalPic?e("uploadPictures",{attrs:{isChoice:t.isChoice,gridBtn:t.gridBtn,gridPic:t.gridPic},on:{getPic:t.getPic}}):t._e()],1)],1)]),t._v(" "),e("div",{staticClass:"info"},t._l(i.info,(function(i,n){return e("div",{key:n,staticClass:"info-item"},[e("span",[t._v(t._s(i.title))]),t._v(" "),e("div",{staticClass:"input-box"},[e("el-input",{attrs:{placeholder:i.tips,maxlength:i.max},model:{value:i.value,callback:function(e){t.$set(i,"value",e)},expression:"infos.value"}})],1)])})),0)])})),0)],1),t._v(" "),t.defaults.menu.length<4?e("div",{staticClass:"add-btn"},[e("Button",{staticStyle:{width:"100%",height:"40px"},on:{click:t.addBox}},[t._v("添加板块")])],1):t._e()])},a=[],o=e("1980"),s=e.n(o),c=(e("2f62"),e("6625")),l=e.n(c),r=e("b5b8"),f=(e("0c6d"),{name:"c_hot_imgs",props:{configObj:{type:Object}},components:{draggable:s.a,UeditorWrap:l.a,uploadPictures:r["default"]},data:function(){return{defaults:{},menus:[],list:[{title:"aa",val:""}],modalPic:!1,isChoice:"单选",gridBtn:{xl:4,lg:8,md:8,sm:8,xs:8},gridPic:{xl:6,lg:8,md:12,sm:12,xs:12},activeIndex:0}},created:function(){this.defaults=this.configObj},watch:{configObj:{handler:function(t,i){this.defaults=t},immediate:!0,deep:!0}},methods:{addBox:function(){var t={img:"https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1594458238721&di=d9978a807dcbf5d8a01400875bc51162&imgtype=0&src=http%3A%2F%2Fattachments.gfan.com%2Fforum%2F201604%2F23%2F002205xqdkj84gnw4oi85v.jpg",info:[{title:"标题",value:"",tips:"选填,不超过4个字",max:4},{title:"简介",value:"",tips:"选填,不超过20个字",max:20}],link:{title:"链接",optiops:[{type:0,value:"",label:"一级>二级分类"},{type:1,value:"",label:"自定义链接"}]}};this.defaults.menu.push(t)},modalPicTap:function(t,i){this.activeIndex=i,this.modalPic=!0},addCustomDialog:function(t){window.UE.registerUI("test-dialog",(function(t,i){var e=new window.UE.ui.Dialog({iframeUrl:"/admin/widget.images/index.html?fodder=dialog",editor:t,name:i,title:"上传图片",cssRules:"width:1200px;height:500px;padding:20px;"});this.dialog=e;var n=new window.UE.ui.Button({name:"dialog-button",title:"上传图片",cssRules:"background-image: url(../../../assets/images/icons.png);background-position: -726px -77px;",onclick:function(){e.render(),e.open()}});return n}),37)},getPic:function(t){this.defaults.menu[this.activeIndex].img=t.att_dir,this.modalPic=!1}}}),d=f,u=(e("ff94"),e("2877")),m=Object(u["a"])(d,n,a,!1,null,"67b32add",null);i["default"]=m.exports},2947:function(t,i,e){},"2c2b":function(t,i,e){},"2c34":function(t,i,e){var n={"./c_bg_color.vue":"95a6","./c_cascader.vue":"b500","./c_custom_menu_list.vue":"144d","./c_foot.vue":"312f","./c_goods.vue":"a497","./c_hot_box.vue":"6b1a","./c_hot_imgs.vue":"27ef","./c_hot_word.vue":"f3ffe","./c_input_item.vue":"c31e","./c_input_number.vue":"8055","./c_is_show.vue":"3d85","./c_menu_list.vue":"c774","./c_page_ueditor.vue":"bd5a","./c_pictrue.vue":"60e2","./c_product.vue":"fe40","./c_select.vue":"5413","./c_set_up.vue":"fed0","./c_slider.vue":"80c19","./c_status.vue":"e291","./c_tab.vue":"2756","./c_txt_tab.vue":"58f1","./c_upload_img.vue":"500d"};function a(t){var i=o(t);return e(i)}function o(t){var i=n[t];if(!(i+1)){var e=new Error("Cannot find module '"+t+"'");throw e.code="MODULE_NOT_FOUND",e}return i}a.keys=function(){return Object.keys(n)},a.resolve=o,t.exports=a,a.id="2c34"},"2d44":function(t,i){t.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAXcAAAAUCAYAAAB2132+AAAAAXNSR0IArs4c6QAAADhlWElmTU0AKgAAAAgAAYdpAAQAAAABAAAAGgAAAAAAAqACAAQAAAABAAABd6ADAAQAAAABAAAAFAAAAABeOGisAAAGY0lEQVR4Ae2ZCWwVVRSGX6VaRItogShW8xCsilZwQ8QqQRQjilaLEhG1uEWIS9QgrmlFUYILwaIxRuKCCrhgVcANbIjGqMiSWGrSsFTEJSgYLUtww+9v58ab6fS9tjxbXt75k6/33jMz9837e++ZM20sZjIHzAFzwBwwB8wBc8AcMAfMAXPAHDAHzAFzwBwwB8wBc8AcMAfMgVQ4kJWKSWwOc8AcMAfMgUgHehItiDzS9mAtl25KdvleyU5o5fFizt8VoH5z6sWB+2Ax/A7rgnYJbRkcCiZzIAcLepgN5sBuODCBa68OXa9kOwMWwUTw8+DZjGfD63AxOB1C5yYY5AJBeyttbijmhoV0Stwgha3m1NwJ5X+phCe28OAA7zy/74VjMxlUw4MwDPQw6Az/wFlQDt/A02DKTAey+dpPwTZQhbIGToJE0lvoAqj3TtL6vgF2wGgvHtWdS1Br8cLQQRePWs9jgmtUkJj2LAdO5HbK4VGIg9P+dN6BTnAvnAFTQeoPr8AyeBymwQXQBRaC1uLtMAokFaH54K85xZ2U314FrWf1U0H3YM4i2v9Vq5hdG2Jl8CnlwVgx9X3dxWAzaMP+DFUgcy+D00Gb735QXCbKsC2gX4IpsxyYxNfdCefBwfAwbARV8s1pIgf0Fug2mtbNBlgNWo+JkntXjm+HtaCKzZdL7s/6waD/Ca3mLos4ZqGOdUB5ZTrUgP/7KWH8OTgNoaO8pEKgAlyip9twXSWtis4nFUADYVZDLxZ7glbrszkp50laI6ni14YZYzE3dzBs2ugL7Y70pJOiqprGI//93EpX1ZUqdG20obACjoQR0AdkuuKXg879O4DGlEEOnMl3rYL34CfQJlWVNBwOhCWgdeI0mM7N8JALBO0dtC2pcFSJ7QBVZSOhG/jShlKVfoAXLKSvjb7di1l3z3HgNW7lNvgydEt9GasoddID/SBQRRx1rID4pzAMxsMj8BYoXymnaX22p8JrUw+rSLUmuRczg3v6qN9azeQCGZUL6+FreAm0Ie+BKTAHlPD1Gq7Xp6PAlHkO6LW4H+gBL53a2MQOp9XfPlVJnRLE8mi1bq4DvRE6qTBQFa41m0xXcsJ8WARK1peCLyUDrdmrvKA2eiXUezHr7vkOxLlFveE5fU9Ha2Q/iMNv4PQdHcX/gHOhB0yGBaAHh4oO5SkVp/tAR0hFzqCoD06U3JXAy8Al8gHeBH7fCyft/hKc8QHtcSBT9eRUZaRWVf0J8CFIWxob+5lhDrzJ9z0MPgJtJhUG2mDZUANxeAyU/F8EJWa3Zui2SnpgDIF58CdUgpJ9WLMIKKFLKlDGgmKm9HJAD28VBE770tHvXYlcx7qDkxK7Ck1pI2gtLgXlLj0UtA6+glGwHDpDR0hvHk2UKLnr1aMc1KZaquC1KdX2hf5BewztC2AVOyZksPRWVwpd4RyYBFqrP4D0LagQuBZUDLwM2nD5oPPU16Ztia7gpCy4CKaD5iiCOPiazaAPDAVdo8JjMZjSywGtnbh3y+rXwl8QdUzFRFi3EKgAFQEPwDXwBoyE9pb+nPhF1IcmSu5R56cyVspk2jDayKrkq0GvPePAlNkOHM3X10YbCKeB/q6ZDSvAV28GvUDVk9bRZOgS9FUwtETaoGtABcWxwQWq4MYGfddspqOqfgKMh+dBDxhTejnwLrc7GFRYaq3oH5OfgfQ26MGdA/lwPbhjdBukNbkatkIdHA97Qz+og/bWVD5Qa7OJOjK562ZcxaWKXfyooCnjHcjDgY9hBOg1+W6ogrXQE5TIVSVNAR13qKLaFoyV8JPpZE7QursRhnvMo6+kH9ZzBEpAbwZK7qb0c2A9t3wnLAetp8JgTNNQbK6k3QA1sArmgC+tlWeCwHxaFaTVsA6WQZSWRgXbGAvPFZnYk82tL7YL1ErFoLFQX2rJOY1nNv9TDxgZbTIHfAcqGGjhar0pUatCl+KwCUohrHEE6kPBbow1x+hQXMMZoLeCThp4UqLXNfpH7lzQg0bSWq2D98FJ15e5gbVp40Aud3pEM3ertaYiIiytk97hYILxGI4VJTje1kOa85JkF2clO8GOmwMd6IA2Ux4omZvMgXRzIIcbPh8KUnzjtcy3EHameF6bzhwwB8wBc8AcMAfMAXPAHDAHzAFzwBwwB8wBc8AcMAfMAXPAHDAHIhz4FwO/QgbhZ4FRAAAAAElFTkSuQmCC"},"2d75":function(t,i,e){"use strict";e.r(i);var n=function(){var t=this,i=t.$createElement,e=t._self._c||i;return e("div",{staticClass:"mobile-config"},[t._l(t.rCom,(function(i,n){return e("div",{key:n},[e(i.components.name,{key:n,ref:"childData",refInFor:!0,tag:"component",attrs:{configObj:t.configObj,configNme:i.configNme,index:t.activeIndex,num:i.num},on:{getConfig:t.getConfig}})],1)})),t._v(" "),e("rightBtn",{attrs:{activeIndex:t.activeIndex,configObj:t.configObj}})],2)},a=[],o=e("5530"),s=e("fd0b"),c=(e("2f62"),e("befa")),l={name:"c_home_seckill",componentsName:"home_seckill",cname:"秒杀",props:{activeIndex:{type:null},num:{type:null},index:{type:null}},components:Object(o["a"])(Object(o["a"])({},s["a"]),{},{rightBtn:c["a"]}),data:function(){return{configObj:{},rCom:[{components:s["a"].c_set_up,configNme:"setUp"}]}},watch:{num:function(t){var i=JSON.parse(JSON.stringify(this.$store.state.mobildConfig.defaultArray[t]));this.configObj=i},configObj:{handler:function(t,i){this.$store.commit("mobildConfig/UPDATEARR",{num:this.num,val:t})},deep:!0},"configObj.setUp.tabVal":{handler:function(t,i){var e=[this.rCom[0]];if(0==t){var n=[{components:s["a"].c_is_show,configNme:"priceShow"},{components:s["a"].c_is_show,configNme:"progressShow"},{components:s["a"].c_is_show,configNme:"titleShow"}];this.rCom=e.concat(n)}else{var a=[{components:s["a"].c_tab,configNme:"tabConfig"},{components:s["a"].c_bg_color,configNme:"countDownColor"},{components:s["a"].c_bg_color,configNme:"themeColor"},{components:s["a"].c_bg_color,configNme:"bgColor"},{components:s["a"].c_txt_tab,configNme:"bgStyle"},{components:s["a"].c_txt_tab,configNme:"conStyle"},{components:s["a"].c_slider,configNme:"prConfig"},{components:s["a"].c_slider,configNme:"mbConfig"}];this.rCom=e.concat(a)}},deep:!0}},mounted:function(){var t=this;this.$nextTick((function(){var i=JSON.parse(JSON.stringify(t.$store.state.mobildConfig.defaultArray[t.num]));t.configObj=i}))},methods:{getConfig:function(t){}}},r=l,f=e("2877"),d=Object(f["a"])(r,n,a,!1,null,"552ffd73",null);i["default"]=d.exports},"2f64":function(t,i,e){},"312f":function(t,i,e){"use strict";e.r(i);var n=function(){var t=this,i=t.$createElement,e=t._self._c||i;return t.footConfig?e("div",[e("p",{staticClass:"tips"},[t._v("图片建议宽度81*81px;鼠标拖拽左侧圆点可调整导航顺序")]),t._v(" "),e("draggable",{staticClass:"dragArea list-group",attrs:{list:t.footConfig,group:"peoples",handle:".iconfont"}},t._l(t.footConfig,(function(i,n){return e("div",{key:n,staticClass:"box-item"},[e("div",{staticClass:"left-tool"},[e("span",{staticClass:"iconfont icondrag2"})]),t._v(" "),e("div",{staticClass:"right-wrapper"},[e("div",{staticClass:"img-wrapper"},t._l(i.imgList,(function(i,a){return e("div",{staticClass:"img-item",on:{click:function(i){return t.modalPicTap(n,a)}}},[i?e("img",{attrs:{src:i,alt:""}}):t._e(),t._v(" "),i?e("p",{staticClass:"txt"},[t._v(t._s(0==a?"选中":"未选中"))]):e("div",{staticClass:"empty-img"},[e("span",{staticClass:"iconfont iconjiahao"}),t._v(" "),e("p",[t._v(t._s(0==a?"选中":"未选中"))])])])})),0),t._v(" "),e("div",{staticClass:"c_row-item"},[e("el-col",{staticClass:"label",attrs:{span:4}},[t._v("\n 名称\n ")]),t._v(" "),e("el-col",{staticClass:"slider-box",attrs:{span:19}},[e("el-input",{attrs:{placeholder:"选填不超过10个字"},model:{value:i.name,callback:function(e){t.$set(i,"name",e)},expression:"item.name"}})],1)],1),t._v(" "),e("div",{staticClass:"c_row-item"},[e("el-col",{staticClass:"label",attrs:{span:4}},[t._v("\n 链接\n ")]),t._v(" "),e("el-col",{staticClass:"slider-box",attrs:{span:19}},[e("div",{on:{click:function(i){return t.getLink(n)}}},[e("el-input",{attrs:{icon:"ios-arrow-forward",readonly:"",placeholder:"选填不超过10个字"},model:{value:i.link,callback:function(e){t.$set(i,"link",e)},expression:"item.link"}})],1)])],1)]),t._v(" "),e("div",{staticClass:"del-box",on:{click:function(i){return t.deleteMenu(n)}}},[e("span",{staticClass:"iconfont iconcha"})])])})),0),t._v(" "),t.footConfig.length<5?e("el-button",{staticClass:"add-btn",attrs:{type:"info",ghost:""},on:{click:t.addMenu}},[t._v("添加图文导航")]):t._e(),t._v(" "),e("div",[e("el-dialog",{attrs:{visible:t.modalPic,width:"950px",title:"上传底部菜单"},on:{"update:visible":function(i){t.modalPic=i}}},[t.modalPic?e("uploadPictures",{attrs:{isChoice:t.isChoice,gridBtn:t.gridBtn,gridPic:t.gridPic},on:{getPic:t.getPic}}):t._e()],1)],1),t._v(" "),e("linkaddress",{ref:"linkaddres",on:{linkUrl:t.linkUrl}})],1):t._e()},a=[],o=e("1980"),s=e.n(o),c=e("b5b8"),l=e("7af3"),r={name:"c_foot",props:{configObj:{type:Object,default:function(){return{}}},configNme:{type:String,default:""}},components:{uploadPictures:c["default"],linkaddress:l["a"],draggable:s.a},data:function(){return{val1:"",val2:"",footConfig:[],modalPic:!1,isChoice:"单选",itemIndex:0,itemChildIndex:0,gridBtn:{xl:4,lg:8,md:8,sm:8,xs:8},gridPic:{xl:6,lg:8,md:12,sm:12,xs:12}}},watch:{configObj:{handler:function(t,i){this.footConfig=t[this.configNme]},deep:!0}},created:function(){this.footConfig=this.configObj[this.configNme]},methods:{linkUrl:function(t){this.footConfig[this.itemIndex].link=t},getLink:function(t){this.itemIndex=t,this.$refs.linkaddres.init()},modalPicTap:function(t,i){var e=this;e.itemIndex=t,e.itemChildIndex=i,e.$modalUpload((function(n){e.footConfig[t].imgList[i]=n[0],e.$forceUpdate(),e.getPic(n[0])}))},getPic:function(t){var i=this;this.$nextTick((function(){i.footConfig[i.itemIndex].imgList[i.itemChildIndex]=t,i.$store.commit("mobildConfig/footUpdata",i.footConfig)}))},addMenu:function(){var t={imgList:["",""],name:"自定义",link:""};this.footConfig.push(t)},deleteMenu:function(t){var i=this;this.$confirm("是否确定删除该菜单?","提示",{confirmButtonText:"确定",cancelButtonText:"取消",type:"warning"}).then((function(){i.footConfig.splice(t,1)})).catch((function(){i.$message({type:"info",message:"已取消"})}))}}},f=r,d=(e("d0c9"),e("2877")),u=Object(d["a"])(f,n,a,!1,null,"340eff88",null);i["default"]=u.exports},"344a":function(t,i,e){"use strict";e.r(i);var n=function(){var t=this,i=t.$createElement,e=t._self._c||i;return e("div",{staticClass:"mobile-page"},[e("div",{staticClass:"box",style:{borderBottomWidth:t.cSlider+"px",borderBottomColor:t.bgColor,borderBottomStyle:t.style,marginLeft:t.edge+"px",marginRight:t.edge+"px",marginTop:t.udEdge+"px"}})])},a=[],o=e("5530"),s=e("2f62"),c={name:"z_auxiliary_line",cname:"辅助线",configName:"c_auxiliary_line",icon:"iconfuzhuxian2",type:2,defaultName:"guide",props:{index:{type:null,default:-1},num:{type:null}},computed:Object(o["a"])({},Object(s["d"])("mobildConfig",["defaultArray"])),watch:{pageData:{handler:function(t,i){this.setConfig(t)},deep:!0},num:{handler:function(t,i){var e=this.$store.state.mobildConfig.defaultArray[t];this.setConfig(e)},deep:!0},defaultArray:{handler:function(t,i){var e=this.$store.state.mobildConfig.defaultArray[this.num];this.setConfig(e)},deep:!0}},data:function(){return{defaultConfig:{name:"guide",timestamp:this.num,lineColor:{title:"线条颜色",default:[{item:"#f5f5f5"}],color:[{item:"#f5f5f5"}]},lineStyle:{title:"线条样式",type:0,list:[{val:"虚线",style:"dashed",icon:""},{val:"实线",style:"solid"},{val:"点状线",style:"dotted"}]},heightConfig:{title:"组件高度",val:1,min:1},lrEdge:{title:"左右边距",val:0,min:0},mbConfig:{title:"页面间距",val:0,min:0}},cSlider:"",bgColor:"",confObj:{},pageData:{},edge:"",udEdge:"",styleType:"",style:""}},mounted:function(){var t=this;this.$nextTick((function(){t.pageData=t.$store.state.mobildConfig.defaultArray[t.num],t.setConfig(t.pageData)}))},methods:{setConfig:function(t){if(t&&t.mbConfig){var i=t.lineStyle.type;this.cSlider=t.heightConfig.val,this.bgColor=t.lineColor.color[0].item,this.edge=t.lrEdge.val,this.udEdge=t.mbConfig.val,this.style=t.lineStyle.list[i].style}}}},l=c,r=(e("b46e"),e("2877")),f=Object(r["a"])(l,n,a,!1,null,"55f42962",null);i["default"]=f.exports},3651:function(t,i,e){},3725:function(t,i,e){"use strict";e.r(i);var n=function(){var t=this,i=t.$createElement,e=t._self._c||i;return e("div",{staticClass:"mobile-config"},[e("Form",{ref:"formInline"},t._l(t.rCom,(function(i,n){return e("div",{key:n},[e(i.components.name,{ref:"childData",refInFor:!0,tag:"component",attrs:{configObj:t.configObj,configNme:i.configNme}})],1)})),0)],1)},a=[],o=e("5530"),s=e("fd0b"),c=e("befa"),l=(e("2f62"),{name:"pageFoot",cname:"底部菜单",components:Object(o["a"])(Object(o["a"])({},s["a"]),{},{rightBtn:c["a"]}),data:function(){return{hotIndex:1,configObj:{},rCom:[{components:s["a"].c_set_up,configNme:"setUp"}]}},watch:{"configObj.setUp.tabVal":{handler:function(t,i){var e=[this.rCom[0]];if(0==t){var n=[{components:s["a"].c_status,configNme:"status"},{components:s["a"].c_foot,configNme:"menuList"}];this.rCom=e.concat(n)}else{var a=[{components:s["a"].c_bg_color,configNme:"txtColor"},{components:s["a"].c_bg_color,configNme:"activeTxtColor"},{components:s["a"].c_bg_color,configNme:"bgColor"}];this.rCom=e.concat(a)}},deep:!0}},mounted:function(){this.configObj=this.$store.state.mobildConfig.pageFooter,console.log("2222",this.configObj)},methods:{}}),r=l,f=(e("b90c"),e("2877")),d=Object(f["a"])(r,n,a,!1,null,"8741f466",null);i["default"]=d.exports},3781:function(t,i,e){},"385a":function(t,i,e){"use strict";e("1a61")},"3b8d":function(t,i,e){"use strict";e("9fbb")},"3d85":function(t,i,e){"use strict";e.r(i);var n=function(){var t=this,i=t.$createElement,e=t._self._c||i;return t.configData?e("div",{staticClass:"c_row-item"},[e("el-col",{staticClass:"c_label"},[t._v(t._s(t.configData.title))]),t._v(" "),e("el-col",[e("el-switch",{model:{value:t.configData.val,callback:function(i){t.$set(t.configData,"val",i)},expression:"configData.val"}})],1)],1):t._e()},a=[],o={name:"c_is_show",props:{configObj:{type:Object},configNme:{type:String}},data:function(){return{defaults:{},configData:{}}},created:function(){this.defaults=this.configObj,this.configData=this.configObj[this.configNme]},watch:{configObj:{handler:function(t,i){this.defaults=t,this.configData=t[this.configNme]},immediate:!0,deep:!0}},methods:{}},s=o,c=(e("9295"),e("2877")),l=Object(c["a"])(s,n,a,!1,null,"e03dde4a",null);i["default"]=l.exports},"3f2d":function(t,i,e){"use strict";e("cc53")},"3f7b":function(t,i,e){},"3fb2":function(t,i,e){"use strict";e("c6b1")},4553:function(t,i,e){"use strict";e.r(i);var n=function(){var t=this,i=t.$createElement,e=t._self._c||i;return e("div",[e("div",{staticClass:"mt20 ml20"},[e("el-input",{staticStyle:{width:"300px"},attrs:{placeholder:"请输入视频链接"},model:{value:t.videoLink,callback:function(i){t.videoLink=i},expression:"videoLink"}}),t._v(" "),e("input",{ref:"refid",staticStyle:{display:"none"},attrs:{type:"file"},on:{change:t.zh_uploadFile_change}}),t._v(" "),e("el-button",{staticClass:"ml10",attrs:{type:"primary",icon:"ios-cloud-upload-outline"},on:{click:t.zh_uploadFile}},[t._v(t._s(t.videoLink?"确认添加":"上传视频"))]),t._v(" "),t.upload.videoIng?e("el-progress",{staticStyle:{"margin-top":"20px"},attrs:{"stroke-width":20,percentage:t.progress,"text-inside":!0}}):t._e(),t._v(" "),t.formValidate.video_link?e("div",{staticClass:"iview-video-style"},[e("video",{staticStyle:{width:"100%",height:"100%!important","border-radius":"10px"},attrs:{src:t.formValidate.video_link,controls:"controls"}},[t._v("\n 您的浏览器不支持 video 标签。\n ")]),t._v(" "),e("div",{staticClass:"mark"}),t._v(" "),e("i",{staticClass:"iconv el-icon-delete",on:{click:t.delVideo}})]):t._e()],1),t._v(" "),e("div",{staticClass:"mt50 ml20"},[e("el-button",{attrs:{type:"primary"},on:{click:t.uploads}},[t._v("确认")])],1)])},a=[],o=(e("7f7f"),e("c4c8")),s=(e("6bef"),{name:"Vide11o",props:{isDiy:{type:Boolean,default:!1}},data:function(){return{upload:{videoIng:!1},progress:20,videoLink:"",formValidate:{video_link:""}}},methods:{delVideo:function(){var t=this;t.$set(t.formValidate,"video_link","")},zh_uploadFile:function(){this.videoLink?this.formValidate.video_link=this.videoLink:this.$refs.refid.click()},zh_uploadFile_change:function(t){var i=this,e=t.target.files[0].name.substr(t.target.files[0].name.indexOf("."));if(".mp4"!==e)return i.$message.error("只能上传MP4文件");Object(o["db"])().then((function(e){i.$videoCloud.videoUpload({type:e.data.type,evfile:t,res:e,uploading:function(t,e){i.upload.videoIng=t,console.log(t,e)}}).then((function(t){i.formValidate.video_link=t.url||t.data.src,i.$message.success("视频上传成功"),i.progress=100,i.upload.videoIng=!1})).catch((function(t){i.$message.error(t)}))}))},uploads:function(){this.formValidate.video_link||this.videoLink?!this.videoLink||this.formValidate.video_link?this.isDiy?this.$emit("getVideo",this.formValidate.video_link):nowEditor&&(nowEditor.dialog.close(!0),nowEditor.editor.setContent("",!0)):this.$message.error("请点击确认添加按钮!"):this.$message.error("您还没有上传视频!")}}}),c=s,l=(e("8307"),e("2877")),r=Object(l["a"])(c,n,a,!1,null,"732b6bbd",null);i["default"]=r.exports},4777:function(t,i,e){"use strict";e.r(i);var n=function(){var t=this,i=t.$createElement,e=t._self._c||i;return e("div",{staticClass:"mobile-config"},[t._l(t.rCom,(function(i,n){return e("div",{key:n},[e(i.components.name,{key:n,ref:"childData",refInFor:!0,tag:"component",attrs:{configObj:t.configObj,configNme:i.configNme,index:t.activeIndex,num:i.num},on:{getConfig:t.getConfig}})],1)})),t._v(" "),e("rightBtn",{attrs:{activeIndex:t.activeIndex,configObj:t.configObj}})],2)},a=[],o=e("5530"),s=e("fd0b"),c=e("befa"),l=(e("2f62"),{name:"c_ueditor_box",componentsName:"z_ueditor",components:Object(o["a"])(Object(o["a"])({},s["a"]),{},{rightBtn:c["a"]}),props:{activeIndex:{type:null},num:{type:null},index:{type:null}},data:function(){return{configObj:{},rCom:[{components:s["a"].c_set_up,configNme:"setUp"}]}},watch:{num:function(t){var i=JSON.parse(JSON.stringify(this.$store.state.mobildConfig.defaultArray[t]));this.configObj=i},configObj:{handler:function(t,i){this.$store.commit("mobildConfig/UPDATEARR",{num:this.num,val:t})},deep:!0},"configObj.setUp.tabVal":{handler:function(t,i){var e=[this.rCom[0]];if(0==t){var n=[{components:s["a"].c_page_ueditor,configNme:"richText"}];this.rCom=e.concat(n)}else{var a=[{components:s["a"].c_bg_color,configNme:"bgColor"},{components:s["a"].c_slider,configNme:"lrConfig"},{components:s["a"].c_slider,configNme:"udConfig"}];this.rCom=e.concat(a)}},deep:!0}},mounted:function(){var t=this;this.$nextTick((function(){var i=JSON.parse(JSON.stringify(t.$store.state.mobildConfig.defaultArray[t.num]));t.configObj=i}))},methods:{getConfig:function(t){}}}),r=l,f=e("2877"),d=Object(f["a"])(r,n,a,!1,null,"706289e1",null);i["default"]=d.exports},"47b0":function(t,i,e){},4843:function(t,i){t.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABHNCSVQICAgIfAhkiAAAA0NJREFUOE9lk1lMXFUYx3/n3tmYGRkGhlTiQkuNZtToxBpDsNpWH9QmCkTTWC3WNnQJTzM+1IfGCipNbJqCGH0wtZtQsEUzbYxBY3SoGhujFmwpraGxEdMCs9zZ1zv3mgsBiZ7kPJwv+f++5fw/wX/O3Jzik4XWLGR5vSQJnxCCUqk4ZjZbQ7IszjidzrHlErH8EQ5H/ZIQPZIsIUkS6XSanoMHmJq6xtq1j9H6/Avx6pqaTrfb9d6ibgkQDkeCAtEsyTKyLJFKJuna9wbnQiFkWUbVdR5tauJgbx+6rgc9nupWAzIPMDIDPZIQGNkNwamTJ+k/cQzvikpSmRw/Tv6Jw+Hg6PETrGxYbcgCtbU1vcLoWQjtgkES0oJYK6vseS1Aau4GW1ue4tLkVT76fAQhm2hv38Gr7TsMQFwI0wYRDkc7gTeXA1LJOLu2bmFPxzYq7RVcu3qFQ0eGUPIqa9Y8xKG+DxZH0CXC4UgIxDqjfKMCY3g///QDXwWH6djeRvzmNMVclonLVzgwcJaV9fUc/aQfs8WKpumjIhKOxoUkuYzvWrgQPP0ppwcH6PbvQvl7mngmxXe/XOSbC5NUuVz0Dw7irKxaaCMajcWF+Beg6zqfDQ3w9jvdvN7+Mg1uB19+f56RXy9jslihrBLYvpmNbTsx2xwJEYspISGkdUZ2Q1zI5wgOn6J7/362PfM4d9fX8dbhYUpImEwyVqGz6YlGnny2hTvve3hUKEpifojoGoV8gsH+IQ5/fISqqmr2drxCITzNu8eDpAoq2UyW3bt3UldpwyHD/Q8+0CUUJe1DV0P5fNYVi8exyhq/j48jm+3cu3oVJoeTr0e+4P2+D4nGFLa8uImX2jYjaeWEpsR880ZSFMUvCXquT12k9g4vFHOUMaFrZSxWK5fGf8PvDzAzM8Ntt66ga99eXO6awIanN/YuWfmvG7NBVVWb7WYdrawjJEGpkCdbLOCsuIXR0W/J5/J477mLSCxz5rnW5pYlKy+64vy5s/66hkc6XQ6b62Ykgt1qplQsYLbasZktpJORxGws2dnU2Nj7v2VaDPwxMeFzezwtmWxqfUKZ9VV7bkctl8dslopQPhk/tsrrvb58g/8BcT9SrA/+Gd4AAAAASUVORK5CYII="},"4c7b":function(t,i,e){},"4cee":function(t,i,e){"use strict";e.r(i);var n=function(){var t=this,i=t.$createElement,e=t._self._c||i;return e("div",{class:t.bgStyle?"pageOn":"",style:{marginLeft:t.prConfig+"px",marginRight:t.prConfig+"px",marginTop:t.slider+"px",background:t.bgColor}},[t.isOne?e("div",{staticClass:"mobile-page"},[e("div",{staticClass:"list_menu"},t._l(t.vuexMenu,(function(i,n){return e("div",{key:n,staticClass:"item",class:1===t.number?"four":2===t.number?"five":""},[e("div",{staticClass:"img-box",class:t.menuStyle?"on":""},[i.img?e("img",{attrs:{src:i.img,alt:""}}):e("div",{staticClass:"empty-box on"},[e("span",{staticClass:"iconfont-diy icontupian"})])]),t._v(" "),e("p",{style:{color:t.txtColor}},[t._v(t._s(i.info[0].value))])])})),0)]):e("div",{staticClass:"mobile-page"},[e("div",{staticClass:"home_menu"},t._l(t.vuexMenu,(function(i,n){return e("div",{key:n,staticClass:"menu-item"},[e("div",{staticClass:"img-box",class:t.menuStyle?"on":""},[i.img?e("img",{attrs:{src:i.img,alt:""}}):e("div",{staticClass:"empty-box on"},[e("span",{staticClass:"iconfont-diy icontupian"})])]),t._v(" "),e("p",{style:{color:t.txtColor}},[t._v(t._s(i.info[0].value))])])})),0)])])},a=[],o=(e("ac6a"),e("456d"),e("5530")),s=e("2f62"),c={name:"home_menu",cname:"导航组",icon:"icondaohangzu2",configName:"c_home_menu",type:0,defaultName:"menus",props:{index:{type:null},num:{type:null}},computed:Object(o["a"])({},Object(s["d"])("mobildConfig",["defaultArray"])),watch:{pageData:{handler:function(t,i){this.setConfig(t)},deep:!0},num:{handler:function(t,i){var e=this.$store.state.mobildConfig.defaultArray[t];this.setConfig(e)},deep:!0},defaultArray:{handler:function(t,i){var e=this.$store.state.mobildConfig.defaultArray[this.num];this.setConfig(e)},deep:!0}},data:function(){return{defaultConfig:{name:"menus",timestamp:this.num,setUp:{tabVal:"0"},tabConfig:{title:"展示样式",tabVal:0,type:1,tabList:[{name:"单行展示",icon:"icondanhang"},{name:"多行展示",icon:"iconduohang"}]},rowsNum:{title:"显示行数",name:"rowsNum",type:0,list:[{val:"2行",icon:"icon2hang"},{val:"3行",icon:"icon3hang"},{val:"4行",icon:"icon4hang"}]},menuStyle:{title:"图标样式",name:"menuStyle",type:0,list:[{val:"方形",icon:"iconPic_square"},{val:"圆形",icon:"icondayuanjiao"}]},number:{title:"显示个数",name:"number",type:0,list:[{val:"3个",icon:"icon3ge"},{val:"4个",icon:"icon4ge1"},{val:"5个",icon:"icon5ge1"}]},bgStyle:{title:"背景样式",name:"bgStyle",type:0,list:[{val:"直角",icon:"iconPic_square"},{val:"圆角",icon:"iconPic_fillet"}]},prConfig:{title:"背景边距",val:0,min:0},menuConfig:{title:"最多可添加1张图片,建议宽度90 * 90px",maxList:100,list:[{img:"",info:[{title:"标题",value:"今日推荐",tips:"选填,不超过4个字",max:4},{title:"链接",value:"",tips:"请输入链接",max:100}]},{img:"",info:[{title:"标题",value:"热门榜单",tips:"选填,不超过4个字",max:4},{title:"链接",value:"",tips:"请输入链接",max:100}]},{img:"",info:[{title:"标题",value:"首发新品",tips:"选填,不超过4个字",max:4},{title:"链接",value:"",tips:"请输入链接",max:100}]},{img:"",info:[{title:"标题",value:"促销单品",tips:"选填,不超过4个字",max:4},{title:"链接",value:"",tips:"请输入链接",max:100}]}]},bgColor:{title:"背景颜色",name:"bgColor",default:[{item:"#fff"}],color:[{item:"#fff"}]},titleColor:{title:"文字颜色",name:"themeColor",default:[{item:"#333333"}],color:[{item:"#333333"}]},mbConfig:{title:"页面间距",val:0,min:0}},vuexMenu:"",txtColor:"",boxStyle:"",slider:"",bgColor:"",menuStyle:0,isOne:0,number:0,rowsNum:0,pageData:{},bgStyle:0,prConfig:0}},mounted:function(){var t=this;this.$nextTick((function(){t.pageData=t.$store.state.mobildConfig.defaultArray[t.num],t.setConfig(t.pageData)}))},methods:{objToArr:function(t){var i=Object.keys(t),e=i.map((function(i){return t[i]}));return e},setConfig:function(t){if(t&&t.mbConfig){this.txtColor=t.titleColor.color[0].item,this.menuStyle=t.menuStyle.type,this.slider=t.mbConfig.val,this.bgStyle=t.bgStyle.type,this.prConfig=t.prConfig.val,this.bgColor=t.bgColor.color[0].item,this.isOne=t.tabConfig.tabVal;var i=t.rowsNum.type,e=t.number.type,n=this.objToArr(t.menuConfig.list);this.number=e,this.rowsNum=i;var a=[];a=0===i?0===e?n.splice(0,6):1===e?n.splice(0,8):n.splice(0,10):1===i?0===e?n.splice(0,9):1===e?n.splice(0,12):n.splice(0,15):0===e?n.splice(0,12):1===e?n.splice(0,16):n.splice(0,20),this.vuexMenu=a}}}},l=c,r=(e("1aff"),e("2877")),f=Object(r["a"])(l,n,a,!1,null,"ab92431c",null);i["default"]=f.exports},"4d0a":function(t,i,e){"use strict";e.r(i);var n=function(){var t=this,i=t.$createElement,n=t._self._c||i;return n("div",{staticClass:"page-count",class:t.bgStyle?"":"pageOn",style:{marginLeft:t.prConfig+"px",marginRight:t.prConfig+"px",marginTop:t.slider+"px",background:t.colorShow?t.bgColor:"transparent"}},[n("div",{staticClass:"home_topic"},[n("div",{staticClass:"title-wrapper",class:t.bgStyle?"":"presellOn"},[n("img",{attrs:{src:e("6472"),alt:""}}),t._v(" "),t._m(0)]),t._v(" "),1==t.isOne?n("div",{staticClass:"mobile-page"},[n("div",{staticClass:"home_menu"},t._l(t.vuexMenu,(function(i,e){return n("div",{key:e,staticClass:"menu-item"},[n("div",{staticClass:"img-box"},[i.img?n("img",{attrs:{src:i.img,alt:""}}):n("div",{staticClass:"empty-box",class:t.conStyle?"":"pageOn"},[n("span",{staticClass:"iconfont-diy icontupian"})])])])})),0)]):n("div",{staticClass:"mobile-page"},[n("div",{staticClass:"list_menu"},t._l(t.vuexMenu,(function(i,e){return e<1?n("div",{key:e,staticClass:"item"},[n("div",{staticClass:"img-box"},[i.img?n("img",{attrs:{src:i.img,alt:""}}):n("div",{staticClass:"empty-box",class:t.conStyle?"":"pageOn"},[n("span",{staticClass:"iconfont-diy icontupian"})])])]):t._e()})),0)]),t._v(" "),t.isOne>1&&t.pointerStyle<2?n("div",{staticClass:"dot",class:{"line-dot":0===t.pointerStyle,"":1===t.pointerStyle},style:{justifyContent:1===t.dotPosition?"center":2===t.dotPosition?"flex-end":"flex-start"}},[n("div",{staticClass:"dot-item",style:{background:""+t.pointerColor}}),t._v(" "),n("div",{staticClass:"dot-item"}),t._v(" "),n("div",{staticClass:"dot-item"})]):t._e()])])},a=[function(){var t=this,i=t.$createElement,e=t._self._c||i;return e("div",{staticClass:"right"},[t._v("进入专场 "),e("span",{staticClass:"iconfont-diy iconjinru"})])}],o=(e("ac6a"),e("456d"),e("5530")),s=e("2f62"),c={name:"home_topic",cname:"专场",icon:"iconzhuanti",configName:"c_home_topic",type:1,defaultName:"topic",props:{index:{type:null},num:{type:null}},computed:Object(o["a"])({},Object(s["d"])("mobildConfig",["defaultArray"])),watch:{pageData:{handler:function(t,i){this.setConfig(t)},deep:!0},num:{handler:function(t,i){var e=this.$store.state.mobildConfig.defaultArray[t];this.setConfig(e)},deep:!0},defaultArray:{handler:function(t,i){var e=this.$store.state.mobildConfig.defaultArray[this.num];this.setConfig(e)},deep:!0}},data:function(){return{defaultConfig:{name:"topic",timestamp:this.num,setUp:{tabVal:"0"},bgStyle:{title:"背景样式",name:"bgStyle",type:0,list:[{val:"直角",icon:"iconPic_square"},{val:"圆角",icon:"iconPic_fillet"}]},conStyle:{title:"内容样式",name:"conStyle",type:1,list:[{val:"直角",icon:"iconPic_square"},{val:"圆角",icon:"iconPic_fillet"}]},colorShow:{title:"是否显示背景色",val:!0},bgColor:{title:"背景颜色",name:"bgColor",default:[{item:"#fff"}],color:[{item:"#fff"}]},pointerStyle:{title:"指示器样式",name:"pointerStyle",type:0,list:[{val:"长条",icon:"iconSquarepoint"},{val:"圆形",icon:"iconDot"},{val:"无指示器",icon:"iconjinyong"}]},txtStyle:{title:"指示器位置",type:0,list:[{val:"居左",icon:"icondoc_left"},{val:"居中",icon:"icondoc_center"},{val:"居右",icon:"icondoc_right"}]},prConfig:{title:"背景边距",val:0,min:0},menuConfig:{title:"最多可添加10张照片,建议宽度750px;鼠标拖拽左侧圆点可调整图片顺序",maxList:10,list:[{img:"",info:[{title:"标题",value:"",tips:"选填,不超过6个字",max:4},{title:"链接",value:"",tips:"请输入链接",max:100}]}]},pointerColor:{title:"指示器颜色",name:"pointerColor",default:[{item:"#f44"}],color:[{item:"#f44"}]},mbConfig:{title:"页面间距",val:0,min:0}},vuexMenu:"",txtColor:"",boxStyle:"",slider:"",bgColor:"",isOne:0,pointerStyle:0,pointerColor:"",pageData:{},bgStyle:1,conStyle:1,colorShow:1,prConfig:0,dotPosition:0}},mounted:function(){var t=this;this.$nextTick((function(){t.pageData=t.$store.state.mobildConfig.defaultArray[t.num],t.setConfig(t.pageData)}))},methods:{objToArr:function(t){var i=Object.keys(t),e=i.map((function(i){return t[i]}));return e},setConfig:function(t){if(t&&t.mbConfig){this.pointerStyle=t.pointerStyle.type,this.pointerColor=t.pointerColor.color[0].item,this.dotPosition=t.txtStyle.type,this.colorShow=t.colorShow.val,this.slider=t.mbConfig.val,this.bgStyle=t.bgStyle.type,this.conStyle=t.conStyle.type,this.prConfig=t.prConfig.val,this.bgColor=t.bgColor.color[0].item;var i=this.objToArr(t.menuConfig.list);this.isOne=i.length,this.vuexMenu=i.splice(0,6)}}}},l=c,r=(e("a2ba"),e("2877")),f=Object(r["a"])(l,n,a,!1,null,"558bc715",null);i["default"]=f.exports},"4d57":function(t,i,e){"use strict";e("5656")},"4e36":function(t,i,e){"use strict";e("9d88")},"500d":function(t,i,e){"use strict";e.r(i);var n=function(){var t=this,i=t.$createElement,e=t._self._c||i;return t.configData?e("div",{staticClass:"upload_img"},[e("div",{staticClass:"header"},[t._v(t._s(t.configData.header))]),t._v(" "),e("div",{staticClass:"title"},[t._v(t._s(t.configData.title))]),t._v(" "),e("div",{staticClass:"box",on:{click:t.modalPicTap}},[t.configData.url?e("img",{attrs:{src:t.configData.url,alt:""}}):e("div",{staticClass:"upload-box"},[e("i",{staticClass:"iconfont iconjiahao",staticStyle:{"font-size":"30px"}}),t._v("添加图片")]),t._v(" "),t.configData.url&&t.configData.type?e("span",{staticClass:"iconfont-diy icondel_1",on:{click:function(i){return i.stopPropagation(),t.bindDelete(i)}}}):t._e()]),t._v(" "),e("div",[e("el-dialog",{attrs:{visible:t.modalPic,width:"950px",title:t.configData.header?t.configData.header:"上传图片"},on:{"update:visible":function(i){t.modalPic=i}}},[t.modalPic?e("uploadPictures",{attrs:{isChoice:t.isChoice,gridBtn:t.gridBtn,gridPic:t.gridPic},on:{getPic:t.getPic}}):t._e()],1)],1)]):t._e()},a=[],o=e("5530"),s=e("2f62"),c=e("b5b8"),l={name:"c_upload_img",components:{uploadPictures:c["default"]},computed:Object(o["a"])({},Object(s["d"])({tabVal:function(t){return t.admin.mobildConfig.searchConfig.data.tabVal}})),props:{configObj:{type:Object},configNme:{type:String}},data:function(){return{defaultList:[{name:"a42bdcc1178e62b4694c830f028db5c0",url:"https://o5wwk8baw.qnssl.com/a42bdcc1178e62b4694c830f028db5c0/avatar"},{name:"bc7521e033abdd1e92222d733590f104",url:"https://o5wwk8baw.qnssl.com/bc7521e033abdd1e92222d733590f104/avatar"}],defaults:{},configData:{},modalPic:!1,isChoice:"单选",gridBtn:{xl:4,lg:8,md:8,sm:8,xs:8},gridPic:{xl:6,lg:8,md:12,sm:12,xs:12},activeIndex:0}},watch:{configObj:{handler:function(t,i){this.defaults=t,this.configData=t[this.configNme]},immediate:!0,deep:!0}},created:function(){this.defaults=this.configObj,this.configData=this.configObj[this.configNme]},methods:{bindDelete:function(){this.configData.url=""},modalPicTap:function(){var t=this;this.$modalUpload((function(i){t.configData.url=i[0]}))},addCustomDialog:function(t){window.UE.registerUI("test-dialog",(function(t,i){var e=new window.UE.ui.Dialog({iframeUrl:"/admin/widget.images/index.html?fodder=dialog",editor:t,name:i,title:"上传图片",cssRules:"width:1200px;height:500px;padding:20px;"});this.dialog=e;var n=new window.UE.ui.Button({name:"dialog-button",title:"上传图片",cssRules:"background-image: url(../../../assets/images/icons.png);background-position: -726px -77px;",onclick:function(){e.render(),e.open()}});return n}),37)},getPic:function(t){var i=this;this.$nextTick((function(){i.configData.url=t.att_dir,i.modalPic=!1}))}}},r=l,f=(e("c5f3"),e("2877")),d=Object(f["a"])(r,n,a,!1,null,"279b1e0a",null);i["default"]=d.exports},5025:function(t,i,e){"use strict";e("d19c")},"504e":function(t,i,e){},5212:function(t,i,e){"use strict";e("033f")},5413:function(t,i,e){"use strict";e.r(i);var n=function(){var t=this,i=t.$createElement,e=t._self._c||i;return e("div",{staticClass:"slider-box"},[e("div",{staticClass:"c_row-item"},[t.configData.title?e("el-col",{staticClass:"label",attrs:{span:4}},[t._v("\n "+t._s(t.configData.title)+"\n ")]):t._e(),t._v(" "),e("el-col",{staticClass:"slider-box",attrs:{span:19}},[e("Select",{on:{change:t.sliderChange},model:{value:t.configData.activeValue,callback:function(i){t.$set(t.configData,"activeValue",i)},expression:"configData.activeValue"}},t._l(t.configData.list,(function(i,n){return e("Option",{key:n,attrs:{value:i.activeValue}},[t._v(t._s(i.title))])})),1)],1)],1)])},a=[],o={name:"c_select",props:{configObj:{type:Object},configNme:{type:String},number:{type:null}},data:function(){return{defaults:{},configData:{},timeStamp:""}},mounted:function(){var t=this;this.$nextTick((function(){t.defaults=t.configObj,t.configData=t.configObj[t.configNme]}))},watch:{configObj:{handler:function(t,i){this.defaults=t,this.configData=t[this.configNme]},deep:!0},number:function(t){this.timeStamp=t}},methods:{sliderChange:function(t){var i=window.localStorage;this.configData.activeValue=t||i.getItem(this.timeStamp),this.$emit("getConfig",{name:"select",values:t})}}},s=o,c=(e("957c3"),e("2877")),l=Object(c["a"])(s,n,a,!1,null,"a9cfff72",null);i["default"]=l.exports},5564:function(t,i,e){"use strict";e.r(i);var n=function(){var t=this,i=t.$createElement,e=t._self._c||i;return e("div",{staticClass:"mobile-config"},[t._l(t.rCom,(function(i,n){return e("div",{key:n},[e(i.components.name,{key:n,ref:"childData",refInFor:!0,tag:"component",attrs:{configObj:t.configObj,configNme:i.configNme,index:t.activeIndex,num:i.num},on:{getConfig:t.getConfig}})],1)})),t._v(" "),e("rightBtn",{attrs:{activeIndex:t.activeIndex,configObj:t.configObj}})],2)},a=[],o=e("5530"),s=e("fd0b"),c=e("befa"),l=(e("2f62"),{name:"c_auxiliary_box",componentsName:"auxiliary_box",components:Object(o["a"])(Object(o["a"])({},s["a"]),{},{rightBtn:c["a"]}),props:{activeIndex:{type:null},num:{type:null},index:{type:null}},data:function(){return{configObj:{},rCom:[{components:s["a"].c_bg_color,configNme:"bgColor"},{components:s["a"].c_slider,configNme:"heightConfig"}]}},watch:{num:function(t){var i=JSON.parse(JSON.stringify(this.$store.state.mobildConfig.defaultArray[t]));this.configObj=i},configObj:{handler:function(t,i){this.$store.commit("mobildConfig/UPDATEARR",{num:this.num,val:t})},deep:!0}},mounted:function(){var t=this;this.$nextTick((function(){var i=JSON.parse(JSON.stringify(t.$store.state.mobildConfig.defaultArray[t.num]));t.configObj=i}))},methods:{getConfig:function(t){}}}),r=l,f=e("2877"),d=Object(f["a"])(r,n,a,!1,null,"d0bf3db4",null);i["default"]=d.exports},"556c":function(t,i,e){"use strict";e("0a0b")},"563a":function(t,i,e){"use strict";e("d806")},5656:function(t,i,e){},"58f1":function(t,i,e){"use strict";e.r(i);var n=function(){var t=this,i=t.$createElement,e=t._self._c||i;return t.configData?e("div",{staticClass:"txt_tab"},[e("div",{staticClass:"c_row-item"},[e("el-row",{staticClass:"c_label"},[t._v("\n "+t._s(t.configData.title)+"\n "),e("span",[t._v(t._s(t.configData.list[t.configData.type].val))])]),t._v(" "),e("el-row",{staticClass:"color-box"},[e("el-radio-group",{attrs:{type:"button"},on:{change:function(i){return t.radioChange(i)}},model:{value:t.configData.type,callback:function(i){t.$set(t.configData,"type",i)},expression:"configData.type"}},t._l(t.configData.list,(function(i,n){return e("el-radio",{key:n,attrs:{label:n}},[i.icon?e("span",{staticClass:"iconfont-diy",class:i.icon}):e("span",[t._v(t._s(i.val))])])})),1)],1)],1)]):t._e()},a=[],o=(e("7f7f"),{name:"c_txt_tab",props:{configObj:{type:Object},configNme:{type:String}},data:function(){return{defaults:{},configData:{}}},created:function(){this.defaults=this.configObj,this.configData=this.configObj[this.configNme]},watch:{configObj:{handler:function(t,i){this.defaults=t,this.configData=t[this.configNme]},immediate:!0,deep:!0}},methods:{radioChange:function(t){"itemSstyle"!==this.configData.name&&"bgStyle"!==this.configData.name&&"conStyle"!==this.configData.name&&this.$emit("getConfig",{name:"radio",values:t})}}}),s=o,c=(e("a938"),e("2877")),l=Object(c["a"])(s,n,a,!1,null,"42995300",null);i["default"]=l.exports},"5b5b":function(t,i){t.exports="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAARAAAABICAMAAAAJfloJAAAAxlBMVEUAAAAoKCgoKCgoKCgoKCgoKCggICAnJycnJycnJycoKCglJSUoKCgoKCgnJycnJycnJycnJycoKCgmJiYoKCgnJycnJycoKCgnJyd8AP8nJyd7AP8hISEAAAB8AP8nJycnJycnJycmJiZ7AP8jIyN7AP8mJiYhISF7AP98AP98AP97AP96AP98AP97AP8oKCgnJyd8AP97AP97AP98AP8kJCR8AP90AP8nJyd7AP97AP8mJiZ7AP97AP+AAP97AP8oKCh8AP8612LVAAAAQHRSTlMAwIBAfz8QqPGQoDAgYI/vcNDNUOCXkd+wwM+KBwHl6aN0a2kcfEgX7aRXTCLbyMavll9ENSUaC9e8rVorKBKqeaPYbgAABepJREFUeNrtm31f0zAQgC8Ji311nUU3QEVRwTcERfFds+//pfwxtrs2aeklHTj49fnLdrRJnuYul27CwMDAwMCNc3/FAbA5vF+5aqM46N8vs0IAG2l8r0pHS1Lw5fER8BHYrw0XgleMtY+L9Kc8Mc/XKsS0IW9UiI7MkgQuORIdnEyX1xR3UUjlkgwWvDRcaIZkW21kt05Ihlck4UKUaUPdOiGQUBYZhFyQUsuDkAUTs2TqJ2T/57UI2ZZLUMgyRRnsZ0ueglzYTA0yFlcQQ4Wces8Tsv9NPDxQGoAlRJkruWcLEfYJ2XULRfMhAPcxaSutWjzAjx9CjTsrBGY4q9hC+NxGIZWYGYTUYyYehNSXgN1ByIJMrbgGIam4IMJVVeAxW4hWF1DuXxwWrpBcENgMNWyz7V2k9BfiTkKJx3whl1gCFB0zmqXbEPJ2CMEC6j8J+bizZG/5Vzb7eNUDaVOuXwixDiFTgxRMIS/mKz4tXv0YH575CylvVIghFDdknq6EHAcK0aMryeoC1MYLeTVf8d5fCPWsYzzmvwtJuULeo5AXd05IZgj+u4EPKyE7GyGEtv/9haggIRQzfzZBSHgd0jFk9qcUM5+8l11/Ibq/EGALiQ2S8IXQOvPXuzDzFwI3JMSty/hC3qyEvA4SklHQUxog1JqEZAFCxgZRHkKoNvvVp3RP26cn9T4KFkK3YAvRhvDJML9o4e0jhLafZbsQ0V+IYAvJDSK8Ui4K2esjZEaJ8zqElP5CEoNIHyGUVb/3EEIBO7niWcXBQiTegi1kbJDURwiVZk97CMlYCV12CtkdLWkTIrlCUoNs+1UpbzBmeggp6Glc0XYOgaU7RWTJFVIYJPYTsodCzgHgkFmYWalzl55GunVJQ35RwUJov8wVsmsQFSrkMwA8MjySlogp8N+lWyHpUCGUEIApJDXIxLOwp93MWbCQorrGbONfOFVmsBAsQ7hCEoPkwULehQqh+TmjPcTYqZBEsBBauJlCtEEiHSzkbagQipiy0llldz4OFlLgIVNIYd0hKIeEC0nqC1xUH3+O+aVbyEQtqQ8nQeE8IXrqTBC+kI+9Q0aPMVyrq8rU3oanEFiYUUhqnhBpTZDAOuSs2nujmoiahBRWBVTUBQhMiKFCNC0YLCHZmIoy7S3kQ8uy+wQaaBQytfK5qucMTLjBQkrMQjwhiV2DhO1l5udhQnLn+ZlqzKSoK1gIBR1LiDLIDPyFzBEIEzJtzRFZLaCyYCFTCklXCC+j8oX8Rh9Pw4TkbvqKq2uCwGZDhaR4wBJyagWMp5C3KOR7kBA9ddNXSSFPCTEPEpKMSvQbaY4Qae3qfIVQGbIXJETWe6ZHo3zrtPITnBynu6cQOjXFNjuEOAkkRMgOfQ8RIIQGNzYNaPpcsoVko2JLGERgTGYMISn1Y6JDhHydI79DhbRTUlWfsYSMhSNWTPGBdwhxfIQIeYc+Xlvf7sAahMTYroR2IUK034SmXpR1CKn7iFIIEkKF+xuOEOMnROgxZtx2IYZFAR1CmD7cF0iz5rLsLUPIkWncubZDC3BfIcLezbpCcm68YK53Z+/nOfKHIUS6NxG80QQKmSTN72pPXSE6MWwfestUUI2L7g/oFJI9MkhpDY5+/RhLqdTEIBj+iB6zhAipaCrkbePBcNl1tuIuufXfJNxy9pj2/rYQYfPNVMiwI2pB2jiV7NGMLiip61vNQiIhc0U3cnd1xHZD+sg5mbS5fDuz1hj2+5ATuBolF9gtGotD62wkZrJQ2hlCAm1CYuf8JAWuEHf6/nC+x4wNi0NgYScQuy+wYBFmBc6yGtJKCaplNNYrNg8hJRDnc+S9l5DnwMMOUeeFaScSfTQKyfE8Tg8/IZFq3sfsgE/IHAATuyAwNWbQjSQfrpAor5+PCobeKlGc1cr219ZPIVgzZD/5AlzsAskKfwYSfThCRGHNnFhDB7moIpWGlt/KHH+FJV9UByl4gD4cIZM4Aw5ypoGDMkkGmw/6CIY7G4+O4DZwCAMDA+vlH3+tPTTLcnruAAAAAElFTkSuQmCC"},"5ffd":function(t,i,e){},"608a":function(t,i,e){},"60e2":function(t,i,e){"use strict";e.r(i);var n=function(){var t=this,i=t.$createElement,e=t._self._c||i;return e("div",{staticClass:"mobile-page"},[t.isUpdate?e("div",[e("el-divider"),t._v(" "),e("div",{staticClass:"title"},[t._v("布局")]),t._v(" "),e("div",{staticClass:"tip"},[t._v("选定布局区域,在下方添加图片,建议添加比例一致的图片")]),t._v(" "),e("div",{staticClass:"advert"},[t._l(t.configData.picList,(function(i,n){return 0===t.style?e("div",{key:n,staticClass:"advertItem01 acea-row"},[i.image?e("img",{attrs:{src:i.image}}):e("div",{staticClass:"empty-box"},[t._v("尺寸不限")])]):t._e()})),t._v(" "),1===t.style?e("div",{staticClass:"advertItem02 acea-row"},t._l(t.configData.picList,(function(i,n){return e("div",{staticClass:"item",class:t.currentIndex===n?"on":"",on:{click:function(i){return t.currentTab(n,t.configData)}}},[i.image?e("img",{attrs:{src:i.image}}):e("div",{staticClass:"empty-box"},[t._m(0,!0)])])})),0):t._e(),t._v(" "),2===t.style?e("div",{staticClass:"advertItem02 advertItem03 acea-row"},t._l(t.configData.picList,(function(i,n){return e("div",{staticClass:"item",class:t.currentIndex===n?"on":"",on:{click:function(i){return t.currentTab(n,t.configData)}}},[i.image?e("img",{attrs:{src:i.image}}):e("div",{staticClass:"empty-box"},[t._m(1,!0)])])})),0):t._e(),t._v(" "),3===t.style?e("div",{staticClass:"advertItem04 acea-row"},[e("div",{staticClass:"item",class:0===t.currentIndex?"on":"",on:{click:function(i){return t.currentTab(0,t.configData)}}},[t.configData.picList[0].image?e("img",{attrs:{src:t.configData.picList[0].image}}):e("div",{staticClass:"empty-box"},[t._v("375*375像素或同比例")])]),t._v(" "),e("div",{staticClass:"item"},[e("div",{staticClass:"pic",class:1===t.currentIndex?"on":"",on:{click:function(i){return t.currentTab(1,t.configData)}}},[t.configData.picList[1].image?e("img",{attrs:{src:t.configData.picList[1].image}}):e("div",{staticClass:"empty-box"},[t._v("375*188像素或同比例")])]),t._v(" "),e("div",{staticClass:"pic",class:2===t.currentIndex?"on":"",on:{click:function(i){return t.currentTab(2,t.configData)}}},[t.configData.picList[2].image?e("img",{attrs:{src:t.configData.picList[2].image}}):e("div",{staticClass:"empty-box"},[t._v("375*188像素或同比例")])])])]):t._e(),t._v(" "),4===t.style?e("div",{staticClass:"advertItem02 advertItem05 acea-row"},t._l(t.configData.picList,(function(i,n){return e("div",{staticClass:"item",class:t.currentIndex===n?"on":"",on:{click:function(i){return t.currentTab(n,t.configData)}}},[i.image?e("img",{attrs:{src:i.image}}):e("div",{staticClass:"empty-box"},[t._v("宽188像素高度不限")])])})),0):t._e(),t._v(" "),5===t.style?e("div",{staticClass:"advertItem06 acea-row"},t._l(t.configData.picList,(function(i,n){return e("div",{staticClass:"item",class:t.currentIndex===n?"on":"",on:{click:function(i){return t.currentTab(n,t.configData)}}},[i.image?e("img",{attrs:{src:i.image}}):e("div",{staticClass:"empty-box"},[t._v("375*188像素或同比例")])])})),0):t._e()],2)],1):t._e()])},a=[function(){var t=this,i=t.$createElement,e=t._self._c||i;return e("div",[e("div",[t._v("宽375像素")]),t._v(" "),e("div",[t._v("高度不限")])])},function(){var t=this,i=t.$createElement,e=t._self._c||i;return e("div",[e("div",[t._v("宽250像素")]),t._v(" "),e("div",[t._v("高度不限")])])}],o=(e("b54a"),{name:"c_pictrue",props:{configObj:{type:Object},configNme:{type:String}},data:function(){return{defaults:{},configData:{},style:0,isUpdate:!1,currentIndex:0,arrayObj:{image:"",link:""}}},mounted:function(){var t=this;this.$nextTick((function(){t.defaults=t.configObj,t.configObj.hasOwnProperty("timestamp")?t.isUpdate=!0:t.isUpdate=!1,t.$set(t,"configData",t.configObj[t.configNme])}))},watch:{configObj:{handler:function(t,i){this.defaults=t,this.$set(this,"configData",t[this.configNme]),this.style=t.tabConfig.tabVal,this.isUpdate=!0,this.$set(this,"isUpdate",!0)},deep:!0},"configObj.tabConfig.tabVal":{handler:function(t,i){this.count=this.defaults.tabConfig.tabList[t].count,this.picArrayConcat(this.count),this.configData.picList.splice(t+1),this.currentIndex=0;var e=this.defaults.menuConfig.list[0];this.configData.picList[0]&&(e.img=this.configData.picList[0].image,e.info[0].value=this.configData.picList[0].link)},deep:!0}},methods:{currentTab:function(t,i){if(this.currentIndex=t,this.configData.tabVal=t,this.defaults.menuConfig.isCube){var e=this.defaults.menuConfig.list[0];i.picList[t]&&i.picList[t].image?(e.img=i.picList[t].image,e.info[0].value=i.picList[t].link):(e.img="",e.info[0].value="")}},picArrayConcat:function(t){for(var i=this.configData.picList.length;i\n
\n ');return i.call(this,n,t)}return Object(b["a"])(e,[{key:"clickHandler",value:function(){x.$emit("Video")}},{key:"tryChangeActive",value:function(){this.active()}}]),e}(w)),A=(h.a.$,h.a.BtnMenu),O=(h.a.DropListMenu,h.a.PanelMenu,h.a.DropList,h.a.Panel,h.a.Tooltip,function(t){Object(C["a"])(e,t);var i=Object(_["a"])(e);function e(t){Object(v["a"])(this,e),t;var n=h.a.$('
\n
HTML
\n
');return i.call(this,n,t)}return Object(b["a"])(e,[{key:"clickHandler",value:function(){x.$emit("Html")}},{key:"tryChangeActive",value:function(){this.active()}}]),e}(A)),k=e("b5b8"),j=e("4553"),D={name:"Index",components:{uploadPictures:k["default"],uploadVideo:j["default"],monaco:g},props:{content:{type:String,default:""}},data:function(){return{monacoBox:!1,value:"",modalPic:!1,isChoice:"多选",picTit:"danFrom",img:"",modalVideo:!1,editor:null,uploadSize:2,video:"",newHtml:""}},computed:{initEditor:function(){return this.content&&this.editor}},watch:{initEditor:function(t){t&&this.editor.txt.html(this.content)}},created:function(){},mounted:function(){var t=this;this.createEditor(),x.$on("Video",(function(i){t.getvideoint()})),x.$on("Html",(function(i){t.getHtmlint()}))},methods:{changeValue:function(t){this.newHtml=t,this.$emit("editorContent",t),this.$emit("input",t)},getPic:function(t){var i=this;i.img=t.att_dir,i.modalPic=!1,this.editor.cmd.do("insertHTML",''))},getimg:function(){var t=this;t.isChoice="多选",t.$modalUpload((function(i){i.map((function(i){t.editor.cmd.do("insertHTML",''))}))}))},getvideoint:function(){this.modalVideo=!0},getHtmlint:function(){this.monacoBox=!this.monacoBox,this.value=this.newHtml,this.monacoBox||this.editor.txt.html(this.newHtml)},getPicD:function(t){var i=this,e=this;e.modalPic=!1,t.map((function(t){i.editor.cmd.do("insertHTML",''))}))},getvideo:function(t){var i=this;i.modalVideo=!1,this.video=t,this.editor.cmd.do("insertHTML",'