修复导出问题 修复显示金额问题 提交前端页面
This commit is contained in:
parent
e323a58efc
commit
03ea6befcc
@ -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'];
|
||||
|
||||
|
@ -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');
|
||||
}
|
||||
}
|
||||
|
File diff suppressed because one or more lines are too long
1
public/mer/css/chunk-0fa0e81e.3f2a189e.css
Normal file
1
public/mer/css/chunk-0fa0e81e.3f2a189e.css
Normal file
@ -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}
|
1
public/mer/css/chunk-82bee4a8.4e2f1042.css
Normal file
1
public/mer/css/chunk-82bee4a8.4e2f1042.css
Normal file
File diff suppressed because one or more lines are too long
1
public/mer/css/chunk-dadf4114.3cf0a865.css
Normal file
1
public/mer/css/chunk-dadf4114.3cf0a865.css
Normal file
File diff suppressed because one or more lines are too long
1
public/mer/js/app.4dce0ecb.js
Normal file
1
public/mer/js/app.4dce0ecb.js
Normal file
File diff suppressed because one or more lines are too long
1
public/mer/js/chunk-00584afe.898df037.js
Normal file
1
public/mer/js/chunk-00584afe.898df037.js
Normal file
@ -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){}}]);
|
1
public/mer/js/chunk-02ea1cc8.43354ef1.js
Normal file
1
public/mer/js/chunk-02ea1cc8.43354ef1.js
Normal file
File diff suppressed because one or more lines are too long
1
public/mer/js/chunk-031de214.6fb1e28d.js
Normal file
1
public/mer/js/chunk-031de214.6fb1e28d.js
Normal file
File diff suppressed because one or more lines are too long
1
public/mer/js/chunk-03944393.ff24af19.js
Normal file
1
public/mer/js/chunk-03944393.ff24af19.js
Normal file
@ -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<this.tableData.data.length;i++)e.indexOf(this.tableData.data[i][t])>=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;a<e.multipleSelectionAll.length;a++)if(e.multipleSelectionAll[a][t]==l){e.multipleSelectionAll.splice(a,1);break}}))}},getList:function(){var t=this;this.listLoading=!0,Object(n["j"])(this.tableFrom).then((function(e){t.tableData.data=[],t.tableData.data=e.data.list,t.tableData.total=e.data.count,t.$nextTick((function(){this.setSelectRow()})),t.listLoading=!1})).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()}}},r=s,c=(i("26f0"),i("2877")),h=Object(c["a"])(r,l,a,!1,null,"35e2eac8",null);e["default"]=h.exports},"78e5":function(t,e,i){}}]);
|
1
public/mer/js/chunk-03cdbf88.e52a1e92.js
Normal file
1
public/mer/js/chunk-03cdbf88.e52a1e92.js
Normal file
File diff suppressed because one or more lines are too long
1
public/mer/js/chunk-048e53ee.5f1fb7c5.js
Normal file
1
public/mer/js/chunk-048e53ee.5f1fb7c5.js
Normal file
File diff suppressed because one or more lines are too long
1
public/mer/js/chunk-0493956f.a9987515.js
Normal file
1
public/mer/js/chunk-0493956f.a9987515.js
Normal file
File diff suppressed because one or more lines are too long
1
public/mer/js/chunk-09296115.e0e6e693.js
Normal file
1
public/mer/js/chunk-09296115.e0e6e693.js
Normal file
File diff suppressed because one or more lines are too long
1
public/mer/js/chunk-0b1f3772.be1a679e.js
Normal file
1
public/mer/js/chunk-0b1f3772.be1a679e.js
Normal file
File diff suppressed because one or more lines are too long
1
public/mer/js/chunk-0d2c1415.5b747251.js
Normal file
1
public/mer/js/chunk-0d2c1415.5b747251.js
Normal file
@ -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("<video src='"+this.formValidate.video_link+"' controls='controls'></video>",!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){}}]);
|
1
public/mer/js/chunk-0fa0e81e.b9a837bf.js
Normal file
1
public/mer/js/chunk-0fa0e81e.b9a837bf.js
Normal file
File diff suppressed because one or more lines are too long
1
public/mer/js/chunk-1306dfb6.61813016.js
Normal file
1
public/mer/js/chunk-1306dfb6.61813016.js
Normal file
File diff suppressed because one or more lines are too long
1
public/mer/js/chunk-1531c036.a2feb256.js
Normal file
1
public/mer/js/chunk-1531c036.a2feb256.js
Normal file
File diff suppressed because one or more lines are too long
1
public/mer/js/chunk-154b4748.e115ffee.js
Normal file
1
public/mer/js/chunk-154b4748.e115ffee.js
Normal file
File diff suppressed because one or more lines are too long
1
public/mer/js/chunk-18fda1e0.c63d5538.js
Normal file
1
public/mer/js/chunk-18fda1e0.c63d5538.js
Normal file
File diff suppressed because one or more lines are too long
1
public/mer/js/chunk-1df22872.51627dcd.js
Normal file
1
public/mer/js/chunk-1df22872.51627dcd.js
Normal file
@ -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")}}]);
|
1
public/mer/js/chunk-2d0ab2c5.d4aff2f3.js
Normal file
1
public/mer/js/chunk-2d0ab2c5.d4aff2f3.js
Normal file
File diff suppressed because one or more lines are too long
1
public/mer/js/chunk-2d0aba79.86e506e3.js
Normal file
1
public/mer/js/chunk-2d0aba79.86e506e3.js
Normal file
@ -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}}]);
|
1
public/mer/js/chunk-2d0aed35.1bbefe4d.js
Normal file
1
public/mer/js/chunk-2d0aed35.1bbefe4d.js
Normal file
@ -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}}]);
|
1
public/mer/js/chunk-2d0b1e40.303ffef9.js
Normal file
1
public/mer/js/chunk-2d0b1e40.303ffef9.js
Normal file
@ -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}}]);
|
1
public/mer/js/chunk-2d0ba554.5a041a10.js
Normal file
1
public/mer/js/chunk-2d0ba554.5a041a10.js
Normal file
@ -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}}]);
|
1
public/mer/js/chunk-2d0c212a.5c403140.js
Normal file
1
public/mer/js/chunk-2d0c212a.5c403140.js
Normal file
@ -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}}]);
|
1
public/mer/js/chunk-2d0c481a.5f8488b2.js
Normal file
1
public/mer/js/chunk-2d0c481a.5f8488b2.js
Normal file
@ -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}}]);
|
1
public/mer/js/chunk-2d0c8a44.c672b1f6.js
Normal file
1
public/mer/js/chunk-2d0c8a44.c672b1f6.js
Normal file
@ -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}}]);
|
1
public/mer/js/chunk-2d0d095b.21412df0.js
Normal file
1
public/mer/js/chunk-2d0d095b.21412df0.js
Normal file
@ -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}}]);
|
1
public/mer/js/chunk-2d0d3300.05afc9fd.js
Normal file
1
public/mer/js/chunk-2d0d3300.05afc9fd.js
Normal file
@ -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}}]);
|
1
public/mer/js/chunk-2d0e276e.c29634d9.js
Normal file
1
public/mer/js/chunk-2d0e276e.c29634d9.js
Normal file
@ -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}}]);
|
1
public/mer/js/chunk-2d0e5b8e.4311eddb.js
Normal file
1
public/mer/js/chunk-2d0e5b8e.4311eddb.js
Normal file
@ -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}}]);
|
1
public/mer/js/chunk-2d0e6675.21001b74.js
Normal file
1
public/mer/js/chunk-2d0e6675.21001b74.js
Normal file
@ -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}}]);
|
1
public/mer/js/chunk-2d207706.4b731c6b.js
Normal file
1
public/mer/js/chunk-2d207706.4b731c6b.js
Normal file
@ -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}}]);
|
1
public/mer/js/chunk-2d209391.50c64e39.js
Normal file
1
public/mer/js/chunk-2d209391.50c64e39.js
Normal file
@ -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}}]);
|
1
public/mer/js/chunk-2d213182.2ca9be60.js
Normal file
1
public/mer/js/chunk-2d213182.2ca9be60.js
Normal file
@ -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}}]);
|
1
public/mer/js/chunk-2d213ed3.2b57b666.js
Normal file
1
public/mer/js/chunk-2d213ed3.2b57b666.js
Normal file
@ -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}}]);
|
1
public/mer/js/chunk-2d21d8a3.f94570a6.js
Normal file
1
public/mer/js/chunk-2d21d8a3.f94570a6.js
Normal file
@ -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}}]);
|
1
public/mer/js/chunk-2d229240.228bfdae.js
Normal file
1
public/mer/js/chunk-2d229240.228bfdae.js
Normal file
@ -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}}]);
|
1
public/mer/js/chunk-2d230c26.bf8dc9a7.js
Normal file
1
public/mer/js/chunk-2d230c26.bf8dc9a7.js
Normal file
@ -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}}]);
|
1
public/mer/js/chunk-2dfb1ff5.91680270.js
Normal file
1
public/mer/js/chunk-2dfb1ff5.91680270.js
Normal file
File diff suppressed because one or more lines are too long
1
public/mer/js/chunk-2f105f7b.de54abc7.js
Normal file
1
public/mer/js/chunk-2f105f7b.de54abc7.js
Normal file
@ -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"}}]);
|
1
public/mer/js/chunk-32c5a54a.e9ffa7d8.js
Normal file
1
public/mer/js/chunk-32c5a54a.e9ffa7d8.js
Normal file
File diff suppressed because one or more lines are too long
1
public/mer/js/chunk-344a4872.9c147eac.js
Normal file
1
public/mer/js/chunk-344a4872.9c147eac.js
Normal file
File diff suppressed because one or more lines are too long
1
public/mer/js/chunk-35013ff2.ce5da46b.js
Normal file
1
public/mer/js/chunk-35013ff2.ce5da46b.js
Normal file
File diff suppressed because one or more lines are too long
1
public/mer/js/chunk-39a0bfcb.2d93639d.js
Normal file
1
public/mer/js/chunk-39a0bfcb.2d93639d.js
Normal file
File diff suppressed because one or more lines are too long
1
public/mer/js/chunk-3e2c114c.579c6fc1.js
Normal file
1
public/mer/js/chunk-3e2c114c.579c6fc1.js
Normal file
File diff suppressed because one or more lines are too long
1
public/mer/js/chunk-3ec8e821.8ce0b92e.js
Normal file
1
public/mer/js/chunk-3ec8e821.8ce0b92e.js
Normal file
File diff suppressed because one or more lines are too long
1
public/mer/js/chunk-406e1b8e.9ad6abde.js
Normal file
1
public/mer/js/chunk-406e1b8e.9ad6abde.js
Normal file
File diff suppressed because one or more lines are too long
1
public/mer/js/chunk-40dcbfe7.4a6b4314.js
Normal file
1
public/mer/js/chunk-40dcbfe7.4a6b4314.js
Normal file
File diff suppressed because one or more lines are too long
1
public/mer/js/chunk-412170ef.0ed401c5.js
Normal file
1
public/mer/js/chunk-412170ef.0ed401c5.js
Normal file
File diff suppressed because one or more lines are too long
1
public/mer/js/chunk-412d33f7.7b35c9be.js
Normal file
1
public/mer/js/chunk-412d33f7.7b35c9be.js
Normal file
@ -0,0 +1 @@
|
||||
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-412d33f7"],{"12e6":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",{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",{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.template_name,callback:function(e){t.$set(t.tableFrom,"template_name",e)},expression:"tableFrom.template_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-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:"template_id",label:"ID","min-width":"60"}}),t._v(" "),a("el-table-column",{attrs:{prop:"template_name",label:"参数模板名称","min-width":"60"}}),t._v(" "),a("el-table-column",{attrs:{prop:"sort",label:"排序","min-width":"60"}}),t._v(" "),a("el-table-column",{attrs:{prop:"create_time",label:"创建时间","min-width":"60"}}),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.template_id)}}},[t._v("编辑")]),t._v(" "),a("el-button",{attrs:{type:"text",size:"small"},on:{click:function(a){return t.onDetail(e.row.template_id)}}},[t._v("查看")]),t._v(" "),a("el-button",{attrs:{type:"text",size:"small"},on:{click:function(a){return t.handleDelete(e.row.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("el-dialog",{attrs:{title:t.title,visible:t.dialogVisible,width:"400px"},on:{"update:visible":function(e){t.dialogVisible=e}}},[a("div",{staticStyle:{"min-height":"500px"}},[a("div",{staticClass:"description"},[a("div",{staticClass:"acea-row"},t._l(t.specsInfo.parameter,(function(e,i){return a("div",{key:i,staticClass:"description-term"},[a("span",{staticClass:"name"},[t._v(t._s(e.name))]),t._v(" "),a("span",{staticClass:"value"},[t._v(t._s(e.value))])])})),0)])])])],1)},n=[],s=(a("ac6a"),a("83d6")),l=a("c4c8"),o={name:"SpecsList",data:function(){return{listLoading:!0,cateList:[],tableData:{data:[],total:0},tableFrom:{page:1,limit:20},specsInfo:{},dialogVisible:!1,title:""}},mounted:function(){this.getCategorySelect(),this.getList("")},methods:{getList:function(t){var e=this;this.listLoading=!0,this.tableFrom.page=t||this.tableFrom.page,Object(l["kb"])(this.tableFrom).then((function(t){t.data.list.forEach((function(t,e){t.cate_name=[],t.cateId.forEach((function(e,a){t.cate_name.push(e.category.cate_name)}))})),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("")},getCategorySelect:function(){var t=this;Object(l["q"])().then((function(e){t.cateList=e.data})).catch((function(e){t.$message.error(e.message)}))},onAdd:function(){this.$router.push("".concat(s["roterPre"],"/product/specs/create"))},onEdit:function(t){this.$router.push("".concat(s["roterPre"],"/product/specs/create/").concat(t))},onDetail:function(t){var e=this;Object(l["xb"])(t).then((function(t){e.specsInfo=t.data,e.title=t.data.template_name,e.dialogVisible=!0})).catch((function(t){e.$message.error(t.message)}))},handleDelete:function(t,e){var a=this;this.$modalSure("确定删除该模板").then((function(){Object(l["yb"])(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)}))}))}}},c=o,r=(a("b28c"),a("2877")),u=Object(r["a"])(c,i,n,!1,null,"8e659c8e",null);e["default"]=u.exports},"5ef1":function(t,e,a){},b28c:function(t,e,a){"use strict";a("5ef1")}}]);
|
1
public/mer/js/chunk-418fea3c.4f5f154e.js
Normal file
1
public/mer/js/chunk-418fea3c.4f5f154e.js
Normal file
File diff suppressed because one or more lines are too long
1
public/mer/js/chunk-4a9f6d94.28c8d3a1.js
Normal file
1
public/mer/js/chunk-4a9f6d94.28c8d3a1.js
Normal file
File diff suppressed because one or more lines are too long
1
public/mer/js/chunk-4bf3fbdc.387b018e.js
Normal file
1
public/mer/js/chunk-4bf3fbdc.387b018e.js
Normal file
File diff suppressed because one or more lines are too long
1
public/mer/js/chunk-4f7a44e8.9f4809f9.js
Normal file
1
public/mer/js/chunk-4f7a44e8.9f4809f9.js
Normal file
File diff suppressed because one or more lines are too long
1
public/mer/js/chunk-5310352e.3d869a07.js
Normal file
1
public/mer/js/chunk-5310352e.3d869a07.js
Normal file
File diff suppressed because one or more lines are too long
8
public/mer/js/chunk-546dc2ee.5589e620.js
Normal file
8
public/mer/js/chunk-546dc2ee.5589e620.js
Normal file
File diff suppressed because one or more lines are too long
1
public/mer/js/chunk-59e52b70.64a1c5d2.js
Normal file
1
public/mer/js/chunk-59e52b70.64a1c5d2.js
Normal file
File diff suppressed because one or more lines are too long
1
public/mer/js/chunk-5bb47ee8.64015763.js
Normal file
1
public/mer/js/chunk-5bb47ee8.64015763.js
Normal file
File diff suppressed because one or more lines are too long
1
public/mer/js/chunk-5ed4f497.4aa6070a.js
Normal file
1
public/mer/js/chunk-5ed4f497.4aa6070a.js
Normal file
File diff suppressed because one or more lines are too long
1
public/mer/js/chunk-6231f720.be2df439.js
Normal file
1
public/mer/js/chunk-6231f720.be2df439.js
Normal file
@ -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")}}]);
|
1
public/mer/js/chunk-634734f0.0fb76724.js
Normal file
1
public/mer/js/chunk-634734f0.0fb76724.js
Normal file
File diff suppressed because one or more lines are too long
1
public/mer/js/chunk-648f00b5.8a15369a.js
Normal file
1
public/mer/js/chunk-648f00b5.8a15369a.js
Normal file
File diff suppressed because one or more lines are too long
1
public/mer/js/chunk-67e1db22.26fdbdd5.js
Normal file
1
public/mer/js/chunk-67e1db22.26fdbdd5.js
Normal file
File diff suppressed because one or more lines are too long
1
public/mer/js/chunk-6a905886.7cc80d77.js
Normal file
1
public/mer/js/chunk-6a905886.7cc80d77.js
Normal file
File diff suppressed because one or more lines are too long
1
public/mer/js/chunk-6c88f67a.0e61d19c.js
Normal file
1
public/mer/js/chunk-6c88f67a.0e61d19c.js
Normal file
File diff suppressed because one or more lines are too long
1
public/mer/js/chunk-7288b5a6.0e15cbb2.js
Normal file
1
public/mer/js/chunk-7288b5a6.0e15cbb2.js
Normal file
File diff suppressed because one or more lines are too long
1
public/mer/js/chunk-738c6ac1.f4867dac.js
Normal file
1
public/mer/js/chunk-738c6ac1.f4867dac.js
Normal file
File diff suppressed because one or more lines are too long
1
public/mer/js/chunk-7788e6ba.cd308bec.js
Normal file
1
public/mer/js/chunk-7788e6ba.cd308bec.js
Normal file
File diff suppressed because one or more lines are too long
1
public/mer/js/chunk-78c4a0d7.204eb799.js
Normal file
1
public/mer/js/chunk-78c4a0d7.204eb799.js
Normal file
File diff suppressed because one or more lines are too long
1
public/mer/js/chunk-7c1a0002.c591d7d1.js
Normal file
1
public/mer/js/chunk-7c1a0002.c591d7d1.js
Normal file
@ -0,0 +1 @@
|
||||
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-7c1a0002"],{"0e7c":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":"80px",inline:!0}},[a("el-form-item",{attrs:{label:"搜索:"}},[a("el-input",{staticClass:"selWidth mr20",attrs:{placeholder:"请输入用户名称、标题",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"}},[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",{staticClass:"width100",attrs:{label:"时间选择:"}},[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)],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:"small","highlight-current-row":""}},[a("el-table-column",{attrs:{prop:"bill_id",label:"ID","min-width":"50"}}),t._v(" "),a("el-table-column",{attrs:{prop:"nickname",label:"用户微信昵称","min-width":"120"}}),t._v(" "),a("el-table-column",{attrs:{prop:"title",label:"积分标题","min-width":"120"}}),t._v(" "),a("el-table-column",{attrs:{prop:"number",label:"积分变动","min-width":"120"}}),t._v(" "),a("el-table-column",{attrs:{prop:"balance",label:"当前积分额度","min-width":"120"}}),t._v(" "),a("el-table-column",{attrs:{prop:"mark",label:"备注","min-width":"120"}}),t._v(" "),a("el-table-column",{attrs:{prop:"create_time",label:"添加时间","min-width":"120"}})],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("b7be"),s=a("83d6"),o=a("0f56"),r={name:"CouponList",components:{cardsData:o["a"]},data:function(){return{Loading:!1,dialogVisible:!1,detailDialog:!1,roterPre:s["roterPre"],listLoading:!0,timeVal:[],cardLists:[],tableData:{data:[],total:0},tableFrom:{page:1,limit:20,keyword:"",date:""}}},mounted:function(){this.getList(1),this.getIntegralTitle()},methods:{getIntegralTitle:function(){var t=this;Object(n["T"])({date:this.tableFrom.date}).then((function(e){t.cardLists=e.data})).catch((function(e){t.$message.error(e.message)}))},onchangeTime:function(t){this.timeVal=t,this.tableFrom.date=t?this.timeVal.join("-"):"",this.getList(1)},getList:function(t){var e=this;this.listLoading=!0,this.tableFrom.page=t||this.tableFrom.page,Object(n["S"])(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("")}}},c=r,d=(a("e575"),a("2877")),m=Object(d["a"])(c,l,i,!1,null,"12bedafd",null);e["default"]=m.exports},2538:function(t,e,a){},e575:function(t,e,a){"use strict";a("2538")}}]);
|
1
public/mer/js/chunk-7c43671d.d5c28446.js
Normal file
1
public/mer/js/chunk-7c43671d.d5c28446.js
Normal file
File diff suppressed because one or more lines are too long
1
public/mer/js/chunk-7c7c6444.5091961a.js
Normal file
1
public/mer/js/chunk-7c7c6444.5091961a.js
Normal file
File diff suppressed because one or more lines are too long
1
public/mer/js/chunk-80a8cf62.cf20c554.js
Normal file
1
public/mer/js/chunk-80a8cf62.cf20c554.js
Normal file
File diff suppressed because one or more lines are too long
1
public/mer/js/chunk-82bee4a8.64ede4da.js
Normal file
1
public/mer/js/chunk-82bee4a8.64ede4da.js
Normal file
File diff suppressed because one or more lines are too long
1
public/mer/js/chunk-90657762.b3c05a6d.js
Normal file
1
public/mer/js/chunk-90657762.b3c05a6d.js
Normal file
@ -0,0 +1 @@
|
||||
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-90657762"],{"19f6":function(t,e,a){},"97df":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","label-width":"120px",inline:""}},[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.username,callback:function(e){t.$set(t.tableFrom,"username",e)},expression:"tableFrom.username"}},[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.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)],1)],1),t._v(" "),a("el-button",{attrs:{size:"small",type:"primary"},on:{click:t.onAdd}},[a("i",{staticClass:"add"},[t._v("+")]),t._v(" 添加助手\n ")])],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:"assistant_id",label:"ID","min-width":"150"}}),t._v(" "),a("el-table-column",{attrs:{prop:"username",label:"用户名","min-width":"200"}}),t._v(" "),a("el-table-column",{attrs:{prop:"nickname",label:"昵称","min-width":"200"}}),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",{staticClass:"mr10",attrs:{type:"text",size:"small"},on:{click:function(a){return t.onEdit(e.row.assistant_id)}}},[t._v("编辑")]),t._v(" "),a("el-button",{staticClass:"mr10",attrs:{type:"text",size:"small"},on:{click:function(a){return t.handleDelete(e.row.assistant_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("83d6"),l=a("b7be"),o={name:"AssistantList",data:function(){return{roterPre:s["roterPre"],listLoading:!0,tableData:{data:[],total:0},tableFrom:{page:1,limit:20,username:"",nickname:""},loading:!1}},watch:{},mounted:function(){this.getList("")},methods:{getList:function(t){var e=this;this.listLoading=!0,this.tableFrom.page=t||this.tableFrom.page,Object(l["bb"])(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(l["cb"])()).then((function(){return t.getList("")}))},onEdit:function(t){var e=this;this.$modalForm(Object(l["eb"])(t)).then((function(){return e.getList("")}))},handleDelete:function(t,e){var a=this;this.$modalSure("删除该助手").then((function(){Object(l["db"])(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("c115"),a("2877")),u=Object(c["a"])(r,n,i,!1,null,"072a4f8a",null);e["default"]=u.exports},c115:function(t,e,a){"use strict";a("19f6")}}]);
|
1
public/mer/js/chunk-961c0de4.2d802bd5.js
Normal file
1
public/mer/js/chunk-961c0de4.2d802bd5.js
Normal file
File diff suppressed because one or more lines are too long
1
public/mer/js/chunk-9afa8a36.ab818ad2.js
Normal file
1
public/mer/js/chunk-9afa8a36.ab818ad2.js
Normal file
File diff suppressed because one or more lines are too long
1
public/mer/js/chunk-9d6d22b0.91c8fc44.js
Normal file
1
public/mer/js/chunk-9d6d22b0.91c8fc44.js
Normal file
File diff suppressed because one or more lines are too long
1
public/mer/js/chunk-a0fbc2e4.0946df84.js
Normal file
1
public/mer/js/chunk-a0fbc2e4.0946df84.js
Normal file
@ -0,0 +1 @@
|
||||
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-a0fbc2e4"],{3480:function(e,t,a){"use strict";a("f095")},9809:function(e,t,a){"use strict";a.r(t);var r=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",{attrs:{slot:"header"},slot:"header"},[a("div",{staticClass:"container"},[a("div",{staticClass:"demo-input-suffix acea-row"},[a("el-form",{ref:"formValidate",attrs:{"label-width":"120px",rules:e.ruleValidate,model:e.formValidate}},[a("el-form-item",{attrs:{label:"参数模板名称:",prop:"template_name"}},[a("el-input",{staticClass:"selWidth",attrs:{placeholder:"请输入参数模板名称"},model:{value:e.formValidate.template_name,callback:function(t){e.$set(e.formValidate,"template_name",t)},expression:"formValidate.template_name"}})],1),e._v(" "),a("el-form-item",{attrs:{label:"排序:"}},[a("el-input-number",{attrs:{label:"排序"},model:{value:e.formValidate.sort,callback:function(t){e.$set(e.formValidate,"sort",t)},expression:"formValidate.sort"}})],1),e._v(" "),a("el-form-item",{attrs:{label:""}},[a("el-table",{staticStyle:{width:"100%"},attrs:{data:e.data,border:"",size:"small"}},[a("el-table-column",{attrs:{align:"center",prop:"name",label:"参数名称","min-width":"200"},scopedSlots:e._u([{key:"default",fn:function(t){return[a("el-input",{staticClass:"priceBox",attrs:{placeholder:"请输入参数名称"},model:{value:t.row.name,callback:function(a){e.$set(t.row,"name",a)},expression:"scope.row.name"}})]}}])}),e._v(" "),a("el-table-column",{attrs:{align:"center",label:"参数值","min-width":"200"},scopedSlots:e._u([{key:"default",fn:function(t){return[a("el-input",{staticClass:"priceBox",attrs:{placeholder:"请输入参数值"},model:{value:t.row.value,callback:function(a){e.$set(t.row,"value",a)},expression:"scope.row.value"}})]}}])}),e._v(" "),a("el-table-column",{attrs:{align:"center",label:"排序","min-width":"300"},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.sort,callback:function(a){e.$set(t.row,"sort",a)},expression:"scope.row.sort"}})]}}])}),e._v(" "),a("el-table-column",{attrs:{align:"center",label:"操作","min-width":"120"},scopedSlots:e._u([{key:"default",fn:function(t){return[a("el-button",{staticClass:"submission",attrs:{type:"text"},on:{click:function(a){return e.delSpecs(t.$index)}}},[e._v("删除")])]}}])})],1)],1),e._v(" "),a("el-form-item",[a("el-button",{attrs:{size:"small",type:"primary"},on:{click:e.onAdd}},[e._v("添加参数")])],1)],1)],1)])])]),e._v(" "),a("el-card",[a("el-form",[a("el-form-item",[a("el-button",{attrs:{size:"small",type:"primary"},on:{click:function(t){return e.handleSubmit("formValidate")}}},[e._v("保存")])],1)],1)],1)],1)},s=[],l=(a("7f7f"),a("c4c8")),o=a("83d6"),n={name:"specsCreate",data:function(){return{listLoading:!0,ruleValidate:{template_name:[{required:!0,message:"请输入参数模板名称",trigger:"blur"}]},data:[],cateList:[],formValidate:{sort:0}}},created:function(){this.onAdd(),this.$route.params.id&&this.getInfo()},mounted:function(){},methods:{onAdd:function(){var e={name:"",value:"",sort:0,parameter_id:0};this.data.push(e)},onEdit:function(e){var t=this;this.$modalForm(levelUpdateApi(e)).then((function(){return t.getList("")}))},getInfo:function(){var e=this;Object(l["jb"])(this.$route.params.id).then((function(t){e.formValidate=t.data,e.data=t.data.parameter}))},delSpecs:function(e){this.data.splice(e,1)},handleSubmit:function(e){var t=this;this.$refs[e].validate((function(e){if(e){t.formValidate.params=t.data;for(var a=0;a<t.formValidate.params.length;a++){var r=t.formValidate.params[a];if(!r.name.trim())return t.$message.error("请输入参数名称");if(!r.value.trim())return t.$message.error("请输入参数值")}t.$route.params.id?Object(l["Ab"])(t.$route.params.id,t.formValidate).then((function(e){t.$message.success(e.message),t.$router.push({path:"".concat(o["roterPre"],"/product/specs")})})).catch((function(e){t.$message.error(e.message)})):Object(l["hb"])(t.formValidate).then((function(e){t.$message.success(e.message),t.$router.push({path:"".concat(o["roterPre"],"/product/specs")})})).catch((function(e){t.$message.error(e.message)}))}else t.$message.error("请输入参数模板名称")}))}}},i=n,c=(a("3480"),a("2877")),u=Object(c["a"])(i,r,s,!1,null,"2fe27228",null);t["default"]=u.exports},f095:function(e,t,a){}}]);
|
1
public/mer/js/chunk-a97676f4.a9aa54ae.js
Normal file
1
public/mer/js/chunk-a97676f4.a9aa54ae.js
Normal file
File diff suppressed because one or more lines are too long
1
public/mer/js/chunk-ab3d6574.34f24946.js
Normal file
1
public/mer/js/chunk-ab3d6574.34f24946.js
Normal file
File diff suppressed because one or more lines are too long
1
public/mer/js/chunk-ae0b147e.26ef3dad.js
Normal file
1
public/mer/js/chunk-ae0b147e.26ef3dad.js
Normal file
File diff suppressed because one or more lines are too long
1
public/mer/js/chunk-afbd5864.635dc491.js
Normal file
1
public/mer/js/chunk-afbd5864.635dc491.js
Normal file
File diff suppressed because one or more lines are too long
1
public/mer/js/chunk-b28bec38.cd1f10d5.js
Normal file
1
public/mer/js/chunk-b28bec38.cd1f10d5.js
Normal file
File diff suppressed because one or more lines are too long
1
public/mer/js/chunk-cd8d615e.59fab266.js
Normal file
1
public/mer/js/chunk-cd8d615e.59fab266.js
Normal file
File diff suppressed because one or more lines are too long
1
public/mer/js/chunk-cf155762.a621c259.js
Normal file
1
public/mer/js/chunk-cf155762.a621c259.js
Normal file
File diff suppressed because one or more lines are too long
1
public/mer/js/chunk-commons.5af4e9e3.js
Normal file
1
public/mer/js/chunk-commons.5af4e9e3.js
Normal file
File diff suppressed because one or more lines are too long
48
public/mer/js/chunk-dadf4114.360ba813.js
Normal file
48
public/mer/js/chunk-dadf4114.360ba813.js
Normal file
File diff suppressed because one or more lines are too long
1
public/mer/js/chunk-edb267f4.8ba1d507.js
Normal file
1
public/mer/js/chunk-edb267f4.8ba1d507.js
Normal file
File diff suppressed because one or more lines are too long
1
public/mer/js/chunk-ef8562be.b6743e0d.js
Normal file
1
public/mer/js/chunk-ef8562be.b6743e0d.js
Normal file
File diff suppressed because one or more lines are too long
1
public/mer/js/chunk-elementUI.8311fdab.js
Normal file
1
public/mer/js/chunk-elementUI.8311fdab.js
Normal file
File diff suppressed because one or more lines are too long
1
public/mer/js/chunk-f0a8813a.949d2413.js
Normal file
1
public/mer/js/chunk-f0a8813a.949d2413.js
Normal file
File diff suppressed because one or more lines are too long
1
public/mer/js/chunk-f1874498.5d73cc85.js
Normal file
1
public/mer/js/chunk-f1874498.5d73cc85.js
Normal file
File diff suppressed because one or more lines are too long
1
public/mer/js/chunk-fa99d034.f5b2998d.js
Normal file
1
public/mer/js/chunk-fa99d034.f5b2998d.js
Normal file
File diff suppressed because one or more lines are too long
1
public/mer/js/chunk-fe6fa87e.bf2cea18.js
Normal file
1
public/mer/js/chunk-fe6fa87e.bf2cea18.js
Normal file
@ -0,0 +1 @@
|
||||
(window["webpackJsonp"]=window["webpackJsonp"]||[]).push([["chunk-fe6fa87e"],{"1db4":function(t,s,a){"use strict";a.r(s);var i=function(){var t=this,s=t.$createElement,a=t._self._c||s;return a("div",{staticClass:"wscn-http404-container"},[a("div",{staticClass:"wscn-http404"},[t._m(0),t._v(" "),a("div",{staticClass:"bullshit"},[a("div",{staticClass:"bullshit__oops"},[t._v("OOPS!")]),t._v(" "),a("div",{staticClass:"bullshit__headline"},[t._v(t._s(t.message))]),t._v(" "),a("div",{staticClass:"bullshit__info"},[t._v("请检查您输入的URL是否正确,或单击下面的按钮返回主页.")]),t._v(" "),a("router-link",{attrs:{to:{path:t.roterPre+"/dashboard"}}},[a("span",{staticClass:"bullshit__return-home"},[t._v("返回首页")])])],1)])])},c=[function(){var t=this,s=t.$createElement,i=t._self._c||s;return i("div",{staticClass:"pic-404"},[i("img",{staticClass:"pic-404__parent",attrs:{src:a("a36b"),alt:"404"}}),t._v(" "),i("img",{staticClass:"pic-404__child left",attrs:{src:a("26fc"),alt:"404"}}),t._v(" "),i("img",{staticClass:"pic-404__child mid",attrs:{src:a("26fc"),alt:"404"}}),t._v(" "),i("img",{staticClass:"pic-404__child right",attrs:{src:a("26fc"),alt:"404"}})])}],e=a("83d6"),r={name:"Page404",computed:{message:function(){return"你不能进入这个页面..."}},data:function(){return{roterPre:e["roterPre"]}}},n=r,l=(a("7744"),a("2877")),_=Object(l["a"])(n,i,c,!1,null,"05bcdda0",null);s["default"]=_.exports},"26fc":function(t,s,a){t.exports=a.p+"mer/img/404_cloud.0f4bc32b.png"},7744:function(t,s,a){"use strict";a("9c1a")},"9c1a":function(t,s,a){},a36b:function(t,s,a){t.exports=a.p+"mer/img/404.a57b6f31.png"}}]);
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user